raidctl.c revision 1.78 1 1.75 kre /* $NetBSD: raidctl.c,v 1.78 2022/06/14 08:06:18 kre 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 *
19 1.1 oster * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20 1.1 oster * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21 1.1 oster * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22 1.1 oster * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23 1.1 oster * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24 1.1 oster * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25 1.1 oster * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26 1.1 oster * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27 1.1 oster * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 1.1 oster * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29 1.1 oster * POSSIBILITY OF SUCH DAMAGE.
30 1.1 oster */
31 1.1 oster
32 1.1 oster /*
33 1.18 thorpej * This program is a re-write of the original rf_ctrl program
34 1.18 thorpej * distributed by CMU with RAIDframe 1.1.
35 1.18 thorpej *
36 1.18 thorpej * This program is the user-land interface to the RAIDframe kernel
37 1.18 thorpej * driver in NetBSD.
38 1.1 oster */
39 1.33 agc #include <sys/cdefs.h>
40 1.33 agc
41 1.33 agc #ifndef lint
42 1.75 kre __RCSID("$NetBSD: raidctl.c,v 1.78 2022/06/14 08:06:18 kre Exp $");
43 1.33 agc #endif
44 1.33 agc
45 1.1 oster
46 1.1 oster #include <sys/param.h>
47 1.1 oster #include <sys/ioctl.h>
48 1.1 oster #include <sys/stat.h>
49 1.18 thorpej #include <sys/disklabel.h>
50 1.18 thorpej
51 1.1 oster #include <ctype.h>
52 1.1 oster #include <err.h>
53 1.2 mjacob #include <errno.h>
54 1.25 lukem #include <fcntl.h>
55 1.25 lukem #include <stdio.h>
56 1.25 lukem #include <stdlib.h>
57 1.1 oster #include <string.h>
58 1.59 christos #include <inttypes.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.50 pooka #include "prog_ops.h"
66 1.1 oster
67 1.78 kre #define CONFIGURE_TEST 1 /* must be different from any raidframe ioctl */
68 1.78 kre
69 1.36 xtraeme void do_ioctl(int, u_long, void *, const char *);
70 1.36 xtraeme static void rf_configure(int, char*, int);
71 1.36 xtraeme static const char *device_status(RF_DiskStatus_t);
72 1.36 xtraeme static void rf_get_device_status(int);
73 1.36 xtraeme static void rf_output_configuration(int, const char *);
74 1.36 xtraeme static void get_component_number(int, char *, int *, int *);
75 1.36 xtraeme static void rf_fail_disk(int, char *, int);
76 1.53 joerg __dead static void usage(void);
77 1.36 xtraeme static void get_component_label(int, char *);
78 1.36 xtraeme static void set_component_label(int, char *);
79 1.36 xtraeme static void init_component_labels(int, int);
80 1.36 xtraeme static void set_autoconfig(int, int, char *);
81 1.36 xtraeme static void add_hot_spare(int, char *);
82 1.36 xtraeme static void remove_hot_spare(int, char *);
83 1.36 xtraeme static void rebuild_in_place(int, char *);
84 1.36 xtraeme static void check_status(int,int);
85 1.36 xtraeme static void check_parity(int,int, char *);
86 1.36 xtraeme static void do_meter(int, u_long);
87 1.36 xtraeme static void get_bar(char *, double, int);
88 1.68 mrg static void get_time_string(char *, size_t, int);
89 1.42 jld static void rf_output_pmstat(int, int);
90 1.42 jld static void rf_pm_configure(int, int, char *, int[]);
91 1.59 christos static unsigned int xstrtouint(const char *);
92 1.10 oster
93 1.18 thorpej int verbose;
94 1.1 oster
95 1.57 christos static const char *rootpart[] = { "No", "Force", "Soft", "*invalid*" };
96 1.57 christos
97 1.72 mlelstv static void
98 1.72 mlelstv get_comp(char *buf, char *arg, size_t bufsz)
99 1.72 mlelstv {
100 1.72 mlelstv if (getfsspecname(buf, bufsz, arg) == NULL)
101 1.72 mlelstv errx(1,"%s",buf);
102 1.72 mlelstv }
103 1.72 mlelstv
104 1.1 oster int
105 1.36 xtraeme main(int argc,char *argv[])
106 1.1 oster {
107 1.42 jld int ch, i;
108 1.1 oster int num_options;
109 1.1 oster unsigned long action;
110 1.1 oster char config_filename[PATH_MAX];
111 1.1 oster char dev_name[PATH_MAX];
112 1.1 oster char name[PATH_MAX];
113 1.5 oster char component[PATH_MAX];
114 1.12 oster char autoconf[10];
115 1.42 jld char *parityconf = NULL;
116 1.42 jld int parityparams[3];
117 1.27 lukem int do_output;
118 1.1 oster int do_recon;
119 1.7 oster int do_rewrite;
120 1.1 oster int raidID;
121 1.5 oster int serial_number;
122 1.1 oster struct stat st;
123 1.1 oster int fd;
124 1.5 oster int force;
125 1.30 simonb int openmode;
126 1.64 christos int last_unit;
127 1.1 oster
128 1.1 oster num_options = 0;
129 1.1 oster action = 0;
130 1.27 lukem do_output = 0;
131 1.1 oster do_recon = 0;
132 1.7 oster do_rewrite = 0;
133 1.38 lukem serial_number = 0;
134 1.5 oster force = 0;
135 1.64 christos last_unit = 0;
136 1.30 simonb openmode = O_RDWR; /* default to read/write */
137 1.1 oster
138 1.78 kre while ((ch = getopt(argc, argv,
139 1.78 kre "a:A:Bc:C:f:F:g:GiI:l:LmM:r:R:sSpPt:uU:v")) != -1)
140 1.78 kre switch (ch) {
141 1.5 oster case 'a':
142 1.5 oster action = RAIDFRAME_ADD_HOT_SPARE;
143 1.72 mlelstv get_comp(component, optarg, sizeof(component));
144 1.5 oster num_options++;
145 1.5 oster break;
146 1.12 oster case 'A':
147 1.12 oster action = RAIDFRAME_SET_AUTOCONFIG;
148 1.32 itojun strlcpy(autoconf, optarg, sizeof(autoconf));
149 1.12 oster num_options++;
150 1.12 oster break;
151 1.6 oster case 'B':
152 1.6 oster action = RAIDFRAME_COPYBACK;
153 1.6 oster num_options++;
154 1.6 oster break;
155 1.1 oster case 'c':
156 1.6 oster action = RAIDFRAME_CONFIGURE;
157 1.32 itojun strlcpy(config_filename, optarg,
158 1.32 itojun sizeof(config_filename));
159 1.6 oster force = 0;
160 1.1 oster num_options++;
161 1.1 oster break;
162 1.1 oster case 'C':
163 1.32 itojun strlcpy(config_filename, optarg,
164 1.32 itojun sizeof(config_filename));
165 1.6 oster action = RAIDFRAME_CONFIGURE;
166 1.6 oster force = 1;
167 1.1 oster num_options++;
168 1.1 oster break;
169 1.1 oster case 'f':
170 1.1 oster action = RAIDFRAME_FAIL_DISK;
171 1.72 mlelstv get_comp(component, optarg, sizeof(component));
172 1.1 oster do_recon = 0;
173 1.1 oster num_options++;
174 1.1 oster break;
175 1.1 oster case 'F':
176 1.1 oster action = RAIDFRAME_FAIL_DISK;
177 1.72 mlelstv get_comp(component, optarg, sizeof(component));
178 1.1 oster do_recon = 1;
179 1.5 oster num_options++;
180 1.5 oster break;
181 1.5 oster case 'g':
182 1.5 oster action = RAIDFRAME_GET_COMPONENT_LABEL;
183 1.72 mlelstv get_comp(component, optarg, sizeof(component));
184 1.30 simonb openmode = O_RDONLY;
185 1.5 oster num_options++;
186 1.5 oster break;
187 1.27 lukem case 'G':
188 1.27 lukem action = RAIDFRAME_GET_INFO;
189 1.30 simonb openmode = O_RDONLY;
190 1.27 lukem do_output = 1;
191 1.27 lukem num_options++;
192 1.27 lukem break;
193 1.6 oster case 'i':
194 1.6 oster action = RAIDFRAME_REWRITEPARITY;
195 1.6 oster num_options++;
196 1.6 oster break;
197 1.5 oster case 'I':
198 1.5 oster action = RAIDFRAME_INIT_LABELS;
199 1.59 christos serial_number = xstrtouint(optarg);
200 1.5 oster num_options++;
201 1.5 oster break;
202 1.73 oster case 'l':
203 1.73 oster action = RAIDFRAME_SET_COMPONENT_LABEL;
204 1.73 oster get_comp(component, optarg, sizeof(component));
205 1.73 oster num_options++;
206 1.73 oster break;
207 1.74 oster case 'L':
208 1.74 oster action = RAIDFRAME_RESCAN;
209 1.74 oster num_options++;
210 1.74 oster break;
211 1.42 jld case 'm':
212 1.42 jld action = RAIDFRAME_PARITYMAP_STATUS;
213 1.42 jld openmode = O_RDONLY;
214 1.42 jld num_options++;
215 1.42 jld break;
216 1.42 jld case 'M':
217 1.42 jld action = RAIDFRAME_PARITYMAP_SET_DISABLE;
218 1.42 jld parityconf = strdup(optarg);
219 1.42 jld num_options++;
220 1.58 manu /* XXXjld: should rf_pm_configure do the strtol()s? */
221 1.42 jld i = 0;
222 1.42 jld while (i < 3 && optind < argc &&
223 1.42 jld isdigit((int)argv[optind][0]))
224 1.59 christos parityparams[i++] = xstrtouint(argv[optind++]);
225 1.42 jld while (i < 3)
226 1.42 jld parityparams[i++] = 0;
227 1.42 jld break;
228 1.76 kre case 'p':
229 1.76 kre action = RAIDFRAME_CHECK_PARITY;
230 1.76 kre openmode = O_RDONLY;
231 1.76 kre num_options++;
232 1.76 kre break;
233 1.76 kre case 'P':
234 1.76 kre action = RAIDFRAME_CHECK_PARITY;
235 1.76 kre do_rewrite = 1;
236 1.76 kre num_options++;
237 1.76 kre break;
238 1.1 oster case 'r':
239 1.6 oster action = RAIDFRAME_REMOVE_HOT_SPARE;
240 1.72 mlelstv get_comp(component, optarg, sizeof(component));
241 1.1 oster num_options++;
242 1.1 oster break;
243 1.1 oster case 'R':
244 1.72 mlelstv get_comp(component, optarg, sizeof(component));
245 1.6 oster action = RAIDFRAME_REBUILD_IN_PLACE;
246 1.1 oster num_options++;
247 1.1 oster break;
248 1.1 oster case 's':
249 1.1 oster action = RAIDFRAME_GET_INFO;
250 1.30 simonb openmode = O_RDONLY;
251 1.1 oster num_options++;
252 1.1 oster break;
253 1.6 oster case 'S':
254 1.19 oster action = RAIDFRAME_CHECK_RECON_STATUS_EXT;
255 1.30 simonb openmode = O_RDONLY;
256 1.6 oster num_options++;
257 1.6 oster break;
258 1.78 kre case 't':
259 1.78 kre action = CONFIGURE_TEST;
260 1.78 kre strlcpy(config_filename, optarg,
261 1.78 kre sizeof(config_filename));
262 1.78 kre num_options++;
263 1.78 kre break;
264 1.1 oster case 'u':
265 1.1 oster action = RAIDFRAME_SHUTDOWN;
266 1.1 oster num_options++;
267 1.1 oster break;
268 1.64 christos case 'U':
269 1.64 christos action = RAIDFRAME_SET_LAST_UNIT;
270 1.64 christos num_options++;
271 1.64 christos last_unit = atoi(optarg);
272 1.64 christos if (last_unit < 0)
273 1.64 christos errx(1, "Bad last unit %s", optarg);
274 1.64 christos break;
275 1.10 oster case 'v':
276 1.10 oster verbose = 1;
277 1.10 oster /* Don't bump num_options, as '-v' is not
278 1.10 oster an option like the others */
279 1.10 oster /* num_options++; */
280 1.10 oster break;
281 1.1 oster default:
282 1.1 oster usage();
283 1.1 oster }
284 1.1 oster argc -= optind;
285 1.1 oster argv += optind;
286 1.1 oster
287 1.78 kre if (num_options > 1)
288 1.78 kre usage();
289 1.78 kre
290 1.78 kre if (action == CONFIGURE_TEST) {
291 1.78 kre RF_Config_t cfg;
292 1.78 kre
293 1.78 kre if (argc != 0)
294 1.78 kre usage();
295 1.78 kre if (rf_MakeConfig(config_filename, &cfg) != 0)
296 1.78 kre exit(1);
297 1.78 kre exit(0);;
298 1.78 kre }
299 1.78 kre
300 1.78 kre if (argc != 1)
301 1.1 oster usage();
302 1.1 oster
303 1.50 pooka if (prog_init && prog_init() == -1)
304 1.50 pooka err(1, "init failed");
305 1.50 pooka
306 1.32 itojun strlcpy(name, argv[0], sizeof(name));
307 1.41 pooka fd = opendisk1(name, openmode, dev_name, sizeof(dev_name), 0,
308 1.50 pooka prog_open);
309 1.45 christos if (fd == -1)
310 1.45 christos err(1, "Unable to open device file: %s", name);
311 1.51 pooka if (prog_fstat(fd, &st) == -1)
312 1.45 christos err(1, "stat failure on: %s", dev_name);
313 1.45 christos if (!S_ISBLK(st.st_mode) && !S_ISCHR(st.st_mode))
314 1.45 christos err(1, "invalid device: %s", dev_name);
315 1.1 oster
316 1.28 oster raidID = DISKUNIT(st.st_rdev);
317 1.1 oster
318 1.75 kre switch (action) {
319 1.5 oster case RAIDFRAME_ADD_HOT_SPARE:
320 1.12 oster add_hot_spare(fd, component);
321 1.5 oster break;
322 1.6 oster case RAIDFRAME_REMOVE_HOT_SPARE:
323 1.12 oster remove_hot_spare(fd, component);
324 1.6 oster break;
325 1.1 oster case RAIDFRAME_CONFIGURE:
326 1.12 oster rf_configure(fd, config_filename, force);
327 1.12 oster break;
328 1.12 oster case RAIDFRAME_SET_AUTOCONFIG:
329 1.12 oster set_autoconfig(fd, raidID, autoconf);
330 1.1 oster break;
331 1.1 oster case RAIDFRAME_COPYBACK:
332 1.1 oster printf("Copyback.\n");
333 1.1 oster do_ioctl(fd, RAIDFRAME_COPYBACK, NULL, "RAIDFRAME_COPYBACK");
334 1.10 oster if (verbose) {
335 1.10 oster sleep(3); /* XXX give the copyback a chance to start */
336 1.10 oster printf("Copyback status:\n");
337 1.19 oster do_meter(fd,RAIDFRAME_CHECK_COPYBACK_STATUS_EXT);
338 1.10 oster }
339 1.1 oster break;
340 1.1 oster case RAIDFRAME_FAIL_DISK:
341 1.12 oster rf_fail_disk(fd, component, do_recon);
342 1.5 oster break;
343 1.5 oster case RAIDFRAME_SET_COMPONENT_LABEL:
344 1.12 oster set_component_label(fd, component);
345 1.5 oster break;
346 1.5 oster case RAIDFRAME_GET_COMPONENT_LABEL:
347 1.12 oster get_component_label(fd, component);
348 1.5 oster break;
349 1.5 oster case RAIDFRAME_INIT_LABELS:
350 1.12 oster init_component_labels(fd, serial_number);
351 1.1 oster break;
352 1.1 oster case RAIDFRAME_REWRITEPARITY:
353 1.1 oster printf("Initiating re-write of parity\n");
354 1.1 oster do_ioctl(fd, RAIDFRAME_REWRITEPARITY, NULL,
355 1.1 oster "RAIDFRAME_REWRITEPARITY");
356 1.10 oster if (verbose) {
357 1.10 oster sleep(3); /* XXX give it time to get started */
358 1.10 oster printf("Parity Re-write status:\n");
359 1.19 oster do_meter(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
360 1.10 oster }
361 1.1 oster break;
362 1.19 oster case RAIDFRAME_CHECK_RECON_STATUS_EXT:
363 1.14 oster check_status(fd,1);
364 1.1 oster break;
365 1.1 oster case RAIDFRAME_GET_INFO:
366 1.27 lukem if (do_output)
367 1.27 lukem rf_output_configuration(fd, dev_name);
368 1.27 lukem else
369 1.27 lukem rf_get_device_status(fd);
370 1.1 oster break;
371 1.42 jld case RAIDFRAME_PARITYMAP_STATUS:
372 1.42 jld rf_output_pmstat(fd, raidID);
373 1.42 jld break;
374 1.42 jld case RAIDFRAME_PARITYMAP_SET_DISABLE:
375 1.42 jld rf_pm_configure(fd, raidID, parityconf, parityparams);
376 1.42 jld break;
377 1.6 oster case RAIDFRAME_REBUILD_IN_PLACE:
378 1.12 oster rebuild_in_place(fd, component);
379 1.6 oster break;
380 1.7 oster case RAIDFRAME_CHECK_PARITY:
381 1.12 oster check_parity(fd, do_rewrite, dev_name);
382 1.7 oster break;
383 1.1 oster case RAIDFRAME_SHUTDOWN:
384 1.1 oster do_ioctl(fd, RAIDFRAME_SHUTDOWN, NULL, "RAIDFRAME_SHUTDOWN");
385 1.1 oster break;
386 1.64 christos case RAIDFRAME_SET_LAST_UNIT:
387 1.64 christos do_ioctl(fd, RAIDFRAME_SET_LAST_UNIT, &last_unit,
388 1.64 christos "RAIDFRAME_SET_LAST_UNIT");
389 1.64 christos break;
390 1.74 oster case RAIDFRAME_RESCAN:
391 1.74 oster do_ioctl(fd, RAIDFRAME_RESCAN, NULL, "RAIDFRAME_RESCAN");
392 1.74 oster break;
393 1.1 oster default:
394 1.1 oster break;
395 1.1 oster }
396 1.1 oster
397 1.50 pooka prog_close(fd);
398 1.1 oster exit(0);
399 1.1 oster }
400 1.1 oster
401 1.10 oster void
402 1.36 xtraeme do_ioctl(int fd, unsigned long command, void *arg, const char *ioctl_name)
403 1.1 oster {
404 1.50 pooka if (prog_ioctl(fd, command, arg) == -1)
405 1.45 christos err(1, "ioctl (%s) failed", ioctl_name);
406 1.1 oster }
407 1.1 oster
408 1.1 oster
409 1.1 oster static void
410 1.36 xtraeme rf_configure(int fd, char *config_file, int force)
411 1.1 oster {
412 1.1 oster void *generic;
413 1.1 oster RF_Config_t cfg;
414 1.1 oster
415 1.45 christos if (rf_MakeConfig( config_file, &cfg ) != 0)
416 1.45 christos err(1, "Unable to create RAIDframe configuration structure");
417 1.1 oster
418 1.6 oster cfg.force = force;
419 1.6 oster
420 1.1 oster /*
421 1.18 thorpej * Note the extra level of redirection needed here, since
422 1.18 thorpej * what we really want to pass in is a pointer to the pointer to
423 1.18 thorpej * the configuration structure.
424 1.1 oster */
425 1.1 oster
426 1.45 christos generic = &cfg;
427 1.6 oster do_ioctl(fd, RAIDFRAME_CONFIGURE, &generic, "RAIDFRAME_CONFIGURE");
428 1.1 oster }
429 1.1 oster
430 1.18 thorpej static const char *
431 1.36 xtraeme device_status(RF_DiskStatus_t status)
432 1.1 oster {
433 1.1 oster
434 1.1 oster switch (status) {
435 1.1 oster case rf_ds_optimal:
436 1.18 thorpej return ("optimal");
437 1.1 oster break;
438 1.1 oster case rf_ds_failed:
439 1.18 thorpej return ("failed");
440 1.1 oster break;
441 1.1 oster case rf_ds_reconstructing:
442 1.18 thorpej return ("reconstructing");
443 1.1 oster break;
444 1.1 oster case rf_ds_dist_spared:
445 1.18 thorpej return ("dist_spared");
446 1.1 oster break;
447 1.1 oster case rf_ds_spared:
448 1.18 thorpej return ("spared");
449 1.1 oster break;
450 1.1 oster case rf_ds_spare:
451 1.18 thorpej return ("spare");
452 1.1 oster break;
453 1.1 oster case rf_ds_used_spare:
454 1.18 thorpej return ("used_spare");
455 1.1 oster break;
456 1.1 oster default:
457 1.18 thorpej return ("UNKNOWN");
458 1.1 oster }
459 1.18 thorpej /* NOTREACHED */
460 1.1 oster }
461 1.1 oster
462 1.1 oster static void
463 1.36 xtraeme rf_get_device_status(int fd)
464 1.1 oster {
465 1.1 oster RF_DeviceConfig_t device_config;
466 1.1 oster void *cfg_ptr;
467 1.8 oster int is_clean;
468 1.70 mlelstv int i, nspares;
469 1.1 oster
470 1.1 oster cfg_ptr = &device_config;
471 1.1 oster
472 1.1 oster do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr, "RAIDFRAME_GET_INFO");
473 1.1 oster
474 1.1 oster printf("Components:\n");
475 1.1 oster for(i=0; i < device_config.ndevs; i++) {
476 1.1 oster printf("%20s: %s\n", device_config.devs[i].devname,
477 1.1 oster device_status(device_config.devs[i].status));
478 1.1 oster }
479 1.70 mlelstv
480 1.71 mlelstv nspares = MIN(device_config.nspares,
481 1.70 mlelstv __arraycount(device_config.spares));
482 1.70 mlelstv
483 1.70 mlelstv if (nspares > 0) {
484 1.1 oster printf("Spares:\n");
485 1.70 mlelstv for(i=0; i < nspares; i++) {
486 1.5 oster printf("%20s: %s\n",
487 1.1 oster device_config.spares[i].devname,
488 1.1 oster device_status(device_config.spares[i].status));
489 1.1 oster }
490 1.1 oster } else {
491 1.1 oster printf("No spares.\n");
492 1.8 oster }
493 1.14 oster for(i=0; i < device_config.ndevs; i++) {
494 1.14 oster if (device_config.devs[i].status == rf_ds_optimal) {
495 1.14 oster get_component_label(fd, device_config.devs[i].devname);
496 1.14 oster } else {
497 1.14 oster printf("%s status is: %s. Skipping label.\n",
498 1.14 oster device_config.devs[i].devname,
499 1.14 oster device_status(device_config.devs[i].status));
500 1.14 oster }
501 1.14 oster }
502 1.23 oster
503 1.70 mlelstv if (nspares > 0) {
504 1.70 mlelstv for(i=0; i < nspares; i++) {
505 1.21 oster if ((device_config.spares[i].status ==
506 1.21 oster rf_ds_optimal) ||
507 1.21 oster (device_config.spares[i].status ==
508 1.21 oster rf_ds_used_spare)) {
509 1.21 oster get_component_label(fd,
510 1.21 oster device_config.spares[i].devname);
511 1.21 oster } else {
512 1.21 oster printf("%s status is: %s. Skipping label.\n",
513 1.21 oster device_config.spares[i].devname,
514 1.75 kre device_status(
515 1.75 kre device_config.spares[i].status));
516 1.21 oster }
517 1.21 oster }
518 1.21 oster }
519 1.23 oster
520 1.8 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITY, &is_clean,
521 1.8 oster "RAIDFRAME_CHECK_PARITY");
522 1.8 oster if (is_clean) {
523 1.8 oster printf("Parity status: clean\n");
524 1.8 oster } else {
525 1.8 oster printf("Parity status: DIRTY\n");
526 1.1 oster }
527 1.14 oster check_status(fd,0);
528 1.1 oster }
529 1.1 oster
530 1.1 oster static void
531 1.42 jld rf_output_pmstat(int fd, int raidID)
532 1.42 jld {
533 1.42 jld char srs[7];
534 1.47 plunky unsigned int i, j;
535 1.47 plunky int dis, dr;
536 1.42 jld struct rf_pmstat st;
537 1.42 jld
538 1.50 pooka if (prog_ioctl(fd, RAIDFRAME_PARITYMAP_STATUS, &st) == -1) {
539 1.48 jld if (errno == EINVAL) {
540 1.48 jld printf("raid%d: has no parity; parity map disabled\n",
541 1.48 jld raidID);
542 1.48 jld return;
543 1.48 jld }
544 1.48 jld err(1, "ioctl (%s) failed", "RAIDFRAME_PARITYMAP_STATUS");
545 1.48 jld }
546 1.48 jld
547 1.42 jld if (st.enabled) {
548 1.42 jld if (0 > humanize_number(srs, 7, st.region_size * DEV_BSIZE,
549 1.42 jld "B", HN_AUTOSCALE, HN_NOSPACE))
550 1.42 jld strlcpy(srs, "???", 7);
551 1.42 jld
552 1.42 jld printf("raid%d: parity map enabled with %u regions of %s\n",
553 1.42 jld raidID, st.params.regions, srs);
554 1.43 jld printf("raid%d: regions marked clean after %d intervals of"
555 1.42 jld " %d.%03ds\n", raidID, st.params.cooldown,
556 1.42 jld st.params.tickms / 1000, st.params.tickms % 1000);
557 1.42 jld printf("raid%d: write/sync/clean counters "
558 1.42 jld "%"PRIu64"/%"PRIu64"/%"PRIu64"\n", raidID,
559 1.42 jld st.ctrs.nwrite, st.ctrs.ncachesync, st.ctrs.nclearing);
560 1.42 jld
561 1.42 jld dr = 0;
562 1.46 jld for (i = 0; i < st.params.regions; i++)
563 1.42 jld if (isset(st.dirty, i))
564 1.42 jld dr++;
565 1.42 jld printf("raid%d: %d dirty region%s\n", raidID, dr,
566 1.42 jld dr == 1 ? "" : "s");
567 1.42 jld
568 1.42 jld if (verbose > 0) {
569 1.42 jld for (i = 0; i < RF_PARITYMAP_NBYTE; i += 32) {
570 1.42 jld printf(" ");
571 1.42 jld for (j = i; j < RF_PARITYMAP_NBYTE
572 1.42 jld && j < i + 32; j++)
573 1.42 jld printf("%x%x", st.dirty[j] & 15,
574 1.42 jld (st.dirty[j] >> 4) & 15);
575 1.42 jld printf("\n");
576 1.42 jld }
577 1.42 jld }
578 1.42 jld } else {
579 1.42 jld printf("raid%d: parity map disabled\n", raidID);
580 1.42 jld }
581 1.42 jld
582 1.42 jld do_ioctl(fd, RAIDFRAME_PARITYMAP_GET_DISABLE, &dis,
583 1.42 jld "RAIDFRAME_PARITYMAP_GET_DISABLE");
584 1.42 jld printf("raid%d: parity map will %s %sabled on next configure\n",
585 1.42 jld raidID, dis == st.enabled ? "be" : "remain", dis ? "dis" : "en");
586 1.42 jld }
587 1.42 jld
588 1.42 jld static void
589 1.42 jld rf_pm_configure(int fd, int raidID, char *parityconf, int parityparams[])
590 1.42 jld {
591 1.42 jld int dis;
592 1.42 jld struct rf_pmparams params;
593 1.42 jld
594 1.42 jld if (strcasecmp(parityconf, "yes") == 0)
595 1.42 jld dis = 0;
596 1.42 jld else if (strcasecmp(parityconf, "no") == 0)
597 1.42 jld dis = 1;
598 1.42 jld else if (strcasecmp(parityconf, "set") == 0) {
599 1.42 jld params.cooldown = parityparams[0];
600 1.42 jld params.tickms = parityparams[1];
601 1.42 jld params.regions = parityparams[2];
602 1.42 jld
603 1.42 jld do_ioctl(fd, RAIDFRAME_PARITYMAP_SET_PARAMS, ¶ms,
604 1.42 jld "RAIDFRAME_PARITYMAP_SET_PARAMS");
605 1.42 jld
606 1.42 jld if (params.cooldown != 0 || params.tickms != 0) {
607 1.42 jld printf("raid%d: parity cleaned after", raidID);
608 1.42 jld if (params.cooldown != 0)
609 1.42 jld printf(" %d", params.cooldown);
610 1.42 jld printf(" intervals");
611 1.42 jld if (params.tickms != 0) {
612 1.42 jld printf(" of %d.%03ds", params.tickms / 1000,
613 1.42 jld params.tickms % 1000);
614 1.42 jld }
615 1.42 jld printf("\n");
616 1.42 jld }
617 1.42 jld if (params.regions != 0)
618 1.42 jld printf("raid%d: will use %d regions on next"
619 1.42 jld " configuration\n", raidID, params.regions);
620 1.42 jld
621 1.42 jld return;
622 1.42 jld /* XXX the control flow here could be prettier. */
623 1.45 christos } else
624 1.45 christos err(1, "`%s' is not a valid parity map command", parityconf);
625 1.42 jld
626 1.42 jld do_ioctl(fd, RAIDFRAME_PARITYMAP_SET_DISABLE, &dis,
627 1.42 jld "RAIDFRAME_PARITYMAP_SET_DISABLE");
628 1.42 jld printf("raid%d: parity map will be %sabled on next configure\n",
629 1.42 jld raidID, dis ? "dis" : "en");
630 1.42 jld }
631 1.42 jld
632 1.62 mrg /* convert "component0" into "absent" */
633 1.63 bad static const char *rf_output_devname(const char *name)
634 1.62 mrg {
635 1.62 mrg
636 1.63 bad if (strncmp(name, "component", 9) == 0)
637 1.62 mrg return "absent";
638 1.63 bad return name;
639 1.62 mrg }
640 1.42 jld
641 1.42 jld static void
642 1.36 xtraeme rf_output_configuration(int fd, const char *name)
643 1.27 lukem {
644 1.27 lukem RF_DeviceConfig_t device_config;
645 1.27 lukem void *cfg_ptr;
646 1.71 mlelstv int i, nspares;
647 1.27 lukem RF_ComponentLabel_t component_label;
648 1.27 lukem void *label_ptr;
649 1.27 lukem int component_num;
650 1.27 lukem int num_cols;
651 1.27 lukem
652 1.27 lukem cfg_ptr = &device_config;
653 1.27 lukem
654 1.27 lukem printf("# raidctl config file for %s\n", name);
655 1.27 lukem printf("\n");
656 1.27 lukem do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr, "RAIDFRAME_GET_INFO");
657 1.27 lukem
658 1.71 mlelstv nspares = MIN(device_config.nspares,
659 1.71 mlelstv __arraycount(device_config.spares));
660 1.71 mlelstv
661 1.27 lukem printf("START array\n");
662 1.77 kre printf("# numCol numSpare\n");
663 1.77 kre printf("%d %d\n", device_config.cols, device_config.nspares);
664 1.27 lukem printf("\n");
665 1.27 lukem
666 1.27 lukem printf("START disks\n");
667 1.27 lukem for(i=0; i < device_config.ndevs; i++)
668 1.62 mrg printf("%s\n",
669 1.62 mrg rf_output_devname(device_config.devs[i].devname));
670 1.27 lukem printf("\n");
671 1.27 lukem
672 1.71 mlelstv if (nspares > 0) {
673 1.27 lukem printf("START spare\n");
674 1.71 mlelstv for(i=0; i < nspares; i++)
675 1.27 lukem printf("%s\n", device_config.spares[i].devname);
676 1.27 lukem printf("\n");
677 1.27 lukem }
678 1.27 lukem
679 1.27 lukem for(i=0; i < device_config.ndevs; i++) {
680 1.27 lukem if (device_config.devs[i].status == rf_ds_optimal)
681 1.27 lukem break;
682 1.27 lukem }
683 1.27 lukem if (i == device_config.ndevs) {
684 1.27 lukem printf("# WARNING: no optimal components; using %s\n",
685 1.27 lukem device_config.devs[0].devname);
686 1.27 lukem i = 0;
687 1.27 lukem }
688 1.27 lukem get_component_number(fd, device_config.devs[i].devname,
689 1.27 lukem &component_num, &num_cols);
690 1.27 lukem memset(&component_label, 0, sizeof(RF_ComponentLabel_t));
691 1.27 lukem component_label.row = component_num / num_cols;
692 1.27 lukem component_label.column = component_num % num_cols;
693 1.27 lukem label_ptr = &component_label;
694 1.67 nakayama do_ioctl(fd, RAIDFRAME_GET_COMPONENT_LABEL, label_ptr,
695 1.27 lukem "RAIDFRAME_GET_COMPONENT_LABEL");
696 1.27 lukem
697 1.27 lukem printf("START layout\n");
698 1.27 lukem printf(
699 1.27 lukem "# sectPerSU SUsPerParityUnit SUsPerReconUnit RAID_level_%c\n",
700 1.27 lukem (char) component_label.parityConfig);
701 1.27 lukem printf("%d %d %d %c\n",
702 1.27 lukem component_label.sectPerSU, component_label.SUsPerPU,
703 1.27 lukem component_label.SUsPerRU, (char) component_label.parityConfig);
704 1.27 lukem printf("\n");
705 1.27 lukem
706 1.27 lukem printf("START queue\n");
707 1.27 lukem printf("fifo %d\n", device_config.maxqdepth);
708 1.27 lukem }
709 1.27 lukem
710 1.27 lukem static void
711 1.36 xtraeme get_component_number(int fd, char *component_name, int *component_number,
712 1.36 xtraeme int *num_columns)
713 1.1 oster {
714 1.1 oster RF_DeviceConfig_t device_config;
715 1.1 oster void *cfg_ptr;
716 1.71 mlelstv int i, nspares;
717 1.1 oster int found;
718 1.1 oster
719 1.6 oster *component_number = -1;
720 1.1 oster
721 1.1 oster /* Assuming a full path spec... */
722 1.1 oster cfg_ptr = &device_config;
723 1.1 oster do_ioctl(fd, RAIDFRAME_GET_INFO, &cfg_ptr,
724 1.1 oster "RAIDFRAME_GET_INFO");
725 1.6 oster
726 1.6 oster *num_columns = device_config.cols;
727 1.71 mlelstv
728 1.71 mlelstv nspares = MIN(device_config.nspares,
729 1.71 mlelstv __arraycount(device_config.spares));
730 1.6 oster
731 1.1 oster found = 0;
732 1.1 oster for(i=0; i < device_config.ndevs; i++) {
733 1.6 oster if (strncmp(component_name, device_config.devs[i].devname,
734 1.1 oster PATH_MAX)==0) {
735 1.1 oster found = 1;
736 1.6 oster *component_number = i;
737 1.1 oster }
738 1.1 oster }
739 1.21 oster if (!found) { /* maybe it's a spare? */
740 1.71 mlelstv for(i=0; i < nspares; i++) {
741 1.21 oster if (strncmp(component_name,
742 1.21 oster device_config.spares[i].devname,
743 1.21 oster PATH_MAX)==0) {
744 1.21 oster found = 1;
745 1.21 oster *component_number = i + device_config.ndevs;
746 1.23 oster /* the way spares are done should
747 1.23 oster really change... */
748 1.23 oster *num_columns = device_config.cols +
749 1.23 oster device_config.nspares;
750 1.21 oster }
751 1.21 oster }
752 1.21 oster }
753 1.21 oster
754 1.45 christos if (!found)
755 1.45 christos err(1,"%s is not a component of this device", component_name);
756 1.6 oster }
757 1.6 oster
758 1.6 oster static void
759 1.36 xtraeme rf_fail_disk(int fd, char *component_to_fail, int do_recon)
760 1.6 oster {
761 1.6 oster struct rf_recon_req recon_request;
762 1.6 oster int component_num;
763 1.6 oster int num_cols;
764 1.6 oster
765 1.6 oster get_component_number(fd, component_to_fail, &component_num, &num_cols);
766 1.1 oster
767 1.6 oster recon_request.col = component_num % num_cols;
768 1.1 oster if (do_recon) {
769 1.1 oster recon_request.flags = RF_FDFLAGS_RECON;
770 1.1 oster } else {
771 1.1 oster recon_request.flags = RF_FDFLAGS_NONE;
772 1.1 oster }
773 1.1 oster do_ioctl(fd, RAIDFRAME_FAIL_DISK, &recon_request,
774 1.1 oster "RAIDFRAME_FAIL_DISK");
775 1.10 oster if (do_recon && verbose) {
776 1.10 oster printf("Reconstruction status:\n");
777 1.10 oster sleep(3); /* XXX give reconstruction a chance to start */
778 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
779 1.10 oster }
780 1.1 oster }
781 1.1 oster
782 1.1 oster static void
783 1.36 xtraeme get_component_label(int fd, char *component)
784 1.5 oster {
785 1.5 oster RF_ComponentLabel_t component_label;
786 1.5 oster void *label_ptr;
787 1.5 oster int component_num;
788 1.6 oster int num_cols;
789 1.5 oster
790 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
791 1.5 oster
792 1.5 oster memset( &component_label, 0, sizeof(RF_ComponentLabel_t));
793 1.6 oster component_label.row = component_num / num_cols;
794 1.6 oster component_label.column = component_num % num_cols;
795 1.5 oster
796 1.5 oster label_ptr = &component_label;
797 1.67 nakayama do_ioctl( fd, RAIDFRAME_GET_COMPONENT_LABEL, label_ptr,
798 1.5 oster "RAIDFRAME_GET_COMPONENT_LABEL");
799 1.5 oster
800 1.5 oster printf("Component label for %s:\n",component);
801 1.12 oster
802 1.25 lukem printf(" Row: %d, Column: %d, Num Rows: %d, Num Columns: %d\n",
803 1.12 oster component_label.row, component_label.column,
804 1.12 oster component_label.num_rows, component_label.num_columns);
805 1.54 mrg printf(" Version: %d, Serial Number: %u, Mod Counter: %d\n",
806 1.12 oster component_label.version, component_label.serial_number,
807 1.12 oster component_label.mod_counter);
808 1.25 lukem printf(" Clean: %s, Status: %d\n",
809 1.12 oster component_label.clean ? "Yes" : "No",
810 1.12 oster component_label.status );
811 1.25 lukem printf(" sectPerSU: %d, SUsPerPU: %d, SUsPerRU: %d\n",
812 1.12 oster component_label.sectPerSU, component_label.SUsPerPU,
813 1.12 oster component_label.SUsPerRU);
814 1.52 enami printf(" Queue size: %d, blocksize: %d, numBlocks: %"PRIu64"\n",
815 1.25 lukem component_label.maxOutstanding, component_label.blockSize,
816 1.52 enami rf_component_label_numblocks(&component_label));
817 1.25 lukem printf(" RAID Level: %c\n", (char) component_label.parityConfig);
818 1.12 oster printf(" Autoconfig: %s\n",
819 1.12 oster component_label.autoconfigure ? "Yes" : "No" );
820 1.15 oster printf(" Root partition: %s\n",
821 1.57 christos rootpart[component_label.root_partition & 3]);
822 1.12 oster printf(" Last configured as: raid%d\n", component_label.last_unit );
823 1.5 oster }
824 1.5 oster
825 1.5 oster static void
826 1.36 xtraeme set_component_label(int fd, char *component)
827 1.5 oster {
828 1.5 oster RF_ComponentLabel_t component_label;
829 1.5 oster int component_num;
830 1.6 oster int num_cols;
831 1.5 oster
832 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
833 1.6 oster
834 1.6 oster /* XXX This is currently here for testing, and future expandability */
835 1.5 oster
836 1.5 oster component_label.version = 1;
837 1.5 oster component_label.serial_number = 123456;
838 1.5 oster component_label.mod_counter = 0;
839 1.6 oster component_label.row = component_num / num_cols;
840 1.6 oster component_label.column = component_num % num_cols;
841 1.5 oster component_label.num_rows = 0;
842 1.5 oster component_label.num_columns = 5;
843 1.5 oster component_label.clean = 0;
844 1.5 oster component_label.status = 1;
845 1.5 oster
846 1.5 oster do_ioctl( fd, RAIDFRAME_SET_COMPONENT_LABEL, &component_label,
847 1.5 oster "RAIDFRAME_SET_COMPONENT_LABEL");
848 1.5 oster }
849 1.5 oster
850 1.5 oster
851 1.5 oster static void
852 1.36 xtraeme init_component_labels(int fd, int serial_number)
853 1.5 oster {
854 1.5 oster RF_ComponentLabel_t component_label;
855 1.5 oster
856 1.5 oster component_label.version = 0;
857 1.5 oster component_label.serial_number = serial_number;
858 1.5 oster component_label.mod_counter = 0;
859 1.5 oster component_label.row = 0;
860 1.5 oster component_label.column = 0;
861 1.5 oster component_label.num_rows = 0;
862 1.5 oster component_label.num_columns = 0;
863 1.5 oster component_label.clean = 0;
864 1.5 oster component_label.status = 0;
865 1.5 oster
866 1.5 oster do_ioctl( fd, RAIDFRAME_INIT_LABELS, &component_label,
867 1.69 oster "RAIDFRAME_INIT_LABELS");
868 1.12 oster }
869 1.12 oster
870 1.12 oster static void
871 1.36 xtraeme set_autoconfig(int fd, int raidID, char *autoconf)
872 1.12 oster {
873 1.12 oster int auto_config;
874 1.12 oster int root_config;
875 1.12 oster
876 1.12 oster auto_config = 0;
877 1.12 oster root_config = 0;
878 1.12 oster
879 1.57 christos if (strncasecmp(autoconf, "root", 4) == 0 ||
880 1.57 christos strncasecmp(autoconf, "hard", 4) == 0 ||
881 1.61 sborrill strncasecmp(autoconf, "force", 5) == 0) {
882 1.12 oster root_config = 1;
883 1.57 christos } else if (strncasecmp(autoconf, "soft", 4) == 0) {
884 1.57 christos root_config = 2;
885 1.12 oster }
886 1.12 oster
887 1.12 oster if ((strncasecmp(autoconf,"yes", 3) == 0) ||
888 1.57 christos root_config > 0) {
889 1.12 oster auto_config = 1;
890 1.12 oster }
891 1.12 oster
892 1.12 oster do_ioctl(fd, RAIDFRAME_SET_AUTOCONFIG, &auto_config,
893 1.12 oster "RAIDFRAME_SET_AUTOCONFIG");
894 1.12 oster
895 1.12 oster do_ioctl(fd, RAIDFRAME_SET_ROOT, &root_config,
896 1.12 oster "RAIDFRAME_SET_ROOT");
897 1.12 oster
898 1.12 oster printf("raid%d: Autoconfigure: %s\n", raidID,
899 1.12 oster auto_config ? "Yes" : "No");
900 1.12 oster
901 1.57 christos if (auto_config == 1) {
902 1.57 christos printf("raid%d: Root: %s\n", raidID, rootpart[root_config]);
903 1.12 oster }
904 1.5 oster }
905 1.5 oster
906 1.5 oster static void
907 1.36 xtraeme add_hot_spare(int fd, char *component)
908 1.5 oster {
909 1.6 oster RF_SingleComponent_t hot_spare;
910 1.5 oster
911 1.6 oster hot_spare.row = 0;
912 1.6 oster hot_spare.column = 0;
913 1.6 oster strncpy(hot_spare.component_name, component,
914 1.6 oster sizeof(hot_spare.component_name));
915 1.5 oster
916 1.5 oster do_ioctl( fd, RAIDFRAME_ADD_HOT_SPARE, &hot_spare,
917 1.5 oster "RAIDFRAME_ADD_HOT_SPARE");
918 1.6 oster }
919 1.6 oster
920 1.6 oster static void
921 1.36 xtraeme remove_hot_spare(int fd, char *component)
922 1.6 oster {
923 1.6 oster RF_SingleComponent_t hot_spare;
924 1.6 oster int component_num;
925 1.6 oster int num_cols;
926 1.5 oster
927 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
928 1.6 oster
929 1.6 oster hot_spare.row = component_num / num_cols;
930 1.6 oster hot_spare.column = component_num % num_cols;
931 1.6 oster
932 1.6 oster strncpy(hot_spare.component_name, component,
933 1.6 oster sizeof(hot_spare.component_name));
934 1.6 oster
935 1.6 oster do_ioctl( fd, RAIDFRAME_REMOVE_HOT_SPARE, &hot_spare,
936 1.6 oster "RAIDFRAME_REMOVE_HOT_SPARE");
937 1.6 oster }
938 1.6 oster
939 1.6 oster static void
940 1.36 xtraeme rebuild_in_place(int fd, char *component)
941 1.6 oster {
942 1.6 oster RF_SingleComponent_t comp;
943 1.6 oster int component_num;
944 1.6 oster int num_cols;
945 1.6 oster
946 1.6 oster get_component_number(fd, component, &component_num, &num_cols);
947 1.6 oster
948 1.6 oster comp.row = 0;
949 1.6 oster comp.column = component_num;
950 1.6 oster strncpy(comp.component_name, component, sizeof(comp.component_name));
951 1.6 oster
952 1.6 oster do_ioctl( fd, RAIDFRAME_REBUILD_IN_PLACE, &comp,
953 1.6 oster "RAIDFRAME_REBUILD_IN_PLACE");
954 1.10 oster
955 1.10 oster if (verbose) {
956 1.10 oster printf("Reconstruction status:\n");
957 1.10 oster sleep(3); /* XXX give reconstruction a chance to start */
958 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
959 1.10 oster }
960 1.10 oster
961 1.10 oster }
962 1.10 oster
963 1.10 oster static void
964 1.36 xtraeme check_parity(int fd, int do_rewrite, char *dev_name)
965 1.10 oster {
966 1.10 oster int is_clean;
967 1.10 oster int percent_done;
968 1.10 oster
969 1.10 oster is_clean = 0;
970 1.10 oster percent_done = 0;
971 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITY, &is_clean,
972 1.10 oster "RAIDFRAME_CHECK_PARITY");
973 1.10 oster if (is_clean) {
974 1.10 oster printf("%s: Parity status: clean\n",dev_name);
975 1.10 oster } else {
976 1.10 oster printf("%s: Parity status: DIRTY\n",dev_name);
977 1.10 oster if (do_rewrite) {
978 1.10 oster printf("%s: Initiating re-write of parity\n",
979 1.10 oster dev_name);
980 1.10 oster do_ioctl(fd, RAIDFRAME_REWRITEPARITY, NULL,
981 1.10 oster "RAIDFRAME_REWRITEPARITY");
982 1.10 oster sleep(3); /* XXX give it time to
983 1.10 oster get started. */
984 1.10 oster if (verbose) {
985 1.10 oster printf("Parity Re-write status:\n");
986 1.75 kre do_meter(fd,
987 1.75 kre RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
988 1.10 oster } else {
989 1.10 oster do_ioctl(fd,
990 1.10 oster RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
991 1.10 oster &percent_done,
992 1.10 oster "RAIDFRAME_CHECK_PARITYREWRITE_STATUS"
993 1.10 oster );
994 1.10 oster while( percent_done < 100 ) {
995 1.24 oster sleep(3); /* wait a bit... */
996 1.75 kre do_ioctl(fd,
997 1.75 kre RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
998 1.75 kre &percent_done,
999 1.75 kre "RAIDFRAME_CHECK_PARITYREWRITE_STATUS");
1000 1.10 oster }
1001 1.10 oster
1002 1.10 oster }
1003 1.75 kre printf("%s: Parity Re-write complete\n", dev_name);
1004 1.10 oster } else {
1005 1.10 oster /* parity is wrong, and is not being fixed.
1006 1.10 oster Exit w/ an error. */
1007 1.10 oster exit(1);
1008 1.10 oster }
1009 1.10 oster }
1010 1.10 oster }
1011 1.10 oster
1012 1.10 oster
1013 1.10 oster static void
1014 1.36 xtraeme check_status(int fd, int meter)
1015 1.10 oster {
1016 1.10 oster int recon_percent_done = 0;
1017 1.10 oster int parity_percent_done = 0;
1018 1.10 oster int copyback_percent_done = 0;
1019 1.10 oster
1020 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_RECON_STATUS, &recon_percent_done,
1021 1.10 oster "RAIDFRAME_CHECK_RECON_STATUS");
1022 1.10 oster printf("Reconstruction is %d%% complete.\n", recon_percent_done);
1023 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_PARITYREWRITE_STATUS,
1024 1.10 oster &parity_percent_done,
1025 1.10 oster "RAIDFRAME_CHECK_PARITYREWRITE_STATUS");
1026 1.10 oster printf("Parity Re-write is %d%% complete.\n", parity_percent_done);
1027 1.10 oster do_ioctl(fd, RAIDFRAME_CHECK_COPYBACK_STATUS, ©back_percent_done,
1028 1.10 oster "RAIDFRAME_CHECK_COPYBACK_STATUS");
1029 1.10 oster printf("Copyback is %d%% complete.\n", copyback_percent_done);
1030 1.10 oster
1031 1.14 oster if (meter) {
1032 1.14 oster /* These 3 should be mutually exclusive at this point */
1033 1.14 oster if (recon_percent_done < 100) {
1034 1.14 oster printf("Reconstruction status:\n");
1035 1.19 oster do_meter(fd,RAIDFRAME_CHECK_RECON_STATUS_EXT);
1036 1.14 oster } else if (parity_percent_done < 100) {
1037 1.14 oster printf("Parity Re-write status:\n");
1038 1.19 oster do_meter(fd,RAIDFRAME_CHECK_PARITYREWRITE_STATUS_EXT);
1039 1.14 oster } else if (copyback_percent_done < 100) {
1040 1.14 oster printf("Copyback status:\n");
1041 1.19 oster do_meter(fd,RAIDFRAME_CHECK_COPYBACK_STATUS_EXT);
1042 1.14 oster }
1043 1.10 oster }
1044 1.10 oster }
1045 1.10 oster
1046 1.18 thorpej const char *tbits = "|/-\\";
1047 1.10 oster
1048 1.10 oster static void
1049 1.36 xtraeme do_meter(int fd, u_long option)
1050 1.10 oster {
1051 1.10 oster int percent_done;
1052 1.37 oster RF_uint64 start_value;
1053 1.19 oster RF_ProgressInfo_t progressInfo;
1054 1.19 oster void *pInfoPtr;
1055 1.10 oster struct timeval start_time;
1056 1.10 oster struct timeval current_time;
1057 1.10 oster double elapsed;
1058 1.10 oster int elapsed_sec;
1059 1.10 oster int elapsed_usec;
1060 1.20 oster int simple_eta,last_eta;
1061 1.10 oster double rate;
1062 1.37 oster RF_uint64 amount;
1063 1.10 oster int tbit_value;
1064 1.10 oster char bar_buffer[1024];
1065 1.10 oster char eta_buffer[1024];
1066 1.10 oster
1067 1.45 christos if (gettimeofday(&start_time,NULL) == -1)
1068 1.45 christos err(1, "gettimeofday failed!?!?");
1069 1.19 oster memset(&progressInfo, 0, sizeof(RF_ProgressInfo_t));
1070 1.19 oster pInfoPtr=&progressInfo;
1071 1.19 oster
1072 1.10 oster percent_done = 0;
1073 1.67 nakayama do_ioctl(fd, option, pInfoPtr, "");
1074 1.37 oster start_value = progressInfo.completed;
1075 1.10 oster current_time = start_time;
1076 1.38 lukem simple_eta = 0;
1077 1.38 lukem last_eta = 0;
1078 1.10 oster
1079 1.10 oster tbit_value = 0;
1080 1.19 oster while(progressInfo.completed < progressInfo.total) {
1081 1.10 oster
1082 1.19 oster percent_done = (progressInfo.completed * 100) /
1083 1.19 oster progressInfo.total;
1084 1.10 oster
1085 1.10 oster get_bar(bar_buffer, percent_done, 40);
1086 1.10 oster
1087 1.20 oster elapsed_sec = current_time.tv_sec - start_time.tv_sec;
1088 1.20 oster elapsed_usec = current_time.tv_usec - start_time.tv_usec;
1089 1.10 oster if (elapsed_usec < 0) {
1090 1.10 oster elapsed_usec-=1000000;
1091 1.10 oster elapsed_sec++;
1092 1.10 oster }
1093 1.20 oster
1094 1.10 oster elapsed = (double) elapsed_sec +
1095 1.10 oster (double) elapsed_usec / 1000000.0;
1096 1.19 oster
1097 1.20 oster amount = progressInfo.completed - start_value;
1098 1.19 oster
1099 1.10 oster if (amount <= 0) { /* we don't do negatives (yet?) */
1100 1.10 oster amount = 0;
1101 1.10 oster }
1102 1.20 oster
1103 1.22 oster if (elapsed == 0)
1104 1.22 oster rate = 0.0;
1105 1.22 oster else
1106 1.22 oster rate = amount / elapsed;
1107 1.10 oster
1108 1.10 oster if (rate > 0.0) {
1109 1.19 oster simple_eta = (int) (((double)progressInfo.total -
1110 1.20 oster (double) progressInfo.completed)
1111 1.19 oster / rate);
1112 1.10 oster } else {
1113 1.10 oster simple_eta = -1;
1114 1.10 oster }
1115 1.19 oster
1116 1.10 oster if (simple_eta <=0) {
1117 1.10 oster simple_eta = last_eta;
1118 1.10 oster } else {
1119 1.10 oster last_eta = simple_eta;
1120 1.10 oster }
1121 1.10 oster
1122 1.68 mrg get_time_string(eta_buffer, sizeof eta_buffer, simple_eta);
1123 1.10 oster
1124 1.55 christos fprintf(stdout,"\r%3d%% |%s| ETA: %s %c",
1125 1.55 christos percent_done,bar_buffer,eta_buffer,tbits[tbit_value]);
1126 1.10 oster fflush(stdout);
1127 1.10 oster
1128 1.10 oster if (++tbit_value>3)
1129 1.10 oster tbit_value = 0;
1130 1.10 oster
1131 1.10 oster sleep(2);
1132 1.10 oster
1133 1.45 christos if (gettimeofday(¤t_time,NULL) == -1)
1134 1.45 christos err(1, "gettimeofday failed!?!?");
1135 1.10 oster
1136 1.67 nakayama do_ioctl( fd, option, pInfoPtr, "");
1137 1.10 oster
1138 1.10 oster
1139 1.10 oster }
1140 1.10 oster printf("\n");
1141 1.10 oster }
1142 1.10 oster /* 40 '*''s per line, then 40 ' ''s line. */
1143 1.10 oster /* If you've got a screen wider than 160 characters, "tough" */
1144 1.10 oster
1145 1.10 oster #define STAR_MIDPOINT 4*40
1146 1.10 oster const char stars[] = "****************************************"
1147 1.10 oster "****************************************"
1148 1.10 oster "****************************************"
1149 1.10 oster "****************************************"
1150 1.10 oster " "
1151 1.10 oster " "
1152 1.10 oster " "
1153 1.10 oster " "
1154 1.10 oster " ";
1155 1.10 oster
1156 1.10 oster static void
1157 1.36 xtraeme get_bar(char *string, double percent, int max_strlen)
1158 1.10 oster {
1159 1.10 oster int offset;
1160 1.10 oster
1161 1.10 oster if (max_strlen > STAR_MIDPOINT) {
1162 1.10 oster max_strlen = STAR_MIDPOINT;
1163 1.10 oster }
1164 1.10 oster offset = STAR_MIDPOINT -
1165 1.10 oster (int)((percent * max_strlen)/ 100);
1166 1.10 oster if (offset < 0)
1167 1.10 oster offset = 0;
1168 1.60 pooka snprintf(string,max_strlen,"%s",stars+offset);
1169 1.10 oster }
1170 1.10 oster
1171 1.10 oster static void
1172 1.68 mrg get_time_string(char *string, size_t len, int simple_time)
1173 1.10 oster {
1174 1.10 oster int minutes, seconds, hours;
1175 1.68 mrg char hours_buffer[8];
1176 1.10 oster char minutes_buffer[5];
1177 1.10 oster char seconds_buffer[5];
1178 1.10 oster
1179 1.10 oster if (simple_time >= 0) {
1180 1.10 oster
1181 1.68 mrg minutes = simple_time / 60;
1182 1.68 mrg seconds = simple_time - 60*minutes;
1183 1.10 oster hours = minutes / 60;
1184 1.10 oster minutes = minutes - 60*hours;
1185 1.68 mrg #if defined(__GNUC__)
1186 1.68 mrg /*
1187 1.68 mrg * snprintf() truncation checker fails to detect that seconds
1188 1.68 mrg * and minutes will be 0-59 range.
1189 1.68 mrg */
1190 1.68 mrg if (minutes < 0 || minutes > 60)
1191 1.68 mrg minutes = 60;
1192 1.68 mrg if (seconds < 0 || seconds > 60)
1193 1.68 mrg seconds = 60;
1194 1.68 mrg #endif
1195 1.10 oster
1196 1.10 oster if (hours > 0) {
1197 1.75 kre snprintf(hours_buffer,sizeof hours_buffer,
1198 1.75 kre "%02d:",hours);
1199 1.10 oster } else {
1200 1.68 mrg snprintf(hours_buffer,sizeof hours_buffer," ");
1201 1.10 oster }
1202 1.10 oster
1203 1.68 mrg snprintf(minutes_buffer,sizeof minutes_buffer,"%02d:",minutes);
1204 1.68 mrg snprintf(seconds_buffer,sizeof seconds_buffer,"%02d",seconds);
1205 1.68 mrg snprintf(string,len,"%s%s%s",
1206 1.10 oster hours_buffer, minutes_buffer, seconds_buffer);
1207 1.10 oster } else {
1208 1.68 mrg snprintf(string,len," --:--");
1209 1.10 oster }
1210 1.10 oster
1211 1.5 oster }
1212 1.5 oster
1213 1.5 oster static void
1214 1.36 xtraeme usage(void)
1215 1.1 oster {
1216 1.26 cgd const char *progname = getprogname();
1217 1.26 cgd
1218 1.75 kre fprintf(stderr,
1219 1.75 kre "usage: %s [-v] -A [yes | no | softroot | hardroot] dev\n",
1220 1.75 kre progname);
1221 1.65 wiz fprintf(stderr, " %s [-v] -a component dev\n", progname);
1222 1.26 cgd fprintf(stderr, " %s [-v] -B dev\n", progname);
1223 1.65 wiz fprintf(stderr, " %s [-v] -C config_file dev\n", progname);
1224 1.26 cgd fprintf(stderr, " %s [-v] -c config_file dev\n", progname);
1225 1.65 wiz fprintf(stderr, " %s [-v] -F component dev\n", progname);
1226 1.26 cgd fprintf(stderr, " %s [-v] -f component dev\n", progname);
1227 1.65 wiz fprintf(stderr, " %s [-v] -G dev\n", progname);
1228 1.26 cgd fprintf(stderr, " %s [-v] -g component dev\n", progname);
1229 1.65 wiz fprintf(stderr, " %s [-v] -I serial_number dev\n", progname);
1230 1.26 cgd fprintf(stderr, " %s [-v] -i dev\n", progname);
1231 1.42 jld fprintf(stderr, " %s [-v] -M [yes | no | set params] dev\n",
1232 1.42 jld progname);
1233 1.65 wiz fprintf(stderr, " %s [-v] -m dev\n", progname);
1234 1.65 wiz fprintf(stderr, " %s [-v] -P dev\n", progname);
1235 1.31 oster fprintf(stderr, " %s [-v] -p dev\n", progname);
1236 1.65 wiz fprintf(stderr, " %s [-v] -R component dev\n", progname);
1237 1.26 cgd fprintf(stderr, " %s [-v] -r component dev\n", progname);
1238 1.65 wiz fprintf(stderr, " %s [-v] -S dev\n", progname);
1239 1.26 cgd fprintf(stderr, " %s [-v] -s dev\n", progname);
1240 1.78 kre fprintf(stderr, " %s [-v] -t config_file\n", progname);
1241 1.65 wiz fprintf(stderr, " %s [-v] -U unit dev\n", progname);
1242 1.26 cgd fprintf(stderr, " %s [-v] -u dev\n", progname);
1243 1.1 oster exit(1);
1244 1.1 oster /* NOTREACHED */
1245 1.1 oster }
1246 1.58 manu
1247 1.58 manu static unsigned int
1248 1.59 christos xstrtouint(const char *str)
1249 1.58 manu {
1250 1.59 christos int e;
1251 1.59 christos unsigned int num = (unsigned int)strtou(str, NULL, 10, 0, INT_MAX, &e);
1252 1.59 christos if (e)
1253 1.59 christos errc(EXIT_FAILURE, e, "Bad number `%s'", str);
1254 1.59 christos return num;
1255 1.58 manu }
1256