blob: dbefa4cf2cab9884b4bef7b25f4cd249856813e7 [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 */
9
Pere Orga5bc8c002011-04-11 03:29:49 +020010//usage:#define swapon_trivial_usage
11//usage: "[-a]" IF_FEATURE_SWAPON_PRI(" [-p PRI]") " [DEVICE]"
12//usage:#define swapon_full_usage "\n\n"
13//usage: "Start swapping on DEVICE\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020014//usage: "\n -a Start swapping on all swap devices"
15//usage: IF_FEATURE_SWAPON_PRI(
16//usage: "\n -p PRI Set swap device priority"
17//usage: )
18//usage:
19//usage:#define swapoff_trivial_usage
20//usage: "[-a] [DEVICE]"
21//usage:#define swapoff_full_usage "\n\n"
22//usage: "Stop swapping on DEVICE\n"
Pere Orga5bc8c002011-04-11 03:29:49 +020023//usage: "\n -a Stop swapping on all swap devices"
24
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000025#include "libbb.h"
Eric Andersen87590061999-10-18 21:22:59 +000026#include <mntent.h>
Eric Andersene76c3b02001-04-05 03:14:39 +000027#include <sys/swap.h>
Eric Andersene76c3b02001-04-05 03:14:39 +000028
Natanael Copa9aff2992009-09-20 04:28:22 +020029#if ENABLE_FEATURE_MOUNT_LABEL
30# include "volume_id.h"
31#else
32# define resolve_mount_spec(fsname) ((void)0)
33#endif
34
Denis Vlasenkoee56e012008-05-18 23:05:34 +000035#if ENABLE_FEATURE_SWAPON_PRI
36struct globals {
37 int flags;
Denys Vlasenko98a4c7c2010-02-04 15:00:15 +010038} FIX_ALIASING;
Denis Vlasenkoee56e012008-05-18 23:05:34 +000039#define G (*(struct globals*)&bb_common_bufsiz1)
40#define g_flags (G.flags)
41#else
42#define g_flags 0
43#endif
44
Rob Landley20cc6d52006-09-12 21:42:17 +000045static int swap_enable_disable(char *device)
Eric Andersen87590061999-10-18 21:22:59 +000046{
Erik Andersene49d5ec2000-02-08 19:58:47 +000047 int status;
Eric Andersen97b141a2002-11-03 00:25:23 +000048 struct stat st;
49
Natanael Copa9aff2992009-09-20 04:28:22 +020050 resolve_mount_spec(&device);
Rob Landleyc5b1d4d2006-03-13 15:45:16 +000051 xstat(device, &st);
Eric Andersen97b141a2002-11-03 00:25:23 +000052
Denis Vlasenko56594072007-03-14 22:55:39 +000053#if ENABLE_DESKTOP
Eric Andersen97b141a2002-11-03 00:25:23 +000054 /* test for holes */
Mike Frysinger6943a942005-09-13 02:29:39 +000055 if (S_ISREG(st.st_mode))
Denis Vlasenkof8b21d02007-11-05 19:33:38 +000056 if (st.st_blocks * (off_t)512 < st.st_size)
Denis Vlasenko56594072007-03-14 22:55:39 +000057 bb_error_msg("warning: swap file has holes");
Denis Vlasenkob3f09f42007-03-12 18:16:24 +000058#endif
Eric Andersen87590061999-10-18 21:22:59 +000059
Denis Vlasenko8f8f2682006-10-03 21:00:43 +000060 if (applet_name[5] == 'n')
Denis Vlasenkoee56e012008-05-18 23:05:34 +000061 status = swapon(device, g_flags);
Erik Andersene49d5ec2000-02-08 19:58:47 +000062 else
63 status = swapoff(device);
64
Eric Andersendb1df5e2002-10-26 10:27:42 +000065 if (status != 0) {
Denis Vlasenko0c97c9d2007-10-01 11:58:38 +000066 bb_simple_perror_msg(device);
Mike Frysinger2d5e4f62005-09-16 04:41:20 +000067 return 1;
Eric Andersendb1df5e2002-10-26 10:27:42 +000068 }
Mike Frysinger6943a942005-09-13 02:29:39 +000069
Mike Frysinger2d5e4f62005-09-16 04:41:20 +000070 return 0;
Eric Andersen87590061999-10-18 21:22:59 +000071}
72
Eric Andersendb1df5e2002-10-26 10:27:42 +000073static int do_em_all(void)
Eric Andersen87590061999-10-18 21:22:59 +000074{
75 struct mntent *m;
Mike Frysinger6943a942005-09-13 02:29:39 +000076 FILE *f;
77 int err;
Eric Andersen87590061999-10-18 21:22:59 +000078
Mike Frysinger6943a942005-09-13 02:29:39 +000079 f = setmntent("/etc/fstab", "r");
Matt Kraaia9819b22000-12-22 01:48:07 +000080 if (f == NULL)
Manuel Novoa III cad53642003-03-19 09:13:01 +000081 bb_perror_msg_and_die("/etc/fstab");
Mike Frysinger6943a942005-09-13 02:29:39 +000082
83 err = 0;
Lauri Kasanend2844fc2010-04-29 22:20:57 +020084 while ((m = getmntent(f)) != NULL) {
85 if (strcmp(m->mnt_type, MNTTYPE_SWAP) == 0) {
86 /* swapon -a should ignore entries with noauto,
87 * but swapoff -a should process them */
88 if (applet_name[5] != 'n'
89 || hasmntopt(m, MNTOPT_NOAUTO) == NULL
90 ) {
91 err += swap_enable_disable(m->mnt_fsname);
92 }
93 }
94 }
Mike Frysinger6943a942005-09-13 02:29:39 +000095
Lauri Kasanend2844fc2010-04-29 22:20:57 +020096 if (ENABLE_FEATURE_CLEAN_UP)
97 endmntent(f);
Mike Frysinger6943a942005-09-13 02:29:39 +000098
Eric Andersendb1df5e2002-10-26 10:27:42 +000099 return err;
Eric Andersen87590061999-10-18 21:22:59 +0000100}
101
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +0000102int swap_on_off_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000103int swap_on_off_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen87590061999-10-18 21:22:59 +0000104{
Mike Frysinger2d5e4f62005-09-16 04:41:20 +0000105 int ret;
Mike Frysinger6943a942005-09-13 02:29:39 +0000106
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000107#if !ENABLE_FEATURE_SWAPON_PRI
Denis Vlasenkofe7cd642007-08-18 15:32:12 +0000108 ret = getopt32(argv, "a");
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000109#else
110 opt_complementary = "p+";
111 ret = getopt32(argv, (applet_name[5] == 'n') ? "ap:" : "a", &g_flags);
112
113 if (ret & 2) { // -p
114 g_flags = SWAP_FLAG_PREFER |
115 ((g_flags & SWAP_FLAG_PRIO_MASK) << SWAP_FLAG_PRIO_SHIFT);
116 ret &= 1;
117 }
118#endif
119
120 if (ret /* & 1: not needed */) // -a
Rob Landleybc3d4a12005-09-13 01:30:19 +0000121 return do_em_all();
Mike Frysinger6943a942005-09-13 02:29:39 +0000122
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000123 argv += optind;
124 if (!*argv)
125 bb_show_usage();
126
Denis Vlasenkob3f09f42007-03-12 18:16:24 +0000127 /* ret = 0; redundant */
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000128 do {
Mike Frysinger2d5e4f62005-09-16 04:41:20 +0000129 ret += swap_enable_disable(*argv);
Denis Vlasenkoee56e012008-05-18 23:05:34 +0000130 } while (*++argv);
131
Mike Frysinger2d5e4f62005-09-16 04:41:20 +0000132 return ret;
Eric Andersen87590061999-10-18 21:22:59 +0000133}