1995-12-30 21:14:01 +03:00
|
|
|
/* $NetBSD: vnconfig.c,v 1.8 1995/12/30 18:14:03 thorpej Exp $ */
|
|
|
|
|
1993-12-21 07:13:39 +03:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993 University of Utah.
|
|
|
|
* Copyright (c) 1990, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* the Systems Programming Group of the University of Utah Computer
|
|
|
|
* Science Department.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* from: Utah $Hdr: vnconfig.c 1.1 93/12/15$
|
|
|
|
*
|
|
|
|
* @(#)vnconfig.c 8.1 (Berkeley) 12/15/93
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
1995-01-25 07:32:37 +03:00
|
|
|
#include <dev/vndioctl.h>
|
1993-12-21 07:13:39 +03:00
|
|
|
|
1995-01-22 09:18:12 +03:00
|
|
|
#include <err.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
1993-12-21 07:13:39 +03:00
|
|
|
|
1995-01-25 07:32:37 +03:00
|
|
|
#define VND_CONFIG 1
|
|
|
|
#define VND_UNCONFIG 2
|
1993-12-21 07:13:39 +03:00
|
|
|
|
|
|
|
int verbose = 0;
|
|
|
|
|
1994-12-23 19:23:12 +03:00
|
|
|
char *rawdevice __P((char *));
|
1995-01-22 09:18:12 +03:00
|
|
|
void usage __P((void));
|
1993-12-21 07:13:39 +03:00
|
|
|
|
|
|
|
main(argc, argv)
|
1995-01-22 09:18:12 +03:00
|
|
|
int argc;
|
1993-12-21 07:13:39 +03:00
|
|
|
char **argv;
|
|
|
|
{
|
1995-01-25 07:32:37 +03:00
|
|
|
int ch, rv, action = VND_CONFIG;
|
1993-12-21 07:13:39 +03:00
|
|
|
|
1995-01-22 10:06:44 +03:00
|
|
|
while ((ch = getopt(argc, argv, "cuv")) != -1) {
|
|
|
|
switch (ch) {
|
1993-12-21 07:13:39 +03:00
|
|
|
case 'c':
|
1995-01-25 07:32:37 +03:00
|
|
|
action = VND_CONFIG;
|
1993-12-21 07:13:39 +03:00
|
|
|
break;
|
|
|
|
case 'u':
|
1995-01-25 07:32:37 +03:00
|
|
|
action = VND_UNCONFIG;
|
1993-12-21 07:13:39 +03:00
|
|
|
break;
|
|
|
|
case 'v':
|
1995-01-22 10:06:44 +03:00
|
|
|
verbose = 1;
|
1993-12-21 07:13:39 +03:00
|
|
|
break;
|
|
|
|
default:
|
1995-01-22 10:06:44 +03:00
|
|
|
case '?':
|
1993-12-21 07:13:39 +03:00
|
|
|
usage();
|
1995-01-22 09:18:12 +03:00
|
|
|
/* NOTREACHED */
|
1993-12-21 07:13:39 +03:00
|
|
|
}
|
1995-01-22 10:06:44 +03:00
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
1993-12-21 07:13:39 +03:00
|
|
|
|
1995-01-25 07:32:37 +03:00
|
|
|
if (action == VND_CONFIG && argc == 2)
|
1995-01-22 10:06:44 +03:00
|
|
|
rv = config(argv[0], argv[1], action);
|
1995-01-25 07:32:37 +03:00
|
|
|
else if (action == VND_UNCONFIG && argc == 1)
|
1995-01-22 10:06:44 +03:00
|
|
|
rv = config(argv[0], NULL, action);
|
|
|
|
else
|
1995-01-22 09:18:12 +03:00
|
|
|
usage();
|
1993-12-21 07:13:39 +03:00
|
|
|
exit(rv);
|
|
|
|
}
|
|
|
|
|
1995-01-22 10:06:44 +03:00
|
|
|
config(dev, file, action)
|
1995-01-22 09:18:12 +03:00
|
|
|
char *dev;
|
|
|
|
char *file;
|
1995-01-22 10:06:44 +03:00
|
|
|
int action;
|
1995-01-22 09:18:12 +03:00
|
|
|
{
|
1995-01-25 07:32:37 +03:00
|
|
|
struct vnd_ioctl vndio;
|
1993-12-21 07:13:39 +03:00
|
|
|
FILE *f;
|
1995-01-22 09:18:12 +03:00
|
|
|
char *rdev;
|
|
|
|
int rv;
|
1993-12-21 07:13:39 +03:00
|
|
|
|
|
|
|
rdev = rawdevice(dev);
|
|
|
|
f = fopen(rdev, "rw");
|
|
|
|
if (f == NULL) {
|
1995-01-22 10:06:44 +03:00
|
|
|
warn(rdev);
|
|
|
|
return (1);
|
1993-12-21 07:13:39 +03:00
|
|
|
}
|
1995-01-25 07:32:37 +03:00
|
|
|
vndio.vnd_file = file;
|
1993-12-21 07:13:39 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Clear (un-configure) the device
|
|
|
|
*/
|
1995-01-25 07:32:37 +03:00
|
|
|
if (action == VND_UNCONFIG) {
|
|
|
|
rv = ioctl(fileno(f), VNDIOCCLR, &vndio);
|
1995-01-22 10:09:54 +03:00
|
|
|
if (rv)
|
1995-01-25 07:32:37 +03:00
|
|
|
warn("VNDIOCCLR");
|
1995-01-22 10:09:54 +03:00
|
|
|
else if (verbose)
|
1993-12-21 07:13:39 +03:00
|
|
|
printf("%s: cleared\n", dev);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Configure the device
|
|
|
|
*/
|
1995-01-25 07:32:37 +03:00
|
|
|
if (action == VND_CONFIG) {
|
|
|
|
rv = ioctl(fileno(f), VNDIOCSET, &vndio);
|
1995-01-22 10:06:44 +03:00
|
|
|
if (rv)
|
1995-01-25 07:32:37 +03:00
|
|
|
warn("VNDIOCSET");
|
1995-01-22 10:06:44 +03:00
|
|
|
else if (verbose)
|
1995-01-25 07:32:37 +03:00
|
|
|
printf("%s: %d bytes on %s\n", dev, vndio.vnd_size,
|
|
|
|
file);
|
1993-12-21 07:13:39 +03:00
|
|
|
}
|
|
|
|
done:
|
|
|
|
fclose(f);
|
|
|
|
fflush(stdout);
|
1995-01-22 10:06:44 +03:00
|
|
|
return (rv < 0);
|
1993-12-21 07:13:39 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
rawdevice(dev)
|
|
|
|
char *dev;
|
|
|
|
{
|
|
|
|
register char *rawbuf, *dp, *ep;
|
|
|
|
struct stat sb;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
len = strlen(dev);
|
|
|
|
rawbuf = malloc(len + 2);
|
|
|
|
strcpy(rawbuf, dev);
|
|
|
|
if (stat(rawbuf, &sb) != 0 || !S_ISCHR(sb.st_mode)) {
|
|
|
|
dp = rindex(rawbuf, '/');
|
|
|
|
if (dp) {
|
|
|
|
for (ep = &rawbuf[len]; ep > dp; --ep)
|
|
|
|
*(ep+1) = *ep;
|
|
|
|
*++ep = 'r';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return (rawbuf);
|
|
|
|
}
|
|
|
|
|
1995-01-22 09:18:12 +03:00
|
|
|
void
|
1993-12-21 07:13:39 +03:00
|
|
|
usage()
|
|
|
|
{
|
1995-01-22 10:06:44 +03:00
|
|
|
|
1995-01-25 07:32:37 +03:00
|
|
|
(void)fprintf(stderr, "%s%s",
|
|
|
|
"usage: vnconfig -c [-v] special-file regular-file\n",
|
|
|
|
" vnconfig -u [-v] special-file\n");
|
1993-12-21 07:13:39 +03:00
|
|
|
exit(1);
|
|
|
|
}
|