]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.c
Incremental: accept '--no-degraded' as a deprecated option
[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(INCREMENTAL,NoDegraded):
695 fprintf(stderr, Name ": --no-degraded is deprecated in Incremental mode\n");
696 case O(ASSEMBLE,NoDegraded): /* --no-degraded */
697 runstop = -1; /* --stop isn't allowed for --assemble,
698 * so we overload slightly */
699 continue;
700
701 case O(ASSEMBLE,'c'): /* config file */
702 case O(INCREMENTAL, 'c'):
703 case O(MISC, 'c'):
704 case O(MONITOR,'c'):
705 if (configfile) {
706 fprintf(stderr, Name ": configfile cannot be set twice. "
707 "Second value is %s.\n", optarg);
708 exit(2);
709 }
710 configfile = optarg;
711 set_conffile(configfile);
712 /* FIXME possibly check that config file exists. Even parse it */
713 continue;
714 case O(ASSEMBLE,'s'): /* scan */
715 case O(MISC,'s'):
716 case O(MONITOR,'s'):
717 case O(INCREMENTAL,'s'):
718 scan = 1;
719 continue;
720
721 case O(MONITOR,'m'): /* mail address */
722 if (mailaddr)
723 fprintf(stderr, Name ": only specify one mailaddress. %s ignored.\n",
724 optarg);
725 else
726 mailaddr = optarg;
727 continue;
728
729 case O(MONITOR,'p'): /* alert program */
730 if (program)
731 fprintf(stderr, Name ": only specify one alter program. %s ignored.\n",
732 optarg);
733 else
734 program = optarg;
735 continue;
736
737 case O(MONITOR,'r'): /* rebuild increments */
738 increments = atoi(optarg);
739 if (increments>99 || increments<1) {
740 fprintf(stderr, Name ": please specify positive integer between 1 and 99 as rebuild increments.\n");
741 exit(2);
742 }
743 continue;
744
745 case O(MONITOR,'d'): /* delay in seconds */
746 case O(GROW, 'd'):
747 case O(BUILD,'d'): /* delay for bitmap updates */
748 case O(CREATE,'d'):
749 if (delay)
750 fprintf(stderr, Name ": only specify delay once. %s ignored.\n",
751 optarg);
752 else {
753 delay = strtol(optarg, &c, 10);
754 if (!optarg[0] || *c || delay<1) {
755 fprintf(stderr, Name ": invalid delay: %s\n",
756 optarg);
757 exit(2);
758 }
759 }
760 continue;
761 case O(MONITOR,'f'): /* daemonise */
762 daemonise = 1;
763 continue;
764 case O(MONITOR,'i'): /* pid */
765 if (pidfile)
766 fprintf(stderr, Name ": only specify one pid file. %s ignored.\n",
767 optarg);
768 else
769 pidfile = optarg;
770 continue;
771 case O(MONITOR,'1'): /* oneshot */
772 oneshot = 1;
773 continue;
774 case O(MONITOR,'t'): /* test */
775 test = 1;
776 continue;
777 case O(MONITOR,'y'): /* log messages to syslog */
778 openlog("mdadm", LOG_PID, SYSLOG_FACILITY);
779 dosyslog = 1;
780 continue;
781
782 /* now the general management options. Some are applicable
783 * to other modes. None have arguments.
784 */
785 case O(GROW,'a'):
786 case O(MANAGE,'a'): /* add a drive */
787 devmode = 'a';
788 re_add = 0;
789 continue;
790 case O(MANAGE,ReAdd):
791 devmode = 'a';
792 re_add = 1;
793 continue;
794 case O(MANAGE,'r'): /* remove a drive */
795 devmode = 'r';
796 continue;
797 case O(MANAGE,'f'): /* set faulty */
798 case O(INCREMENTAL,'f'): /* r for incremental is taken, use f
799 * even though we will both fail and
800 * remove the device */
801 devmode = 'f';
802 continue;
803 case O(INCREMENTAL,'R'):
804 case O(MANAGE,'R'):
805 case O(ASSEMBLE,'R'):
806 case O(BUILD,'R'):
807 case O(CREATE,'R'): /* Run the array */
808 if (runstop < 0) {
809 fprintf(stderr, Name ": Cannot both Stop and Run an array\n");
810 exit(2);
811 }
812 runstop = 1;
813 continue;
814 case O(MANAGE,'S'):
815 if (runstop > 0) {
816 fprintf(stderr, Name ": Cannot both Run and Stop an array\n");
817 exit(2);
818 }
819 runstop = -1;
820 continue;
821 case O(MANAGE,'t'):
822 test = 1;
823 continue;
824
825 case O(MISC,'Q'):
826 case O(MISC,'D'):
827 case O(MISC,'E'):
828 case O(MISC,'K'):
829 case O(MISC,'R'):
830 case O(MISC,'S'):
831 case O(MISC,'X'):
832 case O(MISC,'o'):
833 case O(MISC,'w'):
834 case O(MISC,'W'):
835 case O(MISC, Waitclean):
836 case O(MISC, DetailPlatform):
837 case O(MISC, KillSubarray):
838 case O(MISC, UpdateSubarray):
839 if (devmode && devmode != opt &&
840 (devmode == 'E' || (opt == 'E' && devmode != 'Q'))) {
841 fprintf(stderr, Name ": --examine/-E cannot be given with ");
842 if (devmode == 'E') {
843 if (option_index >= 0)
844 fprintf(stderr, "--%s\n",
845 long_options[option_index].name);
846 else
847 fprintf(stderr, "-%c\n", opt);
848 } else if (isalpha(devmode))
849 fprintf(stderr, "-%c\n", devmode);
850 else
851 fprintf(stderr, "previous option\n");
852 exit(2);
853 }
854 devmode = opt;
855 continue;
856 case O(MISC,'t'):
857 test = 1;
858 continue;
859
860 case O(MISC, Sparc22):
861 if (devmode != 'E') {
862 fprintf(stderr, Name ": --sparc2.2 only allowed with --examine\n");
863 exit(2);
864 }
865 SparcAdjust = 1;
866 continue;
867
868 case O(ASSEMBLE,'b'): /* here we simply set the bitmap file */
869 if (!optarg) {
870 fprintf(stderr, Name ": bitmap file needed with -b in --assemble mode\n");
871 exit(2);
872 }
873 if (strcmp(optarg, "internal")==0) {
874 fprintf(stderr, Name ": there is no need to specify --bitmap when assembling arrays with internal bitmaps\n");
875 continue;
876 }
877 bitmap_fd = open(optarg, O_RDWR);
878 if (!*optarg || bitmap_fd < 0) {
879 fprintf(stderr, Name ": cannot open bitmap file %s: %s\n", optarg, strerror(errno));
880 exit(2);
881 }
882 ident.bitmap_fd = bitmap_fd; /* for Assemble */
883 continue;
884
885 case O(ASSEMBLE, BackupFile):
886 case O(GROW, BackupFile):
887 /* Specify a file into which grow might place a backup,
888 * or from which assemble might recover a backup
889 */
890 if (backup_file) {
891 fprintf(stderr, Name ": backup file already specified, rejecting %s\n", optarg);
892 exit(2);
893 }
894 backup_file = optarg;
895 continue;
896
897 case O(BUILD,'b'):
898 case O(CREATE,'b'): /* here we create the bitmap */
899 if (strcmp(optarg, "none") == 0) {
900 fprintf(stderr, Name ": '--bitmap none' only"
901 " support for --grow\n");
902 exit(2);
903 }
904 /* FALL THROUGH */
905 case O(GROW,'b'):
906 if (strcmp(optarg, "internal")== 0 ||
907 strcmp(optarg, "none")== 0 ||
908 strchr(optarg, '/') != NULL) {
909 bitmap_file = optarg;
910 continue;
911 }
912 /* probable typo */
913 fprintf(stderr, Name ": bitmap file must contain a '/', or be 'internal', or 'none'\n"
914 " not '%s'\n", optarg);
915 exit(2);
916
917 case O(GROW,BitmapChunk):
918 case O(BUILD,BitmapChunk):
919 case O(CREATE,BitmapChunk): /* bitmap chunksize */
920 bitmap_chunk = strtol(optarg, &c, 10);
921 if (!optarg[0] || *c || bitmap_chunk < 0 ||
922 bitmap_chunk & (bitmap_chunk - 1)) {
923 fprintf(stderr, Name ": invalid bitmap chunksize: %s\n",
924 optarg);
925 exit(2);
926 }
927 /* convert K to B, chunk of 0K means 512B */
928 bitmap_chunk = bitmap_chunk ? bitmap_chunk * 1024 : 512;
929 continue;
930
931 case O(GROW, WriteBehind):
932 case O(BUILD, WriteBehind):
933 case O(CREATE, WriteBehind): /* write-behind mode */
934 write_behind = DEFAULT_MAX_WRITE_BEHIND;
935 if (optarg) {
936 write_behind = strtol(optarg, &c, 10);
937 if (write_behind < 0 || *c ||
938 write_behind > 16383) {
939 fprintf(stderr, Name ": Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg);
940 exit(2);
941 }
942 }
943 continue;
944
945 case O(INCREMENTAL, 'r'):
946 rebuild_map = 1;
947 continue;
948 }
949 /* We have now processed all the valid options. Anything else is
950 * an error
951 */
952 if (option_index > 0)
953 fprintf(stderr, Name ":option --%s not valid in %s mode\n",
954 long_options[option_index].name,
955 map_num(modes, mode));
956 else
957 fprintf(stderr, Name ": option -%c not valid in %s mode\n",
958 opt, map_num(modes, mode));
959 exit(2);
960
961 }
962
963 if (print_help) {
964 char *help_text = Help;
965 if (print_help == 2)
966 help_text = OptionHelp;
967 else
968 switch (mode) {
969 case ASSEMBLE : help_text = Help_assemble; break;
970 case BUILD : help_text = Help_build; break;
971 case CREATE : help_text = Help_create; break;
972 case MANAGE : help_text = Help_manage; break;
973 case MISC : help_text = Help_misc; break;
974 case MONITOR : help_text = Help_monitor; break;
975 case GROW : help_text = Help_grow; break;
976 case INCREMENTAL:help_text= Help_incr; break;
977 }
978 fputs(help_text,stdout);
979 exit(0);
980 }
981
982 if (!mode && devs_found) {
983 mode = MISC;
984 devmode = 'Q';
985 if (devlist->disposition == 0)
986 devlist->disposition = devmode;
987 }
988 if (!mode) {
989 fputs(Usage, stderr);
990 exit(2);
991 }
992
993 if (symlinks) {
994 struct createinfo *ci = conf_get_create_info();
995
996 if (strcasecmp(symlinks, "yes") == 0)
997 ci->symlinks = 1;
998 else if (strcasecmp(symlinks, "no") == 0)
999 ci->symlinks = 0;
1000 else {
1001 fprintf(stderr, Name ": option --symlinks must be 'no' or 'yes'\n");
1002 exit(2);
1003 }
1004 }
1005 /* Ok, got the option parsing out of the way
1006 * hopefully it's mostly right but there might be some stuff
1007 * missing
1008 *
1009 * That is mosty checked in the per-mode stuff but...
1010 *
1011 * For @,B,C and A without -s, the first device listed must be an md device
1012 * we check that here and open it.
1013 */
1014
1015 if (mode==MANAGE || mode == BUILD || mode == CREATE || mode == GROW ||
1016 (mode == ASSEMBLE && ! scan)) {
1017 if (devs_found < 1) {
1018 fprintf(stderr, Name ": an md device must be given in this mode\n");
1019 exit(2);
1020 }
1021 if ((int)ident.super_minor == -2 && autof) {
1022 fprintf(stderr, Name ": --super-minor=dev is incompatible with --auto\n");
1023 exit(2);
1024 }
1025 if (mode == MANAGE || mode == GROW) {
1026 mdfd = open_mddev(devlist->devname, 1);
1027 if (mdfd < 0)
1028 exit(1);
1029 } else
1030 /* non-existent device is OK */
1031 mdfd = open_mddev(devlist->devname, 0);
1032 if (mdfd == -2) {
1033 fprintf(stderr, Name ": device %s exists but is not an "
1034 "md array.\n", devlist->devname);
1035 exit(1);
1036 }
1037 if ((int)ident.super_minor == -2) {
1038 struct stat stb;
1039 if (mdfd < 0) {
1040 fprintf(stderr, Name ": --super-minor=dev given, and "
1041 "listed device %s doesn't exist.\n",
1042 devlist->devname);
1043 exit(1);
1044 }
1045 fstat(mdfd, &stb);
1046 ident.super_minor = minor(stb.st_rdev);
1047 }
1048 if (mdfd >= 0 && mode != MANAGE && mode != GROW) {
1049 /* We don't really want this open yet, we just might
1050 * have wanted to check some things
1051 */
1052 close(mdfd);
1053 mdfd = -1;
1054 }
1055 }
1056
1057 if (raiddisks) {
1058 if (raiddisks > max_disks) {
1059 fprintf(stderr, Name ": invalid number of raid devices: %d\n",
1060 raiddisks);
1061 exit(2);
1062 }
1063 if (raiddisks == 1 && !force && level != -5) {
1064 fprintf(stderr, Name ": '1' is an unusual number of drives for an array, so it is probably\n"
1065 " a mistake. If you really mean it you will need to specify --force before\n"
1066 " setting the number of drives.\n");
1067 exit(2);
1068 }
1069 }
1070 if (sparedisks) {
1071 if ( sparedisks > max_disks - raiddisks) {
1072 fprintf(stderr, Name ": invalid number of spare-devices: %d\n",
1073 sparedisks);
1074 exit(2);
1075 }
1076 }
1077
1078 if (homehost == NULL)
1079 homehost = conf_get_homehost(&require_homehost);
1080 if (homehost == NULL || strcmp(homehost, "<system>")==0) {
1081 if (gethostname(sys_hostname, sizeof(sys_hostname)) == 0) {
1082 sys_hostname[sizeof(sys_hostname)-1] = 0;
1083 homehost = sys_hostname;
1084 }
1085 }
1086
1087 if ((mode != MISC || devmode != 'E') &&
1088 geteuid() != 0) {
1089 fprintf(stderr, Name ": must be super-user to perform this action\n");
1090 exit(1);
1091 }
1092
1093 ident.autof = autof;
1094
1095 rv = 0;
1096 switch(mode) {
1097 case MANAGE:
1098 /* readonly, add/remove, readwrite, runstop */
1099 if (readonly>0)
1100 rv = Manage_ro(devlist->devname, mdfd, readonly);
1101 if (!rv && devs_found>1)
1102 rv = Manage_subdevs(devlist->devname, mdfd,
1103 devlist->next, verbose-quiet, test);
1104 if (!rv && readonly < 0)
1105 rv = Manage_ro(devlist->devname, mdfd, readonly);
1106 if (!rv && runstop)
1107 rv = Manage_runstop(devlist->devname, mdfd, runstop, quiet);
1108 break;
1109 case ASSEMBLE:
1110 if (devs_found == 1 && ident.uuid_set == 0 &&
1111 ident.super_minor == UnSet && ident.name[0] == 0 && !scan ) {
1112 /* Only a device has been given, so get details from config file */
1113 mddev_ident_t array_ident = conf_get_ident(devlist->devname);
1114 if (array_ident == NULL) {
1115 fprintf(stderr, Name ": %s not identified in config file.\n",
1116 devlist->devname);
1117 rv |= 1;
1118 if (mdfd >= 0)
1119 close(mdfd);
1120 } else {
1121 if (array_ident->autof == 0)
1122 array_ident->autof = autof;
1123 rv |= Assemble(ss, devlist->devname, array_ident,
1124 NULL, backup_file,
1125 readonly, runstop, update,
1126 homehost, require_homehost,
1127 verbose-quiet, force);
1128 }
1129 } else if (!scan)
1130 rv = Assemble(ss, devlist->devname, &ident,
1131 devlist->next, backup_file,
1132 readonly, runstop, update,
1133 homehost, require_homehost,
1134 verbose-quiet, force);
1135 else if (devs_found>0) {
1136 if (update && devs_found > 1) {
1137 fprintf(stderr, Name ": can only update a single array at a time\n");
1138 exit(1);
1139 }
1140 if (backup_file && devs_found > 1) {
1141 fprintf(stderr, Name ": can only assemble a single array when providing a backup file.\n");
1142 exit(1);
1143 }
1144 for (dv = devlist ; dv ; dv=dv->next) {
1145 mddev_ident_t array_ident = conf_get_ident(dv->devname);
1146 if (array_ident == NULL) {
1147 fprintf(stderr, Name ": %s not identified in config file.\n",
1148 dv->devname);
1149 rv |= 1;
1150 continue;
1151 }
1152 if (array_ident->autof == 0)
1153 array_ident->autof = autof;
1154 rv |= Assemble(ss, dv->devname, array_ident,
1155 NULL, backup_file,
1156 readonly, runstop, update,
1157 homehost, require_homehost,
1158 verbose-quiet, force);
1159 }
1160 } else {
1161 mddev_ident_t a, array_list = conf_get_ident(NULL);
1162 mddev_dev_t devlist = conf_get_devs();
1163 int cnt = 0;
1164 int failures, successes;
1165 if (devlist == NULL) {
1166 fprintf(stderr, Name ": No devices listed in conf file were found.\n");
1167 exit(1);
1168 }
1169 if (update) {
1170 fprintf(stderr, Name ": --update not meaningful with a --scan assembly.\n");
1171 exit(1);
1172 }
1173 if (backup_file) {
1174 fprintf(stderr, Name ": --backup_file not meaningful with a --scan assembly.\n");
1175 exit(1);
1176 }
1177 for (a = array_list; a ; a = a->next) {
1178 a->assembled = 0;
1179 if (a->autof == 0)
1180 a->autof = autof;
1181 }
1182 do {
1183 failures = 0;
1184 successes = 0;
1185 rv = 0;
1186 for (a = array_list; a ; a = a->next) {
1187 int r;
1188 if (a->assembled)
1189 continue;
1190 if (a->devname &&
1191 strcasecmp(a->devname, "<ignore>") == 0)
1192 continue;
1193
1194 r = Assemble(ss, a->devname,
1195 a,
1196 NULL, NULL,
1197 readonly, runstop, NULL,
1198 homehost, require_homehost,
1199 verbose-quiet, force);
1200 if (r == 0) {
1201 a->assembled = 1;
1202 successes++;
1203 } else
1204 failures++;
1205 rv |= r;
1206 cnt++;
1207 }
1208 } while (failures && successes);
1209 if (homehost && cnt == 0) {
1210 /* Maybe we can auto-assemble something.
1211 * Repeatedly call Assemble in auto-assemble mode
1212 * until it fails
1213 */
1214 int rv2;
1215 int acnt;
1216 ident.autof = autof;
1217 do {
1218 mddev_dev_t devlist = conf_get_devs();
1219 acnt = 0;
1220 do {
1221 rv2 = Assemble(ss, NULL,
1222 &ident,
1223 devlist, NULL,
1224 readonly, runstop, NULL,
1225 homehost, require_homehost,
1226 verbose-quiet, force);
1227 if (rv2==0) {
1228 cnt++;
1229 acnt++;
1230 }
1231 if (rv2 == 1)
1232 /* found something so even though assembly failed we
1233 * want to avoid auto-updates
1234 */
1235 auto_update_home = 0;
1236 } while (rv2!=2);
1237 /* Incase there are stacked devices, we need to go around again */
1238 } while (acnt);
1239 #if 0
1240 if (cnt == 0 && auto_update_home && homehost) {
1241 /* Nothing found, maybe we need to bootstrap homehost info */
1242 do {
1243 acnt = 0;
1244 do {
1245 rv2 = Assemble(ss, NULL,
1246 &ident,
1247 NULL, NULL,
1248 readonly, runstop, "homehost",
1249 homehost, require_homehost,
1250 verbose-quiet, force);
1251 if (rv2==0) {
1252 cnt++;
1253 acnt++;
1254 }
1255 } while (rv2!=2);
1256 /* Incase there are stacked devices, we need to go around again */
1257 } while (acnt);
1258 }
1259 #endif
1260 if (cnt == 0 && rv == 0) {
1261 fprintf(stderr, Name ": No arrays found in config file or automatically\n");
1262 rv = 1;
1263 } else if (cnt)
1264 rv = 0;
1265 } else if (cnt == 0 && rv == 0) {
1266 fprintf(stderr, Name ": No arrays found in config file\n");
1267 rv = 1;
1268 }
1269 }
1270 break;
1271 case BUILD:
1272 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1273 if (write_behind && !bitmap_file) {
1274 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1275 rv = 1;
1276 break;
1277 }
1278 if (raiddisks == 0) {
1279 fprintf(stderr, Name ": no raid-devices specified.\n");
1280 rv = 1;
1281 break;
1282 }
1283
1284 if (bitmap_file) {
1285 if (strcmp(bitmap_file, "internal")==0) {
1286 fprintf(stderr, Name ": 'internal' bitmaps not supported with --build\n");
1287 rv |= 1;
1288 break;
1289 }
1290 }
1291 rv = Build(devlist->devname, chunk, level, layout,
1292 raiddisks, devlist->next, assume_clean,
1293 bitmap_file, bitmap_chunk, write_behind,
1294 delay, verbose-quiet, autof, size);
1295 break;
1296 case CREATE:
1297 if (delay == 0) delay = DEFAULT_BITMAP_DELAY;
1298 if (write_behind && !bitmap_file) {
1299 fprintf(stderr, Name ": write-behind mode requires a bitmap.\n");
1300 rv = 1;
1301 break;
1302 }
1303 if (raiddisks == 0) {
1304 fprintf(stderr, Name ": no raid-devices specified.\n");
1305 rv = 1;
1306 break;
1307 }
1308
1309 rv = Create(ss, devlist->devname, chunk, level, layout, size<0 ? 0 : size,
1310 raiddisks, sparedisks, ident.name, homehost,
1311 ident.uuid_set ? ident.uuid : NULL,
1312 devs_found-1, devlist->next, runstop, verbose-quiet, force, assume_clean,
1313 bitmap_file, bitmap_chunk, write_behind, delay, autof);
1314 break;
1315 case MISC:
1316 if (devmode == 'E') {
1317 if (devlist == NULL && !scan) {
1318 fprintf(stderr, Name ": No devices to examine\n");
1319 exit(2);
1320 }
1321 if (devlist == NULL)
1322 devlist = conf_get_devs();
1323 if (devlist == NULL) {
1324 fprintf(stderr, Name ": No devices listed in %s\n", configfile?configfile:DefaultConfFile);
1325 exit(1);
1326 }
1327 if (brief && verbose)
1328 brief = 2;
1329 rv = Examine(devlist, scan?(verbose>1?0:verbose+1):brief,
1330 export, scan,
1331 SparcAdjust, ss, homehost);
1332 } else if (devmode == DetailPlatform) {
1333 rv = Detail_Platform(ss ? ss->ss : NULL, ss ? scan : 1, verbose);
1334 } else {
1335 if (devlist == NULL) {
1336 if ((devmode=='D' || devmode == Waitclean) && scan) {
1337 /* apply --detail or --wait-clean to
1338 * all devices in /proc/mdstat
1339 */
1340 struct mdstat_ent *ms = mdstat_read(0, 1);
1341 struct mdstat_ent *e;
1342 struct map_ent *map = NULL;
1343 int members;
1344 int v = verbose>1?0:verbose+1;
1345
1346 for (members = 0; members <= 1; members++) {
1347 for (e=ms ; e ; e=e->next) {
1348 char *name;
1349 struct map_ent *me;
1350 int member = e->metadata_version &&
1351 strncmp(e->metadata_version,
1352 "external:/", 10) == 0;
1353 if (members != member)
1354 continue;
1355 me = map_by_devnum(&map, e->devnum);
1356 if (me && me->path
1357 && strcmp(me->path, "/unknown") != 0)
1358 name = me->path;
1359 else
1360 name = get_md_name(e->devnum);
1361
1362 if (!name) {
1363 fprintf(stderr, Name ": cannot find device file for %s\n",
1364 e->dev);
1365 continue;
1366 }
1367 if (devmode == 'D')
1368 rv |= Detail(name, v,
1369 export, test,
1370 homehost);
1371 else
1372 rv |= WaitClean(name, -1, v);
1373 put_md_name(name);
1374 }
1375 }
1376 free_mdstat(ms);
1377 } else if (devmode == 'S' && scan) {
1378 /* apply --stop to all devices in /proc/mdstat */
1379 /* Due to possible stacking of devices, repeat until
1380 * nothing more can be stopped
1381 */
1382 int progress=1, err;
1383 int last = 0;
1384 do {
1385 struct mdstat_ent *ms = mdstat_read(0, 0);
1386 struct mdstat_ent *e;
1387
1388 if (!progress) last = 1;
1389 progress = 0; err = 0;
1390 for (e=ms ; e ; e=e->next) {
1391 char *name = get_md_name(e->devnum);
1392
1393 if (!name) {
1394 fprintf(stderr, Name ": cannot find device file for %s\n",
1395 e->dev);
1396 continue;
1397 }
1398 mdfd = open_mddev(name, 1);
1399 if (mdfd >= 0) {
1400 if (Manage_runstop(name, mdfd, -1, quiet?1:last?0:-1))
1401 err = 1;
1402 else
1403 progress = 1;
1404 close(mdfd);
1405 }
1406
1407 put_md_name(name);
1408 }
1409 free_mdstat(ms);
1410 } while (!last && err);
1411 if (err) rv |= 1;
1412 } else {
1413 fprintf(stderr, Name ": No devices given.\n");
1414 exit(2);
1415 }
1416 }
1417 for (dv=devlist ; dv; dv=dv->next) {
1418 switch(dv->disposition) {
1419 case 'D':
1420 rv |= Detail(dv->devname,
1421 brief?1+verbose:0,
1422 export, test, homehost);
1423 continue;
1424 case 'K': /* Zero superblock */
1425 if (ss)
1426 rv |= Kill(dv->devname, ss, force, quiet,0);
1427 else {
1428 int q = quiet;
1429 do {
1430 rv |= Kill(dv->devname, NULL, force, q, 0);
1431 q = 1;
1432 } while (rv == 0);
1433 rv &= ~2;
1434 }
1435 continue;
1436 case 'Q':
1437 rv |= Query(dv->devname); continue;
1438 case 'X':
1439 rv |= ExamineBitmap(dv->devname, brief, ss); continue;
1440 case 'W':
1441 rv |= Wait(dv->devname); continue;
1442 case Waitclean:
1443 rv |= WaitClean(dv->devname, -1, verbose-quiet); continue;
1444 case KillSubarray:
1445 rv |= Kill_subarray(dv->devname, subarray, quiet);
1446 continue;
1447 case UpdateSubarray:
1448 if (update == NULL) {
1449 fprintf(stderr,
1450 Name ": -U/--update must be specified with --update-subarray\n");
1451 rv |= 1;
1452 continue;
1453 }
1454 rv |= Update_subarray(dv->devname, subarray, update, &ident, quiet);
1455 continue;
1456 }
1457 mdfd = open_mddev(dv->devname, 1);
1458 if (mdfd>=0) {
1459 switch(dv->disposition) {
1460 case 'R':
1461 rv |= Manage_runstop(dv->devname, mdfd, 1, quiet); break;
1462 case 'S':
1463 rv |= Manage_runstop(dv->devname, mdfd, -1, quiet); break;
1464 case 'o':
1465 rv |= Manage_ro(dv->devname, mdfd, 1); break;
1466 case 'w':
1467 rv |= Manage_ro(dv->devname, mdfd, -1); break;
1468 }
1469 close(mdfd);
1470 } else
1471 rv |= 1;
1472 }
1473 }
1474 break;
1475 case MONITOR:
1476 if (!devlist && !scan) {
1477 fprintf(stderr, Name ": Cannot monitor: need --scan or at least one device\n");
1478 rv = 1;
1479 break;
1480 }
1481 if (pidfile && !daemonise) {
1482 fprintf(stderr, Name ": Cannot write a pid file when not in daemon mode\n");
1483 rv = 1;
1484 break;
1485 }
1486 if (delay == 0) {
1487 if (get_linux_version() > 20616)
1488 /* mdstat responds to poll */
1489 delay = 1000;
1490 else
1491 delay = 60;
1492 }
1493 rv= Monitor(devlist, mailaddr, program,
1494 delay?delay:60, daemonise, scan, oneshot,
1495 dosyslog, test, pidfile, increments);
1496 break;
1497
1498 case GROW:
1499 if (array_size >= 0) {
1500 /* alway impose array size first, independent of
1501 * anything else
1502 * Do not allow level or raid_disks changes at the
1503 * same time as that can be irreversibly destructive.
1504 */
1505 struct mdinfo sra;
1506 int err;
1507 if (raiddisks || level != UnSet) {
1508 fprintf(stderr, Name ": cannot change array size in same operation "
1509 "as changing raiddisks or level.\n"
1510 " Change size first, then check that data is still intact.\n");
1511 rv = 1;
1512 break;
1513 }
1514 sysfs_init(&sra, mdfd, 0);
1515 if (array_size == 0)
1516 err = sysfs_set_str(&sra, NULL, "array_size", "default");
1517 else
1518 err = sysfs_set_num(&sra, NULL, "array_size", array_size / 2);
1519 if (err < 0) {
1520 if (errno == E2BIG)
1521 fprintf(stderr, Name ": --array-size setting"
1522 " is too large.\n");
1523 else
1524 fprintf(stderr, Name ": current kernel does"
1525 " not support setting --array-size\n");
1526 rv = 1;
1527 break;
1528 }
1529 }
1530 if (devs_found > 1) {
1531
1532 /* must be '-a'. */
1533 if (size >= 0 || raiddisks || chunk || layout_str != NULL || bitmap_file) {
1534 fprintf(stderr, Name ": --add cannot be used with other geometry changes in --grow mode\n");
1535 rv = 1;
1536 break;
1537 }
1538 for (dv=devlist->next; dv ; dv=dv->next) {
1539 rv = Grow_Add_device(devlist->devname, mdfd, dv->devname);
1540 if (rv)
1541 break;
1542 }
1543 } else if (bitmap_file) {
1544 if (size >= 0 || raiddisks || chunk || layout_str != NULL) {
1545 fprintf(stderr, Name ": --bitmap changes cannot be used with other geometry changes in --grow mode\n");
1546 rv = 1;
1547 break;
1548 }
1549 if (delay == 0)
1550 delay = DEFAULT_BITMAP_DELAY;
1551 rv = Grow_addbitmap(devlist->devname, mdfd, bitmap_file,
1552 bitmap_chunk, delay, write_behind, force);
1553 } else if (size >= 0 || raiddisks != 0 || layout_str != NULL
1554 || chunk != 0 || level != UnSet) {
1555 rv = Grow_reshape(devlist->devname, mdfd, quiet, backup_file,
1556 size, level, layout_str, chunk, raiddisks);
1557 } else if (array_size < 0)
1558 fprintf(stderr, Name ": no changes to --grow\n");
1559 break;
1560 case INCREMENTAL:
1561 if (rebuild_map) {
1562 RebuildMap();
1563 }
1564 if (scan) {
1565 if (runstop <= 0) {
1566 fprintf(stderr, Name
1567 ": --incremental --scan meaningless without --run.\n");
1568 break;
1569 }
1570 if (devmode == 'f') {
1571 fprintf(stderr, Name
1572 ": --incremental --scan --fail not supported.\n");
1573 break;
1574 }
1575 rv = IncrementalScan(verbose);
1576 }
1577 if (!devlist) {
1578 if (!rebuild_map && !scan) {
1579 fprintf(stderr, Name
1580 ": --incremental requires a device.\n");
1581 rv = 1;
1582 }
1583 break;
1584 }
1585 if (devlist->next) {
1586 fprintf(stderr, Name
1587 ": --incremental can only handle one device.\n");
1588 rv = 1;
1589 break;
1590 }
1591 if (devmode == 'f') {
1592 rv = IncrementalRemove(devlist->devname, verbose-quiet);
1593 break;
1594 }
1595 rv = Incremental(devlist->devname, verbose-quiet, runstop,
1596 ss, homehost, require_homehost, autof);
1597 break;
1598 case AUTODETECT:
1599 autodetect();
1600 break;
1601 }
1602 exit(rv);
1603 }