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