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
|
|
|
*
|
2005-09-13 07:59:39 +05:30
|
|
|
* Licensed under the GPL v2, see the file LICENSE in this tarball.
|
1999-10-19 02:52:59 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2005-09-13 07:59:39 +05:30
|
|
|
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 */
|
2005-09-13 07:59:39 +05:30
|
|
|
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");
|
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);
|
2005-09-16 10:11:20 +05:30
|
|
|
return 1;
|
2002-10-26 15:57:42 +05:30
|
|
|
}
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2005-09-16 10:11:20 +05:30
|
|
|
return 0;
|
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;
|
2005-09-13 07:59:39 +05:30
|
|
|
FILE *f;
|
|
|
|
int err;
|
1999-10-19 02:52:59 +05:30
|
|
|
|
2005-09-13 07:59:39 +05:30
|
|
|
f = setmntent("/etc/fstab", "r");
|
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");
|
2005-09-13 07:59:39 +05:30
|
|
|
|
|
|
|
err = 0;
|
|
|
|
while ((m = getmntent(f)) != NULL)
|
|
|
|
if (strcmp(m->mnt_type, MNTTYPE_SWAP) == 0)
|
2005-09-16 10:11:20 +05:30
|
|
|
err += swap_enable_disable(m->mnt_fsname);
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
endmntent(f);
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2002-10-26 15:57:42 +05:30
|
|
|
return err;
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|
|
|
|
|
2005-09-13 07:59:39 +05:30
|
|
|
#define DO_ALL 0x01
|
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-16 10:11:20 +05:30
|
|
|
int ret;
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2005-09-16 10:11:20 +05:30
|
|
|
if (argc == 1)
|
2005-09-13 07:00:19 +05:30
|
|
|
bb_show_usage();
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2005-09-16 10:11:20 +05:30
|
|
|
ret = bb_getopt_ulflags(argc, argv, "a");
|
|
|
|
if (ret & DO_ALL)
|
2005-09-13 07:00:19 +05:30
|
|
|
return do_em_all();
|
2005-09-13 07:59:39 +05:30
|
|
|
|
2005-09-16 10:11:20 +05:30
|
|
|
ret = 0;
|
|
|
|
while (*++argv)
|
|
|
|
ret += swap_enable_disable(*argv);
|
|
|
|
return ret;
|
1999-10-19 02:52:59 +05:30
|
|
|
}
|