Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 1 | ===================================================== |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 2 | Documentation for userland software suspend interface |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 3 | ===================================================== |
| 4 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 5 | (C) 2006 Rafael J. Wysocki <rjw@sisk.pl> |
| 6 | |
| 7 | First, the warnings at the beginning of swsusp.txt still apply. |
| 8 | |
| 9 | Second, you should read the FAQ in swsusp.txt _now_ if you have not |
| 10 | done it already. |
| 11 | |
| 12 | Now, to use the userland interface for software suspend you need special |
| 13 | utilities that will read/write the system memory snapshot from/to the |
| 14 | kernel. Such utilities are available, for example, from |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 15 | <http://suspend.sourceforge.net>. You may want to have a look at them if you |
| 16 | are going to develop your own suspend/resume utilities. |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 17 | |
| 18 | The interface consists of a character device providing the open(), |
| 19 | release(), read(), and write() operations as well as several ioctl() |
Rafael J. Wysocki | 3010f8c | 2007-10-26 01:05:05 +0200 | [diff] [blame] | 20 | commands defined in include/linux/suspend_ioctls.h . The major and minor |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 21 | numbers of the device are, respectively, 10 and 231, and they can |
| 22 | be read from /sys/class/misc/snapshot/dev. |
| 23 | |
| 24 | The device can be open either for reading or for writing. If open for |
| 25 | reading, it is considered to be in the suspend mode. Otherwise it is |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 26 | assumed to be in the resume mode. The device cannot be open for simultaneous |
| 27 | reading and writing. It is also impossible to have the device open more than |
| 28 | once at a time. |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 29 | |
Pavel Machek | bc6a0cb | 2010-04-23 20:32:29 +0200 | [diff] [blame] | 30 | Even opening the device has side effects. Data structures are |
| 31 | allocated, and PM_HIBERNATION_PREPARE / PM_RESTORE_PREPARE chains are |
| 32 | called. |
| 33 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 34 | The ioctl() commands recognized by the device are: |
| 35 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 36 | SNAPSHOT_FREEZE |
| 37 | freeze user space processes (the current process is |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 38 | not frozen); this is required for SNAPSHOT_CREATE_IMAGE |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 39 | and SNAPSHOT_ATOMIC_RESTORE to succeed |
| 40 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 41 | SNAPSHOT_UNFREEZE |
| 42 | thaw user space processes frozen by SNAPSHOT_FREEZE |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 43 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 44 | SNAPSHOT_CREATE_IMAGE |
| 45 | create a snapshot of the system memory; the |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 46 | last argument of ioctl() should be a pointer to an int variable, |
| 47 | the value of which will indicate whether the call returned after |
| 48 | creating the snapshot (1) or after restoring the system memory state |
| 49 | from it (0) (after resume the system finds itself finishing the |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 50 | SNAPSHOT_CREATE_IMAGE ioctl() again); after the snapshot |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 51 | has been created the read() operation can be used to transfer |
| 52 | it out of the kernel |
| 53 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 54 | SNAPSHOT_ATOMIC_RESTORE |
| 55 | restore the system memory state from the |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 56 | uploaded snapshot image; before calling it you should transfer |
| 57 | the system memory snapshot back to the kernel using the write() |
| 58 | operation; this call will not succeed if the snapshot |
| 59 | image is not available to the kernel |
| 60 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 61 | SNAPSHOT_FREE |
| 62 | free memory allocated for the snapshot image |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 63 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 64 | SNAPSHOT_PREF_IMAGE_SIZE |
| 65 | set the preferred maximum size of the image |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 66 | (the kernel will do its best to ensure the image size will not exceed |
| 67 | this number, but if it turns out to be impossible, the kernel will |
| 68 | create the smallest image possible) |
| 69 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 70 | SNAPSHOT_GET_IMAGE_SIZE |
| 71 | return the actual size of the hibernation image |
Eric Biggers | 51995ff | 2020-03-07 19:22:16 -0800 | [diff] [blame] | 72 | (the last argument should be a pointer to a loff_t variable that |
| 73 | will contain the result if the call is successful) |
Rafael J. Wysocki | af508b3 | 2007-10-26 00:59:31 +0200 | [diff] [blame] | 74 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 75 | SNAPSHOT_AVAIL_SWAP_SIZE |
Eric Biggers | 51995ff | 2020-03-07 19:22:16 -0800 | [diff] [blame] | 76 | return the amount of available swap in bytes |
| 77 | (the last argument should be a pointer to a loff_t variable that |
| 78 | will contain the result if the call is successful) |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 79 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 80 | SNAPSHOT_ALLOC_SWAP_PAGE |
| 81 | allocate a swap page from the resume partition |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 82 | (the last argument should be a pointer to a loff_t variable that |
| 83 | will contain the swap page offset if the call is successful) |
| 84 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 85 | SNAPSHOT_FREE_SWAP_PAGES |
| 86 | free all swap pages allocated by |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 87 | SNAPSHOT_ALLOC_SWAP_PAGE |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 88 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 89 | SNAPSHOT_SET_SWAP_AREA |
| 90 | set the resume partition and the offset (in <PAGE_SIZE> |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 91 | units) from the beginning of the partition at which the swap header is |
| 92 | located (the last ioctl() argument should point to a struct |
Rafael J. Wysocki | 3010f8c | 2007-10-26 01:05:05 +0200 | [diff] [blame] | 93 | resume_swap_area, as defined in kernel/power/suspend_ioctls.h, |
| 94 | containing the resume device specification and the offset); for swap |
| 95 | partitions the offset is always 0, but it is different from zero for |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 96 | swap files (see Documentation/power/swsusp-and-swap-files.rst for |
Paul Bolle | 395cf96 | 2011-08-15 02:02:26 +0200 | [diff] [blame] | 97 | details). |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 98 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 99 | SNAPSHOT_PLATFORM_SUPPORT |
| 100 | enable/disable the hibernation platform support, |
Rafael J. Wysocki | eb57c1c | 2007-10-26 01:01:10 +0200 | [diff] [blame] | 101 | depending on the argument value (enable, if the argument is nonzero) |
| 102 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 103 | SNAPSHOT_POWER_OFF |
| 104 | make the kernel transition the system to the hibernation |
Rafael J. Wysocki | eb57c1c | 2007-10-26 01:01:10 +0200 | [diff] [blame] | 105 | state (eg. ACPI S4) using the platform (eg. ACPI) driver |
| 106 | |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 107 | SNAPSHOT_S2RAM |
| 108 | suspend to RAM; using this call causes the kernel to |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 109 | immediately enter the suspend-to-RAM state, so this call must always |
| 110 | be preceded by the SNAPSHOT_FREEZE call and it is also necessary |
| 111 | to use the SNAPSHOT_UNFREEZE call after the system wakes up. This call |
| 112 | is needed to implement the suspend-to-both mechanism in which the |
| 113 | suspend image is first created, as though the system had been suspended |
| 114 | to disk, and then the system is suspended to RAM (this makes it possible |
| 115 | to resume the system from RAM if there's enough battery power or restore |
| 116 | its state on the basis of the saved suspend image otherwise) |
| 117 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 118 | The device's read() operation can be used to transfer the snapshot image from |
| 119 | the kernel. It has the following limitations: |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 120 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 121 | - you cannot read() more than one virtual memory page at a time |
Masanari Iida | 1f999d1 | 2014-11-08 17:54:51 +0900 | [diff] [blame] | 122 | - read()s across page boundaries are impossible (ie. if you read() 1/2 of |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 123 | a page in the previous call, you will only be able to read() |
| 124 | **at most** 1/2 of the page in the next call) |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 125 | |
| 126 | The device's write() operation is used for uploading the system memory snapshot |
| 127 | into the kernel. It has the same limitations as the read() operation. |
| 128 | |
| 129 | The release() operation frees all memory allocated for the snapshot image |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 130 | and all swap pages allocated with SNAPSHOT_ALLOC_SWAP_PAGE (if any). |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 131 | Thus it is not necessary to use either SNAPSHOT_FREE or |
| 132 | SNAPSHOT_FREE_SWAP_PAGES before closing the device (in fact it will also |
| 133 | unfreeze user space processes frozen by SNAPSHOT_UNFREEZE if they are |
| 134 | still frozen when the device is being closed). |
| 135 | |
| 136 | Currently it is assumed that the userland utilities reading/writing the |
Matt LaPlante | 19f5946 | 2009-04-27 15:06:31 +0200 | [diff] [blame] | 137 | snapshot image from/to the kernel will use a swap partition, called the resume |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 138 | partition, or a swap file as storage space (if a swap file is used, the resume |
| 139 | partition is the partition that holds this file). However, this is not really |
| 140 | required, as they can use, for example, a special (blank) suspend partition or |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 141 | a file on a partition that is unmounted before SNAPSHOT_CREATE_IMAGE and |
Rafael J. Wysocki | bf73bae | 2006-12-06 20:34:16 -0800 | [diff] [blame] | 142 | mounted afterwards. |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 143 | |
Rafael J. Wysocki | af508b3 | 2007-10-26 00:59:31 +0200 | [diff] [blame] | 144 | These utilities MUST NOT make any assumptions regarding the ordering of |
| 145 | data within the snapshot image. The contents of the image are entirely owned |
| 146 | by the kernel and its structure may be changed in future kernel releases. |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 147 | |
| 148 | The snapshot image MUST be written to the kernel unaltered (ie. all of the image |
| 149 | data, metadata and header MUST be written in _exactly_ the same amount, form |
| 150 | and order in which they have been read). Otherwise, the behavior of the |
| 151 | resumed system may be totally unpredictable. |
| 152 | |
| 153 | While executing SNAPSHOT_ATOMIC_RESTORE the kernel checks if the |
| 154 | structure of the snapshot image is consistent with the information stored |
| 155 | in the image header. If any inconsistencies are detected, |
| 156 | SNAPSHOT_ATOMIC_RESTORE will not succeed. Still, this is not a fool-proof |
| 157 | mechanism and the userland utilities using the interface SHOULD use additional |
| 158 | means, such as checksums, to ensure the integrity of the snapshot image. |
| 159 | |
| 160 | The suspending and resuming utilities MUST lock themselves in memory, |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 161 | preferably using mlockall(), before calling SNAPSHOT_FREEZE. |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 162 | |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 163 | The suspending utility MUST check the value stored by SNAPSHOT_CREATE_IMAGE |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 164 | in the memory location pointed to by the last argument of ioctl() and proceed |
| 165 | in accordance with it: |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 166 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 167 | 1. If the value is 1 (ie. the system memory snapshot has just been |
| 168 | created and the system is ready for saving it): |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 169 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 170 | (a) The suspending utility MUST NOT close the snapshot device |
| 171 | _unless_ the whole suspend procedure is to be cancelled, in |
| 172 | which case, if the snapshot image has already been saved, the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 173 | suspending utility SHOULD destroy it, preferably by zapping |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 174 | its header. If the suspend is not to be cancelled, the |
| 175 | system MUST be powered off or rebooted after the snapshot |
| 176 | image has been saved. |
| 177 | (b) The suspending utility SHOULD NOT attempt to perform any |
| 178 | file system operations (including reads) on the file systems |
Rafael J. Wysocki | cc5d207 | 2007-10-26 01:03:33 +0200 | [diff] [blame] | 179 | that were mounted before SNAPSHOT_CREATE_IMAGE has been |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 180 | called. However, it MAY mount a file system that was not |
| 181 | mounted at that time and perform some operations on it (eg. |
| 182 | use it for saving the image). |
Mauro Carvalho Chehab | 151f4e2 | 2019-06-13 07:10:36 -0300 | [diff] [blame] | 183 | |
Rafael J. Wysocki | 6e1819d | 2006-03-23 03:00:03 -0800 | [diff] [blame] | 184 | 2. If the value is 0 (ie. the system state has just been restored from |
| 185 | the snapshot image), the suspending utility MUST close the snapshot |
| 186 | device. Afterwards it will be treated as a regular userland process, |
| 187 | so it need not exit. |
| 188 | |
| 189 | The resuming utility SHOULD NOT attempt to mount any file systems that could |
| 190 | be mounted before suspend and SHOULD NOT attempt to perform any operations |
| 191 | involving such file systems. |
| 192 | |
| 193 | For details, please refer to the source code. |