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