]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.c
Merge branch 'fixes' into for-neil
[thirdparty/mdadm.git] / mdadm.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 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@suse.de>
23 *
24 * Additions for bitmap and write-behind RAID options, Copyright (C) 2003-2004,
25 * Paul Clements, SteelEye Technology, Inc.
26 */
27
28 #include "mdadm.h"
29 #include "md_p.h"
30 #include <ctype.h>
31
32
33 int main(int argc, char *argv[])
34 {
35 int mode = 0;
36 int opt;
37 int option_index;
38 char *c;
39 int rv;
40 int i;
41
42 int chunk = 0;
43 long long size = -1;
44 long long array_size = -1;
45 int level = UnSet;
46 int layout = UnSet;
47 char *layout_str = NULL;
48 int raiddisks = 0;
49 int max_disks = MD_SB_DISKS; /* just a default */
50 int sparedisks = 0;
51 struct mddev_ident_s ident;
52 char *configfile = NULL;
53 char *cp;
54 char *update = NULL;
55 int scan = 0;
56 char devmode = 0;
57 int runstop = 0;
58 int readonly = 0;
59 int write_behind = 0;
60 int bitmap_fd = -1;
61 char *bitmap_file = NULL;
62 char *backup_file = NULL;
63 int bitmap_chunk = UnSet;
64 int SparcAdjust = 0;
65 mddev_dev_t devlist = NULL;
66 mddev_dev_t *devlistend = & devlist;
67 mddev_dev_t dv;
68 int devs_found = 0;
69 int verbose = 0;
70 int quiet = 0;
71 int brief = 0;
72 int force = 0;
73 int test = 0;
74 int export = 0;
75 int assume_clean = 0;
76 char *symlinks = NULL;
77 /* autof indicates whether and how to create device node.
78 * bottom 3 bits are style. Rest (when shifted) are number of parts
79 * 0 - unset
80 * 1 - don't create (no)
81 * 2 - if is_standard, then create (yes)
82 * 3 - create as 'md' - reject is_standard mdp (md)
83 * 4 - create as 'mdp' - reject is_standard md (mdp)
84 * 5 - default to md if not is_standard (md in config file)
85 * 6 - default to mdp if not is_standard (part, or mdp in config file)
86 */
87 int autof = 0;
88
89 char *homehost = NULL;
90 char sys_hostname[256];
91 int require_homehost = 1;
92 char *mailaddr = NULL;
93 char *program = NULL;
94 int increments = 20;
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 rebuild_map = 0;
105 int auto_update_home = 0;
106 char *subarray = NULL;
107
108 int print_help = 0;
109 FILE *outf;
110
111 int mdfd = -1;
112
113 srandom(time(0) ^ getpid());
114
115 ident.uuid_set=0;
116 ident.level = UnSet;
117 ident.raid_disks = UnSet;
118 ident.super_minor= UnSet;
119 ident.devices=0;
120 ident.spare_group = NULL;
121 ident.autof = 0;
122 ident.st = NULL;
123 ident.bitmap_fd = -1;
124 ident.bitmap_file = NULL;
125 ident.name[0] = 0;
126 ident.container = NULL;
127 ident.member = NULL;
128
129 while ((option_index = -1) ,
130 (opt=getopt_long(argc, argv,
131 shortopt, long_options,
132 &option_index)) != -1) {
133 int newmode = mode;
134 /* firstly, some mode-independent options */
135 switch(opt) {
136 case 'h':
137 if (option_index > 0 &&
138 strcmp(long_options[option_index].name, "help-options")==0)
139 print_help = 2;
140 else
141 print_help = 1;
142 continue;
143
144 case 'V':
145 fputs(Version, stderr);
146 exit(0);
147
148 case 'v': verbose++;
149 continue;
150
151 case 'q': quiet++;
152 continue;
153
154 case 'b':
155 if (mode == ASSEMBLE || mode == BUILD || mode == CREATE || mode == GROW ||
156 mode == INCREMENTAL || mode == MANAGE)
157 break; /* b means bitmap */
158 brief = 1;
159 continue;
160
161 case 'Y': export++;
162 continue;
163
164 case HomeHost:
165 if (strcasecmp(optarg, "<ignore>") == 0)
166 require_homehost = 0;
167 else
168 homehost = optarg;
169 continue;
170
171 case ':':
172 case '?':
173 fputs(Usage, stderr);
174 exit(2);
175 }
176 /* second, figure out the mode.
177 * Some options force the mode. Others
178 * set the mode if it isn't already
179 */
180
181 switch(opt) {
182 case '@': /* just incase they say --manage */
183 newmode = MANAGE;
184 shortopt = short_bitmap_options;
185 break;
186 case 'a':
187 case 'r':
188 case 'f':
189 case ReAdd: /* re-add */
190 if (!mode) {
191 newmode = MANAGE;
192 shortopt = short_bitmap_options;
193 }
194 break;
195
196 case 'A': newmode = ASSEMBLE; shortopt = short_bitmap_auto_options; break;
197 case 'B': newmode = BUILD; shortopt = short_bitmap_auto_options; break;
198 case 'C': newmode = CREATE; shortopt = short_bitmap_auto_options; break;
199 case 'F': newmode = MONITOR;break;
200 case 'G': newmode = GROW;
201 shortopt = short_bitmap_options;
202 break;
203 case 'I': newmode = INCREMENTAL;
204 shortopt = short_bitmap_auto_options; break;
205 case AutoDetect:
206 newmode = AUTODETECT; break;
207
208 case '#':
209 case 'D':
210 case 'E':
211 case 'X':
212 case 'Q': newmode = MISC; break;
213 case 'R':
214 case 'S':
215 case 'o':
216 case 'w':
217 case 'W':
218 case Waitclean:
219 case DetailPlatform:
220 case KillSubarray:
221 case UpdateSubarray:
222 if (opt == KillSubarray || opt == UpdateSubarray) {
223 if (subarray) {
224 fprintf(stderr, Name ": subarray can only be specified once\n");
225 exit(2);
226 }
227 subarray = optarg;
228 }
229 case 'K': if (!mode) newmode = MISC; break;
230 }
231 if (mode && newmode == mode) {
232 /* everybody happy ! */
233 } else if (mode && newmode != mode) {
234 /* not allowed.. */
235 fprintf(stderr, Name ": ");
236 if (option_index >= 0)
237 fprintf(stderr, "--%s", long_options[option_index].name);
238 else
239 fprintf(stderr, "-%c", opt);
240 fprintf(stderr, " would set mdadm mode to \"%s\", but it is already set to \"%s\".\n",
241 map_num(modes, newmode),
242 map_num(modes, mode));
243 exit(2);
244 } else if (!mode && newmode) {
245 mode = newmode;
246 } else {
247 /* special case of -c --help */
248 if (opt == 'c' &&
249 ( strncmp(optarg, "--h", 3)==0 ||
250 strncmp(optarg, "-h", 2)==0)) {
251 fputs(Help_config, stdout);
252 exit(0);
253 }
254
255 /* If first option is a device, don't force the mode yet */
256 if (opt == 1) {
257 if (devs_found == 0) {
258 dv = malloc(sizeof(*dv));
259 if (dv == NULL) {
260 fprintf(stderr, Name ": malloc failed\n");
261 exit(3);
262 }
263 dv->devname = optarg;
264 dv->disposition = devmode;
265 dv->writemostly = writemostly;
266 dv->re_add = re_add;
267 dv->used = 0;
268 dv->content = NULL;
269 dv->next = NULL;
270 *devlistend = dv;
271 devlistend = &dv->next;
272
273 devs_found++;
274 continue;
275 }
276 /* No mode yet, and this is the second device ... */
277 fprintf(stderr, Name ": An option must be given to set the mode before a second device\n"
278 " (%s) is listed\n", optarg);
279 exit(2);
280 }
281 if (option_index >= 0)
282 fprintf(stderr, Name ": --%s", long_options[option_index].name);
283 else
284 fprintf(stderr, Name ": -%c", opt);
285 fprintf(stderr, " does not set the mode, and so cannot be the first option.\n");
286 exit(2);
287 }
288
289 /* if we just set the mode, then done */
290 switch(opt) {
291 case '@':
292 case '#':
293 case 'A':
294 case 'B':
295 case 'C':
296 case 'F':
297 case 'G':
298 case 'I':
299 case AutoDetect:
300 continue;
301 }
302 if (opt == 1) {
303 /* an undecorated option - must be a device name.
304 */
305 if (devs_found > 0 && mode == '@' && !devmode) {
306 fprintf(stderr, Name ": Must give one of -a/-r/-f for subsequent devices at %s\n", optarg);
307 exit(2);
308 }
309 if (devs_found > 0 && mode == 'G' && !devmode) {
310 fprintf(stderr, Name ": Must give one of -a for devices do add: %s\n", optarg);
311 exit(2);
312 }
313 dv = malloc(sizeof(*dv));
314 if (dv == NULL) {
315 fprintf(stderr, Name ": malloc failed\n");
316 exit(3);
317 }
318 dv->devname = optarg;
319 dv->disposition = devmode;
320 dv->writemostly = writemostly;
321 dv->re_add = re_add;
322 dv->used = 0;
323 dv->content = NULL;
324 dv->next = NULL;
325 *devlistend = dv;
326 devlistend = &dv->next;
327
328 devs_found++;
329 continue;
330 }
331
332 /* We've got a mode, and opt is now something else which
333 * could depend on the mode */
334 #define O(a,b) ((a<<8)|b)
335 switch (O(mode,opt)) {
336 case O(GROW,'c'):
337 case O(CREATE,'c'):
338 case O(BUILD,'c'): /* chunk or rounding */
339 if (chunk) {
340 fprintf(stderr, Name ": chunk/rounding may only be specified once. "
341 "Second value is %s.\n", optarg);
342 exit(2);
343 }
344 chunk = strtol(optarg, &c, 10);
345 if (!optarg[0] || *c || chunk<4 || ((chunk-1)&chunk)) {
346 fprintf(stderr, Name ": invalid chunk/rounding value: %s\n",
347 optarg);
348 exit(2);
349 }
350 continue;
351
352 #if 0
353 case O(ASSEMBLE,AutoHomeHost):
354 auto_update_home = 1;
355 continue;
356 #endif
357 case O(INCREMENTAL, 'e'):
358 case O(CREATE,'e'):
359 case O(ASSEMBLE,'e'):
360 case O(MISC,'e'): /* set metadata (superblock) information */
361 if (ss) {
362 fprintf(stderr, Name ": metadata information already given\n");
363 exit(2);
364 }
365 for(i=0; !ss && superlist[i]; i++)
366 ss = superlist[i]->match_metadata_desc(optarg);
367
368 if (!ss) {
369 fprintf(stderr, Name ": unrecognised metadata identifier: %s\n", optarg);
370 exit(2);
371 }
372 max_disks = ss->max_devs;
373 continue;
374
375 case O(MANAGE,'W'):
376 case O(BUILD,'W'):
377 case O(CREATE,'W'):
378 /* set write-mostly for following devices */
379 writemostly = 1;
380 continue;
381
382 case O(MANAGE,'w'):
383 /* clear write-mostly for following devices */
384 writemostly = 2;
385 continue;
386
387
388 case O(GROW,'z'):
389 case O(CREATE,'z'):
390 case O(BUILD,'z'): /* size */
391 if (size >= 0) {
392 fprintf(stderr, Name ": size may only be specified once. "
393 "Second value is %s.\n", optarg);
394 exit(2);
395 }
396 if (strcmp(optarg, "max")==0)
397 size = 0;
398 else {
399 size = parse_size(optarg);
400 if (size < 8) {
401 fprintf(stderr, Name ": invalid size: %s\n",
402 optarg);
403 exit(2);
404 }
405 /* convert sectors to K */
406 size /= 2;
407 }
408 continue;
409
410 case O(GROW,'Z'): /* array size */
411 if (array_size >= 0) {
412 fprintf(stderr, Name ": array-size may only be specified once. "
413 "Second value is %s.\n", optarg);
414 exit(2);
415 }
416 if (strcmp(optarg, "max") == 0)
417 array_size = 0;
418 else {
419 array_size = parse_size(optarg);
420 if (array_size <= 0) {
421 fprintf(stderr, Name ": invalid array size: %s\n",
422 optarg);
423 exit(2);
424 }
425 }
426 continue;
427
428 case O(GROW,'l'):
429 case O(CREATE,'l'):
430 case O(BUILD,'l'): /* set raid level*/
431 if (level != UnSet) {
432 fprintf(stderr, Name ": raid level may only be set once. "
433 "Second value is %s.\n", optarg);
434 exit(2);
435 }
436 level = map_name(pers, optarg);
437 if (level == UnSet) {
438 fprintf(stderr, Name ": invalid raid level: %s\n",
439 optarg);
440 exit(2);
441 }
442 if (level != 0 && level != LEVEL_LINEAR && level != 1 &&
443 level != LEVEL_MULTIPATH && level != LEVEL_FAULTY &&
444 level != 10 &&
445 mode == BUILD) {
446 fprintf(stderr, Name ": Raid level %s not permitted with --build.\n",
447 optarg);
448 exit(2);
449 }
450 if (sparedisks > 0 && level < 1 && level >= -1) {
451 fprintf(stderr, Name ": raid level %s is incompatible with spare-devices setting.\n",
452 optarg);
453 exit(2);
454 }
455 ident.level = level;
456 continue;
457
458 case O(GROW, 'p'): /* new layout */
459 if (layout_str) {
460 fprintf(stderr,Name ": layout may only be sent once. "
461 "Second value was %s\n", optarg);
462 exit(2);
463 }
464 layout_str = optarg;
465 /* 'Grow' will parse the value */
466 continue;
467
468 case O(CREATE,'p'): /* raid5 layout */
469 case O(BUILD,'p'): /* faulty layout */
470 if (layout != UnSet) {
471 fprintf(stderr,Name ": layout may only be sent once. "
472 "Second value was %s\n", optarg);
473 exit(2);
474 }
475 switch(level) {
476 default:
477 fprintf(stderr, Name ": layout not meaningful for %s arrays.\n",
478 map_num(pers, level));
479 exit(2);
480 case UnSet:
481 fprintf(stderr, Name ": raid level must be given before layout.\n");
482 exit(2);
483
484 case 5:
485 layout = map_name(r5layout, optarg);
486 if (layout==UnSet) {
487 fprintf(stderr, Name ": layout %s not understood for raid5.\n",
488 optarg);
489 exit(2);
490 }
491 break;
492 case 6:
493 layout = map_name(r6layout, optarg);
494 if (layout==UnSet) {
495 fprintf(stderr, Name ": layout %s not understood for raid6.\n",
496 optarg);
497 exit(2);
498 }
499 break;
500
501 case 10:
502 layout = parse_layout_10(optarg);
503 if (layout < 0) {
504 fprintf(stderr, Name ": layout for raid10 must be 'nNN', 'oNN' or 'fNN' where NN is a number, not %s\n", optarg);
505 exit(2);
506 }
507 break;
508 case LEVEL_FAULTY:
509 /* Faulty
510 * modeNNN
511 */
512 layout = parse_layout_faulty(optarg);
513 if (layout == -1) {
514 fprintf(stderr, Name ": layout %s not understood for faulty.\n",
515 optarg);
516 exit(2);
517 }
518 break;
519 }
520 continue;
521
522 case O(CREATE,AssumeClean):
523 case O(BUILD,AssumeClean): /* assume clean */
524 assume_clean = 1;
525 continue;
526
527 case O(GROW,'n'):
528 case O(CREATE,'n'):
529 case O(BUILD,'n'): /* number of raid disks */
530 if (raiddisks) {
531 fprintf(stderr, Name ": raid-devices set twice: %d and %s\n",
532 raiddisks, optarg);
533 exit(2);
534 }
535 raiddisks = strtol(optarg, &c, 10);
536 if (!optarg[0] || *c || raiddisks<=0) {
537 fprintf(stderr, Name ": invalid number of raid devices: %s\n",
538 optarg);
539 exit(2);
540 }
541 ident.raid_disks = raiddisks;
542 continue;
543
544 case O(CREATE,'x'): /* number of spare (eXtra) discs */
545 if (sparedisks) {
546 fprintf(stderr,Name ": spare-devices set twice: %d and %s\n",
547 sparedisks, optarg);
548 exit(2);
549 }
550 if (level != UnSet && level <= 0 && level >= -1) {
551 fprintf(stderr, Name ": spare-devices setting is incompatible with raid level %d\n",
552 level);
553 exit(2);
554 }
555 sparedisks = strtol(optarg, &c, 10);
556 if (!optarg[0] || *c || sparedisks < 0) {
557 fprintf(stderr, Name ": invalid number of spare-devices: %s\n",
558 optarg);
559 exit(2);
560 }
561 continue;
562
563 case O(CREATE,'a'):
564 case O(BUILD,'a'):
565 case O(INCREMENTAL,'a'):
566 case O(ASSEMBLE,'a'): /* auto-creation of device node */
567 autof = parse_auto(optarg, "--auto flag", 0);
568 continue;
569
570 case O(CREATE,Symlinks):
571 case O(BUILD,Symlinks):
572 case O(ASSEMBLE,Symlinks): /* auto creation of symlinks in /dev to /dev/md */
573 symlinks = optarg;
574 continue;
575
576 case O(BUILD,'f'): /* force honouring '-n 1' */
577 case O(GROW,'f'): /* ditto */
578 case O(CREATE,'f'): /* force honouring of device list */
579 case O(ASSEMBLE,'f'): /* force assembly */
580 case O(MISC,'f'): /* force zero */
581 force=1;
582 continue;
583
584 /* now for the Assemble options */
585 case O(CREATE,'u'): /* uuid of array */
586 case O(ASSEMBLE,'u'): /* uuid of array */
587 if (ident.uuid_set) {
588 fprintf(stderr, Name ": uuid cannot be set twice. "
589 "Second value %s.\n", optarg);
590 exit(2);
591 }
592 if (parse_uuid(optarg, ident.uuid))
593 ident.uuid_set = 1;
594 else {
595 fprintf(stderr,Name ": Bad uuid: %s\n", optarg);
596 exit(2);
597 }
598 continue;
599
600 case O(CREATE,'N'):
601 case O(ASSEMBLE,'N'):
602 case O(MISC,'N'):
603 if (ident.name[0]) {
604 fprintf(stderr, Name ": name cannot be set twice. "
605 "Second value %s.\n", optarg);
606 exit(2);
607 }
608 if (mode == MISC && !subarray) {
609 fprintf(stderr, Name ": -N/--name only valid with --update-subarray in misc mode\n");
610 exit(2);
611 }
612 if (strlen(optarg) > 32) {
613 fprintf(stderr, Name ": name '%s' is too long, 32 chars max.\n",
614 optarg);
615 exit(2);
616 }
617 strcpy(ident.name, optarg);
618 continue;
619
620 case O(ASSEMBLE,'m'): /* super-minor for array */
621 if (ident.super_minor != UnSet) {
622 fprintf(stderr, Name ": super-minor cannot be set twice. "
623 "Second value: %s.\n", optarg);
624 exit(2);
625 }
626 if (strcmp(optarg, "dev")==0)
627 ident.super_minor = -2;
628 else {
629 ident.super_minor = strtoul(optarg, &cp, 10);
630 if (!optarg[0] || *cp) {
631 fprintf(stderr, Name ": Bad super-minor number: %s.\n", optarg);
632 exit(2);
633 }
634 }
635 continue;
636
637 case O(ASSEMBLE,'U'): /* update the superblock */
638 case O(MISC,'U'):
639 if (update) {
640 fprintf(stderr, Name ": Can only update one aspect of superblock, both %s and %s given.\n",
641 update, optarg);
642 exit(2);
643 }
644 if (mode == MISC && !subarray) {
645 fprintf(stderr, Name ": Only subarrays can be updated in misc mode\n");
646 exit(2);
647 }
648 update = optarg;
649 if (strcmp(update, "sparc2.2")==0)
650 continue;
651 if (strcmp(update, "super-minor") == 0)
652 continue;
653 if (strcmp(update, "summaries")==0)
654 continue;
655 if (strcmp(update, "resync")==0)
656 continue;
657 if (strcmp(update, "uuid")==0)
658 continue;
659 if (strcmp(update, "name")==0)
660 continue;
661 if (strcmp(update, "homehost")==0)
662 continue;
663 if (strcmp(update, "devicesize")==0)
664 continue;
665 if (strcmp(update, "byteorder")==0) {
666 if (ss) {
667 fprintf(stderr, Name ": must not set metadata type with --update=byteorder.\n");
668 exit(2);
669 }
670 for(i=0; !ss && superlist[i]; i++)
671 ss = superlist[i]->match_metadata_desc("0.swap");
672 if (!ss) {
673 fprintf(stderr, Name ": INTERNAL ERROR cannot find 0.swap\n");
674 exit(2);
675 }
676
677 continue;
678 }
679 if (strcmp(update,"?") == 0 ||
680 strcmp(update, "help") == 0) {
681 outf = stdout;
682 fprintf(outf, Name ": ");
683 } else {
684 outf = stderr;
685 fprintf(outf,
686 Name ": '--update=%s' is invalid. ",
687 update);
688 }
689 fprintf(outf, "Valid --update options are:\n"
690 " 'sparc2.2', 'super-minor', 'uuid', 'name', 'resync',\n"
691 " 'summaries', 'homehost', 'byteorder', 'devicesize'.\n");
692 exit(outf == stdout ? 0 : 2);
693
694 case O(ASSEMBLE,NoDegraded): /* --no-degraded */
695 runstop = -1; /* --stop isn't allowed for --assemble,
696 * so we overload slightly */
697 continue;
698
699 case O(ASSEMBLE,'c'): /* config file */
700 case O(INCREMENTAL, 'c'):
701 case O(MISC, 'c'):
702 case O(MONITOR,'c'):
703 if (configfile) {
704 fprintf(stderr, Name ": configfile cannot be set twice. "
705 "Second value is %s.\n", optarg);
706 exit(2);
707 }
708 configfile = optarg;
709 set_conffile(configfile);
710 /* FIXME possibly check that config file exists. Even parse it */
711 continue;
712 case O(ASSEMBLE,'s'): /* scan */
713 case O(MISC,'s'):
714 case O(MONITOR,'s'):
715 case O(INCREMENTAL,'s'):
716 scan = 1;
717 continue;
718
719 case O(MONITOR,'m'): /* mail address */
720 if (mailaddr)
721 fprintf(stderr, Name ": only specify one mailaddress. %s ignored.\n",
722 optarg);
723 else
724 mailaddr = optarg;
725 continue;
726
727 case O(MONITOR,'p'): /* alert program */
728 if (program)
729 fprintf(stderr, Name ": only specify one alter program. %s ignored.\n",
730 optarg);
731 else
732 program = optarg;
733 continue;
734
735 case O(MONITOR,'r'): /* rebuild increments */
736 increments = atoi(optarg);
737 if (increments>99 || increments<1) {
738 fprintf(stderr, Name ": please specify positive integer between 1 and 99 as rebuild increments.\n");
739 exit(2);
740 }
741 continue;
742
743 case O(MONITOR,'d'): /* delay in seconds */
744 case O(GROW, 'd'):
745 case O(BUILD,'d'): /* delay for bitmap updates */
746 case O(CREATE,'d'):
747 if (delay)
748 fprintf(stderr, Name ": only specify delay once. %s ignored.\n",
749 optarg);
750 else {
751 delay = strtol(optarg, &c, 10);
752 if (!optarg[0] || *c || delay<1) {
753 fprintf(stderr, Name ": invalid delay: %s\n",
754 optarg);
755 exit(2);
756 }
757 }
758 continue;
759 case O(MONITOR,'f'): /* daemonise */
760 daemonise = 1;
761 continue;
762 case O(MONITOR,'i'): /* pid */
763 if (pidfile)
764 fprintf(stderr, Name ": only specify one pid file. %s ignored.\n",
765 optarg);
766 else
767 pidfile = optarg;
768 continue;
769 case O(MONITOR,'1'): /* oneshot */
770 oneshot = 1;
771 continue;
772 case O(MONITOR,'t'): /* test */
773 test = 1;
774 continue;
775 case O(MONITOR,'y'): /* log messages to syslog */
776 openlog("mdadm", LOG_PID, SYSLOG_FACILITY);
777 dosyslog = 1;
778 continue;
779
780 /* now the general management options. Some are applicable
781 * to other modes. None have arguments.
782 */
783 case O(GROW,'a'):
784 case O(MANAGE,'a'): /* add a drive */
785 devmode = 'a';
786 re_add = 0;
787 continue;
788 case O(MANAGE,ReAdd):
789 devmode = 'a';
790 re_add = 1;
791 continue;
792 case O(MANAGE,'r'): /* remove a drive */
793 devmode = 'r';
794 continue;
795 case O(MANAGE,'f'): /* set faulty */
796 devmode = 'f';
797 continue;
798 case O(INCREMENTAL,'R'):
799 case O(MANAGE,'R'):
800 case O(ASSEMBLE,'R'):
801 case O(BUILD,'R'):
802 case O(CREATE,'R'): /* Run the array */
803 if (runstop < 0) {
804 fprintf(stderr, Name ": Cannot both Stop and Run an array\n");
805 exit(2);
806 }
807 runstop = 1;
808 continue;
809 case O(MANAGE,'S'):
810 if (runstop > 0) {
811 fprintf(stderr, Name ": Cannot both Run and Stop an array\n");
812 exit(2);
813 }
814 runstop = -1;
815 continue;
816
817 case O(MISC,'Q'):
818 case O(MISC,'D'):
819 case O(MISC,'E'):
820 case O(MISC,'K'):
821 case O(MISC,'R'):
822 case O(MISC,'S'):
823 case O(MISC,'X'):
824 case O(MISC,'o'):
825 case O(MISC,'w'):
826 case O(MISC,'W'):
827 case O(MISC, Waitclean):
828 case O(MISC, DetailPlatform):
829 case O(MISC, KillSubarray):
830 case O(MISC, UpdateSubarray):
831 if (devmode && devmode != opt &&
832 (devmode == 'E' || (opt == 'E' && devmode != 'Q'))) {
833 fprintf(stderr, Name ": --examine/-E cannot be given with ");
834 if (devmode == 'E') {
835 if (option_index >= 0)
836 fprintf(stderr, "--%s\n",
837 long_options[option_index].name);
838 else
839 fprintf(stderr, "-%c\n", opt);
840 } else if (isalpha(devmode))
841 fprintf(stderr, "-%c\n", devmode);
842 else
843 fprintf(stderr, "previous option\n");
844 exit(2);
845 }
846 devmode = opt;
847 continue;
848 case O(MISC,'t'):
849 test = 1;
850 continue;
851
852 case O(MISC, Sparc22):
853 if (devmode != 'E') {
854 fprintf(stderr, Name ": --sparc2.2 only allowed with --examine\n");
855 exit(2);
856 }
857 SparcAdjust = 1;
858 continue;
859
860 case O(ASSEMBLE,'b'): /* here we simply set the bitmap file */
861 if (!optarg) {
862 fprintf(stderr, Name ": bitmap file needed with -b in --assemble mode\n");
863 exit(2);
864 }
865 if (strcmp(optarg, "internal")==0) {
866 fprintf(stderr, Name ": there is no need to specify --bitmap when assembling arrays with internal bitmaps\n");
867 continue;
868 }
869 bitmap_fd = open(optarg, O_RDWR);
870 if (!*optarg || bitmap_fd < 0) {
871 fprintf(stderr, Name ": cannot open bitmap file %s: %s\n", optarg, strerror(errno));
872 exit(2);
873 }
874 ident.bitmap_fd = bitmap_fd; /* for Assemble */
875 continue;
876
877 case O(ASSEMBLE, BackupFile):
878 case O(GROW, BackupFile):
879 /* Specify a file into which grow might place a backup,
880 * or from which assemble might recover a backup
881 */
882 if (backup_file) {
883 fprintf(stderr, Name ": backup file already specified, rejecting %s\n", optarg);
884 exit(2);
885 }
886 backup_file = optarg;
887 continue;
888
889 case O(BUILD,'b'):
890 case O(CREATE,'b'): /* here we create the bitmap */
891 if (strcmp(optarg, "none") == 0) {
892 fprintf(stderr, Name ": '--bitmap none' only"
893 " support for --grow\n");
894 exit(2);
895 }
896 /* FALL THROUGH */
897 case O(GROW,'b'):
898 if (strcmp(optarg, "internal")== 0 ||
899 strcmp(optarg, "none")== 0 ||
900 strchr(optarg, '/') != NULL) {
901 bitmap_file = optarg;
902 continue;
903 }
904 /* probable typo */
905 fprintf(stderr, Name ": bitmap file must contain a '/', or be 'internal', or 'none'\n"
906 " not '%s'\n", optarg);
907 exit(2);
908
909 case O(GROW,BitmapChunk):
910 case O(BUILD,BitmapChunk):
911 case O(CREATE,BitmapChunk): /* bitmap chunksize */
912 bitmap_chunk = strtol(optarg, &c, 10);
913 if (!optarg[0] || *c || bitmap_chunk < 0 ||
914 bitmap_chunk & (bitmap_chunk - 1)) {
915 fprintf(stderr, Name ": invalid bitmap chunksize: %s\n",
916 optarg);
917 exit(2);
918 }
919 /* convert K to B, chunk of 0K means 512B */
920 bitmap_chunk = bitmap_chunk ? bitmap_chunk * 1024 : 512;
921 continue;
922
923 case O(GROW, WriteBehind):
924 case O(BUILD, WriteBehind):
925 case O(CREATE, WriteBehind): /* write-behind mode */
926 write_behind = DEFAULT_MAX_WRITE_BEHIND;
927 if (optarg) {
928 write_behind = strtol(optarg, &c, 10);
929 if (write_behind < 0 || *c ||
930 write_behind > 16383) {
931 fprintf(stderr, Name ": Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg);
932 exit(2);
933 }
934 }
935 continue;
936
937 case O(INCREMENTAL, 'r'):
938 rebuild_map = 1;
939 continue;
940 }
941 /* We have now processed all the valid options. Anything else is
942 * an error
943 */
944 if (option_index > 0)
945 fprintf(stderr, Name ":option --%s not valid in %s mode\n",
946 long_options[option_index].name,
947 map_num(modes, mode));
948 else
949 fprintf(stderr, Name ": option -%c not valid in %s mode\n",
950 opt, map_num(modes, mode));
951 exit(2);
952
953 }
954
955 if (print_help) {
956 char *help_text = Help;
957 if (print_help == 2)
958 help_text = OptionHelp;
959 else
960 switch (mode) {
961 case ASSEMBLE : help_text = Help_assemble; break;
962 case BUILD : help_text = Help_build; break;
963 case CREATE : help_text = Help_create; break;
964 case MANAGE : help_text = Help_manage; break;
965 case MISC : help_text = Help_misc; break;
966 case MONITOR : help_text = Help_monitor; break;
967 case GROW : help_text = Help_grow; break;
968 case INCREMENTAL:help_text= Help_incr; break;
969 }
970 fputs(help_text,stdout);
971 exit(0);
972 }
973
974 if (!mode && devs_found) {
975 mode = MISC;
976 devmode = 'Q';
977 if (devlist->disposition == 0)
978 devlist->disposition = devmode;
979 }
980 if (!mode) {
981 fputs(Usage, stderr);
982 exit(2);
983 }
984
985 if (symlinks) {
986 struct createinfo *ci = conf_get_create_info();
987
988 if (strcasecmp(symlinks, "yes") == 0)
989 ci->symlinks = 1;
990 else if (strcasecmp(symlinks, "no") == 0)
991 ci->symlinks = 0;
992 else {
993 fprintf(stderr, Name ": option --symlinks must be 'no' or 'yes'\n");
994 exit(2);
995 }
996 }
997 /* Ok, got the option parsing out of the way
998 * hopefully it's mostly right but there might be some stuff
999 * missing
1000 *
1001 * That is mosty checked in the per-mode stuff but...
1002 *
1003 * For @,B,C and A without -s, the first device listed must be an md device
1004 * we check that here and open it.
1005 */
1006
1007 if (mode==MANAGE || mode == BUILD || mode == CREATE || mode == GROW ||
1008 (mode == ASSEMBLE && ! scan)) {
1009 if (devs_found < 1) {
1010 fprintf(stderr, Name ": an md device must be given in this mode\n");
1011 exit(2);
1012 }
1013 if ((int)ident.super_minor == -2 && autof) {
1014 fprintf(stderr, Name ": --super-minor=dev is incompatible with --auto\n");
1015 exit(2);
1016 }
1017 if (mode == MANAGE || mode == GROW) {
1018 mdfd = open_mddev(devlist->devname, 1);
1019 if (mdfd < 0)
1020 exit(1);
1021 } else
1022 /* non-existent device is OK */
1023 mdfd = open_mddev(devlist->devname, 0);
1024 if (mdfd == -2) {
1025 fprintf(stderr, Name ": device %s exists but is not an "
1026 "md array.\n", devlist->devname);
1027 exit(1);
1028 }
1029 if ((int)ident.super_minor == -2) {
1030 struct stat stb;
1031 if (mdfd < 0) {
1032 fprintf(stderr, Name ": --super-minor=dev given, and "
1033 "listed device %s doesn't exist.\n",
1034 devlist->devname);
1035 exit(1);
1036 }
1037 fstat(mdfd, &stb);
1038 ident.super_minor = minor(stb.st_rdev);
1039 }
1040 if (mdfd >= 0 && mode != MANAGE && mode != GROW) {
1041 /* We don't really want this open yet, we just might
1042 * have wanted to check some things
1043 */
1044 close(mdfd);
1045 mdfd = -1;
1046 }
1047 }
1048
1049 if (raiddisks) {
1050 if (raiddisks > max_disks) {
1051 fprintf(stderr, Name ": invalid number of raid devices: %d\n",
1052 raiddisks);
1053 exit(2);
1054 }
1055 if (raiddisks == 1 && !force && level != -5) {
1056 fprintf(stderr, Name ": '1' is an unusual number of drives for an array, so it is probably\n"
1057 " a mistake. If you really mean it you will need to specify --force before\n"
1058 " setting the number of drives.\n");
1059 exit(2);
1060 }
1061 }
1062 if (sparedisks) {
1063 if ( sparedisks > max_disks - raiddisks) {
1064 fprintf(stderr, Name ": invalid number of spare-devices: %d\n",
1065 sparedisks);
1066 exit(2);
1067 }
1068 }
1069
1070 if (homehost == NULL)
1071 homehost = conf_get_homehost(&require_homehost);
1072 if (homehost == NULL || strcmp(homehost, "<system>")==0) {
1073 if (gethostname(sys_hostname, sizeof(sys_hostname)) == 0) {
1074 sys_hostname[sizeof(sys_hostname)-1] = 0;
1075 homehost = sys_hostname;
1076 }
1077 }
1078
1079 if ((mode != MISC || devmode != 'E') &&
1080 geteuid() != 0) {
1081 fprintf(stderr, Name ": must be super-user to perform this action\n");
1082 exit(1);
1083 }
1084
1085 ident.autof = autof;
1086
1087 rv = 0;
1088 switch(mode) {
1089 case MANAGE:
1090 /* readonly, add/remove, readwrite, runstop */
1091 if (readonly>0)
1092 rv = Manage_ro(devlist->devname, mdfd, readonly);
1093 if (!rv && devs_found>1)
1094 rv = Manage_subdevs(devlist->devname, mdfd,
1095 devlist->next, verbose-quiet);
1096 if (!rv && readonly < 0)
1097 rv = Manage_ro(devlist->devname, mdfd, readonly);
1098 if (!rv && runstop)
1099 rv = Manage_runstop(devlist->devname, mdfd, runstop, quiet);
1100 break;
1101 case ASSEMBLE:
1102 if (devs_found == 1 && ident.uuid_set == 0 &&
1103 ident.super_minor == UnSet && ident.name[0] == 0 && !scan ) {
1104 /* Only a device has been given, so get details from config file */
1105 mddev_ident_t array_ident = conf_get_ident(devlist->devname);
1106 if (array_ident == NULL) {
1107 fprintf(stderr, Name ": %s not identified in config file.\n",
1108 devlist->devname);
1109 rv |= 1;
1110 if (mdfd >= 0)
1111 close(mdfd);
1112 } else {
1113 if (array_ident->autof == 0)
1114 array_ident->autof = autof;
1115 rv |= Assemble(ss, devlist->devname, array_ident,
1116 NULL, backup_file,
1117 readonly, runstop, update,
1118 homehost, require_homehost,
1119 verbose-quiet, force);
1120 }
1121 } else if (!scan)
1122 rv = Assemble(ss, devlist->devname, &ident,
1123 devlist->next, backup_file,
1124 readonly, runstop, update,
1125 homehost, require_homehost,
1126 verbose-quiet, force);
1127 else if (devs_found>0) {
1128 if (update && devs_found > 1) {
1129 fprintf(stderr, Name ": can only update a single array at a time\n");
1130 exit(1);
1131 }
1132 if (backup_file && devs_found > 1) {
1133 fprintf(stderr, Name ": can only assemble a single array when providing a backup file.\n");
1134 exit(1);
1135 }
1136 for (dv = devlist ; dv ; dv=dv->next) {
1137 mddev_ident_t array_ident = conf_get_ident(dv->devname);
1138 if (array_ident == NULL) {
1139 fprintf(stderr, Name ": %s not identified in config file.\n",
1140 dv->devname);
1141 rv |= 1;
1142 continue;
1143 }
1144 if (array_ident->autof == 0)
1145 array_ident->autof = autof;
1146 rv |= Assemble(ss, dv->devname, array_ident,
1147 NULL, backup_file,
1148 readonly, runstop, update,
1149 homehost, require_homehost,
1150 verbose-quiet, force);
1151 }
1152 } else {
1153 mddev_ident_t a, array_list = conf_get_ident(NULL);
1154 mddev_dev_t devlist = conf_get_devs();
1155 int cnt = 0;
1156 int failures, successes;
1157 if (devlist == NULL) {
1158 fprintf(stderr, Name ": No devices listed in conf file were found.\n");
1159 exit(1);
1160 }
1161 if (update) {
1162 fprintf(stderr, Name ": --update not meaningful with a --scan assembly.\n");
1163 exit(1);
1164 }
1165 if (backup_file) {
1166 fprintf(stderr, Name ": --backup_file not meaningful with a --scan assembly.\n");
1167 exit(1);
1168 }
1169 for (a = array_list; a ; a = a->next) {
1170 a->assembled = 0;
1171 if (a->autof == 0)
1172 a->autof = autof;
1173 }
1174 do {
1175 failures = 0;
1176 successes = 0;
1177 rv = 0;
1178 for (a = array_list; a ; a = a->next) {
1179 int r;
1180 if (a->assembled)
1181 continue;
1182 if (a->devname &&
1183 strcasecmp(a->devname, "<ignore>") == 0)
1184 continue;
1185
1186 r = Assemble(ss, a->devname,
1187 a,
1188 NULL, NULL,
1189 readonly, runstop, NULL,
1190 homehost, require_homehost,
1191 verbose-quiet, force);
1192 if (r == 0) {
1193 a->assembled = 1;
1194 successes++;
1195 } else
1196 failures++;
1197 rv |= r;
1198 cnt++;
1199 }
1200 } while (failures && successes);
1201 if (homehost && cnt == 0) {
1202 /* Maybe we can auto-assemble something.
1203 * Repeatedly call Assemble in auto-assemble mode
1204 * until it fails
1205 */
1206 int rv2;
1207 int acnt;
1208 ident.autof = autof;
1209 do {
1210 mddev_dev_t devlist = conf_get_devs();
1211 acnt = 0;
1212 do {
1213 rv2 = Assemble(ss, NULL,
1214 &ident,
1215 devlist, NULL,
1216 readonly, runstop, NULL,
1217 homehost, require_homehost,
1218 verbose-quiet, force);
1219 if (rv2==0) {
1220 cnt++;
1221 acnt++;
1222 }
1223 if (rv2 == 1)
1224 /* found something so even though assembly failed we
1225 * want to avoid auto-updates
1226 */
1227 auto_update_home = 0;
1228 } while (rv2!=2);
1229 /* Incase there are stacked devices, we need to go around again */
1230 } while (acnt);
1231 #if 0
1232 if (cnt == 0 && auto_update_home && homehost) {
1233 /* Nothing found, maybe we need to bootstrap homehost info */
1234 do {
1235 acnt = 0;
1236 do {
1237 rv2 = Assemble(ss, NULL,
1238 &ident,
1239 NULL, NULL,
1240 readonly, runstop, "homehost",
1241 homehost, require_homehost,
1242 verbose-quiet, force);
1243 if (rv2==0) {
1244 cnt++;
1245 acnt++;
1246 }
1247 } while (rv2!=2);
1248 /* Incase there are stacked devices, we need to go around again */
1249 } while (acnt);
1250 }
1251 #endif
1252 if (cnt == 0 && rv == 0) {
1253 fprintf(stderr, Name ": No arrays found in config file or automatically\n");
1254 rv = 1;
1255 } else if (cnt)
1256 rv = 0;
1257 } else if (cnt == 0 && rv == 0) {
1258 fprintf(stderr, Name ": No arrays found in config file\n");
1259 rv = 1;
1260 }
1261 }
1262 break;
1263 case BUILD:
1264 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1265 if (write_behind && !bitmap_file) {
1266 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1267 rv = 1;
1268 break;
1269 }
1270 if (raiddisks == 0) {
1271 fprintf(stderr, Name ": no raid-devices specified.\n");
1272 rv = 1;
1273 break;
1274 }
1275
1276 if (bitmap_file) {
1277 if (strcmp(bitmap_file, "internal")==0) {
1278 fprintf(stderr, Name ": 'internal' bitmaps not supported with --build\n");
1279 rv |= 1;
1280 break;
1281 }
1282 }
1283 rv = Build(devlist->devname, chunk, level, layout,
1284 raiddisks, devlist->next, assume_clean,
1285 bitmap_file, bitmap_chunk, write_behind,
1286 delay, verbose-quiet, autof, size);
1287 break;
1288 case CREATE:
1289 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1290 if (write_behind && !bitmap_file) {
1291 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1292 rv = 1;
1293 break;
1294 }
1295 if (raiddisks == 0) {
1296 fprintf(stderr, Name ": no raid-devices specified.\n");
1297 rv = 1;
1298 break;
1299 }
1300
1301 rv = Create(ss, devlist->devname, chunk, level, layout, size<0 ? 0 : size,
1302 raiddisks, sparedisks, ident.name, homehost,
1303 ident.uuid_set ? ident.uuid : NULL,
1304 devs_found-1, devlist->next, runstop, verbose-quiet, force, assume_clean,
1305 bitmap_file, bitmap_chunk, write_behind, delay, autof);
1306 break;
1307 case MISC:
1308 if (devmode == 'E') {
1309 if (devlist == NULL && !scan) {
1310 fprintf(stderr, Name ": No devices to examine\n");
1311 exit(2);
1312 }
1313 if (devlist == NULL)
1314 devlist = conf_get_devs();
1315 if (devlist == NULL) {
1316 fprintf(stderr, Name ": No devices listed in %s\n", configfile?configfile:DefaultConfFile);
1317 exit(1);
1318 }
1319 if (brief && verbose)
1320 brief = 2;
1321 rv = Examine(devlist, scan?(verbose>1?0:verbose+1):brief,
1322 export, scan,
1323 SparcAdjust, ss, homehost);
1324 } else if (devmode == DetailPlatform) {
1325 rv = Detail_Platform(ss ? ss->ss : NULL, ss ? scan : 1, verbose);
1326 } else {
1327 if (devlist == NULL) {
1328 if ((devmode=='D' || devmode == Waitclean) && scan) {
1329 /* apply --detail or --wait-clean to
1330 * all devices in /proc/mdstat
1331 */
1332 struct mdstat_ent *ms = mdstat_read(0, 1);
1333 struct mdstat_ent *e;
1334 struct map_ent *map = NULL;
1335 int members;
1336 int v = verbose>1?0:verbose+1;
1337
1338 for (members = 0; members <= 1; members++) {
1339 for (e=ms ; e ; e=e->next) {
1340 char *name;
1341 struct map_ent *me;
1342 int member = e->metadata_version &&
1343 strncmp(e->metadata_version,
1344 "external:/", 10) == 0;
1345 if (members != member)
1346 continue;
1347 me = map_by_devnum(&map, e->devnum);
1348 if (me && me->path
1349 && strcmp(me->path, "/unknown") != 0)
1350 name = me->path;
1351 else
1352 name = get_md_name(e->devnum);
1353
1354 if (!name) {
1355 fprintf(stderr, Name ": cannot find device file for %s\n",
1356 e->dev);
1357 continue;
1358 }
1359 if (devmode == 'D')
1360 rv |= Detail(name, v,
1361 export, test,
1362 homehost);
1363 else
1364 rv |= WaitClean(name, -1, v);
1365 put_md_name(name);
1366 }
1367 }
1368 free_mdstat(ms);
1369 } else if (devmode == 'S' && scan) {
1370 /* apply --stop to all devices in /proc/mdstat */
1371 /* Due to possible stacking of devices, repeat until
1372 * nothing more can be stopped
1373 */
1374 int progress=1, err;
1375 int last = 0;
1376 do {
1377 struct mdstat_ent *ms = mdstat_read(0, 0);
1378 struct mdstat_ent *e;
1379
1380 if (!progress) last = 1;
1381 progress = 0; err = 0;
1382 for (e=ms ; e ; e=e->next) {
1383 char *name = get_md_name(e->devnum);
1384
1385 if (!name) {
1386 fprintf(stderr, Name ": cannot find device file for %s\n",
1387 e->dev);
1388 continue;
1389 }
1390 mdfd = open_mddev(name, 1);
1391 if (mdfd >= 0) {
1392 if (Manage_runstop(name, mdfd, -1, quiet?1:last?0:-1))
1393 err = 1;
1394 else
1395 progress = 1;
1396 close(mdfd);
1397 }
1398
1399 put_md_name(name);
1400 }
1401 free_mdstat(ms);
1402 } while (!last && err);
1403 if (err) rv |= 1;
1404 } else {
1405 fprintf(stderr, Name ": No devices given.\n");
1406 exit(2);
1407 }
1408 }
1409 for (dv=devlist ; dv; dv=dv->next) {
1410 switch(dv->disposition) {
1411 case 'D':
1412 rv |= Detail(dv->devname,
1413 brief?1+verbose:0,
1414 export, test, homehost);
1415 continue;
1416 case 'K': /* Zero superblock */
1417 if (ss)
1418 rv |= Kill(dv->devname, ss, force, quiet,0);
1419 else {
1420 int q = quiet;
1421 do {
1422 rv |= Kill(dv->devname, NULL, force, q, 0);
1423 q = 1;
1424 } while (rv == 0);
1425 rv &= ~2;
1426 }
1427 continue;
1428 case 'Q':
1429 rv |= Query(dv->devname); continue;
1430 case 'X':
1431 rv |= ExamineBitmap(dv->devname, brief, ss); continue;
1432 case 'W':
1433 rv |= Wait(dv->devname); continue;
1434 case Waitclean:
1435 rv |= WaitClean(dv->devname, -1, verbose-quiet); continue;
1436 case KillSubarray:
1437 rv |= Kill_subarray(dv->devname, subarray, quiet);
1438 continue;
1439 case UpdateSubarray:
1440 if (update == NULL) {
1441 fprintf(stderr,
1442 Name ": -U/--update must be specified with --update-subarray\n");
1443 rv |= 1;
1444 continue;
1445 }
1446 rv |= Update_subarray(dv->devname, subarray, update, &ident, quiet);
1447 continue;
1448 }
1449 mdfd = open_mddev(dv->devname, 1);
1450 if (mdfd>=0) {
1451 switch(dv->disposition) {
1452 case 'R':
1453 rv |= Manage_runstop(dv->devname, mdfd, 1, quiet); break;
1454 case 'S':
1455 rv |= Manage_runstop(dv->devname, mdfd, -1, quiet); break;
1456 case 'o':
1457 rv |= Manage_ro(dv->devname, mdfd, 1); break;
1458 case 'w':
1459 rv |= Manage_ro(dv->devname, mdfd, -1); break;
1460 }
1461 close(mdfd);
1462 } else
1463 rv |= 1;
1464 }
1465 }
1466 break;
1467 case MONITOR:
1468 if (!devlist && !scan) {
1469 fprintf(stderr, Name ": Cannot monitor: need --scan or at least one device\n");
1470 rv = 1;
1471 break;
1472 }
1473 if (pidfile && !daemonise) {
1474 fprintf(stderr, Name ": Cannot write a pid file when not in daemon mode\n");
1475 rv = 1;
1476 break;
1477 }
1478 if (delay == 0) {
1479 if (get_linux_version() > 20616)
1480 /* mdstat responds to poll */
1481 delay = 1000;
1482 else
1483 delay = 60;
1484 }
1485 rv= Monitor(devlist, mailaddr, program,
1486 delay?delay:60, daemonise, scan, oneshot,
1487 dosyslog, test, pidfile, increments);
1488 break;
1489
1490 case GROW:
1491 if (array_size >= 0) {
1492 /* alway impose array size first, independent of
1493 * anything else
1494 * Do not allow level or raid_disks changes at the
1495 * same time as that can be irreversibly destructive.
1496 */
1497 struct mdinfo sra;
1498 int err;
1499 if (raiddisks || level != UnSet) {
1500 fprintf(stderr, Name ": cannot change array size in same operation "
1501 "as changing raiddisks or level.\n"
1502 " Change size first, then check that data is still intact.\n");
1503 rv = 1;
1504 break;
1505 }
1506 sysfs_init(&sra, mdfd, 0);
1507 if (array_size == 0)
1508 err = sysfs_set_str(&sra, NULL, "array_size", "default");
1509 else
1510 err = sysfs_set_num(&sra, NULL, "array_size", array_size / 2);
1511 if (err < 0) {
1512 if (errno == E2BIG)
1513 fprintf(stderr, Name ": --array-size setting"
1514 " is too large.\n");
1515 else
1516 fprintf(stderr, Name ": current kernel does"
1517 " not support setting --array-size\n");
1518 rv = 1;
1519 break;
1520 }
1521 }
1522 if (devs_found > 1) {
1523
1524 /* must be '-a'. */
1525 if (size >= 0 || raiddisks || chunk || layout_str != NULL || bitmap_file) {
1526 fprintf(stderr, Name ": --add cannot be used with other geometry changes in --grow mode\n");
1527 rv = 1;
1528 break;
1529 }
1530 for (dv=devlist->next; dv ; dv=dv->next) {
1531 rv = Grow_Add_device(devlist->devname, mdfd, dv->devname);
1532 if (rv)
1533 break;
1534 }
1535 } else if (bitmap_file) {
1536 if (size >= 0 || raiddisks || chunk || layout_str != NULL) {
1537 fprintf(stderr, Name ": --bitmap changes cannot be used with other geometry changes in --grow mode\n");
1538 rv = 1;
1539 break;
1540 }
1541 if (delay == 0)
1542 delay = DEFAULT_BITMAP_DELAY;
1543 rv = Grow_addbitmap(devlist->devname, mdfd, bitmap_file,
1544 bitmap_chunk, delay, write_behind, force);
1545 } else if (size >= 0 || raiddisks != 0 || layout_str != NULL
1546 || chunk != 0 || level != UnSet) {
1547 rv = Grow_reshape(devlist->devname, mdfd, quiet, backup_file,
1548 size, level, layout_str, chunk, raiddisks);
1549 } else if (array_size < 0)
1550 fprintf(stderr, Name ": no changes to --grow\n");
1551 break;
1552 case INCREMENTAL:
1553 if (rebuild_map) {
1554 RebuildMap();
1555 }
1556 if (scan) {
1557 if (runstop <= 0) {
1558 fprintf(stderr, Name
1559 ": --incremental --scan meaningless without --run.\n");
1560 break;
1561 }
1562 rv = IncrementalScan(verbose);
1563 }
1564 if (!devlist) {
1565 if (!rebuild_map && !scan) {
1566 fprintf(stderr, Name
1567 ": --incremental requires a device.\n");
1568 rv = 1;
1569 }
1570 break;
1571 }
1572 if (devlist->next) {
1573 fprintf(stderr, Name
1574 ": --incremental can only handle one device.\n");
1575 rv = 1;
1576 break;
1577 }
1578 rv = Incremental(devlist->devname, verbose-quiet, runstop,
1579 ss, homehost, require_homehost, autof);
1580 break;
1581 case AUTODETECT:
1582 autodetect();
1583 break;
1584 }
1585 exit(rv);
1586 }