Home | History | Annotate | Line # | Download | only in vnconfig
vnconfig.c revision 1.40
      1  1.40     joerg /*	$NetBSD: vnconfig.c,v 1.40 2011/08/30 20:54:18 joerg Exp $	*/
      2   1.9   thorpej 
      3   1.9   thorpej /*-
      4   1.9   thorpej  * Copyright (c) 1997 The NetBSD Foundation, Inc.
      5   1.9   thorpej  * All rights reserved.
      6   1.9   thorpej  *
      7   1.9   thorpej  * This code is derived from software contributed to The NetBSD Foundation
      8   1.9   thorpej  * by Jason R. Thorpe.
      9   1.9   thorpej  *
     10   1.9   thorpej  * Redistribution and use in source and binary forms, with or without
     11   1.9   thorpej  * modification, are permitted provided that the following conditions
     12   1.9   thorpej  * are met:
     13   1.9   thorpej  * 1. Redistributions of source code must retain the above copyright
     14   1.9   thorpej  *    notice, this list of conditions and the following disclaimer.
     15   1.9   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     16   1.9   thorpej  *    notice, this list of conditions and the following disclaimer in the
     17   1.9   thorpej  *    documentation and/or other materials provided with the distribution.
     18   1.9   thorpej  *
     19   1.9   thorpej  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20   1.9   thorpej  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21   1.9   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.11       jtc  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.11       jtc  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24   1.9   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25   1.9   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26   1.9   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27   1.9   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28   1.9   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29   1.9   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     30   1.9   thorpej  */
     31   1.8   thorpej 
     32   1.1    brezak /*
     33  1.39     rmind  * Copyright (c) 1993 University of Utah.
     34   1.1    brezak  * Copyright (c) 1990, 1993
     35   1.1    brezak  *	The Regents of the University of California.  All rights reserved.
     36  1.29       agc  *
     37  1.29       agc  * This code is derived from software contributed to Berkeley by
     38  1.29       agc  * the Systems Programming Group of the University of Utah Computer
     39  1.29       agc  * Science Department.
     40  1.29       agc  *
     41  1.29       agc  * Redistribution and use in source and binary forms, with or without
     42  1.29       agc  * modification, are permitted provided that the following conditions
     43  1.29       agc  * are met:
     44  1.29       agc  * 1. Redistributions of source code must retain the above copyright
     45  1.29       agc  *    notice, this list of conditions and the following disclaimer.
     46  1.29       agc  * 2. Redistributions in binary form must reproduce the above copyright
     47  1.29       agc  *    notice, this list of conditions and the following disclaimer in the
     48  1.29       agc  *    documentation and/or other materials provided with the distribution.
     49  1.29       agc  * 3. Neither the name of the University nor the names of its contributors
     50  1.29       agc  *    may be used to endorse or promote products derived from this software
     51  1.29       agc  *    without specific prior written permission.
     52  1.29       agc  *
     53  1.29       agc  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     54  1.29       agc  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     55  1.29       agc  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     56  1.29       agc  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     57  1.29       agc  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     58  1.29       agc  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     59  1.29       agc  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     60  1.29       agc  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     61  1.29       agc  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     62  1.29       agc  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     63  1.29       agc  * SUCH DAMAGE.
     64  1.29       agc  *
     65  1.29       agc  * from: Utah $Hdr: vnconfig.c 1.1 93/12/15$
     66  1.29       agc  *
     67  1.29       agc  *	@(#)vnconfig.c	8.1 (Berkeley) 12/15/93
     68  1.29       agc  */
     69  1.29       agc 
     70   1.1    brezak #include <sys/param.h>
     71   1.1    brezak #include <sys/ioctl.h>
     72   1.1    brezak #include <sys/mount.h>
     73   1.9   thorpej #include <sys/buf.h>
     74   1.9   thorpej #include <sys/disklabel.h>
     75   1.9   thorpej #include <sys/disk.h>
     76   1.4     glass 
     77   1.9   thorpej #include <dev/vndvar.h>
     78   1.1    brezak 
     79  1.16      tron #include <disktab.h>
     80   1.4     glass #include <err.h>
     81   1.4     glass #include <errno.h>
     82   1.9   thorpej #include <fcntl.h>
     83  1.38       dsl #include <stddef.h>
     84   1.4     glass #include <stdio.h>
     85   1.4     glass #include <stdlib.h>
     86   1.4     glass #include <string.h>
     87  1.10     mikel #include <unistd.h>
     88  1.12     enami #include <util.h>
     89   1.1    brezak 
     90   1.7       cgd #define VND_CONFIG	1
     91   1.7       cgd #define VND_UNCONFIG	2
     92  1.25    atatat #define VND_GET		3
     93   1.1    brezak 
     94  1.40     joerg static int	verbose = 0;
     95  1.40     joerg static int	readonly = 0;
     96  1.40     joerg static int	force = 0;
     97  1.40     joerg static int	compressed = 0;
     98  1.40     joerg static char	*tabname;
     99  1.40     joerg 
    100  1.40     joerg static int	config(char *, char *, char *, int);
    101  1.40     joerg static int	getgeom(struct vndgeom *, char *);
    102  1.40     joerg __dead static void	usage(void);
    103   1.1    brezak 
    104   1.9   thorpej int
    105  1.40     joerg main(int argc, char *argv[])
    106   1.1    brezak {
    107   1.7       cgd 	int ch, rv, action = VND_CONFIG;
    108   1.4     glass 
    109  1.33   hubertf 	while ((ch = getopt(argc, argv, "Fcf:lrt:uvz")) != -1) {
    110   1.5   mycroft 		switch (ch) {
    111  1.27  drochner 		case 'F':
    112  1.27  drochner 			force = 1;
    113  1.27  drochner 			break;
    114   1.1    brezak 		case 'c':
    115   1.7       cgd 			action = VND_CONFIG;
    116   1.1    brezak 			break;
    117  1.24  fredette 		case 'f':
    118  1.24  fredette 			if (setdisktab(optarg) == -1)
    119  1.24  fredette 				usage();
    120  1.24  fredette 			break;
    121  1.25    atatat 		case 'l':
    122  1.25    atatat 			action = VND_GET;
    123  1.25    atatat 			break;
    124  1.26      yamt 		case 'r':
    125  1.26      yamt 			readonly = 1;
    126  1.26      yamt 			break;
    127   1.9   thorpej 		case 't':
    128   1.9   thorpej 			tabname = optarg;
    129   1.9   thorpej 			break;
    130   1.1    brezak 		case 'u':
    131   1.7       cgd 			action = VND_UNCONFIG;
    132   1.1    brezak 			break;
    133   1.1    brezak 		case 'v':
    134   1.5   mycroft 			verbose = 1;
    135   1.1    brezak 			break;
    136  1.33   hubertf 		case 'z':
    137  1.33   hubertf 			compressed = 1;
    138  1.33   hubertf 			readonly = 1;
    139  1.33   hubertf 			break;
    140   1.1    brezak 		default:
    141   1.5   mycroft 		case '?':
    142   1.1    brezak 			usage();
    143   1.4     glass 			/* NOTREACHED */
    144   1.1    brezak 		}
    145   1.5   mycroft 	}
    146   1.5   mycroft 	argc -= optind;
    147   1.5   mycroft 	argv += optind;
    148   1.1    brezak 
    149   1.9   thorpej 	if (action == VND_CONFIG) {
    150   1.9   thorpej 		if ((argc < 2 || argc > 3) ||
    151   1.9   thorpej 		    (argc == 3 && tabname != NULL))
    152   1.9   thorpej 			usage();
    153   1.9   thorpej 		rv = config(argv[0], argv[1], (argc == 3) ? argv[2] : NULL,
    154   1.9   thorpej 		    action);
    155  1.25    atatat 	} else if (action == VND_UNCONFIG) {
    156   1.9   thorpej 		if (argc != 1 || tabname != NULL)
    157   1.9   thorpej 			usage();
    158   1.9   thorpej 		rv = config(argv[0], NULL, NULL, action);
    159  1.26      yamt 	} else { /* VND_GET */
    160  1.37     lukem 		const char *vn;
    161  1.37     lukem 		char path[64];
    162  1.25    atatat 		struct vnd_user vnu;
    163  1.25    atatat 		int v, n;
    164  1.25    atatat 
    165  1.25    atatat 		if (argc != 0 && argc != 1)
    166  1.25    atatat 			usage();
    167  1.25    atatat 
    168  1.25    atatat 		vn = argc ? argv[0] : "vnd0";
    169  1.25    atatat 
    170  1.26      yamt 		v = opendisk(vn, O_RDONLY, path, sizeof(path), 0);
    171  1.25    atatat 		if (v == -1)
    172  1.25    atatat 			err(1, "open: %s", vn);
    173  1.25    atatat 
    174  1.25    atatat 		for (n = 0; ; n++) {
    175  1.25    atatat 			vnu.vnu_unit = argc ? -1 : n;
    176  1.25    atatat 			rv = ioctl(v, VNDIOCGET, &vnu);
    177  1.25    atatat 			if (rv == -1) {
    178  1.25    atatat 				if (errno == ENXIO)
    179  1.25    atatat 					break;
    180  1.25    atatat 				err(1, "VNDIOCGET");
    181  1.25    atatat 			}
    182  1.25    atatat 
    183  1.25    atatat 			if (vnu.vnu_ino == 0)
    184  1.25    atatat 				printf("vnd%d: not in use\n",
    185  1.25    atatat 				    vnu.vnu_unit);
    186  1.30    atatat 			else {
    187  1.30    atatat 				char *dev;
    188  1.31  christos 				struct statvfs *mnt = NULL;
    189  1.37     lukem 				int i, nmount;
    190  1.30    atatat 
    191  1.37     lukem 				nmount = 0;	/* XXXGCC -Wuninitialized */
    192  1.32     lukem 
    193  1.30    atatat 				printf("vnd%d: ", vnu.vnu_unit);
    194  1.30    atatat 
    195  1.30    atatat 				dev = devname(vnu.vnu_dev, S_IFBLK);
    196  1.30    atatat 				if (dev != NULL)
    197  1.37     lukem 					nmount = getmntinfo(&mnt, MNT_NOWAIT);
    198  1.30    atatat 				else
    199  1.30    atatat 					mnt = NULL;
    200  1.30    atatat 				if (mnt != NULL) {
    201  1.37     lukem 					for (i = 0; i < nmount; i++) {
    202  1.30    atatat 						if (strncmp(
    203  1.30    atatat 						    mnt[i].f_mntfromname,
    204  1.30    atatat 						    "/dev/", 5) == 0 &&
    205  1.30    atatat 						    strcmp(
    206  1.30    atatat 						    mnt[i].f_mntfromname + 5,
    207  1.30    atatat 						    dev) == 0)
    208  1.30    atatat 							break;
    209  1.30    atatat 					}
    210  1.37     lukem 					if (i < nmount)
    211  1.30    atatat 						printf("%s (%s) ",
    212  1.30    atatat 						    mnt[i].f_mntonname,
    213  1.30    atatat 						    mnt[i].f_mntfromname);
    214  1.30    atatat 					else
    215  1.30    atatat 						printf("%s ", dev);
    216  1.30    atatat 				}
    217  1.30    atatat 				else if (dev != NULL)
    218  1.30    atatat 					printf("%s ", dev);
    219  1.30    atatat 				else
    220  1.36  christos 					printf("dev %llu,%llu ",
    221  1.36  christos 					    (unsigned long long)major(vnu.vnu_dev),
    222  1.36  christos 					    (unsigned long long)minor(vnu.vnu_dev));
    223  1.30    atatat 
    224  1.34  christos 				printf("inode %llu\n",
    225  1.34  christos 				    (unsigned long long)vnu.vnu_ino);
    226  1.30    atatat 			}
    227  1.25    atatat 
    228  1.25    atatat 			if (argc)
    229  1.25    atatat 				break;
    230  1.25    atatat 		}
    231  1.25    atatat 		close(v);
    232   1.9   thorpej 	}
    233   1.1    brezak 	exit(rv);
    234   1.1    brezak }
    235   1.1    brezak 
    236  1.40     joerg static int
    237  1.40     joerg config(char *dev, char *file, char *geom, int action)
    238   1.1    brezak {
    239   1.7       cgd 	struct vnd_ioctl vndio;
    240   1.9   thorpej 	struct disklabel *lp;
    241  1.12     enami 	char rdev[MAXPATHLEN + 1];
    242   1.9   thorpej 	int fd, rv;
    243   1.1    brezak 
    244  1.22  christos 	fd = opendisk(dev, O_RDWR, rdev, sizeof(rdev), 0);
    245   1.9   thorpej 	if (fd < 0) {
    246  1.14     enami 		warn("%s: opendisk", rdev);
    247   1.5   mycroft 		return (1);
    248   1.1    brezak 	}
    249   1.9   thorpej 
    250   1.9   thorpej 	memset(&vndio, 0, sizeof(vndio));
    251  1.10     mikel #ifdef __GNUC__
    252  1.10     mikel 	rv = 0;			/* XXX */
    253  1.10     mikel #endif
    254   1.9   thorpej 
    255   1.7       cgd 	vndio.vnd_file = file;
    256   1.9   thorpej 	if (geom != NULL) {
    257   1.9   thorpej 		rv = getgeom(&vndio.vnd_geom, geom);
    258  1.10     mikel 		if (rv != 0)
    259  1.10     mikel 			errx(1, "invalid geometry: %s", geom);
    260   1.9   thorpej 		vndio.vnd_flags = VNDIOF_HASGEOM;
    261   1.9   thorpej 	} else if (tabname != NULL) {
    262   1.9   thorpej 		lp = getdiskbyname(tabname);
    263   1.9   thorpej 		if (lp == NULL)
    264   1.9   thorpej 			errx(1, "unknown disk type: %s", tabname);
    265   1.9   thorpej 		vndio.vnd_geom.vng_secsize = lp->d_secsize;
    266   1.9   thorpej 		vndio.vnd_geom.vng_nsectors = lp->d_nsectors;
    267   1.9   thorpej 		vndio.vnd_geom.vng_ntracks = lp->d_ntracks;
    268   1.9   thorpej 		vndio.vnd_geom.vng_ncylinders = lp->d_ncylinders;
    269   1.9   thorpej 		vndio.vnd_flags = VNDIOF_HASGEOM;
    270   1.9   thorpej 	}
    271   1.1    brezak 
    272  1.26      yamt 	if (readonly)
    273  1.27  drochner 		vndio.vnd_flags |= VNDIOF_READONLY;
    274  1.26      yamt 
    275  1.33   hubertf 	if (compressed)
    276  1.33   hubertf 		vndio.vnd_flags |= VNF_COMP;
    277  1.33   hubertf 
    278   1.1    brezak 	/*
    279   1.1    brezak 	 * Clear (un-configure) the device
    280   1.1    brezak 	 */
    281   1.7       cgd 	if (action == VND_UNCONFIG) {
    282  1.27  drochner 		if (force)
    283  1.27  drochner 			vndio.vnd_flags |= VNDIOF_FORCE;
    284   1.9   thorpej 		rv = ioctl(fd, VNDIOCCLR, &vndio);
    285  1.38       dsl #ifdef VNDIOOCCLR
    286  1.38       dsl 		if (rv && errno == ENOTTY)
    287  1.38       dsl 			rv = ioctl(fd, VNDIOOCCLR, &vndio);
    288  1.38       dsl #endif
    289   1.6   mycroft 		if (rv)
    290  1.14     enami 			warn("%s: VNDIOCCLR", rdev);
    291   1.6   mycroft 		else if (verbose)
    292  1.14     enami 			printf("%s: cleared\n", rdev);
    293   1.1    brezak 	}
    294   1.1    brezak 	/*
    295   1.1    brezak 	 * Configure the device
    296   1.1    brezak 	 */
    297   1.7       cgd 	if (action == VND_CONFIG) {
    298  1.23      tron 		int	ffd;
    299  1.23      tron 
    300  1.26      yamt 		ffd = open(file, readonly ? O_RDONLY : O_RDWR);
    301  1.23      tron 		if (ffd < 0)
    302  1.23      tron 			warn("%s", file);
    303  1.23      tron 		else {
    304  1.23      tron 			(void) close(ffd);
    305  1.23      tron 
    306  1.23      tron 			rv = ioctl(fd, VNDIOCSET, &vndio);
    307  1.38       dsl #ifdef VNDIOOCSET
    308  1.38       dsl 			if (rv && errno == ENOTTY) {
    309  1.38       dsl 				rv = ioctl(fd, VNDIOOCSET, &vndio);
    310  1.38       dsl 				vndio.vnd_size = vndio.vnd_osize;
    311  1.38       dsl 			}
    312  1.38       dsl #endif
    313  1.23      tron 			if (rv)
    314  1.23      tron 				warn("%s: VNDIOCSET", rdev);
    315  1.23      tron 			else if (verbose) {
    316  1.38       dsl 				printf("%s: %" PRIu64 " bytes on %s", rdev,
    317  1.23      tron 				    vndio.vnd_size, file);
    318  1.23      tron 				if (vndio.vnd_flags & VNDIOF_HASGEOM)
    319  1.23      tron 					printf(" using geometry %d/%d/%d/%d",
    320  1.23      tron 					    vndio.vnd_geom.vng_secsize,
    321  1.23      tron 					    vndio.vnd_geom.vng_nsectors,
    322  1.23      tron 					    vndio.vnd_geom.vng_ntracks,
    323   1.9   thorpej 				    vndio.vnd_geom.vng_ncylinders);
    324  1.23      tron 				printf("\n");
    325  1.23      tron 			}
    326   1.9   thorpej 		}
    327   1.1    brezak 	}
    328  1.10     mikel 
    329   1.9   thorpej 	(void) close(fd);
    330   1.1    brezak 	fflush(stdout);
    331   1.5   mycroft 	return (rv < 0);
    332   1.1    brezak }
    333   1.1    brezak 
    334  1.40     joerg static int
    335  1.40     joerg getgeom(struct vndgeom *vng, char *cp)
    336   1.9   thorpej {
    337   1.9   thorpej 	char *secsize, *nsectors, *ntracks, *ncylinders;
    338   1.9   thorpej 
    339   1.9   thorpej #define	GETARG(arg) \
    340   1.9   thorpej 	do { \
    341  1.10     mikel 		if (cp == NULL || *cp == '\0') \
    342   1.9   thorpej 			return (1); \
    343   1.9   thorpej 		arg = strsep(&cp, "/"); \
    344   1.9   thorpej 		if (arg == NULL) \
    345   1.9   thorpej 			return (1); \
    346   1.9   thorpej 	} while (0)
    347   1.9   thorpej 
    348   1.9   thorpej 	GETARG(secsize);
    349   1.9   thorpej 	GETARG(nsectors);
    350   1.9   thorpej 	GETARG(ntracks);
    351   1.9   thorpej 	GETARG(ncylinders);
    352   1.9   thorpej 
    353   1.9   thorpej #undef GETARG
    354   1.9   thorpej 
    355   1.9   thorpej 	/* Too many? */
    356   1.9   thorpej 	if (cp != NULL)
    357   1.9   thorpej 		return (1);
    358   1.9   thorpej 
    359   1.9   thorpej #define	CVTARG(str, num) \
    360   1.9   thorpej 	do { \
    361   1.9   thorpej 		num = strtol(str, &cp, 10); \
    362   1.9   thorpej 		if (*cp != '\0') \
    363   1.9   thorpej 			return (1); \
    364   1.9   thorpej 	} while (0)
    365   1.9   thorpej 
    366   1.9   thorpej 	CVTARG(secsize, vng->vng_secsize);
    367   1.9   thorpej 	CVTARG(nsectors, vng->vng_nsectors);
    368   1.9   thorpej 	CVTARG(ntracks, vng->vng_ntracks);
    369   1.9   thorpej 	CVTARG(ncylinders, vng->vng_ncylinders);
    370   1.9   thorpej 
    371   1.9   thorpej #undef CVTARG
    372   1.9   thorpej 
    373   1.9   thorpej 	return (0);
    374   1.1    brezak }
    375   1.1    brezak 
    376  1.40     joerg static void
    377  1.40     joerg usage(void)
    378   1.1    brezak {
    379   1.5   mycroft 
    380   1.7       cgd 	(void)fprintf(stderr, "%s%s",
    381  1.33   hubertf 	    "usage: vnconfig [-crvz] [-f disktab] [-t typename] vnode_disk"
    382   1.9   thorpej 		" regular-file [geomspec]\n",
    383  1.28       wiz 	    "       vnconfig -u [-Fv] vnode_disk\n"
    384  1.28       wiz 	    "       vnconfig -l [vnode_disk]\n");
    385   1.1    brezak 	exit(1);
    386   1.1    brezak }
    387