2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-10-19 02:52:59 +05:30
|
|
|
/*
|
|
|
|
* Mini swapon/swapoff implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-10-19 02:52:59 +05:30
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <mntent.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <errno.h>
|
2001-03-09 20:06:42 +05:30
|
|
|
#include <string.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <sys/mount.h>
|
2001-04-05 08:44:39 +05:30
|
|
|
#include <sys/swap.h>
|
1999-10-19 02:52:59 +05:30
|
|
|
|
2001-04-05 08:44:39 +05:30
|
|
|
#include "busybox.h"
|
1999-10-19 02:52:59 +05:30
|
|
|
|
2002-10-26 15:57:42 +05:30
|
|
|
static int swap_enable_disable(const char *device)
|
1999-10-19 02:52:59 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
int status;
|
2002-11-03 05:55:23 +05:30
|
|
|
struct stat st;
|
|
|
|
|
|
|
|
if (stat(device, &st) < 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("cannot stat %s", device);
|
2002-11-03 05:55:23 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/* test for holes */
|
|
|
|
if (S_ISREG(st.st_mode)) {
|
|
|
|
if (st.st_blocks * 512 < st.st_size) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("swap file has holes");
|
2002-11-03 05:55:23 +05:30
|
|
|
}
|
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2005-09-13 07:00:19 +05:30
|
|
|
if (bb_applet_name[5] == 'n')
|
2000-02-09 01:28:47 +05:30
|
|
|
status = swapon(device, 0);
|
|
|
|
else
|
|
|
|
status = swapoff(device);
|
|
|
|
|
2002-10-26 15:57:42 +05:30
|
|
|
if (status != 0) {
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg("%s", device);
|
2002-10-26 15:57:42 +05:30
|
|
|
return EXIT_FAILURE;
|
|
|
|
}
|
2005-09-13 07:00:19 +05:30
|
|
|
/*printf("%s: %s\n", bb_applet_name, device);*/
|
2002-10-26 15:57:42 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|
|
|
|
|
2002-10-26 15:57:42 +05:30
|
|
|
static int do_em_all(void)
|
1999-10-19 02:52:59 +05:30
|
|
|
{
|
|
|
|
struct mntent *m;
|
2000-02-09 01:28:47 +05:30
|
|
|
FILE *f = setmntent("/etc/fstab", "r");
|
2002-10-26 15:57:42 +05:30
|
|
|
int err = 0;
|
1999-10-19 02:52:59 +05:30
|
|
|
|
2000-12-22 07:18:07 +05:30
|
|
|
if (f == NULL)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_perror_msg_and_die("/etc/fstab");
|
2000-02-09 01:28:47 +05:30
|
|
|
while ((m = getmntent(f)) != NULL) {
|
2000-06-07 22:58:53 +05:30
|
|
|
if (strcmp(m->mnt_type, MNTTYPE_SWAP)==0) {
|
2002-10-26 15:57:42 +05:30
|
|
|
if(swap_enable_disable(m->mnt_fsname) == EXIT_FAILURE)
|
|
|
|
err++;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|
2000-02-09 01:28:47 +05:30
|
|
|
endmntent(f);
|
2002-10-26 15:57:42 +05:30
|
|
|
return err;
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|
|
|
|
|
2005-09-13 07:00:19 +05:30
|
|
|
#define DO_ALL 1
|
1999-10-19 02:52:59 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
extern int swap_on_off_main(int argc, char **argv)
|
1999-10-19 02:52:59 +05:30
|
|
|
{
|
2005-09-13 07:00:19 +05:30
|
|
|
unsigned long opt = bb_getopt_ulflags (argc, argv, "a");
|
|
|
|
|
2000-02-09 09:46:43 +05:30
|
|
|
if (argc != 2) {
|
2005-09-13 07:00:19 +05:30
|
|
|
bb_show_usage();
|
2000-02-09 09:46:43 +05:30
|
|
|
}
|
2005-09-13 07:00:19 +05:30
|
|
|
|
|
|
|
if (opt & DO_ALL)
|
|
|
|
return do_em_all();
|
|
|
|
|
|
|
|
return swap_enable_disable(argv[1]);
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|