blob: 48a0aa9da162a48e78b255fa4a8092e0d1f7b826 [file] [log] [blame]
Rafael J. Wysocki61159a32006-03-23 03:00:00 -08001/*
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 *
Pavel Macheka2531292010-07-18 14:27:13 +02007 * Copyright (C) 1998,2001-2005 Pavel Machek <pavel@ucw.cz>
Rafael J. Wysocki61159a32006-03-23 03:00:00 -08008 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
9 *
10 * This file is released under the GPLv2.
11 *
12 */
13
14#include <linux/module.h>
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080015#include <linux/file.h>
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080016#include <linux/delay.h>
17#include <linux/bitops.h>
18#include <linux/genhd.h>
19#include <linux/device.h>
20#include <linux/buffer_head.h>
21#include <linux/bio.h>
Andrew Morton546e0d22006-09-25 23:32:44 -070022#include <linux/blkdev.h>
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080023#include <linux/swap.h>
24#include <linux/swapops.h>
25#include <linux/pm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090026#include <linux/slab.h>
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080027
28#include "power.h"
29
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080030#define SWSUSP_SIG "S1SUSPEND"
31
Jiri Slaby51fb3522010-05-01 23:53:02 +020032/*
33 * The swap map is a data structure used for keeping track of each page
34 * written to a swap partition. It consists of many swap_map_page
35 * structures that contain each an array of MAP_PAGE_SIZE swap entries.
36 * These structures are stored on the swap and linked together with the
37 * help of the .next_swap member.
38 *
39 * The swap map is created during suspend. The swap map pages are
40 * allocated and populated one at a time, so we only need one memory
41 * page to set up the entire structure.
42 *
43 * During resume we also only need to use one swap_map_page structure
44 * at a time.
45 */
46
47#define MAP_PAGE_ENTRIES (PAGE_SIZE / sizeof(sector_t) - 1)
48
49struct swap_map_page {
50 sector_t entries[MAP_PAGE_ENTRIES];
51 sector_t next_swap;
52};
53
54/**
55 * The swap_map_handle structure is used for handling swap in
56 * a file-alike way
57 */
58
59struct swap_map_handle {
60 struct swap_map_page *cur;
61 sector_t cur_swap;
62 sector_t first_sector;
63 unsigned int k;
64};
65
Vivek Goyal1b29c162007-05-02 19:27:07 +020066struct swsusp_header {
Rafael J. Wysockia634cc12007-07-19 01:47:30 -070067 char reserved[PAGE_SIZE - 20 - sizeof(sector_t) - sizeof(int)];
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -080068 sector_t image;
Rafael J. Wysockia634cc12007-07-19 01:47:30 -070069 unsigned int flags; /* Flags to pass to the "boot" kernel */
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080070 char orig_sig[10];
71 char sig[10];
Vivek Goyal1b29c162007-05-02 19:27:07 +020072} __attribute__((packed));
73
74static struct swsusp_header *swsusp_header;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -080075
Nigel Cunningham0414f2e2009-12-06 16:15:53 +010076/**
77 * The following functions are used for tracing the allocated
78 * swap pages, so that they can be freed in case of an error.
79 */
80
81struct swsusp_extent {
82 struct rb_node node;
83 unsigned long start;
84 unsigned long end;
85};
86
87static struct rb_root swsusp_extents = RB_ROOT;
88
89static int swsusp_extents_insert(unsigned long swap_offset)
90{
91 struct rb_node **new = &(swsusp_extents.rb_node);
92 struct rb_node *parent = NULL;
93 struct swsusp_extent *ext;
94
95 /* Figure out where to put the new node */
96 while (*new) {
97 ext = container_of(*new, struct swsusp_extent, node);
98 parent = *new;
99 if (swap_offset < ext->start) {
100 /* Try to merge */
101 if (swap_offset == ext->start - 1) {
102 ext->start--;
103 return 0;
104 }
105 new = &((*new)->rb_left);
106 } else if (swap_offset > ext->end) {
107 /* Try to merge */
108 if (swap_offset == ext->end + 1) {
109 ext->end++;
110 return 0;
111 }
112 new = &((*new)->rb_right);
113 } else {
114 /* It already is in the tree */
115 return -EINVAL;
116 }
117 }
118 /* Add the new node and rebalance the tree. */
119 ext = kzalloc(sizeof(struct swsusp_extent), GFP_KERNEL);
120 if (!ext)
121 return -ENOMEM;
122
123 ext->start = swap_offset;
124 ext->end = swap_offset;
125 rb_link_node(&ext->node, parent, new);
126 rb_insert_color(&ext->node, &swsusp_extents);
127 return 0;
128}
129
130/**
131 * alloc_swapdev_block - allocate a swap page and register that it has
132 * been allocated, so that it can be freed in case of an error.
133 */
134
135sector_t alloc_swapdev_block(int swap)
136{
137 unsigned long offset;
138
139 offset = swp_offset(get_swap_page_of_type(swap));
140 if (offset) {
141 if (swsusp_extents_insert(offset))
142 swap_free(swp_entry(swap, offset));
143 else
144 return swapdev_block(swap, offset);
145 }
146 return 0;
147}
148
149/**
150 * free_all_swap_pages - free swap pages allocated for saving image data.
151 * It also frees the extents used to register which swap entres had been
152 * allocated.
153 */
154
155void free_all_swap_pages(int swap)
156{
157 struct rb_node *node;
158
159 while ((node = swsusp_extents.rb_node)) {
160 struct swsusp_extent *ext;
161 unsigned long offset;
162
163 ext = container_of(node, struct swsusp_extent, node);
164 rb_erase(node, &swsusp_extents);
165 for (offset = ext->start; offset <= ext->end; offset++)
166 swap_free(swp_entry(swap, offset));
167
168 kfree(ext);
169 }
170}
171
172int swsusp_swap_in_use(void)
173{
174 return (swsusp_extents.rb_node != NULL);
175}
176
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800177/*
Rafael J. Wysocki3fc6b342006-12-06 20:34:09 -0800178 * General things
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800179 */
180
181static unsigned short root_swap = 0xffff;
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200182struct block_device *hib_resume_bdev;
Rafael J. Wysocki3fc6b342006-12-06 20:34:09 -0800183
Rafael J. Wysocki3fc6b342006-12-06 20:34:09 -0800184/*
185 * Saving part
186 */
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800187
Jiri Slaby51fb3522010-05-01 23:53:02 +0200188static int mark_swapfiles(struct swap_map_handle *handle, unsigned int flags)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800189{
190 int error;
191
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200192 hib_bio_read_page(swsusp_resume_block, swsusp_header, NULL);
Vivek Goyal1b29c162007-05-02 19:27:07 +0200193 if (!memcmp("SWAP-SPACE",swsusp_header->sig, 10) ||
194 !memcmp("SWAPSPACE2",swsusp_header->sig, 10)) {
195 memcpy(swsusp_header->orig_sig,swsusp_header->sig, 10);
196 memcpy(swsusp_header->sig,SWSUSP_SIG, 10);
Jiri Slaby51fb3522010-05-01 23:53:02 +0200197 swsusp_header->image = handle->first_sector;
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700198 swsusp_header->flags = flags;
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200199 error = hib_bio_write_page(swsusp_resume_block,
Vivek Goyal1b29c162007-05-02 19:27:07 +0200200 swsusp_header, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800201 } else {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100202 printk(KERN_ERR "PM: Swap header not found!\n");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800203 error = -ENODEV;
204 }
205 return error;
206}
207
208/**
209 * swsusp_swap_check - check if the resume device is a swap device
210 * and get its index (if so)
Jiri Slaby6f612af2010-05-01 23:54:02 +0200211 *
212 * This is called before saving image
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800213 */
Jiri Slaby6f612af2010-05-01 23:54:02 +0200214static int swsusp_swap_check(void)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800215{
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800216 int res;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800217
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800218 res = swap_type_of(swsusp_resume_device, swsusp_resume_block,
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200219 &hib_resume_bdev);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800220 if (res < 0)
221 return res;
222
223 root_swap = res;
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200224 res = blkdev_get(hib_resume_bdev, FMODE_WRITE);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800225 if (res)
226 return res;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800227
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200228 res = set_blocksize(hib_resume_bdev, PAGE_SIZE);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800229 if (res < 0)
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200230 blkdev_put(hib_resume_bdev, FMODE_WRITE);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800231
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800232 return res;
233}
234
235/**
236 * write_page - Write one page to given swap location.
237 * @buf: Address we're writing.
238 * @offset: Offset of the swap page we're writing to.
Andrew Mortonab954162006-09-25 23:32:42 -0700239 * @bio_chain: Link the next write BIO here
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800240 */
241
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800242static int write_page(void *buf, sector_t offset, struct bio **bio_chain)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800243{
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800244 void *src;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800245
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800246 if (!offset)
247 return -ENOSPC;
Andrew Mortonab954162006-09-25 23:32:42 -0700248
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800249 if (bio_chain) {
Rafael J. Wysocki85949122006-12-06 20:34:19 -0800250 src = (void *)__get_free_page(__GFP_WAIT | __GFP_HIGH);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800251 if (src) {
252 memcpy(src, buf, PAGE_SIZE);
253 } else {
254 WARN_ON_ONCE(1);
255 bio_chain = NULL; /* Go synchronous */
256 src = buf;
Andrew Mortonab954162006-09-25 23:32:42 -0700257 }
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800258 } else {
259 src = buf;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800260 }
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200261 return hib_bio_write_page(offset, src, bio_chain);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800262}
263
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800264static void release_swap_writer(struct swap_map_handle *handle)
265{
266 if (handle->cur)
267 free_page((unsigned long)handle->cur);
268 handle->cur = NULL;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800269}
270
271static int get_swap_writer(struct swap_map_handle *handle)
272{
Jiri Slaby6f612af2010-05-01 23:54:02 +0200273 int ret;
274
275 ret = swsusp_swap_check();
276 if (ret) {
277 if (ret != -ENOSPC)
278 printk(KERN_ERR "PM: Cannot find swap device, try "
279 "swapon -a.\n");
280 return ret;
281 }
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800282 handle->cur = (struct swap_map_page *)get_zeroed_page(GFP_KERNEL);
Jiri Slaby6f612af2010-05-01 23:54:02 +0200283 if (!handle->cur) {
284 ret = -ENOMEM;
285 goto err_close;
286 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700287 handle->cur_swap = alloc_swapdev_block(root_swap);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800288 if (!handle->cur_swap) {
Jiri Slaby6f612af2010-05-01 23:54:02 +0200289 ret = -ENOSPC;
290 goto err_rel;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800291 }
292 handle->k = 0;
Jiri Slaby51fb3522010-05-01 23:53:02 +0200293 handle->first_sector = handle->cur_swap;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800294 return 0;
Jiri Slaby6f612af2010-05-01 23:54:02 +0200295err_rel:
296 release_swap_writer(handle);
297err_close:
298 swsusp_close(FMODE_WRITE);
299 return ret;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800300}
301
Andrew Mortonab954162006-09-25 23:32:42 -0700302static int swap_write_page(struct swap_map_handle *handle, void *buf,
303 struct bio **bio_chain)
304{
305 int error = 0;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800306 sector_t offset;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800307
308 if (!handle->cur)
309 return -EINVAL;
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700310 offset = alloc_swapdev_block(root_swap);
Andrew Mortonab954162006-09-25 23:32:42 -0700311 error = write_page(buf, offset, bio_chain);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800312 if (error)
313 return error;
314 handle->cur->entries[handle->k++] = offset;
315 if (handle->k >= MAP_PAGE_ENTRIES) {
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200316 error = hib_wait_on_bio_chain(bio_chain);
Andrew Mortonab954162006-09-25 23:32:42 -0700317 if (error)
318 goto out;
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700319 offset = alloc_swapdev_block(root_swap);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800320 if (!offset)
321 return -ENOSPC;
322 handle->cur->next_swap = offset;
Andrew Mortonab954162006-09-25 23:32:42 -0700323 error = write_page(handle->cur, handle->cur_swap, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800324 if (error)
Andrew Mortonab954162006-09-25 23:32:42 -0700325 goto out;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800326 memset(handle->cur, 0, PAGE_SIZE);
327 handle->cur_swap = offset;
328 handle->k = 0;
329 }
Rafael J. Wysocki59a493352006-12-06 20:34:44 -0800330 out:
Andrew Mortonab954162006-09-25 23:32:42 -0700331 return error;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800332}
333
334static int flush_swap_writer(struct swap_map_handle *handle)
335{
336 if (handle->cur && handle->cur_swap)
Andrew Mortonab954162006-09-25 23:32:42 -0700337 return write_page(handle->cur, handle->cur_swap, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800338 else
339 return -EINVAL;
340}
341
Jiri Slaby6f612af2010-05-01 23:54:02 +0200342static int swap_writer_finish(struct swap_map_handle *handle,
343 unsigned int flags, int error)
344{
345 if (!error) {
346 flush_swap_writer(handle);
347 printk(KERN_INFO "PM: S");
348 error = mark_swapfiles(handle, flags);
349 printk("|\n");
350 }
351
352 if (error)
353 free_all_swap_pages(root_swap);
354 release_swap_writer(handle);
355 swsusp_close(FMODE_WRITE);
356
357 return error;
358}
359
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800360/**
361 * save_image - save the suspend image data
362 */
363
364static int save_image(struct swap_map_handle *handle,
365 struct snapshot_handle *snapshot,
Andrew Morton3a4f7572006-09-25 23:32:41 -0700366 unsigned int nr_to_write)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800367{
368 unsigned int m;
369 int ret;
Andrew Morton3a4f7572006-09-25 23:32:41 -0700370 int nr_pages;
Andrew Mortonab954162006-09-25 23:32:42 -0700371 int err2;
372 struct bio *bio;
Andrew Morton3a4f7572006-09-25 23:32:41 -0700373 struct timeval start;
374 struct timeval stop;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800375
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100376 printk(KERN_INFO "PM: Saving image data pages (%u pages) ... ",
377 nr_to_write);
Andrew Morton3a4f7572006-09-25 23:32:41 -0700378 m = nr_to_write / 100;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800379 if (!m)
380 m = 1;
381 nr_pages = 0;
Andrew Mortonab954162006-09-25 23:32:42 -0700382 bio = NULL;
Andrew Morton3a4f7572006-09-25 23:32:41 -0700383 do_gettimeofday(&start);
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100384 while (1) {
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200385 ret = snapshot_read_next(snapshot);
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100386 if (ret <= 0)
387 break;
388 ret = swap_write_page(handle, data_of(*snapshot), &bio);
389 if (ret)
390 break;
391 if (!(nr_pages % m))
Jiri Slaby66d0ae42009-12-06 16:16:24 +0100392 printk(KERN_CONT "\b\b\b\b%3d%%", nr_pages / m);
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100393 nr_pages++;
394 }
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200395 err2 = hib_wait_on_bio_chain(&bio);
Andrew Morton3a4f7572006-09-25 23:32:41 -0700396 do_gettimeofday(&stop);
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100397 if (!ret)
398 ret = err2;
399 if (!ret)
Jiri Slaby66d0ae42009-12-06 16:16:24 +0100400 printk(KERN_CONT "\b\b\b\bdone\n");
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100401 else
Jiri Slaby66d0ae42009-12-06 16:16:24 +0100402 printk(KERN_CONT "\n");
Rafael J. Wysocki0d3a9ab2006-12-06 20:34:32 -0800403 swsusp_show_speed(&start, &stop, nr_to_write, "Wrote");
Jiri Slaby4ff277f2009-10-28 22:55:33 +0100404 return ret;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800405}
406
407/**
408 * enough_swap - Make sure we have enough swap to save the image.
409 *
410 * Returns TRUE or FALSE after checking the total amount of swap
411 * space avaiable from the resume partition.
412 */
413
414static int enough_swap(unsigned int nr_pages)
415{
416 unsigned int free_swap = count_swap_pages(root_swap, 1);
417
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100418 pr_debug("PM: Free swap pages: %u\n", free_swap);
Rafael J. Wysocki940864d2006-09-25 23:32:55 -0700419 return free_swap > nr_pages + PAGES_FOR_IO;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800420}
421
422/**
423 * swsusp_write - Write entire image and metadata.
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700424 * @flags: flags to pass to the "boot" kernel in the image header
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800425 *
426 * It is important _NOT_ to umount filesystems at this point. We want
427 * them synced (in case something goes wrong) but we DO not want to mark
428 * filesystem clean: it is not. (And it does not matter, if we resume
429 * correctly, we'll mark system clean, anyway.)
430 */
431
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700432int swsusp_write(unsigned int flags)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800433{
434 struct swap_map_handle handle;
435 struct snapshot_handle snapshot;
436 struct swsusp_info *header;
Jiri Slaby6f612af2010-05-01 23:54:02 +0200437 unsigned long pages;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800438 int error;
439
Jiri Slaby6f612af2010-05-01 23:54:02 +0200440 pages = snapshot_get_image_size();
441 error = get_swap_writer(&handle);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800442 if (error) {
Jiri Slaby6f612af2010-05-01 23:54:02 +0200443 printk(KERN_ERR "PM: Cannot get swap writer\n");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800444 return error;
445 }
Jiri Slaby6f612af2010-05-01 23:54:02 +0200446 if (!enough_swap(pages)) {
447 printk(KERN_ERR "PM: Not enough free swap\n");
448 error = -ENOSPC;
449 goto out_finish;
450 }
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800451 memset(&snapshot, 0, sizeof(struct snapshot_handle));
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200452 error = snapshot_read_next(&snapshot);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800453 if (error < PAGE_SIZE) {
454 if (error >= 0)
455 error = -EFAULT;
456
Jiri Slaby6f612af2010-05-01 23:54:02 +0200457 goto out_finish;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800458 }
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800459 header = (struct swsusp_info *)data_of(snapshot);
Jiri Slaby6f612af2010-05-01 23:54:02 +0200460 error = swap_write_page(&handle, header, NULL);
461 if (!error)
462 error = save_image(&handle, &snapshot, pages - 1);
463out_finish:
464 error = swap_writer_finish(&handle, flags, error);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800465 return error;
466}
467
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800468/**
469 * The following functions allow us to read data using a swap map
470 * in a file-alike way
471 */
472
473static void release_swap_reader(struct swap_map_handle *handle)
474{
475 if (handle->cur)
476 free_page((unsigned long)handle->cur);
477 handle->cur = NULL;
478}
479
Jiri Slaby6f612af2010-05-01 23:54:02 +0200480static int get_swap_reader(struct swap_map_handle *handle,
481 unsigned int *flags_p)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800482{
483 int error;
484
Jiri Slaby6f612af2010-05-01 23:54:02 +0200485 *flags_p = swsusp_header->flags;
486
487 if (!swsusp_header->image) /* how can this happen? */
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800488 return -EINVAL;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800489
Rafael J. Wysocki85949122006-12-06 20:34:19 -0800490 handle->cur = (struct swap_map_page *)get_zeroed_page(__GFP_WAIT | __GFP_HIGH);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800491 if (!handle->cur)
492 return -ENOMEM;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800493
Jiri Slaby6f612af2010-05-01 23:54:02 +0200494 error = hib_bio_read_page(swsusp_header->image, handle->cur, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800495 if (error) {
496 release_swap_reader(handle);
497 return error;
498 }
499 handle->k = 0;
500 return 0;
501}
502
Andrew Morton546e0d22006-09-25 23:32:44 -0700503static int swap_read_page(struct swap_map_handle *handle, void *buf,
504 struct bio **bio_chain)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800505{
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800506 sector_t offset;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800507 int error;
508
509 if (!handle->cur)
510 return -EINVAL;
511 offset = handle->cur->entries[handle->k];
512 if (!offset)
513 return -EFAULT;
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200514 error = hib_bio_read_page(offset, buf, bio_chain);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800515 if (error)
516 return error;
517 if (++handle->k >= MAP_PAGE_ENTRIES) {
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200518 error = hib_wait_on_bio_chain(bio_chain);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800519 handle->k = 0;
520 offset = handle->cur->next_swap;
521 if (!offset)
522 release_swap_reader(handle);
Andrew Morton546e0d22006-09-25 23:32:44 -0700523 else if (!error)
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200524 error = hib_bio_read_page(offset, handle->cur, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800525 }
526 return error;
527}
528
Jiri Slaby6f612af2010-05-01 23:54:02 +0200529static int swap_reader_finish(struct swap_map_handle *handle)
530{
531 release_swap_reader(handle);
532
533 return 0;
534}
535
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800536/**
537 * load_image - load the image using the swap map handle
538 * @handle and the snapshot handle @snapshot
539 * (assume there are @nr_pages pages to load)
540 */
541
542static int load_image(struct swap_map_handle *handle,
543 struct snapshot_handle *snapshot,
Andrew Morton546e0d22006-09-25 23:32:44 -0700544 unsigned int nr_to_read)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800545{
546 unsigned int m;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800547 int error = 0;
Andrew Morton8c002492006-09-25 23:32:43 -0700548 struct timeval start;
549 struct timeval stop;
Andrew Morton546e0d22006-09-25 23:32:44 -0700550 struct bio *bio;
551 int err2;
552 unsigned nr_pages;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800553
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100554 printk(KERN_INFO "PM: Loading image data pages (%u pages) ... ",
555 nr_to_read);
Andrew Morton546e0d22006-09-25 23:32:44 -0700556 m = nr_to_read / 100;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800557 if (!m)
558 m = 1;
559 nr_pages = 0;
Andrew Morton546e0d22006-09-25 23:32:44 -0700560 bio = NULL;
Andrew Morton8c002492006-09-25 23:32:43 -0700561 do_gettimeofday(&start);
Andrew Morton546e0d22006-09-25 23:32:44 -0700562 for ( ; ; ) {
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200563 error = snapshot_write_next(snapshot);
Andrew Morton546e0d22006-09-25 23:32:44 -0700564 if (error <= 0)
565 break;
566 error = swap_read_page(handle, data_of(*snapshot), &bio);
567 if (error)
568 break;
569 if (snapshot->sync_read)
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200570 error = hib_wait_on_bio_chain(&bio);
Andrew Morton546e0d22006-09-25 23:32:44 -0700571 if (error)
572 break;
573 if (!(nr_pages % m))
574 printk("\b\b\b\b%3d%%", nr_pages / m);
575 nr_pages++;
576 }
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200577 err2 = hib_wait_on_bio_chain(&bio);
Andrew Morton8c002492006-09-25 23:32:43 -0700578 do_gettimeofday(&stop);
Andrew Morton546e0d22006-09-25 23:32:44 -0700579 if (!error)
580 error = err2;
Con Kolivase655a252006-03-26 01:37:11 -0800581 if (!error) {
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800582 printk("\b\b\b\bdone\n");
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800583 snapshot_write_finalize(snapshot);
Con Kolivase655a252006-03-26 01:37:11 -0800584 if (!snapshot_image_loaded(snapshot))
585 error = -ENODATA;
Jiri Slabybf9fd672009-10-28 22:55:42 +0100586 } else
587 printk("\n");
Rafael J. Wysocki0d3a9ab2006-12-06 20:34:32 -0800588 swsusp_show_speed(&start, &stop, nr_to_read, "Read");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800589 return error;
590}
591
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700592/**
593 * swsusp_read - read the hibernation image.
594 * @flags_p: flags passed by the "frozen" kernel in the image header should
595 * be written into this memeory location
596 */
597
598int swsusp_read(unsigned int *flags_p)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800599{
600 int error;
601 struct swap_map_handle handle;
602 struct snapshot_handle snapshot;
603 struct swsusp_info *header;
604
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800605 memset(&snapshot, 0, sizeof(struct snapshot_handle));
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200606 error = snapshot_write_next(&snapshot);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800607 if (error < PAGE_SIZE)
608 return error < 0 ? error : -EFAULT;
609 header = (struct swsusp_info *)data_of(snapshot);
Jiri Slaby6f612af2010-05-01 23:54:02 +0200610 error = get_swap_reader(&handle, flags_p);
611 if (error)
612 goto end;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800613 if (!error)
Andrew Morton546e0d22006-09-25 23:32:44 -0700614 error = swap_read_page(&handle, header, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800615 if (!error)
616 error = load_image(&handle, &snapshot, header->pages - 1);
Jiri Slaby6f612af2010-05-01 23:54:02 +0200617 swap_reader_finish(&handle);
618end:
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800619 if (!error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100620 pr_debug("PM: Image successfully loaded\n");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800621 else
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100622 pr_debug("PM: Error %d resuming\n", error);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800623 return error;
624}
625
626/**
627 * swsusp_check - Check for swsusp signature in the resume device
628 */
629
630int swsusp_check(void)
631{
632 int error;
633
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200634 hib_resume_bdev = open_by_devnum(swsusp_resume_device, FMODE_READ);
635 if (!IS_ERR(hib_resume_bdev)) {
636 set_blocksize(hib_resume_bdev, PAGE_SIZE);
OGAWA Hirofumi6373da12007-05-23 13:58:00 -0700637 memset(swsusp_header, 0, PAGE_SIZE);
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200638 error = hib_bio_read_page(swsusp_resume_block,
Vivek Goyal1b29c162007-05-02 19:27:07 +0200639 swsusp_header, NULL);
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800640 if (error)
Jiri Slaby76b57e62009-10-07 22:37:35 +0200641 goto put;
Rafael J. Wysocki9a154d92006-12-06 20:34:12 -0800642
Vivek Goyal1b29c162007-05-02 19:27:07 +0200643 if (!memcmp(SWSUSP_SIG, swsusp_header->sig, 10)) {
644 memcpy(swsusp_header->sig, swsusp_header->orig_sig, 10);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800645 /* Reset swap signature now */
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200646 error = hib_bio_write_page(swsusp_resume_block,
Vivek Goyal1b29c162007-05-02 19:27:07 +0200647 swsusp_header, NULL);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800648 } else {
Jiri Slaby76b57e62009-10-07 22:37:35 +0200649 error = -EINVAL;
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800650 }
Jiri Slaby76b57e62009-10-07 22:37:35 +0200651
652put:
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800653 if (error)
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200654 blkdev_put(hib_resume_bdev, FMODE_READ);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800655 else
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100656 pr_debug("PM: Signature found, resuming\n");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800657 } else {
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200658 error = PTR_ERR(hib_resume_bdev);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800659 }
660
661 if (error)
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100662 pr_debug("PM: Error %d checking image file\n", error);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800663
664 return error;
665}
666
667/**
668 * swsusp_close - close swap device.
669 */
670
Al Viroc2dd0da2007-10-08 13:21:10 -0400671void swsusp_close(fmode_t mode)
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800672{
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200673 if (IS_ERR(hib_resume_bdev)) {
Rafael J. Wysocki23976722007-12-08 02:09:43 +0100674 pr_debug("PM: Image device not initialised\n");
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800675 return;
676 }
677
Jiri Slaby8a0d6132010-05-01 23:52:34 +0200678 blkdev_put(hib_resume_bdev, mode);
Rafael J. Wysocki61159a32006-03-23 03:00:00 -0800679}
Vivek Goyal1b29c162007-05-02 19:27:07 +0200680
681static int swsusp_header_init(void)
682{
683 swsusp_header = (struct swsusp_header*) __get_free_page(GFP_KERNEL);
684 if (!swsusp_header)
685 panic("Could not allocate memory for swsusp_header\n");
686 return 0;
687}
688
689core_initcall(swsusp_header_init);