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