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