b323cb10af59c8794f19026936f87536ad1f1764
[platform/upstream/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         struct stat st;
52
53         if (stat(device, &st) < 0) {
54                 bb_perror_msg_and_die("cannot stat %s", device);
55         }
56
57         /* test for holes */
58         if (S_ISREG(st.st_mode)) {
59                 if (st.st_blocks * 512 < st.st_size) {
60                         bb_error_msg_and_die("swap file has holes");
61                 }
62         }
63
64         if (whichApp == SWAPON_APP)
65                 status = swapon(device, 0);
66         else
67                 status = swapoff(device);
68
69         if (status != 0) {
70                 bb_perror_msg("%s", device);
71                 return EXIT_FAILURE;
72         }
73         return EXIT_SUCCESS;
74 }
75
76 static int do_em_all(void)
77 {
78         struct mntent *m;
79         FILE *f = setmntent("/etc/fstab", "r");
80         int err = 0;
81
82         if (f == NULL)
83                 bb_perror_msg_and_die("/etc/fstab");
84         while ((m = getmntent(f)) != NULL) {
85                 if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) {
86                         if(swap_enable_disable(m->mnt_fsname) == EXIT_FAILURE)
87                                 err++;
88                 }
89         }
90         endmntent(f);
91         return err;
92 }
93
94
95 extern int swap_on_off_main(int argc, char **argv)
96 {
97         if (bb_applet_name[5] == 'f') { /* "swapoff" */
98                 whichApp = SWAPOFF_APP;
99         }
100
101         if (argc != 2) {
102                 goto usage_and_exit;
103         }
104         argc--;
105         argv++;
106
107         /* Parse any options */
108         while (**argv == '-') {
109                 while (*++(*argv))
110                         switch (**argv) {
111                         case 'a':
112                                 {
113                                         struct stat statBuf;
114
115                                         if (stat("/etc/fstab", &statBuf) < 0)
116                                                 bb_error_msg_and_die("/etc/fstab file missing");
117                                 }
118                                 return do_em_all();
119                                 break;
120                         default:
121                                 goto usage_and_exit;
122                         }
123         }
124         return swap_enable_disable(*argv);
125
126   usage_and_exit:
127         bb_show_usage();
128 }