]> git.ipfire.org Git - thirdparty/mdadm.git/blob - mdadm.c
Generic support for --consistency-policy and PPL
[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, "metadata") == 0)
773 continue;
774 if (strcmp(c.update, "revert-reshape") == 0)
775 continue;
776 if (strcmp(c.update, "byteorder")==0) {
777 if (ss) {
778 pr_err("must not set metadata type with --update=byteorder.\n");
779 exit(2);
780 }
781 for(i=0; !ss && superlist[i]; i++)
782 ss = superlist[i]->match_metadata_desc(
783 "0.swap");
784 if (!ss) {
785 pr_err("INTERNAL ERROR cannot find 0.swap\n");
786 exit(2);
787 }
788
789 continue;
790 }
791 if (strcmp(c.update,"?") == 0 ||
792 strcmp(c.update, "help") == 0) {
793 outf = stdout;
794 fprintf(outf, "%s: ", Name);
795 } else {
796 outf = stderr;
797 fprintf(outf,
798 "%s: '--update=%s' is invalid. ",
799 Name, c.update);
800 }
801 fprintf(outf, "Valid --update options are:\n"
802 " 'sparc2.2', 'super-minor', 'uuid', 'name', 'nodes', 'resync',\n"
803 " 'summaries', 'homehost', 'home-cluster', 'byteorder', 'devicesize',\n"
804 " 'no-bitmap', 'metadata', 'revert-reshape'\n"
805 " 'bbl', 'no-bbl', 'force-no-bbl'\n"
806 );
807 exit(outf == stdout ? 0 : 2);
808
809 case O(MANAGE,'U'):
810 /* update=devicesize is allowed with --re-add */
811 if (devmode != 'A') {
812 pr_err("--update in Manage mode only allowed with --re-add.\n");
813 exit(1);
814 }
815 if (c.update) {
816 pr_err("Can only update one aspect of superblock, both %s and %s given.\n",
817 c.update, optarg);
818 exit(2);
819 }
820 c.update = optarg;
821 if (strcmp(c.update, "devicesize") != 0 &&
822 strcmp(c.update, "bbl") != 0 &&
823 strcmp(c.update, "force-no-bbl") != 0 &&
824 strcmp(c.update, "no-bbl") != 0) {
825 pr_err("only 'devicesize', 'bbl', 'no-bbl', and 'force-no-bbl' can be updated with --re-add\n");
826 exit(2);
827 }
828 continue;
829
830 case O(INCREMENTAL,NoDegraded):
831 pr_err("--no-degraded is deprecated in Incremental mode\n");
832 case O(ASSEMBLE,NoDegraded): /* --no-degraded */
833 c.runstop = -1; /* --stop isn't allowed for --assemble,
834 * so we overload slightly */
835 continue;
836
837 case O(ASSEMBLE,'c'):
838 case O(ASSEMBLE,ConfigFile):
839 case O(INCREMENTAL, 'c'):
840 case O(INCREMENTAL, ConfigFile):
841 case O(MISC, 'c'):
842 case O(MISC, ConfigFile):
843 case O(MONITOR,'c'):
844 case O(MONITOR,ConfigFile):
845 case O(CREATE,ConfigFile):
846 if (configfile) {
847 pr_err("configfile cannot be set twice. Second value is %s.\n", optarg);
848 exit(2);
849 }
850 configfile = optarg;
851 set_conffile(configfile);
852 /* FIXME possibly check that config file exists. Even parse it */
853 continue;
854 case O(ASSEMBLE,'s'): /* scan */
855 case O(MISC,'s'):
856 case O(MONITOR,'s'):
857 case O(INCREMENTAL,'s'):
858 c.scan = 1;
859 continue;
860
861 case O(MONITOR,'m'): /* mail address */
862 case O(MONITOR,EMail):
863 if (mailaddr)
864 pr_err("only specify one mailaddress. %s ignored.\n",
865 optarg);
866 else
867 mailaddr = optarg;
868 continue;
869
870 case O(MONITOR,'p'): /* alert program */
871 case O(MONITOR,ProgramOpt): /* alert program */
872 if (program)
873 pr_err("only specify one alter program. %s ignored.\n",
874 optarg);
875 else
876 program = optarg;
877 continue;
878
879 case O(MONITOR,'r'): /* rebuild increments */
880 case O(MONITOR,Increment):
881 increments = atoi(optarg);
882 if (increments > 99 || increments < 1) {
883 pr_err("please specify positive integer between 1 and 99 as rebuild increments.\n");
884 exit(2);
885 }
886 continue;
887
888 case O(MONITOR,'d'): /* delay in seconds */
889 case O(GROW, 'd'):
890 case O(BUILD,'d'): /* delay for bitmap updates */
891 case O(CREATE,'d'):
892 if (c.delay)
893 pr_err("only specify delay once. %s ignored.\n",
894 optarg);
895 else {
896 c.delay = parse_num(optarg);
897 if (c.delay < 1) {
898 pr_err("invalid delay: %s\n",
899 optarg);
900 exit(2);
901 }
902 }
903 continue;
904 case O(MONITOR,'f'): /* daemonise */
905 case O(MONITOR,Fork):
906 daemonise = 1;
907 continue;
908 case O(MONITOR,'i'): /* pid */
909 if (pidfile)
910 pr_err("only specify one pid file. %s ignored.\n",
911 optarg);
912 else
913 pidfile = optarg;
914 continue;
915 case O(MONITOR,'1'): /* oneshot */
916 oneshot = 1;
917 spare_sharing = 0;
918 continue;
919 case O(MONITOR,'t'): /* test */
920 c.test = 1;
921 continue;
922 case O(MONITOR,'y'): /* log messages to syslog */
923 openlog("mdadm", LOG_PID, SYSLOG_FACILITY);
924 dosyslog = 1;
925 continue;
926 case O(MONITOR, NoSharing):
927 spare_sharing = 0;
928 continue;
929
930 /* now the general management options. Some are applicable
931 * to other modes. None have arguments.
932 */
933 case O(GROW,'a'):
934 case O(GROW,Add):
935 case O(MANAGE,'a'):
936 case O(MANAGE,Add): /* add a drive */
937 devmode = 'a';
938 continue;
939 case O(MANAGE,AddSpare): /* add drive - never re-add */
940 devmode = 'S';
941 continue;
942 case O(MANAGE,AddJournal): /* add journal */
943 if (s.journaldisks && (s.level < 4 || s.level > 6)) {
944 pr_err("--add-journal is only supported for RAID level 4/5/6.\n");
945 exit(2);
946 }
947 devmode = 'j';
948 continue;
949 case O(MANAGE,ReAdd):
950 devmode = 'A';
951 continue;
952 case O(MANAGE,'r'): /* remove a drive */
953 case O(MANAGE,Remove):
954 devmode = 'r';
955 continue;
956 case O(MANAGE,'f'): /* set faulty */
957 case O(MANAGE,Fail):
958 case O(INCREMENTAL,'f'):
959 case O(INCREMENTAL,Remove):
960 case O(INCREMENTAL,Fail): /* r for incremental is taken, use f
961 * even though we will both fail and
962 * remove the device */
963 devmode = 'f';
964 continue;
965 case O(MANAGE, ClusterConfirm):
966 devmode = 'c';
967 continue;
968 case O(MANAGE,Replace):
969 /* Mark these devices for replacement */
970 devmode = 'R';
971 continue;
972 case O(MANAGE,With):
973 /* These are the replacements to use */
974 if (devmode != 'R') {
975 pr_err("--with must follow --replace\n");
976 exit(2);
977 }
978 devmode = 'W';
979 continue;
980 case O(INCREMENTAL,'R'):
981 case O(MANAGE,'R'):
982 case O(ASSEMBLE,'R'):
983 case O(BUILD,'R'):
984 case O(CREATE,'R'): /* Run the array */
985 if (c.runstop < 0) {
986 pr_err("Cannot both Stop and Run an array\n");
987 exit(2);
988 }
989 c.runstop = 1;
990 continue;
991 case O(MANAGE,'S'):
992 if (c.runstop > 0) {
993 pr_err("Cannot both Run and Stop an array\n");
994 exit(2);
995 }
996 c.runstop = -1;
997 continue;
998 case O(MANAGE,'t'):
999 c.test = 1;
1000 continue;
1001
1002 case O(MISC,'Q'):
1003 case O(MISC,'D'):
1004 case O(MISC,'E'):
1005 case O(MISC,KillOpt):
1006 case O(MISC,'R'):
1007 case O(MISC,'S'):
1008 case O(MISC,'X'):
1009 case O(MISC, ExamineBB):
1010 case O(MISC,'o'):
1011 case O(MISC,'w'):
1012 case O(MISC,'W'):
1013 case O(MISC, WaitOpt):
1014 case O(MISC, Waitclean):
1015 case O(MISC, DetailPlatform):
1016 case O(MISC, KillSubarray):
1017 case O(MISC, UpdateSubarray):
1018 case O(MISC, Dump):
1019 case O(MISC, Restore):
1020 case O(MISC ,Action):
1021 if (opt == KillSubarray || opt == UpdateSubarray) {
1022 if (c.subarray) {
1023 pr_err("subarray can only be specified once\n");
1024 exit(2);
1025 }
1026 c.subarray = optarg;
1027 }
1028 if (opt == Action) {
1029 if (c.action) {
1030 pr_err("Only one --action can be specified\n");
1031 exit(2);
1032 }
1033 if (strcmp(optarg, "idle") == 0 ||
1034 strcmp(optarg, "frozen") == 0 ||
1035 strcmp(optarg, "check") == 0 ||
1036 strcmp(optarg, "repair") == 0)
1037 c.action = optarg;
1038 else {
1039 pr_err("action must be one of idle, frozen, check, repair\n");
1040 exit(2);
1041 }
1042 }
1043 if (devmode && devmode != opt &&
1044 (devmode == 'E' ||
1045 (opt == 'E' && devmode != 'Q'))) {
1046 pr_err("--examine/-E cannot be given with ");
1047 if (devmode == 'E') {
1048 if (option_index >= 0)
1049 fprintf(stderr, "--%s\n",
1050 long_options[option_index].name);
1051 else
1052 fprintf(stderr, "-%c\n", opt);
1053 } else if (isalpha(devmode))
1054 fprintf(stderr, "-%c\n", devmode);
1055 else
1056 fprintf(stderr, "previous option\n");
1057 exit(2);
1058 }
1059 devmode = opt;
1060 if (opt == Dump || opt == Restore) {
1061 if (dump_directory != NULL) {
1062 pr_err("dump/restore directory specified twice: %s and %s\n",
1063 dump_directory, optarg);
1064 exit(2);
1065 }
1066 dump_directory = optarg;
1067 }
1068 continue;
1069 case O(MISC, UdevRules):
1070 if (devmode && devmode != opt) {
1071 pr_err("--udev-rules must be the only option.\n");
1072 } else {
1073 if (udev_filename)
1074 pr_err("only specify one udev rule filename. %s ignored.\n",
1075 optarg);
1076 else
1077 udev_filename = optarg;
1078 }
1079 devmode = opt;
1080 continue;
1081 case O(MISC,'t'):
1082 c.test = 1;
1083 continue;
1084
1085 case O(MISC, Sparc22):
1086 if (devmode != 'E') {
1087 pr_err("--sparc2.2 only allowed with --examine\n");
1088 exit(2);
1089 }
1090 c.SparcAdjust = 1;
1091 continue;
1092
1093 case O(ASSEMBLE,'b'): /* here we simply set the bitmap file */
1094 case O(ASSEMBLE,Bitmap):
1095 if (!optarg) {
1096 pr_err("bitmap file needed with -b in --assemble mode\n");
1097 exit(2);
1098 }
1099 if (strcmp(optarg, "internal") == 0 ||
1100 strcmp(optarg, "clustered") == 0) {
1101 pr_err("no need to specify --bitmap when assembling"
1102 " arrays with internal or clustered bitmap\n");
1103 continue;
1104 }
1105 bitmap_fd = open(optarg, O_RDWR);
1106 if (!*optarg || bitmap_fd < 0) {
1107 pr_err("cannot open bitmap file %s: %s\n", optarg, strerror(errno));
1108 exit(2);
1109 }
1110 ident.bitmap_fd = bitmap_fd; /* for Assemble */
1111 continue;
1112
1113 case O(ASSEMBLE, BackupFile):
1114 case O(GROW, BackupFile):
1115 /* Specify a file into which grow might place a backup,
1116 * or from which assemble might recover a backup
1117 */
1118 if (c.backup_file) {
1119 pr_err("backup file already specified, rejecting %s\n", optarg);
1120 exit(2);
1121 }
1122 c.backup_file = optarg;
1123 continue;
1124
1125 case O(GROW, Continue):
1126 /* Continue interrupted grow
1127 */
1128 grow_continue = 1;
1129 continue;
1130 case O(ASSEMBLE, InvalidBackup):
1131 /* Acknowledge that the backupfile is invalid, but ask
1132 * to continue anyway
1133 */
1134 c.invalid_backup = 1;
1135 continue;
1136
1137 case O(BUILD,'b'):
1138 case O(BUILD,Bitmap):
1139 case O(CREATE,'b'):
1140 case O(CREATE,Bitmap): /* here we create the bitmap */
1141 case O(GROW,'b'):
1142 case O(GROW,Bitmap):
1143 if (s.bitmap_file) {
1144 pr_err("bitmap cannot be set twice. Second value: %s.\n", optarg);
1145 exit(2);
1146 }
1147 if (strcmp(optarg, "internal") == 0 ||
1148 strcmp(optarg, "none") == 0 ||
1149 strchr(optarg, '/') != NULL) {
1150 s.bitmap_file = optarg;
1151 continue;
1152 }
1153 if (strcmp(optarg, "clustered") == 0) {
1154 s.bitmap_file = optarg;
1155 /* Set the default number of cluster nodes
1156 * to 4 if not already set by user
1157 */
1158 if (c.nodes < 1)
1159 c.nodes = 4;
1160 continue;
1161 }
1162 /* probable typo */
1163 pr_err("bitmap file must contain a '/', or be 'internal', or be 'clustered', or 'none'\n"
1164 " not '%s'\n", optarg);
1165 exit(2);
1166
1167 case O(GROW,BitmapChunk):
1168 case O(BUILD,BitmapChunk):
1169 case O(CREATE,BitmapChunk): /* bitmap chunksize */
1170 s.bitmap_chunk = parse_size(optarg);
1171 if (s.bitmap_chunk == 0 ||
1172 s.bitmap_chunk == INVALID_SECTORS ||
1173 s.bitmap_chunk & (s.bitmap_chunk - 1)) {
1174 pr_err("invalid bitmap chunksize: %s\n",
1175 optarg);
1176 exit(2);
1177 }
1178 s.bitmap_chunk = s.bitmap_chunk * 512;
1179 continue;
1180
1181 case O(GROW, WriteBehind):
1182 case O(BUILD, WriteBehind):
1183 case O(CREATE, WriteBehind): /* write-behind mode */
1184 s.write_behind = DEFAULT_MAX_WRITE_BEHIND;
1185 if (optarg) {
1186 s.write_behind = parse_num(optarg);
1187 if (s.write_behind < 0 ||
1188 s.write_behind > 16383) {
1189 pr_err("Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg);
1190 exit(2);
1191 }
1192 }
1193 continue;
1194
1195 case O(INCREMENTAL, 'r'):
1196 case O(INCREMENTAL, RebuildMapOpt):
1197 rebuild_map = 1;
1198 continue;
1199 case O(INCREMENTAL, IncrementalPath):
1200 remove_path = optarg;
1201 continue;
1202 case O(CREATE, WriteJournal):
1203 if (s.journaldisks) {
1204 pr_err("Please specify only one journal device for the array.\n");
1205 pr_err("Ignoring --write-journal %s...\n", optarg);
1206 continue;
1207 }
1208 dv = xmalloc(sizeof(*dv));
1209 dv->devname = optarg;
1210 dv->disposition = 'j'; /* WriteJournal */
1211 dv->used = 0;
1212 dv->next = NULL;
1213 *devlistend = dv;
1214 devlistend = &dv->next;
1215 devs_found++;
1216
1217 s.journaldisks = 1;
1218 continue;
1219 case O(CREATE, 'k'):
1220 s.consistency_policy = map_name(consistency_policies,
1221 optarg);
1222 if (s.consistency_policy == UnSet ||
1223 s.consistency_policy < CONSISTENCY_POLICY_RESYNC) {
1224 pr_err("Invalid consistency policy: %s\n",
1225 optarg);
1226 exit(2);
1227 }
1228 continue;
1229 }
1230 /* We have now processed all the valid options. Anything else is
1231 * an error
1232 */
1233 if (option_index > 0)
1234 pr_err(":option --%s not valid in %s mode\n",
1235 long_options[option_index].name,
1236 map_num(modes, mode));
1237 else
1238 pr_err("option -%c not valid in %s mode\n",
1239 opt, map_num(modes, mode));
1240 exit(2);
1241
1242 }
1243
1244 if (print_help) {
1245 char *help_text;
1246 if (print_help == 2)
1247 help_text = OptionHelp;
1248 else
1249 help_text = mode_help[mode];
1250 if (help_text == NULL)
1251 help_text = Help;
1252 fputs(help_text,stdout);
1253 exit(0);
1254 }
1255
1256 if (s.journaldisks) {
1257 if (s.level < 4 || s.level > 6) {
1258 pr_err("--write-journal is only supported for RAID level 4/5/6.\n");
1259 exit(2);
1260 }
1261 if (s.consistency_policy != UnSet &&
1262 s.consistency_policy != CONSISTENCY_POLICY_JOURNAL) {
1263 pr_err("--write-journal is not supported with consistency policy: %s\n",
1264 map_num(consistency_policies, s.consistency_policy));
1265 exit(2);
1266 }
1267 }
1268
1269 if (mode == CREATE && s.consistency_policy != UnSet) {
1270 if (s.level <= 0) {
1271 pr_err("--consistency-policy not meaningful with level %s.\n",
1272 map_num(pers, s.level));
1273 exit(2);
1274 } else if (s.consistency_policy == CONSISTENCY_POLICY_JOURNAL &&
1275 !s.journaldisks) {
1276 pr_err("--write-journal is required for consistency policy: %s\n",
1277 map_num(consistency_policies, s.consistency_policy));
1278 exit(2);
1279 } else if (s.consistency_policy == CONSISTENCY_POLICY_PPL &&
1280 s.level != 5) {
1281 pr_err("PPL consistency policy is only supported for RAID level 5.\n");
1282 exit(2);
1283 } else if (s.consistency_policy == CONSISTENCY_POLICY_BITMAP &&
1284 (!s.bitmap_file ||
1285 strcmp(s.bitmap_file, "none") == 0)) {
1286 pr_err("--bitmap is required for consistency policy: %s\n",
1287 map_num(consistency_policies, s.consistency_policy));
1288 exit(2);
1289 } else if (s.bitmap_file &&
1290 strcmp(s.bitmap_file, "none") != 0 &&
1291 s.consistency_policy != CONSISTENCY_POLICY_BITMAP &&
1292 s.consistency_policy != CONSISTENCY_POLICY_JOURNAL) {
1293 pr_err("--bitmap is not compatible with consistency policy: %s\n",
1294 map_num(consistency_policies, s.consistency_policy));
1295 exit(2);
1296 }
1297 }
1298
1299 if (!mode && devs_found) {
1300 mode = MISC;
1301 devmode = 'Q';
1302 if (devlist->disposition == 0)
1303 devlist->disposition = devmode;
1304 }
1305 if (!mode) {
1306 fputs(Usage, stderr);
1307 exit(2);
1308 }
1309
1310 if (symlinks) {
1311 struct createinfo *ci = conf_get_create_info();
1312
1313 if (strcasecmp(symlinks, "yes") == 0)
1314 ci->symlinks = 1;
1315 else if (strcasecmp(symlinks, "no") == 0)
1316 ci->symlinks = 0;
1317 else {
1318 pr_err("option --symlinks must be 'no' or 'yes'\n");
1319 exit(2);
1320 }
1321 }
1322 /* Ok, got the option parsing out of the way
1323 * hopefully it's mostly right but there might be some stuff
1324 * missing
1325 *
1326 * That is mostly checked in the per-mode stuff but...
1327 *
1328 * For @,B,C and A without -s, the first device listed must be
1329 * an md device. We check that here and open it.
1330 */
1331
1332 if (mode == MANAGE || mode == BUILD || mode == CREATE ||
1333 mode == GROW || (mode == ASSEMBLE && ! c.scan)) {
1334 if (devs_found < 1) {
1335 pr_err("an md device must be given in this mode\n");
1336 exit(2);
1337 }
1338 if ((int)ident.super_minor == -2 && c.autof) {
1339 pr_err("--super-minor=dev is incompatible with --auto\n");
1340 exit(2);
1341 }
1342 if (mode == MANAGE || mode == GROW) {
1343 mdfd = open_mddev(devlist->devname, 1);
1344 if (mdfd < 0)
1345 exit(1);
1346 } else
1347 /* non-existent device is OK */
1348 mdfd = open_mddev(devlist->devname, 0);
1349 if (mdfd == -2) {
1350 pr_err("device %s exists but is not an md array.\n", devlist->devname);
1351 exit(1);
1352 }
1353 if ((int)ident.super_minor == -2) {
1354 struct stat stb;
1355 if (mdfd < 0) {
1356 pr_err("--super-minor=dev given, and listed device %s doesn't exist.\n",
1357 devlist->devname);
1358 exit(1);
1359 }
1360 fstat(mdfd, &stb);
1361 ident.super_minor = minor(stb.st_rdev);
1362 }
1363 if (mdfd >= 0 && mode != MANAGE && mode != GROW) {
1364 /* We don't really want this open yet, we just might
1365 * have wanted to check some things
1366 */
1367 close(mdfd);
1368 mdfd = -1;
1369 }
1370 }
1371
1372 if (s.raiddisks) {
1373 if (s.raiddisks == 1 && !c.force && s.level != LEVEL_FAULTY) {
1374 pr_err("'1' is an unusual number of drives for an array, so it is probably\n"
1375 " a mistake. If you really mean it you will need to specify --force before\n"
1376 " setting the number of drives.\n");
1377 exit(2);
1378 }
1379 }
1380
1381 if (c.homehost == NULL && c.require_homehost)
1382 c.homehost = conf_get_homehost(&c.require_homehost);
1383 if (c.homehost == NULL || strcasecmp(c.homehost, "<system>") == 0) {
1384 if (gethostname(sys_hostname, sizeof(sys_hostname)) == 0) {
1385 sys_hostname[sizeof(sys_hostname)-1] = 0;
1386 c.homehost = sys_hostname;
1387 }
1388 }
1389 if (c.homehost &&
1390 (!c.homehost[0] || strcasecmp(c.homehost, "<none>") == 0)) {
1391 c.homehost = NULL;
1392 c.require_homehost = 0;
1393 }
1394
1395 rv = 0;
1396
1397 set_hooks(); /* set hooks from libs */
1398
1399 if (c.homecluster == NULL && (c.nodes > 0)) {
1400 c.homecluster = conf_get_homecluster();
1401 if (c.homecluster == NULL)
1402 rv = get_cluster_name(&c.homecluster);
1403 if (rv) {
1404 pr_err("The md can't get cluster name\n");
1405 exit(1);
1406 }
1407 }
1408
1409 if (c.backup_file && data_offset != INVALID_SECTORS) {
1410 pr_err("--backup-file and --data-offset are incompatible\n");
1411 exit(2);
1412 }
1413
1414 if ((mode == MISC && devmode == 'E') ||
1415 (mode == MONITOR && spare_sharing == 0))
1416 /* Anyone may try this */;
1417 else if (geteuid() != 0) {
1418 pr_err("must be super-user to perform this action\n");
1419 exit(1);
1420 }
1421
1422 ident.autof = c.autof;
1423
1424 if (c.scan && c.verbose < 2)
1425 /* --scan implied --brief unless -vv */
1426 c.brief = 1;
1427
1428 switch(mode) {
1429 case MANAGE:
1430 /* readonly, add/remove, readwrite, runstop */
1431 if (c.readonly > 0)
1432 rv = Manage_ro(devlist->devname, mdfd, c.readonly);
1433 if (!rv && devs_found>1)
1434 rv = Manage_subdevs(devlist->devname, mdfd,
1435 devlist->next, c.verbose, c.test,
1436 c.update, c.force);
1437 if (!rv && c.readonly < 0)
1438 rv = Manage_ro(devlist->devname, mdfd, c.readonly);
1439 if (!rv && c.runstop > 0)
1440 rv = Manage_run(devlist->devname, mdfd, &c);
1441 if (!rv && c.runstop < 0)
1442 rv = Manage_stop(devlist->devname, mdfd, c.verbose, 0);
1443 break;
1444 case ASSEMBLE:
1445 if (devs_found == 1 && ident.uuid_set == 0 &&
1446 ident.super_minor == UnSet && ident.name[0] == 0 &&
1447 !c.scan ) {
1448 /* Only a device has been given, so get details from config file */
1449 struct mddev_ident *array_ident = conf_get_ident(devlist->devname);
1450 if (array_ident == NULL) {
1451 pr_err("%s not identified in config file.\n",
1452 devlist->devname);
1453 rv |= 1;
1454 if (mdfd >= 0)
1455 close(mdfd);
1456 } else {
1457 if (array_ident->autof == 0)
1458 array_ident->autof = c.autof;
1459 rv |= Assemble(ss, devlist->devname, array_ident,
1460 NULL, &c);
1461 }
1462 } else if (!c.scan)
1463 rv = Assemble(ss, devlist->devname, &ident,
1464 devlist->next, &c);
1465 else if (devs_found > 0) {
1466 if (c.update && devs_found > 1) {
1467 pr_err("can only update a single array at a time\n");
1468 exit(1);
1469 }
1470 if (c.backup_file && devs_found > 1) {
1471 pr_err("can only assemble a single array when providing a backup file.\n");
1472 exit(1);
1473 }
1474 for (dv = devlist ; dv ; dv=dv->next) {
1475 struct mddev_ident *array_ident = conf_get_ident(dv->devname);
1476 if (array_ident == NULL) {
1477 pr_err("%s not identified in config file.\n",
1478 dv->devname);
1479 rv |= 1;
1480 continue;
1481 }
1482 if (array_ident->autof == 0)
1483 array_ident->autof = c.autof;
1484 rv |= Assemble(ss, dv->devname, array_ident,
1485 NULL, &c);
1486 }
1487 } else {
1488 if (c.update) {
1489 pr_err("--update not meaningful with a --scan assembly.\n");
1490 exit(1);
1491 }
1492 if (c.backup_file) {
1493 pr_err("--backup_file not meaningful with a --scan assembly.\n");
1494 exit(1);
1495 }
1496 rv = scan_assemble(ss, &c, &ident);
1497 }
1498
1499 break;
1500 case BUILD:
1501 if (c.delay == 0)
1502 c.delay = DEFAULT_BITMAP_DELAY;
1503 if (s.write_behind && !s.bitmap_file) {
1504 pr_err("write-behind mode requires a bitmap.\n");
1505 rv = 1;
1506 break;
1507 }
1508 if (s.raiddisks == 0) {
1509 pr_err("no raid-devices specified.\n");
1510 rv = 1;
1511 break;
1512 }
1513
1514 if (s.bitmap_file) {
1515 if (strcmp(s.bitmap_file, "internal") == 0 ||
1516 strcmp(s.bitmap_file, "clustered") == 0) {
1517 pr_err("'internal' and 'clustered' bitmaps not supported with --build\n");
1518 rv |= 1;
1519 break;
1520 }
1521 }
1522 rv = Build(devlist->devname, devlist->next, &s, &c);
1523 break;
1524 case CREATE:
1525 if (c.delay == 0)
1526 c.delay = DEFAULT_BITMAP_DELAY;
1527
1528 if (c.nodes) {
1529 if (!s.bitmap_file ||
1530 strcmp(s.bitmap_file, "clustered") != 0) {
1531 pr_err("--nodes argument only compatible with --bitmap=clustered\n");
1532 rv = 1;
1533 break;
1534 }
1535
1536 if (s.level != 1) {
1537 pr_err("--bitmap=clustered is currently supported with RAID mirror only\n");
1538 rv = 1;
1539 break;
1540 }
1541 }
1542
1543 if (s.write_behind && !s.bitmap_file) {
1544 pr_err("write-behind mode requires a bitmap.\n");
1545 rv = 1;
1546 break;
1547 }
1548 if (s.raiddisks == 0) {
1549 pr_err("no raid-devices specified.\n");
1550 rv = 1;
1551 break;
1552 }
1553
1554 rv = Create(ss, devlist->devname,
1555 ident.name, ident.uuid_set ? ident.uuid : NULL,
1556 devs_found-1, devlist->next,
1557 &s, &c, data_offset);
1558 break;
1559 case MISC:
1560 if (devmode == 'E') {
1561 if (devlist == NULL && !c.scan) {
1562 pr_err("No devices to examine\n");
1563 exit(2);
1564 }
1565 if (devlist == NULL)
1566 devlist = conf_get_devs();
1567 if (devlist == NULL) {
1568 pr_err("No devices listed in %s\n", configfile?configfile:DefaultConfFile);
1569 exit(1);
1570 }
1571 rv = Examine(devlist, &c, ss);
1572 } else if (devmode == DetailPlatform) {
1573 rv = Detail_Platform(ss ? ss->ss : NULL, ss ? c.scan : 1,
1574 c.verbose, c.export,
1575 devlist ? devlist->devname : NULL);
1576 } else if (devlist == NULL) {
1577 if (devmode == 'S' && c.scan)
1578 rv = stop_scan(c.verbose);
1579 else if ((devmode == 'D' || devmode == Waitclean) &&
1580 c.scan)
1581 rv = misc_scan(devmode, &c);
1582 else if (devmode == UdevRules)
1583 rv = Write_rules(udev_filename);
1584 else {
1585 pr_err("No devices given.\n");
1586 exit(2);
1587 }
1588 } else
1589 rv = misc_list(devlist, &ident, dump_directory, ss, &c);
1590 break;
1591 case MONITOR:
1592 if (!devlist && !c.scan) {
1593 pr_err("Cannot monitor: need --scan or at least one device\n");
1594 rv = 1;
1595 break;
1596 }
1597 if (pidfile && !daemonise) {
1598 pr_err("Cannot write a pid file when not in daemon mode\n");
1599 rv = 1;
1600 break;
1601 }
1602 if (c.delay == 0) {
1603 if (get_linux_version() > 2006016)
1604 /* mdstat responds to poll */
1605 c.delay = 1000;
1606 else
1607 c.delay = 60;
1608 }
1609 rv= Monitor(devlist, mailaddr, program,
1610 &c, daemonise, oneshot,
1611 dosyslog, pidfile, increments,
1612 spare_sharing);
1613 break;
1614
1615 case GROW:
1616 if (array_size > 0) {
1617 /* alway impose array size first, independent of
1618 * anything else
1619 * Do not allow level or raid_disks changes at the
1620 * same time as that can be irreversibly destructive.
1621 */
1622 struct mdinfo sra;
1623 int err;
1624 if (s.raiddisks || s.level != UnSet) {
1625 pr_err("cannot change array size in same operation as changing raiddisks or level.\n"
1626 " Change size first, then check that data is still intact.\n");
1627 rv = 1;
1628 break;
1629 }
1630 sysfs_init(&sra, mdfd, NULL);
1631 if (array_size == MAX_SIZE)
1632 err = sysfs_set_str(&sra, NULL, "array_size", "default");
1633 else
1634 err = sysfs_set_num(&sra, NULL, "array_size", array_size / 2);
1635 if (err < 0) {
1636 if (errno == E2BIG)
1637 pr_err("--array-size setting is too large.\n");
1638 else
1639 pr_err("current kernel does not support setting --array-size\n");
1640 rv = 1;
1641 break;
1642 }
1643 }
1644 if (devs_found > 1 && s.raiddisks == 0 && s.level == UnSet) {
1645 /* must be '-a'. */
1646 if (s.size > 0 || s.chunk ||
1647 s.layout_str || s.bitmap_file) {
1648 pr_err("--add cannot be used with other geometry changes in --grow mode\n");
1649 rv = 1;
1650 break;
1651 }
1652 for (dv=devlist->next; dv ; dv=dv->next) {
1653 rv = Grow_Add_device(devlist->devname, mdfd,
1654 dv->devname);
1655 if (rv)
1656 break;
1657 }
1658 } else if (s.bitmap_file) {
1659 if (s.size > 0 || s.raiddisks || s.chunk ||
1660 s.layout_str || devs_found > 1) {
1661 pr_err("--bitmap changes cannot be used with other geometry changes in --grow mode\n");
1662 rv = 1;
1663 break;
1664 }
1665 if (c.delay == 0)
1666 c.delay = DEFAULT_BITMAP_DELAY;
1667 rv = Grow_addbitmap(devlist->devname, mdfd, &c, &s);
1668 } else if (grow_continue)
1669 rv = Grow_continue_command(devlist->devname,
1670 mdfd, c.backup_file,
1671 c.verbose);
1672 else if (s.size > 0 || s.raiddisks || s.layout_str ||
1673 s.chunk != 0 || s.level != UnSet ||
1674 data_offset != INVALID_SECTORS) {
1675 rv = Grow_reshape(devlist->devname, mdfd,
1676 devlist->next,
1677 data_offset, &c, &s);
1678 } else if (array_size == 0)
1679 pr_err("no changes to --grow\n");
1680 break;
1681 case INCREMENTAL:
1682 if (rebuild_map) {
1683 RebuildMap();
1684 }
1685 if (c.scan) {
1686 rv = 1;
1687 if (devlist) {
1688 pr_err("In --incremental mode, a device cannot be given with --scan.\n");
1689 break;
1690 }
1691 if (c.runstop <= 0) {
1692 pr_err("--incremental --scan meaningless without --run.\n");
1693 break;
1694 }
1695 if (devmode == 'f') {
1696 pr_err("--incremental --scan --fail not supported.\n");
1697 break;
1698 }
1699 rv = IncrementalScan(&c, NULL);
1700 }
1701 if (!devlist) {
1702 if (!rebuild_map && !c.scan) {
1703 pr_err("--incremental requires a device.\n");
1704 rv = 1;
1705 }
1706 break;
1707 }
1708 if (devmode == 'f') {
1709 if (devlist->next) {
1710 pr_err("'--incremental --fail' can only handle one device.\n");
1711 rv = 1;
1712 break;
1713 }
1714 rv = IncrementalRemove(devlist->devname, remove_path,
1715 c.verbose);
1716 } else
1717 rv = Incremental(devlist, &c, ss);
1718 break;
1719 case AUTODETECT:
1720 autodetect();
1721 break;
1722 }
1723 exit(rv);
1724 }
1725
1726 static int scan_assemble(struct supertype *ss,
1727 struct context *c,
1728 struct mddev_ident *ident)
1729 {
1730 struct mddev_ident *a, *array_list = conf_get_ident(NULL);
1731 struct mddev_dev *devlist = conf_get_devs();
1732 struct map_ent *map = NULL;
1733 int cnt = 0;
1734 int rv = 0;
1735 int failures, successes;
1736
1737 if (conf_verify_devnames(array_list)) {
1738 pr_err("Duplicate MD device names in conf file were found.\n");
1739 return 1;
1740 }
1741 if (devlist == NULL) {
1742 pr_err("No devices listed in conf file were found.\n");
1743 return 1;
1744 }
1745 for (a = array_list; a ; a = a->next) {
1746 a->assembled = 0;
1747 if (a->autof == 0)
1748 a->autof = c->autof;
1749 }
1750 if (map_lock(&map))
1751 pr_err("failed to get exclusive lock on mapfile\n");
1752 do {
1753 failures = 0;
1754 successes = 0;
1755 rv = 0;
1756 for (a = array_list; a ; a = a->next) {
1757 int r;
1758 if (a->assembled)
1759 continue;
1760 if (a->devname &&
1761 strcasecmp(a->devname, "<ignore>") == 0)
1762 continue;
1763
1764 r = Assemble(ss, a->devname,
1765 a, NULL, c);
1766 if (r == 0) {
1767 a->assembled = 1;
1768 successes++;
1769 } else
1770 failures++;
1771 rv |= r;
1772 cnt++;
1773 }
1774 } while (failures && successes);
1775 if (c->homehost && cnt == 0) {
1776 /* Maybe we can auto-assemble something.
1777 * Repeatedly call Assemble in auto-assemble mode
1778 * until it fails
1779 */
1780 int rv2;
1781 int acnt;
1782 ident->autof = c->autof;
1783 do {
1784 struct mddev_dev *devlist = conf_get_devs();
1785 acnt = 0;
1786 do {
1787 rv2 = Assemble(ss, NULL,
1788 ident,
1789 devlist, c);
1790 if (rv2 == 0) {
1791 cnt++;
1792 acnt++;
1793 }
1794 } while (rv2 != 2);
1795 /* Incase there are stacked devices, we need to go around again */
1796 } while (acnt);
1797 if (cnt == 0 && rv == 0) {
1798 pr_err("No arrays found in config file or automatically\n");
1799 rv = 1;
1800 } else if (cnt)
1801 rv = 0;
1802 } else if (cnt == 0 && rv == 0) {
1803 pr_err("No arrays found in config file\n");
1804 rv = 1;
1805 }
1806 map_unlock(&map);
1807 return rv;
1808 }
1809
1810 static int misc_scan(char devmode, struct context *c)
1811 {
1812 /* apply --detail or --wait-clean to
1813 * all devices in /proc/mdstat
1814 */
1815 struct mdstat_ent *ms = mdstat_read(0, 1);
1816 struct mdstat_ent *e;
1817 struct map_ent *map = NULL;
1818 int members;
1819 int rv = 0;
1820
1821 for (members = 0; members <= 1; members++) {
1822 for (e=ms ; e ; e=e->next) {
1823 char *name = NULL;
1824 struct map_ent *me;
1825 struct stat stb;
1826 int member = e->metadata_version &&
1827 strncmp(e->metadata_version,
1828 "external:/", 10) == 0;
1829 if (members != member)
1830 continue;
1831 me = map_by_devnm(&map, e->devnm);
1832 if (me && me->path
1833 && strcmp(me->path, "/unknown") != 0)
1834 name = me->path;
1835 if (name == NULL || stat(name, &stb) != 0)
1836 name = get_md_name(e->devnm);
1837
1838 if (!name) {
1839 pr_err("cannot find device file for %s\n",
1840 e->devnm);
1841 continue;
1842 }
1843 if (devmode == 'D')
1844 rv |= Detail(name, c);
1845 else
1846 rv |= WaitClean(name, -1, c->verbose);
1847 put_md_name(name);
1848 }
1849 }
1850 free_mdstat(ms);
1851 return rv;
1852 }
1853
1854 static int stop_scan(int verbose)
1855 {
1856 /* apply --stop to all devices in /proc/mdstat */
1857 /* Due to possible stacking of devices, repeat until
1858 * nothing more can be stopped
1859 */
1860 int progress=1, err;
1861 int last = 0;
1862 int rv = 0;
1863 do {
1864 struct mdstat_ent *ms = mdstat_read(0, 0);
1865 struct mdstat_ent *e;
1866
1867 if (!progress) last = 1;
1868 progress = 0; err = 0;
1869 for (e=ms ; e ; e=e->next) {
1870 char *name = get_md_name(e->devnm);
1871 int mdfd;
1872
1873 if (!name) {
1874 pr_err("cannot find device file for %s\n",
1875 e->devnm);
1876 continue;
1877 }
1878 mdfd = open_mddev(name, 1);
1879 if (mdfd >= 0) {
1880 if (Manage_stop(name, mdfd, verbose, !last))
1881 err = 1;
1882 else
1883 progress = 1;
1884 close(mdfd);
1885 }
1886
1887 put_md_name(name);
1888 }
1889 free_mdstat(ms);
1890 } while (!last && err);
1891 if (err)
1892 rv |= 1;
1893 return rv;
1894 }
1895
1896 static int misc_list(struct mddev_dev *devlist,
1897 struct mddev_ident *ident,
1898 char *dump_directory,
1899 struct supertype *ss, struct context *c)
1900 {
1901 struct mddev_dev *dv;
1902 int rv = 0;
1903
1904 for (dv=devlist ; dv; dv=(rv & 16) ? NULL : dv->next) {
1905 int mdfd;
1906
1907 switch(dv->disposition) {
1908 case 'D':
1909 rv |= Detail(dv->devname, c);
1910 continue;
1911 case KillOpt: /* Zero superblock */
1912 if (ss)
1913 rv |= Kill(dv->devname, ss, c->force, c->verbose,0);
1914 else {
1915 int v = c->verbose;
1916 do {
1917 rv |= Kill(dv->devname, NULL, c->force, v, 0);
1918 v = -1;
1919 } while (rv == 0);
1920 rv &= ~2;
1921 }
1922 continue;
1923 case 'Q':
1924 rv |= Query(dv->devname); continue;
1925 case 'X':
1926 rv |= ExamineBitmap(dv->devname, c->brief, ss); continue;
1927 case ExamineBB:
1928 rv |= ExamineBadblocks(dv->devname, c->brief, ss); continue;
1929 case 'W':
1930 case WaitOpt:
1931 rv |= Wait(dv->devname); continue;
1932 case Waitclean:
1933 rv |= WaitClean(dv->devname, -1, c->verbose); continue;
1934 case KillSubarray:
1935 rv |= Kill_subarray(dv->devname, c->subarray, c->verbose);
1936 continue;
1937 case UpdateSubarray:
1938 if (c->update == NULL) {
1939 pr_err("-U/--update must be specified with --update-subarray\n");
1940 rv |= 1;
1941 continue;
1942 }
1943 rv |= Update_subarray(dv->devname, c->subarray,
1944 c->update, ident, c->verbose);
1945 continue;
1946 case Dump:
1947 rv |= Dump_metadata(dv->devname, dump_directory, c, ss);
1948 continue;
1949 case Restore:
1950 rv |= Restore_metadata(dv->devname, dump_directory, c, ss,
1951 (dv == devlist && dv->next == NULL));
1952 continue;
1953 case Action:
1954 rv |= SetAction(dv->devname, c->action);
1955 continue;
1956 }
1957 switch(dv->devname[0] == '/') {
1958 case 0:
1959 mdfd = open_dev(dv->devname);
1960 if (mdfd >= 0) break;
1961 case 1:
1962 mdfd = open_mddev(dv->devname, 1);
1963 }
1964 if (mdfd>=0) {
1965 switch(dv->disposition) {
1966 case 'R':
1967 c->runstop = 1;
1968 rv |= Manage_run(dv->devname, mdfd, c); break;
1969 case 'S':
1970 rv |= Manage_stop(dv->devname, mdfd, c->verbose, 0); break;
1971 case 'o':
1972 rv |= Manage_ro(dv->devname, mdfd, 1); break;
1973 case 'w':
1974 rv |= Manage_ro(dv->devname, mdfd, -1); break;
1975 }
1976 close(mdfd);
1977 } else
1978 rv |= 1;
1979 }
1980 return rv;
1981 }
1982
1983 int SetAction(char *dev, char *action)
1984 {
1985 int fd = open(dev, O_RDONLY);
1986 struct mdinfo mdi;
1987 if (fd < 0) {
1988 pr_err("Couldn't open %s: %s\n", dev, strerror(errno));
1989 return 1;
1990 }
1991 sysfs_init(&mdi, fd, NULL);
1992 close(fd);
1993 if (!mdi.sys_name[0]) {
1994 pr_err("%s is no an md array\n", dev);
1995 return 1;
1996 }
1997
1998 if (sysfs_set_str(&mdi, NULL, "sync_action", action) < 0) {
1999 pr_err("Count not set action for %s to %s: %s\n",
2000 dev, action, strerror(errno));
2001 return 1;
2002 }
2003 return 0;
2004 }