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