blob: 381e9c0fb9d69ef97c7bc5a4dcf4ef7f43155a44 [file] [log] [blame]
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -08001Documentation for userland software suspend interface
2 (C) 2006 Rafael J. Wysocki <rjw@sisk.pl>
3
4First, the warnings at the beginning of swsusp.txt still apply.
5
6Second, you should read the FAQ in swsusp.txt _now_ if you have not
7done it already.
8
9Now, to use the userland interface for software suspend you need special
10utilities that will read/write the system memory snapshot from/to the
11kernel. Such utilities are available, for example, from
Rafael J. Wysockibf73bae2006-12-06 20:34:16 -080012<http://suspend.sourceforge.net>. You may want to have a look at them if you
13are going to develop your own suspend/resume utilities.
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080014
15The interface consists of a character device providing the open(),
16release(), read(), and write() operations as well as several ioctl()
17commands defined in kernel/power/power.h. The major and minor
18numbers of the device are, respectively, 10 and 231, and they can
19be read from /sys/class/misc/snapshot/dev.
20
21The device can be open either for reading or for writing. If open for
22reading, it is considered to be in the suspend mode. Otherwise it is
Rafael J. Wysockibf73bae2006-12-06 20:34:16 -080023assumed to be in the resume mode. The device cannot be open for simultaneous
24reading and writing. It is also impossible to have the device open more than
25once at a time.
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080026
27The ioctl() commands recognized by the device are:
28
29SNAPSHOT_FREEZE - freeze user space processes (the current process is
30 not frozen); this is required for SNAPSHOT_ATOMIC_SNAPSHOT
31 and SNAPSHOT_ATOMIC_RESTORE to succeed
32
33SNAPSHOT_UNFREEZE - thaw user space processes frozen by SNAPSHOT_FREEZE
34
35SNAPSHOT_ATOMIC_SNAPSHOT - create a snapshot of the system memory; the
36 last argument of ioctl() should be a pointer to an int variable,
37 the value of which will indicate whether the call returned after
38 creating the snapshot (1) or after restoring the system memory state
39 from it (0) (after resume the system finds itself finishing the
40 SNAPSHOT_ATOMIC_SNAPSHOT ioctl() again); after the snapshot
41 has been created the read() operation can be used to transfer
42 it out of the kernel
43
44SNAPSHOT_ATOMIC_RESTORE - restore the system memory state from the
45 uploaded snapshot image; before calling it you should transfer
46 the system memory snapshot back to the kernel using the write()
47 operation; this call will not succeed if the snapshot
48 image is not available to the kernel
49
50SNAPSHOT_FREE - free memory allocated for the snapshot image
51
52SNAPSHOT_SET_IMAGE_SIZE - set the preferred maximum size of the image
53 (the kernel will do its best to ensure the image size will not exceed
54 this number, but if it turns out to be impossible, the kernel will
55 create the smallest image possible)
56
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +020057SNAPSHOT_GET_IMAGE_SIZE - return the actual size of the hibernation image
58
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -080059SNAPSHOT_AVAIL_SWAP - return the amount of available swap in bytes (the last
60 argument should be a pointer to an unsigned int variable that will
61 contain the result if the call is successful).
62
63SNAPSHOT_GET_SWAP_PAGE - allocate a swap page from the resume partition
64 (the last argument should be a pointer to a loff_t variable that
65 will contain the swap page offset if the call is successful)
66
67SNAPSHOT_FREE_SWAP_PAGES - free all swap pages allocated with
68 SNAPSHOT_GET_SWAP_PAGE
69
70SNAPSHOT_SET_SWAP_FILE - set the resume partition (the last ioctl() argument
71 should specify the device's major and minor numbers in the old
72 two-byte format, as returned by the stat() function in the .st_rdev
Rafael J. Wysockibf73bae2006-12-06 20:34:16 -080073 member of the stat structure)
74
75SNAPSHOT_SET_SWAP_AREA - set the resume partition and the offset (in <PAGE_SIZE>
76 units) from the beginning of the partition at which the swap header is
77 located (the last ioctl() argument should point to a struct
78 resume_swap_area, as defined in kernel/power/power.h, containing the
79 resume device specification, as for the SNAPSHOT_SET_SWAP_FILE ioctl(),
80 and the offset); for swap partitions the offset is always 0, but it is
81 different to zero for swap files (please see
82 Documentation/swsusp-and-swap-files.txt for details).
83 The SNAPSHOT_SET_SWAP_AREA ioctl() is considered as a replacement for
84 SNAPSHOT_SET_SWAP_FILE which is regarded as obsolete. It is
85 recommended to always use this call, because the code to set the resume
86 partition may be removed from future kernels
87
Rafael J. Wysockieb57c1c2007-10-26 01:01:10 +020088SNAPSHOT_PLATFORM_SUPPORT - enable/disable the hibernation platform support,
89 depending on the argument value (enable, if the argument is nonzero)
90
91SNAPSHOT_POWER_OFF - make the kernel transition the system to the hibernation
92 state (eg. ACPI S4) using the platform (eg. ACPI) driver
93
Rafael J. Wysockibf73bae2006-12-06 20:34:16 -080094SNAPSHOT_S2RAM - suspend to RAM; using this call causes the kernel to
95 immediately enter the suspend-to-RAM state, so this call must always
96 be preceded by the SNAPSHOT_FREEZE call and it is also necessary
97 to use the SNAPSHOT_UNFREEZE call after the system wakes up. This call
98 is needed to implement the suspend-to-both mechanism in which the
99 suspend image is first created, as though the system had been suspended
100 to disk, and then the system is suspended to RAM (this makes it possible
101 to resume the system from RAM if there's enough battery power or restore
102 its state on the basis of the saved suspend image otherwise)
103
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800104The device's read() operation can be used to transfer the snapshot image from
105the kernel. It has the following limitations:
106- you cannot read() more than one virtual memory page at a time
107- read()s accross page boundaries are impossible (ie. if ypu read() 1/2 of
108 a page in the previous call, you will only be able to read()
109 _at_ _most_ 1/2 of the page in the next call)
110
111The device's write() operation is used for uploading the system memory snapshot
112into the kernel. It has the same limitations as the read() operation.
113
114The release() operation frees all memory allocated for the snapshot image
115and all swap pages allocated with SNAPSHOT_GET_SWAP_PAGE (if any).
116Thus it is not necessary to use either SNAPSHOT_FREE or
117SNAPSHOT_FREE_SWAP_PAGES before closing the device (in fact it will also
118unfreeze user space processes frozen by SNAPSHOT_UNFREEZE if they are
119still frozen when the device is being closed).
120
121Currently it is assumed that the userland utilities reading/writing the
Rafael J. Wysockibf73bae2006-12-06 20:34:16 -0800122snapshot image from/to the kernel will use a swap parition, called the resume
123partition, or a swap file as storage space (if a swap file is used, the resume
124partition is the partition that holds this file). However, this is not really
125required, as they can use, for example, a special (blank) suspend partition or
126a file on a partition that is unmounted before SNAPSHOT_ATOMIC_SNAPSHOT and
127mounted afterwards.
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800128
Rafael J. Wysockiaf508b32007-10-26 00:59:31 +0200129These utilities MUST NOT make any assumptions regarding the ordering of
130data within the snapshot image. The contents of the image are entirely owned
131by the kernel and its structure may be changed in future kernel releases.
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800132
133The snapshot image MUST be written to the kernel unaltered (ie. all of the image
134data, metadata and header MUST be written in _exactly_ the same amount, form
135and order in which they have been read). Otherwise, the behavior of the
136resumed system may be totally unpredictable.
137
138While executing SNAPSHOT_ATOMIC_RESTORE the kernel checks if the
139structure of the snapshot image is consistent with the information stored
140in the image header. If any inconsistencies are detected,
141SNAPSHOT_ATOMIC_RESTORE will not succeed. Still, this is not a fool-proof
142mechanism and the userland utilities using the interface SHOULD use additional
143means, such as checksums, to ensure the integrity of the snapshot image.
144
145The suspending and resuming utilities MUST lock themselves in memory,
146preferrably using mlockall(), before calling SNAPSHOT_FREEZE.
147
148The suspending utility MUST check the value stored by SNAPSHOT_ATOMIC_SNAPSHOT
149in the memory location pointed to by the last argument of ioctl() and proceed
150in accordance with it:
1511. If the value is 1 (ie. the system memory snapshot has just been
152 created and the system is ready for saving it):
153 (a) The suspending utility MUST NOT close the snapshot device
154 _unless_ the whole suspend procedure is to be cancelled, in
155 which case, if the snapshot image has already been saved, the
156 suspending utility SHOULD destroy it, preferrably by zapping
157 its header. If the suspend is not to be cancelled, the
158 system MUST be powered off or rebooted after the snapshot
159 image has been saved.
160 (b) The suspending utility SHOULD NOT attempt to perform any
161 file system operations (including reads) on the file systems
162 that were mounted before SNAPSHOT_ATOMIC_SNAPSHOT has been
163 called. However, it MAY mount a file system that was not
164 mounted at that time and perform some operations on it (eg.
165 use it for saving the image).
1662. If the value is 0 (ie. the system state has just been restored from
167 the snapshot image), the suspending utility MUST close the snapshot
168 device. Afterwards it will be treated as a regular userland process,
169 so it need not exit.
170
171The resuming utility SHOULD NOT attempt to mount any file systems that could
172be mounted before suspend and SHOULD NOT attempt to perform any operations
173involving such file systems.
174
175For details, please refer to the source code.