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