]> git.ipfire.org Git - thirdparty/mdadm.git/blame_incremental - mdadm.c
Never remove device nodes of active devices.
[thirdparty/mdadm.git] / mdadm.c
... / ...
CommitLineData
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 *
29 * Additions for bitmap and write-behind RAID options, Copyright (C) 2003-2004,
30 * Paul Clements, SteelEye Technology, Inc.
31 */
32
33#include "mdadm.h"
34#include "md_p.h"
35#include <ctype.h>
36
37
38int main(int argc, char *argv[])
39{
40 int mode = 0;
41 int opt;
42 int option_index;
43 char *c;
44 int rv;
45 int i;
46
47 int chunk = 0;
48 long long size = -1;
49 int level = UnSet;
50 int layout = UnSet;
51 int raiddisks = 0;
52 int max_disks = MD_SB_DISKS; /* just a default */
53 int sparedisks = 0;
54 struct mddev_ident_s ident;
55 char *configfile = NULL;
56 char *cp;
57 char *update = NULL;
58 int scan = 0;
59 char devmode = 0;
60 int runstop = 0;
61 int readonly = 0;
62 int write_behind = 0;
63 int bitmap_fd = -1;
64 char *bitmap_file = NULL;
65 char *backup_file = NULL;
66 int bitmap_chunk = UnSet;
67 int SparcAdjust = 0;
68 mddev_dev_t devlist = NULL;
69 mddev_dev_t *devlistend = & devlist;
70 mddev_dev_t dv;
71 int devs_found = 0;
72 int verbose = 0;
73 int quiet = 0;
74 int brief = 0;
75 int force = 0;
76 int test = 0;
77 int assume_clean = 0;
78 /* autof indicates whether and how to create device node.
79 * bottom 3 bits are style. Rest (when shifted) are number of parts
80 * 0 - unset
81 * 1 - don't create (no)
82 * 2 - if is_standard, then create (yes)
83 * 3 - create as 'md' - reject is_standard mdp (md)
84 * 4 - create as 'mdp' - reject is_standard md (mdp)
85 * 5 - default to md if not is_standard (md in config file)
86 * 6 - default to mdp if not is_standard (part, or mdp in config file)
87 */
88 int autof = 0;
89
90 char *homehost = NULL;
91 char sys_hostname[256];
92 char *mailaddr = NULL;
93 char *program = NULL;
94 int delay = 0;
95 int daemonise = 0;
96 char *pidfile = NULL;
97 int oneshot = 0;
98 struct supertype *ss = NULL;
99 int writemostly = 0;
100 int re_add = 0;
101 char *shortopt = short_options;
102 int dosyslog = 0;
103
104 int copies;
105 int print_help = 0;
106
107 int mdfd = -1;
108
109 srandom(time(0) ^ getpid());
110
111 ident.uuid_set=0;
112 ident.level = UnSet;
113 ident.raid_disks = UnSet;
114 ident.super_minor= UnSet;
115 ident.devices=0;
116 ident.spare_group = NULL;
117 ident.autof = 0;
118 ident.st = NULL;
119 ident.bitmap_fd = -1;
120 ident.bitmap_file = NULL;
121 ident.name[0] = 0;
122
123 while ((option_index = -1) ,
124 (opt=getopt_long(argc, argv,
125 shortopt, long_options,
126 &option_index)) != -1) {
127 int newmode = mode;
128 /* firstly, some mode-independant options */
129 switch(opt) {
130 case 'h':
131 if (option_index > 0 &&
132 strcmp(long_options[option_index].name, "help-options")==0)
133 print_help = 2;
134 else
135 print_help = 1;
136 continue;
137
138 case 'V':
139 fputs(Version, stderr);
140 exit(0);
141
142 case 'v': verbose++;
143 continue;
144
145 case 'q': quiet++;
146 continue;
147
148 case 'b':
149 if (mode == ASSEMBLE || mode == BUILD || mode == CREATE || mode == GROW)
150 break; /* b means bitmap */
151 brief = 1;
152 if (optarg) {
153 fprintf(stderr, Name ": -b cannot have any extra immediately after it, sorry.\n");
154 exit(2);
155 }
156 continue;
157
158 case HomeHost:
159 homehost = optarg;
160 continue;
161
162 case ':':
163 case '?':
164 fputs(Usage, stderr);
165 exit(2);
166 }
167 /* second, figure out the mode.
168 * Some options force the mode. Others
169 * set the mode if it isn't already
170 */
171
172 switch(opt) {
173 case '@': /* just incase they say --manage */
174 newmode = MANAGE;
175 shortopt = short_bitmap_auto_options;
176 break;
177 case 'a':
178 case 'r':
179 case 'f':
180 case 6: /* re-add */
181 if (!mode) {
182 newmode = MANAGE;
183 shortopt = short_bitmap_auto_options;
184 }
185 break;
186
187 case 'A': newmode = ASSEMBLE; shortopt = short_bitmap_auto_options; break;
188 case 'B': newmode = BUILD; shortopt = short_bitmap_auto_options; break;
189 case 'C': newmode = CREATE; shortopt = short_bitmap_auto_options; break;
190 case 'F': newmode = MONITOR;break;
191 case 'G': newmode = GROW; shortopt = short_bitmap_auto_options; break;
192
193 case '#':
194 case 'D':
195 case 'E':
196 case 'X':
197 case 'Q': newmode = MISC; break;
198 case 'R':
199 case 'S':
200 case 'o':
201 case 'w':
202 case 'K': if (!mode) newmode = MISC; break;
203 }
204 if (mode && newmode == mode) {
205 /* everybody happy ! */
206 } else if (mode && newmode != mode) {
207 /* not allowed.. */
208 fprintf(stderr, Name ": ");
209 if (option_index >= 0)
210 fprintf(stderr, "--%s", long_options[option_index].name);
211 else
212 fprintf(stderr, "-%c", opt);
213 fprintf(stderr, " would set mdadm mode to \"%s\", but it is already set to \"%s\".\n",
214 map_num(modes, newmode),
215 map_num(modes, mode));
216 exit(2);
217 } else if (!mode && newmode) {
218 mode = newmode;
219 } else {
220 /* special case of -c --help */
221 if (opt == 'c' &&
222 ( strncmp(optarg, "--h", 3)==0 ||
223 strncmp(optarg, "-h", 2)==0)) {
224 fputs(Help_config, stderr);
225 exit(0);
226 }
227
228 /* If first option is a device, don't force the mode yet */
229 if (opt == 1) {
230 if (devs_found == 0) {
231 dv = malloc(sizeof(*dv));
232 if (dv == NULL) {
233 fprintf(stderr, Name ": malloc failed\n");
234 exit(3);
235 }
236 dv->devname = optarg;
237 dv->disposition = devmode;
238 dv->writemostly = writemostly;
239 dv->re_add = re_add;
240 dv->used = 0;
241 dv->next = NULL;
242 *devlistend = dv;
243 devlistend = &dv->next;
244
245 devs_found++;
246 continue;
247 }
248 /* No mode yet, and this is the second device ... */
249 fprintf(stderr, Name ": An option must be given to set the mode before a second device is listed\n");
250 exit(2);
251 }
252 if (option_index >= 0)
253 fprintf(stderr, Name ": --%s", long_options[option_index].name);
254 else
255 fprintf(stderr, Name ": -%c", opt);
256 fprintf(stderr, " does not set the mode, and so cannot be the first option.\n");
257 exit(2);
258 }
259
260 /* if we just set the mode, then done */
261 switch(opt) {
262 case '@':
263 case '#':
264 case 'A':
265 case 'B':
266 case 'C':
267 case 'F':
268 case 'G':
269 continue;
270 }
271 if (opt == 1) {
272 /* an undecorated option - must be a device name.
273 */
274 if (devs_found > 0 && mode == '@' && !devmode) {
275 fprintf(stderr, Name ": Must give one of -a/-r/-f for subsequent devices at %s\n", optarg);
276 exit(2);
277 }
278 if (devs_found > 0 && mode == 'G' && !devmode) {
279 fprintf(stderr, Name ": Must give one of -a for devices do add: %s\n", optarg);
280 exit(2);
281 }
282 dv = malloc(sizeof(*dv));
283 if (dv == NULL) {
284 fprintf(stderr, Name ": malloc failed\n");
285 exit(3);
286 }
287 dv->devname = optarg;
288 dv->disposition = devmode;
289 dv->writemostly = writemostly;
290 dv->re_add = re_add;
291 dv->next = NULL;
292 *devlistend = dv;
293 devlistend = &dv->next;
294
295 devs_found++;
296 continue;
297 }
298
299 /* We've got a mode, and opt is now something else which
300 * could depend on the mode */
301#define O(a,b) ((a<<8)|b)
302 switch (O(mode,opt)) {
303 case O(CREATE,'c'):
304 case O(BUILD,'c'): /* chunk or rounding */
305 if (chunk) {
306 fprintf(stderr, Name ": chunk/rounding may only be specified once. "
307 "Second value is %s.\n", optarg);
308 exit(2);
309 }
310 chunk = strtol(optarg, &c, 10);
311 if (!optarg[0] || *c || chunk<4 || ((chunk-1)&chunk)) {
312 fprintf(stderr, Name ": invalid chunk/rounding value: %s\n",
313 optarg);
314 exit(2);
315 }
316 continue;
317
318 case O(CREATE,'e'):
319 case O(ASSEMBLE,'e'):
320 case O(MISC,'e'): /* set metadata (superblock) information */
321 if (ss) {
322 fprintf(stderr, Name ": metadata information already given\n");
323 exit(2);
324 }
325 for(i=0; !ss && superlist[i]; i++)
326 ss = superlist[i]->match_metadata_desc(optarg);
327
328 if (!ss) {
329 fprintf(stderr, Name ": unrecognised metadata identifier: %s\n", optarg);
330 exit(2);
331 }
332 max_disks = ss->max_devs;
333 continue;
334
335 case O(MANAGE,'W'):
336 case O(BUILD,'W'):
337 case O(CREATE,'W'):
338 /* set write-mostly for following devices */
339 writemostly = 1;
340 continue;
341
342 case O(GROW,'z'):
343 case O(CREATE,'z'): /* size */
344 if (size >= 0) {
345 fprintf(stderr, Name ": size may only be specified once. "
346 "Second value is %s.\n", optarg);
347 exit(2);
348 }
349 if (strcmp(optarg, "max")==0)
350 size = 0;
351 else {
352 size = strtoll(optarg, &c, 10);
353 if (!optarg[0] || *c || size < 4) {
354 fprintf(stderr, Name ": invalid size: %s\n",
355 optarg);
356 exit(2);
357 }
358 }
359 continue;
360
361 case O(GROW,'l'): /* hack - needed to understand layout */
362 case O(CREATE,'l'):
363 case O(BUILD,'l'): /* set raid level*/
364 if (level != UnSet) {
365 fprintf(stderr, Name ": raid level may only be set once. "
366 "Second value is %s.\n", optarg);
367 exit(2);
368 }
369 level = map_name(pers, optarg);
370 if (level == UnSet) {
371 fprintf(stderr, Name ": invalid raid level: %s\n",
372 optarg);
373 exit(2);
374 }
375 if (level != 0 && level != -1 && level != 1 && level != -4 && level != -5 && mode == BUILD) {
376 fprintf(stderr, Name ": Raid level %s not permitted with --build.\n",
377 optarg);
378 exit(2);
379 }
380 if (sparedisks > 0 && level < 1 && level >= -1) {
381 fprintf(stderr, Name ": raid level %s is incompatible with spare-devices setting.\n",
382 optarg);
383 exit(2);
384 }
385 ident.level = level;
386 continue;
387
388 case O(CREATE,'p'): /* raid5 layout */
389 case O(BUILD,'p'): /* faulty layout */
390 case O(GROW, 'p'): /* faulty reconfig */
391 if (layout != UnSet) {
392 fprintf(stderr,Name ": layout may only be sent once. "
393 "Second value was %s\n", optarg);
394 exit(2);
395 }
396 switch(level) {
397 default:
398 fprintf(stderr, Name ": layout not meaningful for %s arrays.\n",
399 map_num(pers, level));
400 exit(2);
401 case UnSet:
402 fprintf(stderr, Name ": raid level must be given before layout.\n");
403 exit(2);
404
405 case 5:
406 case 6:
407 layout = map_name(r5layout, optarg);
408 if (layout==UnSet) {
409 fprintf(stderr, Name ": layout %s not understood for raid5.\n",
410 optarg);
411 exit(2);
412 }
413 break;
414
415 case 10:
416 /* 'f', 'o' or 'n' followed by a number <= raid_disks */
417 if ((optarg[0] != 'n' && optarg[0] != 'f' && optarg[0] != 'o') ||
418 (copies = strtoul(optarg+1, &cp, 10)) < 1 ||
419 copies > 200 ||
420 *cp) {
421 fprintf(stderr, Name ": layout for raid10 must be 'nNN', 'oNN' or 'fNN' where NN is a number, not %s\n", optarg);
422 exit(2);
423 }
424 if (optarg[0] == 'n')
425 layout = 256 + copies;
426 else if (optarg[0] == 'o')
427 layout = 0x10000 + (copies<<8) + 1;
428 else
429 layout = 1 + (copies<<8);
430 break;
431 case -5: /* Faulty
432 * modeNNN
433 */
434
435 {
436 int ln = strcspn(optarg, "0123456789");
437 char *m = strdup(optarg);
438 int mode;
439 m[ln] = 0;
440 mode = map_name(faultylayout, m);
441 if (mode == UnSet) {
442 fprintf(stderr, Name ": layout %s not understood for faulty.\n",
443 optarg);
444 exit(2);
445 }
446 layout = mode | (atoi(optarg+ln)<< ModeShift);
447 }
448 }
449 continue;
450
451 case O(CREATE,AssumeClean):
452 case O(BUILD,AssumeClean): /* assume clean */
453 assume_clean = 1;
454 continue;
455
456 case O(GROW,'n'):
457 case O(CREATE,'n'):
458 case O(BUILD,'n'): /* number of raid disks */
459 if (raiddisks) {
460 fprintf(stderr, Name ": raid-devices set twice: %d and %s\n",
461 raiddisks, optarg);
462 exit(2);
463 }
464 raiddisks = strtol(optarg, &c, 10);
465 if (!optarg[0] || *c || raiddisks<=0) {
466 fprintf(stderr, Name ": invalid number of raid devices: %s\n",
467 optarg);
468 exit(2);
469 }
470 ident.raid_disks = raiddisks;
471 continue;
472
473 case O(CREATE,'x'): /* number of spare (eXtra) discs */
474 if (sparedisks) {
475 fprintf(stderr,Name ": spare-devices set twice: %d and %s\n",
476 sparedisks, optarg);
477 exit(2);
478 }
479 if (level != UnSet && level <= 0 && level >= -1) {
480 fprintf(stderr, Name ": spare-devices setting is incompatible with raid level %d\n",
481 level);
482 exit(2);
483 }
484 sparedisks = strtol(optarg, &c, 10);
485 if (!optarg[0] || *c || sparedisks < 0) {
486 fprintf(stderr, Name ": invalid number of spare-devices: %s\n",
487 optarg);
488 exit(2);
489 }
490 continue;
491
492 case O(CREATE,'a'):
493 case O(BUILD,'a'):
494 case O(ASSEMBLE,'a'): /* auto-creation of device node */
495 autof = parse_auto(optarg, "--auto flag", 0);
496 continue;
497
498 case O(BUILD,'f'): /* force honouring '-n 1' */
499 case O(GROW,'f'): /* ditto */
500 case O(CREATE,'f'): /* force honouring of device list */
501 case O(ASSEMBLE,'f'): /* force assembly */
502 case O(MISC,'f'): /* force zero */
503 force=1;
504 continue;
505
506 /* now for the Assemble options */
507 case O(ASSEMBLE,'u'): /* uuid of array */
508 if (ident.uuid_set) {
509 fprintf(stderr, Name ": uuid cannot be set twice. "
510 "Second value %s.\n", optarg);
511 exit(2);
512 }
513 if (parse_uuid(optarg, ident.uuid))
514 ident.uuid_set = 1;
515 else {
516 fprintf(stderr,Name ": Bad uuid: %s\n", optarg);
517 exit(2);
518 }
519 continue;
520
521 case O(CREATE,'N'):
522 case O(ASSEMBLE,'N'):
523 if (ident.name[0]) {
524 fprintf(stderr, Name ": name cannot be set twice. "
525 "Second value %s.\n", optarg);
526 exit(2);
527 }
528 if (strlen(optarg) > 32) {
529 fprintf(stderr, Name ": name '%s' is too long, 32 chars max.\n",
530 optarg);
531 exit(2);
532 }
533 strcpy(ident.name, optarg);
534 continue;
535
536 case O(ASSEMBLE,'m'): /* super-minor for array */
537 if (ident.super_minor != UnSet) {
538 fprintf(stderr, Name ": super-minor cannot be set twice. "
539 "Second value: %s.\n", optarg);
540 exit(2);
541 }
542 if (strcmp(optarg, "dev")==0)
543 ident.super_minor = -2;
544 else {
545 ident.super_minor = strtoul(optarg, &cp, 10);
546 if (!optarg[0] || *cp) {
547 fprintf(stderr, Name ": Bad super-minor number: %s.\n", optarg);
548 exit(2);
549 }
550 }
551 continue;
552
553 case O(ASSEMBLE,'U'): /* update the superblock */
554 if (update) {
555 fprintf(stderr, Name ": Can only update one aspect of superblock, both %s and %s given.\n",
556 update, optarg);
557 exit(2);
558 }
559 update = optarg;
560 if (strcmp(update, "sparc2.2")==0)
561 continue;
562 if (strcmp(update, "super-minor") == 0)
563 continue;
564 if (strcmp(update, "summaries")==0)
565 continue;
566 if (strcmp(update, "resync")==0)
567 continue;
568 if (strcmp(update, "uuid")==0)
569 continue;
570 if (strcmp(update, "name")==0)
571 continue;
572 if (strcmp(update, "homehost")==0)
573 continue;
574 if (strcmp(update, "byteorder")==0) {
575 if (ss) {
576 fprintf(stderr, Name ": must not set metadata type with --update=byteorder.\n");
577 exit(2);
578 }
579 for(i=0; !ss && superlist[i]; i++)
580 ss = superlist[i]->match_metadata_desc("0.swap");
581 if (!ss) {
582 fprintf(stderr, Name ": INTERNAL ERROR cannot find 0.swap\n");
583 exit(2);
584 }
585
586 continue;
587 }
588 fprintf(stderr, Name ": '--update %s' invalid. Only 'sparc2.2', 'super-minor', 'uuid', 'resync' or 'summaries' supported\n",update);
589 exit(2);
590
591 case O(ASSEMBLE,NoDegraded): /* --no-degraded */
592 runstop = -1; /* --stop isn't allowed for --assemble, so we overload slightly */
593 continue;
594
595 case O(ASSEMBLE,'c'): /* config file */
596 case O(MISC, 'c'):
597 case O(MONITOR,'c'):
598 if (configfile) {
599 fprintf(stderr, Name ": configfile cannot be set twice. "
600 "Second value is %s.\n", optarg);
601 exit(2);
602 }
603 configfile = optarg;
604 /* FIXME possibly check that config file exists. Even parse it */
605 continue;
606 case O(ASSEMBLE,'s'): /* scan */
607 case O(MISC,'s'):
608 case O(MONITOR,'s'):
609 scan = 1;
610 continue;
611
612 case O(MONITOR,'m'): /* mail address */
613 if (mailaddr)
614 fprintf(stderr, Name ": only specify one mailaddress. %s ignored.\n",
615 optarg);
616 else
617 mailaddr = optarg;
618 continue;
619
620 case O(MONITOR,'p'): /* alert program */
621 if (program)
622 fprintf(stderr, Name ": only specify one alter program. %s ignored.\n",
623 optarg);
624 else
625 program = optarg;
626 continue;
627
628 case O(MONITOR,'d'): /* delay in seconds */
629 case O(GROW, 'd'):
630 case O(BUILD,'d'): /* delay for bitmap updates */
631 case O(CREATE,'d'):
632 if (delay)
633 fprintf(stderr, Name ": only specify delay once. %s ignored.\n",
634 optarg);
635 else {
636 delay = strtol(optarg, &c, 10);
637 if (!optarg[0] || *c || delay<1) {
638 fprintf(stderr, Name ": invalid delay: %s\n",
639 optarg);
640 exit(2);
641 }
642 }
643 continue;
644 case O(MONITOR,'f'): /* daemonise */
645 daemonise = 1;
646 continue;
647 case O(MONITOR,'i'): /* pid */
648 if (pidfile)
649 fprintf(stderr, Name ": only specify one pid file. %s ignored.\n",
650 optarg);
651 else
652 pidfile = optarg;
653 continue;
654 case O(MONITOR,'1'): /* oneshot */
655 oneshot = 1;
656 continue;
657 case O(MONITOR,'t'): /* test */
658 test = 1;
659 continue;
660 case O(MONITOR,'y'): /* log messages to syslog */
661 openlog("mdadm", 0, SYSLOG_FACILITY);
662 dosyslog = 1;
663 continue;
664
665 /* now the general management options. Some are applicable
666 * to other modes. None have arguments.
667 */
668 case O(GROW,'a'):
669 case O(MANAGE,'a'): /* add a drive */
670 devmode = 'a';
671 re_add = 0;
672 continue;
673 case O(MANAGE,ReAdd):
674 devmode = 'a';
675 re_add = 1;
676 continue;
677 case O(MANAGE,'r'): /* remove a drive */
678 devmode = 'r';
679 continue;
680 case O(MANAGE,'f'): /* set faulty */
681 devmode = 'f';
682 continue;
683 case O(MANAGE,'R'):
684 case O(ASSEMBLE,'R'):
685 case O(BUILD,'R'):
686 case O(CREATE,'R'): /* Run the array */
687 if (runstop < 0) {
688 fprintf(stderr, Name ": Cannot both Stop and Run an array\n");
689 exit(2);
690 }
691 runstop = 1;
692 continue;
693 case O(MANAGE,'S'):
694 if (runstop > 0) {
695 fprintf(stderr, Name ": Cannot both Run and Stop an array\n");
696 exit(2);
697 }
698 runstop = -1;
699 continue;
700
701 case O(MANAGE,'o'):
702 if (readonly < 0) {
703 fprintf(stderr, Name ": Cannot have both readonly and readwrite\n");
704 exit(2);
705 }
706 readonly = 1;
707 continue;
708 case O(MANAGE,'w'):
709 if (readonly > 0) {
710 fprintf(stderr, Name ": Cannot have both readwrite and readonly.\n");
711 exit(2);
712 }
713 readonly = -1;
714 continue;
715
716 case O(MISC,'Q'):
717 case O(MISC,'D'):
718 case O(MISC,'E'):
719 case O(MISC,'K'):
720 case O(MISC,'R'):
721 case O(MISC,'S'):
722 case O(MISC,'X'):
723 case O(MISC,'o'):
724 case O(MISC,'w'):
725 if (devmode && devmode != opt &&
726 (devmode == 'E' || (opt == 'E' && devmode != 'Q'))) {
727 fprintf(stderr, Name ": --examine/-E cannot be given with -%c\n",
728 devmode =='E'?opt:devmode);
729 exit(2);
730 }
731 devmode = opt;
732 continue;
733 case O(MISC,'t'):
734 test = 1;
735 continue;
736
737 case O(MISC, Sparc22):
738 if (devmode != 'E') {
739 fprintf(stderr, Name ": --sparc2.2 only allowed with --examine\n");
740 exit(2);
741 }
742 SparcAdjust = 1;
743 continue;
744
745 case O(ASSEMBLE,'b'): /* here we simply set the bitmap file */
746 if (!optarg) {
747 fprintf(stderr, Name ": bitmap file needed with -b in --assemble mode\n");
748 exit(2);
749 }
750 if (strcmp(optarg, "internal")==0) {
751 fprintf(stderr, Name ": there is no need to specify --bitmap when assembling arrays with internal bitmaps\n");
752 continue;
753 }
754 bitmap_fd = open(optarg, O_RDWR);
755 if (!*optarg || bitmap_fd < 0) {
756 fprintf(stderr, Name ": cannot open bitmap file %s: %s\n", optarg, strerror(errno));
757 exit(2);
758 }
759 ident.bitmap_fd = bitmap_fd; /* for Assemble */
760 continue;
761
762 case O(ASSEMBLE, BackupFile):
763 case O(GROW, BackupFile):
764 /* Specify a file into which grow might place a backup,
765 * or from which assemble might recover a backup
766 */
767 if (backup_file) {
768 fprintf(stderr, Name ": backup file already specified, rejecting %s\n", optarg);
769 exit(2);
770 }
771 backup_file = optarg;
772 continue;
773
774 case O(GROW,'b'):
775 case O(BUILD,'b'):
776 case O(CREATE,'b'): /* here we create the bitmap */
777 if (strcmp(optarg, "internal")== 0 ||
778 strcmp(optarg, "none")== 0 ||
779 strchr(optarg, '/') != NULL) {
780 bitmap_file = optarg;
781 continue;
782 }
783 /* probable typo */
784 fprintf(stderr, Name ": bitmap file must contain a '/', or be 'internal', or 'none'\n");
785 exit(2);
786
787 case O(GROW,BitmapChunk):
788 case O(BUILD,BitmapChunk):
789 case O(CREATE,BitmapChunk): /* bitmap chunksize */
790 bitmap_chunk = strtol(optarg, &c, 10);
791 if (!optarg[0] || *c || bitmap_chunk < 0 ||
792 bitmap_chunk & (bitmap_chunk - 1)) {
793 fprintf(stderr, Name ": invalid bitmap chunksize: %s\n",
794 optarg);
795 exit(2);
796 }
797 /* convert K to B, chunk of 0K means 512B */
798 bitmap_chunk = bitmap_chunk ? bitmap_chunk * 1024 : 512;
799 continue;
800
801 case O(BUILD, WriteBehind):
802 case O(CREATE, WriteBehind): /* write-behind mode */
803 write_behind = DEFAULT_MAX_WRITE_BEHIND;
804 if (optarg) {
805 write_behind = strtol(optarg, &c, 10);
806 if (write_behind < 0 || *c ||
807 write_behind > 16383) {
808 fprintf(stderr, Name ": Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg);
809 exit(2);
810 }
811 }
812 continue;
813 }
814 /* We have now processed all the valid options. Anything else is
815 * an error
816 */
817 if (option_index > 0)
818 fprintf(stderr, Name ":option --%s not valid in %s mode\n",
819 long_options[option_index].name,
820 map_num(modes, mode));
821 else
822 fprintf(stderr, Name ": option -%c not valid in %s mode\n",
823 opt, map_num(modes, mode));
824 exit(2);
825
826 }
827
828 if (print_help) {
829 char *help_text = Help;
830 if (print_help == 2)
831 help_text = OptionHelp;
832 else
833 switch (mode) {
834 case ASSEMBLE : help_text = Help_assemble; break;
835 case BUILD : help_text = Help_build; break;
836 case CREATE : help_text = Help_create; break;
837 case MANAGE : help_text = Help_manage; break;
838 case MISC : help_text = Help_misc; break;
839 case MONITOR : help_text = Help_monitor; break;
840 case GROW : help_text = Help_grow; break;
841 }
842 fputs(help_text,stderr);
843 exit(0);
844 }
845
846 if (!mode && devs_found) {
847 mode = MISC;
848 devmode = 'Q';
849 if (devlist->disposition == 0)
850 devlist->disposition = devmode;
851 }
852 if (!mode) {
853 fputs(Usage, stderr);
854 exit(2);
855 }
856 /* Ok, got the option parsing out of the way
857 * hopefully it's mostly right but there might be some stuff
858 * missing
859 *
860 * That is mosty checked in the per-mode stuff but...
861 *
862 * For @,B,C and A without -s, the first device listed must be an md device
863 * we check that here and open it.
864 */
865
866 if (mode==MANAGE || mode == BUILD || mode == CREATE || mode == GROW ||
867 (mode == ASSEMBLE && ! scan)) {
868 if (devs_found < 1) {
869 fprintf(stderr, Name ": an md device must be given in this mode\n");
870 exit(2);
871 }
872 if ((int)ident.super_minor == -2 && autof) {
873 fprintf(stderr, Name ": --super-minor=dev is incompatible with --auto\n");
874 exit(2);
875 }
876 mdfd = open_mddev(devlist->devname, autof);
877 if (mdfd < 0)
878 exit(1);
879 if ((int)ident.super_minor == -2) {
880 struct stat stb;
881 fstat(mdfd, &stb);
882 ident.super_minor = minor(stb.st_rdev);
883 }
884 }
885
886 if (raiddisks) {
887 if (raiddisks > max_disks) {
888 fprintf(stderr, Name ": invalid number of raid devices: %d\n",
889 raiddisks);
890 exit(2);
891 }
892 if (raiddisks == 1 && !force && level != -5) {
893 fprintf(stderr, Name ": '1' is an unusual number of drives for an array, so it is probably\n"
894 " a mistake. If you really mean it you will need to specify --force before\n"
895 " setting the number of drives.\n");
896 exit(2);
897 }
898 }
899 if (sparedisks) {
900 if ( sparedisks > max_disks - raiddisks) {
901 fprintf(stderr, Name ": invalid number of spare-devices: %d\n",
902 sparedisks);
903 exit(2);
904 }
905 }
906
907 if (homehost == NULL)
908 homehost = conf_get_homehost(configfile);
909 if (homehost && strcmp(homehost, "<system>")==0) {
910 if (gethostname(sys_hostname, sizeof(sys_hostname)) == 0) {
911 sys_hostname[sizeof(sys_hostname)-1] = 0;
912 homehost = sys_hostname;
913 }
914 }
915
916 rv = 0;
917 switch(mode) {
918 case MANAGE:
919 /* readonly, add/remove, readwrite, runstop */
920 if (readonly>0)
921 rv = Manage_ro(devlist->devname, mdfd, readonly);
922 if (!rv && devs_found>1)
923 rv = Manage_subdevs(devlist->devname, mdfd,
924 devlist->next, verbose-quiet);
925 if (!rv && readonly < 0)
926 rv = Manage_ro(devlist->devname, mdfd, readonly);
927 if (!rv && runstop)
928 rv = Manage_runstop(devlist->devname, mdfd, runstop, 0);
929 break;
930 case ASSEMBLE:
931 if (devs_found == 1 && ident.uuid_set == 0 &&
932 ident.super_minor == UnSet && ident.name[0] == 0 && !scan ) {
933 /* Only a device has been given, so get details from config file */
934 mddev_ident_t array_ident = conf_get_ident(configfile, devlist->devname);
935 if (array_ident == NULL) {
936 fprintf(stderr, Name ": %s not identified in config file.\n",
937 devlist->devname);
938 rv |= 1;
939 } else {
940 mdfd = open_mddev(devlist->devname,
941 array_ident->autof ? array_ident->autof : autof);
942 if (mdfd < 0)
943 rv |= 1;
944 else {
945 rv |= Assemble(ss, devlist->devname, mdfd, array_ident, configfile,
946 NULL, backup_file,
947 readonly, runstop, update, homehost, verbose-quiet, force);
948 close(mdfd);
949 }
950 }
951 } else if (!scan)
952 rv = Assemble(ss, devlist->devname, mdfd, &ident, configfile,
953 devlist->next, backup_file,
954 readonly, runstop, update, homehost, verbose-quiet, force);
955 else if (devs_found>0) {
956 if (update && devs_found > 1) {
957 fprintf(stderr, Name ": can only update a single array at a time\n");
958 exit(1);
959 }
960 if (backup_file && devs_found > 1) {
961 fprintf(stderr, Name ": can only assemble a single array when providing a backup file.\n");
962 exit(1);
963 }
964 for (dv = devlist ; dv ; dv=dv->next) {
965 mddev_ident_t array_ident = conf_get_ident(configfile, dv->devname);
966 if (array_ident == NULL) {
967 fprintf(stderr, Name ": %s not identified in config file.\n",
968 dv->devname);
969 rv |= 1;
970 continue;
971 }
972 mdfd = open_mddev(dv->devname,
973 array_ident->autof ?array_ident->autof : autof);
974 if (mdfd < 0) {
975 rv |= 1;
976 continue;
977 }
978 rv |= Assemble(ss, dv->devname, mdfd, array_ident, configfile,
979 NULL, backup_file,
980 readonly, runstop, update, homehost, verbose-quiet, force);
981 close(mdfd);
982 }
983 } else {
984 mddev_ident_t array_list = conf_get_ident(configfile, NULL);
985 mddev_dev_t devlist = conf_get_devs(configfile);
986 int cnt = 0;
987 if (devlist == NULL) {
988 fprintf(stderr, Name ": No devices listed in conf file were found.\n");
989 exit(1);
990 }
991 if (update) {
992 fprintf(stderr, Name ": --update not meaningful with a --scan assembly.\n");
993 exit(1);
994 }
995 if (backup_file) {
996 fprintf(stderr, Name ": --backup_file not meaningful with a --scan assembly.\n");
997 exit(1);
998 }
999 for (; array_list; array_list = array_list->next) {
1000 mdu_array_info_t array;
1001 mdfd = open_mddev(array_list->devname,
1002 array_list->autof ? array_list->autof : autof);
1003 if (mdfd < 0) {
1004 rv |= 1;
1005 continue;
1006 }
1007 if (ioctl(mdfd, GET_ARRAY_INFO, &array)>=0)
1008 /* already assembled, skip */
1009 ;
1010 else {
1011 rv |= Assemble(ss, array_list->devname, mdfd,
1012 array_list, configfile,
1013 devlist, NULL,
1014 readonly, runstop, NULL, homehost, verbose-quiet, force);
1015 if (rv == 0) cnt++;
1016 }
1017 close(mdfd);
1018 }
1019 if (homehost) {
1020 /* Maybe we can auto-assemble something.
1021 * Repeatedly call Assemble in auto-assmble mode
1022 * until it fails
1023 */
1024 int rv2;
1025 do {
1026 ident.autof = autof;
1027 rv2 = Assemble(ss, NULL, -1,
1028 &ident, configfile,
1029 devlist, NULL,
1030 readonly, runstop, NULL, homehost, verbose-quiet, force);
1031 if (rv2==0)
1032 cnt++;
1033 } while (rv2==0);
1034 if (cnt == 0 && rv == 0) {
1035 fprintf(stderr, Name ": No arrays found in config file or automatically\n");
1036 rv = 1;
1037 }
1038 } else if (cnt == 0 && rv == 0) {
1039 fprintf(stderr, Name ": No arrays found in config file\n");
1040 rv = 1;
1041 }
1042 }
1043 break;
1044 case BUILD:
1045 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1046 if (write_behind && !bitmap_file) {
1047 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1048 rv = 1;
1049 break;
1050 }
1051
1052 if (bitmap_file) {
1053 if (strcmp(bitmap_file, "internal")==0) {
1054 fprintf(stderr, Name ": 'internal' bitmaps not supported with --build\n");
1055 rv |= 1;
1056 break;
1057 }
1058 }
1059 rv = Build(devlist->devname, mdfd, chunk, level, layout,
1060 raiddisks, devlist->next, assume_clean,
1061 bitmap_file, bitmap_chunk, write_behind, delay, verbose-quiet);
1062 break;
1063 case CREATE:
1064 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1065 if (write_behind && !bitmap_file) {
1066 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1067 rv = 1;
1068 break;
1069 }
1070
1071 rv = Create(ss, devlist->devname, mdfd, chunk, level, layout, size<0 ? 0 : size,
1072 raiddisks, sparedisks, ident.name, homehost,
1073 devs_found-1, devlist->next, runstop, verbose-quiet, force, assume_clean,
1074 bitmap_file, bitmap_chunk, write_behind, delay);
1075 break;
1076 case MISC:
1077
1078 if (devmode == 'E') {
1079 if (devlist == NULL && !scan) {
1080 fprintf(stderr, Name ": No devices to examine\n");
1081 exit(2);
1082 }
1083 if (devlist == NULL)
1084 devlist = conf_get_devs(configfile);
1085 if (devlist == NULL) {
1086 fprintf(stderr, Name ": No devices listed in %s\n", configfile?configfile:DefaultConfFile);
1087 exit(1);
1088 }
1089 rv = Examine(devlist, scan?(verbose>1?0:verbose+1):brief, scan, SparcAdjust, ss, homehost);
1090 } else {
1091 if (devlist == NULL) {
1092 if (devmode=='D' && scan) {
1093 /* apply --detail to all devices in /proc/mdstat */
1094 struct mdstat_ent *ms = mdstat_read(0, 1);
1095 struct mdstat_ent *e;
1096 for (e=ms ; e ; e=e->next) {
1097 char *name = get_md_name(e->devnum);
1098
1099 if (!name) {
1100 fprintf(stderr, Name ": cannot find device file for %s\n",
1101 e->dev);
1102 continue;
1103 }
1104 rv |= Detail(name, verbose>1?0:verbose+1, test, homehost);
1105 put_md_name(name);
1106 }
1107 } else if (devmode == 'S' && scan) {
1108 /* apply --stop to all devices in /proc/mdstat */
1109 /* Due to possible stacking of devices, repeat until
1110 * nothing more can be stopped
1111 */
1112 int progress=1, err;
1113 int last = 0;
1114 do {
1115 struct mdstat_ent *ms = mdstat_read(0, 0);
1116 struct mdstat_ent *e;
1117
1118 if (!progress) last = 1;
1119 progress = 0; err = 0;
1120 for (e=ms ; e ; e=e->next) {
1121 char *name = get_md_name(e->devnum);
1122
1123 if (!name) {
1124 fprintf(stderr, Name ": cannot find device file for %s\n",
1125 e->dev);
1126 continue;
1127 }
1128 mdfd = open_mddev(name, 0);
1129 if (mdfd >= 0) {
1130 if (Manage_runstop(name, mdfd, -1, !last))
1131 err = 1;
1132 else
1133 progress = 1;
1134 close(mdfd);
1135 }
1136
1137 put_md_name(name);
1138 }
1139 } while (!last && err);
1140 if (err) rv |= 1;
1141 } else {
1142 fprintf(stderr, Name ": No devices given.\n");
1143 exit(2);
1144 }
1145 }
1146 for (dv=devlist ; dv; dv=dv->next) {
1147 switch(dv->disposition) {
1148 case 'D':
1149 rv |= Detail(dv->devname, brief?1+verbose:0, test, homehost); continue;
1150 case 'K': /* Zero superblock */
1151 rv |= Kill(dv->devname, force, quiet); continue;
1152 case 'Q':
1153 rv |= Query(dv->devname); continue;
1154 case 'X':
1155 rv |= ExamineBitmap(dv->devname, brief, ss); continue;
1156 }
1157 mdfd = open_mddev(dv->devname, 0);
1158 if (mdfd>=0) {
1159 switch(dv->disposition) {
1160 case 'R':
1161 rv |= Manage_runstop(dv->devname, mdfd, 1, 0); break;
1162 case 'S':
1163 rv |= Manage_runstop(dv->devname, mdfd, -1, 0); break;
1164 case 'o':
1165 rv |= Manage_ro(dv->devname, mdfd, 1); break;
1166 case 'w':
1167 rv |= Manage_ro(dv->devname, mdfd, -1); break;
1168 }
1169 close(mdfd);
1170 } else
1171 rv |= 1;
1172 }
1173 }
1174 break;
1175 case MONITOR:
1176 if (!devlist && !scan) {
1177 fprintf(stderr, Name ": Cannot monitor: need --scan or at least one device\n");
1178 rv = 1;
1179 break;
1180 }
1181 if (pidfile && !daemonise) {
1182 fprintf(stderr, Name ": Cannot write a pid file when not in daemon mode\n");
1183 rv = 1;
1184 break;
1185 }
1186 rv= Monitor(devlist, mailaddr, program,
1187 delay?delay:60, daemonise, scan, oneshot,
1188 dosyslog, configfile, test, pidfile);
1189 break;
1190
1191 case GROW:
1192 if (devs_found > 1) {
1193
1194 /* must be '-a'. */
1195 if (size >= 0 || raiddisks) {
1196 fprintf(stderr, Name ": --size, --raiddisks, and --add are exclusing in --grow mode\n");
1197 rv = 1;
1198 break;
1199 }
1200 for (dv=devlist->next; dv ; dv=dv->next) {
1201 rv = Grow_Add_device(devlist->devname, mdfd, dv->devname);
1202 if (rv)
1203 break;
1204 }
1205 } else if ((size >= 0) + (raiddisks != 0) + (layout != UnSet) + (bitmap_file != NULL)> 1) {
1206 fprintf(stderr, Name ": can change at most one of size, raiddisks, bitmap, and layout\n");
1207 rv = 1;
1208 break;
1209 } else if (layout != UnSet)
1210 rv = Manage_reconfig(devlist->devname, mdfd, layout);
1211 else if (size >= 0 || raiddisks)
1212 rv = Grow_reshape(devlist->devname, mdfd, quiet, backup_file,
1213 size, level, layout, chunk, raiddisks);
1214 else if (bitmap_file) {
1215 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1216 rv = Grow_addbitmap(devlist->devname, mdfd, bitmap_file,
1217 bitmap_chunk, delay, write_behind, force);
1218 } else
1219 fprintf(stderr, Name ": no changes to --grow\n");
1220 break;
1221 }
1222 exit(rv);
1223}