2 * linux/kernel/power/user.c
4 * This file provides the user space interface for software suspend/resume.
6 * Copyright (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
8 * This file is released under the GPLv2.
12 #include <linux/suspend.h>
13 #include <linux/syscalls.h>
14 #include <linux/reboot.h>
15 #include <linux/kmod.h>
16 #include <linux/string.h>
17 #include <linux/device.h>
18 #include <linux/miscdevice.h>
20 #include <linux/swap.h>
21 #include <linux/swapops.h>
24 #include <linux/console.h>
25 #include <linux/cpu.h>
26 #include <linux/freezer.h>
27 #include <scsi/scsi_scan.h>
29 #include <asm/uaccess.h>
34 * NOTE: The SNAPSHOT_SET_SWAP_FILE and SNAPSHOT_PMOPS ioctls are obsolete and
35 * will be removed in the future. They are only preserved here for
36 * compatibility with existing userland utilities.
38 #define SNAPSHOT_SET_SWAP_FILE _IOW(SNAPSHOT_IOC_MAGIC, 10, unsigned int)
39 #define SNAPSHOT_PMOPS _IOW(SNAPSHOT_IOC_MAGIC, 12, unsigned int)
41 #define PMOPS_PREPARE 1
43 #define PMOPS_FINISH 3
46 * NOTE: The following ioctl definitions are wrong and have been replaced with
47 * correct ones. They are only preserved here for compatibility with existing
48 * userland utilities and will be removed in the future.
50 #define SNAPSHOT_ATOMIC_SNAPSHOT _IOW(SNAPSHOT_IOC_MAGIC, 3, void *)
51 #define SNAPSHOT_SET_IMAGE_SIZE _IOW(SNAPSHOT_IOC_MAGIC, 6, unsigned long)
52 #define SNAPSHOT_AVAIL_SWAP _IOR(SNAPSHOT_IOC_MAGIC, 7, void *)
53 #define SNAPSHOT_GET_SWAP_PAGE _IOR(SNAPSHOT_IOC_MAGIC, 8, void *)
56 #define SNAPSHOT_MINOR 231
58 static struct snapshot_data
{
59 struct snapshot_handle handle
;
64 char platform_support
;
67 atomic_t snapshot_device_available
= ATOMIC_INIT(1);
69 static int snapshot_open(struct inode
*inode
, struct file
*filp
)
71 struct snapshot_data
*data
;
74 mutex_lock(&pm_mutex
);
76 if (!atomic_add_unless(&snapshot_device_available
, -1, 0)) {
81 if ((filp
->f_flags
& O_ACCMODE
) == O_RDWR
) {
82 atomic_inc(&snapshot_device_available
);
86 if(create_basic_memory_bitmaps()) {
87 atomic_inc(&snapshot_device_available
);
91 nonseekable_open(inode
, filp
);
92 data
= &snapshot_state
;
93 filp
->private_data
= data
;
94 memset(&data
->handle
, 0, sizeof(struct snapshot_handle
));
95 if ((filp
->f_flags
& O_ACCMODE
) == O_RDONLY
) {
96 /* Hibernating. The image device should be accessible. */
97 data
->swap
= swsusp_resume_device
?
98 swap_type_of(swsusp_resume_device
, 0, NULL
) : -1;
99 data
->mode
= O_RDONLY
;
100 error
= pm_notifier_call_chain(PM_HIBERNATION_PREPARE
);
102 pm_notifier_call_chain(PM_POST_HIBERNATION
);
105 * Resuming. We may need to wait for the image device to
108 wait_for_device_probe();
109 scsi_complete_async_scans();
112 data
->mode
= O_WRONLY
;
113 error
= pm_notifier_call_chain(PM_RESTORE_PREPARE
);
115 pm_notifier_call_chain(PM_POST_RESTORE
);
118 free_basic_memory_bitmaps();
119 atomic_inc(&snapshot_device_available
);
123 data
->platform_support
= 0;
126 mutex_unlock(&pm_mutex
);
131 static int snapshot_release(struct inode
*inode
, struct file
*filp
)
133 struct snapshot_data
*data
;
135 mutex_lock(&pm_mutex
);
138 free_basic_memory_bitmaps();
139 data
= filp
->private_data
;
140 free_all_swap_pages(data
->swap
);
142 pm_restore_gfp_mask();
145 pm_notifier_call_chain(data
->mode
== O_RDONLY
?
146 PM_POST_HIBERNATION
: PM_POST_RESTORE
);
147 atomic_inc(&snapshot_device_available
);
149 mutex_unlock(&pm_mutex
);
154 static ssize_t
snapshot_read(struct file
*filp
, char __user
*buf
,
155 size_t count
, loff_t
*offp
)
157 struct snapshot_data
*data
;
159 loff_t pg_offp
= *offp
& ~PAGE_MASK
;
161 mutex_lock(&pm_mutex
);
163 data
= filp
->private_data
;
168 if (!pg_offp
) { /* on page boundary? */
169 res
= snapshot_read_next(&data
->handle
);
173 res
= PAGE_SIZE
- pg_offp
;
176 res
= simple_read_from_buffer(buf
, count
, &pg_offp
,
177 data_of(data
->handle
), res
);
182 mutex_unlock(&pm_mutex
);
187 static ssize_t
snapshot_write(struct file
*filp
, const char __user
*buf
,
188 size_t count
, loff_t
*offp
)
190 struct snapshot_data
*data
;
192 loff_t pg_offp
= *offp
& ~PAGE_MASK
;
194 mutex_lock(&pm_mutex
);
196 data
= filp
->private_data
;
199 res
= snapshot_write_next(&data
->handle
);
203 res
= PAGE_SIZE
- pg_offp
;
206 res
= simple_write_to_buffer(data_of(data
->handle
), res
, &pg_offp
,
211 mutex_unlock(&pm_mutex
);
216 static void snapshot_deprecated_ioctl(unsigned int cmd
)
218 if (printk_ratelimit())
219 printk(KERN_NOTICE
"%pf: ioctl '%.8x' is deprecated and will "
220 "be removed soon, update your suspend-to-disk "
222 __builtin_return_address(0), cmd
);
225 static long snapshot_ioctl(struct file
*filp
, unsigned int cmd
,
229 struct snapshot_data
*data
;
233 if (_IOC_TYPE(cmd
) != SNAPSHOT_IOC_MAGIC
)
235 if (_IOC_NR(cmd
) > SNAPSHOT_IOC_MAXNR
)
237 if (!capable(CAP_SYS_ADMIN
))
240 if (!mutex_trylock(&pm_mutex
))
243 data
= filp
->private_data
;
247 case SNAPSHOT_FREEZE
:
251 printk("Syncing filesystems ... ");
255 error
= usermodehelper_disable();
259 error
= freeze_processes();
262 usermodehelper_enable();
268 case SNAPSHOT_UNFREEZE
:
269 if (!data
->frozen
|| data
->ready
)
271 pm_restore_gfp_mask();
273 usermodehelper_enable();
277 case SNAPSHOT_ATOMIC_SNAPSHOT
:
278 snapshot_deprecated_ioctl(cmd
);
279 case SNAPSHOT_CREATE_IMAGE
:
280 if (data
->mode
!= O_RDONLY
|| !data
->frozen
|| data
->ready
) {
284 pm_restore_gfp_mask();
285 error
= hibernation_snapshot(data
->platform_support
);
287 error
= put_user(in_suspend
, (int __user
*)arg
);
292 case SNAPSHOT_ATOMIC_RESTORE
:
293 snapshot_write_finalize(&data
->handle
);
294 if (data
->mode
!= O_WRONLY
|| !data
->frozen
||
295 !snapshot_image_loaded(&data
->handle
)) {
299 error
= hibernation_restore(data
->platform_support
);
304 memset(&data
->handle
, 0, sizeof(struct snapshot_handle
));
308 case SNAPSHOT_SET_IMAGE_SIZE
:
309 snapshot_deprecated_ioctl(cmd
);
310 case SNAPSHOT_PREF_IMAGE_SIZE
:
314 case SNAPSHOT_GET_IMAGE_SIZE
:
319 size
= snapshot_get_image_size();
321 error
= put_user(size
, (loff_t __user
*)arg
);
324 case SNAPSHOT_AVAIL_SWAP
:
325 snapshot_deprecated_ioctl(cmd
);
326 case SNAPSHOT_AVAIL_SWAP_SIZE
:
327 size
= count_swap_pages(data
->swap
, 1);
329 error
= put_user(size
, (loff_t __user
*)arg
);
332 case SNAPSHOT_GET_SWAP_PAGE
:
333 snapshot_deprecated_ioctl(cmd
);
334 case SNAPSHOT_ALLOC_SWAP_PAGE
:
335 if (data
->swap
< 0 || data
->swap
>= MAX_SWAPFILES
) {
339 offset
= alloc_swapdev_block(data
->swap
);
341 offset
<<= PAGE_SHIFT
;
342 error
= put_user(offset
, (loff_t __user
*)arg
);
348 case SNAPSHOT_FREE_SWAP_PAGES
:
349 if (data
->swap
< 0 || data
->swap
>= MAX_SWAPFILES
) {
353 free_all_swap_pages(data
->swap
);
356 case SNAPSHOT_SET_SWAP_FILE
: /* This ioctl is deprecated */
357 snapshot_deprecated_ioctl(cmd
);
358 if (!swsusp_swap_in_use()) {
360 * User space encodes device types as two-byte values,
361 * so we need to recode them
363 if (old_decode_dev(arg
)) {
364 data
->swap
= swap_type_of(old_decode_dev(arg
),
383 * Tasks are frozen and the notifiers have been called with
384 * PM_HIBERNATION_PREPARE
386 error
= suspend_devices_and_enter(PM_SUSPEND_MEM
);
390 case SNAPSHOT_PLATFORM_SUPPORT
:
391 data
->platform_support
= !!arg
;
394 case SNAPSHOT_POWER_OFF
:
395 if (data
->platform_support
)
396 error
= hibernation_platform_enter();
399 case SNAPSHOT_PMOPS
: /* This ioctl is deprecated */
400 snapshot_deprecated_ioctl(cmd
);
406 data
->platform_support
= 1;
411 if (data
->platform_support
)
412 error
= hibernation_platform_enter();
416 if (data
->platform_support
)
421 printk(KERN_ERR
"SNAPSHOT_PMOPS: invalid argument %ld\n", arg
);
426 case SNAPSHOT_SET_SWAP_AREA
:
427 if (swsusp_swap_in_use()) {
430 struct resume_swap_area swap_area
;
433 error
= copy_from_user(&swap_area
, (void __user
*)arg
,
434 sizeof(struct resume_swap_area
));
441 * User space encodes device types as two-byte values,
442 * so we need to recode them
444 swdev
= new_decode_dev(swap_area
.dev
);
446 offset
= swap_area
.offset
;
447 data
->swap
= swap_type_of(swdev
, offset
, NULL
);
462 mutex_unlock(&pm_mutex
);
467 static const struct file_operations snapshot_fops
= {
468 .open
= snapshot_open
,
469 .release
= snapshot_release
,
470 .read
= snapshot_read
,
471 .write
= snapshot_write
,
473 .unlocked_ioctl
= snapshot_ioctl
,
476 static struct miscdevice snapshot_device
= {
477 .minor
= SNAPSHOT_MINOR
,
479 .fops
= &snapshot_fops
,
482 static int __init
snapshot_device_init(void)
484 return misc_register(&snapshot_device
);
487 device_initcall(snapshot_device_init
);