2 * linux/kernel/power/swap.c
4 * This file provides functions for reading the suspend image from
5 * and writing it to a swap partition.
7 * Copyright (C) 1998,2001-2005 Pavel Machek <pavel@suse.cz>
8 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
10 * This file is released under the GPLv2.
14 #include <linux/module.h>
15 #include <linux/file.h>
16 #include <linux/utsname.h>
17 #include <linux/delay.h>
18 #include <linux/bitops.h>
19 #include <linux/genhd.h>
20 #include <linux/device.h>
21 #include <linux/buffer_head.h>
22 #include <linux/bio.h>
23 #include <linux/blkdev.h>
24 #include <linux/swap.h>
25 #include <linux/swapops.h>
30 #define SWSUSP_SIG "S1SUSPEND"
32 struct swsusp_header
{
33 char reserved
[PAGE_SIZE
- 20 - sizeof(sector_t
) - sizeof(int)];
35 unsigned int flags
; /* Flags to pass to the "boot" kernel */
38 } __attribute__((packed
));
40 static struct swsusp_header
*swsusp_header
;
46 static unsigned short root_swap
= 0xffff;
47 static struct block_device
*resume_bdev
;
50 * submit - submit BIO request.
52 * @off physical offset of page.
53 * @page: page we're reading or writing.
54 * @bio_chain: list of pending biod (for async reading)
56 * Straight from the textbook - allocate and initialize the bio.
57 * If we're reading, make sure the page is marked as dirty.
58 * Then submit it and, if @bio_chain == NULL, wait.
60 static int submit(int rw
, pgoff_t page_off
, struct page
*page
,
61 struct bio
**bio_chain
)
63 const int bio_rw
= rw
| (1 << BIO_RW_SYNCIO
) | (1 << BIO_RW_UNPLUG
);
66 bio
= bio_alloc(__GFP_WAIT
| __GFP_HIGH
, 1);
67 bio
->bi_sector
= page_off
* (PAGE_SIZE
>> 9);
68 bio
->bi_bdev
= resume_bdev
;
69 bio
->bi_end_io
= end_swap_bio_read
;
71 if (bio_add_page(bio
, page
, PAGE_SIZE
, 0) < PAGE_SIZE
) {
72 printk(KERN_ERR
"PM: Adding page to bio failed at %ld\n",
81 if (bio_chain
== NULL
) {
82 submit_bio(bio_rw
, bio
);
83 wait_on_page_locked(page
);
85 bio_set_pages_dirty(bio
);
89 get_page(page
); /* These pages are freed later */
90 bio
->bi_private
= *bio_chain
;
92 submit_bio(bio_rw
, bio
);
97 static int bio_read_page(pgoff_t page_off
, void *addr
, struct bio
**bio_chain
)
99 return submit(READ
, page_off
, virt_to_page(addr
), bio_chain
);
102 static int bio_write_page(pgoff_t page_off
, void *addr
, struct bio
**bio_chain
)
104 return submit(WRITE
, page_off
, virt_to_page(addr
), bio_chain
);
107 static int wait_on_bio_chain(struct bio
**bio_chain
)
110 struct bio
*next_bio
;
113 if (bio_chain
== NULL
)
122 next_bio
= bio
->bi_private
;
123 page
= bio
->bi_io_vec
[0].bv_page
;
124 wait_on_page_locked(page
);
125 if (!PageUptodate(page
) || PageError(page
))
139 static int mark_swapfiles(sector_t start
, unsigned int flags
)
143 bio_read_page(swsusp_resume_block
, swsusp_header
, NULL
);
144 if (!memcmp("SWAP-SPACE",swsusp_header
->sig
, 10) ||
145 !memcmp("SWAPSPACE2",swsusp_header
->sig
, 10)) {
146 memcpy(swsusp_header
->orig_sig
,swsusp_header
->sig
, 10);
147 memcpy(swsusp_header
->sig
,SWSUSP_SIG
, 10);
148 swsusp_header
->image
= start
;
149 swsusp_header
->flags
= flags
;
150 error
= bio_write_page(swsusp_resume_block
,
151 swsusp_header
, NULL
);
153 printk(KERN_ERR
"PM: Swap header not found!\n");
160 * swsusp_swap_check - check if the resume device is a swap device
161 * and get its index (if so)
164 static int swsusp_swap_check(void) /* This is called before saving image */
168 res
= swap_type_of(swsusp_resume_device
, swsusp_resume_block
,
174 res
= blkdev_get(resume_bdev
, FMODE_WRITE
);
178 res
= set_blocksize(resume_bdev
, PAGE_SIZE
);
180 blkdev_put(resume_bdev
, FMODE_WRITE
);
186 * write_page - Write one page to given swap location.
187 * @buf: Address we're writing.
188 * @offset: Offset of the swap page we're writing to.
189 * @bio_chain: Link the next write BIO here
192 static int write_page(void *buf
, sector_t offset
, struct bio
**bio_chain
)
200 src
= (void *)__get_free_page(__GFP_WAIT
| __GFP_HIGH
);
202 memcpy(src
, buf
, PAGE_SIZE
);
205 bio_chain
= NULL
; /* Go synchronous */
211 return bio_write_page(offset
, src
, bio_chain
);
215 * The swap map is a data structure used for keeping track of each page
216 * written to a swap partition. It consists of many swap_map_page
217 * structures that contain each an array of MAP_PAGE_SIZE swap entries.
218 * These structures are stored on the swap and linked together with the
219 * help of the .next_swap member.
221 * The swap map is created during suspend. The swap map pages are
222 * allocated and populated one at a time, so we only need one memory
223 * page to set up the entire structure.
225 * During resume we also only need to use one swap_map_page structure
229 #define MAP_PAGE_ENTRIES (PAGE_SIZE / sizeof(sector_t) - 1)
231 struct swap_map_page
{
232 sector_t entries
[MAP_PAGE_ENTRIES
];
237 * The swap_map_handle structure is used for handling swap in
241 struct swap_map_handle
{
242 struct swap_map_page
*cur
;
247 static void release_swap_writer(struct swap_map_handle
*handle
)
250 free_page((unsigned long)handle
->cur
);
254 static int get_swap_writer(struct swap_map_handle
*handle
)
256 handle
->cur
= (struct swap_map_page
*)get_zeroed_page(GFP_KERNEL
);
259 handle
->cur_swap
= alloc_swapdev_block(root_swap
);
260 if (!handle
->cur_swap
) {
261 release_swap_writer(handle
);
268 static int swap_write_page(struct swap_map_handle
*handle
, void *buf
,
269 struct bio
**bio_chain
)
276 offset
= alloc_swapdev_block(root_swap
);
277 error
= write_page(buf
, offset
, bio_chain
);
280 handle
->cur
->entries
[handle
->k
++] = offset
;
281 if (handle
->k
>= MAP_PAGE_ENTRIES
) {
282 error
= wait_on_bio_chain(bio_chain
);
285 offset
= alloc_swapdev_block(root_swap
);
288 handle
->cur
->next_swap
= offset
;
289 error
= write_page(handle
->cur
, handle
->cur_swap
, NULL
);
292 memset(handle
->cur
, 0, PAGE_SIZE
);
293 handle
->cur_swap
= offset
;
300 static int flush_swap_writer(struct swap_map_handle
*handle
)
302 if (handle
->cur
&& handle
->cur_swap
)
303 return write_page(handle
->cur
, handle
->cur_swap
, NULL
);
309 * save_image - save the suspend image data
312 static int save_image(struct swap_map_handle
*handle
,
313 struct snapshot_handle
*snapshot
,
314 unsigned int nr_to_write
)
322 struct timeval start
;
325 printk(KERN_INFO
"PM: Saving image data pages (%u pages) ... ",
327 m
= nr_to_write
/ 100;
332 do_gettimeofday(&start
);
334 ret
= snapshot_read_next(snapshot
, PAGE_SIZE
);
336 error
= swap_write_page(handle
, data_of(*snapshot
),
341 printk("\b\b\b\b%3d%%", nr_pages
/ m
);
345 err2
= wait_on_bio_chain(&bio
);
346 do_gettimeofday(&stop
);
350 printk("\b\b\b\bdone\n");
351 swsusp_show_speed(&start
, &stop
, nr_to_write
, "Wrote");
356 * enough_swap - Make sure we have enough swap to save the image.
358 * Returns TRUE or FALSE after checking the total amount of swap
359 * space avaiable from the resume partition.
362 static int enough_swap(unsigned int nr_pages
)
364 unsigned int free_swap
= count_swap_pages(root_swap
, 1);
366 pr_debug("PM: Free swap pages: %u\n", free_swap
);
367 return free_swap
> nr_pages
+ PAGES_FOR_IO
;
371 * swsusp_write - Write entire image and metadata.
372 * @flags: flags to pass to the "boot" kernel in the image header
374 * It is important _NOT_ to umount filesystems at this point. We want
375 * them synced (in case something goes wrong) but we DO not want to mark
376 * filesystem clean: it is not. (And it does not matter, if we resume
377 * correctly, we'll mark system clean, anyway.)
380 int swsusp_write(unsigned int flags
)
382 struct swap_map_handle handle
;
383 struct snapshot_handle snapshot
;
384 struct swsusp_info
*header
;
387 error
= swsusp_swap_check();
389 printk(KERN_ERR
"PM: Cannot find swap device, try "
393 memset(&snapshot
, 0, sizeof(struct snapshot_handle
));
394 error
= snapshot_read_next(&snapshot
, PAGE_SIZE
);
395 if (error
< PAGE_SIZE
) {
401 header
= (struct swsusp_info
*)data_of(snapshot
);
402 if (!enough_swap(header
->pages
)) {
403 printk(KERN_ERR
"PM: Not enough free swap\n");
407 error
= get_swap_writer(&handle
);
409 sector_t start
= handle
.cur_swap
;
411 error
= swap_write_page(&handle
, header
, NULL
);
413 error
= save_image(&handle
, &snapshot
,
417 flush_swap_writer(&handle
);
418 printk(KERN_INFO
"PM: S");
419 error
= mark_swapfiles(start
, flags
);
424 free_all_swap_pages(root_swap
);
426 release_swap_writer(&handle
);
428 swsusp_close(FMODE_WRITE
);
433 * The following functions allow us to read data using a swap map
434 * in a file-alike way
437 static void release_swap_reader(struct swap_map_handle
*handle
)
440 free_page((unsigned long)handle
->cur
);
444 static int get_swap_reader(struct swap_map_handle
*handle
, sector_t start
)
451 handle
->cur
= (struct swap_map_page
*)get_zeroed_page(__GFP_WAIT
| __GFP_HIGH
);
455 error
= bio_read_page(start
, handle
->cur
, NULL
);
457 release_swap_reader(handle
);
464 static int swap_read_page(struct swap_map_handle
*handle
, void *buf
,
465 struct bio
**bio_chain
)
472 offset
= handle
->cur
->entries
[handle
->k
];
475 error
= bio_read_page(offset
, buf
, bio_chain
);
478 if (++handle
->k
>= MAP_PAGE_ENTRIES
) {
479 error
= wait_on_bio_chain(bio_chain
);
481 offset
= handle
->cur
->next_swap
;
483 release_swap_reader(handle
);
485 error
= bio_read_page(offset
, handle
->cur
, NULL
);
491 * load_image - load the image using the swap map handle
492 * @handle and the snapshot handle @snapshot
493 * (assume there are @nr_pages pages to load)
496 static int load_image(struct swap_map_handle
*handle
,
497 struct snapshot_handle
*snapshot
,
498 unsigned int nr_to_read
)
502 struct timeval start
;
508 printk(KERN_INFO
"PM: Loading image data pages (%u pages) ... ",
510 m
= nr_to_read
/ 100;
515 do_gettimeofday(&start
);
517 error
= snapshot_write_next(snapshot
, PAGE_SIZE
);
520 error
= swap_read_page(handle
, data_of(*snapshot
), &bio
);
523 if (snapshot
->sync_read
)
524 error
= wait_on_bio_chain(&bio
);
528 printk("\b\b\b\b%3d%%", nr_pages
/ m
);
531 err2
= wait_on_bio_chain(&bio
);
532 do_gettimeofday(&stop
);
536 printk("\b\b\b\bdone\n");
537 snapshot_write_finalize(snapshot
);
538 if (!snapshot_image_loaded(snapshot
))
541 swsusp_show_speed(&start
, &stop
, nr_to_read
, "Read");
546 * swsusp_read - read the hibernation image.
547 * @flags_p: flags passed by the "frozen" kernel in the image header should
548 * be written into this memeory location
551 int swsusp_read(unsigned int *flags_p
)
554 struct swap_map_handle handle
;
555 struct snapshot_handle snapshot
;
556 struct swsusp_info
*header
;
558 *flags_p
= swsusp_header
->flags
;
559 if (IS_ERR(resume_bdev
)) {
560 pr_debug("PM: Image device not initialised\n");
561 return PTR_ERR(resume_bdev
);
564 memset(&snapshot
, 0, sizeof(struct snapshot_handle
));
565 error
= snapshot_write_next(&snapshot
, PAGE_SIZE
);
566 if (error
< PAGE_SIZE
)
567 return error
< 0 ? error
: -EFAULT
;
568 header
= (struct swsusp_info
*)data_of(snapshot
);
569 error
= get_swap_reader(&handle
, swsusp_header
->image
);
571 error
= swap_read_page(&handle
, header
, NULL
);
573 error
= load_image(&handle
, &snapshot
, header
->pages
- 1);
574 release_swap_reader(&handle
);
576 blkdev_put(resume_bdev
, FMODE_READ
);
579 pr_debug("PM: Image successfully loaded\n");
581 pr_debug("PM: Error %d resuming\n", error
);
586 * swsusp_check - Check for swsusp signature in the resume device
589 int swsusp_check(void)
593 resume_bdev
= open_by_devnum(swsusp_resume_device
, FMODE_READ
);
594 if (!IS_ERR(resume_bdev
)) {
595 set_blocksize(resume_bdev
, PAGE_SIZE
);
596 memset(swsusp_header
, 0, PAGE_SIZE
);
597 error
= bio_read_page(swsusp_resume_block
,
598 swsusp_header
, NULL
);
602 if (!memcmp(SWSUSP_SIG
, swsusp_header
->sig
, 10)) {
603 memcpy(swsusp_header
->sig
, swsusp_header
->orig_sig
, 10);
604 /* Reset swap signature now */
605 error
= bio_write_page(swsusp_resume_block
,
606 swsusp_header
, NULL
);
611 blkdev_put(resume_bdev
, FMODE_READ
);
613 pr_debug("PM: Signature found, resuming\n");
615 error
= PTR_ERR(resume_bdev
);
619 pr_debug("PM: Error %d checking image file\n", error
);
625 * swsusp_close - close swap device.
628 void swsusp_close(fmode_t mode
)
630 if (IS_ERR(resume_bdev
)) {
631 pr_debug("PM: Image device not initialised\n");
635 blkdev_put(resume_bdev
, mode
);
638 static int swsusp_header_init(void)
640 swsusp_header
= (struct swsusp_header
*) __get_free_page(GFP_KERNEL
);
642 panic("Could not allocate memory for swsusp_header\n");
646 core_initcall(swsusp_header_init
);