1994-05-26 06:35:07 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1980, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-05-03 18:41:59 +00:00
|
|
|
#if 0
|
1994-05-26 06:35:07 +00:00
|
|
|
#ifndef lint
|
1998-08-03 06:35:01 +00:00
|
|
|
static const char copyright[] =
|
1994-05-26 06:35:07 +00:00
|
|
|
"@(#) Copyright (c) 1980, 1993\n\
|
|
|
|
The Regents of the University of California. All rights reserved.\n";
|
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#ifndef lint
|
|
|
|
static char sccsid[] = "@(#)swapon.c 8.1 (Berkeley) 6/5/93";
|
|
|
|
#endif /* not lint */
|
2003-05-03 18:41:59 +00:00
|
|
|
#endif
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2002-12-28 23:39:47 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/sysctl.h>
|
2004-11-27 06:51:39 +00:00
|
|
|
#include <vm/vm_param.h>
|
2002-12-28 23:39:47 +00:00
|
|
|
|
1998-08-03 06:35:01 +00:00
|
|
|
#include <err.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <errno.h>
|
1998-08-03 06:35:01 +00:00
|
|
|
#include <fstab.h>
|
1994-05-26 06:35:07 +00:00
|
|
|
#include <stdio.h>
|
2001-06-24 23:04:23 +00:00
|
|
|
#include <stdlib.h>
|
1997-06-19 14:40:41 +00:00
|
|
|
#include <string.h>
|
1998-08-03 06:35:01 +00:00
|
|
|
#include <unistd.h>
|
2002-12-28 23:39:47 +00:00
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
static void usage(void);
|
|
|
|
static int swap_on_off(char *name, int ignoreebusy);
|
|
|
|
static void swaplist(int, int, int);
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2002-12-28 23:39:47 +00:00
|
|
|
enum { SWAPON, SWAPOFF, SWAPCTL } orig_prog, which_prog = SWAPCTL;
|
1995-02-23 07:05:01 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-03-20 17:55:10 +00:00
|
|
|
struct fstab *fsp;
|
2002-12-28 23:39:47 +00:00
|
|
|
char *ptr;
|
2002-03-20 17:55:10 +00:00
|
|
|
int stat;
|
1994-05-26 06:35:07 +00:00
|
|
|
int ch, doall;
|
2002-12-28 23:39:47 +00:00
|
|
|
int sflag = 0, lflag = 0, hflag = 0;
|
1994-05-26 06:35:07 +00:00
|
|
|
|
2002-12-28 23:39:47 +00:00
|
|
|
if ((ptr = strrchr(argv[0], '/')) == NULL)
|
|
|
|
ptr = argv[0];
|
|
|
|
if (strstr(ptr, "swapon"))
|
|
|
|
which_prog = SWAPON;
|
|
|
|
else if (strstr(ptr, "swapoff"))
|
|
|
|
which_prog = SWAPOFF;
|
|
|
|
orig_prog = which_prog;
|
|
|
|
|
1994-05-26 06:35:07 +00:00
|
|
|
doall = 0;
|
2002-12-28 23:39:47 +00:00
|
|
|
while ((ch = getopt(argc, argv, "AadlhksU")) != -1) {
|
|
|
|
switch(ch) {
|
|
|
|
case 'A':
|
|
|
|
if (which_prog == SWAPCTL) {
|
|
|
|
doall = 1;
|
|
|
|
which_prog = SWAPON;
|
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
case 'a':
|
2002-12-28 23:39:47 +00:00
|
|
|
if (which_prog == SWAPON || which_prog == SWAPOFF)
|
|
|
|
doall = 1;
|
|
|
|
else
|
|
|
|
which_prog = SWAPON;
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
if (which_prog == SWAPCTL)
|
|
|
|
which_prog = SWAPOFF;
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
sflag = 1;
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
lflag = 1;
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
hflag = 'M';
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
hflag = 'K';
|
|
|
|
break;
|
|
|
|
case 'U':
|
|
|
|
if (which_prog == SWAPCTL) {
|
|
|
|
doall = 1;
|
|
|
|
which_prog = SWAPOFF;
|
|
|
|
} else {
|
|
|
|
usage();
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
default:
|
2002-12-28 23:39:47 +00:00
|
|
|
usage();
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
2002-12-28 23:39:47 +00:00
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
stat = 0;
|
2002-12-28 23:39:47 +00:00
|
|
|
if (which_prog == SWAPON || which_prog == SWAPOFF) {
|
|
|
|
if (doall) {
|
|
|
|
while ((fsp = getfsent()) != NULL) {
|
|
|
|
if (strcmp(fsp->fs_type, FSTAB_SW))
|
|
|
|
continue;
|
|
|
|
if (strstr(fsp->fs_mntops, "noauto"))
|
|
|
|
continue;
|
2003-02-24 08:51:31 +00:00
|
|
|
if (swap_on_off(fsp->fs_spec, 1)) {
|
2002-12-28 23:39:47 +00:00
|
|
|
stat = 1;
|
|
|
|
} else {
|
|
|
|
printf("%s: %sing %s as swap device\n",
|
|
|
|
getprogname(), which_prog == SWAPOFF ? "remov" : "add",
|
|
|
|
fsp->fs_spec);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (!*argv)
|
|
|
|
usage();
|
|
|
|
for (; *argv; ++argv) {
|
|
|
|
if (swap_on_off(*argv, 0)) {
|
1994-05-26 06:35:07 +00:00
|
|
|
stat = 1;
|
2002-12-28 23:39:47 +00:00
|
|
|
} else if (orig_prog == SWAPCTL) {
|
2002-12-15 19:17:57 +00:00
|
|
|
printf("%s: %sing %s as swap device\n",
|
2002-12-28 23:39:47 +00:00
|
|
|
getprogname(), which_prog == SWAPOFF ? "remov" : "add",
|
|
|
|
*argv);
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
}
|
2002-12-28 23:39:47 +00:00
|
|
|
} else {
|
|
|
|
if (lflag || sflag)
|
|
|
|
swaplist(lflag, sflag, hflag);
|
|
|
|
else
|
|
|
|
usage();
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
exit(stat);
|
|
|
|
}
|
|
|
|
|
2002-12-28 23:39:47 +00:00
|
|
|
static int
|
2003-02-24 08:51:31 +00:00
|
|
|
swap_on_off(char *name, int doingall)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-12-28 23:39:47 +00:00
|
|
|
if ((which_prog == SWAPOFF ? swapoff(name) : swapon(name)) == -1) {
|
1994-05-26 06:35:07 +00:00
|
|
|
switch (errno) {
|
|
|
|
case EBUSY:
|
2003-02-24 08:51:31 +00:00
|
|
|
if (!doingall)
|
1997-06-19 14:40:41 +00:00
|
|
|
warnx("%s: device already in use", name);
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
2003-02-24 08:51:31 +00:00
|
|
|
case EINVAL:
|
|
|
|
if (which_prog == SWAPON)
|
|
|
|
warnx("%s: NSWAPDEV limit reached", name);
|
|
|
|
else if (!doingall)
|
|
|
|
warn("%s", name);
|
|
|
|
break;
|
1994-05-26 06:35:07 +00:00
|
|
|
default:
|
1997-06-19 14:40:41 +00:00
|
|
|
warn("%s", name);
|
1994-05-26 06:35:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return(1);
|
|
|
|
}
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
1997-06-19 14:40:41 +00:00
|
|
|
static void
|
2002-12-28 23:39:47 +00:00
|
|
|
usage(void)
|
1994-05-26 06:35:07 +00:00
|
|
|
{
|
2002-12-28 23:39:47 +00:00
|
|
|
fprintf(stderr, "usage: %s ", getprogname());
|
|
|
|
switch(orig_prog) {
|
|
|
|
case SWAPON:
|
2005-02-10 09:19:34 +00:00
|
|
|
case SWAPOFF:
|
|
|
|
fprintf(stderr, "-a | file ...\n");
|
2002-12-28 23:39:47 +00:00
|
|
|
break;
|
|
|
|
case SWAPCTL:
|
2005-02-10 09:19:34 +00:00
|
|
|
fprintf(stderr, "[-AhklsU] [-a file ... | -d file ...]\n");
|
2002-12-28 23:39:47 +00:00
|
|
|
break;
|
|
|
|
}
|
1994-05-26 06:35:07 +00:00
|
|
|
exit(1);
|
|
|
|
}
|
2002-12-15 19:17:57 +00:00
|
|
|
|
2002-12-28 23:39:47 +00:00
|
|
|
static void
|
|
|
|
swaplist(int lflag, int sflag, int hflag)
|
2002-12-15 19:17:57 +00:00
|
|
|
{
|
2002-12-28 23:39:47 +00:00
|
|
|
size_t mibsize, size;
|
|
|
|
struct xswdev xsw;
|
2002-12-30 05:35:06 +00:00
|
|
|
int hlen, mib[16], n, pagesize;
|
2002-12-28 23:39:47 +00:00
|
|
|
long blocksize;
|
|
|
|
long long total = 0;
|
|
|
|
long long used = 0;
|
|
|
|
long long tmp_total;
|
|
|
|
long long tmp_used;
|
|
|
|
|
|
|
|
pagesize = getpagesize();
|
|
|
|
switch(hflag) {
|
|
|
|
case 'K':
|
|
|
|
blocksize = 1024;
|
|
|
|
hlen = 10;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
blocksize = 1024 * 1024;
|
|
|
|
hlen = 10;
|
|
|
|
break;
|
|
|
|
default:
|
2002-12-30 18:24:14 +00:00
|
|
|
getbsize(&hlen, &blocksize);
|
2002-12-28 23:39:47 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
mibsize = sizeof mib / sizeof mib[0];
|
|
|
|
if (sysctlnametomib("vm.swap_info", mib, &mibsize) == -1)
|
|
|
|
err(1, "sysctlnametomib()");
|
|
|
|
|
|
|
|
if (lflag) {
|
|
|
|
char buf[32];
|
|
|
|
snprintf(buf, sizeof(buf), "%ld-blocks", blocksize);
|
|
|
|
printf("%-13s %*s %*s\n",
|
|
|
|
"Device:",
|
|
|
|
hlen, buf,
|
|
|
|
hlen, "Used:");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = 0; ; ++n) {
|
|
|
|
mib[mibsize] = n;
|
|
|
|
size = sizeof xsw;
|
2004-03-05 08:10:19 +00:00
|
|
|
if (sysctl(mib, mibsize + 1, &xsw, &size, NULL, 0) == -1)
|
2002-12-28 23:39:47 +00:00
|
|
|
break;
|
|
|
|
if (xsw.xsw_version != XSWDEV_VERSION)
|
|
|
|
errx(1, "xswdev version mismatch");
|
|
|
|
|
|
|
|
tmp_total = (long long)xsw.xsw_nblks * pagesize / blocksize;
|
|
|
|
tmp_used = (long long)xsw.xsw_used * pagesize / blocksize;
|
|
|
|
total += tmp_total;
|
|
|
|
used += tmp_used;
|
|
|
|
if (lflag) {
|
|
|
|
printf("/dev/%-8s %*lld %*lld\n",
|
|
|
|
devname(xsw.xsw_dev, S_IFCHR),
|
|
|
|
hlen, tmp_total,
|
|
|
|
hlen, tmp_used);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (errno != ENOENT)
|
|
|
|
err(1, "sysctl()");
|
|
|
|
|
|
|
|
if (sflag) {
|
|
|
|
printf("Total: %*lld %*lld\n",
|
|
|
|
hlen, total,
|
|
|
|
hlen, used);
|
|
|
|
}
|
2002-12-15 19:17:57 +00:00
|
|
|
}
|
2002-12-28 23:39:47 +00:00
|
|
|
|