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