Home | History | Annotate | Line # | Download | only in dkctl
dkctl.c revision 1.26
      1  1.26       kre /*	$NetBSD: dkctl.c,v 1.26 2018/01/07 12:29:25 kre Exp $	*/
      2   1.1   thorpej 
      3   1.1   thorpej /*
      4   1.1   thorpej  * Copyright 2001 Wasabi Systems, Inc.
      5   1.1   thorpej  * All rights reserved.
      6   1.1   thorpej  *
      7   1.1   thorpej  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8   1.1   thorpej  *
      9   1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     10   1.1   thorpej  * modification, are permitted provided that the following conditions
     11   1.1   thorpej  * are met:
     12   1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     13   1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     14   1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     16   1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     17   1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     18   1.1   thorpej  *    must display the following acknowledgement:
     19   1.1   thorpej  *	This product includes software developed for the NetBSD Project by
     20   1.1   thorpej  *	Wasabi Systems, Inc.
     21   1.1   thorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1   thorpej  *    or promote products derived from this software without specific prior
     23   1.1   thorpej  *    written permission.
     24   1.1   thorpej  *
     25   1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1   thorpej  */
     37   1.1   thorpej 
     38   1.1   thorpej /*
     39   1.1   thorpej  * dkctl(8) -- a program to manipulate disks.
     40   1.1   thorpej  */
     41   1.7       agc #include <sys/cdefs.h>
     42   1.7       agc 
     43   1.7       agc #ifndef lint
     44  1.26       kre __RCSID("$NetBSD: dkctl.c,v 1.26 2018/01/07 12:29:25 kre Exp $");
     45   1.7       agc #endif
     46   1.7       agc 
     47   1.1   thorpej #include <sys/param.h>
     48   1.1   thorpej #include <sys/ioctl.h>
     49  1.24  christos #include <sys/stat.h>
     50   1.1   thorpej #include <sys/dkio.h>
     51   1.3   darrenr #include <sys/disk.h>
     52   1.3   darrenr #include <sys/queue.h>
     53   1.1   thorpej #include <err.h>
     54   1.1   thorpej #include <errno.h>
     55   1.1   thorpej #include <fcntl.h>
     56   1.1   thorpej #include <stdio.h>
     57   1.1   thorpej #include <stdlib.h>
     58  1.22  christos #include <stdbool.h>
     59   1.1   thorpej #include <string.h>
     60   1.1   thorpej #include <unistd.h>
     61   1.1   thorpej #include <util.h>
     62   1.1   thorpej 
     63   1.2      yamt #define	YES	1
     64   1.2      yamt #define	NO	0
     65   1.2      yamt 
     66   1.2      yamt /* I don't think nl_langinfo is suitable in this case */
     67   1.2      yamt #define	YES_STR	"yes"
     68   1.2      yamt #define	NO_STR	"no"
     69   1.2      yamt #define YESNO_ARG	YES_STR " | " NO_STR
     70   1.2      yamt 
     71   1.3   darrenr #ifndef PRIdaddr
     72   1.3   darrenr #define PRIdaddr PRId64
     73   1.3   darrenr #endif
     74   1.3   darrenr 
     75   1.1   thorpej struct command {
     76   1.1   thorpej 	const char *cmd_name;
     77   1.1   thorpej 	const char *arg_names;
     78   1.1   thorpej 	void (*cmd_func)(int, char *[]);
     79   1.1   thorpej 	int open_flags;
     80   1.1   thorpej };
     81   1.1   thorpej 
     82  1.20     joerg static struct command *lookup(const char *);
     83  1.20     joerg __dead static void	usage(void);
     84  1.20     joerg static void	run(int, char *[]);
     85  1.20     joerg static void	showall(void);
     86  1.20     joerg 
     87  1.20     joerg static int	fd;				/* file descriptor for device */
     88  1.20     joerg static const	char *dvname;			/* device name */
     89  1.20     joerg static char	dvname_store[MAXPATHLEN];	/* for opendisk(3) */
     90  1.20     joerg 
     91  1.20     joerg static int dkw_sort(const void *, const void *);
     92  1.20     joerg static int yesno(const char *);
     93  1.20     joerg 
     94  1.20     joerg static void	disk_getcache(int, char *[]);
     95  1.20     joerg static void	disk_setcache(int, char *[]);
     96  1.20     joerg static void	disk_synccache(int, char *[]);
     97  1.20     joerg static void	disk_keeplabel(int, char *[]);
     98  1.20     joerg static void	disk_badsectors(int, char *[]);
     99  1.20     joerg 
    100  1.20     joerg static void	disk_addwedge(int, char *[]);
    101  1.20     joerg static void	disk_delwedge(int, char *[]);
    102  1.20     joerg static void	disk_getwedgeinfo(int, char *[]);
    103  1.20     joerg static void	disk_listwedges(int, char *[]);
    104  1.21   mlelstv static void	disk_makewedges(int, char *[]);
    105  1.20     joerg static void	disk_strategy(int, char *[]);
    106  1.17  uebayasi 
    107  1.20     joerg static struct command commands[] = {
    108  1.23       wiz 	{ "addwedge",
    109  1.23       wiz 	  "name startblk blkcnt ptype",
    110  1.23       wiz 	  disk_addwedge,
    111   1.2      yamt 	  O_RDWR },
    112   1.2      yamt 
    113   1.3   darrenr 	{ "badsector",
    114   1.3   darrenr 	  "flush | list | retry",
    115   1.3   darrenr 	   disk_badsectors,
    116   1.3   darrenr 	   O_RDWR },
    117   1.3   darrenr 
    118   1.9   thorpej 	{ "delwedge",
    119   1.9   thorpej 	  "dk",
    120   1.9   thorpej 	  disk_delwedge,
    121   1.9   thorpej 	  O_RDWR },
    122   1.9   thorpej 
    123  1.23       wiz 	{ "getcache",
    124  1.23       wiz 	  "",
    125  1.23       wiz 	  disk_getcache,
    126  1.23       wiz 	  O_RDONLY },
    127  1.23       wiz 
    128   1.9   thorpej 	{ "getwedgeinfo",
    129   1.9   thorpej 	  "",
    130   1.9   thorpej 	  disk_getwedgeinfo,
    131   1.9   thorpej 	  O_RDONLY },
    132   1.9   thorpej 
    133  1.23       wiz 	{ "keeplabel",
    134  1.23       wiz 	  YESNO_ARG,
    135  1.23       wiz 	  disk_keeplabel,
    136  1.23       wiz 	  O_RDWR },
    137  1.23       wiz 
    138   1.9   thorpej 	{ "listwedges",
    139   1.9   thorpej 	  "",
    140   1.9   thorpej 	  disk_listwedges,
    141   1.9   thorpej 	  O_RDONLY },
    142   1.9   thorpej 
    143  1.21   mlelstv 	{ "makewedges",
    144  1.21   mlelstv 	  "",
    145  1.21   mlelstv 	  disk_makewedges,
    146  1.21   mlelstv 	  O_RDWR },
    147  1.21   mlelstv 
    148  1.23       wiz 	{ "setcache",
    149  1.23       wiz 	  "none | r | w | rw [save]",
    150  1.23       wiz 	  disk_setcache,
    151  1.23       wiz 	  O_RDWR },
    152  1.23       wiz 
    153  1.12      yamt 	{ "strategy",
    154  1.12      yamt 	  "[name]",
    155  1.12      yamt 	  disk_strategy,
    156  1.12      yamt 	  O_RDWR },
    157  1.12      yamt 
    158  1.23       wiz 	{ "synccache",
    159  1.23       wiz 	  "[force]",
    160  1.23       wiz 	  disk_synccache,
    161  1.23       wiz 	  O_RDWR },
    162  1.23       wiz 
    163   1.1   thorpej 	{ NULL,
    164   1.1   thorpej 	  NULL,
    165   1.1   thorpej 	  NULL,
    166   1.1   thorpej 	  0 },
    167   1.1   thorpej };
    168   1.1   thorpej 
    169   1.1   thorpej int
    170   1.1   thorpej main(int argc, char *argv[])
    171   1.1   thorpej {
    172   1.1   thorpej 
    173   1.1   thorpej 	/* Must have at least: device command */
    174  1.17  uebayasi 	if (argc < 2)
    175   1.1   thorpej 		usage();
    176   1.1   thorpej 
    177   1.1   thorpej 	dvname = argv[1];
    178  1.17  uebayasi 	if (argc == 2)
    179  1.17  uebayasi 		showall();
    180  1.22  christos 	else
    181  1.22  christos 		run(argc - 2, argv + 2);
    182  1.17  uebayasi 
    183  1.22  christos 	return EXIT_SUCCESS;
    184  1.17  uebayasi }
    185   1.1   thorpej 
    186  1.20     joerg static void
    187  1.17  uebayasi run(int argc, char *argv[])
    188  1.17  uebayasi {
    189  1.17  uebayasi 	struct command *command;
    190   1.1   thorpej 
    191  1.22  christos 	command = lookup(argv[0]);
    192   1.1   thorpej 
    193   1.1   thorpej 	/* Open the device. */
    194  1.17  uebayasi 	fd = opendisk(dvname, command->open_flags, dvname_store,
    195   1.1   thorpej 	    sizeof(dvname_store), 0);
    196   1.1   thorpej 	if (fd == -1)
    197  1.22  christos 		err(EXIT_FAILURE, "%s", dvname);
    198  1.17  uebayasi 	dvname = dvname_store;
    199  1.17  uebayasi 
    200  1.17  uebayasi 	(*command->cmd_func)(argc, argv);
    201  1.17  uebayasi 
    202  1.17  uebayasi 	/* Close the device. */
    203  1.17  uebayasi 	(void)close(fd);
    204  1.17  uebayasi }
    205  1.17  uebayasi 
    206  1.20     joerg static struct command *
    207  1.17  uebayasi lookup(const char *name)
    208  1.17  uebayasi {
    209  1.17  uebayasi 	int i;
    210   1.1   thorpej 
    211  1.17  uebayasi 	/* Look up the command. */
    212  1.17  uebayasi 	for (i = 0; commands[i].cmd_name != NULL; i++)
    213  1.17  uebayasi 		if (strcmp(name, commands[i].cmd_name) == 0)
    214  1.17  uebayasi 			break;
    215  1.17  uebayasi 	if (commands[i].cmd_name == NULL)
    216  1.22  christos 		errx(EXIT_FAILURE, "unknown command: %s", name);
    217   1.1   thorpej 
    218  1.17  uebayasi 	return &commands[i];
    219   1.1   thorpej }
    220   1.1   thorpej 
    221  1.20     joerg static void
    222  1.11   xtraeme usage(void)
    223   1.1   thorpej {
    224   1.1   thorpej 	int i;
    225   1.1   thorpej 
    226  1.17  uebayasi 	fprintf(stderr,
    227  1.22  christos 	    "Usage: %s device\n"
    228  1.17  uebayasi 	    "       %s device command [arg [...]]\n",
    229  1.17  uebayasi 	    getprogname(), getprogname());
    230   1.1   thorpej 
    231   1.1   thorpej 	fprintf(stderr, "   Available commands:\n");
    232   1.1   thorpej 	for (i = 0; commands[i].cmd_name != NULL; i++)
    233   1.1   thorpej 		fprintf(stderr, "\t%s %s\n", commands[i].cmd_name,
    234   1.1   thorpej 		    commands[i].arg_names);
    235   1.1   thorpej 
    236  1.22  christos 	exit(EXIT_FAILURE);
    237   1.1   thorpej }
    238   1.1   thorpej 
    239  1.20     joerg static void
    240  1.17  uebayasi showall(void)
    241  1.17  uebayasi {
    242  1.22  christos 	static const char *cmds[] = { "strategy", "getcache", "listwedges" };
    243  1.22  christos 	size_t i;
    244  1.22  christos 	char *args[2];
    245  1.22  christos 
    246  1.22  christos 	args[1] = NULL;
    247  1.22  christos 	for (i = 0; i < __arraycount(cmds); i++) {
    248  1.22  christos 		printf("%s:\n", cmds[i]);
    249  1.22  christos 		args[0] = __UNCONST(cmds[i]);
    250  1.22  christos 		run(1, args);
    251  1.22  christos 		putchar('\n');
    252  1.22  christos 	}
    253  1.17  uebayasi }
    254  1.17  uebayasi 
    255  1.20     joerg static void
    256  1.12      yamt disk_strategy(int argc, char *argv[])
    257  1.12      yamt {
    258  1.12      yamt 	struct disk_strategy odks;
    259  1.12      yamt 	struct disk_strategy dks;
    260  1.12      yamt 
    261  1.12      yamt 	memset(&dks, 0, sizeof(dks));
    262  1.12      yamt 	if (ioctl(fd, DIOCGSTRATEGY, &odks) == -1) {
    263  1.12      yamt 		err(EXIT_FAILURE, "%s: DIOCGSTRATEGY", dvname);
    264  1.12      yamt 	}
    265  1.12      yamt 
    266  1.12      yamt 	memset(&dks, 0, sizeof(dks));
    267  1.12      yamt 	switch (argc) {
    268  1.22  christos 	case 1:
    269  1.12      yamt 		/* show the buffer queue strategy used */
    270  1.12      yamt 		printf("%s: %s\n", dvname, odks.dks_name);
    271  1.12      yamt 		return;
    272  1.22  christos 	case 2:
    273  1.12      yamt 		/* set the buffer queue strategy */
    274  1.22  christos 		strlcpy(dks.dks_name, argv[1], sizeof(dks.dks_name));
    275  1.12      yamt 		if (ioctl(fd, DIOCSSTRATEGY, &dks) == -1) {
    276  1.12      yamt 			err(EXIT_FAILURE, "%s: DIOCSSTRATEGY", dvname);
    277  1.12      yamt 		}
    278  1.22  christos 		printf("%s: %s -> %s\n", dvname, odks.dks_name, argv[1]);
    279  1.12      yamt 		break;
    280  1.12      yamt 	default:
    281  1.12      yamt 		usage();
    282  1.12      yamt 		/* NOTREACHED */
    283  1.12      yamt 	}
    284  1.12      yamt }
    285  1.12      yamt 
    286  1.20     joerg static void
    287   1.1   thorpej disk_getcache(int argc, char *argv[])
    288   1.1   thorpej {
    289   1.1   thorpej 	int bits;
    290   1.1   thorpej 
    291   1.1   thorpej 	if (ioctl(fd, DIOCGCACHE, &bits) == -1)
    292  1.22  christos 		err(EXIT_FAILURE, "%s: getcache", dvname);
    293   1.1   thorpej 
    294   1.1   thorpej 	if ((bits & (DKCACHE_READ|DKCACHE_WRITE)) == 0)
    295   1.1   thorpej 		printf("%s: No caches enabled\n", dvname);
    296   1.1   thorpej 	else {
    297   1.1   thorpej 		if (bits & DKCACHE_READ)
    298   1.1   thorpej 			printf("%s: read cache enabled\n", dvname);
    299   1.1   thorpej 		if (bits & DKCACHE_WRITE)
    300   1.1   thorpej 			printf("%s: write-back cache enabled\n", dvname);
    301   1.1   thorpej 	}
    302   1.1   thorpej 
    303   1.1   thorpej 	printf("%s: read cache enable is %schangeable\n", dvname,
    304   1.1   thorpej 	    (bits & DKCACHE_RCHANGE) ? "" : "not ");
    305   1.1   thorpej 	printf("%s: write cache enable is %schangeable\n", dvname,
    306   1.1   thorpej 	    (bits & DKCACHE_WCHANGE) ? "" : "not ");
    307   1.1   thorpej 
    308   1.1   thorpej 	printf("%s: cache parameters are %ssavable\n", dvname,
    309   1.1   thorpej 	    (bits & DKCACHE_SAVE) ? "" : "not ");
    310  1.25  jdolecek 
    311  1.25  jdolecek #ifdef DKCACHE_FUA
    312  1.25  jdolecek 	printf("%s: cache Force Unit Access (FUA) %ssupported\n", dvname,
    313  1.25  jdolecek 	    (bits & DKCACHE_FUA) ? "" : "not ");
    314  1.25  jdolecek #endif /* DKCACHE_FUA */
    315  1.25  jdolecek 
    316  1.25  jdolecek #ifdef DKCACHE_DPO
    317  1.25  jdolecek 	printf("%s: cache Disable Page Out (DPO) %ssupported\n", dvname,
    318  1.25  jdolecek 	    (bits & DKCACHE_DPO) ? "" : "not ");
    319  1.25  jdolecek #endif /* DKCACHE_DPO */
    320   1.1   thorpej }
    321   1.1   thorpej 
    322  1.20     joerg static void
    323   1.1   thorpej disk_setcache(int argc, char *argv[])
    324   1.1   thorpej {
    325   1.1   thorpej 	int bits;
    326   1.1   thorpej 
    327  1.22  christos 	if (argc > 3 || argc == 1)
    328   1.1   thorpej 		usage();
    329   1.1   thorpej 
    330  1.22  christos 	if (strcmp(argv[1], "none") == 0)
    331   1.1   thorpej 		bits = 0;
    332  1.22  christos 	else if (strcmp(argv[1], "r") == 0)
    333   1.1   thorpej 		bits = DKCACHE_READ;
    334  1.22  christos 	else if (strcmp(argv[1], "w") == 0)
    335   1.1   thorpej 		bits = DKCACHE_WRITE;
    336  1.22  christos 	else if (strcmp(argv[1], "rw") == 0)
    337   1.1   thorpej 		bits = DKCACHE_READ|DKCACHE_WRITE;
    338   1.1   thorpej 	else
    339   1.1   thorpej 		usage();
    340   1.1   thorpej 
    341  1.22  christos 	if (argc == 3) {
    342  1.22  christos 		if (strcmp(argv[2], "save") == 0)
    343   1.1   thorpej 			bits |= DKCACHE_SAVE;
    344   1.1   thorpej 		else
    345   1.1   thorpej 			usage();
    346   1.1   thorpej 	}
    347   1.1   thorpej 
    348   1.1   thorpej 	if (ioctl(fd, DIOCSCACHE, &bits) == -1)
    349  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    350   1.1   thorpej }
    351   1.1   thorpej 
    352  1.20     joerg static void
    353   1.1   thorpej disk_synccache(int argc, char *argv[])
    354   1.1   thorpej {
    355   1.1   thorpej 	int force;
    356   1.1   thorpej 
    357   1.1   thorpej 	switch (argc) {
    358  1.22  christos 	case 1:
    359   1.1   thorpej 		force = 0;
    360   1.1   thorpej 		break;
    361   1.1   thorpej 
    362  1.22  christos 	case 2:
    363  1.22  christos 		if (strcmp(argv[1], "force") == 0)
    364   1.1   thorpej 			force = 1;
    365   1.1   thorpej 		else
    366   1.1   thorpej 			usage();
    367   1.1   thorpej 		break;
    368   1.1   thorpej 
    369   1.1   thorpej 	default:
    370   1.1   thorpej 		usage();
    371   1.1   thorpej 	}
    372   1.1   thorpej 
    373   1.1   thorpej 	if (ioctl(fd, DIOCCACHESYNC, &force) == -1)
    374  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    375   1.2      yamt }
    376   1.2      yamt 
    377  1.20     joerg static void
    378   1.2      yamt disk_keeplabel(int argc, char *argv[])
    379   1.2      yamt {
    380   1.2      yamt 	int keep;
    381   1.2      yamt 	int yn;
    382   1.2      yamt 
    383  1.22  christos 	if (argc != 2)
    384   1.2      yamt 		usage();
    385   1.2      yamt 
    386  1.22  christos 	yn = yesno(argv[1]);
    387   1.2      yamt 	if (yn < 0)
    388   1.2      yamt 		usage();
    389   1.2      yamt 
    390   1.2      yamt 	keep = yn == YES;
    391   1.2      yamt 
    392   1.2      yamt 	if (ioctl(fd, DIOCKLABEL, &keep) == -1)
    393  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    394   1.3   darrenr }
    395   1.3   darrenr 
    396   1.3   darrenr 
    397  1.20     joerg static void
    398   1.3   darrenr disk_badsectors(int argc, char *argv[])
    399   1.3   darrenr {
    400   1.3   darrenr 	struct disk_badsectors *dbs, *dbs2, buffer[200];
    401   1.3   darrenr 	SLIST_HEAD(, disk_badsectors) dbstop;
    402   1.3   darrenr 	struct disk_badsecinfo dbsi;
    403   1.3   darrenr 	daddr_t blk, totbad, bad;
    404   1.5       dsl 	u_int32_t count;
    405   1.3   darrenr 	struct stat sb;
    406   1.3   darrenr 	u_char *block;
    407   1.6    martin 	time_t tm;
    408   1.3   darrenr 
    409  1.22  christos 	if (argc != 2)
    410   1.3   darrenr 		usage();
    411   1.3   darrenr 
    412  1.22  christos 	if (strcmp(argv[1], "list") == 0) {
    413   1.3   darrenr 		/*
    414   1.3   darrenr 		 * Copy the list of kernel bad sectors out in chunks that fit
    415   1.3   darrenr 		 * into buffer[].  Updating dbsi_skip means we don't sit here
    416   1.3   darrenr 		 * forever only getting the first chunk that fit in buffer[].
    417   1.3   darrenr 		 */
    418   1.3   darrenr 		dbsi.dbsi_buffer = (caddr_t)buffer;
    419   1.3   darrenr 		dbsi.dbsi_bufsize = sizeof(buffer);
    420   1.3   darrenr 		dbsi.dbsi_skip = 0;
    421   1.3   darrenr 		dbsi.dbsi_copied = 0;
    422   1.3   darrenr 		dbsi.dbsi_left = 0;
    423   1.3   darrenr 
    424   1.3   darrenr 		do {
    425   1.3   darrenr 			if (ioctl(fd, DIOCBSLIST, (caddr_t)&dbsi) == -1)
    426  1.22  christos 				err(EXIT_FAILURE, "%s: badsectors list", dvname);
    427   1.3   darrenr 
    428   1.3   darrenr 			dbs = (struct disk_badsectors *)dbsi.dbsi_buffer;
    429   1.3   darrenr 			for (count = dbsi.dbsi_copied; count > 0; count--) {
    430   1.6    martin 				tm = dbs->dbs_failedat.tv_sec;
    431   1.5       dsl 				printf("%s: blocks %" PRIdaddr " - %" PRIdaddr " failed at %s",
    432   1.3   darrenr 					dvname, dbs->dbs_min, dbs->dbs_max,
    433   1.6    martin 					ctime(&tm));
    434   1.4   darrenr 				dbs++;
    435   1.3   darrenr 			}
    436   1.3   darrenr 			dbsi.dbsi_skip += dbsi.dbsi_copied;
    437   1.3   darrenr 		} while (dbsi.dbsi_left != 0);
    438   1.3   darrenr 
    439  1.22  christos 	} else if (strcmp(argv[1], "flush") == 0) {
    440   1.3   darrenr 		if (ioctl(fd, DIOCBSFLUSH) == -1)
    441  1.22  christos 			err(EXIT_FAILURE, "%s: badsectors flush", dvname);
    442   1.3   darrenr 
    443  1.22  christos 	} else if (strcmp(argv[1], "retry") == 0) {
    444   1.3   darrenr 		/*
    445   1.3   darrenr 		 * Enforce use of raw device here because the block device
    446   1.3   darrenr 		 * causes access to blocks to be clustered in a larger group,
    447   1.3   darrenr 		 * making it impossible to determine which individual sectors
    448   1.3   darrenr 		 * are the cause of a problem.
    449   1.3   darrenr 		 */
    450   1.3   darrenr 		if (fstat(fd, &sb) == -1)
    451  1.22  christos 			err(EXIT_FAILURE, "fstat");
    452   1.3   darrenr 
    453   1.3   darrenr 		if (!S_ISCHR(sb.st_mode)) {
    454   1.3   darrenr 			fprintf(stderr, "'badsector retry' must be used %s\n",
    455   1.3   darrenr 				"with character device");
    456   1.3   darrenr 			exit(1);
    457   1.3   darrenr 		}
    458   1.3   darrenr 
    459   1.3   darrenr 		SLIST_INIT(&dbstop);
    460   1.3   darrenr 
    461   1.3   darrenr 		/*
    462   1.3   darrenr 		 * Build up a copy of the in-kernel list in a number of stages.
    463   1.3   darrenr 		 * That the list we build up here is in the reverse order to
    464   1.3   darrenr 		 * the kernel's is of no concern.
    465   1.3   darrenr 		 */
    466   1.3   darrenr 		dbsi.dbsi_buffer = (caddr_t)buffer;
    467   1.3   darrenr 		dbsi.dbsi_bufsize = sizeof(buffer);
    468   1.3   darrenr 		dbsi.dbsi_skip = 0;
    469   1.3   darrenr 		dbsi.dbsi_copied = 0;
    470   1.3   darrenr 		dbsi.dbsi_left = 0;
    471   1.3   darrenr 
    472   1.3   darrenr 		do {
    473   1.3   darrenr 			if (ioctl(fd, DIOCBSLIST, (caddr_t)&dbsi) == -1)
    474  1.22  christos 				err(EXIT_FAILURE, "%s: badsectors list", dvname);
    475   1.3   darrenr 
    476   1.3   darrenr 			dbs = (struct disk_badsectors *)dbsi.dbsi_buffer;
    477   1.3   darrenr 			for (count = dbsi.dbsi_copied; count > 0; count--) {
    478  1.14       dsl 				dbs2 = malloc(sizeof *dbs2);
    479  1.14       dsl 				if (dbs2 == NULL)
    480  1.22  christos 					err(EXIT_FAILURE, NULL);
    481   1.3   darrenr 				*dbs2 = *dbs;
    482   1.3   darrenr 				SLIST_INSERT_HEAD(&dbstop, dbs2, dbs_next);
    483   1.4   darrenr 				dbs++;
    484   1.3   darrenr 			}
    485   1.3   darrenr 			dbsi.dbsi_skip += dbsi.dbsi_copied;
    486   1.3   darrenr 		} while (dbsi.dbsi_left != 0);
    487   1.3   darrenr 
    488   1.3   darrenr 		/*
    489   1.3   darrenr 		 * Just calculate and print out something that will hopefully
    490   1.3   darrenr 		 * provide some useful information about what's going to take
    491   1.3   darrenr 		 * place next (if anything.)
    492   1.3   darrenr 		 */
    493   1.3   darrenr 		bad = 0;
    494   1.3   darrenr 		totbad = 0;
    495  1.13    rumble 		if ((block = calloc(1, DEV_BSIZE)) == NULL)
    496  1.22  christos 			err(EXIT_FAILURE, NULL);
    497   1.3   darrenr 		SLIST_FOREACH(dbs, &dbstop, dbs_next) {
    498   1.3   darrenr 			bad++;
    499   1.3   darrenr 			totbad += dbs->dbs_max - dbs->dbs_min + 1;
    500   1.3   darrenr 		}
    501   1.3   darrenr 
    502   1.3   darrenr 		printf("%s: bad sector clusters %"PRIdaddr
    503   1.3   darrenr 		    " total sectors %"PRIdaddr"\n", dvname, bad, totbad);
    504   1.3   darrenr 
    505   1.3   darrenr 		/*
    506   1.3   darrenr 		 * Clear out the kernel's list of bad sectors, ready for us
    507   1.3   darrenr 		 * to test all those it thought were bad.
    508   1.3   darrenr 		 */
    509   1.3   darrenr 		if (ioctl(fd, DIOCBSFLUSH) == -1)
    510  1.22  christos 			err(EXIT_FAILURE, "%s: badsectors flush", dvname);
    511   1.3   darrenr 
    512   1.3   darrenr 		printf("%s: bad sectors flushed\n", dvname);
    513   1.3   darrenr 
    514   1.3   darrenr 		/*
    515   1.3   darrenr 		 * For each entry we obtained from the kernel, retry each
    516   1.3   darrenr 		 * individual sector recorded as bad by seeking to it and
    517   1.3   darrenr 		 * attempting to read it in.  Print out a line item for each
    518   1.3   darrenr 		 * bad block we verify.
    519   1.3   darrenr 		 *
    520   1.3   darrenr 		 * PRIdaddr is used here because the type of dbs_max is daddr_t
    521   1.3   darrenr 		 * and that may be either a 32bit or 64bit number(!)
    522   1.3   darrenr 		 */
    523   1.3   darrenr 		SLIST_FOREACH(dbs, &dbstop, dbs_next) {
    524   1.3   darrenr 			printf("%s: Retrying %"PRIdaddr" - %"
    525   1.3   darrenr 			    PRIdaddr"\n", dvname, dbs->dbs_min, dbs->dbs_max);
    526   1.3   darrenr 
    527   1.3   darrenr 			for (blk = dbs->dbs_min; blk <= dbs->dbs_max; blk++) {
    528   1.3   darrenr 				if (lseek(fd, (off_t)blk * DEV_BSIZE,
    529   1.3   darrenr 				    SEEK_SET) == -1) {
    530   1.5       dsl 					warn("%s: lseek block %" PRIdaddr "",
    531   1.5       dsl 					    dvname, blk);
    532   1.3   darrenr 					continue;
    533   1.3   darrenr 				}
    534   1.3   darrenr 				printf("%s: block %"PRIdaddr" - ", dvname, blk);
    535   1.3   darrenr 				if (read(fd, block, DEV_BSIZE) != DEV_BSIZE)
    536   1.3   darrenr 					printf("failed\n");
    537   1.3   darrenr 				else
    538   1.3   darrenr 					printf("ok\n");
    539   1.3   darrenr 				fflush(stdout);
    540   1.3   darrenr 			}
    541   1.3   darrenr 		}
    542   1.3   darrenr 	}
    543   1.2      yamt }
    544   1.2      yamt 
    545  1.20     joerg static void
    546   1.9   thorpej disk_addwedge(int argc, char *argv[])
    547   1.9   thorpej {
    548   1.9   thorpej 	struct dkwedge_info dkw;
    549   1.9   thorpej 	char *cp;
    550   1.9   thorpej 	daddr_t start;
    551   1.9   thorpej 	uint64_t size;
    552   1.9   thorpej 
    553  1.22  christos 	if (argc != 5)
    554   1.9   thorpej 		usage();
    555   1.9   thorpej 
    556  1.19  dholland 	/* XXX Unicode: dkw_wname is supposed to be utf-8 */
    557  1.22  christos 	if (strlcpy((char *)dkw.dkw_wname, argv[1], sizeof(dkw.dkw_wname)) >=
    558  1.16  christos 	    sizeof(dkw.dkw_wname))
    559  1.22  christos 		errx(EXIT_FAILURE, "Wedge name too long; max %zd characters",
    560   1.9   thorpej 		    sizeof(dkw.dkw_wname) - 1);
    561   1.9   thorpej 
    562  1.22  christos 	if (strlcpy(dkw.dkw_ptype, argv[4], sizeof(dkw.dkw_ptype)) >=
    563  1.15      elad 	    sizeof(dkw.dkw_ptype))
    564  1.22  christos 		errx(EXIT_FAILURE, "Wedge partition type too long; max %zd characters",
    565   1.9   thorpej 		    sizeof(dkw.dkw_ptype) - 1);
    566   1.9   thorpej 
    567   1.9   thorpej 	errno = 0;
    568  1.22  christos 	start = strtoll(argv[2], &cp, 0);
    569   1.9   thorpej 	if (*cp != '\0')
    570  1.22  christos 		errx(EXIT_FAILURE, "Invalid start block: %s", argv[2]);
    571   1.9   thorpej 	if (errno == ERANGE && (start == LLONG_MAX ||
    572   1.9   thorpej 				start == LLONG_MIN))
    573  1.22  christos 		errx(EXIT_FAILURE, "Start block out of range.");
    574   1.9   thorpej 	if (start < 0)
    575  1.22  christos 		errx(EXIT_FAILURE, "Start block must be >= 0.");
    576   1.9   thorpej 
    577   1.9   thorpej 	errno = 0;
    578  1.22  christos 	size = strtoull(argv[3], &cp, 0);
    579   1.9   thorpej 	if (*cp != '\0')
    580  1.22  christos 		errx(EXIT_FAILURE, "Invalid block count: %s", argv[3]);
    581   1.9   thorpej 	if (errno == ERANGE && (size == ULLONG_MAX))
    582  1.22  christos 		errx(EXIT_FAILURE, "Block count out of range.");
    583   1.9   thorpej 
    584   1.9   thorpej 	dkw.dkw_offset = start;
    585   1.9   thorpej 	dkw.dkw_size = size;
    586   1.9   thorpej 
    587   1.9   thorpej 	if (ioctl(fd, DIOCAWEDGE, &dkw) == -1)
    588  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    589  1.18       spz 	else
    590  1.18       spz 		printf("%s created successfully.\n", dkw.dkw_devname);
    591  1.18       spz 
    592   1.9   thorpej }
    593   1.9   thorpej 
    594  1.20     joerg static void
    595   1.9   thorpej disk_delwedge(int argc, char *argv[])
    596   1.9   thorpej {
    597   1.9   thorpej 	struct dkwedge_info dkw;
    598   1.9   thorpej 
    599  1.22  christos 	if (argc != 2)
    600   1.9   thorpej 		usage();
    601   1.9   thorpej 
    602  1.22  christos 	if (strlcpy(dkw.dkw_devname, argv[1], sizeof(dkw.dkw_devname)) >=
    603  1.15      elad 	    sizeof(dkw.dkw_devname))
    604  1.22  christos 		errx(EXIT_FAILURE, "Wedge dk name too long; max %zd characters",
    605   1.9   thorpej 		    sizeof(dkw.dkw_devname) - 1);
    606   1.9   thorpej 
    607   1.9   thorpej 	if (ioctl(fd, DIOCDWEDGE, &dkw) == -1)
    608  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    609   1.9   thorpej }
    610   1.9   thorpej 
    611  1.20     joerg static void
    612   1.9   thorpej disk_getwedgeinfo(int argc, char *argv[])
    613   1.9   thorpej {
    614   1.9   thorpej 	struct dkwedge_info dkw;
    615   1.9   thorpej 
    616  1.22  christos 	if (argc != 1)
    617   1.9   thorpej 		usage();
    618   1.9   thorpej 
    619   1.9   thorpej 	if (ioctl(fd, DIOCGWEDGEINFO, &dkw) == -1)
    620  1.22  christos 		err(EXIT_FAILURE, "%s: getwedgeinfo", dvname);
    621   1.9   thorpej 
    622   1.9   thorpej 	printf("%s at %s: %s\n", dkw.dkw_devname, dkw.dkw_parent,
    623   1.9   thorpej 	    dkw.dkw_wname);	/* XXX Unicode */
    624  1.10    martin 	printf("%s: %"PRIu64" blocks at %"PRId64", type: %s\n",
    625   1.9   thorpej 	    dkw.dkw_devname, dkw.dkw_size, dkw.dkw_offset, dkw.dkw_ptype);
    626   1.9   thorpej }
    627   1.9   thorpej 
    628  1.20     joerg static void
    629   1.9   thorpej disk_listwedges(int argc, char *argv[])
    630   1.9   thorpej {
    631   1.9   thorpej 	struct dkwedge_info *dkw;
    632   1.9   thorpej 	struct dkwedge_list dkwl;
    633   1.9   thorpej 	size_t bufsize;
    634   1.9   thorpej 	u_int i;
    635  1.22  christos 	int c;
    636  1.22  christos 	bool error, quiet;
    637  1.22  christos 
    638  1.22  christos 	optreset = 1;
    639  1.22  christos 	optind = 1;
    640  1.22  christos 	quiet = error = false;
    641  1.22  christos 	while ((c = getopt(argc, argv, "qe")) != -1)
    642  1.22  christos 		switch (c) {
    643  1.22  christos 		case 'e':
    644  1.22  christos 			error = true;
    645  1.22  christos 			break;
    646  1.22  christos 		case 'q':
    647  1.22  christos 			quiet = true;
    648  1.22  christos 			break;
    649  1.22  christos 		default:
    650  1.22  christos 			usage();
    651  1.22  christos 		}
    652  1.22  christos 
    653  1.22  christos 	argc -= optind;
    654  1.22  christos 	argv += optind;
    655   1.9   thorpej 
    656   1.9   thorpej 	if (argc != 0)
    657   1.9   thorpej 		usage();
    658   1.9   thorpej 
    659   1.9   thorpej 	dkw = NULL;
    660   1.9   thorpej 	dkwl.dkwl_buf = dkw;
    661   1.9   thorpej 	dkwl.dkwl_bufsize = 0;
    662   1.9   thorpej 
    663   1.9   thorpej 	for (;;) {
    664   1.9   thorpej 		if (ioctl(fd, DIOCLWEDGES, &dkwl) == -1)
    665  1.22  christos 			err(EXIT_FAILURE, "%s: listwedges", dvname);
    666   1.9   thorpej 		if (dkwl.dkwl_nwedges == dkwl.dkwl_ncopied)
    667   1.9   thorpej 			break;
    668   1.9   thorpej 		bufsize = dkwl.dkwl_nwedges * sizeof(*dkw);
    669   1.9   thorpej 		if (dkwl.dkwl_bufsize < bufsize) {
    670   1.9   thorpej 			dkw = realloc(dkwl.dkwl_buf, bufsize);
    671   1.9   thorpej 			if (dkw == NULL)
    672  1.22  christos 				errx(EXIT_FAILURE, "%s: listwedges: unable to "
    673   1.9   thorpej 				    "allocate wedge info buffer", dvname);
    674   1.9   thorpej 			dkwl.dkwl_buf = dkw;
    675   1.9   thorpej 			dkwl.dkwl_bufsize = bufsize;
    676   1.9   thorpej 		}
    677   1.9   thorpej 	}
    678   1.9   thorpej 
    679   1.9   thorpej 	if (dkwl.dkwl_nwedges == 0) {
    680  1.22  christos 		if (!quiet)
    681  1.22  christos 			printf("%s: no wedges configured\n", dvname);
    682  1.22  christos 		if (error)
    683  1.22  christos 			exit(EXIT_FAILURE);
    684   1.9   thorpej 		return;
    685   1.9   thorpej 	}
    686   1.9   thorpej 
    687  1.26       kre 	if (quiet)
    688  1.26       kre 		return;
    689  1.26       kre 
    690  1.17  uebayasi 	qsort(dkw, dkwl.dkwl_nwedges, sizeof(*dkw), dkw_sort);
    691  1.17  uebayasi 
    692   1.9   thorpej 	printf("%s: %u wedge%s:\n", dvname, dkwl.dkwl_nwedges,
    693   1.9   thorpej 	    dkwl.dkwl_nwedges == 1 ? "" : "s");
    694   1.9   thorpej 	for (i = 0; i < dkwl.dkwl_nwedges; i++) {
    695  1.10    martin 		printf("%s: %s, %"PRIu64" blocks at %"PRId64", type: %s\n",
    696   1.9   thorpej 		    dkw[i].dkw_devname,
    697   1.9   thorpej 		    dkw[i].dkw_wname,	/* XXX Unicode */
    698   1.9   thorpej 		    dkw[i].dkw_size, dkw[i].dkw_offset, dkw[i].dkw_ptype);
    699   1.9   thorpej 	}
    700   1.9   thorpej }
    701   1.9   thorpej 
    702  1.21   mlelstv static void
    703  1.21   mlelstv disk_makewedges(int argc, char *argv[])
    704  1.21   mlelstv {
    705  1.21   mlelstv 	int bits;
    706  1.21   mlelstv 
    707  1.22  christos 	if (argc != 1)
    708  1.21   mlelstv 		usage();
    709  1.21   mlelstv 
    710  1.21   mlelstv 	if (ioctl(fd, DIOCMWEDGES, &bits) == -1)
    711  1.22  christos 		err(EXIT_FAILURE, "%s: %s", dvname, argv[0]);
    712  1.21   mlelstv 	else
    713  1.21   mlelstv 		printf("successfully scanned %s.\n", dvname);
    714  1.21   mlelstv }
    715  1.21   mlelstv 
    716  1.20     joerg static int
    717  1.17  uebayasi dkw_sort(const void *a, const void *b)
    718  1.17  uebayasi {
    719  1.17  uebayasi 	const struct dkwedge_info *dkwa = a, *dkwb = b;
    720  1.17  uebayasi 	const daddr_t oa = dkwa->dkw_offset, ob = dkwb->dkw_offset;
    721  1.17  uebayasi 
    722  1.17  uebayasi 	return (oa < ob) ? -1 : (oa > ob) ? 1 : 0;
    723  1.17  uebayasi }
    724  1.17  uebayasi 
    725   1.2      yamt /*
    726   1.2      yamt  * return YES, NO or -1.
    727   1.2      yamt  */
    728  1.20     joerg static int
    729   1.2      yamt yesno(const char *p)
    730   1.2      yamt {
    731   1.2      yamt 
    732   1.2      yamt 	if (!strcmp(p, YES_STR))
    733   1.2      yamt 		return YES;
    734   1.2      yamt 	if (!strcmp(p, NO_STR))
    735   1.2      yamt 		return NO;
    736   1.2      yamt 	return -1;
    737   1.1   thorpej }
    738