Home | History | Annotate | Line # | Download | only in swapctl
swapctl.c revision 1.13
      1  1.13    soren /*	$NetBSD: swapctl.c,v 1.13 2000/03/13 22:59:22 soren Exp $	*/
      2   1.1      mrg 
      3   1.1      mrg /*
      4  1.11      mrg  * Copyright (c) 1996, 1997, 1999 Matthew R. Green
      5   1.1      mrg  * All rights reserved.
      6   1.1      mrg  *
      7   1.1      mrg  * Redistribution and use in source and binary forms, with or without
      8   1.1      mrg  * modification, are permitted provided that the following conditions
      9   1.1      mrg  * are met:
     10   1.1      mrg  * 1. Redistributions of source code must retain the above copyright
     11   1.1      mrg  *    notice, this list of conditions and the following disclaimer.
     12   1.1      mrg  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1      mrg  *    notice, this list of conditions and the following disclaimer in the
     14   1.1      mrg  *    documentation and/or other materials provided with the distribution.
     15   1.7      mrg  * 3. The name of the author may not be used to endorse or promote products
     16   1.1      mrg  *    derived from this software without specific prior written permission.
     17   1.1      mrg  *
     18   1.1      mrg  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     19   1.1      mrg  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     20   1.1      mrg  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     21   1.1      mrg  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     22   1.1      mrg  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
     23   1.1      mrg  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
     24   1.1      mrg  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
     25   1.1      mrg  * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
     26   1.1      mrg  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     27   1.1      mrg  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     28   1.1      mrg  * SUCH DAMAGE.
     29   1.1      mrg  */
     30   1.1      mrg 
     31   1.1      mrg /*
     32   1.1      mrg  * swapctl command:
     33  1.10      mrg  *	-A		add all devices listed as `sw' in /etc/fstab (also
     34  1.13    soren  *			(sets the dump device, if listed in fstab)
     35  1.10      mrg  *	-D <dev>	set dumpdev to <dev>
     36  1.12    lukem  *	-U		remove all devices listed as `sw' in /etc/fstab.
     37  1.12    lukem  *	-t [blk|noblk]	if -A or -U , add (remove) either all block device
     38  1.12    lukem  *			or all non-block devices
     39   1.1      mrg  *	-a <dev>	add this device
     40   1.1      mrg  *	-d <dev>	remove this swap device (not supported yet)
     41   1.1      mrg  *	-l		list swap devices
     42   1.1      mrg  *	-s		short listing of swap devices
     43   1.1      mrg  *	-k		use kilobytes
     44   1.1      mrg  *	-p <pri>	use this priority
     45   1.1      mrg  *	-c		change priority
     46   1.2  thorpej  *
     47   1.2  thorpej  * or, if invoked as "swapon" (compatibility mode):
     48   1.2  thorpej  *
     49   1.2  thorpej  *	-a		all devices listed as `sw' in /etc/fstab
     50   1.4  thorpej  *	-t		same as -t above (feature not present in old
     51   1.4  thorpej  *			swapon(8) command)
     52   1.2  thorpej  *	<dev>		add this device
     53   1.1      mrg  */
     54   1.1      mrg 
     55   1.1      mrg #include <sys/param.h>
     56   1.4  thorpej #include <sys/stat.h>
     57   1.1      mrg 
     58   1.1      mrg #include <vm/vm_swap.h>
     59   1.1      mrg 
     60   1.1      mrg #include <unistd.h>
     61   1.3    mikel #include <err.h>
     62   1.1      mrg #include <errno.h>
     63   1.1      mrg #include <stdio.h>
     64   1.1      mrg #include <stdlib.h>
     65   1.1      mrg #include <string.h>
     66   1.1      mrg #include <fstab.h>
     67   1.1      mrg 
     68   1.1      mrg #include "swapctl.h"
     69   1.1      mrg 
     70   1.2  thorpej int	command;
     71   1.2  thorpej 
     72   1.2  thorpej /*
     73   1.2  thorpej  * Commands for swapctl(8).  These are mutually exclusive.
     74   1.2  thorpej  */
     75  1.12    lukem #define	CMD_A		0x01	/* process /etc/fstab for adding */
     76  1.10      mrg #define	CMD_D		0x02	/* set dumpdev */
     77  1.12    lukem #define	CMD_U		0x04	/* process /etc/fstab for removing */
     78  1.12    lukem #define	CMD_a		0x08	/* add a swap file/device */
     79  1.12    lukem #define	CMD_c		0x10	/* change priority of a swap file/device */
     80  1.12    lukem #define	CMD_d		0x20	/* delete a swap file/device */
     81  1.12    lukem #define	CMD_l		0x40	/* list swap files/devices */
     82  1.12    lukem #define	CMD_s		0x80	/* summary of swap files/devices */
     83   1.2  thorpej 
     84   1.2  thorpej #define	SET_COMMAND(cmd) \
     85   1.2  thorpej do { \
     86   1.2  thorpej 	if (command) \
     87   1.2  thorpej 		usage(); \
     88   1.2  thorpej 	command = (cmd); \
     89   1.2  thorpej } while (0)
     90   1.2  thorpej 
     91   1.2  thorpej /*
     92   1.2  thorpej  * Commands that require a "path" argument at the end of the command
     93   1.2  thorpej  * line, and the ones which require that none exist.
     94   1.2  thorpej  */
     95  1.10      mrg #define	REQUIRE_PATH	(CMD_D | CMD_a | CMD_c | CMD_d)
     96  1.12    lukem #define	REQUIRE_NOPATH	(CMD_A | CMD_U | CMD_l | CMD_s)
     97   1.2  thorpej 
     98   1.2  thorpej /*
     99   1.2  thorpej  * Option flags, and the commands with which they are valid.
    100   1.2  thorpej  */
    101   1.2  thorpej int	kflag;		/* display in 1K blocks */
    102   1.2  thorpej #define	KFLAG_CMDS	(CMD_l | CMD_s)
    103   1.2  thorpej 
    104   1.2  thorpej int	pflag;		/* priority was specified */
    105   1.2  thorpej #define	PFLAG_CMDS	(CMD_A | CMD_a | CMD_c)
    106   1.2  thorpej 
    107   1.4  thorpej char	*tflag;		/* swap device type (blk or noblk) */
    108  1.12    lukem #define	TFLAG_CMDS	(CMD_A | CMD_U )
    109   1.4  thorpej 
    110   1.1      mrg int	pri;		/* uses 0 as default pri */
    111   1.1      mrg 
    112  1.10      mrg static	void change_priority __P((const char *));
    113  1.12    lukem static	int  add_swap __P((const char *, int));
    114  1.12    lukem static	int  delete_swap __P((const char *));
    115  1.10      mrg static	void set_dumpdev __P((const char *));
    116   1.6    lukem 	int  main __P((int, char *[]));
    117  1.12    lukem static	void do_fstab __P((int));
    118   1.1      mrg static	void usage __P((void));
    119   1.2  thorpej static	void swapon_command __P((int, char **));
    120   1.2  thorpej #if 0
    121   1.2  thorpej static	void swapoff_command __P((int, char **));
    122   1.2  thorpej #endif
    123   1.2  thorpej 
    124   1.2  thorpej extern	char *__progname;	/* from crt0.o */
    125   1.1      mrg 
    126   1.1      mrg int
    127   1.1      mrg main(argc, argv)
    128   1.1      mrg 	int	argc;
    129   1.1      mrg 	char	*argv[];
    130   1.1      mrg {
    131   1.1      mrg 	int	c;
    132   1.2  thorpej 
    133   1.2  thorpej 	if (strcmp(__progname, "swapon") == 0) {
    134   1.2  thorpej 		swapon_command(argc, argv);
    135   1.2  thorpej 		/* NOTREACHED */
    136   1.2  thorpej 	}
    137   1.2  thorpej 
    138   1.2  thorpej #if 0
    139   1.2  thorpej 	if (strcmp(__progname, "swapoff") == 0) {
    140   1.2  thorpej 		swapoff_command(argc, argv);
    141   1.2  thorpej 		/* NOTREACHED */
    142   1.2  thorpej 	}
    143   1.2  thorpej #endif
    144   1.2  thorpej 
    145  1.12    lukem 	while ((c = getopt(argc, argv, "ADUacdlkp:st:")) != -1) {
    146   1.2  thorpej 		switch (c) {
    147   1.1      mrg 		case 'A':
    148   1.2  thorpej 			SET_COMMAND(CMD_A);
    149   1.1      mrg 			break;
    150   1.2  thorpej 
    151  1.10      mrg 		case 'D':
    152  1.10      mrg 			SET_COMMAND(CMD_D);
    153  1.10      mrg 			break;
    154  1.10      mrg 
    155  1.12    lukem 		case 'U':
    156  1.12    lukem 			SET_COMMAND(CMD_U);
    157  1.12    lukem 			break;
    158  1.12    lukem 
    159   1.1      mrg 		case 'a':
    160   1.2  thorpej 			SET_COMMAND(CMD_a);
    161   1.1      mrg 			break;
    162   1.2  thorpej 
    163   1.1      mrg 		case 'c':
    164   1.2  thorpej 			SET_COMMAND(CMD_c);
    165   1.1      mrg 			break;
    166   1.2  thorpej 
    167   1.1      mrg 		case 'd':
    168   1.2  thorpej 			SET_COMMAND(CMD_d);
    169   1.1      mrg 			break;
    170   1.2  thorpej 
    171   1.1      mrg 		case 'l':
    172   1.2  thorpej 			SET_COMMAND(CMD_l);
    173   1.1      mrg 			break;
    174   1.2  thorpej 
    175   1.1      mrg 		case 'k':
    176   1.1      mrg 			kflag = 1;
    177   1.1      mrg 			break;
    178   1.2  thorpej 
    179   1.1      mrg 		case 'p':
    180   1.1      mrg 			pflag = 1;
    181   1.2  thorpej 			/* XXX strtol() */
    182   1.1      mrg 			pri = atoi(optarg);
    183   1.1      mrg 			break;
    184   1.2  thorpej 
    185   1.1      mrg 		case 's':
    186   1.2  thorpej 			SET_COMMAND(CMD_s);
    187   1.1      mrg 			break;
    188   1.2  thorpej 
    189   1.4  thorpej 		case 't':
    190   1.4  thorpej 			if (tflag != NULL)
    191   1.4  thorpej 				usage();
    192   1.4  thorpej 			tflag = optarg;
    193   1.4  thorpej 			break;
    194   1.4  thorpej 
    195   1.2  thorpej 		default:
    196   1.2  thorpej 			usage();
    197   1.2  thorpej 			/* NOTREACHED */
    198   1.1      mrg 		}
    199   1.1      mrg 	}
    200   1.2  thorpej 
    201   1.2  thorpej 	/* Did the user specify a command? */
    202   1.2  thorpej 	if (command == 0)
    203   1.1      mrg 		usage();
    204   1.1      mrg 
    205   1.1      mrg 	argv += optind;
    206   1.2  thorpej 	argc -= optind;
    207   1.2  thorpej 
    208   1.2  thorpej 	switch (argc) {
    209   1.2  thorpej 	case 0:
    210   1.2  thorpej 		if (command & REQUIRE_PATH)
    211   1.2  thorpej 			usage();
    212   1.2  thorpej 		break;
    213   1.2  thorpej 
    214   1.2  thorpej 	case 1:
    215   1.2  thorpej 		if (command & REQUIRE_NOPATH)
    216   1.2  thorpej 			usage();
    217   1.2  thorpej 		break;
    218   1.2  thorpej 
    219   1.2  thorpej 	default:
    220   1.1      mrg 		usage();
    221   1.2  thorpej 	}
    222   1.2  thorpej 
    223   1.2  thorpej 	/* To change priority, you have to specify one. */
    224   1.2  thorpej 	if ((command == CMD_c) && pflag == 0)
    225   1.1      mrg 		usage();
    226   1.1      mrg 
    227   1.4  thorpej 	/* Sanity-check -t */
    228   1.4  thorpej 	if (tflag != NULL) {
    229  1.12    lukem 		if (command != CMD_A && command != CMD_U)
    230   1.4  thorpej 			usage();
    231   1.4  thorpej 		if (strcmp(tflag, "blk") != 0 &&
    232   1.4  thorpej 		    strcmp(tflag, "noblk") != 0)
    233   1.4  thorpej 			usage();
    234   1.4  thorpej 	}
    235   1.4  thorpej 
    236   1.2  thorpej 	/* Dispatch the command. */
    237   1.2  thorpej 	switch (command) {
    238   1.2  thorpej 	case CMD_l:
    239   1.1      mrg 		list_swap(pri, kflag, pflag, 0, 1);
    240   1.2  thorpej 		break;
    241   1.2  thorpej 
    242   1.2  thorpej 	case CMD_s:
    243   1.1      mrg 		list_swap(pri, kflag, pflag, 0, 0);
    244   1.2  thorpej 		break;
    245   1.2  thorpej 
    246   1.2  thorpej 	case CMD_c:
    247   1.1      mrg 		change_priority(argv[0]);
    248   1.2  thorpej 		break;
    249   1.2  thorpej 
    250   1.2  thorpej 	case CMD_a:
    251  1.12    lukem 		if (! add_swap(argv[0], pri))
    252  1.12    lukem 			exit(1);
    253   1.2  thorpej 		break;
    254   1.2  thorpej 
    255   1.2  thorpej 	case CMD_d:
    256  1.12    lukem 		if (! delete_swap(argv[0]))
    257  1.12    lukem 			exit(1);
    258   1.2  thorpej 		break;
    259   1.2  thorpej 
    260   1.2  thorpej 	case CMD_A:
    261  1.12    lukem 		do_fstab(1);
    262   1.2  thorpej 		break;
    263  1.10      mrg 
    264  1.10      mrg 	case CMD_D:
    265  1.10      mrg 		set_dumpdev(argv[0]);
    266  1.10      mrg 		break;
    267  1.12    lukem 
    268  1.12    lukem 	case CMD_U:
    269  1.12    lukem 		do_fstab(0);
    270  1.12    lukem 		break;
    271   1.2  thorpej 	}
    272   1.2  thorpej 
    273   1.2  thorpej 	exit(0);
    274   1.2  thorpej }
    275   1.2  thorpej 
    276   1.2  thorpej /*
    277   1.2  thorpej  * swapon_command: emulate the old swapon(8) program.
    278   1.2  thorpej  */
    279  1.12    lukem static void
    280   1.2  thorpej swapon_command(argc, argv)
    281   1.2  thorpej 	int argc;
    282   1.2  thorpej 	char **argv;
    283   1.2  thorpej {
    284   1.2  thorpej 	int ch, fiztab = 0;
    285   1.2  thorpej 
    286   1.4  thorpej 	while ((ch = getopt(argc, argv, "at:")) != -1) {
    287   1.2  thorpej 		switch (ch) {
    288   1.2  thorpej 		case 'a':
    289   1.2  thorpej 			fiztab = 1;
    290   1.2  thorpej 			break;
    291   1.4  thorpej 		case 't':
    292   1.4  thorpej 			if (tflag != NULL)
    293   1.4  thorpej 				usage();
    294   1.4  thorpej 			tflag = optarg;
    295   1.4  thorpej 			break;
    296   1.2  thorpej 		default:
    297   1.2  thorpej 			goto swapon_usage;
    298   1.2  thorpej 		}
    299   1.2  thorpej 	}
    300   1.2  thorpej 	argc -= optind;
    301   1.2  thorpej 	argv += optind;
    302   1.2  thorpej 
    303   1.2  thorpej 	if (fiztab) {
    304   1.2  thorpej 		if (argc)
    305   1.2  thorpej 			goto swapon_usage;
    306   1.4  thorpej 		/* Sanity-check -t */
    307   1.4  thorpej 		if (tflag != NULL) {
    308   1.4  thorpej 			if (strcmp(tflag, "blk") != 0 &&
    309   1.4  thorpej 			    strcmp(tflag, "noblk") != 0)
    310   1.4  thorpej 				usage();
    311   1.4  thorpej 		}
    312  1.12    lukem 		do_fstab(1);
    313   1.2  thorpej 		exit(0);
    314   1.4  thorpej 	} else if (argc == 0 || tflag != NULL)
    315   1.2  thorpej 		goto swapon_usage;
    316   1.2  thorpej 
    317   1.2  thorpej 	while (argc) {
    318  1.12    lukem 		if (! add_swap(argv[0], pri))
    319  1.12    lukem 			exit(1);
    320   1.2  thorpej 		argc--;
    321   1.2  thorpej 		argv++;
    322   1.2  thorpej 	}
    323   1.1      mrg 	exit(0);
    324   1.2  thorpej 	/* NOTREACHED */
    325   1.2  thorpej 
    326   1.2  thorpej  swapon_usage:
    327   1.4  thorpej 	fprintf(stderr, "usage: %s -a [-t blk|noblk]\n", __progname);
    328   1.2  thorpej 	fprintf(stderr, "       %s <path> ...\n", __progname);
    329   1.2  thorpej 	exit(1);
    330   1.1      mrg }
    331   1.1      mrg 
    332   1.1      mrg /*
    333   1.1      mrg  * change_priority:  change the priority of a swap device.
    334   1.1      mrg  */
    335  1.12    lukem static void
    336   1.1      mrg change_priority(path)
    337  1.10      mrg 	const char	*path;
    338   1.1      mrg {
    339   1.1      mrg 
    340   1.1      mrg 	if (swapctl(SWAP_CTL, path, pri) < 0)
    341   1.1      mrg 		warn("%s", path);
    342   1.1      mrg }
    343   1.1      mrg 
    344   1.1      mrg /*
    345   1.1      mrg  * add_swap:  add the pathname to the list of swap devices.
    346   1.1      mrg  */
    347  1.12    lukem static int
    348  1.12    lukem add_swap(path, priority)
    349  1.10      mrg 	const char *path;
    350  1.12    lukem 	int priority;
    351   1.1      mrg {
    352  1.10      mrg 	struct stat sb;
    353  1.10      mrg 
    354  1.10      mrg 	if (stat(path, &sb) < 0)
    355  1.10      mrg 		goto oops;
    356  1.10      mrg 
    357  1.10      mrg 	if (sb.st_mode & S_IROTH)
    358  1.10      mrg 		warnx("%s is readable by the world", path);
    359  1.10      mrg 	if (sb.st_mode & S_IWOTH)
    360  1.10      mrg 		warnx("%s is writable by the world", path);
    361   1.1      mrg 
    362  1.12    lukem 	if (swapctl(SWAP_ON, path, priority) < 0) {
    363  1.10      mrg oops:
    364  1.12    lukem 		warn("%s", path);
    365  1.12    lukem 		return (0);
    366  1.12    lukem 	}
    367  1.12    lukem 	return (1);
    368   1.1      mrg }
    369   1.1      mrg 
    370   1.1      mrg /*
    371  1.11      mrg  * delete_swap:  remove the pathname to the list of swap devices.
    372   1.1      mrg  */
    373  1.12    lukem static int
    374  1.11      mrg delete_swap(path)
    375  1.10      mrg 	const char *path;
    376   1.1      mrg {
    377   1.1      mrg 
    378  1.12    lukem 	if (swapctl(SWAP_OFF, path, pri) < 0) {
    379  1.12    lukem 		warn("%s", path);
    380  1.12    lukem 		return (0);
    381  1.12    lukem 	}
    382  1.12    lukem 	return (1);
    383   1.1      mrg }
    384   1.1      mrg 
    385  1.12    lukem static void
    386  1.10      mrg set_dumpdev(path)
    387  1.10      mrg 	const char *path;
    388  1.10      mrg {
    389  1.10      mrg 
    390  1.10      mrg 	if (swapctl(SWAP_DUMPDEV, path, NULL) == -1)
    391  1.10      mrg 		warn("could not set dump device to %s", path);
    392  1.10      mrg 	else
    393  1.10      mrg 		printf("%s: setting dump device to %s\n", __progname, path);
    394  1.10      mrg }
    395  1.10      mrg 
    396  1.12    lukem static void
    397  1.12    lukem do_fstab(add)
    398  1.12    lukem 	int add;
    399   1.1      mrg {
    400   1.1      mrg 	struct	fstab *fp;
    401   1.1      mrg 	char	*s;
    402   1.1      mrg 	long	priority;
    403   1.4  thorpej 	struct	stat st;
    404   1.4  thorpej 	int	isblk;
    405   1.8      mrg 	int	gotone = 0;
    406  1.12    lukem #define PATH_MOUNT	"/sbin/mount_nfs"
    407  1.12    lukem #define PATH_UMOUNT	"/sbin/umount"
    408  1.12    lukem 	char	cmd[2*PATH_MAX+sizeof(PATH_MOUNT)+2];
    409   1.1      mrg 
    410   1.1      mrg #define PRIORITYEQ	"priority="
    411   1.1      mrg #define NFSMNTPT	"nfsmntpt="
    412   1.5    mikel 	while ((fp = getfsent()) != NULL) {
    413   1.9  mycroft 		const char *spec;
    414   1.1      mrg 
    415  1.10      mrg 		spec = fp->fs_spec;
    416  1.12    lukem 		cmd[0] = '\0';
    417  1.10      mrg 
    418  1.12    lukem 		if (strcmp(fp->fs_type, "dp") == 0 && add) {
    419  1.10      mrg 			set_dumpdev(spec);
    420  1.10      mrg 			continue;
    421  1.10      mrg 		}
    422  1.10      mrg 
    423   1.1      mrg 		if (strcmp(fp->fs_type, "sw") != 0)
    424   1.1      mrg 			continue;
    425   1.4  thorpej 		isblk = 0;
    426   1.1      mrg 
    427   1.5    mikel 		if ((s = strstr(fp->fs_mntops, PRIORITYEQ)) != NULL) {
    428   1.1      mrg 			s += sizeof(PRIORITYEQ) - 1;
    429   1.1      mrg 			priority = atol(s);
    430   1.1      mrg 		} else
    431   1.1      mrg 			priority = pri;
    432   1.1      mrg 
    433   1.5    mikel 		if ((s = strstr(fp->fs_mntops, NFSMNTPT)) != NULL) {
    434  1.12    lukem 			char *t;
    435   1.1      mrg 
    436   1.4  thorpej 			/*
    437   1.4  thorpej 			 * Skip this song and dance if we're only
    438   1.4  thorpej 			 * doing block devices.
    439   1.4  thorpej 			 */
    440  1.12    lukem 			if (tflag != NULL && strcmp(tflag, "blk") == 0)
    441   1.4  thorpej 				continue;
    442   1.4  thorpej 
    443   1.1      mrg 			t = strpbrk(s, ",");
    444   1.1      mrg 			if (t != 0)
    445   1.1      mrg 				*t = '\0';
    446   1.1      mrg 			spec = strdup(s + strlen(NFSMNTPT));
    447   1.1      mrg 			if (t != 0)
    448   1.1      mrg 				*t = ',';
    449   1.1      mrg 
    450   1.1      mrg 			if (spec == NULL)
    451   1.1      mrg 				errx(1, "Out of memory");
    452   1.1      mrg 
    453   1.1      mrg 			if (strlen(spec) == 0) {
    454   1.1      mrg 				warnx("empty mountpoint");
    455   1.9  mycroft 				free((char *)spec);
    456   1.1      mrg 				continue;
    457   1.1      mrg 			}
    458  1.12    lukem 			if (add) {
    459  1.12    lukem 				snprintf(cmd, sizeof(cmd), "%s %s %s",
    460  1.12    lukem 					PATH_MOUNT, fp->fs_spec, spec);
    461  1.12    lukem 				if (system(cmd) != 0) {
    462  1.12    lukem 					warnx("%s: mount failed", fp->fs_spec);
    463  1.12    lukem 					continue;
    464  1.12    lukem 				}
    465  1.12    lukem 			} else {
    466  1.12    lukem 				snprintf(cmd, sizeof(cmd), "%s %s",
    467  1.12    lukem 					PATH_UMOUNT, fp->fs_spec);
    468   1.1      mrg 			}
    469   1.4  thorpej 		} else {
    470   1.4  thorpej 			/*
    471   1.4  thorpej 			 * Determine blk-ness.
    472   1.4  thorpej 			 */
    473   1.4  thorpej 			if (stat(spec, &st) < 0) {
    474   1.4  thorpej 				warn(spec);
    475   1.4  thorpej 				continue;
    476   1.4  thorpej 			}
    477   1.4  thorpej 			if (S_ISBLK(st.st_mode))
    478   1.4  thorpej 				isblk = 1;
    479   1.4  thorpej 		}
    480   1.4  thorpej 
    481   1.4  thorpej 		/*
    482   1.4  thorpej 		 * Skip this type if we're told to.
    483   1.4  thorpej 		 */
    484   1.4  thorpej 		if (tflag != NULL) {
    485   1.4  thorpej 			if (strcmp(tflag, "blk") == 0 && isblk == 0)
    486   1.4  thorpej 				continue;
    487   1.4  thorpej 			if (strcmp(tflag, "noblk") == 0 && isblk == 1)
    488   1.4  thorpej 				continue;
    489   1.1      mrg 		}
    490   1.1      mrg 
    491  1.12    lukem 		if (add) {
    492  1.12    lukem 			if (add_swap(spec, (int)priority)) {
    493  1.12    lukem 				gotone = 1;
    494  1.12    lukem 				printf(
    495  1.12    lukem 			    	"%s: adding %s as swap device at priority %d\n",
    496  1.12    lukem 				    __progname, fp->fs_spec, (int)priority);
    497  1.12    lukem 			}
    498  1.12    lukem 		} else {
    499  1.12    lukem 			if (delete_swap(spec)) {
    500  1.12    lukem 				gotone = 1;
    501  1.12    lukem 				printf(
    502  1.12    lukem 				    "%s: removing %s as swap device\n",
    503  1.12    lukem 				    __progname, fp->fs_spec);
    504  1.12    lukem 			}
    505  1.12    lukem 			if (cmd[0]) {
    506  1.12    lukem 				if (system(cmd) != 0) {
    507  1.12    lukem 					warnx("%s: umount failed", fp->fs_spec);
    508  1.12    lukem 					continue;
    509  1.12    lukem 				}
    510  1.12    lukem 			}
    511   1.8      mrg 		}
    512   1.1      mrg 
    513   1.1      mrg 		if (spec != fp->fs_spec)
    514   1.9  mycroft 			free((char *)spec);
    515   1.1      mrg 	}
    516   1.8      mrg 	if (gotone == 0)
    517   1.8      mrg 		exit(1);
    518   1.1      mrg }
    519   1.1      mrg 
    520  1.12    lukem static void
    521   1.1      mrg usage()
    522   1.1      mrg {
    523   1.1      mrg 
    524   1.4  thorpej 	fprintf(stderr, "usage: %s -A [-p priority] [-t blk|noblk]\n",
    525   1.4  thorpej 	    __progname);
    526  1.11      mrg 	fprintf(stderr, "       %s -D dumppath\n", __progname);
    527  1.12    lukem 	fprintf(stderr, "       %s -U [-t blk|noblk]\n", __progname);
    528   1.2  thorpej 	fprintf(stderr, "       %s -a [-p priority] path\n", __progname);
    529   1.2  thorpej 	fprintf(stderr, "       %s -c -p priority path\n", __progname);
    530   1.2  thorpej 	fprintf(stderr, "       %s -d path\n", __progname);
    531   1.2  thorpej 	fprintf(stderr, "       %s -l | -s [-k]\n", __progname);
    532   1.1      mrg 	exit(1);
    533   1.1      mrg }
    534