raidctl.c revision 1.25 1 1.25 lukem /* $NetBSD: raidctl.c,v 1.25 2000/10/31 14:18:39 lukem Exp $ */
2 1.18 thorpej
3 1.1 oster /*-
4 1.1 oster * Copyright (c) 1996, 1997, 1998 The NetBSD Foundation, Inc.
5 1.1 oster * All rights reserved.
6 1.1 oster *
7 1.1 oster * This code is derived from software contributed to The NetBSD Foundation
8 1.1 oster * by Greg Oster
9 1.1 oster *
10 1.1 oster * Redistribution and use in source and binary forms, with or without
11 1.1 oster * modification, are permitted provided that the following conditions
12 1.1 oster * are met:
13 1.1 oster * 1. Redistributions of source code must retain the above copyright
14 1.1 oster * notice, this list of conditions and the following disclaimer.
15 1.1 oster * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 oster * notice, this list of conditions and the following disclaimer in the
17 1.1 oster * documentation and/or other materials provided with the distribution.
18 1.1 oster * 3. All advertising materials mentioning features or use of this software
19 1.1 oster * must display the following acknowledgement:
20 1.1 oster * This product includes software developed by the NetBSD
21 1.1 oster * Foundation, Inc. and its contributors.
22 1.1 oster * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 oster * contributors may be used to endorse or promote products derived
24 1.1 oster * from this software without specific prior written permission.
25 1.1 oster *
26 1.1 oster * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 oster * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 oster * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 oster * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 oster * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 oster * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 oster * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 oster * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 oster * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 oster * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 oster * POSSIBILITY OF SUCH DAMAGE.
37 1.1 oster */
38 1.1 oster
39 1.1 oster /*
40 1.18 thorpej * This program is a re-write of the original rf_ctrl program
41 1.18 thorpej * distributed by CMU with RAIDframe 1.1.
42 1.18 thorpej *
43 1.18 thorpej * This program is the user-land interface to the RAIDframe kernel
44 1.18 thorpej * driver in NetBSD.
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.18 thorpej #include <sys/disklabel.h>
51 1.18 thorpej
52 1.1 oster #include <ctype.h>
53 1.1 oster #include <err.h>
54 1.2 mjacob #include <errno.h>
55 1.25 lukem #include <fcntl.h>
56 1.25 lukem #include <stdio.h>
57 1.25 lukem #include <stdlib.h>
58 1.1 oster #include <string.h>
59 1.3 oster #include <unistd.h>
60 1.25 lukem #include <util.h>
61 1.3 oster
62 1.1 oster #include "rf_raidframe.h"
63 1.1 oster
64 1.1 oster extern char *__progname;
65 1.1 oster
66 1.1 oster int main __P((int, char *[]));
67 1.18 thorpej void do_ioctl __P((int, u_long, void *, const char *));
68 1.5 oster static void rf_configure __P((int, char*, int));
69 1.18 thorpej static const char *device_status __P((RF_DiskStatus_t));
70 1.1 oster static void rf_get_device_status __P((int));
71 1.6 oster static void get_component_number __P((int, char *, int *, int *));
72 1.1 oster static void rf_fail_disk __P((int, char *, int));
73 1.1 oster static void usage __P((void));
74 1.5 oster static void get_component_label __P((int, char *));
75 1.5 oster static void set_component_label __P((int, char *));
76 1.5 oster static void init_component_labels __P((int, int));
77 1.12 oster static void set_autoconfig __P((int, int, char *));
78 1.5 oster static void add_hot_spare __P((int, char *));
79 1.6 oster static void remove_hot_spare __P((int, char *));
80 1.6 oster static void rebuild_in_place __P((int, char *));
81 1.14 oster static void check_status __P((int,int));
82 1.18 thorpej static void check_parity __P((int,int, char *));
83 1.17 thorpej static void do_meter __P((int, u_long));
84 1.10 oster static void get_bar __P((char *, double, int));
85 1.10 oster static void get_time_string __P((char *, int));
86 1.10 oster
87 1.18 thorpej int verbose;
88 1.1 oster
89 1.1 oster int
90 1.1 oster main(argc,argv)
91 1.1 oster int argc;
92 1.1 oster char *argv[];
93 1.1 oster {
94 1.1 oster int ch;
95 1.1 oster int num_options;
96 1.1 oster unsigned long action;
97 1.1 oster char config_filename[PATH_MAX];
98 1.1 oster char dev_name[PATH_MAX];
99 1.1 oster char name[PATH_MAX];
100 1.5 oster char component[PATH_MAX];
101 1.12 oster char autoconf[10];
102 1.1 oster int do_recon;
103 1.7 oster int do_rewrite;
104 1.7 oster int is_clean;
105 1.1 oster int raidID;
106 1.5 oster int serial_number;
107 1.1 oster struct stat st;
108 1.1 oster int fd;
109 1.5 oster int force;
110 1.1 oster
111 1.1 oster num_options = 0;
112 1.1 oster action = 0;
113 1.1 oster do_recon = 0;
114 1.7 oster do_rewrite = 0;
115 1.7 oster is_clean = 0;
116 1.5 oster force = 0;
117 1.1 oster
118 1.12 oster while ((ch = getopt(argc, argv, "a:A:Bc:C:f:F:g:iI:l:r:R:sSpPuv"))
119 1.12 oster != -1)
120 1.1 oster switch(ch) {
121 1.5 oster case 'a':
122 1.5 oster action = RAIDFRAME_ADD_HOT_SPARE;
123 1.5 oster strncpy(component, optarg, PATH_MAX);
124 1.5 oster num_options++;
125 1.5 oster break;
126 1.12 oster case 'A':
127 1.12 oster action = RAIDFRAME_SET_AUTOCONFIG;
128 1.12 oster strncpy(autoconf, optarg, 10);
129 1.12 oster num_options++;
130 1.12 oster break;
131 1.6 oster case 'B':
132 1.6 oster action = RAIDFRAME_COPYBACK;
133 1.6 oster num_options++;
134 1.6 oster break;
135 1.1 oster case 'c':
136 1.6 oster action = RAIDFRAME_CONFIGURE;
137 1.1 oster strncpy(config_filename,optarg,PATH_MAX);
138 1.6 oster force = 0;
139 1.1 oster num_options++;
140 1.1 oster break;
141 1.1 oster case 'C':
142 1.6 oster strncpy(config_filename,optarg,PATH_MAX);
143 1.6 oster action = RAIDFRAME_CONFIGURE;
144 1.6 oster force = 1;
145 1.1 oster num_options++;
146 1.1 oster break;
147 1.1 oster case 'f':
148 1.1 oster action = RAIDFRAME_FAIL_DISK;
149 1.6 oster strncpy(component, optarg, PATH_MAX);
150 1.1 oster do_recon = 0;
151 1.1 oster num_options++;
152 1.1 oster break;
153 1.1 oster case 'F':
154 1.1 oster action = RAIDFRAME_FAIL_DISK;
155 1.6 oster strncpy(component, optarg, PATH_MAX);
156 1.1 oster do_recon = 1;
157 1.5 oster num_options++;
158 1.5 oster break;
159 1.5 oster case 'g':
160 1.5 oster action = RAIDFRAME_GET_COMPONENT_LABEL;
161 1.5 oster strncpy(component, optarg, PATH_MAX);
162 1.5 oster num_options++;
163 1.5 oster break;
164 1.6 oster case 'i':
165 1.6 oster action = RAIDFRAME_REWRITEPARITY;
166 1.6 oster num_options++;
167 1.6 oster break;
168 1.5 oster case 'I':
169 1.5 oster action = RAIDFRAME_INIT_LABELS;
170 1.5 oster serial_number = atoi(optarg);
171 1.5 oster num_options++;
172 1.5 oster break;
173 1.6 oster case 'l':
174 1.5 oster action = RAIDFRAME_SET_COMPONENT_LABEL;
175 1.5 oster strncpy(component, optarg, PATH_MAX);
176 1.1 oster num_options++;
177 1.1 oster break;
178 1.1 oster case 'r':
179 1.6 oster action = RAIDFRAME_REMOVE_HOT_SPARE;
180 1.6 oster strncpy(component, optarg, PATH_MAX);
181 1.1 oster num_options++;
182 1.1 oster break;
183 1.1 oster case 'R':
184 1.6 oster strncpy(component,optarg,PATH_MAX);
185 1.6 oster action = RAIDFRAME_REBUILD_IN_PLACE;
186 1.1 oster num_options++;
187 1.1 oster break;
188 1.1 oster case 's':
189 1.1 oster action = RAIDFRAME_GET_INFO;
190 1.1 oster num_options++;
191 1.1 oster break;
192 1.6 oster case 'S':
193 1.19 oster action = RAIDFRAME_CHECK_RECON_STATUS_EXT;
194 1.6 oster num_options++;
195 1.6 oster break;
196 1.7 oster case 'p':
197 1.7 oster action = RAIDFRAME_CHECK_PARITY;
198 1.7 oster num_options++;
199 1.7 oster break;
200 1.7 oster case 'P':
201 1.7 oster action = RAIDFRAME_CHECK_PARITY;
202 1.7 oster do_rewrite = 1;
203 1.7 oster num_options++;
204 1.7 oster break;
205 1.1 oster case 'u':
206 1.1 oster action = RAIDFRAME_SHUTDOWN;
207 1.1 oster num_options++;
208 1.1 oster break;
209 1.10 oster case 'v':
210 1.10 oster verbose = 1;
211 1.10 oster /* Don't bump num_options, as '-v' is not
212 1.10 oster an option like the others */
213 1.10 oster /* num_options++; */
214 1.10 oster break;
215 1.1 oster default:
216 1.1 oster usage();
217 1.1 oster }
218 1.1 oster argc -= optind;
219 1.1 oster argv += optind;
220 1.1 oster
221 1.1 oster if ((num_options > 1) || (argc == NULL))
222 1.1 oster usage();
223 1.1 oster
224 1.1 oster strncpy(name,argv[0],PATH_MAX);
225 1.25 lukem fd = opendisk(name, O_RDWR, dev_name, sizeof(dev_name), 1);
226 1.25 lukem if (fd == -1) {
227 1.25 lukem fprintf(stderr, "%s: unable to open device file: %s\n",
228 1.25 lukem __progname, name);
229 1.25 lukem exit(1);
230 1.25 lukem }
231 1.25 lukem if (fstat(fd, &st) != 0) {
232 1.1 oster fprintf(stderr,"%s: stat failure on: %s\n",
233 1.25 lukem __progname, dev_name);
234 1.25 lukem exit(1);
235 1.1 oster }
236 1.1 oster if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode)) {
237 1.1 oster fprintf(stderr,"%s: invalid device: %s\n",
238 1.1 oster __progname,dev_name);
239 1.25 lukem exit(1);
240 1.1 oster }
241 1.1 oster
242 1.1 oster raidID = RF_DEV2RAIDID(st.st_rdev);
243 1.1 oster
244 1.1 oster switch(action) {
245 1.5 oster case RAIDFRAME_ADD_HOT_SPARE:
246 1.12 oster add_hot_spare(fd, component);
247 1.5 oster break;
248 1.6 oster case RAIDFRAME_REMOVE_HOT_SPARE:
249 1.12 oster remove_hot_spare(fd, component);
250 1.6 oster break;
251 1.1 oster case RAIDFRAME_CONFIGURE:
252 1.12 oster rf_configure(fd, config_filename, force);
253 1.12 oster break;
254 1.12 oster case RAIDFRAME_SET_AUTOCONFIG:
255 1.12 oster set_autoconfig(fd, raidID, autoconf);
256 1.1 oster break;
257 1.1 oster case RAIDFRAME_COPYBACK:
258 1.1 oster printf("Copyback.\n");
259 1.1 oster do_ioctl(fd, RAIDFRAME_COPYBACK, NULL, "RAIDFRAME_COPYBACK");
260 1.10 oster if (verbose) {
261 1.10 oster sleep(3); /* XXX give the copyback a chance to start */
262 1.10 oster printf("Copyback status:\n");
263 1.19 oster do_meter(fd,RAIDFRAME_CHECK_COPYBACK_STATUS_EXT);
264 1.10 oster }
265 1.1 oster break;
266 1.1 oster case RAIDFRAME_FAIL_DISK:
267 1.12 oster rf_fail_disk(fd, component, do_recon);
268 1.5 oster break;
269 1.5 oster case RAIDFRAME_SET_COMPONENT_LABEL:
270 1.12 oster set_component_label(fd, component);
271 1.5 oster break;
272 1.5 oster case RAIDFRAME_GET_COMPONENT_LABEL:
273 1.12 oster get_component_label(fd, component);
274 1.5 oster break;
275 1.5 oster case RAIDFRAME_INIT_LABELS:
276 1.12 oster init_component_labels(fd, serial_number);
277 1.1 oster break;
278 1.1 oster case RAIDFRAME_REWRITEPARITY:
279 1.1 oster printf("Initiating re-write of parity\n");
280 1.1 oster do_ioctl(fd, RAIDFRAME_REWRITEPARITY, NULL,
281 1.1 oster "RAIDFRAME_REWRITEPARITY");
282 1.10 oster if (verbose) {
283 1.10 oster sleep(3); /* XXX give it time to get started */
284 1.10 oster printf("Parity Re-write status:\n");
285 1.19 oster do_meter(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
286 1.10 oster }
287 1.1 oster break;
288 1.19 oster case RAIDFRAME_CHECK_RECON_STATUS_EXT:
289 1.14 oster check_status(fd,1);
290 1.1 oster break;
291 1.1 oster case RAIDFRAME_GET_INFO:
292 1.1 oster rf_get_device_status(fd);
293 1.1 oster break;
294 1.6 oster case RAIDFRAME_REBUILD_IN_PLACE:
295 1.12 oster rebuild_in_place(fd, component);
296 1.6 oster break;
297 1.7 oster case RAIDFRAME_CHECK_PARITY:
298 1.12 oster check_parity(fd, do_rewrite, dev_name);
299 1.7 oster break;
300 1.1 oster case RAIDFRAME_SHUTDOWN:
301 1.1 oster do_ioctl(fd, RAIDFRAME_SHUTDOWN, NULL, "RAIDFRAME_SHUTDOWN");
302 1.1 oster break;
303 1.1 oster default:
304 1.1 oster break;
305 1.1 oster }
306 1.1 oster
307 1.1 oster close(fd);
308 1.1 oster exit(0);
309 1.1 oster }
310 1.1 oster
311 1.10 oster void
312 1.1 oster do_ioctl(fd, command, arg, ioctl_name)
313 1.1 oster int fd;
314 1.1 oster unsigned long command;
315 1.1 oster void *arg;
316 1.17 thorpej const char *ioctl_name;
317 1.1 oster {
318 1.1 oster if (ioctl(fd, command, arg) < 0) {
319 1.1 oster warn("ioctl (%s) failed", ioctl_name);
320 1.1 oster exit(1);
321 1.1 oster }
322 1.1 oster }
323 1.1 oster
324 1.1 oster
325 1.1 oster static void
326 1.5 oster rf_configure(fd,config_file,force)
327 1.1 oster int fd;
328 1.1 oster char *config_file;
329 1.5 oster int force;
330 1.1 oster {
331 1.1 oster void *generic;
332 1.1 oster RF_Config_t cfg;
333 1.1 oster
334 1.9 oster if (rf_MakeConfig( config_file, &cfg ) != 0) {
335 1.1 oster fprintf(stderr,"%s: unable to create RAIDframe %s\n",
336 1.1 oster __progname, "configuration structure\n");
337 1.1 oster exit(1);
338 1.1 oster }
339 1.1 oster
340 1.6 oster cfg.force = force;
341 1.6 oster
342 1.1 oster /*
343 1.18 thorpej * Note the extra level of redirection needed here, since
344 1.18 thorpej * what we really want to pass in is a pointer to the pointer to
345 1.18 thorpej * the configuration structure.
346 1.1 oster */
347 1.1 oster
348 1.1 oster generic = (void *) &cfg;
349 1.6 oster do_ioctl(fd, RAIDFRAME_CONFIGURE, &generic, "RAIDFRAME_CONFIGURE");
350 1.1 oster }
351 1.1 oster
352 1.18 thorpej static const char *
353 1.1 oster device_status(status)
354 1.1 oster RF_DiskStatus_t status;
355 1.1 oster {
356 1.1 oster
357 1.1 oster switch (status) {
358 1.1 oster case rf_ds_optimal:
359 1.18 thorpej return ("optimal");
360 1.1 oster break;
361 1.1 oster case rf_ds_failed:
362 1.18 thorpej return ("failed");
363 1.1 oster break;
364 1.1 oster case rf_ds_reconstructing:
365 1.18 thorpej return ("reconstructing");
366 1.1 oster break;
367 1.1 oster case rf_ds_dist_spared:
368 1.18 thorpej return ("dist_spared");
369 1.1 oster break;
370 1.1 oster case rf_ds_spared:
371 1.18 thorpej return ("spared");
372 1.1 oster break;
373 1.1 oster case rf_ds_spare:
374 1.18 thorpej return ("spare");
375 1.1 oster break;
376 1.1 oster case rf_ds_used_spare:
377 1.18 thorpej return ("used_spare");
378 1.1 oster break;
379 1.1 oster default:
380 1.18 thorpej return ("UNKNOWN");
381 1.1 oster }
382 1.18 thorpej /* NOTREACHED */
383 1.1 oster }
384 1.1 oster
385 1.1 oster static void
386 1.1 oster rf_get_device_status(fd)
387 1.1 oster int fd;
388 1.1 oster {
389 1.1 oster RF_DeviceConfig_t device_config;
390 1.1 oster void *cfg_ptr;
391 1.8 oster int is_clean;
392 1.1 oster int i;
393 1.1 oster
394 1.1 oster cfg_ptr = &device_config;
395 1.1 oster
396 1.1 oster do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr, "RAIDFRAME_GET_INFO");
397 1.1 oster
398 1.1 oster printf("Components:\n");
399 1.1 oster for(i=0; i < device_config.ndevs; i++) {
400 1.1 oster printf("%20s: %s\n", device_config.devs[i].devname,
401 1.1 oster device_status(device_config.devs[i].status));
402 1.1 oster }
403 1.1 oster if (device_config.nspares > 0) {
404 1.1 oster printf("Spares:\n");
405 1.1 oster for(i=0; i < device_config.nspares; i++) {
406 1.5 oster printf("%20s: %s\n",
407 1.1 oster device_config.spares[i].devname,
408 1.1 oster device_status(device_config.spares[i].status));
409 1.1 oster }
410 1.1 oster } else {
411 1.1 oster printf("No spares.\n");
412 1.8 oster }
413 1.14 oster for(i=0; i < device_config.ndevs; i++) {
414 1.14 oster if (device_config.devs[i].status == rf_ds_optimal) {
415 1.14 oster get_component_label(fd, device_config.devs[i].devname);
416 1.14 oster } else {
417 1.14 oster printf("%s status is: %s. Skipping label.\n",
418 1.14 oster device_config.devs[i].devname,
419 1.14 oster device_status(device_config.devs[i].status));
420 1.14 oster }
421 1.14 oster }
422 1.23 oster
423 1.21 oster if (device_config.nspares > 0) {
424 1.21 oster for(i=0; i < device_config.nspares; i++) {
425 1.21 oster if ((device_config.spares[i].status ==
426 1.21 oster rf_ds_optimal) ||
427 1.21 oster (device_config.spares[i].status ==
428 1.21 oster rf_ds_used_spare)) {
429 1.21 oster get_component_label(fd,
430 1.21 oster device_config.spares[i].devname);
431 1.21 oster } else {
432 1.21 oster printf("%s status is: %s. Skipping label.\n",
433 1.21 oster device_config.spares[i].devname,
434 1.21 oster device_status(device_config.spares[i].status));
435 1.21 oster }
436 1.21 oster }
437 1.21 oster }
438 1.23 oster
439 1.8 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITY, &is_clean,
440 1.8 oster "RAIDFRAME_CHECK_PARITY");
441 1.8 oster if (is_clean) {
442 1.8 oster printf("Parity status: clean\n");
443 1.8 oster } else {
444 1.8 oster printf("Parity status: DIRTY\n");
445 1.1 oster }
446 1.14 oster check_status(fd,0);
447 1.1 oster }
448 1.1 oster
449 1.1 oster static void
450 1.6 oster get_component_number(fd, component_name, component_number, num_columns)
451 1.1 oster int fd;
452 1.6 oster char *component_name;
453 1.6 oster int *component_number;
454 1.6 oster int *num_columns;
455 1.1 oster {
456 1.1 oster RF_DeviceConfig_t device_config;
457 1.1 oster void *cfg_ptr;
458 1.1 oster int i;
459 1.1 oster int found;
460 1.1 oster
461 1.6 oster *component_number = -1;
462 1.1 oster
463 1.1 oster /* Assuming a full path spec... */
464 1.1 oster cfg_ptr = &device_config;
465 1.1 oster do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr,
466 1.1 oster "RAIDFRAME_GET_INFO");
467 1.6 oster
468 1.6 oster *num_columns = device_config.cols;
469 1.6 oster
470 1.1 oster found = 0;
471 1.1 oster for(i=0; i < device_config.ndevs; i++) {
472 1.6 oster if (strncmp(component_name, device_config.devs[i].devname,
473 1.1 oster PATH_MAX)==0) {
474 1.1 oster found = 1;
475 1.6 oster *component_number = i;
476 1.1 oster }
477 1.1 oster }
478 1.21 oster if (!found) { /* maybe it's a spare? */
479 1.21 oster for(i=0; i < device_config.nspares; i++) {
480 1.21 oster if (strncmp(component_name,
481 1.21 oster device_config.spares[i].devname,
482 1.21 oster PATH_MAX)==0) {
483 1.21 oster found = 1;
484 1.21 oster *component_number = i + device_config.ndevs;
485 1.23 oster /* the way spares are done should
486 1.23 oster really change... */
487 1.23 oster *num_columns = device_config.cols +
488 1.23 oster device_config.nspares;
489 1.21 oster }
490 1.21 oster }
491 1.21 oster }
492 1.21 oster
493 1.1 oster if (!found) {
494 1.6 oster fprintf(stderr,"%s: %s is not a component %s", __progname,
495 1.6 oster component_name, "of this device\n");
496 1.1 oster exit(1);
497 1.1 oster }
498 1.6 oster }
499 1.6 oster
500 1.6 oster static void
501 1.6 oster rf_fail_disk(fd, component_to_fail, do_recon)
502 1.6 oster int fd;
503 1.6 oster char *component_to_fail;
504 1.6 oster int do_recon;
505 1.6 oster {
506 1.6 oster struct rf_recon_req recon_request;
507 1.6 oster int component_num;
508 1.6 oster int num_cols;
509 1.6 oster
510 1.6 oster get_component_number(fd, component_to_fail, &component_num, &num_cols);
511 1.1 oster
512 1.6 oster recon_request.row = component_num / num_cols;
513 1.6 oster recon_request.col = component_num % num_cols;
514 1.1 oster if (do_recon) {
515 1.1 oster recon_request.flags = RF_FDFLAGS_RECON;
516 1.1 oster } else {
517 1.1 oster recon_request.flags = RF_FDFLAGS_NONE;
518 1.1 oster }
519 1.1 oster do_ioctl(fd, RAIDFRAME_FAIL_DISK, &recon_request,
520 1.1 oster "RAIDFRAME_FAIL_DISK");
521 1.10 oster if (do_recon && verbose) {
522 1.10 oster printf("Reconstruction status:\n");
523 1.10 oster sleep(3); /* XXX give reconstruction a chance to start */
524 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
525 1.10 oster }
526 1.1 oster }
527 1.1 oster
528 1.1 oster static void
529 1.5 oster get_component_label(fd, component)
530 1.5 oster int fd;
531 1.5 oster char *component;
532 1.5 oster {
533 1.5 oster RF_ComponentLabel_t component_label;
534 1.5 oster void *label_ptr;
535 1.5 oster int component_num;
536 1.6 oster int num_cols;
537 1.5 oster
538 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
539 1.5 oster
540 1.5 oster memset( &component_label, 0, sizeof(RF_ComponentLabel_t));
541 1.6 oster component_label.row = component_num / num_cols;
542 1.6 oster component_label.column = component_num % num_cols;
543 1.5 oster
544 1.5 oster label_ptr = &component_label;
545 1.5 oster do_ioctl( fd, RAIDFRAME_GET_COMPONENT_LABEL, &label_ptr,
546 1.5 oster "RAIDFRAME_GET_COMPONENT_LABEL");
547 1.5 oster
548 1.5 oster printf("Component label for %s:\n",component);
549 1.12 oster
550 1.25 lukem printf(" Row: %d, Column: %d, Num Rows: %d, Num Columns: %d\n",
551 1.12 oster component_label.row, component_label.column,
552 1.12 oster component_label.num_rows, component_label.num_columns);
553 1.25 lukem printf(" Version: %d, Serial Number: %d, Mod Counter: %d\n",
554 1.12 oster component_label.version, component_label.serial_number,
555 1.12 oster component_label.mod_counter);
556 1.25 lukem printf(" Clean: %s, Status: %d\n",
557 1.12 oster component_label.clean ? "Yes" : "No",
558 1.12 oster component_label.status );
559 1.25 lukem printf(" sectPerSU: %d, SUsPerPU: %d, SUsPerRU: %d\n",
560 1.12 oster component_label.sectPerSU, component_label.SUsPerPU,
561 1.12 oster component_label.SUsPerRU);
562 1.25 lukem printf(" Queue size: %d, blocksize: %d, numBlocks: %d\n",
563 1.25 lukem component_label.maxOutstanding, component_label.blockSize,
564 1.25 lukem component_label.numBlocks);
565 1.25 lukem printf(" RAID Level: %c\n", (char) component_label.parityConfig);
566 1.12 oster printf(" Autoconfig: %s\n",
567 1.12 oster component_label.autoconfigure ? "Yes" : "No" );
568 1.15 oster printf(" Root partition: %s\n",
569 1.15 oster component_label.root_partition ? "Yes" : "No" );
570 1.12 oster printf(" Last configured as: raid%d\n", component_label.last_unit );
571 1.5 oster }
572 1.5 oster
573 1.5 oster static void
574 1.5 oster set_component_label(fd, component)
575 1.5 oster int fd;
576 1.5 oster char *component;
577 1.5 oster {
578 1.5 oster RF_ComponentLabel_t component_label;
579 1.5 oster int component_num;
580 1.6 oster int num_cols;
581 1.5 oster
582 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
583 1.6 oster
584 1.6 oster /* XXX This is currently here for testing, and future expandability */
585 1.5 oster
586 1.5 oster component_label.version = 1;
587 1.5 oster component_label.serial_number = 123456;
588 1.5 oster component_label.mod_counter = 0;
589 1.6 oster component_label.row = component_num / num_cols;
590 1.6 oster component_label.column = component_num % num_cols;
591 1.5 oster component_label.num_rows = 0;
592 1.5 oster component_label.num_columns = 5;
593 1.5 oster component_label.clean = 0;
594 1.5 oster component_label.status = 1;
595 1.5 oster
596 1.5 oster do_ioctl( fd, RAIDFRAME_SET_COMPONENT_LABEL, &component_label,
597 1.5 oster "RAIDFRAME_SET_COMPONENT_LABEL");
598 1.5 oster }
599 1.5 oster
600 1.5 oster
601 1.5 oster static void
602 1.5 oster init_component_labels(fd, serial_number)
603 1.5 oster int fd;
604 1.5 oster int serial_number;
605 1.5 oster {
606 1.5 oster RF_ComponentLabel_t component_label;
607 1.5 oster
608 1.5 oster component_label.version = 0;
609 1.5 oster component_label.serial_number = serial_number;
610 1.5 oster component_label.mod_counter = 0;
611 1.5 oster component_label.row = 0;
612 1.5 oster component_label.column = 0;
613 1.5 oster component_label.num_rows = 0;
614 1.5 oster component_label.num_columns = 0;
615 1.5 oster component_label.clean = 0;
616 1.5 oster component_label.status = 0;
617 1.5 oster
618 1.5 oster do_ioctl( fd, RAIDFRAME_INIT_LABELS, &component_label,
619 1.5 oster "RAIDFRAME_SET_COMPONENT_LABEL");
620 1.12 oster }
621 1.12 oster
622 1.12 oster static void
623 1.12 oster set_autoconfig(fd, raidID, autoconf)
624 1.12 oster int fd;
625 1.12 oster int raidID;
626 1.12 oster char *autoconf;
627 1.12 oster {
628 1.12 oster int auto_config;
629 1.12 oster int root_config;
630 1.12 oster
631 1.12 oster auto_config = 0;
632 1.12 oster root_config = 0;
633 1.12 oster
634 1.12 oster if (strncasecmp(autoconf,"root", 4) == 0) {
635 1.12 oster root_config = 1;
636 1.12 oster }
637 1.12 oster
638 1.12 oster if ((strncasecmp(autoconf,"yes", 3) == 0) ||
639 1.12 oster root_config == 1) {
640 1.12 oster auto_config = 1;
641 1.12 oster }
642 1.12 oster
643 1.12 oster do_ioctl(fd, RAIDFRAME_SET_AUTOCONFIG, &auto_config,
644 1.12 oster "RAIDFRAME_SET_AUTOCONFIG");
645 1.12 oster
646 1.12 oster do_ioctl(fd, RAIDFRAME_SET_ROOT, &root_config,
647 1.12 oster "RAIDFRAME_SET_ROOT");
648 1.12 oster
649 1.12 oster printf("raid%d: Autoconfigure: %s\n", raidID,
650 1.12 oster auto_config ? "Yes" : "No");
651 1.12 oster
652 1.12 oster if (root_config == 1) {
653 1.12 oster printf("raid%d: Root: %s\n", raidID,
654 1.12 oster auto_config ? "Yes" : "No");
655 1.12 oster }
656 1.5 oster }
657 1.5 oster
658 1.5 oster static void
659 1.5 oster add_hot_spare(fd, component)
660 1.5 oster int fd;
661 1.5 oster char *component;
662 1.5 oster {
663 1.6 oster RF_SingleComponent_t hot_spare;
664 1.5 oster
665 1.6 oster hot_spare.row = 0;
666 1.6 oster hot_spare.column = 0;
667 1.6 oster strncpy(hot_spare.component_name, component,
668 1.6 oster sizeof(hot_spare.component_name));
669 1.5 oster
670 1.5 oster do_ioctl( fd, RAIDFRAME_ADD_HOT_SPARE, &hot_spare,
671 1.5 oster "RAIDFRAME_ADD_HOT_SPARE");
672 1.6 oster }
673 1.6 oster
674 1.6 oster static void
675 1.6 oster remove_hot_spare(fd, component)
676 1.6 oster int fd;
677 1.6 oster char *component;
678 1.6 oster {
679 1.6 oster RF_SingleComponent_t hot_spare;
680 1.6 oster int component_num;
681 1.6 oster int num_cols;
682 1.5 oster
683 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
684 1.6 oster
685 1.6 oster hot_spare.row = component_num / num_cols;
686 1.6 oster hot_spare.column = component_num % num_cols;
687 1.6 oster
688 1.6 oster strncpy(hot_spare.component_name, component,
689 1.6 oster sizeof(hot_spare.component_name));
690 1.6 oster
691 1.6 oster do_ioctl( fd, RAIDFRAME_REMOVE_HOT_SPARE, &hot_spare,
692 1.6 oster "RAIDFRAME_REMOVE_HOT_SPARE");
693 1.6 oster }
694 1.6 oster
695 1.6 oster static void
696 1.6 oster rebuild_in_place( fd, component )
697 1.6 oster int fd;
698 1.6 oster char *component;
699 1.6 oster {
700 1.6 oster RF_SingleComponent_t comp;
701 1.6 oster int component_num;
702 1.6 oster int num_cols;
703 1.6 oster
704 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
705 1.6 oster
706 1.6 oster comp.row = 0;
707 1.6 oster comp.column = component_num;
708 1.6 oster strncpy(comp.component_name, component, sizeof(comp.component_name));
709 1.6 oster
710 1.6 oster do_ioctl( fd, RAIDFRAME_REBUILD_IN_PLACE, &comp,
711 1.6 oster "RAIDFRAME_REBUILD_IN_PLACE");
712 1.10 oster
713 1.10 oster if (verbose) {
714 1.10 oster printf("Reconstruction status:\n");
715 1.10 oster sleep(3); /* XXX give reconstruction a chance to start */
716 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
717 1.10 oster }
718 1.10 oster
719 1.10 oster }
720 1.10 oster
721 1.10 oster static void
722 1.10 oster check_parity( fd, do_rewrite, dev_name )
723 1.10 oster int fd;
724 1.10 oster int do_rewrite;
725 1.10 oster char *dev_name;
726 1.10 oster {
727 1.10 oster int is_clean;
728 1.10 oster int percent_done;
729 1.10 oster
730 1.10 oster is_clean = 0;
731 1.10 oster percent_done = 0;
732 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITY, &is_clean,
733 1.10 oster "RAIDFRAME_CHECK_PARITY");
734 1.10 oster if (is_clean) {
735 1.10 oster printf("%s: Parity status: clean\n",dev_name);
736 1.10 oster } else {
737 1.10 oster printf("%s: Parity status: DIRTY\n",dev_name);
738 1.10 oster if (do_rewrite) {
739 1.10 oster printf("%s: Initiating re-write of parity\n",
740 1.10 oster dev_name);
741 1.10 oster do_ioctl(fd, RAIDFRAME_REWRITEPARITY, NULL,
742 1.10 oster "RAIDFRAME_REWRITEPARITY");
743 1.10 oster sleep(3); /* XXX give it time to
744 1.10 oster get started. */
745 1.10 oster if (verbose) {
746 1.10 oster printf("Parity Re-write status:\n");
747 1.19 oster do_meter(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
748 1.10 oster } else {
749 1.10 oster do_ioctl(fd,
750 1.10 oster RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
751 1.10 oster &percent_done,
752 1.10 oster "RAIDFRAME_CHECK_PARITYREWRITE_STATUS"
753 1.10 oster );
754 1.10 oster while( percent_done < 100 ) {
755 1.24 oster sleep(3); /* wait a bit... */
756 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
757 1.10 oster &percent_done, "RAIDFRAME_CHECK_PARITYREWRITE_STATUS");
758 1.10 oster }
759 1.10 oster
760 1.10 oster }
761 1.10 oster printf("%s: Parity Re-write complete\n",
762 1.10 oster dev_name);
763 1.10 oster } else {
764 1.10 oster /* parity is wrong, and is not being fixed.
765 1.10 oster Exit w/ an error. */
766 1.10 oster exit(1);
767 1.10 oster }
768 1.10 oster }
769 1.10 oster }
770 1.10 oster
771 1.10 oster
772 1.10 oster static void
773 1.14 oster check_status( fd, meter )
774 1.10 oster int fd;
775 1.14 oster int meter;
776 1.10 oster {
777 1.10 oster int recon_percent_done = 0;
778 1.10 oster int parity_percent_done = 0;
779 1.10 oster int copyback_percent_done = 0;
780 1.10 oster
781 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_RECON_STATUS, &recon_percent_done,
782 1.10 oster "RAIDFRAME_CHECK_RECON_STATUS");
783 1.10 oster printf("Reconstruction is %d%% complete.\n", recon_percent_done);
784 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
785 1.10 oster &parity_percent_done,
786 1.10 oster "RAIDFRAME_CHECK_PARITYREWRITE_STATUS");
787 1.10 oster printf("Parity Re-write is %d%% complete.\n", parity_percent_done);
788 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_COPYBACK_STATUS, ©back_percent_done,
789 1.10 oster "RAIDFRAME_CHECK_COPYBACK_STATUS");
790 1.10 oster printf("Copyback is %d%% complete.\n", copyback_percent_done);
791 1.10 oster
792 1.14 oster if (meter) {
793 1.14 oster /* These 3 should be mutually exclusive at this point */
794 1.14 oster if (recon_percent_done < 100) {
795 1.14 oster printf("Reconstruction status:\n");
796 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
797 1.14 oster } else if (parity_percent_done < 100) {
798 1.14 oster printf("Parity Re-write status:\n");
799 1.19 oster do_meter(fd,RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
800 1.14 oster } else if (copyback_percent_done < 100) {
801 1.14 oster printf("Copyback status:\n");
802 1.19 oster do_meter(fd,RAIDFRAME_CHECK_COPYBACK_STATUS_EXT);
803 1.14 oster }
804 1.10 oster }
805 1.10 oster }
806 1.10 oster
807 1.18 thorpej const char *tbits = "|/-\\";
808 1.10 oster
809 1.10 oster static void
810 1.17 thorpej do_meter(fd, option)
811 1.10 oster int fd;
812 1.17 thorpej u_long option;
813 1.10 oster {
814 1.10 oster int percent_done;
815 1.19 oster int last_value;
816 1.19 oster int start_value;
817 1.19 oster RF_ProgressInfo_t progressInfo;
818 1.19 oster void *pInfoPtr;
819 1.10 oster struct timeval start_time;
820 1.10 oster struct timeval last_time;
821 1.10 oster struct timeval current_time;
822 1.10 oster double elapsed;
823 1.10 oster int elapsed_sec;
824 1.10 oster int elapsed_usec;
825 1.20 oster int simple_eta,last_eta;
826 1.10 oster double rate;
827 1.20 oster int amount;
828 1.10 oster int tbit_value;
829 1.10 oster int wait_for_more_data;
830 1.10 oster char buffer[1024];
831 1.10 oster char bar_buffer[1024];
832 1.10 oster char eta_buffer[1024];
833 1.10 oster
834 1.10 oster if (gettimeofday(&start_time,NULL)) {
835 1.10 oster fprintf(stderr,"%s: gettimeofday failed!?!?\n",__progname);
836 1.10 oster exit(errno);
837 1.10 oster }
838 1.19 oster memset(&progressInfo, 0, sizeof(RF_ProgressInfo_t));
839 1.19 oster pInfoPtr=&progressInfo;
840 1.19 oster
841 1.10 oster percent_done = 0;
842 1.19 oster do_ioctl(fd, option, &pInfoPtr, "");
843 1.19 oster last_value = progressInfo.completed;
844 1.19 oster start_value = last_value;
845 1.10 oster last_time = start_time;
846 1.10 oster current_time = start_time;
847 1.10 oster
848 1.10 oster wait_for_more_data = 0;
849 1.10 oster tbit_value = 0;
850 1.19 oster while(progressInfo.completed < progressInfo.total) {
851 1.10 oster
852 1.19 oster percent_done = (progressInfo.completed * 100) /
853 1.19 oster progressInfo.total;
854 1.10 oster
855 1.10 oster get_bar(bar_buffer, percent_done, 40);
856 1.10 oster
857 1.20 oster elapsed_sec = current_time.tv_sec - start_time.tv_sec;
858 1.20 oster elapsed_usec = current_time.tv_usec - start_time.tv_usec;
859 1.10 oster if (elapsed_usec < 0) {
860 1.10 oster elapsed_usec-=1000000;
861 1.10 oster elapsed_sec++;
862 1.10 oster }
863 1.20 oster
864 1.10 oster elapsed = (double) elapsed_sec +
865 1.10 oster (double) elapsed_usec / 1000000.0;
866 1.19 oster
867 1.20 oster amount = progressInfo.completed - start_value;
868 1.19 oster
869 1.10 oster if (amount <= 0) { /* we don't do negatives (yet?) */
870 1.10 oster amount = 0;
871 1.10 oster wait_for_more_data = 1;
872 1.10 oster } else {
873 1.10 oster wait_for_more_data = 0;
874 1.10 oster }
875 1.20 oster
876 1.22 oster if (elapsed == 0)
877 1.22 oster rate = 0.0;
878 1.22 oster else
879 1.22 oster rate = amount / elapsed;
880 1.10 oster
881 1.10 oster if (rate > 0.0) {
882 1.19 oster simple_eta = (int) (((double)progressInfo.total -
883 1.20 oster (double) progressInfo.completed)
884 1.19 oster / rate);
885 1.10 oster } else {
886 1.10 oster simple_eta = -1;
887 1.10 oster }
888 1.19 oster
889 1.10 oster if (simple_eta <=0) {
890 1.10 oster simple_eta = last_eta;
891 1.10 oster } else {
892 1.10 oster last_eta = simple_eta;
893 1.10 oster }
894 1.10 oster
895 1.20 oster get_time_string(eta_buffer, simple_eta);
896 1.10 oster
897 1.10 oster snprintf(buffer,1024,"\r%3d%% |%s| ETA: %s %c",
898 1.10 oster percent_done,bar_buffer,eta_buffer,tbits[tbit_value]);
899 1.10 oster
900 1.10 oster write(fileno(stdout),buffer,strlen(buffer));
901 1.10 oster fflush(stdout);
902 1.10 oster
903 1.10 oster /* resolution wasn't high enough... wait until we get another
904 1.10 oster timestamp and perhaps more "work" done. */
905 1.10 oster
906 1.10 oster if (!wait_for_more_data) {
907 1.10 oster last_time = current_time;
908 1.19 oster last_value = progressInfo.completed;
909 1.10 oster }
910 1.10 oster
911 1.10 oster if (++tbit_value>3)
912 1.10 oster tbit_value = 0;
913 1.10 oster
914 1.10 oster sleep(2);
915 1.10 oster
916 1.10 oster if (gettimeofday(¤t_time,NULL)) {
917 1.10 oster fprintf(stderr,"%s: gettimeofday failed!?!?\n",
918 1.10 oster __progname);
919 1.10 oster exit(errno);
920 1.10 oster }
921 1.10 oster
922 1.19 oster do_ioctl( fd, option, &pInfoPtr, "");
923 1.10 oster
924 1.10 oster
925 1.10 oster }
926 1.10 oster printf("\n");
927 1.10 oster }
928 1.10 oster /* 40 '*''s per line, then 40 ' ''s line. */
929 1.10 oster /* If you've got a screen wider than 160 characters, "tough" */
930 1.10 oster
931 1.10 oster #define STAR_MIDPOINT 4*40
932 1.10 oster const char stars[] = "****************************************"
933 1.10 oster "****************************************"
934 1.10 oster "****************************************"
935 1.10 oster "****************************************"
936 1.10 oster " "
937 1.10 oster " "
938 1.10 oster " "
939 1.10 oster " "
940 1.10 oster " ";
941 1.10 oster
942 1.10 oster static void
943 1.10 oster get_bar(string,percent,max_strlen)
944 1.10 oster char *string;
945 1.10 oster double percent;
946 1.10 oster int max_strlen;
947 1.10 oster {
948 1.10 oster int offset;
949 1.10 oster
950 1.10 oster if (max_strlen > STAR_MIDPOINT) {
951 1.10 oster max_strlen = STAR_MIDPOINT;
952 1.10 oster }
953 1.10 oster offset = STAR_MIDPOINT -
954 1.10 oster (int)((percent * max_strlen)/ 100);
955 1.10 oster if (offset < 0)
956 1.10 oster offset = 0;
957 1.10 oster snprintf(string,max_strlen,"%s",&stars[offset]);
958 1.10 oster }
959 1.10 oster
960 1.10 oster static void
961 1.10 oster get_time_string(string,simple_time)
962 1.10 oster char *string;
963 1.10 oster int simple_time;
964 1.10 oster {
965 1.10 oster int minutes, seconds, hours;
966 1.10 oster char hours_buffer[5];
967 1.10 oster char minutes_buffer[5];
968 1.10 oster char seconds_buffer[5];
969 1.10 oster
970 1.10 oster if (simple_time >= 0) {
971 1.10 oster
972 1.10 oster minutes = (int) simple_time / 60;
973 1.10 oster seconds = ((int)simple_time - 60*minutes);
974 1.10 oster hours = minutes / 60;
975 1.10 oster minutes = minutes - 60*hours;
976 1.10 oster
977 1.10 oster if (hours > 0) {
978 1.10 oster snprintf(hours_buffer,5,"%02d:",hours);
979 1.10 oster } else {
980 1.10 oster snprintf(hours_buffer,5," ");
981 1.10 oster }
982 1.10 oster
983 1.10 oster snprintf(minutes_buffer,5,"%02d:",minutes);
984 1.10 oster snprintf(seconds_buffer,5,"%02d",seconds);
985 1.10 oster snprintf(string,1024,"%s%s%s",
986 1.10 oster hours_buffer, minutes_buffer, seconds_buffer);
987 1.10 oster } else {
988 1.10 oster snprintf(string,1024," --:--");
989 1.10 oster }
990 1.10 oster
991 1.5 oster }
992 1.5 oster
993 1.5 oster static void
994 1.1 oster usage()
995 1.1 oster {
996 1.10 oster fprintf(stderr, "usage: %s [-v] -a component dev\n", __progname);
997 1.13 oster fprintf(stderr, " %s [-v] -A yes | no | root dev\n", __progname);
998 1.10 oster fprintf(stderr, " %s [-v] -B dev\n", __progname);
999 1.10 oster fprintf(stderr, " %s [-v] -c config_file dev\n", __progname);
1000 1.10 oster fprintf(stderr, " %s [-v] -C config_file dev\n", __progname);
1001 1.10 oster fprintf(stderr, " %s [-v] -f component dev\n", __progname);
1002 1.10 oster fprintf(stderr, " %s [-v] -F component dev\n", __progname);
1003 1.10 oster fprintf(stderr, " %s [-v] -g component dev\n", __progname);
1004 1.10 oster fprintf(stderr, " %s [-v] -i dev\n", __progname);
1005 1.10 oster fprintf(stderr, " %s [-v] -I serial_number dev\n", __progname);
1006 1.10 oster fprintf(stderr, " %s [-v] -r component dev\n", __progname);
1007 1.10 oster fprintf(stderr, " %s [-v] -R component dev\n", __progname);
1008 1.10 oster fprintf(stderr, " %s [-v] -s dev\n", __progname);
1009 1.10 oster fprintf(stderr, " %s [-v] -S dev\n", __progname);
1010 1.10 oster fprintf(stderr, " %s [-v] -u dev\n", __progname);
1011 1.6 oster #if 0
1012 1.6 oster fprintf(stderr, "usage: %s %s\n", __progname,
1013 1.6 oster "-a | -f | -F | -g | -r | -R component dev");
1014 1.6 oster fprintf(stderr, " %s -B | -i | -s | -S -u dev\n", __progname);
1015 1.6 oster fprintf(stderr, " %s -c | -C config_file dev\n", __progname);
1016 1.6 oster fprintf(stderr, " %s -I serial_number dev\n", __progname);
1017 1.5 oster #endif
1018 1.1 oster exit(1);
1019 1.1 oster /* NOTREACHED */
1020 1.1 oster }
1021