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