blob: bc6dde1f1567dd1dd60b166949d34741bf195872 [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
Tetsuo Handa34f841a2018-05-26 09:59:36 +0900189 if (!data_of(data->handle)) {
190 res = -EINVAL;
191 goto unlock;
192 }
193
Jiri Slabyd3c1b242010-05-01 23:52:02 +0200194 res = simple_write_to_buffer(data_of(data->handle), res, &pg_offp,
195 buf, count);
196 if (res > 0)
197 *offp += res;
198unlock:
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100199 unlock_system_sleep();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200200
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800201 return res;
202}
203
Alan Cox52d11022008-06-11 22:07:52 +0200204static long snapshot_ioctl(struct file *filp, unsigned int cmd,
205 unsigned long arg)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800206{
207 int error = 0;
208 struct snapshot_data *data;
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200209 loff_t size;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -0800210 sector_t offset;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800211
212 if (_IOC_TYPE(cmd) != SNAPSHOT_IOC_MAGIC)
213 return -ENOTTY;
214 if (_IOC_NR(cmd) > SNAPSHOT_IOC_MAXNR)
215 return -ENOTTY;
216 if (!capable(CAP_SYS_ADMIN))
217 return -EPERM;
218
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200219 if (!mutex_trylock(&pm_mutex))
220 return -EBUSY;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800221
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200222 lock_device_hotplug();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200223 data = filp->private_data;
Alan Cox52d11022008-06-11 22:07:52 +0200224
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800225 switch (cmd) {
226
227 case SNAPSHOT_FREEZE:
228 if (data->frozen)
229 break;
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700230
Alan Sternc3e94d82007-11-19 23:38:25 +0100231 printk("Syncing filesystems ... ");
232 sys_sync();
233 printk("done.\n");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700234
Rafael J. Wysocki1bfcf132008-10-15 22:01:21 -0700235 error = freeze_processes();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200236 if (error)
237 break;
238
239 error = create_basic_memory_bitmaps();
240 if (error)
241 thaw_processes();
242 else
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200243 data->frozen = true;
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200244
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800245 break;
246
247 case SNAPSHOT_UNFREEZE:
Rafael J. Wysocki2f41ddd2007-06-16 10:16:03 -0700248 if (!data->frozen || data->ready)
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800249 break;
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100250 pm_restore_gfp_mask();
Rafael J. Wysocki8fd37a42013-08-30 14:19:38 +0200251 free_basic_memory_bitmaps();
Rafael J. Wysockiaab17282013-09-30 19:40:56 +0200252 data->free_bitmaps = false;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800253 thaw_processes();
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200254 data->frozen = false;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800255 break;
256
Jiri Slabyb694e522010-01-27 23:47:50 +0100257 case SNAPSHOT_CREATE_IMAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800258 if (data->mode != O_RDONLY || !data->frozen || data->ready) {
259 error = -EPERM;
260 break;
261 }
Rafael J. Wysockic9e664f2010-12-03 22:57:45 +0100262 pm_restore_gfp_mask();
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200263 error = hibernation_snapshot(data->platform_support);
Srivatsa S. Bhat51d6ff72012-02-04 22:26:38 +0100264 if (!error) {
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200265 error = put_user(in_suspend, (int __user *)arg);
Srivatsa S. Bhata556d5b52012-02-04 23:39:56 +0100266 data->ready = !freezer_test_done && !error;
267 freezer_test_done = false;
Srivatsa S. Bhat97819a22011-12-01 22:33:10 +0100268 }
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800269 break;
270
271 case SNAPSHOT_ATOMIC_RESTORE:
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800272 snapshot_write_finalize(&data->handle);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800273 if (data->mode != O_WRONLY || !data->frozen ||
274 !snapshot_image_loaded(&data->handle)) {
275 error = -EPERM;
276 break;
277 }
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200278 error = hibernation_restore(data->platform_support);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800279 break;
280
281 case SNAPSHOT_FREE:
282 swsusp_free();
283 memset(&data->handle, 0, sizeof(struct snapshot_handle));
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200284 data->ready = false;
Rafael J. Wysocki181e9bd2012-01-29 20:35:52 +0100285 /*
286 * It is necessary to thaw kernel threads here, because
287 * SNAPSHOT_CREATE_IMAGE may be invoked directly after
288 * SNAPSHOT_FREE. In that case, if kernel threads were not
289 * thawed, the preallocation of memory carried out by
290 * hibernation_snapshot() might run into problems (i.e. it
291 * might fail or even deadlock).
292 */
293 thaw_kernel_threads();
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800294 break;
295
Jiri Slabyb694e522010-01-27 23:47:50 +0100296 case SNAPSHOT_PREF_IMAGE_SIZE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800297 image_size = arg;
298 break;
299
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200300 case SNAPSHOT_GET_IMAGE_SIZE:
301 if (!data->ready) {
302 error = -ENODATA;
303 break;
304 }
305 size = snapshot_get_image_size();
306 size <<= PAGE_SHIFT;
307 error = put_user(size, (loff_t __user *)arg);
308 break;
309
Jiri Slabyb694e522010-01-27 23:47:50 +0100310 case SNAPSHOT_AVAIL_SWAP_SIZE:
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200311 size = count_swap_pages(data->swap, 1);
312 size <<= PAGE_SHIFT;
313 error = put_user(size, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800314 break;
315
Jiri Slabyb694e522010-01-27 23:47:50 +0100316 case SNAPSHOT_ALLOC_SWAP_PAGE:
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800317 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
318 error = -ENODEV;
319 break;
320 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700321 offset = alloc_swapdev_block(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800322 if (offset) {
323 offset <<= PAGE_SHIFT;
Rafael J. Wysockicc5d2072007-10-26 01:03:33 +0200324 error = put_user(offset, (loff_t __user *)arg);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800325 } else {
326 error = -ENOSPC;
327 }
328 break;
329
330 case SNAPSHOT_FREE_SWAP_PAGES:
331 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
332 error = -ENODEV;
333 break;
334 }
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700335 free_all_swap_pages(data->swap);
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800336 break;
337
Luca Tettamanti9b238202006-03-23 03:00:09 -0800338 case SNAPSHOT_S2RAM:
339 if (!data->frozen) {
340 error = -EPERM;
341 break;
342 }
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700343 /*
344 * Tasks are frozen and the notifiers have been called with
345 * PM_HIBERNATION_PREPARE
346 */
347 error = suspend_devices_and_enter(PM_SUSPEND_MEM);
Rafael J. Wysocki7bc9b1c2013-10-18 22:20:40 +0200348 data->ready = false;
Luca Tettamanti9b238202006-03-23 03:00:09 -0800349 break;
350
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +0200351 case SNAPSHOT_PLATFORM_SUPPORT:
352 data->platform_support = !!arg;
353 break;
354
355 case SNAPSHOT_POWER_OFF:
356 if (data->platform_support)
357 error = hibernation_platform_enter();
358 break;
359
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800360 case SNAPSHOT_SET_SWAP_AREA:
Rafael J. Wysockid1d241c2007-05-06 14:50:47 -0700361 if (swsusp_swap_in_use()) {
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800362 error = -EPERM;
363 } else {
364 struct resume_swap_area swap_area;
365 dev_t swdev;
366
367 error = copy_from_user(&swap_area, (void __user *)arg,
368 sizeof(struct resume_swap_area));
369 if (error) {
370 error = -EFAULT;
371 break;
372 }
373
374 /*
375 * User space encodes device types as two-byte values,
376 * so we need to recode them
377 */
Jiri Slabyd88d4052010-04-10 22:28:56 +0200378 swdev = new_decode_dev(swap_area.dev);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800379 if (swdev) {
380 offset = swap_area.offset;
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800381 data->swap = swap_type_of(swdev, offset, NULL);
Rafael J. Wysocki37b2ba12006-12-06 20:34:15 -0800382 if (data->swap < 0)
383 error = -ENODEV;
384 } else {
385 data->swap = -1;
386 error = -EINVAL;
387 }
388 }
389 break;
390
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800391 default:
392 error = -ENOTTY;
393
394 }
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200395
Rafael J. Wysocki942f4012013-08-30 14:19:46 +0200396 unlock_device_hotplug();
Rafael J. Wysocki25f2f3d2008-06-11 22:09:45 +0200397 mutex_unlock(&pm_mutex);
398
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800399 return error;
400}
401
Ben Hutchingsc3360782011-12-27 22:54:52 +0100402#ifdef CONFIG_COMPAT
403
404struct compat_resume_swap_area {
405 compat_loff_t offset;
406 u32 dev;
407} __packed;
408
409static long
410snapshot_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
411{
412 BUILD_BUG_ON(sizeof(loff_t) != sizeof(compat_loff_t));
413
414 switch (cmd) {
415 case SNAPSHOT_GET_IMAGE_SIZE:
416 case SNAPSHOT_AVAIL_SWAP_SIZE:
417 case SNAPSHOT_ALLOC_SWAP_PAGE: {
418 compat_loff_t __user *uoffset = compat_ptr(arg);
419 loff_t offset;
420 mm_segment_t old_fs;
421 int err;
422
423 old_fs = get_fs();
424 set_fs(KERNEL_DS);
425 err = snapshot_ioctl(file, cmd, (unsigned long) &offset);
426 set_fs(old_fs);
427 if (!err && put_user(offset, uoffset))
428 err = -EFAULT;
429 return err;
430 }
431
432 case SNAPSHOT_CREATE_IMAGE:
433 return snapshot_ioctl(file, cmd,
434 (unsigned long) compat_ptr(arg));
435
436 case SNAPSHOT_SET_SWAP_AREA: {
437 struct compat_resume_swap_area __user *u_swap_area =
438 compat_ptr(arg);
439 struct resume_swap_area swap_area;
440 mm_segment_t old_fs;
441 int err;
442
443 err = get_user(swap_area.offset, &u_swap_area->offset);
444 err |= get_user(swap_area.dev, &u_swap_area->dev);
445 if (err)
446 return -EFAULT;
447 old_fs = get_fs();
448 set_fs(KERNEL_DS);
449 err = snapshot_ioctl(file, SNAPSHOT_SET_SWAP_AREA,
450 (unsigned long) &swap_area);
451 set_fs(old_fs);
452 return err;
453 }
454
455 default:
456 return snapshot_ioctl(file, cmd, arg);
457 }
458}
459
460#endif /* CONFIG_COMPAT */
461
Helge Deller15ad7cd2006-12-06 20:40:36 -0800462static const struct file_operations snapshot_fops = {
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800463 .open = snapshot_open,
464 .release = snapshot_release,
465 .read = snapshot_read,
466 .write = snapshot_write,
467 .llseek = no_llseek,
Alan Cox52d11022008-06-11 22:07:52 +0200468 .unlocked_ioctl = snapshot_ioctl,
Ben Hutchingsc3360782011-12-27 22:54:52 +0100469#ifdef CONFIG_COMPAT
470 .compat_ioctl = snapshot_compat_ioctl,
471#endif
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800472};
473
474static struct miscdevice snapshot_device = {
475 .minor = SNAPSHOT_MINOR,
476 .name = "snapshot",
477 .fops = &snapshot_fops,
478};
479
480static int __init snapshot_device_init(void)
481{
482 return misc_register(&snapshot_device);
483};
484
485device_initcall(snapshot_device_init);