Home | History | Annotate | Line # | Download | only in raidctl
raidctl.c revision 1.2
      1  1.1   oster /*-
      2  1.1   oster  * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
      3  1.1   oster  * All rights reserved.
      4  1.1   oster  *
      5  1.1   oster  * This code is derived from software contributed to The NetBSD Foundation
      6  1.1   oster  * by Greg Oster
      7  1.1   oster  *
      8  1.1   oster  * Redistribution and use in source and binary forms, with or without
      9  1.1   oster  * modification, are permitted provided that the following conditions
     10  1.1   oster  * are met:
     11  1.1   oster  * 1. Redistributions of source code must retain the above copyright
     12  1.1   oster  *    notice, this list of conditions and the following disclaimer.
     13  1.1   oster  * 2. Redistributions in binary form must reproduce the above copyright
     14  1.1   oster  *    notice, this list of conditions and the following disclaimer in the
     15  1.1   oster  *    documentation and/or other materials provided with the distribution.
     16  1.1   oster  * 3. All advertising materials mentioning features or use of this software
     17  1.1   oster  *    must display the following acknowledgement:
     18  1.1   oster  *        This product includes software developed by the NetBSD
     19  1.1   oster  *        Foundation, Inc. and its contributors.
     20  1.1   oster  * 4. Neither the name of The NetBSD Foundation nor the names of its
     21  1.1   oster  *    contributors may be used to endorse or promote products derived
     22  1.1   oster  *    from this software without specific prior written permission.
     23  1.1   oster  *
     24  1.1   oster  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     25  1.1   oster  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     26  1.1   oster  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     27  1.1   oster  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     28  1.1   oster  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     29  1.1   oster  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     30  1.1   oster  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     31  1.1   oster  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     32  1.1   oster  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     33  1.1   oster  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     34  1.1   oster  * POSSIBILITY OF SUCH DAMAGE.
     35  1.1   oster  */
     36  1.1   oster 
     37  1.1   oster /*
     38  1.1   oster 
     39  1.1   oster    This program is a re-write of the original rf_ctrl program
     40  1.1   oster    distributed by CMU with RAIDframe 1.1.
     41  1.1   oster 
     42  1.1   oster    This program is the user-land interface to the RAIDframe kernel
     43  1.1   oster    driver in NetBSD.
     44  1.1   oster 
     45  1.1   oster  */
     46  1.1   oster 
     47  1.1   oster #include <sys/param.h>
     48  1.1   oster #include <sys/ioctl.h>
     49  1.1   oster #include <sys/stat.h>
     50  1.1   oster #include <util.h>
     51  1.1   oster #include <stdio.h>
     52  1.1   oster #include <fcntl.h>
     53  1.1   oster #include <ctype.h>
     54  1.1   oster #include <err.h>
     55  1.2  mjacob #include <errno.h>
     56  1.1   oster #include <sys/types.h>
     57  1.1   oster #include <string.h>
     58  1.1   oster #include <sys/disklabel.h>
     59  1.1   oster #include <machine/disklabel.h>
     60  1.1   oster #include "rf_raidframe.h"
     61  1.1   oster 
     62  1.1   oster extern  char *__progname;
     63  1.1   oster 
     64  1.1   oster int     main __P((int, char *[]));
     65  1.1   oster static  void do_ioctl __P((int, unsigned long, void *, char *));
     66  1.1   oster static  void rf_configure __P((int, char*));
     67  1.1   oster static  char *device_status __P((RF_DiskStatus_t));
     68  1.1   oster static  void rf_get_device_status __P((int));
     69  1.1   oster static  void rf_fail_disk __P((int, char *, int));
     70  1.1   oster static  void usage __P((void));
     71  1.1   oster 
     72  1.1   oster int
     73  1.1   oster main(argc,argv)
     74  1.1   oster 	int argc;
     75  1.1   oster 	char *argv[];
     76  1.1   oster {
     77  1.1   oster 	extern char *optarg;
     78  1.1   oster 	extern int optind;
     79  1.1   oster 	int ch;
     80  1.1   oster 	int num_options;
     81  1.1   oster 	unsigned long action;
     82  1.1   oster 	char config_filename[PATH_MAX];
     83  1.1   oster 	char dev_name[PATH_MAX];
     84  1.1   oster 	char name[PATH_MAX];
     85  1.1   oster 	char component_to_fail[PATH_MAX];
     86  1.1   oster 	int do_recon;
     87  1.1   oster 	int raidID;
     88  1.1   oster 	int rawpart;
     89  1.1   oster 	int recon_percent_done;
     90  1.1   oster 	struct stat st;
     91  1.1   oster 	int fd;
     92  1.1   oster 
     93  1.1   oster 	num_options = 0;
     94  1.1   oster 	action = 0;
     95  1.1   oster 	do_recon = 0;
     96  1.1   oster 
     97  1.1   oster 	while ((ch = getopt(argc, argv, "c:Cf:F:rRsu")) != -1)
     98  1.1   oster 		switch(ch) {
     99  1.1   oster 		case 'c':
    100  1.1   oster 			strncpy(config_filename,optarg,PATH_MAX);
    101  1.1   oster 			action = RAIDFRAME_CONFIGURE;
    102  1.1   oster 			num_options++;
    103  1.1   oster 			break;
    104  1.1   oster 		case 'C':
    105  1.1   oster 			action = RAIDFRAME_COPYBACK;
    106  1.1   oster 			num_options++;
    107  1.1   oster 			break;
    108  1.1   oster 		case 'f':
    109  1.1   oster 			action = RAIDFRAME_FAIL_DISK;
    110  1.1   oster 			do_recon = 0;
    111  1.1   oster 			strncpy(component_to_fail, optarg, PATH_MAX);
    112  1.1   oster 			num_options++;
    113  1.1   oster 			break;
    114  1.1   oster 		case 'F':
    115  1.1   oster 			action = RAIDFRAME_FAIL_DISK;
    116  1.1   oster 			do_recon = 1;
    117  1.1   oster 			strncpy(component_to_fail, optarg, PATH_MAX);
    118  1.1   oster 			num_options++;
    119  1.1   oster 			break;
    120  1.1   oster 		case 'r':
    121  1.1   oster 			action = RAIDFRAME_REWRITEPARITY;
    122  1.1   oster 			num_options++;
    123  1.1   oster 			break;
    124  1.1   oster 		case 'R':
    125  1.1   oster 			action = RAIDFRAME_CHECKRECON;
    126  1.1   oster 			num_options++;
    127  1.1   oster 			break;
    128  1.1   oster 		case 's':
    129  1.1   oster 			action = RAIDFRAME_GET_INFO;
    130  1.1   oster 			num_options++;
    131  1.1   oster 			break;
    132  1.1   oster 		case 'u':
    133  1.1   oster 			action = RAIDFRAME_SHUTDOWN;
    134  1.1   oster 			num_options++;
    135  1.1   oster 			break;
    136  1.1   oster 		default:
    137  1.1   oster 			usage();
    138  1.1   oster 		}
    139  1.1   oster 	argc -= optind;
    140  1.1   oster 	argv += optind;
    141  1.1   oster 
    142  1.1   oster 	if ((num_options > 1) || (argc == NULL))
    143  1.1   oster 		usage();
    144  1.1   oster 
    145  1.1   oster 	strncpy(name,argv[0],PATH_MAX);
    146  1.1   oster 
    147  1.1   oster 	if ((name[0] == '/') || (name[0] == '.')) {
    148  1.1   oster 		/* they've (apparently) given a full path... */
    149  1.1   oster 		strncpy(dev_name, name, PATH_MAX);
    150  1.1   oster 	} else {
    151  1.1   oster 		if (isdigit(name[strlen(name)-1])) {
    152  1.1   oster 			rawpart = getrawpartition();
    153  1.1   oster 			snprintf(dev_name,PATH_MAX,"/dev/%s%c",name,
    154  1.1   oster 				 'a'+rawpart);
    155  1.1   oster 		} else {
    156  1.1   oster 			snprintf(dev_name,PATH_MAX,"/dev/%s",name);
    157  1.1   oster 		}
    158  1.1   oster 	}
    159  1.1   oster 
    160  1.1   oster 	if (stat(dev_name, &st) != 0) {
    161  1.1   oster 		fprintf(stderr,"%s: stat failure on: %s\n",
    162  1.1   oster 			__progname,dev_name);
    163  1.1   oster 		return (errno);
    164  1.1   oster 	}
    165  1.1   oster 	if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) {
    166  1.1   oster 		fprintf(stderr,"%s: invalid device: %s\n",
    167  1.1   oster 			__progname,dev_name);
    168  1.1   oster 		return (EINVAL);
    169  1.1   oster 	}
    170  1.1   oster 
    171  1.1   oster 	raidID = RF_DEV2RAIDID(st.st_rdev);
    172  1.1   oster 
    173  1.1   oster 	if ((fd = open( dev_name, O_RDWR, 0640)) < 0) {
    174  1.1   oster 		fprintf(stderr, "%s: unable to open device file: %s\n",
    175  1.1   oster 			__progname, dev_name);
    176  1.1   oster 		exit(1);
    177  1.1   oster 	}
    178  1.1   oster 
    179  1.1   oster 
    180  1.1   oster 	switch(action) {
    181  1.1   oster 	case RAIDFRAME_CONFIGURE:
    182  1.1   oster 		rf_configure(fd, config_filename);
    183  1.1   oster 		break;
    184  1.1   oster 	case RAIDFRAME_COPYBACK:
    185  1.1   oster 		printf("Copyback.\n");
    186  1.1   oster 		do_ioctl(fd, RAIDFRAME_COPYBACK, NULL, "RAIDFRAME_COPYBACK");
    187  1.1   oster 		break;
    188  1.1   oster 	case RAIDFRAME_FAIL_DISK:
    189  1.1   oster 		rf_fail_disk(fd,component_to_fail,do_recon);
    190  1.1   oster 		break;
    191  1.1   oster 	case RAIDFRAME_REWRITEPARITY:
    192  1.1   oster 		printf("Initiating re-write of parity\n");
    193  1.1   oster 		do_ioctl(fd, RAIDFRAME_REWRITEPARITY, NULL,
    194  1.1   oster 			 "RAIDFRAME_REWRITEPARITY");
    195  1.1   oster 		break;
    196  1.1   oster 	case RAIDFRAME_CHECKRECON:
    197  1.1   oster 		do_ioctl(fd, RAIDFRAME_CHECKRECON, &recon_percent_done,
    198  1.1   oster 			 "RAIDFRAME_CHECKRECON");
    199  1.1   oster 		printf("Reconstruction is %d%% complete.\n",
    200  1.1   oster 		       recon_percent_done);
    201  1.1   oster 		break;
    202  1.1   oster 	case RAIDFRAME_GET_INFO:
    203  1.1   oster 		rf_get_device_status(fd);
    204  1.1   oster 		break;
    205  1.1   oster 	case RAIDFRAME_SHUTDOWN:
    206  1.1   oster 		do_ioctl(fd, RAIDFRAME_SHUTDOWN, NULL, "RAIDFRAME_SHUTDOWN");
    207  1.1   oster 		break;
    208  1.1   oster 	default:
    209  1.1   oster 		break;
    210  1.1   oster 	}
    211  1.1   oster 
    212  1.1   oster 	close(fd);
    213  1.1   oster 	exit(0);
    214  1.1   oster }
    215  1.1   oster 
    216  1.1   oster static void
    217  1.1   oster do_ioctl(fd, command, arg, ioctl_name)
    218  1.1   oster 	int fd;
    219  1.1   oster 	unsigned long command;
    220  1.1   oster 	void *arg;
    221  1.1   oster 	char *ioctl_name;
    222  1.1   oster {
    223  1.1   oster 	if (ioctl(fd, command, arg) < 0) {
    224  1.1   oster 		warn("ioctl (%s) failed", ioctl_name);
    225  1.1   oster 		exit(1);
    226  1.1   oster 	}
    227  1.1   oster }
    228  1.1   oster 
    229  1.1   oster 
    230  1.1   oster static void
    231  1.1   oster rf_configure(fd,config_file)
    232  1.1   oster 	int fd;
    233  1.1   oster 	char *config_file;
    234  1.1   oster {
    235  1.1   oster 	void *generic;
    236  1.1   oster 	RF_Config_t cfg;
    237  1.1   oster 
    238  1.1   oster 	if (rf_MakeConfig( config_file, &cfg ) < 0) {
    239  1.1   oster 		fprintf(stderr,"%s: unable to create RAIDframe %s\n",
    240  1.1   oster 			__progname, "configuration structure\n");
    241  1.1   oster 		exit(1);
    242  1.1   oster 	}
    243  1.1   oster 
    244  1.1   oster 	/*
    245  1.1   oster 
    246  1.1   oster 	   Note the extra level of redirection needed here, since
    247  1.1   oster 	   what we really want to pass in is a pointer to the pointer to
    248  1.1   oster 	   the configuration structure.
    249  1.1   oster 
    250  1.1   oster 	 */
    251  1.1   oster 
    252  1.1   oster 	generic = (void *) &cfg;
    253  1.1   oster 	do_ioctl(fd,RAIDFRAME_CONFIGURE,&generic,"RAIDFRAME_CONFIGURE");
    254  1.1   oster #if 0
    255  1.1   oster 	if (ioctl(fd, RAIDFRAME_CONFIGURE, &generic) < 0) {
    256  1.1   oster 		warn("ioctl (RAIDFRAME_CONFIGURE): failed\n");
    257  1.1   oster 		exit(1);
    258  1.1   oster 	}
    259  1.1   oster #endif
    260  1.1   oster }
    261  1.1   oster 
    262  1.1   oster static char *
    263  1.1   oster device_status(status)
    264  1.1   oster 	RF_DiskStatus_t status;
    265  1.1   oster {
    266  1.1   oster 	static char status_string[256];
    267  1.1   oster 
    268  1.1   oster 	switch (status) {
    269  1.1   oster 	case rf_ds_optimal:
    270  1.1   oster 		strcpy(status_string,"optimal");
    271  1.1   oster 		break;
    272  1.1   oster 	case rf_ds_failed:
    273  1.1   oster 		strcpy(status_string,"failed");
    274  1.1   oster 		break;
    275  1.1   oster 	case rf_ds_reconstructing:
    276  1.1   oster 		strcpy(status_string,"reconstructing");
    277  1.1   oster 		break;
    278  1.1   oster 	case rf_ds_dist_spared:
    279  1.1   oster 		strcpy(status_string,"dist_spared");
    280  1.1   oster 		break;
    281  1.1   oster 	case rf_ds_spared:
    282  1.1   oster 		strcpy(status_string,"spared");
    283  1.1   oster 		break;
    284  1.1   oster 	case rf_ds_spare:
    285  1.1   oster 		strcpy(status_string,"spare");
    286  1.1   oster 		break;
    287  1.1   oster 	case rf_ds_used_spare:
    288  1.1   oster 		strcpy(status_string,"used_spare");
    289  1.1   oster 		break;
    290  1.1   oster 	default:
    291  1.1   oster 		strcpy(status_string,"UNKNOWN");
    292  1.1   oster 		break;
    293  1.1   oster 	}
    294  1.1   oster 	return(status_string);
    295  1.1   oster }
    296  1.1   oster 
    297  1.1   oster static void
    298  1.1   oster rf_get_device_status(fd)
    299  1.1   oster 	int fd;
    300  1.1   oster {
    301  1.1   oster 	RF_DeviceConfig_t device_config;
    302  1.1   oster 	void *cfg_ptr;
    303  1.1   oster 	int i;
    304  1.1   oster 
    305  1.1   oster 	cfg_ptr = &device_config;
    306  1.1   oster 
    307  1.1   oster 	do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr, "RAIDFRAME_GET_INFO");
    308  1.1   oster 
    309  1.1   oster 	printf("Components:\n");
    310  1.1   oster 	for(i=0; i < device_config.ndevs; i++) {
    311  1.1   oster 		printf("%20s: %s\n", device_config.devs[i].devname,
    312  1.1   oster 		       device_status(device_config.devs[i].status));
    313  1.1   oster 	}
    314  1.1   oster 	if (device_config.nspares > 0) {
    315  1.1   oster 		printf("Spares:\n");
    316  1.1   oster 		for(i=0; i < device_config.nspares; i++) {
    317  1.1   oster 			printf("%20s [%d][%d]: %s\n",
    318  1.1   oster 			       device_config.spares[i].devname,
    319  1.1   oster 			       device_config.spares[i].spareRow,
    320  1.1   oster  			       device_config.spares[i].spareCol,
    321  1.1   oster 			       device_status(device_config.spares[i].status));
    322  1.1   oster 		}
    323  1.1   oster 	} else {
    324  1.1   oster 		printf("No spares.\n");
    325  1.1   oster 	}
    326  1.1   oster 
    327  1.1   oster }
    328  1.1   oster 
    329  1.1   oster static void
    330  1.1   oster rf_fail_disk(fd, component_to_fail, do_recon)
    331  1.1   oster 	int fd;
    332  1.1   oster 	char *component_to_fail;
    333  1.1   oster 	int do_recon;
    334  1.1   oster {
    335  1.1   oster 	struct rf_recon_req recon_request;
    336  1.1   oster 	RF_DeviceConfig_t device_config;
    337  1.1   oster 	void *cfg_ptr;
    338  1.1   oster 	int i;
    339  1.1   oster 	int found;
    340  1.1   oster 	int component_num;
    341  1.1   oster 
    342  1.1   oster 	component_num = -1;
    343  1.1   oster 
    344  1.1   oster 	/* Assuming a full path spec... */
    345  1.1   oster 	cfg_ptr = &device_config;
    346  1.1   oster 	do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr,
    347  1.1   oster 		 "RAIDFRAME_GET_INFO");
    348  1.1   oster 	found = 0;
    349  1.1   oster 	for(i=0; i < device_config.ndevs; i++) {
    350  1.1   oster 		if (strncmp(component_to_fail,
    351  1.1   oster 			    device_config.devs[i].devname,
    352  1.1   oster 			    PATH_MAX)==0) {
    353  1.1   oster 			found = 1;
    354  1.1   oster 			component_num = i;
    355  1.1   oster 		}
    356  1.1   oster 	}
    357  1.1   oster 	if (!found) {
    358  1.1   oster 		fprintf(stderr,"%s: %s is not a component %s",
    359  1.1   oster 			__progname, component_to_fail,
    360  1.1   oster 			"of this device\n");
    361  1.1   oster 		exit(1);
    362  1.1   oster 	}
    363  1.1   oster 
    364  1.1   oster 	recon_request.row = component_num / device_config.cols;
    365  1.1   oster 	recon_request.col = component_num % device_config.cols;
    366  1.1   oster 	if (do_recon) {
    367  1.1   oster 		recon_request.flags = RF_FDFLAGS_RECON;
    368  1.1   oster 	} else {
    369  1.1   oster 		recon_request.flags = RF_FDFLAGS_NONE;
    370  1.1   oster 	}
    371  1.1   oster 	do_ioctl(fd, RAIDFRAME_FAIL_DISK, &recon_request,
    372  1.1   oster 		 "RAIDFRAME_FAIL_DISK");
    373  1.1   oster 
    374  1.1   oster }
    375  1.1   oster 
    376  1.1   oster static void
    377  1.1   oster usage()
    378  1.1   oster {
    379  1.1   oster 	fprintf(stderr, "usage: %s -c config_file dev\n", __progname);
    380  1.1   oster 	fprintf(stderr, "       %s -C dev\n", __progname);
    381  1.1   oster 	fprintf(stderr, "       %s -f component dev\n", __progname);
    382  1.1   oster 	fprintf(stderr, "       %s -F component dev\n", __progname);
    383  1.1   oster 	fprintf(stderr, "       %s -r dev\n", __progname);
    384  1.1   oster 	fprintf(stderr, "       %s -R dev\n", __progname);
    385  1.1   oster 	fprintf(stderr, "       %s -s dev\n", __progname);
    386  1.1   oster 	fprintf(stderr, "       %s -u dev\n", __progname);
    387  1.1   oster 	exit(1);
    388  1.1   oster 	/* NOTREACHED */
    389  1.1   oster }
    390