]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.c
6edf3abb14df55577db83568b161966b3410eaa3
[thirdparty/mdadm.git] / mdadm.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2013 Neil Brown <neilb@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@suse.de>
23 *
24 * Additions for bitmap and write-behind RAID options, Copyright (C) 2003-2004,
25 * Paul Clements, SteelEye Technology, Inc.
26 */
27
28 #include "mdadm.h"
29 #include "md_p.h"
30 #include <ctype.h>
31
32 static int scan_assemble(struct supertype *ss,
33 struct context *c,
34 struct mddev_ident *ident);
35 static int misc_scan(char devmode, struct context *c);
36 static int stop_scan(int verbose);
37 static int misc_list(struct mddev_dev *devlist,
38 struct mddev_ident *ident,
39 char *dump_directory,
40 struct supertype *ss, struct context *c);
41 const char Name[] = "mdadm";
42
43 int main(int argc, char *argv[])
44 {
45 int mode = 0;
46 int opt;
47 int option_index;
48 int rv;
49 int i;
50
51 unsigned long long array_size = 0;
52 unsigned long long data_offset = INVALID_SECTORS;
53 struct mddev_ident ident;
54 char *configfile = NULL;
55 int devmode = 0;
56 int bitmap_fd = -1;
57 struct mddev_dev *devlist = NULL;
58 struct mddev_dev **devlistend = & devlist;
59 struct mddev_dev *dv;
60 int devs_found = 0;
61 char *symlinks = NULL;
62 int grow_continue = 0;
63 /* autof indicates whether and how to create device node.
64 * bottom 3 bits are style. Rest (when shifted) are number of parts
65 * 0 - unset
66 * 1 - don't create (no)
67 * 2 - if is_standard, then create (yes)
68 * 3 - create as 'md' - reject is_standard mdp (md)
69 * 4 - create as 'mdp' - reject is_standard md (mdp)
70 * 5 - default to md if not is_standard (md in config file)
71 * 6 - default to mdp if not is_standard (part, or mdp in config file)
72 */
73 struct context c = {
74 .require_homehost = 1,
75 };
76 struct shape s = {
77 .journaldisks = 0,
78 .level = UnSet,
79 .layout = UnSet,
80 .bitmap_chunk = UnSet,
81 .consistency_policy = UnSet,
82 };
83
84 char sys_hostname[256];
85 char *mailaddr = NULL;
86 char *program = NULL;
87 int increments = 20;
88 int daemonise = 0;
89 char *pidfile = NULL;
90 int oneshot = 0;
91 int spare_sharing = 1;
92 struct supertype *ss = NULL;
93 enum flag_mode writemostly = FlagDefault;
94 enum flag_mode failfast = FlagDefault;
95 char *shortopt = short_options;
96 int dosyslog = 0;
97 int rebuild_map = 0;
98 char *remove_path = NULL;
99 char *udev_filename = NULL;
100 char *dump_directory = NULL;
101
102 int print_help = 0;
103 FILE *outf;
104
105 int mdfd = -1;
106
107 srandom(time(0) ^ getpid());
108
109 ident.uuid_set=0;
110 ident.level = UnSet;
111 ident.raid_disks = UnSet;
112 ident.super_minor= UnSet;
113 ident.devices=0;
114 ident.spare_group = NULL;
115 ident.autof = 0;
116 ident.st = NULL;
117 ident.bitmap_fd = -1;
118 ident.bitmap_file = NULL;
119 ident.name[0] = 0;
120 ident.container = NULL;
121 ident.member = NULL;
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-independent options */
129 switch(opt) {
130 case HelpOptions:
131 print_help = 2;
132 continue;
133 case 'h':
134 print_help = 1;
135 continue;
136
137 case 'V':
138 fputs(Version, stderr);
139 exit(0);
140
141 case 'v': c.verbose++;
142 continue;
143
144 case 'q': c.verbose--;
145 continue;
146
147 case 'b':
148 if (mode == ASSEMBLE || mode == BUILD ||
149 mode == CREATE || mode == GROW ||
150 mode == INCREMENTAL || mode == MANAGE)
151 break; /* b means bitmap */
152 case Brief:
153 c.brief = 1;
154 continue;
155
156 case 'Y': c.export++;
157 continue;
158
159 case HomeHost:
160 if (strcasecmp(optarg, "<ignore>") == 0)
161 c.require_homehost = 0;
162 else
163 c.homehost = optarg;
164 continue;
165
166 case OffRootOpt:
167 /* Silently ignore old option */
168 continue;
169
170 case Prefer:
171 if (c.prefer)
172 free(c.prefer);
173 if (asprintf(&c.prefer, "/%s/", optarg) <= 0)
174 c.prefer = NULL;
175 continue;
176
177 case ':':
178 case '?':
179 fputs(Usage, stderr);
180 exit(2);
181 }
182 /* second, figure out the mode.
183 * Some options force the mode. Others
184 * set the mode if it isn't already
185 */
186
187 switch(opt) {
188 case ManageOpt:
189 newmode = MANAGE;
190 shortopt = short_bitmap_options;
191 break;
192 case 'a':
193 case Add:
194 case AddSpare:
195 case AddJournal:
196 case 'r':
197 case Remove:
198 case Replace:
199 case With:
200 case 'f':
201 case Fail:
202 case ReAdd: /* re-add */
203 case ClusterConfirm:
204 if (!mode) {
205 newmode = MANAGE;
206 shortopt = short_bitmap_options;
207 }
208 break;
209
210 case 'A': newmode = ASSEMBLE;
211 shortopt = short_bitmap_auto_options;
212 break;
213 case 'B': newmode = BUILD;
214 shortopt = short_bitmap_auto_options;
215 break;
216 case 'C': newmode = CREATE;
217 shortopt = short_bitmap_auto_options;
218 break;
219 case 'F': newmode = MONITOR;
220 break;
221 case 'G': newmode = GROW;
222 shortopt = short_bitmap_options;
223 break;
224 case 'I': newmode = INCREMENTAL;
225 shortopt = short_bitmap_auto_options;
226 break;
227 case AutoDetect:
228 newmode = AUTODETECT;
229 break;
230
231 case MiscOpt:
232 case 'D':
233 case 'E':
234 case 'X':
235 case 'Q':
236 case ExamineBB:
237 case Dump:
238 case Restore:
239 case Action:
240 newmode = MISC;
241 break;
242
243 case 'R':
244 case 'S':
245 case 'o':
246 case 'w':
247 case 'W':
248 case WaitOpt:
249 case Waitclean:
250 case DetailPlatform:
251 case KillSubarray:
252 case UpdateSubarray:
253 case UdevRules:
254 case KillOpt:
255 if (!mode)
256 newmode = MISC;
257 break;
258
259 case NoSharing:
260 newmode = MONITOR;
261 break;
262 }
263 if (mode && newmode == mode) {
264 /* everybody happy ! */
265 } else if (mode && newmode != mode) {
266 /* not allowed.. */
267 pr_err("");
268 if (option_index >= 0)
269 fprintf(stderr, "--%s", long_options[option_index].name);
270 else
271 fprintf(stderr, "-%c", opt);
272 fprintf(stderr, " would set mdadm mode to \"%s\", but it is already set to \"%s\".\n",
273 map_num(modes, newmode),
274 map_num(modes, mode));
275 exit(2);
276 } else if (!mode && newmode) {
277 mode = newmode;
278 if (mode == MISC && devs_found) {
279 pr_err("No action given for %s in --misc mode\n",
280 devlist->devname);
281 cont_err("Action options must come before device names\n");
282 exit(2);
283 }
284 } else {
285 /* special case of -c --help */
286 if ((opt == 'c' || opt == ConfigFile) &&
287 (strncmp(optarg, "--h", 3) == 0 ||
288 strncmp(optarg, "-h", 2) == 0)) {
289 fputs(Help_config, stdout);
290 exit(0);
291 }
292
293 /* If first option is a device, don't force the mode yet */
294 if (opt == 1) {
295 if (devs_found == 0) {
296 dv = xmalloc(sizeof(*dv));
297 dv->devname = optarg;
298 dv->disposition = devmode;
299 dv->writemostly = writemostly;
300 dv->failfast = failfast;
301 dv->used = 0;
302 dv->next = NULL;
303 *devlistend = dv;
304 devlistend = &dv->next;
305
306 devs_found++;
307 continue;
308 }
309 /* No mode yet, and this is the second device ... */
310 pr_err("An option must be given to set the mode before a second device\n"
311 " (%s) is listed\n", optarg);
312 exit(2);
313 }
314 if (option_index >= 0)
315 pr_err("--%s", long_options[option_index].name);
316 else
317 pr_err("-%c", opt);
318 fprintf(stderr, " does not set the mode, and so cannot be the first option.\n");
319 exit(2);
320 }
321
322 /* if we just set the mode, then done */
323 switch(opt) {
324 case ManageOpt:
325 case MiscOpt:
326 case 'A':
327 case 'B':
328 case 'C':
329 case 'F':
330 case 'G':
331 case 'I':
332 case AutoDetect:
333 continue;
334 }
335 if (opt == 1) {
336 /* an undecorated option - must be a device name.
337 */
338
339 if (devs_found > 0 && devmode == DetailPlatform) {
340 pr_err("controller may only be specified once. %s ignored\n",
341 optarg);
342 continue;
343 }
344
345 if (devs_found > 0 && mode == MANAGE && !devmode) {
346 pr_err("Must give one of -a/-r/-f for subsequent devices at %s\n", optarg);
347 exit(2);
348 }
349 if (devs_found > 0 && mode == GROW && !devmode) {
350 pr_err("Must give -a/--add for devices to add: %s\n", optarg);
351 exit(2);
352 }
353 dv = xmalloc(sizeof(*dv));
354 dv->devname = optarg;
355 dv->disposition = devmode;
356 dv->writemostly = writemostly;
357 dv->failfast = failfast;
358 dv->used = 0;
359 dv->next = NULL;
360 *devlistend = dv;
361 devlistend = &dv->next;
362
363 devs_found++;
364 continue;
365 }
366
367 /* We've got a mode, and opt is now something else which
368 * could depend on the mode */
369 #define O(a,b) ((a<<16)|b)
370 switch (O(mode,opt)) {
371 case O(GROW,'c'):
372 case O(GROW,ChunkSize):
373 case O(CREATE,'c'):
374 case O(CREATE,ChunkSize):
375 case O(BUILD,'c'): /* chunk or rounding */
376 case O(BUILD,ChunkSize): /* chunk or rounding */
377 if (s.chunk) {
378 pr_err("chunk/rounding may only be specified once. Second value is %s.\n", optarg);
379 exit(2);
380 }
381 s.chunk = parse_size(optarg);
382 if (s.chunk == INVALID_SECTORS ||
383 s.chunk < 8 || (s.chunk&1)) {
384 pr_err("invalid chunk/rounding value: %s\n",
385 optarg);
386 exit(2);
387 }
388 /* Convert sectors to K */
389 s.chunk /= 2;
390 continue;
391
392 case O(INCREMENTAL, 'e'):
393 case O(CREATE,'e'):
394 case O(ASSEMBLE,'e'):
395 case O(MISC,'e'): /* set metadata (superblock) information */
396 if (ss) {
397 pr_err("metadata information already given\n");
398 exit(2);
399 }
400 for(i=0; !ss && superlist[i]; i++)
401 ss = superlist[i]->match_metadata_desc(optarg);
402
403 if (!ss) {
404 pr_err("unrecognised metadata identifier: %s\n", optarg);
405 exit(2);
406 }
407 continue;
408
409 case O(MANAGE,'W'):
410 case O(MANAGE,WriteMostly):
411 case O(BUILD,'W'):
412 case O(BUILD,WriteMostly):
413 case O(CREATE,'W'):
414 case O(CREATE,WriteMostly):
415 /* set write-mostly for following devices */
416 writemostly = FlagSet;
417 continue;
418
419 case O(MANAGE,'w'):
420 /* clear write-mostly for following devices */
421 writemostly = FlagClear;
422 continue;
423
424 case O(MANAGE,FailFast):
425 case O(CREATE,FailFast):
426 failfast = FlagSet;
427 continue;
428 case O(MANAGE,NoFailFast):
429 failfast = FlagClear;
430 continue;
431
432 case O(GROW,'z'):
433 case O(CREATE,'z'):
434 case O(BUILD,'z'): /* size */
435 if (s.size > 0) {
436 pr_err("size may only be specified once. Second value is %s.\n", optarg);
437 exit(2);
438 }
439 if (strcmp(optarg, "max") == 0)
440 s.size = MAX_SIZE;
441 else {
442 s.size = parse_size(optarg);
443 if (s.size == INVALID_SECTORS || s.size < 8) {
444 pr_err("invalid size: %s\n", optarg);
445 exit(2);
446 }
447 /* convert sectors to K */
448 s.size /= 2;
449 }
450 continue;
451
452 case O(GROW,'Z'): /* array size */
453 if (array_size > 0) {
454 pr_err("array-size may only be specified once. Second value is %s.\n", optarg);
455 exit(2);
456 }
457 if (strcmp(optarg, "max") == 0)
458 array_size = MAX_SIZE;
459 else {
460 array_size = parse_size(optarg);
461 if (array_size == 0 ||
462 array_size == INVALID_SECTORS) {
463 pr_err("invalid array size: %s\n",
464 optarg);
465 exit(2);
466 }
467 }
468 continue;
469
470 case O(CREATE,DataOffset):
471 case O(GROW,DataOffset):
472 if (data_offset != INVALID_SECTORS) {
473 pr_err("data-offset may only be specified one. Second value is %s.\n", optarg);
474 exit(2);
475 }
476 if (mode == CREATE && strcmp(optarg, "variable") == 0)
477 data_offset = VARIABLE_OFFSET;
478 else
479 data_offset = parse_size(optarg);
480 if (data_offset == INVALID_SECTORS) {
481 pr_err("invalid data-offset: %s\n",
482 optarg);
483 exit(2);
484 }
485 continue;
486
487 case O(GROW,'l'):
488 case O(CREATE,'l'):
489 case O(BUILD,'l'): /* set raid level*/
490 if (s.level != UnSet) {
491 pr_err("raid level may only be set once. Second value is %s.\n", optarg);
492 exit(2);
493 }
494 s.level = map_name(pers, optarg);
495 if (s.level == UnSet) {
496 pr_err("invalid raid level: %s\n",
497 optarg);
498 exit(2);
499 }
500 if (s.level != 0 && s.level != LEVEL_LINEAR &&
501 s.level != 1 && s.level != LEVEL_MULTIPATH &&
502 s.level != LEVEL_FAULTY && s.level != 10 &&
503 mode == BUILD) {
504 pr_err("Raid level %s not permitted with --build.\n",
505 optarg);
506 exit(2);
507 }
508 if (s.sparedisks > 0 && s.level < 1 && s.level >= -1) {
509 pr_err("raid level %s is incompatible with spare-devices setting.\n",
510 optarg);
511 exit(2);
512 }
513 ident.level = s.level;
514 continue;
515
516 case O(GROW, 'p'): /* new layout */
517 case O(GROW, Layout):
518 if (s.layout_str) {
519 pr_err("layout may only be sent once. Second value was %s\n", optarg);
520 exit(2);
521 }
522 s.layout_str = optarg;
523 /* 'Grow' will parse the value */
524 continue;
525
526 case O(CREATE,'p'): /* raid5 layout */
527 case O(CREATE,Layout):
528 case O(BUILD,'p'): /* faulty layout */
529 case O(BUILD,Layout):
530 if (s.layout != UnSet) {
531 pr_err("layout may only be sent once. Second value was %s\n", optarg);
532 exit(2);
533 }
534 switch(s.level) {
535 default:
536 pr_err("layout not meaningful for %s arrays.\n",
537 map_num(pers, s.level));
538 exit(2);
539 case UnSet:
540 pr_err("raid level must be given before layout.\n");
541 exit(2);
542
543 case 5:
544 s.layout = map_name(r5layout, optarg);
545 if (s.layout==UnSet) {
546 pr_err("layout %s not understood for raid5.\n",
547 optarg);
548 exit(2);
549 }
550 break;
551 case 6:
552 s.layout = map_name(r6layout, optarg);
553 if (s.layout==UnSet) {
554 pr_err("layout %s not understood for raid6.\n",
555 optarg);
556 exit(2);
557 }
558 break;
559
560 case 10:
561 s.layout = parse_layout_10(optarg);
562 if (s.layout < 0) {
563 pr_err("layout for raid10 must be 'nNN', 'oNN' or 'fNN' where NN is a number, not %s\n", optarg);
564 exit(2);
565 }
566 break;
567 case LEVEL_FAULTY:
568 /* Faulty
569 * modeNNN
570 */
571 s.layout = parse_layout_faulty(optarg);
572 if (s.layout == -1) {
573 pr_err("layout %s not understood for faulty.\n",
574 optarg);
575 exit(2);
576 }
577 break;
578 }
579 continue;
580
581 case O(CREATE,AssumeClean):
582 case O(BUILD,AssumeClean): /* assume clean */
583 case O(GROW,AssumeClean):
584 s.assume_clean = 1;
585 continue;
586
587 case O(GROW,'n'):
588 case O(CREATE,'n'):
589 case O(BUILD,'n'): /* number of raid disks */
590 if (s.raiddisks) {
591 pr_err("raid-devices set twice: %d and %s\n",
592 s.raiddisks, optarg);
593 exit(2);
594 }
595 s.raiddisks = parse_num(optarg);
596 if (s.raiddisks <= 0) {
597 pr_err("invalid number of raid devices: %s\n",
598 optarg);
599 exit(2);
600 }
601 ident.raid_disks = s.raiddisks;
602 continue;
603 case O(ASSEMBLE, Nodes):
604 case O(GROW, Nodes):
605 case O(CREATE, Nodes):
606 c.nodes = parse_num(optarg);
607 if (c.nodes < 2) {
608 pr_err("clustered array needs two nodes at least: %s\n",
609 optarg);
610 exit(2);
611 }
612 continue;
613 case O(CREATE, ClusterName):
614 case O(ASSEMBLE, ClusterName):
615 c.homecluster = optarg;
616 if (strlen(c.homecluster) > 64) {
617 pr_err("Cluster name too big.\n");
618 exit(ERANGE);
619 }
620 continue;
621 case O(CREATE,'x'): /* number of spare (eXtra) disks */
622 if (s.sparedisks) {
623 pr_err("spare-devices set twice: %d and %s\n",
624 s.sparedisks, optarg);
625 exit(2);
626 }
627 if (s.level != UnSet && s.level <= 0 && s.level >= -1) {
628 pr_err("spare-devices setting is incompatible with raid level %d\n",
629 s.level);
630 exit(2);
631 }
632 s.sparedisks = parse_num(optarg);
633 if (s.sparedisks < 0) {
634 pr_err("invalid number of spare-devices: %s\n",
635 optarg);
636 exit(2);
637 }
638 continue;
639
640 case O(CREATE,'a'):
641 case O(CREATE,Auto):
642 case O(BUILD,'a'):
643 case O(BUILD,Auto):
644 case O(INCREMENTAL,'a'):
645 case O(INCREMENTAL,Auto):
646 case O(ASSEMBLE,'a'):
647 case O(ASSEMBLE,Auto): /* auto-creation of device node */
648 c.autof = parse_auto(optarg, "--auto flag", 0);
649 continue;
650
651 case O(CREATE,Symlinks):
652 case O(BUILD,Symlinks):
653 case O(ASSEMBLE,Symlinks): /* auto creation of symlinks in /dev to /dev/md */
654 symlinks = optarg;
655 continue;
656
657 case O(BUILD,'f'): /* force honouring '-n 1' */
658 case O(BUILD,Force): /* force honouring '-n 1' */
659 case O(GROW,'f'): /* ditto */
660 case O(GROW,Force): /* ditto */
661 case O(CREATE,'f'): /* force honouring of device list */
662 case O(CREATE,Force): /* force honouring of device list */
663 case O(ASSEMBLE,'f'): /* force assembly */
664 case O(ASSEMBLE,Force): /* force assembly */
665 case O(MISC,'f'): /* force zero */
666 case O(MISC,Force): /* force zero */
667 case O(MANAGE,Force): /* add device which is too large */
668 c.force=1;
669 continue;
670 /* now for the Assemble options */
671 case O(ASSEMBLE, FreezeReshape): /* Freeze reshape during
672 * initrd phase */
673 case O(INCREMENTAL, FreezeReshape):
674 c.freeze_reshape = 1;
675 continue;
676 case O(CREATE,'u'): /* uuid of array */
677 case O(ASSEMBLE,'u'): /* uuid of array */
678 if (ident.uuid_set) {
679 pr_err("uuid cannot be set twice. Second value %s.\n", optarg);
680 exit(2);
681 }
682 if (parse_uuid(optarg, ident.uuid))
683 ident.uuid_set = 1;
684 else {
685 pr_err("Bad uuid: %s\n", optarg);
686 exit(2);
687 }
688 continue;
689
690 case O(CREATE,'N'):
691 case O(ASSEMBLE,'N'):
692 case O(MISC,'N'):
693 if (ident.name[0]) {
694 pr_err("name cannot be set twice. Second value %s.\n", optarg);
695 exit(2);
696 }
697 if (mode == MISC && !c.subarray) {
698 pr_err("-N/--name only valid with --update-subarray in misc mode\n");
699 exit(2);
700 }
701 if (strlen(optarg) > 32) {
702 pr_err("name '%s' is too long, 32 chars max.\n",
703 optarg);
704 exit(2);
705 }
706 strcpy(ident.name, optarg);
707 continue;
708
709 case O(ASSEMBLE,'m'): /* super-minor for array */
710 case O(ASSEMBLE,SuperMinor):
711 if (ident.super_minor != UnSet) {
712 pr_err("super-minor cannot be set twice. Second value: %s.\n", optarg);
713 exit(2);
714 }
715 if (strcmp(optarg, "dev") == 0)
716 ident.super_minor = -2;
717 else {
718 ident.super_minor = parse_num(optarg);
719 if (ident.super_minor < 0) {
720 pr_err("Bad super-minor number: %s.\n", optarg);
721 exit(2);
722 }
723 }
724 continue;
725
726 case O(ASSEMBLE,'o'):
727 case O(MANAGE,'o'):
728 case O(CREATE,'o'):
729 c.readonly = 1;
730 continue;
731
732 case O(ASSEMBLE,'U'): /* update the superblock */
733 case O(MISC,'U'):
734 if (c.update) {
735 pr_err("Can only update one aspect of superblock, both %s and %s given.\n",
736 c.update, optarg);
737 exit(2);
738 }
739 if (mode == MISC && !c.subarray) {
740 pr_err("Only subarrays can be updated in misc mode\n");
741 exit(2);
742 }
743 c.update = optarg;
744 if (strcmp(c.update, "sparc2.2") == 0)
745 continue;
746 if (strcmp(c.update, "super-minor") == 0)
747 continue;
748 if (strcmp(c.update, "summaries") == 0)
749 continue;
750 if (strcmp(c.update, "resync") == 0)
751 continue;
752 if (strcmp(c.update, "uuid") == 0)
753 continue;
754 if (strcmp(c.update, "name") == 0)
755 continue;
756 if (strcmp(c.update, "homehost") == 0)
757 continue;
758 if (strcmp(c.update, "home-cluster") == 0)
759 continue;
760 if (strcmp(c.update, "nodes") == 0)
761 continue;
762 if (strcmp(c.update, "devicesize") == 0)
763 continue;
764 if (strcmp(c.update, "no-bitmap") == 0)
765 continue;
766 if (strcmp(c.update, "bbl") == 0)
767 continue;
768 if (strcmp(c.update, "no-bbl") == 0)
769 continue;
770 if (strcmp(c.update, "force-no-bbl") == 0)
771 continue;
772 if (strcmp(c.update, "ppl") == 0)
773 continue;
774 if (strcmp(c.update, "no-ppl") == 0)
775 continue;
776 if (strcmp(c.update, "metadata") == 0)
777 continue;
778 if (strcmp(c.update, "revert-reshape") == 0)
779 continue;
780 if (strcmp(c.update, "byteorder")==0) {
781 if (ss) {
782 pr_err("must not set metadata type with --update=byteorder.\n");
783 exit(2);
784 }
785 for(i=0; !ss && superlist[i]; i++)
786 ss = superlist[i]->match_metadata_desc(
787 "0.swap");
788 if (!ss) {
789 pr_err("INTERNAL ERROR cannot find 0.swap\n");
790 exit(2);
791 }
792
793 continue;
794 }
795 if (strcmp(c.update,"?") == 0 ||
796 strcmp(c.update, "help") == 0) {
797 outf = stdout;
798 fprintf(outf, "%s: ", Name);
799 } else {
800 outf = stderr;
801 fprintf(outf,
802 "%s: '--update=%s' is invalid. ",
803 Name, c.update);
804 }
805 fprintf(outf, "Valid --update options are:\n"
806 " 'sparc2.2', 'super-minor', 'uuid', 'name', 'nodes', 'resync',\n"
807 " 'summaries', 'homehost', 'home-cluster', 'byteorder', 'devicesize',\n"
808 " 'no-bitmap', 'metadata', 'revert-reshape'\n"
809 " 'bbl', 'no-bbl', 'force-no-bbl', 'ppl', 'no-ppl'\n"
810 );
811 exit(outf == stdout ? 0 : 2);
812
813 case O(MANAGE,'U'):
814 /* update=devicesize is allowed with --re-add */
815 if (devmode != 'A') {
816 pr_err("--update in Manage mode only allowed with --re-add.\n");
817 exit(1);
818 }
819 if (c.update) {
820 pr_err("Can only update one aspect of superblock, both %s and %s given.\n",
821 c.update, optarg);
822 exit(2);
823 }
824 c.update = optarg;
825 if (strcmp(c.update, "devicesize") != 0 &&
826 strcmp(c.update, "bbl") != 0 &&
827 strcmp(c.update, "force-no-bbl") != 0 &&
828 strcmp(c.update, "no-bbl") != 0) {
829 pr_err("only 'devicesize', 'bbl', 'no-bbl', and 'force-no-bbl' can be updated with --re-add\n");
830 exit(2);
831 }
832 continue;
833
834 case O(INCREMENTAL,NoDegraded):
835 pr_err("--no-degraded is deprecated in Incremental mode\n");
836 case O(ASSEMBLE,NoDegraded): /* --no-degraded */
837 c.runstop = -1; /* --stop isn't allowed for --assemble,
838 * so we overload slightly */
839 continue;
840
841 case O(ASSEMBLE,'c'):
842 case O(ASSEMBLE,ConfigFile):
843 case O(INCREMENTAL, 'c'):
844 case O(INCREMENTAL, ConfigFile):
845 case O(MISC, 'c'):
846 case O(MISC, ConfigFile):
847 case O(MONITOR,'c'):
848 case O(MONITOR,ConfigFile):
849 case O(CREATE,ConfigFile):
850 if (configfile) {
851 pr_err("configfile cannot be set twice. Second value is %s.\n", optarg);
852 exit(2);
853 }
854 configfile = optarg;
855 set_conffile(configfile);
856 /* FIXME possibly check that config file exists. Even parse it */
857 continue;
858 case O(ASSEMBLE,'s'): /* scan */
859 case O(MISC,'s'):
860 case O(MONITOR,'s'):
861 case O(INCREMENTAL,'s'):
862 c.scan = 1;
863 continue;
864
865 case O(MONITOR,'m'): /* mail address */
866 case O(MONITOR,EMail):
867 if (mailaddr)
868 pr_err("only specify one mailaddress. %s ignored.\n",
869 optarg);
870 else
871 mailaddr = optarg;
872 continue;
873
874 case O(MONITOR,'p'): /* alert program */
875 case O(MONITOR,ProgramOpt): /* alert program */
876 if (program)
877 pr_err("only specify one alter program. %s ignored.\n",
878 optarg);
879 else
880 program = optarg;
881 continue;
882
883 case O(MONITOR,'r'): /* rebuild increments */
884 case O(MONITOR,Increment):
885 increments = atoi(optarg);
886 if (increments > 99 || increments < 1) {
887 pr_err("please specify positive integer between 1 and 99 as rebuild increments.\n");
888 exit(2);
889 }
890 continue;
891
892 case O(MONITOR,'d'): /* delay in seconds */
893 case O(GROW, 'd'):
894 case O(BUILD,'d'): /* delay for bitmap updates */
895 case O(CREATE,'d'):
896 if (c.delay)
897 pr_err("only specify delay once. %s ignored.\n",
898 optarg);
899 else {
900 c.delay = parse_num(optarg);
901 if (c.delay < 1) {
902 pr_err("invalid delay: %s\n",
903 optarg);
904 exit(2);
905 }
906 }
907 continue;
908 case O(MONITOR,'f'): /* daemonise */
909 case O(MONITOR,Fork):
910 daemonise = 1;
911 continue;
912 case O(MONITOR,'i'): /* pid */
913 if (pidfile)
914 pr_err("only specify one pid file. %s ignored.\n",
915 optarg);
916 else
917 pidfile = optarg;
918 continue;
919 case O(MONITOR,'1'): /* oneshot */
920 oneshot = 1;
921 spare_sharing = 0;
922 continue;
923 case O(MONITOR,'t'): /* test */
924 c.test = 1;
925 continue;
926 case O(MONITOR,'y'): /* log messages to syslog */
927 openlog("mdadm", LOG_PID, SYSLOG_FACILITY);
928 dosyslog = 1;
929 continue;
930 case O(MONITOR, NoSharing):
931 spare_sharing = 0;
932 continue;
933
934 /* now the general management options. Some are applicable
935 * to other modes. None have arguments.
936 */
937 case O(GROW,'a'):
938 case O(GROW,Add):
939 case O(MANAGE,'a'):
940 case O(MANAGE,Add): /* add a drive */
941 devmode = 'a';
942 continue;
943 case O(MANAGE,AddSpare): /* add drive - never re-add */
944 devmode = 'S';
945 continue;
946 case O(MANAGE,AddJournal): /* add journal */
947 if (s.journaldisks && (s.level < 4 || s.level > 6)) {
948 pr_err("--add-journal is only supported for RAID level 4/5/6.\n");
949 exit(2);
950 }
951 devmode = 'j';
952 continue;
953 case O(MANAGE,ReAdd):
954 devmode = 'A';
955 continue;
956 case O(MANAGE,'r'): /* remove a drive */
957 case O(MANAGE,Remove):
958 devmode = 'r';
959 continue;
960 case O(MANAGE,'f'): /* set faulty */
961 case O(MANAGE,Fail):
962 case O(INCREMENTAL,'f'):
963 case O(INCREMENTAL,Remove):
964 case O(INCREMENTAL,Fail): /* r for incremental is taken, use f
965 * even though we will both fail and
966 * remove the device */
967 devmode = 'f';
968 continue;
969 case O(MANAGE, ClusterConfirm):
970 devmode = 'c';
971 continue;
972 case O(MANAGE,Replace):
973 /* Mark these devices for replacement */
974 devmode = 'R';
975 continue;
976 case O(MANAGE,With):
977 /* These are the replacements to use */
978 if (devmode != 'R') {
979 pr_err("--with must follow --replace\n");
980 exit(2);
981 }
982 devmode = 'W';
983 continue;
984 case O(INCREMENTAL,'R'):
985 case O(MANAGE,'R'):
986 case O(ASSEMBLE,'R'):
987 case O(BUILD,'R'):
988 case O(CREATE,'R'): /* Run the array */
989 if (c.runstop < 0) {
990 pr_err("Cannot both Stop and Run an array\n");
991 exit(2);
992 }
993 c.runstop = 1;
994 continue;
995 case O(MANAGE,'S'):
996 if (c.runstop > 0) {
997 pr_err("Cannot both Run and Stop an array\n");
998 exit(2);
999 }
1000 c.runstop = -1;
1001 continue;
1002 case O(MANAGE,'t'):
1003 c.test = 1;
1004 continue;
1005
1006 case O(MISC,'Q'):
1007 case O(MISC,'D'):
1008 case O(MISC,'E'):
1009 case O(MISC,KillOpt):
1010 case O(MISC,'R'):
1011 case O(MISC,'S'):
1012 case O(MISC,'X'):
1013 case O(MISC, ExamineBB):
1014 case O(MISC,'o'):
1015 case O(MISC,'w'):
1016 case O(MISC,'W'):
1017 case O(MISC, WaitOpt):
1018 case O(MISC, Waitclean):
1019 case O(MISC, DetailPlatform):
1020 case O(MISC, KillSubarray):
1021 case O(MISC, UpdateSubarray):
1022 case O(MISC, Dump):
1023 case O(MISC, Restore):
1024 case O(MISC ,Action):
1025 if (opt == KillSubarray || opt == UpdateSubarray) {
1026 if (c.subarray) {
1027 pr_err("subarray can only be specified once\n");
1028 exit(2);
1029 }
1030 c.subarray = optarg;
1031 }
1032 if (opt == Action) {
1033 if (c.action) {
1034 pr_err("Only one --action can be specified\n");
1035 exit(2);
1036 }
1037 if (strcmp(optarg, "idle") == 0 ||
1038 strcmp(optarg, "frozen") == 0 ||
1039 strcmp(optarg, "check") == 0 ||
1040 strcmp(optarg, "repair") == 0)
1041 c.action = optarg;
1042 else {
1043 pr_err("action must be one of idle, frozen, check, repair\n");
1044 exit(2);
1045 }
1046 }
1047 if (devmode && devmode != opt &&
1048 (devmode == 'E' ||
1049 (opt == 'E' && devmode != 'Q'))) {
1050 pr_err("--examine/-E cannot be given with ");
1051 if (devmode == 'E') {
1052 if (option_index >= 0)
1053 fprintf(stderr, "--%s\n",
1054 long_options[option_index].name);
1055 else
1056 fprintf(stderr, "-%c\n", opt);
1057 } else if (isalpha(devmode))
1058 fprintf(stderr, "-%c\n", devmode);
1059 else
1060 fprintf(stderr, "previous option\n");
1061 exit(2);
1062 }
1063 devmode = opt;
1064 if (opt == Dump || opt == Restore) {
1065 if (dump_directory != NULL) {
1066 pr_err("dump/restore directory specified twice: %s and %s\n",
1067 dump_directory, optarg);
1068 exit(2);
1069 }
1070 dump_directory = optarg;
1071 }
1072 continue;
1073 case O(MISC, UdevRules):
1074 if (devmode && devmode != opt) {
1075 pr_err("--udev-rules must be the only option.\n");
1076 } else {
1077 if (udev_filename)
1078 pr_err("only specify one udev rule filename. %s ignored.\n",
1079 optarg);
1080 else
1081 udev_filename = optarg;
1082 }
1083 devmode = opt;
1084 continue;
1085 case O(MISC,'t'):
1086 c.test = 1;
1087 continue;
1088
1089 case O(MISC, Sparc22):
1090 if (devmode != 'E') {
1091 pr_err("--sparc2.2 only allowed with --examine\n");
1092 exit(2);
1093 }
1094 c.SparcAdjust = 1;
1095 continue;
1096
1097 case O(ASSEMBLE,'b'): /* here we simply set the bitmap file */
1098 case O(ASSEMBLE,Bitmap):
1099 if (!optarg) {
1100 pr_err("bitmap file needed with -b in --assemble mode\n");
1101 exit(2);
1102 }
1103 if (strcmp(optarg, "internal") == 0 ||
1104 strcmp(optarg, "clustered") == 0) {
1105 pr_err("no need to specify --bitmap when assembling"
1106 " arrays with internal or clustered bitmap\n");
1107 continue;
1108 }
1109 bitmap_fd = open(optarg, O_RDWR);
1110 if (!*optarg || bitmap_fd < 0) {
1111 pr_err("cannot open bitmap file %s: %s\n", optarg, strerror(errno));
1112 exit(2);
1113 }
1114 ident.bitmap_fd = bitmap_fd; /* for Assemble */
1115 continue;
1116
1117 case O(ASSEMBLE, BackupFile):
1118 case O(GROW, BackupFile):
1119 /* Specify a file into which grow might place a backup,
1120 * or from which assemble might recover a backup
1121 */
1122 if (c.backup_file) {
1123 pr_err("backup file already specified, rejecting %s\n", optarg);
1124 exit(2);
1125 }
1126 c.backup_file = optarg;
1127 continue;
1128
1129 case O(GROW, Continue):
1130 /* Continue interrupted grow
1131 */
1132 grow_continue = 1;
1133 continue;
1134 case O(ASSEMBLE, InvalidBackup):
1135 /* Acknowledge that the backupfile is invalid, but ask
1136 * to continue anyway
1137 */
1138 c.invalid_backup = 1;
1139 continue;
1140
1141 case O(BUILD,'b'):
1142 case O(BUILD,Bitmap):
1143 case O(CREATE,'b'):
1144 case O(CREATE,Bitmap): /* here we create the bitmap */
1145 case O(GROW,'b'):
1146 case O(GROW,Bitmap):
1147 if (s.bitmap_file) {
1148 pr_err("bitmap cannot be set twice. Second value: %s.\n", optarg);
1149 exit(2);
1150 }
1151 if (strcmp(optarg, "internal") == 0 ||
1152 strcmp(optarg, "none") == 0 ||
1153 strchr(optarg, '/') != NULL) {
1154 s.bitmap_file = optarg;
1155 continue;
1156 }
1157 if (strcmp(optarg, "clustered") == 0) {
1158 s.bitmap_file = optarg;
1159 /* Set the default number of cluster nodes
1160 * to 4 if not already set by user
1161 */
1162 if (c.nodes < 1)
1163 c.nodes = 4;
1164 continue;
1165 }
1166 /* probable typo */
1167 pr_err("bitmap file must contain a '/', or be 'internal', or be 'clustered', or 'none'\n"
1168 " not '%s'\n", optarg);
1169 exit(2);
1170
1171 case O(GROW,BitmapChunk):
1172 case O(BUILD,BitmapChunk):
1173 case O(CREATE,BitmapChunk): /* bitmap chunksize */
1174 s.bitmap_chunk = parse_size(optarg);
1175 if (s.bitmap_chunk == 0 ||
1176 s.bitmap_chunk == INVALID_SECTORS ||
1177 s.bitmap_chunk & (s.bitmap_chunk - 1)) {
1178 pr_err("invalid bitmap chunksize: %s\n",
1179 optarg);
1180 exit(2);
1181 }
1182 s.bitmap_chunk = s.bitmap_chunk * 512;
1183 continue;
1184
1185 case O(GROW, WriteBehind):
1186 case O(BUILD, WriteBehind):
1187 case O(CREATE, WriteBehind): /* write-behind mode */
1188 s.write_behind = DEFAULT_MAX_WRITE_BEHIND;
1189 if (optarg) {
1190 s.write_behind = parse_num(optarg);
1191 if (s.write_behind < 0 ||
1192 s.write_behind > 16383) {
1193 pr_err("Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg);
1194 exit(2);
1195 }
1196 }
1197 continue;
1198
1199 case O(INCREMENTAL, 'r'):
1200 case O(INCREMENTAL, RebuildMapOpt):
1201 rebuild_map = 1;
1202 continue;
1203 case O(INCREMENTAL, IncrementalPath):
1204 remove_path = optarg;
1205 continue;
1206 case O(CREATE, WriteJournal):
1207 if (s.journaldisks) {
1208 pr_err("Please specify only one journal device for the array.\n");
1209 pr_err("Ignoring --write-journal %s...\n", optarg);
1210 continue;
1211 }
1212 dv = xmalloc(sizeof(*dv));
1213 dv->devname = optarg;
1214 dv->disposition = 'j'; /* WriteJournal */
1215 dv->used = 0;
1216 dv->next = NULL;
1217 *devlistend = dv;
1218 devlistend = &dv->next;
1219 devs_found++;
1220
1221 s.journaldisks = 1;
1222 continue;
1223 case O(CREATE, 'k'):
1224 s.consistency_policy = map_name(consistency_policies,
1225 optarg);
1226 if (s.consistency_policy == UnSet ||
1227 s.consistency_policy < CONSISTENCY_POLICY_RESYNC) {
1228 pr_err("Invalid consistency policy: %s\n",
1229 optarg);
1230 exit(2);
1231 }
1232 continue;
1233 }
1234 /* We have now processed all the valid options. Anything else is
1235 * an error
1236 */
1237 if (option_index > 0)
1238 pr_err(":option --%s not valid in %s mode\n",
1239 long_options[option_index].name,
1240 map_num(modes, mode));
1241 else
1242 pr_err("option -%c not valid in %s mode\n",
1243 opt, map_num(modes, mode));
1244 exit(2);
1245
1246 }
1247
1248 if (print_help) {
1249 char *help_text;
1250 if (print_help == 2)
1251 help_text = OptionHelp;
1252 else
1253 help_text = mode_help[mode];
1254 if (help_text == NULL)
1255 help_text = Help;
1256 fputs(help_text,stdout);
1257 exit(0);
1258 }
1259
1260 if (s.journaldisks) {
1261 if (s.level < 4 || s.level > 6) {
1262 pr_err("--write-journal is only supported for RAID level 4/5/6.\n");
1263 exit(2);
1264 }
1265 if (s.consistency_policy != UnSet &&
1266 s.consistency_policy != CONSISTENCY_POLICY_JOURNAL) {
1267 pr_err("--write-journal is not supported with consistency policy: %s\n",
1268 map_num(consistency_policies, s.consistency_policy));
1269 exit(2);
1270 }
1271 }
1272
1273 if (mode == CREATE && s.consistency_policy != UnSet) {
1274 if (s.level <= 0) {
1275 pr_err("--consistency-policy not meaningful with level %s.\n",
1276 map_num(pers, s.level));
1277 exit(2);
1278 } else if (s.consistency_policy == CONSISTENCY_POLICY_JOURNAL &&
1279 !s.journaldisks) {
1280 pr_err("--write-journal is required for consistency policy: %s\n",
1281 map_num(consistency_policies, s.consistency_policy));
1282 exit(2);
1283 } else if (s.consistency_policy == CONSISTENCY_POLICY_PPL &&
1284 s.level != 5) {
1285 pr_err("PPL consistency policy is only supported for RAID level 5.\n");
1286 exit(2);
1287 } else if (s.consistency_policy == CONSISTENCY_POLICY_BITMAP &&
1288 (!s.bitmap_file ||
1289 strcmp(s.bitmap_file, "none") == 0)) {
1290 pr_err("--bitmap is required for consistency policy: %s\n",
1291 map_num(consistency_policies, s.consistency_policy));
1292 exit(2);
1293 } else if (s.bitmap_file &&
1294 strcmp(s.bitmap_file, "none") != 0 &&
1295 s.consistency_policy != CONSISTENCY_POLICY_BITMAP &&
1296 s.consistency_policy != CONSISTENCY_POLICY_JOURNAL) {
1297 pr_err("--bitmap is not compatible with consistency policy: %s\n",
1298 map_num(consistency_policies, s.consistency_policy));
1299 exit(2);
1300 }
1301 }
1302
1303 if (!mode && devs_found) {
1304 mode = MISC;
1305 devmode = 'Q';
1306 if (devlist->disposition == 0)
1307 devlist->disposition = devmode;
1308 }
1309 if (!mode) {
1310 fputs(Usage, stderr);
1311 exit(2);
1312 }
1313
1314 if (symlinks) {
1315 struct createinfo *ci = conf_get_create_info();
1316
1317 if (strcasecmp(symlinks, "yes") == 0)
1318 ci->symlinks = 1;
1319 else if (strcasecmp(symlinks, "no") == 0)
1320 ci->symlinks = 0;
1321 else {
1322 pr_err("option --symlinks must be 'no' or 'yes'\n");
1323 exit(2);
1324 }
1325 }
1326 /* Ok, got the option parsing out of the way
1327 * hopefully it's mostly right but there might be some stuff
1328 * missing
1329 *
1330 * That is mostly checked in the per-mode stuff but...
1331 *
1332 * For @,B,C and A without -s, the first device listed must be
1333 * an md device. We check that here and open it.
1334 */
1335
1336 if (mode == MANAGE || mode == BUILD || mode == CREATE ||
1337 mode == GROW || (mode == ASSEMBLE && ! c.scan)) {
1338 if (devs_found < 1) {
1339 pr_err("an md device must be given in this mode\n");
1340 exit(2);
1341 }
1342 if ((int)ident.super_minor == -2 && c.autof) {
1343 pr_err("--super-minor=dev is incompatible with --auto\n");
1344 exit(2);
1345 }
1346 if (mode == MANAGE || mode == GROW) {
1347 mdfd = open_mddev(devlist->devname, 1);
1348 if (mdfd < 0)
1349 exit(1);
1350 } else
1351 /* non-existent device is OK */
1352 mdfd = open_mddev(devlist->devname, 0);
1353 if (mdfd == -2) {
1354 pr_err("device %s exists but is not an md array.\n", devlist->devname);
1355 exit(1);
1356 }
1357 if ((int)ident.super_minor == -2) {
1358 struct stat stb;
1359 if (mdfd < 0) {
1360 pr_err("--super-minor=dev given, and listed device %s doesn't exist.\n",
1361 devlist->devname);
1362 exit(1);
1363 }
1364 fstat(mdfd, &stb);
1365 ident.super_minor = minor(stb.st_rdev);
1366 }
1367 if (mdfd >= 0 && mode != MANAGE && mode != GROW) {
1368 /* We don't really want this open yet, we just might
1369 * have wanted to check some things
1370 */
1371 close(mdfd);
1372 mdfd = -1;
1373 }
1374 }
1375
1376 if (s.raiddisks) {
1377 if (s.raiddisks == 1 && !c.force && s.level != LEVEL_FAULTY) {
1378 pr_err("'1' is an unusual number of drives for an array, so it is probably\n"
1379 " a mistake. If you really mean it you will need to specify --force before\n"
1380 " setting the number of drives.\n");
1381 exit(2);
1382 }
1383 }
1384
1385 if (c.homehost == NULL && c.require_homehost)
1386 c.homehost = conf_get_homehost(&c.require_homehost);
1387 if (c.homehost == NULL || strcasecmp(c.homehost, "<system>") == 0) {
1388 if (gethostname(sys_hostname, sizeof(sys_hostname)) == 0) {
1389 sys_hostname[sizeof(sys_hostname)-1] = 0;
1390 c.homehost = sys_hostname;
1391 }
1392 }
1393 if (c.homehost &&
1394 (!c.homehost[0] || strcasecmp(c.homehost, "<none>") == 0)) {
1395 c.homehost = NULL;
1396 c.require_homehost = 0;
1397 }
1398
1399 rv = 0;
1400
1401 set_hooks(); /* set hooks from libs */
1402
1403 if (c.homecluster == NULL && (c.nodes > 0)) {
1404 c.homecluster = conf_get_homecluster();
1405 if (c.homecluster == NULL)
1406 rv = get_cluster_name(&c.homecluster);
1407 if (rv) {
1408 pr_err("The md can't get cluster name\n");
1409 exit(1);
1410 }
1411 }
1412
1413 if (c.backup_file && data_offset != INVALID_SECTORS) {
1414 pr_err("--backup-file and --data-offset are incompatible\n");
1415 exit(2);
1416 }
1417
1418 if ((mode == MISC && devmode == 'E') ||
1419 (mode == MONITOR && spare_sharing == 0))
1420 /* Anyone may try this */;
1421 else if (geteuid() != 0) {
1422 pr_err("must be super-user to perform this action\n");
1423 exit(1);
1424 }
1425
1426 ident.autof = c.autof;
1427
1428 if (c.scan && c.verbose < 2)
1429 /* --scan implied --brief unless -vv */
1430 c.brief = 1;
1431
1432 switch(mode) {
1433 case MANAGE:
1434 /* readonly, add/remove, readwrite, runstop */
1435 if (c.readonly > 0)
1436 rv = Manage_ro(devlist->devname, mdfd, c.readonly);
1437 if (!rv && devs_found>1)
1438 rv = Manage_subdevs(devlist->devname, mdfd,
1439 devlist->next, c.verbose, c.test,
1440 c.update, c.force);
1441 if (!rv && c.readonly < 0)
1442 rv = Manage_ro(devlist->devname, mdfd, c.readonly);
1443 if (!rv && c.runstop > 0)
1444 rv = Manage_run(devlist->devname, mdfd, &c);
1445 if (!rv && c.runstop < 0)
1446 rv = Manage_stop(devlist->devname, mdfd, c.verbose, 0);
1447 break;
1448 case ASSEMBLE:
1449 if (devs_found == 1 && ident.uuid_set == 0 &&
1450 ident.super_minor == UnSet && ident.name[0] == 0 &&
1451 !c.scan ) {
1452 /* Only a device has been given, so get details from config file */
1453 struct mddev_ident *array_ident = conf_get_ident(devlist->devname);
1454 if (array_ident == NULL) {
1455 pr_err("%s not identified in config file.\n",
1456 devlist->devname);
1457 rv |= 1;
1458 if (mdfd >= 0)
1459 close(mdfd);
1460 } else {
1461 if (array_ident->autof == 0)
1462 array_ident->autof = c.autof;
1463 rv |= Assemble(ss, devlist->devname, array_ident,
1464 NULL, &c);
1465 }
1466 } else if (!c.scan)
1467 rv = Assemble(ss, devlist->devname, &ident,
1468 devlist->next, &c);
1469 else if (devs_found > 0) {
1470 if (c.update && devs_found > 1) {
1471 pr_err("can only update a single array at a time\n");
1472 exit(1);
1473 }
1474 if (c.backup_file && devs_found > 1) {
1475 pr_err("can only assemble a single array when providing a backup file.\n");
1476 exit(1);
1477 }
1478 for (dv = devlist ; dv ; dv=dv->next) {
1479 struct mddev_ident *array_ident = conf_get_ident(dv->devname);
1480 if (array_ident == NULL) {
1481 pr_err("%s not identified in config file.\n",
1482 dv->devname);
1483 rv |= 1;
1484 continue;
1485 }
1486 if (array_ident->autof == 0)
1487 array_ident->autof = c.autof;
1488 rv |= Assemble(ss, dv->devname, array_ident,
1489 NULL, &c);
1490 }
1491 } else {
1492 if (c.update) {
1493 pr_err("--update not meaningful with a --scan assembly.\n");
1494 exit(1);
1495 }
1496 if (c.backup_file) {
1497 pr_err("--backup_file not meaningful with a --scan assembly.\n");
1498 exit(1);
1499 }
1500 rv = scan_assemble(ss, &c, &ident);
1501 }
1502
1503 break;
1504 case BUILD:
1505 if (c.delay == 0)
1506 c.delay = DEFAULT_BITMAP_DELAY;
1507 if (s.write_behind && !s.bitmap_file) {
1508 pr_err("write-behind mode requires a bitmap.\n");
1509 rv = 1;
1510 break;
1511 }
1512 if (s.raiddisks == 0) {
1513 pr_err("no raid-devices specified.\n");
1514 rv = 1;
1515 break;
1516 }
1517
1518 if (s.bitmap_file) {
1519 if (strcmp(s.bitmap_file, "internal") == 0 ||
1520 strcmp(s.bitmap_file, "clustered") == 0) {
1521 pr_err("'internal' and 'clustered' bitmaps not supported with --build\n");
1522 rv |= 1;
1523 break;
1524 }
1525 }
1526 rv = Build(devlist->devname, devlist->next, &s, &c);
1527 break;
1528 case CREATE:
1529 if (c.delay == 0)
1530 c.delay = DEFAULT_BITMAP_DELAY;
1531
1532 if (c.nodes) {
1533 if (!s.bitmap_file ||
1534 strcmp(s.bitmap_file, "clustered") != 0) {
1535 pr_err("--nodes argument only compatible with --bitmap=clustered\n");
1536 rv = 1;
1537 break;
1538 }
1539
1540 if (s.level != 1) {
1541 pr_err("--bitmap=clustered is currently supported with RAID mirror only\n");
1542 rv = 1;
1543 break;
1544 }
1545 }
1546
1547 if (s.write_behind && !s.bitmap_file) {
1548 pr_err("write-behind mode requires a bitmap.\n");
1549 rv = 1;
1550 break;
1551 }
1552 if (s.raiddisks == 0) {
1553 pr_err("no raid-devices specified.\n");
1554 rv = 1;
1555 break;
1556 }
1557
1558 rv = Create(ss, devlist->devname,
1559 ident.name, ident.uuid_set ? ident.uuid : NULL,
1560 devs_found-1, devlist->next,
1561 &s, &c, data_offset);
1562 break;
1563 case MISC:
1564 if (devmode == 'E') {
1565 if (devlist == NULL && !c.scan) {
1566 pr_err("No devices to examine\n");
1567 exit(2);
1568 }
1569 if (devlist == NULL)
1570 devlist = conf_get_devs();
1571 if (devlist == NULL) {
1572 pr_err("No devices listed in %s\n", configfile?configfile:DefaultConfFile);
1573 exit(1);
1574 }
1575 rv = Examine(devlist, &c, ss);
1576 } else if (devmode == DetailPlatform) {
1577 rv = Detail_Platform(ss ? ss->ss : NULL, ss ? c.scan : 1,
1578 c.verbose, c.export,
1579 devlist ? devlist->devname : NULL);
1580 } else if (devlist == NULL) {
1581 if (devmode == 'S' && c.scan)
1582 rv = stop_scan(c.verbose);
1583 else if ((devmode == 'D' || devmode == Waitclean) &&
1584 c.scan)
1585 rv = misc_scan(devmode, &c);
1586 else if (devmode == UdevRules)
1587 rv = Write_rules(udev_filename);
1588 else {
1589 pr_err("No devices given.\n");
1590 exit(2);
1591 }
1592 } else
1593 rv = misc_list(devlist, &ident, dump_directory, ss, &c);
1594 break;
1595 case MONITOR:
1596 if (!devlist && !c.scan) {
1597 pr_err("Cannot monitor: need --scan or at least one device\n");
1598 rv = 1;
1599 break;
1600 }
1601 if (pidfile && !daemonise) {
1602 pr_err("Cannot write a pid file when not in daemon mode\n");
1603 rv = 1;
1604 break;
1605 }
1606 if (c.delay == 0) {
1607 if (get_linux_version() > 2006016)
1608 /* mdstat responds to poll */
1609 c.delay = 1000;
1610 else
1611 c.delay = 60;
1612 }
1613 rv= Monitor(devlist, mailaddr, program,
1614 &c, daemonise, oneshot,
1615 dosyslog, pidfile, increments,
1616 spare_sharing);
1617 break;
1618
1619 case GROW:
1620 if (array_size > 0) {
1621 /* alway impose array size first, independent of
1622 * anything else
1623 * Do not allow level or raid_disks changes at the
1624 * same time as that can be irreversibly destructive.
1625 */
1626 struct mdinfo sra;
1627 int err;
1628 if (s.raiddisks || s.level != UnSet) {
1629 pr_err("cannot change array size in same operation as changing raiddisks or level.\n"
1630 " Change size first, then check that data is still intact.\n");
1631 rv = 1;
1632 break;
1633 }
1634 sysfs_init(&sra, mdfd, NULL);
1635 if (array_size == MAX_SIZE)
1636 err = sysfs_set_str(&sra, NULL, "array_size", "default");
1637 else
1638 err = sysfs_set_num(&sra, NULL, "array_size", array_size / 2);
1639 if (err < 0) {
1640 if (errno == E2BIG)
1641 pr_err("--array-size setting is too large.\n");
1642 else
1643 pr_err("current kernel does not support setting --array-size\n");
1644 rv = 1;
1645 break;
1646 }
1647 }
1648 if (devs_found > 1 && s.raiddisks == 0 && s.level == UnSet) {
1649 /* must be '-a'. */
1650 if (s.size > 0 || s.chunk ||
1651 s.layout_str || s.bitmap_file) {
1652 pr_err("--add cannot be used with other geometry changes in --grow mode\n");
1653 rv = 1;
1654 break;
1655 }
1656 for (dv=devlist->next; dv ; dv=dv->next) {
1657 rv = Grow_Add_device(devlist->devname, mdfd,
1658 dv->devname);
1659 if (rv)
1660 break;
1661 }
1662 } else if (s.bitmap_file) {
1663 if (s.size > 0 || s.raiddisks || s.chunk ||
1664 s.layout_str || devs_found > 1) {
1665 pr_err("--bitmap changes cannot be used with other geometry changes in --grow mode\n");
1666 rv = 1;
1667 break;
1668 }
1669 if (c.delay == 0)
1670 c.delay = DEFAULT_BITMAP_DELAY;
1671 rv = Grow_addbitmap(devlist->devname, mdfd, &c, &s);
1672 } else if (grow_continue)
1673 rv = Grow_continue_command(devlist->devname,
1674 mdfd, c.backup_file,
1675 c.verbose);
1676 else if (s.size > 0 || s.raiddisks || s.layout_str ||
1677 s.chunk != 0 || s.level != UnSet ||
1678 data_offset != INVALID_SECTORS) {
1679 rv = Grow_reshape(devlist->devname, mdfd,
1680 devlist->next,
1681 data_offset, &c, &s);
1682 } else if (array_size == 0)
1683 pr_err("no changes to --grow\n");
1684 break;
1685 case INCREMENTAL:
1686 if (rebuild_map) {
1687 RebuildMap();
1688 }
1689 if (c.scan) {
1690 rv = 1;
1691 if (devlist) {
1692 pr_err("In --incremental mode, a device cannot be given with --scan.\n");
1693 break;
1694 }
1695 if (c.runstop <= 0) {
1696 pr_err("--incremental --scan meaningless without --run.\n");
1697 break;
1698 }
1699 if (devmode == 'f') {
1700 pr_err("--incremental --scan --fail not supported.\n");
1701 break;
1702 }
1703 rv = IncrementalScan(&c, NULL);
1704 }
1705 if (!devlist) {
1706 if (!rebuild_map && !c.scan) {
1707 pr_err("--incremental requires a device.\n");
1708 rv = 1;
1709 }
1710 break;
1711 }
1712 if (devmode == 'f') {
1713 if (devlist->next) {
1714 pr_err("'--incremental --fail' can only handle one device.\n");
1715 rv = 1;
1716 break;
1717 }
1718 rv = IncrementalRemove(devlist->devname, remove_path,
1719 c.verbose);
1720 } else
1721 rv = Incremental(devlist, &c, ss);
1722 break;
1723 case AUTODETECT:
1724 autodetect();
1725 break;
1726 }
1727 exit(rv);
1728 }
1729
1730 static int scan_assemble(struct supertype *ss,
1731 struct context *c,
1732 struct mddev_ident *ident)
1733 {
1734 struct mddev_ident *a, *array_list = conf_get_ident(NULL);
1735 struct mddev_dev *devlist = conf_get_devs();
1736 struct map_ent *map = NULL;
1737 int cnt = 0;
1738 int rv = 0;
1739 int failures, successes;
1740
1741 if (conf_verify_devnames(array_list)) {
1742 pr_err("Duplicate MD device names in conf file were found.\n");
1743 return 1;
1744 }
1745 if (devlist == NULL) {
1746 pr_err("No devices listed in conf file were found.\n");
1747 return 1;
1748 }
1749 for (a = array_list; a ; a = a->next) {
1750 a->assembled = 0;
1751 if (a->autof == 0)
1752 a->autof = c->autof;
1753 }
1754 if (map_lock(&map))
1755 pr_err("failed to get exclusive lock on mapfile\n");
1756 do {
1757 failures = 0;
1758 successes = 0;
1759 rv = 0;
1760 for (a = array_list; a ; a = a->next) {
1761 int r;
1762 if (a->assembled)
1763 continue;
1764 if (a->devname &&
1765 strcasecmp(a->devname, "<ignore>") == 0)
1766 continue;
1767
1768 r = Assemble(ss, a->devname,
1769 a, NULL, c);
1770 if (r == 0) {
1771 a->assembled = 1;
1772 successes++;
1773 } else
1774 failures++;
1775 rv |= r;
1776 cnt++;
1777 }
1778 } while (failures && successes);
1779 if (c->homehost && cnt == 0) {
1780 /* Maybe we can auto-assemble something.
1781 * Repeatedly call Assemble in auto-assemble mode
1782 * until it fails
1783 */
1784 int rv2;
1785 int acnt;
1786 ident->autof = c->autof;
1787 do {
1788 struct mddev_dev *devlist = conf_get_devs();
1789 acnt = 0;
1790 do {
1791 rv2 = Assemble(ss, NULL,
1792 ident,
1793 devlist, c);
1794 if (rv2 == 0) {
1795 cnt++;
1796 acnt++;
1797 }
1798 } while (rv2 != 2);
1799 /* Incase there are stacked devices, we need to go around again */
1800 } while (acnt);
1801 if (cnt == 0 && rv == 0) {
1802 pr_err("No arrays found in config file or automatically\n");
1803 rv = 1;
1804 } else if (cnt)
1805 rv = 0;
1806 } else if (cnt == 0 && rv == 0) {
1807 pr_err("No arrays found in config file\n");
1808 rv = 1;
1809 }
1810 map_unlock(&map);
1811 return rv;
1812 }
1813
1814 static int misc_scan(char devmode, struct context *c)
1815 {
1816 /* apply --detail or --wait-clean to
1817 * all devices in /proc/mdstat
1818 */
1819 struct mdstat_ent *ms = mdstat_read(0, 1);
1820 struct mdstat_ent *e;
1821 struct map_ent *map = NULL;
1822 int members;
1823 int rv = 0;
1824
1825 for (members = 0; members <= 1; members++) {
1826 for (e=ms ; e ; e=e->next) {
1827 char *name = NULL;
1828 struct map_ent *me;
1829 struct stat stb;
1830 int member = e->metadata_version &&
1831 strncmp(e->metadata_version,
1832 "external:/", 10) == 0;
1833 if (members != member)
1834 continue;
1835 me = map_by_devnm(&map, e->devnm);
1836 if (me && me->path
1837 && strcmp(me->path, "/unknown") != 0)
1838 name = me->path;
1839 if (name == NULL || stat(name, &stb) != 0)
1840 name = get_md_name(e->devnm);
1841
1842 if (!name) {
1843 pr_err("cannot find device file for %s\n",
1844 e->devnm);
1845 continue;
1846 }
1847 if (devmode == 'D')
1848 rv |= Detail(name, c);
1849 else
1850 rv |= WaitClean(name, -1, c->verbose);
1851 put_md_name(name);
1852 }
1853 }
1854 free_mdstat(ms);
1855 return rv;
1856 }
1857
1858 static int stop_scan(int verbose)
1859 {
1860 /* apply --stop to all devices in /proc/mdstat */
1861 /* Due to possible stacking of devices, repeat until
1862 * nothing more can be stopped
1863 */
1864 int progress=1, err;
1865 int last = 0;
1866 int rv = 0;
1867 do {
1868 struct mdstat_ent *ms = mdstat_read(0, 0);
1869 struct mdstat_ent *e;
1870
1871 if (!progress) last = 1;
1872 progress = 0; err = 0;
1873 for (e=ms ; e ; e=e->next) {
1874 char *name = get_md_name(e->devnm);
1875 int mdfd;
1876
1877 if (!name) {
1878 pr_err("cannot find device file for %s\n",
1879 e->devnm);
1880 continue;
1881 }
1882 mdfd = open_mddev(name, 1);
1883 if (mdfd >= 0) {
1884 if (Manage_stop(name, mdfd, verbose, !last))
1885 err = 1;
1886 else
1887 progress = 1;
1888 close(mdfd);
1889 }
1890
1891 put_md_name(name);
1892 }
1893 free_mdstat(ms);
1894 } while (!last && err);
1895 if (err)
1896 rv |= 1;
1897 return rv;
1898 }
1899
1900 static int misc_list(struct mddev_dev *devlist,
1901 struct mddev_ident *ident,
1902 char *dump_directory,
1903 struct supertype *ss, struct context *c)
1904 {
1905 struct mddev_dev *dv;
1906 int rv = 0;
1907
1908 for (dv=devlist ; dv; dv=(rv & 16) ? NULL : dv->next) {
1909 int mdfd;
1910
1911 switch(dv->disposition) {
1912 case 'D':
1913 rv |= Detail(dv->devname, c);
1914 continue;
1915 case KillOpt: /* Zero superblock */
1916 if (ss)
1917 rv |= Kill(dv->devname, ss, c->force, c->verbose,0);
1918 else {
1919 int v = c->verbose;
1920 do {
1921 rv |= Kill(dv->devname, NULL, c->force, v, 0);
1922 v = -1;
1923 } while (rv == 0);
1924 rv &= ~2;
1925 }
1926 continue;
1927 case 'Q':
1928 rv |= Query(dv->devname); continue;
1929 case 'X':
1930 rv |= ExamineBitmap(dv->devname, c->brief, ss); continue;
1931 case ExamineBB:
1932 rv |= ExamineBadblocks(dv->devname, c->brief, ss); continue;
1933 case 'W':
1934 case WaitOpt:
1935 rv |= Wait(dv->devname); continue;
1936 case Waitclean:
1937 rv |= WaitClean(dv->devname, -1, c->verbose); continue;
1938 case KillSubarray:
1939 rv |= Kill_subarray(dv->devname, c->subarray, c->verbose);
1940 continue;
1941 case UpdateSubarray:
1942 if (c->update == NULL) {
1943 pr_err("-U/--update must be specified with --update-subarray\n");
1944 rv |= 1;
1945 continue;
1946 }
1947 rv |= Update_subarray(dv->devname, c->subarray,
1948 c->update, ident, c->verbose);
1949 continue;
1950 case Dump:
1951 rv |= Dump_metadata(dv->devname, dump_directory, c, ss);
1952 continue;
1953 case Restore:
1954 rv |= Restore_metadata(dv->devname, dump_directory, c, ss,
1955 (dv == devlist && dv->next == NULL));
1956 continue;
1957 case Action:
1958 rv |= SetAction(dv->devname, c->action);
1959 continue;
1960 }
1961 switch(dv->devname[0] == '/') {
1962 case 0:
1963 mdfd = open_dev(dv->devname);
1964 if (mdfd >= 0) break;
1965 case 1:
1966 mdfd = open_mddev(dv->devname, 1);
1967 }
1968 if (mdfd>=0) {
1969 switch(dv->disposition) {
1970 case 'R':
1971 c->runstop = 1;
1972 rv |= Manage_run(dv->devname, mdfd, c); break;
1973 case 'S':
1974 rv |= Manage_stop(dv->devname, mdfd, c->verbose, 0); break;
1975 case 'o':
1976 rv |= Manage_ro(dv->devname, mdfd, 1); break;
1977 case 'w':
1978 rv |= Manage_ro(dv->devname, mdfd, -1); break;
1979 }
1980 close(mdfd);
1981 } else
1982 rv |= 1;
1983 }
1984 return rv;
1985 }
1986
1987 int SetAction(char *dev, char *action)
1988 {
1989 int fd = open(dev, O_RDONLY);
1990 struct mdinfo mdi;
1991 if (fd < 0) {
1992 pr_err("Couldn't open %s: %s\n", dev, strerror(errno));
1993 return 1;
1994 }
1995 sysfs_init(&mdi, fd, NULL);
1996 close(fd);
1997 if (!mdi.sys_name[0]) {
1998 pr_err("%s is no an md array\n", dev);
1999 return 1;
2000 }
2001
2002 if (sysfs_set_str(&mdi, NULL, "sync_action", action) < 0) {
2003 pr_err("Count not set action for %s to %s: %s\n",
2004 dev, action, strerror(errno));
2005 return 1;
2006 }
2007 return 0;
2008 }