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