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