1e3fe5a4384812211ab4e5dbb6d07e0900eb5aa2
[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 swap_enable_disable(const char *device)
35 {
36         int status;
37         struct stat st;
38
39         if (stat(device, &st) < 0) {
40                 bb_perror_msg_and_die("cannot stat %s", device);
41         }
42
43         /* test for holes */
44         if (S_ISREG(st.st_mode)) {
45                 if (st.st_blocks * 512 < st.st_size) {
46                         bb_error_msg_and_die("swap file has holes");
47                 }
48         }
49
50         if (bb_applet_name[5] == 'n')
51                 status = swapon(device, 0);
52         else
53                 status = swapoff(device);
54
55         if (status != 0) {
56                 bb_perror_msg("%s", device);
57                 return EXIT_FAILURE;
58         }
59         /*printf("%s: %s\n", bb_applet_name, device);*/
60         return EXIT_SUCCESS;
61 }
62
63 static int do_em_all(void)
64 {
65         struct mntent *m;
66         FILE *f = setmntent("/etc/fstab", "r");
67         int err = 0;
68
69         if (f == NULL)
70                 bb_perror_msg_and_die("/etc/fstab");
71         while ((m = getmntent(f)) != NULL) {
72                 if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) {
73                         if(swap_enable_disable(m->mnt_fsname) == EXIT_FAILURE)
74                                 err++;
75                 }
76         }
77         endmntent(f);
78         return err;
79 }
80
81 #define DO_ALL      1
82
83 extern int swap_on_off_main(int argc, char **argv)
84 {
85         unsigned long opt = bb_getopt_ulflags (argc, argv, "a");
86         
87         if (argc != 2) {
88                 bb_show_usage();
89         }
90         
91         if (opt & DO_ALL)
92                 return do_em_all();
93         
94         return swap_enable_disable(argv[1]);
95 }