blob: 313ea0ef9204d837c51671d857a766b65c5f6fea [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen87590061999-10-18 21:22:59 +00002/*
3 * Mini swapon/swapoff implementation for busybox
4 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen87590061999-10-18 21:22:59 +00006 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2, see file LICENSE in this source tree.
Eric Andersen87590061999-10-18 21:22:59 +00008 */
Denys Vlasenkof417ffd2016-11-14 17:30:50 +01009//config:config SWAPON
10//config: bool "swapon"
11//config: default y
12//config: select PLATFORM_LINUX
13//config: help
14//config: This option enables the 'swapon' utility.
15//config: Once you have created some swap space using 'mkswap', you also need
16//config: to enable your swap space with the 'swapon' utility. The 'swapoff'
17//config: utility is used, typically at system shutdown, to disable any swap
18//config: space. If you are not using any swap space, you can leave this
19//config: option disabled.
20//config:
21//config:config FEATURE_SWAPON_DISCARD
22//config: bool "Support discard option -d"
23//config: default y
24//config: depends on SWAPON
25//config: help
26//config: Enable support for discarding swap area blocks at swapon and/or as
27//config: the kernel frees them. This option enables both the -d option on
28//config: 'swapon' and the 'discard' option for swap entries in /etc/fstab.
29//config:
30//config:config FEATURE_SWAPON_PRI
31//config: bool "Support priority option -p"
32//config: default y
33//config: depends on SWAPON
34//config: help
35//config: Enable support for setting swap device priority in swapon.
36//config:
37//config:config SWAPOFF
38//config: bool "swapoff"
39//config: default y
40//config: select PLATFORM_LINUX
41//config: help
42//config: This option enables the 'swapoff' utility.
43
Denys Vlasenko205d48e2017-01-29 14:57:33 +010044// APPLET_ODDNAME:name main location suid_type help
45//applet:IF_SWAPON( APPLET_ODDNAME(swapon, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapon))
Denys Vlasenkof417ffd2016-11-14 17:30:50 +010046//applet:IF_SWAPOFF(APPLET_ODDNAME(swapoff, swap_on_off, BB_DIR_SBIN, BB_SUID_DROP, swapoff))
47
48//kbuild:lib-$(CONFIG_SWAPON) += swaponoff.o
49//kbuild:lib-$(CONFIG_SWAPOFF) += swaponoff.o
50
Pere Orga5bc8c002011-04-11 03:29:49 +020051//usage:#define swapon_trivial_usage
René Rhéaumee7695772015-01-05 20:35:00 +010052//usage: "[-a] [-e]" IF_FEATURE_SWAPON_DISCARD(" [-d[POL]]") IF_FEATURE_SWAPON_PRI(" [-p PRI]") " [DEVICE]"
Pere Orga5bc8c002011-04-11 03:29:49 +020053//usage:#define swapon_full_usage "\n\n"
54//usage: "Start swapping on DEVICE\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020055//usage: "\n -a Start swapping on all swap devices"
Matt Whitlock0a53b202014-03-22 19:21:01 -040056//usage: IF_FEATURE_SWAPON_DISCARD(
57//usage: "\n -d[POL] Discard blocks at swapon (POL=once),"
58//usage: "\n as freed (POL=pages), or both (POL omitted)"
59//usage: )
René Rhéaumee7695772015-01-05 20:35:00 +010060//usage: "\n -e Silently skip devices that do not exist"
Pere Orga5bc8c002011-04-11 03:29:49 +020061//usage: IF_FEATURE_SWAPON_PRI(
62//usage: "\n -p PRI Set swap device priority"
63//usage: )
64//usage:
65//usage:#define swapoff_trivial_usage
Mike Frysinger5f11ec32015-12-16 12:59:08 -050066//usage: "[-a] [DEVICE]"
Pere Orga5bc8c002011-04-11 03:29:49 +020067//usage:#define swapoff_full_usage "\n\n"
68//usage: "Stop swapping on DEVICE\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020069//usage: "\n -a Stop swapping on all swap devices"
70
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000071#include "libbb.h"
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +020072#include "common_bufsiz.h"
Eric Andersen87590061999-10-18 21:22:59 +000073#include <mntent.h>
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020074#ifndef __BIONIC__
75# include <sys/swap.h>
76#endif
Eric Andersene76c3b02001-04-05 03:14:39 +000077
Natanael Copa9aff2992009-09-20 04:28:22 +020078#if ENABLE_FEATURE_MOUNT_LABEL
79# include "volume_id.h"
80#else
81# define resolve_mount_spec(fsname) ((void)0)
82#endif
83
Denys Vlasenko14bd16a2011-07-08 08:49:40 +020084#ifndef MNTTYPE_SWAP
85# define MNTTYPE_SWAP "swap"
86#endif
87
Matt Whitlock0a53b202014-03-22 19:21:01 -040088#if ENABLE_FEATURE_SWAPON_DISCARD
89#ifndef SWAP_FLAG_DISCARD
90#define SWAP_FLAG_DISCARD 0x10000
91#endif
92#ifndef SWAP_FLAG_DISCARD_ONCE
93#define SWAP_FLAG_DISCARD_ONCE 0x20000
94#endif
95#ifndef SWAP_FLAG_DISCARD_PAGES
96#define SWAP_FLAG_DISCARD_PAGES 0x40000
97#endif
98#define SWAP_FLAG_DISCARD_MASK \
99 (SWAP_FLAG_DISCARD | SWAP_FLAG_DISCARD_ONCE | SWAP_FLAG_DISCARD_PAGES)
100#endif
101
102
103#if ENABLE_FEATURE_SWAPON_DISCARD || ENABLE_FEATURE_SWAPON_PRI
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000104struct globals {
105 int flags;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +0100106} FIX_ALIASING;
Denys Vlasenkoe6a2f4c2016-04-21 16:26:30 +0200107#define G (*(struct globals*)bb_common_bufsiz1)
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000108#define g_flags (G.flags)
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200109#define save_g_flags() int save_g_flags = g_flags
110#define restore_g_flags() g_flags = save_g_flags
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000111#else
112#define g_flags 0
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200113#define save_g_flags() ((void)0)
114#define restore_g_flags() ((void)0)
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000115#endif
Denys Vlasenko47cfbf32016-04-21 18:18:48 +0200116#define INIT_G() do { setup_common_bufsiz(); } while (0)
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000117
Denys Vlasenkof417ffd2016-11-14 17:30:50 +0100118#if ENABLE_SWAPOFF
119# if ENABLE_SWAPON
120# define do_swapoff (applet_name[5] == 'f')
121# else
122# define do_swapoff 1
123# endif
124#else
125# define do_swapoff 0
126#endif
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200127
128/* Command line options */
129enum {
130 OPTBIT_a, /* -a all */
René Rhéaumee7695772015-01-05 20:35:00 +0100131 OPTBIT_e, /* -e ifexists */
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200132 IF_FEATURE_SWAPON_DISCARD( OPTBIT_d ,) /* -d discard */
133 IF_FEATURE_SWAPON_PRI ( OPTBIT_p ,) /* -p priority */
134 OPT_a = 1 << OPTBIT_a,
René Rhéaumee7695772015-01-05 20:35:00 +0100135 OPT_e = 1 << OPTBIT_e,
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200136 OPT_d = IF_FEATURE_SWAPON_DISCARD((1 << OPTBIT_d)) + 0,
137 OPT_p = IF_FEATURE_SWAPON_PRI ((1 << OPTBIT_p)) + 0,
138};
139
140#define OPT_ALL (option_mask32 & OPT_a)
141#define OPT_DISCARD (option_mask32 & OPT_d)
René Rhéaumee7695772015-01-05 20:35:00 +0100142#define OPT_IFEXISTS (option_mask32 & OPT_e)
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200143#define OPT_PRIO (option_mask32 & OPT_p)
144
Denys Vlasenko6c634f72015-12-18 19:02:31 +0100145static int swap_enable_disable(char *device)
Eric Andersen87590061999-10-18 21:22:59 +0000146{
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200147 int err = 0;
148 int quiet = 0;
Eric Andersen97b141a2002-11-03 00:25:23 +0000149
Natanael Copa9aff2992009-09-20 04:28:22 +0200150 resolve_mount_spec(&device);
Eric Andersen97b141a2002-11-03 00:25:23 +0000151
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200152 if (do_swapoff) {
153 err = swapoff(device);
154 /* Don't complain on OPT_ALL if not a swap device or if it doesn't exist */
155 quiet = (OPT_ALL && (errno == EINVAL || errno == ENOENT));
156 } else {
157 /* swapon */
Mike Frysinger5f11ec32015-12-16 12:59:08 -0500158 struct stat st;
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200159 err = stat(device, &st);
160 if (!err) {
161 if (ENABLE_DESKTOP && S_ISREG(st.st_mode)) {
162 if (st.st_blocks * (off_t)512 < st.st_size) {
163 bb_error_msg("%s: file has holes", device);
164 return 1;
165 }
166 }
167 err = swapon(device, g_flags);
168 /* Don't complain on swapon -a if device is already in use */
Mike Frysinger5f11ec32015-12-16 12:59:08 -0500169 quiet = (OPT_ALL && errno == EBUSY);
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200170 }
Mike Frysinger5f11ec32015-12-16 12:59:08 -0500171 /* Don't complain if file does not exist with -e option */
172 if (err && OPT_IFEXISTS && errno == ENOENT)
173 err = 0;
Eric Andersendb1df5e2002-10-26 10:27:42 +0000174 }
Mike Frysinger6943a942005-09-13 02:29:39 +0000175
Tito Ragusac9a67132014-04-01 09:51:27 +0200176 if (err && !quiet) {
177 bb_simple_perror_msg(device);
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200178 return 1;
179 }
Mike Frysinger2d5e4f62005-09-16 04:41:20 +0000180 return 0;
Eric Andersen87590061999-10-18 21:22:59 +0000181}
182
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200183#if ENABLE_FEATURE_SWAPON_DISCARD
184static void set_discard_flag(char *s)
Eric Andersen87590061999-10-18 21:22:59 +0000185{
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200186 /* Unset the flag first to allow fstab options to override */
187 /* options set on the command line */
188 g_flags = (g_flags & ~SWAP_FLAG_DISCARD_MASK) | SWAP_FLAG_DISCARD;
189
190 if (!s) /* No optional policy value on the commandline */
191 return;
192 /* Skip prepended '=' */
193 if (*s == '=')
194 s++;
195 /* For fstab parsing: remove other appended options */
196 *strchrnul(s, ',') = '\0';
197
198 if (strcmp(s, "once") == 0)
199 g_flags |= SWAP_FLAG_DISCARD_ONCE;
200 if (strcmp(s, "pages") == 0)
201 g_flags |= SWAP_FLAG_DISCARD_PAGES;
202}
203#else
204#define set_discard_flag(s) ((void)0)
Matt Whitlockb9bbd4d2014-03-22 19:10:08 -0400205#endif
Eric Andersen87590061999-10-18 21:22:59 +0000206
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200207#if ENABLE_FEATURE_SWAPON_PRI
208static void set_priority_flag(char *s)
209{
210 unsigned prio;
Mike Frysinger6943a942005-09-13 02:29:39 +0000211
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200212 /* For fstab parsing: remove other appended options */
213 *strchrnul(s, ',') = '\0';
214 /* Max allowed 32767 (== SWAP_FLAG_PRIO_MASK) */
215 prio = bb_strtou(s, NULL, 10);
216 if (!errno) {
217 /* Unset the flag first to allow fstab options to override */
218 /* options set on the command line */
219 g_flags = (g_flags & ~SWAP_FLAG_PRIO_MASK) | SWAP_FLAG_PREFER |
220 MIN(prio, SWAP_FLAG_PRIO_MASK);
221 }
222}
223#else
224#define set_priority_flag(s) ((void)0)
225#endif
226
227static int do_em_all_in_fstab(void)
228{
229 struct mntent *m;
230 int err = 0;
231 FILE *f = xfopen_for_read("/etc/fstab");
232
Lauri Kasanend2844fc2010-04-29 22:20:57 +0200233 while ((m = getmntent(f)) != NULL) {
234 if (strcmp(m->mnt_type, MNTTYPE_SWAP) == 0) {
235 /* swapon -a should ignore entries with noauto,
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200236 * but swapoff -a should process them
237 */
238 if (do_swapoff || hasmntopt(m, MNTOPT_NOAUTO) == NULL) {
239 /* each swap space might have different flags */
240 /* save global flags for the next round */
241 save_g_flags();
242 if (ENABLE_FEATURE_SWAPON_DISCARD) {
243 char *p = hasmntopt(m, "discard");
244 if (p) {
245 /* move to '=' or to end of string */
246 p += 7;
247 set_discard_flag(p);
Tito Ragusa8c7fcbd2013-08-08 10:21:27 +0200248 }
249 }
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200250 if (ENABLE_FEATURE_SWAPON_PRI) {
251 char *p = hasmntopt(m, "pri");
252 if (p) {
253 set_priority_flag(p + 4);
254 }
255 }
256 err |= swap_enable_disable(m->mnt_fsname);
257 restore_g_flags();
Lauri Kasanend2844fc2010-04-29 22:20:57 +0200258 }
259 }
260 }
Mike Frysinger6943a942005-09-13 02:29:39 +0000261
Lauri Kasanend2844fc2010-04-29 22:20:57 +0200262 if (ENABLE_FEATURE_CLEAN_UP)
263 endmntent(f);
Mike Frysinger6943a942005-09-13 02:29:39 +0000264
Eric Andersendb1df5e2002-10-26 10:27:42 +0000265 return err;
Eric Andersen87590061999-10-18 21:22:59 +0000266}
267
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200268static int do_all_in_proc_swaps(void)
269{
270 char *line;
271 int err = 0;
272 FILE *f = fopen_for_read("/proc/swaps");
273 /* Don't complain if missing */
274 if (f) {
275 while ((line = xmalloc_fgetline(f)) != NULL) {
276 if (line[0] == '/') {
277 *strchrnul(line, ' ') = '\0';
278 err |= swap_enable_disable(line);
279 }
280 free(line);
281 }
282 if (ENABLE_FEATURE_CLEAN_UP)
283 fclose(f);
284 }
285
286 return err;
287}
288
René Rhéaumee7695772015-01-05 20:35:00 +0100289#define OPTSTR_SWAPON "ae" \
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200290 IF_FEATURE_SWAPON_DISCARD("d::") \
291 IF_FEATURE_SWAPON_PRI("p:")
292
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000293int swap_on_off_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000294int swap_on_off_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen87590061999-10-18 21:22:59 +0000295{
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200296 IF_FEATURE_SWAPON_PRI(char *prio;)
297 IF_FEATURE_SWAPON_DISCARD(char *discard = NULL;)
298 int ret = 0;
Mike Frysinger6943a942005-09-13 02:29:39 +0000299
Denys Vlasenko16714242011-09-21 01:59:15 +0200300 INIT_G();
301
René Rhéaumee7695772015-01-05 20:35:00 +0100302 getopt32(argv, do_swapoff ? "ae" : OPTSTR_SWAPON
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200303 IF_FEATURE_SWAPON_DISCARD(, &discard)
304 IF_FEATURE_SWAPON_PRI(, &prio)
305 );
Mike Frysinger6943a942005-09-13 02:29:39 +0000306
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000307 argv += optind;
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200308
309 if (OPT_DISCARD) {
310 set_discard_flag(discard);
311 }
312 if (OPT_PRIO) {
313 set_priority_flag(prio);
314 }
315
316 if (OPT_ALL) {
317 /* swapoff -a does also /proc/swaps */
318 if (do_swapoff)
319 ret = do_all_in_proc_swaps();
320 ret |= do_em_all_in_fstab();
321 } else if (!*argv) {
322 /* if not -a we need at least one arg */
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000323 bb_show_usage();
Tito Ragusaa3f326c2014-03-31 16:39:26 +0200324 }
325 /* Unset -a now to allow for more messages in swap_enable_disable */
326 option_mask32 = option_mask32 & ~OPT_a;
327 /* Now process devices on the commandline if any */
328 while (*argv) {
329 ret |= swap_enable_disable(*argv++);
330 }
Mike Frysinger2d5e4f62005-09-16 04:41:20 +0000331 return ret;
Eric Andersen87590061999-10-18 21:22:59 +0000332}