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