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