aa961dac935aa820c32924e74ca82a2fdfeb82c1
[oweals/busybox.git] / swaponoff.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini swapon/swapoff implementation for busybox
4  *
5  *
6  * Copyright (C) 1999,2000 by Lineo, inc.
7  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 2 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  * General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22  *
23  */
24
25 #include "internal.h"
26 #include <stdio.h>
27 #include <sys/mount.h>
28 #include <sys/swap.h>
29 #include <mntent.h>
30 #include <dirent.h>
31 #include <fstab.h>
32 #include <errno.h>
33
34
35 static int whichApp;
36 static const char *appName;
37
38 static const char swapoff_usage[] =
39         "swapoff [OPTION] [device]\n\n"
40         "Stop swapping virtual memory pages on the given device.\n\n"
41         "Options:\n"
42         "\t-a\tStop swapping on all swap devices\n";
43
44 static const char swapon_usage[] =
45         "swapon [OPTION] [device]\n\n"
46         "Start swapping virtual memory pages on the given device.\n\n"
47         "Options:\n"
48         "\t-a\tStart swapping on all swap devices\n";
49
50
51 #define SWAPON_APP   1
52 #define SWAPOFF_APP  2
53
54
55 static void swap_enable_disable(char *device)
56 {
57         int status;
58
59         if (whichApp == SWAPON_APP)
60                 status = swapon(device, 0);
61         else
62                 status = swapoff(device);
63
64         if (status != 0) {
65                 perror(appName);
66                 exit(FALSE);
67         }
68 }
69
70 static void do_em_all()
71 {
72         struct mntent *m;
73         FILE *f = setmntent("/etc/fstab", "r");
74
75         if (f == NULL) {
76                 perror("/etc/fstab");
77                 exit(FALSE);
78         }
79         while ((m = getmntent(f)) != NULL) {
80                 if (!strstr(m->mnt_type, MNTTYPE_SWAP)) {
81                         swap_enable_disable(m->mnt_fsname);
82                 }
83         }
84         endmntent(f);
85         exit(TRUE);
86 }
87
88
89 extern int swap_on_off_main(int argc, char **argv)
90 {
91         if (strcmp(*argv, "swapon") == 0) {
92                 appName = *argv;
93                 whichApp = SWAPON_APP;
94
95         } else {
96                 appName = *argv;
97                 whichApp = SWAPOFF_APP;
98         }
99
100         if (argc != 2) {
101                 goto usage_and_exit;
102         }
103         argc--;
104         argv++;
105
106         /* Parse any options */
107         while (**argv == '-') {
108                 while (*++(*argv))
109                         switch (**argv) {
110                         case 'a':
111                                 {
112                                         struct stat statBuf;
113
114                                         if (stat("/etc/fstab", &statBuf) < 0)
115                                                 fatalError("/etc/fstab file missing\n");
116                                 }
117                                 do_em_all();
118                                 break;
119                         default:
120                                 goto usage_and_exit;
121                         }
122         }
123         swap_enable_disable(*argv);
124         exit(TRUE);
125
126   usage_and_exit:
127         usage((whichApp == SWAPON_APP) ? swapon_usage : swapoff_usage);
128         exit(FALSE);
129 }