Merge tag 'v3.10.85' into update
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / kernel / power / swap.c
CommitLineData
61159a31
RW
1/*
2 * linux/kernel/power/swap.c
3 *
4 * This file provides functions for reading the suspend image from
5 * and writing it to a swap partition.
6 *
a2531293 7 * Copyright (C) 1998,2001-2005 Pavel Machek <pavel@ucw.cz>
61159a31 8 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
5a21d489 9 * Copyright (C) 2010-2012 Bojan Smojver <bojan@rexursive.com>
61159a31
RW
10 *
11 * This file is released under the GPLv2.
12 *
13 */
14
15#include <linux/module.h>
61159a31 16#include <linux/file.h>
61159a31
RW
17#include <linux/delay.h>
18#include <linux/bitops.h>
19#include <linux/genhd.h>
20#include <linux/device.h>
61159a31 21#include <linux/bio.h>
546e0d27 22#include <linux/blkdev.h>
61159a31
RW
23#include <linux/swap.h>
24#include <linux/swapops.h>
25#include <linux/pm.h>
5a0e3ad6 26#include <linux/slab.h>
f996fc96
BS
27#include <linux/lzo.h>
28#include <linux/vmalloc.h>
081a9d04
BS
29#include <linux/cpumask.h>
30#include <linux/atomic.h>
31#include <linux/kthread.h>
32#include <linux/crc32.h>
61159a31
RW
33
34#include "power.h"
35
be8cd644 36#define HIBERNATE_SIG "S1SUSPEND"
61159a31 37
51fb352b
JS
38/*
39 * The swap map is a data structure used for keeping track of each page
40 * written to a swap partition. It consists of many swap_map_page
90133673 41 * structures that contain each an array of MAP_PAGE_ENTRIES swap entries.
51fb352b
JS
42 * These structures are stored on the swap and linked together with the
43 * help of the .next_swap member.
44 *
45 * The swap map is created during suspend. The swap map pages are
46 * allocated and populated one at a time, so we only need one memory
47 * page to set up the entire structure.
48 *
081a9d04 49 * During resume we pick up all swap_map_page structures into a list.
51fb352b
JS
50 */
51
52#define MAP_PAGE_ENTRIES (PAGE_SIZE / sizeof(sector_t) - 1)
53
f8262d47
BS
54/*
55 * Number of free pages that are not high.
56 */
57static inline unsigned long low_free_pages(void)
58{
59 return nr_free_pages() - nr_free_highpages();
60}
61
62/*
63 * Number of pages required to be kept free while writing the image. Always
64 * half of all available low pages before the writing starts.
65 */
66static inline unsigned long reqd_free_pages(void)
67{
68 return low_free_pages() / 2;
69}
70
51fb352b
JS
71struct swap_map_page {
72 sector_t entries[MAP_PAGE_ENTRIES];
73 sector_t next_swap;
74};
75
081a9d04
BS
76struct swap_map_page_list {
77 struct swap_map_page *map;
78 struct swap_map_page_list *next;
79};
80
51fb352b
JS
81/**
82 * The swap_map_handle structure is used for handling swap in
83 * a file-alike way
84 */
85
86struct swap_map_handle {
87 struct swap_map_page *cur;
081a9d04 88 struct swap_map_page_list *maps;
51fb352b
JS
89 sector_t cur_swap;
90 sector_t first_sector;
91 unsigned int k;
f8262d47 92 unsigned long reqd_free_pages;
081a9d04 93 u32 crc32;
51fb352b
JS
94};
95
1b29c164 96struct swsusp_header {
081a9d04
BS
97 char reserved[PAGE_SIZE - 20 - sizeof(sector_t) - sizeof(int) -
98 sizeof(u32)];
99 u32 crc32;
3aef83e0 100 sector_t image;
a634cc10 101 unsigned int flags; /* Flags to pass to the "boot" kernel */
61159a31
RW
102 char orig_sig[10];
103 char sig[10];
1b29c164
VG
104} __attribute__((packed));
105
106static struct swsusp_header *swsusp_header;
61159a31 107
0414f2ec
NC
108/**
109 * The following functions are used for tracing the allocated
110 * swap pages, so that they can be freed in case of an error.
111 */
112
113struct swsusp_extent {
114 struct rb_node node;
115 unsigned long start;
116 unsigned long end;
117};
118
119static struct rb_root swsusp_extents = RB_ROOT;
120
121static int swsusp_extents_insert(unsigned long swap_offset)
122{
123 struct rb_node **new = &(swsusp_extents.rb_node);
124 struct rb_node *parent = NULL;
125 struct swsusp_extent *ext;
126
127 /* Figure out where to put the new node */
128 while (*new) {
8316bd72 129 ext = rb_entry(*new, struct swsusp_extent, node);
0414f2ec
NC
130 parent = *new;
131 if (swap_offset < ext->start) {
132 /* Try to merge */
133 if (swap_offset == ext->start - 1) {
134 ext->start--;
135 return 0;
136 }
137 new = &((*new)->rb_left);
138 } else if (swap_offset > ext->end) {
139 /* Try to merge */
140 if (swap_offset == ext->end + 1) {
141 ext->end++;
142 return 0;
143 }
144 new = &((*new)->rb_right);
145 } else {
146 /* It already is in the tree */
147 return -EINVAL;
148 }
149 }
150 /* Add the new node and rebalance the tree. */
151 ext = kzalloc(sizeof(struct swsusp_extent), GFP_KERNEL);
152 if (!ext)
153 return -ENOMEM;
154
155 ext->start = swap_offset;
156 ext->end = swap_offset;
157 rb_link_node(&ext->node, parent, new);
158 rb_insert_color(&ext->node, &swsusp_extents);
159 return 0;
160}
161
162/**
163 * alloc_swapdev_block - allocate a swap page and register that it has
164 * been allocated, so that it can be freed in case of an error.
165 */
166
167sector_t alloc_swapdev_block(int swap)
168{
169 unsigned long offset;
170
910321ea 171 offset = swp_offset(get_swap_page_of_type(swap));
0414f2ec
NC
172 if (offset) {
173 if (swsusp_extents_insert(offset))
910321ea 174 swap_free(swp_entry(swap, offset));
0414f2ec
NC
175 else
176 return swapdev_block(swap, offset);
177 }
178 return 0;
179}
180
181/**
182 * free_all_swap_pages - free swap pages allocated for saving image data.
90133673 183 * It also frees the extents used to register which swap entries had been
0414f2ec
NC
184 * allocated.
185 */
186
187void free_all_swap_pages(int swap)
188{
189 struct rb_node *node;
190
191 while ((node = swsusp_extents.rb_node)) {
192 struct swsusp_extent *ext;
193 unsigned long offset;
194
195 ext = container_of(node, struct swsusp_extent, node);
196 rb_erase(node, &swsusp_extents);
197 for (offset = ext->start; offset <= ext->end; offset++)
910321ea 198 swap_free(swp_entry(swap, offset));
0414f2ec
NC
199
200 kfree(ext);
201 }
202}
203
204int swsusp_swap_in_use(void)
205{
206 return (swsusp_extents.rb_node != NULL);
207}
208
61159a31 209/*
3fc6b34f 210 * General things
61159a31
RW
211 */
212
213static unsigned short root_swap = 0xffff;
8a0d613f 214struct block_device *hib_resume_bdev;
3fc6b34f 215
3fc6b34f
RW
216/*
217 * Saving part
218 */
61159a31 219
51fb352b 220static int mark_swapfiles(struct swap_map_handle *handle, unsigned int flags)
61159a31
RW
221{
222 int error;
223
8a0d613f 224 hib_bio_read_page(swsusp_resume_block, swsusp_header, NULL);
1b29c164
VG
225 if (!memcmp("SWAP-SPACE",swsusp_header->sig, 10) ||
226 !memcmp("SWAPSPACE2",swsusp_header->sig, 10)) {
227 memcpy(swsusp_header->orig_sig,swsusp_header->sig, 10);
3624eb04 228 memcpy(swsusp_header->sig, HIBERNATE_SIG, 10);
51fb352b 229 swsusp_header->image = handle->first_sector;
a634cc10 230 swsusp_header->flags = flags;
081a9d04
BS
231 if (flags & SF_CRC32_MODE)
232 swsusp_header->crc32 = handle->crc32;
8a0d613f 233 error = hib_bio_write_page(swsusp_resume_block,
1b29c164 234 swsusp_header, NULL);
6fa3eb70
S
235#if 0 // FIXME: confirm if required
236 hib_bio_read_page(128, swsusp_header, NULL);
237 error = hib_bio_write_page(128, swsusp_header, NULL);
238#endif
61159a31 239 } else {
23976728 240 printk(KERN_ERR "PM: Swap header not found!\n");
61159a31
RW
241 error = -ENODEV;
242 }
243 return error;
244}
245
246/**
247 * swsusp_swap_check - check if the resume device is a swap device
248 * and get its index (if so)
6f612af5
JS
249 *
250 * This is called before saving image
61159a31 251 */
6f612af5 252static int swsusp_swap_check(void)
61159a31 253{
3aef83e0
RW
254 int res;
255
7bf23687 256 res = swap_type_of(swsusp_resume_device, swsusp_resume_block,
8a0d613f 257 &hib_resume_bdev);
3aef83e0
RW
258 if (res < 0)
259 return res;
260
261 root_swap = res;
e525fd89 262 res = blkdev_get(hib_resume_bdev, FMODE_WRITE, NULL);
7bf23687
RW
263 if (res)
264 return res;
3aef83e0 265
8a0d613f 266 res = set_blocksize(hib_resume_bdev, PAGE_SIZE);
3aef83e0 267 if (res < 0)
8a0d613f 268 blkdev_put(hib_resume_bdev, FMODE_WRITE);
61159a31 269
61159a31
RW
270 return res;
271}
272
273/**
274 * write_page - Write one page to given swap location.
275 * @buf: Address we're writing.
276 * @offset: Offset of the swap page we're writing to.
ab954160 277 * @bio_chain: Link the next write BIO here
61159a31
RW
278 */
279
3aef83e0 280static int write_page(void *buf, sector_t offset, struct bio **bio_chain)
61159a31 281{
3aef83e0 282 void *src;
081a9d04 283 int ret;
3aef83e0
RW
284
285 if (!offset)
286 return -ENOSPC;
287
288 if (bio_chain) {
5a21d489
BS
289 src = (void *)__get_free_page(__GFP_WAIT | __GFP_NOWARN |
290 __GFP_NORETRY);
3aef83e0 291 if (src) {
3ecb01df 292 copy_page(src, buf);
3aef83e0 293 } else {
081a9d04
BS
294 ret = hib_wait_on_bio_chain(bio_chain); /* Free pages */
295 if (ret)
296 return ret;
5a21d489
BS
297 src = (void *)__get_free_page(__GFP_WAIT |
298 __GFP_NOWARN |
299 __GFP_NORETRY);
081a9d04
BS
300 if (src) {
301 copy_page(src, buf);
302 } else {
303 WARN_ON_ONCE(1);
304 bio_chain = NULL; /* Go synchronous */
305 src = buf;
306 }
ab954160 307 }
3aef83e0
RW
308 } else {
309 src = buf;
61159a31 310 }
8a0d613f 311 return hib_bio_write_page(offset, src, bio_chain);
61159a31
RW
312}
313
61159a31
RW
314static void release_swap_writer(struct swap_map_handle *handle)
315{
316 if (handle->cur)
317 free_page((unsigned long)handle->cur);
318 handle->cur = NULL;
61159a31
RW
319}
320
321static int get_swap_writer(struct swap_map_handle *handle)
322{
6f612af5
JS
323 int ret;
324
325 ret = swsusp_swap_check();
326 if (ret) {
327 if (ret != -ENOSPC)
328 printk(KERN_ERR "PM: Cannot find swap device, try "
329 "swapon -a.\n");
330 return ret;
331 }
61159a31 332 handle->cur = (struct swap_map_page *)get_zeroed_page(GFP_KERNEL);
6f612af5
JS
333 if (!handle->cur) {
334 ret = -ENOMEM;
335 goto err_close;
336 }
d1d241cc 337 handle->cur_swap = alloc_swapdev_block(root_swap);
61159a31 338 if (!handle->cur_swap) {
6f612af5
JS
339 ret = -ENOSPC;
340 goto err_rel;
61159a31
RW
341 }
342 handle->k = 0;
f8262d47 343 handle->reqd_free_pages = reqd_free_pages();
51fb352b 344 handle->first_sector = handle->cur_swap;
61159a31 345 return 0;
6f612af5
JS
346err_rel:
347 release_swap_writer(handle);
348err_close:
349 swsusp_close(FMODE_WRITE);
350 return ret;
61159a31
RW
351}
352
ab954160
AM
353static int swap_write_page(struct swap_map_handle *handle, void *buf,
354 struct bio **bio_chain)
355{
356 int error = 0;
3aef83e0 357 sector_t offset;
61159a31
RW
358
359 if (!handle->cur)
360 return -EINVAL;
d1d241cc 361 offset = alloc_swapdev_block(root_swap);
ab954160 362 error = write_page(buf, offset, bio_chain);
61159a31
RW
363 if (error)
364 return error;
365 handle->cur->entries[handle->k++] = offset;
366 if (handle->k >= MAP_PAGE_ENTRIES) {
d1d241cc 367 offset = alloc_swapdev_block(root_swap);
61159a31
RW
368 if (!offset)
369 return -ENOSPC;
370 handle->cur->next_swap = offset;
081a9d04 371 error = write_page(handle->cur, handle->cur_swap, bio_chain);
61159a31 372 if (error)
ab954160 373 goto out;
3ecb01df 374 clear_page(handle->cur);
61159a31
RW
375 handle->cur_swap = offset;
376 handle->k = 0;
5a21d489
BS
377
378 if (bio_chain && low_free_pages() <= handle->reqd_free_pages) {
379 error = hib_wait_on_bio_chain(bio_chain);
380 if (error)
381 goto out;
382 /*
383 * Recalculate the number of required free pages, to
384 * make sure we never take more than half.
385 */
386 handle->reqd_free_pages = reqd_free_pages();
387 }
081a9d04 388 }
59a49335 389 out:
ab954160 390 return error;
61159a31
RW
391}
392
393static int flush_swap_writer(struct swap_map_handle *handle)
394{
395 if (handle->cur && handle->cur_swap)
ab954160 396 return write_page(handle->cur, handle->cur_swap, NULL);
61159a31
RW
397 else
398 return -EINVAL;
399}
400
6f612af5
JS
401static int swap_writer_finish(struct swap_map_handle *handle,
402 unsigned int flags, int error)
403{
404 if (!error) {
405 flush_swap_writer(handle);
406 printk(KERN_INFO "PM: S");
407 error = mark_swapfiles(handle, flags);
408 printk("|\n");
409 }
410
411 if (error)
412 free_all_swap_pages(root_swap);
413 release_swap_writer(handle);
414 swsusp_close(FMODE_WRITE);
415
416 return error;
417}
418
f996fc96
BS
419/* We need to remember how much compressed data we need to read. */
420#define LZO_HEADER sizeof(size_t)
421
422/* Number of pages/bytes we'll compress at one time. */
423#define LZO_UNC_PAGES 32
424#define LZO_UNC_SIZE (LZO_UNC_PAGES * PAGE_SIZE)
425
426/* Number of pages/bytes we need for compressed data (worst case). */
427#define LZO_CMP_PAGES DIV_ROUND_UP(lzo1x_worst_compress(LZO_UNC_SIZE) + \
428 LZO_HEADER, PAGE_SIZE)
429#define LZO_CMP_SIZE (LZO_CMP_PAGES * PAGE_SIZE)
430
081a9d04
BS
431/* Maximum number of threads for compression/decompression. */
432#define LZO_THREADS 3
433
5a21d489
BS
434/* Minimum/maximum number of pages for read buffering. */
435#define LZO_MIN_RD_PAGES 1024
436#define LZO_MAX_RD_PAGES 8192
081a9d04
BS
437
438
61159a31
RW
439/**
440 * save_image - save the suspend image data
441 */
442
443static int save_image(struct swap_map_handle *handle,
444 struct snapshot_handle *snapshot,
3a4f7577 445 unsigned int nr_to_write)
61159a31
RW
446{
447 unsigned int m;
448 int ret;
3a4f7577 449 int nr_pages;
ab954160
AM
450 int err2;
451 struct bio *bio;
3a4f7577
AM
452 struct timeval start;
453 struct timeval stop;
61159a31 454
d8150d35 455 printk(KERN_INFO "PM: Saving image data pages (%u pages)...\n",
23976728 456 nr_to_write);
d8150d35 457 m = nr_to_write / 10;
61159a31
RW
458 if (!m)
459 m = 1;
460 nr_pages = 0;
ab954160 461 bio = NULL;
3a4f7577 462 do_gettimeofday(&start);
4ff277f9 463 while (1) {
d3c1b24c 464 ret = snapshot_read_next(snapshot);
4ff277f9
JS
465 if (ret <= 0)
466 break;
467 ret = swap_write_page(handle, data_of(*snapshot), &bio);
468 if (ret)
469 break;
470 if (!(nr_pages % m))
d8150d35
BS
471 printk(KERN_INFO "PM: Image saving progress: %3d%%\n",
472 nr_pages / m * 10);
4ff277f9
JS
473 nr_pages++;
474 }
8a0d613f 475 err2 = hib_wait_on_bio_chain(&bio);
3a4f7577 476 do_gettimeofday(&stop);
4ff277f9
JS
477 if (!ret)
478 ret = err2;
479 if (!ret)
d8150d35 480 printk(KERN_INFO "PM: Image saving done.\n");
0d3a9abe 481 swsusp_show_speed(&start, &stop, nr_to_write, "Wrote");
4ff277f9 482 return ret;
61159a31
RW
483}
484
081a9d04
BS
485/**
486 * Structure used for CRC32.
487 */
488struct crc_data {
489 struct task_struct *thr; /* thread */
490 atomic_t ready; /* ready to start flag */
491 atomic_t stop; /* ready to stop flag */
492 unsigned run_threads; /* nr current threads */
493 wait_queue_head_t go; /* start crc update */
494 wait_queue_head_t done; /* crc update done */
495 u32 *crc32; /* points to handle's crc32 */
496 size_t *unc_len[LZO_THREADS]; /* uncompressed lengths */
497 unsigned char *unc[LZO_THREADS]; /* uncompressed data */
498};
499
500/**
501 * CRC32 update function that runs in its own thread.
502 */
503static int crc32_threadfn(void *data)
504{
505 struct crc_data *d = data;
506 unsigned i;
507
508 while (1) {
509 wait_event(d->go, atomic_read(&d->ready) ||
510 kthread_should_stop());
511 if (kthread_should_stop()) {
512 d->thr = NULL;
513 atomic_set(&d->stop, 1);
514 wake_up(&d->done);
515 break;
516 }
517 atomic_set(&d->ready, 0);
518
519 for (i = 0; i < d->run_threads; i++)
520 *d->crc32 = crc32_le(*d->crc32,
521 d->unc[i], *d->unc_len[i]);
522 atomic_set(&d->stop, 1);
523 wake_up(&d->done);
524 }
525 return 0;
526}
527/**
528 * Structure used for LZO data compression.
529 */
530struct cmp_data {
531 struct task_struct *thr; /* thread */
532 atomic_t ready; /* ready to start flag */
533 atomic_t stop; /* ready to stop flag */
534 int ret; /* return code */
535 wait_queue_head_t go; /* start compression */
536 wait_queue_head_t done; /* compression done */
537 size_t unc_len; /* uncompressed length */
538 size_t cmp_len; /* compressed length */
539 unsigned char unc[LZO_UNC_SIZE]; /* uncompressed buffer */
540 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */
541 unsigned char wrk[LZO1X_1_MEM_COMPRESS]; /* compression workspace */
542};
543
544/**
545 * Compression function that runs in its own thread.
546 */
547static int lzo_compress_threadfn(void *data)
548{
549 struct cmp_data *d = data;
550
551 while (1) {
552 wait_event(d->go, atomic_read(&d->ready) ||
553 kthread_should_stop());
554 if (kthread_should_stop()) {
555 d->thr = NULL;
556 d->ret = -1;
557 atomic_set(&d->stop, 1);
558 wake_up(&d->done);
559 break;
560 }
561 atomic_set(&d->ready, 0);
562
563 d->ret = lzo1x_1_compress(d->unc, d->unc_len,
564 d->cmp + LZO_HEADER, &d->cmp_len,
565 d->wrk);
566 atomic_set(&d->stop, 1);
567 wake_up(&d->done);
568 }
569 return 0;
570}
f996fc96
BS
571
572/**
573 * save_image_lzo - Save the suspend image data compressed with LZO.
574 * @handle: Swap mam handle to use for saving the image.
575 * @snapshot: Image to read data from.
576 * @nr_to_write: Number of pages to save.
577 */
578static int save_image_lzo(struct swap_map_handle *handle,
579 struct snapshot_handle *snapshot,
580 unsigned int nr_to_write)
581{
582 unsigned int m;
583 int ret = 0;
584 int nr_pages;
585 int err2;
586 struct bio *bio;
587 struct timeval start;
588 struct timeval stop;
081a9d04
BS
589 size_t off;
590 unsigned thr, run_threads, nr_threads;
591 unsigned char *page = NULL;
592 struct cmp_data *data = NULL;
593 struct crc_data *crc = NULL;
594
595 /*
596 * We'll limit the number of threads for compression to limit memory
597 * footprint.
598 */
599 nr_threads = num_online_cpus() - 1;
600 nr_threads = clamp_val(nr_threads, 1, LZO_THREADS);
f996fc96
BS
601
602 page = (void *)__get_free_page(__GFP_WAIT | __GFP_HIGH);
603 if (!page) {
604 printk(KERN_ERR "PM: Failed to allocate LZO page\n");
081a9d04
BS
605 ret = -ENOMEM;
606 goto out_clean;
f996fc96
BS
607 }
608
081a9d04
BS
609 data = vmalloc(sizeof(*data) * nr_threads);
610 if (!data) {
611 printk(KERN_ERR "PM: Failed to allocate LZO data\n");
612 ret = -ENOMEM;
613 goto out_clean;
f996fc96 614 }
081a9d04
BS
615 for (thr = 0; thr < nr_threads; thr++)
616 memset(&data[thr], 0, offsetof(struct cmp_data, go));
f996fc96 617
081a9d04
BS
618 crc = kmalloc(sizeof(*crc), GFP_KERNEL);
619 if (!crc) {
620 printk(KERN_ERR "PM: Failed to allocate crc\n");
621 ret = -ENOMEM;
622 goto out_clean;
623 }
624 memset(crc, 0, offsetof(struct crc_data, go));
625
626 /*
627 * Start the compression threads.
628 */
629 for (thr = 0; thr < nr_threads; thr++) {
630 init_waitqueue_head(&data[thr].go);
631 init_waitqueue_head(&data[thr].done);
632
633 data[thr].thr = kthread_run(lzo_compress_threadfn,
634 &data[thr],
635 "image_compress/%u", thr);
636 if (IS_ERR(data[thr].thr)) {
637 data[thr].thr = NULL;
638 printk(KERN_ERR
639 "PM: Cannot start compression threads\n");
640 ret = -ENOMEM;
641 goto out_clean;
642 }
f996fc96
BS
643 }
644
081a9d04
BS
645 /*
646 * Start the CRC32 thread.
647 */
648 init_waitqueue_head(&crc->go);
649 init_waitqueue_head(&crc->done);
650
651 handle->crc32 = 0;
652 crc->crc32 = &handle->crc32;
653 for (thr = 0; thr < nr_threads; thr++) {
654 crc->unc[thr] = data[thr].unc;
655 crc->unc_len[thr] = &data[thr].unc_len;
656 }
657
658 crc->thr = kthread_run(crc32_threadfn, crc, "image_crc32");
659 if (IS_ERR(crc->thr)) {
660 crc->thr = NULL;
661 printk(KERN_ERR "PM: Cannot start CRC32 thread\n");
662 ret = -ENOMEM;
663 goto out_clean;
f996fc96
BS
664 }
665
5a21d489
BS
666 /*
667 * Adjust the number of required free pages after all allocations have
668 * been done. We don't want to run out of pages when writing.
669 */
670 handle->reqd_free_pages = reqd_free_pages();
671
f996fc96 672 printk(KERN_INFO
081a9d04 673 "PM: Using %u thread(s) for compression.\n"
d8150d35 674 "PM: Compressing and saving image data (%u pages)...\n",
081a9d04 675 nr_threads, nr_to_write);
d8150d35 676 m = nr_to_write / 10;
f996fc96
BS
677 if (!m)
678 m = 1;
679 nr_pages = 0;
680 bio = NULL;
681 do_gettimeofday(&start);
682 for (;;) {
081a9d04
BS
683 for (thr = 0; thr < nr_threads; thr++) {
684 for (off = 0; off < LZO_UNC_SIZE; off += PAGE_SIZE) {
685 ret = snapshot_read_next(snapshot);
686 if (ret < 0)
687 goto out_finish;
688
689 if (!ret)
690 break;
691
692 memcpy(data[thr].unc + off,
693 data_of(*snapshot), PAGE_SIZE);
694
695 if (!(nr_pages % m))
d8150d35
BS
696 printk(KERN_INFO
697 "PM: Image saving progress: "
698 "%3d%%\n",
699 nr_pages / m * 10);
081a9d04
BS
700 nr_pages++;
701 }
702 if (!off)
f996fc96
BS
703 break;
704
081a9d04 705 data[thr].unc_len = off;
f996fc96 706
081a9d04
BS
707 atomic_set(&data[thr].ready, 1);
708 wake_up(&data[thr].go);
f996fc96
BS
709 }
710
081a9d04 711 if (!thr)
f996fc96
BS
712 break;
713
081a9d04
BS
714 crc->run_threads = thr;
715 atomic_set(&crc->ready, 1);
716 wake_up(&crc->go);
f996fc96 717
081a9d04
BS
718 for (run_threads = thr, thr = 0; thr < run_threads; thr++) {
719 wait_event(data[thr].done,
720 atomic_read(&data[thr].stop));
721 atomic_set(&data[thr].stop, 0);
f996fc96 722
081a9d04 723 ret = data[thr].ret;
f996fc96 724
081a9d04
BS
725 if (ret < 0) {
726 printk(KERN_ERR "PM: LZO compression failed\n");
727 goto out_finish;
728 }
f996fc96 729
081a9d04
BS
730 if (unlikely(!data[thr].cmp_len ||
731 data[thr].cmp_len >
732 lzo1x_worst_compress(data[thr].unc_len))) {
733 printk(KERN_ERR
734 "PM: Invalid LZO compressed length\n");
735 ret = -1;
f996fc96 736 goto out_finish;
081a9d04
BS
737 }
738
739 *(size_t *)data[thr].cmp = data[thr].cmp_len;
740
741 /*
742 * Given we are writing one page at a time to disk, we
743 * copy that much from the buffer, although the last
744 * bit will likely be smaller than full page. This is
745 * OK - we saved the length of the compressed data, so
746 * any garbage at the end will be discarded when we
747 * read it.
748 */
749 for (off = 0;
750 off < LZO_HEADER + data[thr].cmp_len;
751 off += PAGE_SIZE) {
752 memcpy(page, data[thr].cmp + off, PAGE_SIZE);
753
754 ret = swap_write_page(handle, page, &bio);
755 if (ret)
756 goto out_finish;
757 }
f996fc96 758 }
081a9d04
BS
759
760 wait_event(crc->done, atomic_read(&crc->stop));
761 atomic_set(&crc->stop, 0);
f996fc96
BS
762 }
763
764out_finish:
765 err2 = hib_wait_on_bio_chain(&bio);
766 do_gettimeofday(&stop);
767 if (!ret)
768 ret = err2;
d8150d35
BS
769 if (!ret)
770 printk(KERN_INFO "PM: Image saving done.\n");
f996fc96 771 swsusp_show_speed(&start, &stop, nr_to_write, "Wrote");
081a9d04
BS
772out_clean:
773 if (crc) {
774 if (crc->thr)
775 kthread_stop(crc->thr);
776 kfree(crc);
777 }
778 if (data) {
779 for (thr = 0; thr < nr_threads; thr++)
780 if (data[thr].thr)
781 kthread_stop(data[thr].thr);
782 vfree(data);
783 }
784 if (page) free_page((unsigned long)page);
f996fc96
BS
785
786 return ret;
787}
788
61159a31
RW
789/**
790 * enough_swap - Make sure we have enough swap to save the image.
791 *
792 * Returns TRUE or FALSE after checking the total amount of swap
793 * space avaiable from the resume partition.
794 */
795
f996fc96 796static int enough_swap(unsigned int nr_pages, unsigned int flags)
61159a31
RW
797{
798 unsigned int free_swap = count_swap_pages(root_swap, 1);
f996fc96 799 unsigned int required;
61159a31 800
23976728 801 pr_debug("PM: Free swap pages: %u\n", free_swap);
f996fc96 802
ee34a370 803 required = PAGES_FOR_IO + nr_pages;
f996fc96 804 return free_swap > required;
61159a31
RW
805}
806
807/**
808 * swsusp_write - Write entire image and metadata.
a634cc10 809 * @flags: flags to pass to the "boot" kernel in the image header
61159a31
RW
810 *
811 * It is important _NOT_ to umount filesystems at this point. We want
812 * them synced (in case something goes wrong) but we DO not want to mark
813 * filesystem clean: it is not. (And it does not matter, if we resume
814 * correctly, we'll mark system clean, anyway.)
815 */
816
a634cc10 817int swsusp_write(unsigned int flags)
61159a31
RW
818{
819 struct swap_map_handle handle;
820 struct snapshot_handle snapshot;
821 struct swsusp_info *header;
6f612af5 822 unsigned long pages;
61159a31
RW
823 int error;
824
6f612af5
JS
825 pages = snapshot_get_image_size();
826 error = get_swap_writer(&handle);
3aef83e0 827 if (error) {
6f612af5 828 printk(KERN_ERR "PM: Cannot get swap writer\n");
61159a31
RW
829 return error;
830 }
ee34a370
BS
831 if (flags & SF_NOCOMPRESS_MODE) {
832 if (!enough_swap(pages, flags)) {
833 printk(KERN_ERR "PM: Not enough free swap\n");
834 error = -ENOSPC;
835 goto out_finish;
836 }
6f612af5 837 }
61159a31 838 memset(&snapshot, 0, sizeof(struct snapshot_handle));
d3c1b24c 839 error = snapshot_read_next(&snapshot);
3aef83e0
RW
840 if (error < PAGE_SIZE) {
841 if (error >= 0)
842 error = -EFAULT;
843
6f612af5 844 goto out_finish;
3aef83e0 845 }
61159a31 846 header = (struct swsusp_info *)data_of(snapshot);
6f612af5 847 error = swap_write_page(&handle, header, NULL);
f996fc96
BS
848 if (!error) {
849 error = (flags & SF_NOCOMPRESS_MODE) ?
850 save_image(&handle, &snapshot, pages - 1) :
851 save_image_lzo(&handle, &snapshot, pages - 1);
852 }
6f612af5
JS
853out_finish:
854 error = swap_writer_finish(&handle, flags, error);
61159a31
RW
855 return error;
856}
857
61159a31
RW
858/**
859 * The following functions allow us to read data using a swap map
860 * in a file-alike way
861 */
862
863static void release_swap_reader(struct swap_map_handle *handle)
864{
081a9d04
BS
865 struct swap_map_page_list *tmp;
866
867 while (handle->maps) {
868 if (handle->maps->map)
869 free_page((unsigned long)handle->maps->map);
870 tmp = handle->maps;
871 handle->maps = handle->maps->next;
872 kfree(tmp);
873 }
61159a31
RW
874 handle->cur = NULL;
875}
876
6f612af5
JS
877static int get_swap_reader(struct swap_map_handle *handle,
878 unsigned int *flags_p)
61159a31
RW
879{
880 int error;
081a9d04
BS
881 struct swap_map_page_list *tmp, *last;
882 sector_t offset;
61159a31 883
6f612af5
JS
884 *flags_p = swsusp_header->flags;
885
886 if (!swsusp_header->image) /* how can this happen? */
61159a31 887 return -EINVAL;
3aef83e0 888
081a9d04
BS
889 handle->cur = NULL;
890 last = handle->maps = NULL;
891 offset = swsusp_header->image;
892 while (offset) {
893 tmp = kmalloc(sizeof(*handle->maps), GFP_KERNEL);
894 if (!tmp) {
895 release_swap_reader(handle);
896 return -ENOMEM;
897 }
898 memset(tmp, 0, sizeof(*tmp));
899 if (!handle->maps)
900 handle->maps = tmp;
901 if (last)
902 last->next = tmp;
903 last = tmp;
904
905 tmp->map = (struct swap_map_page *)
906 __get_free_page(__GFP_WAIT | __GFP_HIGH);
907 if (!tmp->map) {
908 release_swap_reader(handle);
909 return -ENOMEM;
910 }
3aef83e0 911
081a9d04
BS
912 error = hib_bio_read_page(offset, tmp->map, NULL);
913 if (error) {
914 release_swap_reader(handle);
915 return error;
916 }
917 offset = tmp->map->next_swap;
61159a31
RW
918 }
919 handle->k = 0;
081a9d04 920 handle->cur = handle->maps->map;
61159a31
RW
921 return 0;
922}
923
546e0d27
AM
924static int swap_read_page(struct swap_map_handle *handle, void *buf,
925 struct bio **bio_chain)
61159a31 926{
3aef83e0 927 sector_t offset;
61159a31 928 int error;
081a9d04 929 struct swap_map_page_list *tmp;
61159a31
RW
930
931 if (!handle->cur)
932 return -EINVAL;
933 offset = handle->cur->entries[handle->k];
934 if (!offset)
935 return -EFAULT;
8a0d613f 936 error = hib_bio_read_page(offset, buf, bio_chain);
61159a31
RW
937 if (error)
938 return error;
939 if (++handle->k >= MAP_PAGE_ENTRIES) {
940 handle->k = 0;
081a9d04
BS
941 free_page((unsigned long)handle->maps->map);
942 tmp = handle->maps;
943 handle->maps = handle->maps->next;
944 kfree(tmp);
945 if (!handle->maps)
61159a31 946 release_swap_reader(handle);
081a9d04
BS
947 else
948 handle->cur = handle->maps->map;
61159a31
RW
949 }
950 return error;
951}
952
6f612af5
JS
953static int swap_reader_finish(struct swap_map_handle *handle)
954{
955 release_swap_reader(handle);
956
957 return 0;
958}
959
61159a31
RW
960/**
961 * load_image - load the image using the swap map handle
962 * @handle and the snapshot handle @snapshot
963 * (assume there are @nr_pages pages to load)
964 */
965
966static int load_image(struct swap_map_handle *handle,
967 struct snapshot_handle *snapshot,
546e0d27 968 unsigned int nr_to_read)
61159a31
RW
969{
970 unsigned int m;
081a9d04 971 int ret = 0;
8c002494
AM
972 struct timeval start;
973 struct timeval stop;
546e0d27
AM
974 struct bio *bio;
975 int err2;
976 unsigned nr_pages;
61159a31 977
d8150d35 978 printk(KERN_INFO "PM: Loading image data pages (%u pages)...\n",
23976728 979 nr_to_read);
d8150d35 980 m = nr_to_read / 10;
61159a31
RW
981 if (!m)
982 m = 1;
983 nr_pages = 0;
546e0d27 984 bio = NULL;
8c002494 985 do_gettimeofday(&start);
546e0d27 986 for ( ; ; ) {
081a9d04
BS
987 ret = snapshot_write_next(snapshot);
988 if (ret <= 0)
546e0d27 989 break;
081a9d04
BS
990 ret = swap_read_page(handle, data_of(*snapshot), &bio);
991 if (ret)
546e0d27
AM
992 break;
993 if (snapshot->sync_read)
081a9d04
BS
994 ret = hib_wait_on_bio_chain(&bio);
995 if (ret)
546e0d27
AM
996 break;
997 if (!(nr_pages % m))
d8150d35
BS
998 printk(KERN_INFO "PM: Image loading progress: %3d%%\n",
999 nr_pages / m * 10);
546e0d27
AM
1000 nr_pages++;
1001 }
8a0d613f 1002 err2 = hib_wait_on_bio_chain(&bio);
8c002494 1003 do_gettimeofday(&stop);
081a9d04
BS
1004 if (!ret)
1005 ret = err2;
1006 if (!ret) {
d8150d35 1007 printk(KERN_INFO "PM: Image loading done.\n");
8357376d 1008 snapshot_write_finalize(snapshot);
e655a250 1009 if (!snapshot_image_loaded(snapshot))
081a9d04 1010 ret = -ENODATA;
d8150d35 1011 }
0d3a9abe 1012 swsusp_show_speed(&start, &stop, nr_to_read, "Read");
081a9d04
BS
1013 return ret;
1014}
1015
1016/**
1017 * Structure used for LZO data decompression.
1018 */
1019struct dec_data {
1020 struct task_struct *thr; /* thread */
1021 atomic_t ready; /* ready to start flag */
1022 atomic_t stop; /* ready to stop flag */
1023 int ret; /* return code */
1024 wait_queue_head_t go; /* start decompression */
1025 wait_queue_head_t done; /* decompression done */
1026 size_t unc_len; /* uncompressed length */
1027 size_t cmp_len; /* compressed length */
1028 unsigned char unc[LZO_UNC_SIZE]; /* uncompressed buffer */
1029 unsigned char cmp[LZO_CMP_SIZE]; /* compressed buffer */
1030};
1031
1032/**
1033 * Deompression function that runs in its own thread.
1034 */
1035static int lzo_decompress_threadfn(void *data)
1036{
1037 struct dec_data *d = data;
1038
1039 while (1) {
1040 wait_event(d->go, atomic_read(&d->ready) ||
1041 kthread_should_stop());
1042 if (kthread_should_stop()) {
1043 d->thr = NULL;
1044 d->ret = -1;
1045 atomic_set(&d->stop, 1);
1046 wake_up(&d->done);
1047 break;
1048 }
1049 atomic_set(&d->ready, 0);
1050
1051 d->unc_len = LZO_UNC_SIZE;
1052 d->ret = lzo1x_decompress_safe(d->cmp + LZO_HEADER, d->cmp_len,
1053 d->unc, &d->unc_len);
1054 atomic_set(&d->stop, 1);
1055 wake_up(&d->done);
1056 }
1057 return 0;
61159a31
RW
1058}
1059
f996fc96
BS
1060/**
1061 * load_image_lzo - Load compressed image data and decompress them with LZO.
1062 * @handle: Swap map handle to use for loading data.
1063 * @snapshot: Image to copy uncompressed data into.
1064 * @nr_to_read: Number of pages to load.
1065 */
1066static int load_image_lzo(struct swap_map_handle *handle,
1067 struct snapshot_handle *snapshot,
1068 unsigned int nr_to_read)
1069{
1070 unsigned int m;
081a9d04
BS
1071 int ret = 0;
1072 int eof = 0;
9f339caf 1073 struct bio *bio;
f996fc96
BS
1074 struct timeval start;
1075 struct timeval stop;
1076 unsigned nr_pages;
081a9d04
BS
1077 size_t off;
1078 unsigned i, thr, run_threads, nr_threads;
1079 unsigned ring = 0, pg = 0, ring_size = 0,
1080 have = 0, want, need, asked = 0;
5a21d489 1081 unsigned long read_pages = 0;
081a9d04
BS
1082 unsigned char **page = NULL;
1083 struct dec_data *data = NULL;
1084 struct crc_data *crc = NULL;
1085
1086 /*
1087 * We'll limit the number of threads for decompression to limit memory
1088 * footprint.
1089 */
1090 nr_threads = num_online_cpus() - 1;
1091 nr_threads = clamp_val(nr_threads, 1, LZO_THREADS);
1092
5a21d489 1093 page = vmalloc(sizeof(*page) * LZO_MAX_RD_PAGES);
081a9d04
BS
1094 if (!page) {
1095 printk(KERN_ERR "PM: Failed to allocate LZO page\n");
1096 ret = -ENOMEM;
1097 goto out_clean;
1098 }
9f339caf 1099
081a9d04
BS
1100 data = vmalloc(sizeof(*data) * nr_threads);
1101 if (!data) {
1102 printk(KERN_ERR "PM: Failed to allocate LZO data\n");
1103 ret = -ENOMEM;
1104 goto out_clean;
1105 }
1106 for (thr = 0; thr < nr_threads; thr++)
1107 memset(&data[thr], 0, offsetof(struct dec_data, go));
9f339caf 1108
081a9d04
BS
1109 crc = kmalloc(sizeof(*crc), GFP_KERNEL);
1110 if (!crc) {
1111 printk(KERN_ERR "PM: Failed to allocate crc\n");
1112 ret = -ENOMEM;
1113 goto out_clean;
1114 }
1115 memset(crc, 0, offsetof(struct crc_data, go));
1116
1117 /*
1118 * Start the decompression threads.
1119 */
1120 for (thr = 0; thr < nr_threads; thr++) {
1121 init_waitqueue_head(&data[thr].go);
1122 init_waitqueue_head(&data[thr].done);
1123
1124 data[thr].thr = kthread_run(lzo_decompress_threadfn,
1125 &data[thr],
1126 "image_decompress/%u", thr);
1127 if (IS_ERR(data[thr].thr)) {
1128 data[thr].thr = NULL;
1129 printk(KERN_ERR
1130 "PM: Cannot start decompression threads\n");
1131 ret = -ENOMEM;
1132 goto out_clean;
9f339caf 1133 }
f996fc96
BS
1134 }
1135
081a9d04
BS
1136 /*
1137 * Start the CRC32 thread.
1138 */
1139 init_waitqueue_head(&crc->go);
1140 init_waitqueue_head(&crc->done);
1141
1142 handle->crc32 = 0;
1143 crc->crc32 = &handle->crc32;
1144 for (thr = 0; thr < nr_threads; thr++) {
1145 crc->unc[thr] = data[thr].unc;
1146 crc->unc_len[thr] = &data[thr].unc_len;
f996fc96
BS
1147 }
1148
081a9d04
BS
1149 crc->thr = kthread_run(crc32_threadfn, crc, "image_crc32");
1150 if (IS_ERR(crc->thr)) {
1151 crc->thr = NULL;
1152 printk(KERN_ERR "PM: Cannot start CRC32 thread\n");
1153 ret = -ENOMEM;
1154 goto out_clean;
1155 }
9f339caf 1156
081a9d04 1157 /*
5a21d489
BS
1158 * Set the number of pages for read buffering.
1159 * This is complete guesswork, because we'll only know the real
1160 * picture once prepare_image() is called, which is much later on
1161 * during the image load phase. We'll assume the worst case and
1162 * say that none of the image pages are from high memory.
081a9d04 1163 */
5a21d489
BS
1164 if (low_free_pages() > snapshot_get_image_size())
1165 read_pages = (low_free_pages() - snapshot_get_image_size()) / 2;
1166 read_pages = clamp_val(read_pages, LZO_MIN_RD_PAGES, LZO_MAX_RD_PAGES);
9f339caf 1167
081a9d04
BS
1168 for (i = 0; i < read_pages; i++) {
1169 page[i] = (void *)__get_free_page(i < LZO_CMP_PAGES ?
1170 __GFP_WAIT | __GFP_HIGH :
5a21d489
BS
1171 __GFP_WAIT | __GFP_NOWARN |
1172 __GFP_NORETRY);
1173
081a9d04
BS
1174 if (!page[i]) {
1175 if (i < LZO_CMP_PAGES) {
1176 ring_size = i;
1177 printk(KERN_ERR
1178 "PM: Failed to allocate LZO pages\n");
1179 ret = -ENOMEM;
1180 goto out_clean;
1181 } else {
1182 break;
1183 }
1184 }
f996fc96 1185 }
081a9d04 1186 want = ring_size = i;
f996fc96
BS
1187
1188 printk(KERN_INFO
081a9d04 1189 "PM: Using %u thread(s) for decompression.\n"
d8150d35 1190 "PM: Loading and decompressing image data (%u pages)...\n",
081a9d04 1191 nr_threads, nr_to_read);
d8150d35 1192 m = nr_to_read / 10;
f996fc96
BS
1193 if (!m)
1194 m = 1;
1195 nr_pages = 0;
9f339caf 1196 bio = NULL;
f996fc96
BS
1197 do_gettimeofday(&start);
1198
081a9d04
BS
1199 ret = snapshot_write_next(snapshot);
1200 if (ret <= 0)
f996fc96
BS
1201 goto out_finish;
1202
081a9d04
BS
1203 for(;;) {
1204 for (i = 0; !eof && i < want; i++) {
1205 ret = swap_read_page(handle, page[ring], &bio);
1206 if (ret) {
1207 /*
1208 * On real read error, finish. On end of data,
1209 * set EOF flag and just exit the read loop.
1210 */
1211 if (handle->cur &&
1212 handle->cur->entries[handle->k]) {
1213 goto out_finish;
1214 } else {
1215 eof = 1;
1216 break;
1217 }
1218 }
1219 if (++ring >= ring_size)
1220 ring = 0;
f996fc96 1221 }
081a9d04
BS
1222 asked += i;
1223 want -= i;
f996fc96 1224
081a9d04
BS
1225 /*
1226 * We are out of data, wait for some more.
1227 */
1228 if (!have) {
1229 if (!asked)
1230 break;
1231
1232 ret = hib_wait_on_bio_chain(&bio);
1233 if (ret)
f996fc96 1234 goto out_finish;
081a9d04
BS
1235 have += asked;
1236 asked = 0;
1237 if (eof)
1238 eof = 2;
9f339caf 1239 }
f996fc96 1240
081a9d04
BS
1241 if (crc->run_threads) {
1242 wait_event(crc->done, atomic_read(&crc->stop));
1243 atomic_set(&crc->stop, 0);
1244 crc->run_threads = 0;
f996fc96
BS
1245 }
1246
081a9d04
BS
1247 for (thr = 0; have && thr < nr_threads; thr++) {
1248 data[thr].cmp_len = *(size_t *)page[pg];
1249 if (unlikely(!data[thr].cmp_len ||
1250 data[thr].cmp_len >
1251 lzo1x_worst_compress(LZO_UNC_SIZE))) {
1252 printk(KERN_ERR
1253 "PM: Invalid LZO compressed length\n");
1254 ret = -1;
1255 goto out_finish;
1256 }
1257
1258 need = DIV_ROUND_UP(data[thr].cmp_len + LZO_HEADER,
1259 PAGE_SIZE);
1260 if (need > have) {
1261 if (eof > 1) {
1262 ret = -1;
1263 goto out_finish;
1264 }
1265 break;
1266 }
1267
1268 for (off = 0;
1269 off < LZO_HEADER + data[thr].cmp_len;
1270 off += PAGE_SIZE) {
1271 memcpy(data[thr].cmp + off,
1272 page[pg], PAGE_SIZE);
1273 have--;
1274 want++;
1275 if (++pg >= ring_size)
1276 pg = 0;
1277 }
1278
1279 atomic_set(&data[thr].ready, 1);
1280 wake_up(&data[thr].go);
f996fc96
BS
1281 }
1282
081a9d04
BS
1283 /*
1284 * Wait for more data while we are decompressing.
1285 */
1286 if (have < LZO_CMP_PAGES && asked) {
1287 ret = hib_wait_on_bio_chain(&bio);
1288 if (ret)
1289 goto out_finish;
1290 have += asked;
1291 asked = 0;
1292 if (eof)
1293 eof = 2;
f996fc96
BS
1294 }
1295
081a9d04
BS
1296 for (run_threads = thr, thr = 0; thr < run_threads; thr++) {
1297 wait_event(data[thr].done,
1298 atomic_read(&data[thr].stop));
1299 atomic_set(&data[thr].stop, 0);
1300
1301 ret = data[thr].ret;
f996fc96 1302
081a9d04
BS
1303 if (ret < 0) {
1304 printk(KERN_ERR
1305 "PM: LZO decompression failed\n");
1306 goto out_finish;
1307 }
f996fc96 1308
081a9d04
BS
1309 if (unlikely(!data[thr].unc_len ||
1310 data[thr].unc_len > LZO_UNC_SIZE ||
1311 data[thr].unc_len & (PAGE_SIZE - 1))) {
1312 printk(KERN_ERR
1313 "PM: Invalid LZO uncompressed length\n");
1314 ret = -1;
f996fc96 1315 goto out_finish;
081a9d04
BS
1316 }
1317
1318 for (off = 0;
1319 off < data[thr].unc_len; off += PAGE_SIZE) {
1320 memcpy(data_of(*snapshot),
1321 data[thr].unc + off, PAGE_SIZE);
1322
1323 if (!(nr_pages % m))
d8150d35
BS
1324 printk(KERN_INFO
1325 "PM: Image loading progress: "
1326 "%3d%%\n",
1327 nr_pages / m * 10);
081a9d04
BS
1328 nr_pages++;
1329
1330 ret = snapshot_write_next(snapshot);
1331 if (ret <= 0) {
1332 crc->run_threads = thr + 1;
1333 atomic_set(&crc->ready, 1);
1334 wake_up(&crc->go);
1335 goto out_finish;
1336 }
1337 }
f996fc96 1338 }
081a9d04
BS
1339
1340 crc->run_threads = thr;
1341 atomic_set(&crc->ready, 1);
1342 wake_up(&crc->go);
f996fc96
BS
1343 }
1344
1345out_finish:
081a9d04
BS
1346 if (crc->run_threads) {
1347 wait_event(crc->done, atomic_read(&crc->stop));
1348 atomic_set(&crc->stop, 0);
1349 }
f996fc96 1350 do_gettimeofday(&stop);
081a9d04 1351 if (!ret) {
d8150d35 1352 printk(KERN_INFO "PM: Image loading done.\n");
f996fc96
BS
1353 snapshot_write_finalize(snapshot);
1354 if (!snapshot_image_loaded(snapshot))
081a9d04
BS
1355 ret = -ENODATA;
1356 if (!ret) {
1357 if (swsusp_header->flags & SF_CRC32_MODE) {
1358 if(handle->crc32 != swsusp_header->crc32) {
1359 printk(KERN_ERR
1360 "PM: Invalid image CRC32!\n");
1361 ret = -ENODATA;
1362 }
1363 }
1364 }
d8150d35 1365 }
f996fc96 1366 swsusp_show_speed(&start, &stop, nr_to_read, "Read");
081a9d04
BS
1367out_clean:
1368 for (i = 0; i < ring_size; i++)
9f339caf 1369 free_page((unsigned long)page[i]);
081a9d04
BS
1370 if (crc) {
1371 if (crc->thr)
1372 kthread_stop(crc->thr);
1373 kfree(crc);
1374 }
1375 if (data) {
1376 for (thr = 0; thr < nr_threads; thr++)
1377 if (data[thr].thr)
1378 kthread_stop(data[thr].thr);
1379 vfree(data);
1380 }
1381 if (page) vfree(page);
f996fc96 1382
081a9d04 1383 return ret;
f996fc96
BS
1384}
1385
a634cc10
RW
1386/**
1387 * swsusp_read - read the hibernation image.
1388 * @flags_p: flags passed by the "frozen" kernel in the image header should
b595076a 1389 * be written into this memory location
a634cc10
RW
1390 */
1391
1392int swsusp_read(unsigned int *flags_p)
61159a31
RW
1393{
1394 int error;
1395 struct swap_map_handle handle;
1396 struct snapshot_handle snapshot;
1397 struct swsusp_info *header;
1398
61159a31 1399 memset(&snapshot, 0, sizeof(struct snapshot_handle));
d3c1b24c 1400 error = snapshot_write_next(&snapshot);
61159a31
RW
1401 if (error < PAGE_SIZE)
1402 return error < 0 ? error : -EFAULT;
1403 header = (struct swsusp_info *)data_of(snapshot);
6f612af5
JS
1404 error = get_swap_reader(&handle, flags_p);
1405 if (error)
1406 goto end;
61159a31 1407 if (!error)
546e0d27 1408 error = swap_read_page(&handle, header, NULL);
f996fc96
BS
1409 if (!error) {
1410 error = (*flags_p & SF_NOCOMPRESS_MODE) ?
1411 load_image(&handle, &snapshot, header->pages - 1) :
1412 load_image_lzo(&handle, &snapshot, header->pages - 1);
1413 }
6f612af5
JS
1414 swap_reader_finish(&handle);
1415end:
61159a31 1416 if (!error)
23976728 1417 pr_debug("PM: Image successfully loaded\n");
61159a31 1418 else
23976728 1419 pr_debug("PM: Error %d resuming\n", error);
61159a31
RW
1420 return error;
1421}
1422
1423/**
1424 * swsusp_check - Check for swsusp signature in the resume device
1425 */
1426
1427int swsusp_check(void)
1428{
1429 int error;
1430
d4d77629
TH
1431 hib_resume_bdev = blkdev_get_by_dev(swsusp_resume_device,
1432 FMODE_READ, NULL);
8a0d613f
JS
1433 if (!IS_ERR(hib_resume_bdev)) {
1434 set_blocksize(hib_resume_bdev, PAGE_SIZE);
3ecb01df 1435 clear_page(swsusp_header);
8a0d613f 1436 error = hib_bio_read_page(swsusp_resume_block,
1b29c164 1437 swsusp_header, NULL);
9a154d9d 1438 if (error)
76b57e61 1439 goto put;
9a154d9d 1440
3624eb04 1441 if (!memcmp(HIBERNATE_SIG, swsusp_header->sig, 10)) {
1b29c164 1442 memcpy(swsusp_header->sig, swsusp_header->orig_sig, 10);
61159a31 1443 /* Reset swap signature now */
8a0d613f 1444 error = hib_bio_write_page(swsusp_resume_block,
1b29c164 1445 swsusp_header, NULL);
61159a31 1446 } else {
76b57e61 1447 error = -EINVAL;
61159a31 1448 }
76b57e61
JS
1449
1450put:
61159a31 1451 if (error)
8a0d613f 1452 blkdev_put(hib_resume_bdev, FMODE_READ);
61159a31 1453 else
d0941ead 1454 pr_debug("PM: Image signature found, resuming\n");
61159a31 1455 } else {
8a0d613f 1456 error = PTR_ERR(hib_resume_bdev);
61159a31
RW
1457 }
1458
1459 if (error)
d0941ead 1460 pr_debug("PM: Image not found (code %d)\n", error);
61159a31
RW
1461
1462 return error;
1463}
1464
1465/**
1466 * swsusp_close - close swap device.
1467 */
1468
c2dd0dae 1469void swsusp_close(fmode_t mode)
61159a31 1470{
8a0d613f 1471 if (IS_ERR(hib_resume_bdev)) {
23976728 1472 pr_debug("PM: Image device not initialised\n");
61159a31
RW
1473 return;
1474 }
1475
8a0d613f 1476 blkdev_put(hib_resume_bdev, mode);
61159a31 1477}
1b29c164 1478
62c552cc
BS
1479/**
1480 * swsusp_unmark - Unmark swsusp signature in the resume device
1481 */
1482
1483#ifdef CONFIG_SUSPEND
1484int swsusp_unmark(void)
1485{
1486 int error;
1487
1488 hib_bio_read_page(swsusp_resume_block, swsusp_header, NULL);
1489 if (!memcmp(HIBERNATE_SIG,swsusp_header->sig, 10)) {
1490 memcpy(swsusp_header->sig,swsusp_header->orig_sig, 10);
1491 error = hib_bio_write_page(swsusp_resume_block,
1492 swsusp_header, NULL);
1493 } else {
1494 printk(KERN_ERR "PM: Cannot find swsusp signature!\n");
1495 error = -ENODEV;
1496 }
1497
1498 /*
1499 * We just returned from suspend, we don't need the image any more.
1500 */
1501 free_all_swap_pages(root_swap);
1502
1503 return error;
1504}
1505#endif
1506
1b29c164
VG
1507static int swsusp_header_init(void)
1508{
1509 swsusp_header = (struct swsusp_header*) __get_free_page(GFP_KERNEL);
1510 if (!swsusp_header)
1511 panic("Could not allocate memory for swsusp_header\n");
1512 return 0;
1513}
1514
1515core_initcall(swsusp_header_init);