b43f3cdc1b197677b74791f9f6c18cfeeed0424f
[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 <mntent.h>
29 #include <dirent.h>
30 #include <errno.h>
31
32 _syscall2(int, swapon, const char *, path, int, flags);
33 _syscall1(int, swapoff, const char *, path);
34
35
36 static int whichApp;
37 static const char *appName;
38
39 static const char swapoff_usage[] =
40         "swapoff [OPTION] [device]\n"
41 #ifndef BB_FEATURE_TRIVIAL_HELP
42         "\nStop swapping virtual memory pages on the given device.\n\n"
43         "Options:\n"
44         "\t-a\tStop swapping on all swap devices\n"
45 #endif
46         ;
47
48 static const char swapon_usage[] =
49         "swapon [OPTION] [device]\n"
50 #ifndef BB_FEATURE_TRIVIAL_HELP
51         "\nStart swapping virtual memory pages on the given device.\n\n"
52         "Options:\n"
53         "\t-a\tStart swapping on all swap devices\n"
54 #endif
55         ;
56
57
58 #define SWAPON_APP   1
59 #define SWAPOFF_APP  2
60
61
62 static void swap_enable_disable(char *device)
63 {
64         int status;
65
66         if (whichApp == SWAPON_APP)
67                 status = swapon(device, 0);
68         else
69                 status = swapoff(device);
70
71         if (status != 0) {
72                 perror(appName);
73                 exit(FALSE);
74         }
75 }
76
77 static void do_em_all()
78 {
79         struct mntent *m;
80         FILE *f = setmntent("/etc/fstab", "r");
81
82         if (f == NULL) {
83                 perror("/etc/fstab");
84                 exit(FALSE);
85         }
86         while ((m = getmntent(f)) != NULL) {
87                 if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) {
88                         swap_enable_disable(m->mnt_fsname);
89                 }
90         }
91         endmntent(f);
92         exit(TRUE);
93 }
94
95
96 extern int swap_on_off_main(int argc, char **argv)
97 {
98         if (strcmp(*argv, "swapon") == 0) {
99                 appName = *argv;
100                 whichApp = SWAPON_APP;
101
102         } else {
103                 appName = *argv;
104                 whichApp = SWAPOFF_APP;
105         }
106
107         if (argc != 2) {
108                 goto usage_and_exit;
109         }
110         argc--;
111         argv++;
112
113         /* Parse any options */
114         while (**argv == '-') {
115                 while (*++(*argv))
116                         switch (**argv) {
117                         case 'a':
118                                 {
119                                         struct stat statBuf;
120
121                                         if (stat("/etc/fstab", &statBuf) < 0)
122                                                 fatalError("/etc/fstab file missing\n");
123                                 }
124                                 do_em_all();
125                                 break;
126                         default:
127                                 goto usage_and_exit;
128                         }
129         }
130         swap_enable_disable(*argv);
131         exit(TRUE);
132
133   usage_and_exit:
134         usage((whichApp == SWAPON_APP) ? swapon_usage : swapoff_usage);
135         exit(FALSE);
136 }