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