blob: 35310b627388864b3125bce827e96d1a072c15b3 [file] [log] [blame]
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -08001/*
2 * linux/kernel/power/user.c
3 *
4 * This file provides the user space interface for software suspend/resume.
5 *
6 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
7 *
8 * This file is released under the GPLv2.
9 *
10 */
11
12#include <linux/suspend.h>
13#include <linux/syscalls.h>
Stefan Seyfried35926952006-12-06 20:34:06 -080014#include <linux/reboot.h>
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080015#include <linux/string.h>
16#include <linux/device.h>
17#include <linux/miscdevice.h>
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/swapops.h>
21#include <linux/pm.h>
22#include <linux/fs.h>
Ben Hutchingsc3360782011-12-27 22:54:52 +010023#include <linux/compat.h>
Rafael J. Wysocki97c78012006-10-11 01:20:45 -070024#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070025#include <linux/cpu.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080026#include <linux/freezer.h>
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080027
28#include <asm/uaccess.h>
29
30#include "power.h"
31
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +020032
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080033#define SNAPSHOT_MINOR 231
34
35static struct snapshot_data {
36 struct snapshot_handle handle;
37 int swap;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080038 int mode;
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +020039 bool frozen;
40 bool ready;
41 bool platform_support;
Rafael J. Wysockiaab17282013-09-30 19:40:56 +020042 bool free_bitmaps;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080043} snapshot_state;
44
Rafael J. Wysocki0709db62007-05-06 14:50:45 -070045atomic_t snapshot_device_available = ATOMIC_INIT(1);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080046
47static int snapshot_open(struct inode *inode, struct file *filp)
48{
49 struct snapshot_data *data;
Lianwei Wangea00f4f2016-06-19 23:52:27 -070050 int error, nr_calls = 0;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080051
Kees Cooka6e15a32014-06-13 13:30:35 -070052 if (!hibernation_available())
53 return -EPERM;
54
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +010055 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +020056
57 if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
58 error = -EBUSY;
59 goto Unlock;
60 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080061
Rafael J. Wysocki1525a2a2007-05-06 14:50:44 -070062 if ((filp->f_flags & O_ACCMODE) == O_RDWR) {
Rafael J. Wysocki0709db62007-05-06 14:50:45 -070063 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +020064 error = -ENOSYS;
65 goto Unlock;
Rafael J. Wysocki1525a2a2007-05-06 14:50:44 -070066 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080067 nonseekable_open(inode, filp);
68 data = &snapshot_state;
69 filp->private_data = data;
70 memset(&data->handle, 0, sizeof(struct snapshot_handle));
71 if ((filp->f_flags & O_ACCMODE) == O_RDONLY) {
Rafael J. Wysockic7510852009-04-12 20:06:56 +020072 /* Hibernating. The image device should be accessible. */
Rafael J. Wysocki915bae92006-12-06 20:34:07 -080073 data->swap = swsusp_resume_device ?
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -080074 swap_type_of(swsusp_resume_device, 0, NULL) : -1;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080075 data->mode = O_RDONLY;
Rafael J. Wysocki6a0c7cd2013-11-14 23:26:58 +010076 data->free_bitmaps = false;
Lianwei Wangea00f4f2016-06-19 23:52:27 -070077 error = __pm_notifier_call_chain(PM_HIBERNATION_PREPARE, -1, &nr_calls);
Alan Sternc3e94d82007-11-19 23:38:25 +010078 if (error)
Lianwei Wangea00f4f2016-06-19 23:52:27 -070079 __pm_notifier_call_chain(PM_POST_HIBERNATION, --nr_calls, NULL);
Andrey Borzenkovebae2602009-02-14 02:05:14 +010080 } else {
Rafael J. Wysockic7510852009-04-12 20:06:56 +020081 /*
82 * Resuming. We may need to wait for the image device to
83 * appear.
84 */
85 wait_for_device_probe();
Rafael J. Wysockic7510852009-04-12 20:06:56 +020086
Andrey Borzenkovebae2602009-02-14 02:05:14 +010087 data->swap = -1;
88 data->mode = O_WRONLY;
Lianwei Wangea00f4f2016-06-19 23:52:27 -070089 error = __pm_notifier_call_chain(PM_RESTORE_PREPARE, -1, &nr_calls);
Rafael J. Wysockiaab17282013-09-30 19:40:56 +020090 if (!error) {
91 error = create_basic_memory_bitmaps();
92 data->free_bitmaps = !error;
Lianwei Wangea00f4f2016-06-19 23:52:27 -070093 } else
94 nr_calls--;
95
Andrey Borzenkovebae2602009-02-14 02:05:14 +010096 if (error)
Lianwei Wangea00f4f2016-06-19 23:52:27 -070097 __pm_notifier_call_chain(PM_POST_RESTORE, nr_calls, NULL);
Alan Sternc3e94d82007-11-19 23:38:25 +010098 }
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +020099 if (error)
Alan Sternc3e94d82007-11-19 23:38:25 +0100100 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200101
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200102 data->frozen = false;
103 data->ready = false;
104 data->platform_support = false;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800105
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200106 Unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100107 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200108
109 return error;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800110}
111
112static int snapshot_release(struct inode *inode, struct file *filp)
113{
114 struct snapshot_data *data;
115
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100116 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200117
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800118 swsusp_free();
119 data = filp->private_data;
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700120 free_all_swap_pages(data->swap);
Rafael J. Wysocki9744997a2011-05-10 21:10:01 +0200121 if (data->frozen) {
122 pm_restore_gfp_mask();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200123 free_basic_memory_bitmaps();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800124 thaw_processes();
Rafael J. Wysockiaab17282013-09-30 19:40:56 +0200125 } else if (data->free_bitmaps) {
126 free_basic_memory_bitmaps();
Rafael J. Wysocki9744997a2011-05-10 21:10:01 +0200127 }
Takashi Iwai1497dd12010-12-10 00:16:39 +0100128 pm_notifier_call_chain(data->mode == O_RDONLY ?
Alan Sternc3e94d82007-11-19 23:38:25 +0100129 PM_POST_HIBERNATION : PM_POST_RESTORE);
Rafael J. Wysocki0709db62007-05-06 14:50:45 -0700130 atomic_inc(&snapshot_device_available);
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200131
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100132 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200133
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800134 return 0;
135}
136
137static ssize_t snapshot_read(struct file *filp, char __user *buf,
138 size_t count, loff_t *offp)
139{
140 struct snapshot_data *data;
141 ssize_t res;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200142 loff_t pg_offp = *offp & ~PAGE_MASK;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800143
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100144 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200145
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800146 data = filp->private_data;
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200147 if (!data->ready) {
148 res = -ENODATA;
149 goto Unlock;
150 }
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200151 if (!pg_offp) { /* on page boundary? */
152 res = snapshot_read_next(&data->handle);
153 if (res <= 0)
154 goto Unlock;
155 } else {
156 res = PAGE_SIZE - pg_offp;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800157 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200158
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200159 res = simple_read_from_buffer(buf, count, &pg_offp,
160 data_of(data->handle), res);
161 if (res > 0)
162 *offp += res;
163
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200164 Unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100165 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200166
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800167 return res;
168}
169
170static ssize_t snapshot_write(struct file *filp, const char __user *buf,
171 size_t count, loff_t *offp)
172{
173 struct snapshot_data *data;
174 ssize_t res;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200175 loff_t pg_offp = *offp & ~PAGE_MASK;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800176
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100177 lock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200178
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800179 data = filp->private_data;
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200180
181 if (!pg_offp) {
182 res = snapshot_write_next(&data->handle);
183 if (res <= 0)
184 goto unlock;
185 } else {
186 res = PAGE_SIZE - pg_offp;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800187 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200188
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200189 res = simple_write_to_buffer(data_of(data->handle), res, &pg_offp,
190 buf, count);
191 if (res > 0)
192 *offp += res;
193unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100194 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200195
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800196 return res;
197}
198
Alan Cox52d11022008-06-11 22:07:52 +0200199static long snapshot_ioctl(struct file *filp, unsigned int cmd,
200 unsigned long arg)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800201{
202 int error = 0;
203 struct snapshot_data *data;
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200204 loff_t size;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800205 sector_t offset;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800206
207 if (_IOC_TYPE(cmd) != SNAPSHOT_IOC_MAGIC)
208 return -ENOTTY;
209 if (_IOC_NR(cmd) > SNAPSHOT_IOC_MAXNR)
210 return -ENOTTY;
211 if (!capable(CAP_SYS_ADMIN))
212 return -EPERM;
213
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200214 if (!mutex_trylock(&pm_mutex))
215 return -EBUSY;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800216
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200217 lock_device_hotplug();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200218 data = filp->private_data;
Alan Cox52d11022008-06-11 22:07:52 +0200219
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800220 switch (cmd) {
221
222 case SNAPSHOT_FREEZE:
223 if (data->frozen)
224 break;
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700225
Alan Sternc3e94d82007-11-19 23:38:25 +0100226 printk("Syncing filesystems ... ");
227 sys_sync();
228 printk("done.\n");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700229
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700230 error = freeze_processes();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200231 if (error)
232 break;
233
234 error = create_basic_memory_bitmaps();
235 if (error)
236 thaw_processes();
237 else
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200238 data->frozen = true;
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200239
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800240 break;
241
242 case SNAPSHOT_UNFREEZE:
Rafael J. Wysocki2f41ddd2007-06-16 10:16:03 -0700243 if (!data->frozen || data->ready)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800244 break;
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100245 pm_restore_gfp_mask();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200246 free_basic_memory_bitmaps();
Rafael J. Wysockiaab17282013-09-30 19:40:56 +0200247 data->free_bitmaps = false;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800248 thaw_processes();
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200249 data->frozen = false;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800250 break;
251
Jiri Slabyb694e522010-01-27 23:47:50 +0100252 case SNAPSHOT_CREATE_IMAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800253 if (data->mode != O_RDONLY || !data->frozen || data->ready) {
254 error = -EPERM;
255 break;
256 }
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100257 pm_restore_gfp_mask();
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200258 error = hibernation_snapshot(data->platform_support);
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100259 if (!error) {
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200260 error = put_user(in_suspend, (int __user *)arg);
Srivatsa S. Bhata556d5b52012-02-04 23:39:56 +0100261 data->ready = !freezer_test_done && !error;
262 freezer_test_done = false;
Srivatsa S. Bhat97819a22011-12-01 22:33:10 +0100263 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800264 break;
265
266 case SNAPSHOT_ATOMIC_RESTORE:
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800267 snapshot_write_finalize(&data->handle);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800268 if (data->mode != O_WRONLY || !data->frozen ||
269 !snapshot_image_loaded(&data->handle)) {
270 error = -EPERM;
271 break;
272 }
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200273 error = hibernation_restore(data->platform_support);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800274 break;
275
276 case SNAPSHOT_FREE:
277 swsusp_free();
278 memset(&data->handle, 0, sizeof(struct snapshot_handle));
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200279 data->ready = false;
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100280 /*
281 * It is necessary to thaw kernel threads here, because
282 * SNAPSHOT_CREATE_IMAGE may be invoked directly after
283 * SNAPSHOT_FREE. In that case, if kernel threads were not
284 * thawed, the preallocation of memory carried out by
285 * hibernation_snapshot() might run into problems (i.e. it
286 * might fail or even deadlock).
287 */
288 thaw_kernel_threads();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800289 break;
290
Jiri Slabyb694e522010-01-27 23:47:50 +0100291 case SNAPSHOT_PREF_IMAGE_SIZE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800292 image_size = arg;
293 break;
294
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200295 case SNAPSHOT_GET_IMAGE_SIZE:
296 if (!data->ready) {
297 error = -ENODATA;
298 break;
299 }
300 size = snapshot_get_image_size();
301 size <<= PAGE_SHIFT;
302 error = put_user(size, (loff_t __user *)arg);
303 break;
304
Jiri Slabyb694e522010-01-27 23:47:50 +0100305 case SNAPSHOT_AVAIL_SWAP_SIZE:
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200306 size = count_swap_pages(data->swap, 1);
307 size <<= PAGE_SHIFT;
308 error = put_user(size, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800309 break;
310
Jiri Slabyb694e522010-01-27 23:47:50 +0100311 case SNAPSHOT_ALLOC_SWAP_PAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800312 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
313 error = -ENODEV;
314 break;
315 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700316 offset = alloc_swapdev_block(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800317 if (offset) {
318 offset <<= PAGE_SHIFT;
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200319 error = put_user(offset, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800320 } else {
321 error = -ENOSPC;
322 }
323 break;
324
325 case SNAPSHOT_FREE_SWAP_PAGES:
326 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
327 error = -ENODEV;
328 break;
329 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700330 free_all_swap_pages(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800331 break;
332
Luca Tettamanti9b238202006-03-23 03:00:09 -0800333 case SNAPSHOT_S2RAM:
334 if (!data->frozen) {
335 error = -EPERM;
336 break;
337 }
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700338 /*
339 * Tasks are frozen and the notifiers have been called with
340 * PM_HIBERNATION_PREPARE
341 */
342 error = suspend_devices_and_enter(PM_SUSPEND_MEM);
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200343 data->ready = false;
Luca Tettamanti9b238202006-03-23 03:00:09 -0800344 break;
345
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200346 case SNAPSHOT_PLATFORM_SUPPORT:
347 data->platform_support = !!arg;
348 break;
349
350 case SNAPSHOT_POWER_OFF:
351 if (data->platform_support)
352 error = hibernation_platform_enter();
353 break;
354
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800355 case SNAPSHOT_SET_SWAP_AREA:
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700356 if (swsusp_swap_in_use()) {
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800357 error = -EPERM;
358 } else {
359 struct resume_swap_area swap_area;
360 dev_t swdev;
361
362 error = copy_from_user(&swap_area, (void __user *)arg,
363 sizeof(struct resume_swap_area));
364 if (error) {
365 error = -EFAULT;
366 break;
367 }
368
369 /*
370 * User space encodes device types as two-byte values,
371 * so we need to recode them
372 */
Jiri Slabyd88d4052010-04-10 22:28:56 +0200373 swdev = new_decode_dev(swap_area.dev);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800374 if (swdev) {
375 offset = swap_area.offset;
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800376 data->swap = swap_type_of(swdev, offset, NULL);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800377 if (data->swap < 0)
378 error = -ENODEV;
379 } else {
380 data->swap = -1;
381 error = -EINVAL;
382 }
383 }
384 break;
385
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800386 default:
387 error = -ENOTTY;
388
389 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200390
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200391 unlock_device_hotplug();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200392 mutex_unlock(&pm_mutex);
393
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800394 return error;
395}
396
Ben Hutchingsc3360782011-12-27 22:54:52 +0100397#ifdef CONFIG_COMPAT
398
399struct compat_resume_swap_area {
400 compat_loff_t offset;
401 u32 dev;
402} __packed;
403
404static long
405snapshot_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
406{
407 BUILD_BUG_ON(sizeof(loff_t) != sizeof(compat_loff_t));
408
409 switch (cmd) {
410 case SNAPSHOT_GET_IMAGE_SIZE:
411 case SNAPSHOT_AVAIL_SWAP_SIZE:
412 case SNAPSHOT_ALLOC_SWAP_PAGE: {
413 compat_loff_t __user *uoffset = compat_ptr(arg);
414 loff_t offset;
415 mm_segment_t old_fs;
416 int err;
417
418 old_fs = get_fs();
419 set_fs(KERNEL_DS);
420 err = snapshot_ioctl(file, cmd, (unsigned long) &offset);
421 set_fs(old_fs);
422 if (!err && put_user(offset, uoffset))
423 err = -EFAULT;
424 return err;
425 }
426
427 case SNAPSHOT_CREATE_IMAGE:
428 return snapshot_ioctl(file, cmd,
429 (unsigned long) compat_ptr(arg));
430
431 case SNAPSHOT_SET_SWAP_AREA: {
432 struct compat_resume_swap_area __user *u_swap_area =
433 compat_ptr(arg);
434 struct resume_swap_area swap_area;
435 mm_segment_t old_fs;
436 int err;
437
438 err = get_user(swap_area.offset, &u_swap_area->offset);
439 err |= get_user(swap_area.dev, &u_swap_area->dev);
440 if (err)
441 return -EFAULT;
442 old_fs = get_fs();
443 set_fs(KERNEL_DS);
444 err = snapshot_ioctl(file, SNAPSHOT_SET_SWAP_AREA,
445 (unsigned long) &swap_area);
446 set_fs(old_fs);
447 return err;
448 }
449
450 default:
451 return snapshot_ioctl(file, cmd, arg);
452 }
453}
454
455#endif /* CONFIG_COMPAT */
456
Helge Deller15ad7cd2006-12-06 20:40:36 -0800457static const struct file_operations snapshot_fops = {
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800458 .open = snapshot_open,
459 .release = snapshot_release,
460 .read = snapshot_read,
461 .write = snapshot_write,
462 .llseek = no_llseek,
Alan Cox52d11022008-06-11 22:07:52 +0200463 .unlocked_ioctl = snapshot_ioctl,
Ben Hutchingsc3360782011-12-27 22:54:52 +0100464#ifdef CONFIG_COMPAT
465 .compat_ioctl = snapshot_compat_ioctl,
466#endif
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800467};
468
469static struct miscdevice snapshot_device = {
470 .minor = SNAPSHOT_MINOR,
471 .name = "snapshot",
472 .fops = &snapshot_fops,
473};
474
475static int __init snapshot_device_init(void)
476{
477 return misc_register(&snapshot_device);
478};
479
480device_initcall(snapshot_device_init);