Undo last commit; deraadt didn't like it.
authormarco <marco@openbsd.org>
Mon, 11 Aug 2008 17:28:24 +0000 (17:28 +0000)
committermarco <marco@openbsd.org>
Mon, 11 Aug 2008 17:28:24 +0000 (17:28 +0000)
sbin/bioctl/bioctl.8
sbin/bioctl/bioctl.c
sys/dev/biovar.h

index f6ae521..4137b47 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $OpenBSD: bioctl.8,v 1.58 2008/08/11 17:22:54 marco Exp $
+.\"    $OpenBSD: bioctl.8,v 1.59 2008/08/11 17:28:24 marco Exp $
 .\"
 .\" Copyright (c) 2004, 2005 Marco Peereboom
 .\"
@@ -40,7 +40,6 @@
 .Op Fl H Ar channel:target[.lun]
 .Op Fl l Ar special[,special,...]
 .Op Fl r Ar rounds
-.Op Fl R Ar device|channel:target[.lun]
 .Op Fl u Ar channel:target[.lun]
 .Ar device
 .Ek
@@ -149,12 +148,6 @@ the algorithm used to convert a passphrase into a key.
 Higher iteration counts take more time, but offer more resistance to key
 guessing attacks.
 The minimum is 1000 rounds and the default is 8192.
-.It Fl R Ar device|channel:target[.lun]
-Manually kick off a rebuild using device or
-.Ar channel:target[.lun]
-on the provided drive name.
-This command requires a drive by name (e.g. sd1) instead of a controller
-by name (e.g. softraid0).
 .It Fl u Ar channel:target[.lun]
 Instruct the device at
 .Ar channel:target[.lun]
index 8a86aec..6096c5c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: bioctl.c,v 1.73 2008/08/11 17:22:54 marco Exp $       */
+/* $OpenBSD: bioctl.c,v 1.74 2008/08/11 17:28:24 marco Exp $       */
 
 /*
  * Copyright (c) 2004, 2005 Marco Peereboom
@@ -70,8 +70,7 @@ void                  derive_key_pkcs(int, u_int8_t *, size_t, u_int8_t *,
 
 void                   bio_inq(char *);
 void                   bio_alarm(char *);
-int                    bio_getvolbyname(char *);
-void                   bio_setstate(char *, int, char *);
+void                   bio_setstate(char *);
 void                   bio_setblink(char *, char *, int);
 void                   bio_blink(char *, int, int);
 void                   bio_createraid(u_int16_t, char *);
@@ -98,13 +97,13 @@ main(int argc, char *argv[])
        char                    *realname = NULL, *al_arg = NULL;
        char                    *bl_arg = NULL, *dev_list = NULL;
        const char              *errstr;
-       int                     ch, rv, blink = 0, diskinq = 0, ss_func = 0;
+       int                     ch, rv, blink = 0, diskinq = 0;
        u_int16_t               cr_level = 0;
 
        if (argc < 2)
                usage();
 
-       while ((ch = getopt(argc, argv, "a:b:C:c:dH:hil:qr:R:vu:")) != -1) {
+       while ((ch = getopt(argc, argv, "a:b:C:c:dH:hil:qr:vu:")) != -1) {
                switch (ch) {
                case 'a': /* alarm */
                        func |= BIOC_ALARM;
@@ -136,7 +135,6 @@ main(int argc, char *argv[])
                        break;
                case 'H': /* set hotspare */
                        func |= BIOC_SETSTATE;
-                       ss_func = BIOC_SSHOTSPARE;
                        al_arg = optarg;
                        break;
                case 'h':
@@ -155,12 +153,6 @@ main(int argc, char *argv[])
                                errx(1, "Number of rounds is %s: %s",
                                    errstr, optarg);
                        break;
-               case 'R':
-                       /* rebuild to provided chunk/CTL */
-                       func |= BIOC_SETSTATE;
-                       ss_func = BIOC_SSREBUILD;
-                       al_arg = optarg;
-                       break;
                case 'v':
                        verbose = 1;
                        break;
@@ -214,7 +206,7 @@ main(int argc, char *argv[])
        } else if (func == BIOC_BLINK) {
                bio_setblink(sd_dev, bl_arg, blink);
        } else if (func == BIOC_SETSTATE) {
-               bio_setstate(al_arg, ss_func, argv[0]);
+               bio_setstate(al_arg);
        } else if (func == BIOC_DELETERAID && sd_dev != NULL) {
                bio_deleteraid(sd_dev);
        } else if (func & BIOC_CREATERAID || func & BIOC_DEVLIST) {
@@ -241,9 +233,8 @@ usage(void)
                "\t[-C flag[,flag,...]] [-c raidlevel] "
                "[-H channel:target[.lun]]\n"
                "\t[-l special[,special,...]] [-r rounds] "
-               "[-R device|channel:target[.lun]\n"
-               "\t[-u channel:target[.lun]] "
-               "device\n", __progname);
+               "[-u channel:target[.lun]]\n"
+               "\tdevice\n", __progname);
        
        exit(1);
 }
@@ -501,67 +492,23 @@ bio_alarm(char *arg)
        }
 }
 
-int
-bio_getvolbyname(char *name)
-{
-       int                     id = -1, i, rv;
-       struct bioc_inq         bi;
-       struct bioc_vol         bv;
-
-       memset(&bi, 0, sizeof(bi));
-       bi.bi_cookie = bl.bl_cookie;
-       rv = ioctl(devh, BIOCINQ, &bi);
-       if (rv == -1)
-               err(1, "BIOCINQ");
-
-       for (i = 0; i < bi.bi_novol; i++) {
-               memset(&bv, 0, sizeof(bv));
-               bv.bv_cookie = bl.bl_cookie;
-               bv.bv_volid = i;
-               rv = ioctl(devh, BIOCVOL, &bv);
-               if (rv == -1)
-                       err(1, "BIOCVOL");
-
-               if (name && strcmp(name, bv.bv_dev) != 0)
-                       continue;
-               id = i;
-               break;
-       }
-
-       return (id);
-}
-
 void
-bio_setstate(char *arg, int status, char *devname)
+bio_setstate(char *arg)
 {
        struct bioc_setstate    bs;
        struct locator          location;
-       struct stat             sb;
        const char              *errstr;
        int                     rv;
 
-       memset(&bs, 0, sizeof(bs));
-       if (stat(arg, &sb) == -1) {
-               /* use CTL */
-               errstr = str2locator(arg, &location);
-               if (errstr)
-                       errx(1, "Target %s: %s", arg, errstr);
-               bs.bs_channel = location.channel;
-               bs.bs_target = location.target;
-               bs.bs_lun = location.lun;
-       } else {
-               /* use other id */
-               bs.bs_other_id = sb.st_rdev;
-               bs.bs_other_id_type = BIOC_SSOTHER_DEVT;
-       }
+       errstr = str2locator(arg, &location);
+       if (errstr)
+               errx(1, "Target %s: %s", arg, errstr);
 
        bs.bs_cookie = bl.bl_cookie;
-       bs.bs_status = status;
-
-       /* make sure user supplied a sd device */
-       bs.bs_volid = bio_getvolbyname(devname);
-       if (bs.bs_volid == -1)
-               errx(1, "invalid device %s", devname);
+       bs.bs_status = BIOC_SSHOTSPARE;
+       bs.bs_channel = location.channel;
+       bs.bs_target = location.target;
+       bs.bs_lun = location.lun;
 
        rv = ioctl(devh, BIOCSETSTATE, &bs);
        if (rv == -1)
@@ -884,7 +831,6 @@ bio_deleteraid(char *dev)
        memset(&bd, 0, sizeof(bd));
 
        bd.bd_cookie = bd.bd_cookie;
-       /* XXX make this a dev_t instead of a string */
        strlcpy(bd.bd_dev, dev, sizeof bd.bd_dev);
        if (ioctl(devh, BIOCDELETERAID, &bd))
                errx(1, "delete volume %s failed", dev);
index f921979..68371bb 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: biovar.h,v 1.32 2008/08/11 17:22:54 marco Exp $       */
+/*     $OpenBSD: biovar.h,v 1.33 2008/08/11 17:28:24 marco Exp $       */
 
 /*
  * Copyright (c) 2002 Niklas Hallqvist.  All rights reserved.
@@ -159,10 +159,7 @@ struct bioc_setstate {
        u_int16_t       bs_channel;
        u_int16_t       bs_target;
        u_int16_t       bs_lun;
-       u_int16_t       bs_other_id_type; /* use other_id instead of ctl */
-#define BIOC_SSOTHER_UNUSED    0x00
-#define BIOC_SSOTHER_DEVT      0x01
-       int             bs_other_id;    /* cram dev_t or other id in here */
+       u_int16_t       bs_other_id;    /* unused for now  */
 
        int             bs_status;      /* change to this status */
 #define BIOC_SSONLINE          0x00    /* online disk */