GNU Linux-libre 4.4.289-gnu1
[releases.git] / kernel / power / user.c
1 /*
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>
14 #include <linux/reboot.h>
15 #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>
23 #include <linux/compat.h>
24 #include <linux/console.h>
25 #include <linux/cpu.h>
26 #include <linux/freezer.h>
27
28 #include <asm/uaccess.h>
29
30 #include "power.h"
31
32
33 #define SNAPSHOT_MINOR  231
34
35 static struct snapshot_data {
36         struct snapshot_handle handle;
37         int swap;
38         int mode;
39         bool frozen;
40         bool ready;
41         bool platform_support;
42         bool free_bitmaps;
43 } snapshot_state;
44
45 atomic_t snapshot_device_available = ATOMIC_INIT(1);
46
47 static int snapshot_open(struct inode *inode, struct file *filp)
48 {
49         struct snapshot_data *data;
50         int error;
51
52         if (!hibernation_available())
53                 return -EPERM;
54
55         lock_system_sleep();
56
57         if (!atomic_add_unless(&snapshot_device_available, -1, 0)) {
58                 error = -EBUSY;
59                 goto Unlock;
60         }
61
62         if ((filp->f_flags & O_ACCMODE) == O_RDWR) {
63                 atomic_inc(&snapshot_device_available);
64                 error = -ENOSYS;
65                 goto Unlock;
66         }
67         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) {
72                 /* Hibernating.  The image device should be accessible. */
73                 data->swap = swsusp_resume_device ?
74                         swap_type_of(swsusp_resume_device, 0, NULL) : -1;
75                 data->mode = O_RDONLY;
76                 data->free_bitmaps = false;
77                 error = pm_notifier_call_chain(PM_HIBERNATION_PREPARE);
78                 if (error)
79                         pm_notifier_call_chain(PM_POST_HIBERNATION);
80         } else {
81                 /*
82                  * Resuming.  We may need to wait for the image device to
83                  * appear.
84                  */
85                 wait_for_device_probe();
86
87                 data->swap = -1;
88                 data->mode = O_WRONLY;
89                 error = pm_notifier_call_chain(PM_RESTORE_PREPARE);
90                 if (!error) {
91                         error = create_basic_memory_bitmaps();
92                         data->free_bitmaps = !error;
93                 }
94                 if (error)
95                         pm_notifier_call_chain(PM_POST_RESTORE);
96         }
97         if (error)
98                 atomic_inc(&snapshot_device_available);
99
100         data->frozen = false;
101         data->ready = false;
102         data->platform_support = false;
103
104  Unlock:
105         unlock_system_sleep();
106
107         return error;
108 }
109
110 static int snapshot_release(struct inode *inode, struct file *filp)
111 {
112         struct snapshot_data *data;
113
114         lock_system_sleep();
115
116         swsusp_free();
117         data = filp->private_data;
118         free_all_swap_pages(data->swap);
119         if (data->frozen) {
120                 pm_restore_gfp_mask();
121                 free_basic_memory_bitmaps();
122                 thaw_processes();
123         } else if (data->free_bitmaps) {
124                 free_basic_memory_bitmaps();
125         }
126         pm_notifier_call_chain(data->mode == O_RDONLY ?
127                         PM_POST_HIBERNATION : PM_POST_RESTORE);
128         atomic_inc(&snapshot_device_available);
129
130         unlock_system_sleep();
131
132         return 0;
133 }
134
135 static ssize_t snapshot_read(struct file *filp, char __user *buf,
136                              size_t count, loff_t *offp)
137 {
138         struct snapshot_data *data;
139         ssize_t res;
140         loff_t pg_offp = *offp & ~PAGE_MASK;
141
142         lock_system_sleep();
143
144         data = filp->private_data;
145         if (!data->ready) {
146                 res = -ENODATA;
147                 goto Unlock;
148         }
149         if (!pg_offp) { /* on page boundary? */
150                 res = snapshot_read_next(&data->handle);
151                 if (res <= 0)
152                         goto Unlock;
153         } else {
154                 res = PAGE_SIZE - pg_offp;
155         }
156
157         res = simple_read_from_buffer(buf, count, &pg_offp,
158                         data_of(data->handle), res);
159         if (res > 0)
160                 *offp += res;
161
162  Unlock:
163         unlock_system_sleep();
164
165         return res;
166 }
167
168 static ssize_t snapshot_write(struct file *filp, const char __user *buf,
169                               size_t count, loff_t *offp)
170 {
171         struct snapshot_data *data;
172         ssize_t res;
173         loff_t pg_offp = *offp & ~PAGE_MASK;
174
175         lock_system_sleep();
176
177         data = filp->private_data;
178
179         if (!pg_offp) {
180                 res = snapshot_write_next(&data->handle);
181                 if (res <= 0)
182                         goto unlock;
183         } else {
184                 res = PAGE_SIZE - pg_offp;
185         }
186
187         if (!data_of(data->handle)) {
188                 res = -EINVAL;
189                 goto unlock;
190         }
191
192         res = simple_write_to_buffer(data_of(data->handle), res, &pg_offp,
193                         buf, count);
194         if (res > 0)
195                 *offp += res;
196 unlock:
197         unlock_system_sleep();
198
199         return res;
200 }
201
202 static long snapshot_ioctl(struct file *filp, unsigned int cmd,
203                                                         unsigned long arg)
204 {
205         int error = 0;
206         struct snapshot_data *data;
207         loff_t size;
208         sector_t offset;
209
210         if (_IOC_TYPE(cmd) != SNAPSHOT_IOC_MAGIC)
211                 return -ENOTTY;
212         if (_IOC_NR(cmd) > SNAPSHOT_IOC_MAXNR)
213                 return -ENOTTY;
214         if (!capable(CAP_SYS_ADMIN))
215                 return -EPERM;
216
217         if (!mutex_trylock(&pm_mutex))
218                 return -EBUSY;
219
220         lock_device_hotplug();
221         data = filp->private_data;
222
223         switch (cmd) {
224
225         case SNAPSHOT_FREEZE:
226                 if (data->frozen)
227                         break;
228
229                 printk("Syncing filesystems ... ");
230                 sys_sync();
231                 printk("done.\n");
232
233                 error = freeze_processes();
234                 if (error)
235                         break;
236
237                 error = create_basic_memory_bitmaps();
238                 if (error)
239                         thaw_processes();
240                 else
241                         data->frozen = true;
242
243                 break;
244
245         case SNAPSHOT_UNFREEZE:
246                 if (!data->frozen || data->ready)
247                         break;
248                 pm_restore_gfp_mask();
249                 free_basic_memory_bitmaps();
250                 data->free_bitmaps = false;
251                 thaw_processes();
252                 data->frozen = false;
253                 break;
254
255         case SNAPSHOT_CREATE_IMAGE:
256                 if (data->mode != O_RDONLY || !data->frozen  || data->ready) {
257                         error = -EPERM;
258                         break;
259                 }
260                 pm_restore_gfp_mask();
261                 error = hibernation_snapshot(data->platform_support);
262                 if (!error) {
263                         error = put_user(in_suspend, (int __user *)arg);
264                         data->ready = !freezer_test_done && !error;
265                         freezer_test_done = false;
266                 }
267                 break;
268
269         case SNAPSHOT_ATOMIC_RESTORE:
270                 snapshot_write_finalize(&data->handle);
271                 if (data->mode != O_WRONLY || !data->frozen ||
272                     !snapshot_image_loaded(&data->handle)) {
273                         error = -EPERM;
274                         break;
275                 }
276                 error = hibernation_restore(data->platform_support);
277                 break;
278
279         case SNAPSHOT_FREE:
280                 swsusp_free();
281                 memset(&data->handle, 0, sizeof(struct snapshot_handle));
282                 data->ready = false;
283                 /*
284                  * It is necessary to thaw kernel threads here, because
285                  * SNAPSHOT_CREATE_IMAGE may be invoked directly after
286                  * SNAPSHOT_FREE.  In that case, if kernel threads were not
287                  * thawed, the preallocation of memory carried out by
288                  * hibernation_snapshot() might run into problems (i.e. it
289                  * might fail or even deadlock).
290                  */
291                 thaw_kernel_threads();
292                 break;
293
294         case SNAPSHOT_PREF_IMAGE_SIZE:
295                 image_size = arg;
296                 break;
297
298         case SNAPSHOT_GET_IMAGE_SIZE:
299                 if (!data->ready) {
300                         error = -ENODATA;
301                         break;
302                 }
303                 size = snapshot_get_image_size();
304                 size <<= PAGE_SHIFT;
305                 error = put_user(size, (loff_t __user *)arg);
306                 break;
307
308         case SNAPSHOT_AVAIL_SWAP_SIZE:
309                 size = count_swap_pages(data->swap, 1);
310                 size <<= PAGE_SHIFT;
311                 error = put_user(size, (loff_t __user *)arg);
312                 break;
313
314         case SNAPSHOT_ALLOC_SWAP_PAGE:
315                 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
316                         error = -ENODEV;
317                         break;
318                 }
319                 offset = alloc_swapdev_block(data->swap);
320                 if (offset) {
321                         offset <<= PAGE_SHIFT;
322                         error = put_user(offset, (loff_t __user *)arg);
323                 } else {
324                         error = -ENOSPC;
325                 }
326                 break;
327
328         case SNAPSHOT_FREE_SWAP_PAGES:
329                 if (data->swap < 0 || data->swap >= MAX_SWAPFILES) {
330                         error = -ENODEV;
331                         break;
332                 }
333                 free_all_swap_pages(data->swap);
334                 break;
335
336         case SNAPSHOT_S2RAM:
337                 if (!data->frozen) {
338                         error = -EPERM;
339                         break;
340                 }
341                 /*
342                  * Tasks are frozen and the notifiers have been called with
343                  * PM_HIBERNATION_PREPARE
344                  */
345                 error = suspend_devices_and_enter(PM_SUSPEND_MEM);
346                 data->ready = false;
347                 break;
348
349         case SNAPSHOT_PLATFORM_SUPPORT:
350                 data->platform_support = !!arg;
351                 break;
352
353         case SNAPSHOT_POWER_OFF:
354                 if (data->platform_support)
355                         error = hibernation_platform_enter();
356                 break;
357
358         case SNAPSHOT_SET_SWAP_AREA:
359                 if (swsusp_swap_in_use()) {
360                         error = -EPERM;
361                 } else {
362                         struct resume_swap_area swap_area;
363                         dev_t swdev;
364
365                         error = copy_from_user(&swap_area, (void __user *)arg,
366                                         sizeof(struct resume_swap_area));
367                         if (error) {
368                                 error = -EFAULT;
369                                 break;
370                         }
371
372                         /*
373                          * User space encodes device types as two-byte values,
374                          * so we need to recode them
375                          */
376                         swdev = new_decode_dev(swap_area.dev);
377                         if (swdev) {
378                                 offset = swap_area.offset;
379                                 data->swap = swap_type_of(swdev, offset, NULL);
380                                 if (data->swap < 0)
381                                         error = -ENODEV;
382                         } else {
383                                 data->swap = -1;
384                                 error = -EINVAL;
385                         }
386                 }
387                 break;
388
389         default:
390                 error = -ENOTTY;
391
392         }
393
394         unlock_device_hotplug();
395         mutex_unlock(&pm_mutex);
396
397         return error;
398 }
399
400 #ifdef CONFIG_COMPAT
401
402 struct compat_resume_swap_area {
403         compat_loff_t offset;
404         u32 dev;
405 } __packed;
406
407 static long
408 snapshot_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
409 {
410         BUILD_BUG_ON(sizeof(loff_t) != sizeof(compat_loff_t));
411
412         switch (cmd) {
413         case SNAPSHOT_GET_IMAGE_SIZE:
414         case SNAPSHOT_AVAIL_SWAP_SIZE:
415         case SNAPSHOT_ALLOC_SWAP_PAGE: {
416                 compat_loff_t __user *uoffset = compat_ptr(arg);
417                 loff_t offset;
418                 mm_segment_t old_fs;
419                 int err;
420
421                 old_fs = get_fs();
422                 set_fs(KERNEL_DS);
423                 err = snapshot_ioctl(file, cmd, (unsigned long) &offset);
424                 set_fs(old_fs);
425                 if (!err && put_user(offset, uoffset))
426                         err = -EFAULT;
427                 return err;
428         }
429
430         case SNAPSHOT_CREATE_IMAGE:
431                 return snapshot_ioctl(file, cmd,
432                                       (unsigned long) compat_ptr(arg));
433
434         case SNAPSHOT_SET_SWAP_AREA: {
435                 struct compat_resume_swap_area __user *u_swap_area =
436                         compat_ptr(arg);
437                 struct resume_swap_area swap_area;
438                 mm_segment_t old_fs;
439                 int err;
440
441                 err = get_user(swap_area.offset, &u_swap_area->offset);
442                 err |= get_user(swap_area.dev, &u_swap_area->dev);
443                 if (err)
444                         return -EFAULT;
445                 old_fs = get_fs();
446                 set_fs(KERNEL_DS);
447                 err = snapshot_ioctl(file, SNAPSHOT_SET_SWAP_AREA,
448                                      (unsigned long) &swap_area);
449                 set_fs(old_fs);
450                 return err;
451         }
452
453         default:
454                 return snapshot_ioctl(file, cmd, arg);
455         }
456 }
457
458 #endif /* CONFIG_COMPAT */
459
460 static const struct file_operations snapshot_fops = {
461         .open = snapshot_open,
462         .release = snapshot_release,
463         .read = snapshot_read,
464         .write = snapshot_write,
465         .llseek = no_llseek,
466         .unlocked_ioctl = snapshot_ioctl,
467 #ifdef CONFIG_COMPAT
468         .compat_ioctl = snapshot_compat_ioctl,
469 #endif
470 };
471
472 static struct miscdevice snapshot_device = {
473         .minor = SNAPSHOT_MINOR,
474         .name = "snapshot",
475         .fops = &snapshot_fops,
476 };
477
478 static int __init snapshot_device_init(void)
479 {
480         return misc_register(&snapshot_device);
481 };
482
483 device_initcall(snapshot_device_init);