9da70756ee51ba54007381e0937c9c0691df1e5d
[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-2003 by Erik Andersen <andersen@codepoet.org>
6  * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.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 #include <sys/swap.h>
32
33 #include "busybox.h"
34
35 static int whichApp;    /* default SWAPON_APP */
36
37 static const int SWAPON_APP = 0;
38 static const int SWAPOFF_APP = 1;
39
40
41 static int swap_enable_disable(const char *device)
42 {
43         int status;
44         struct stat st;
45
46         if (stat(device, &st) < 0) {
47                 bb_perror_msg_and_die("cannot stat %s", device);
48         }
49
50         /* test for holes */
51         if (S_ISREG(st.st_mode)) {
52                 if (st.st_blocks * 512 < st.st_size) {
53                         bb_error_msg_and_die("swap file has holes");
54                 }
55         }
56
57         if (whichApp == SWAPON_APP)
58                 status = swapon(device, 0);
59         else
60                 status = swapoff(device);
61
62         if (status != 0) {
63                 bb_perror_msg("%s", device);
64                 return EXIT_FAILURE;
65         }
66         return EXIT_SUCCESS;
67 }
68
69 static int do_em_all(void)
70 {
71         struct mntent *m;
72         FILE *f = setmntent("/etc/fstab", "r");
73         int err = 0;
74
75         if (f == NULL)
76                 bb_perror_msg_and_die("/etc/fstab");
77         while ((m = getmntent(f)) != NULL) {
78                 if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) {
79                         if(swap_enable_disable(m->mnt_fsname) == EXIT_FAILURE)
80                                 err++;
81                 }
82         }
83         endmntent(f);
84         return err;
85 }
86
87
88 extern int swap_on_off_main(int argc, char **argv)
89 {
90         if (bb_applet_name[5] == 'f') { /* "swapoff" */
91                 whichApp = SWAPOFF_APP;
92         }
93
94         if (argc != 2) {
95                 goto usage_and_exit;
96         }
97         argc--;
98         argv++;
99
100         /* Parse any options */
101         while (**argv == '-') {
102                 while (*++(*argv))
103                         switch (**argv) {
104                         case 'a':
105                                 {
106                                         struct stat statBuf;
107
108                                         if (stat("/etc/fstab", &statBuf) < 0)
109                                                 bb_error_msg_and_die("/etc/fstab file missing");
110                                 }
111                                 return do_em_all();
112                                 break;
113                         default:
114                                 goto usage_and_exit;
115                         }
116         }
117         return swap_enable_disable(*argv);
118
119   usage_and_exit:
120         bb_show_usage();
121 }