2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
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.
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.
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
22 * Email: <neilb@cse.unsw.edu.au>
24 * School of Computer Science and Engineering
25 * The University of New South Wales
29 * Additions for bitmap and write-behind RAID options, Copyright (C) 2003-2004,
30 * Paul Clements, SteelEye Technology, Inc.
38 int main(int argc
, char *argv
[])
52 int max_disks
= MD_SB_DISKS
; /* just a default */
54 struct mddev_ident_s ident
;
55 char *configfile
= NULL
;
64 char *bitmap_file
= NULL
;
65 char *backup_file
= NULL
;
66 int bitmap_chunk
= UnSet
;
68 mddev_dev_t devlist
= NULL
;
69 mddev_dev_t
*devlistend
= & devlist
;
78 char *symlinks
= NULL
;
79 /* autof indicates whether and how to create device node.
80 * bottom 3 bits are style. Rest (when shifted) are number of parts
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)
91 char *homehost
= NULL
;
92 char sys_hostname
[256];
93 char *mailaddr
= NULL
;
99 struct supertype
*ss
= NULL
;
102 char *shortopt
= short_options
;
105 int auto_update_home
= 0;
112 srandom(time(0) ^ getpid());
116 ident
.raid_disks
= UnSet
;
117 ident
.super_minor
= UnSet
;
119 ident
.spare_group
= NULL
;
122 ident
.bitmap_fd
= -1;
123 ident
.bitmap_file
= NULL
;
126 while ((option_index
= -1) ,
127 (opt
=getopt_long(argc
, argv
,
128 shortopt
, long_options
,
129 &option_index
)) != -1) {
131 /* firstly, some mode-independant options */
134 if (option_index
> 0 &&
135 strcmp(long_options
[option_index
].name
, "help-options")==0)
142 fputs(Version
, stderr
);
152 if (mode
== ASSEMBLE
|| mode
== BUILD
|| mode
== CREATE
|| mode
== GROW
)
153 break; /* b means bitmap */
156 fprintf(stderr
, Name
": -b cannot have any extra immediately after it, sorry.\n");
167 fputs(Usage
, stderr
);
170 /* second, figure out the mode.
171 * Some options force the mode. Others
172 * set the mode if it isn't already
176 case '@': /* just incase they say --manage */
178 shortopt
= short_bitmap_auto_options
;
183 case ReAdd
: /* re-add */
186 shortopt
= short_bitmap_auto_options
;
190 case 'A': newmode
= ASSEMBLE
; shortopt
= short_bitmap_auto_options
; break;
191 case 'B': newmode
= BUILD
; shortopt
= short_bitmap_auto_options
; break;
192 case 'C': newmode
= CREATE
; shortopt
= short_bitmap_auto_options
; break;
193 case 'F': newmode
= MONITOR
;break;
194 case 'G': newmode
= GROW
; shortopt
= short_bitmap_auto_options
; break;
195 case 'I': newmode
= INCREMENTAL
; break;
201 case 'Q': newmode
= MISC
; break;
207 case 'K': if (!mode
) newmode
= MISC
; break;
209 if (mode
&& newmode
== mode
) {
210 /* everybody happy ! */
211 } else if (mode
&& newmode
!= mode
) {
213 fprintf(stderr
, Name
": ");
214 if (option_index
>= 0)
215 fprintf(stderr
, "--%s", long_options
[option_index
].name
);
217 fprintf(stderr
, "-%c", opt
);
218 fprintf(stderr
, " would set mdadm mode to \"%s\", but it is already set to \"%s\".\n",
219 map_num(modes
, newmode
),
220 map_num(modes
, mode
));
222 } else if (!mode
&& newmode
) {
225 /* special case of -c --help */
227 ( strncmp(optarg
, "--h", 3)==0 ||
228 strncmp(optarg
, "-h", 2)==0)) {
229 fputs(Help_config
, stderr
);
233 /* If first option is a device, don't force the mode yet */
235 if (devs_found
== 0) {
236 dv
= malloc(sizeof(*dv
));
238 fprintf(stderr
, Name
": malloc failed\n");
241 dv
->devname
= optarg
;
242 dv
->disposition
= devmode
;
243 dv
->writemostly
= writemostly
;
248 devlistend
= &dv
->next
;
253 /* No mode yet, and this is the second device ... */
254 fprintf(stderr
, Name
": An option must be given to set the mode before a second device is listed\n");
257 if (option_index
>= 0)
258 fprintf(stderr
, Name
": --%s", long_options
[option_index
].name
);
260 fprintf(stderr
, Name
": -%c", opt
);
261 fprintf(stderr
, " does not set the mode, and so cannot be the first option.\n");
265 /* if we just set the mode, then done */
278 /* an undecorated option - must be a device name.
280 if (devs_found
> 0 && mode
== '@' && !devmode
) {
281 fprintf(stderr
, Name
": Must give one of -a/-r/-f for subsequent devices at %s\n", optarg
);
284 if (devs_found
> 0 && mode
== 'G' && !devmode
) {
285 fprintf(stderr
, Name
": Must give one of -a for devices do add: %s\n", optarg
);
288 dv
= malloc(sizeof(*dv
));
290 fprintf(stderr
, Name
": malloc failed\n");
293 dv
->devname
= optarg
;
294 dv
->disposition
= devmode
;
295 dv
->writemostly
= writemostly
;
299 devlistend
= &dv
->next
;
305 /* We've got a mode, and opt is now something else which
306 * could depend on the mode */
307 #define O(a,b) ((a<<8)|b)
308 switch (O(mode
,opt
)) {
310 case O(BUILD
,'c'): /* chunk or rounding */
312 fprintf(stderr
, Name
": chunk/rounding may only be specified once. "
313 "Second value is %s.\n", optarg
);
316 chunk
= strtol(optarg
, &c
, 10);
317 if (!optarg
[0] || *c
|| chunk
<4 || ((chunk
-1)&chunk
)) {
318 fprintf(stderr
, Name
": invalid chunk/rounding value: %s\n",
324 case O(ASSEMBLE
,AutoHomeHost
):
325 auto_update_home
= 1;
327 case O(INCREMENTAL
, 'e'):
329 case O(ASSEMBLE
,'e'):
330 case O(MISC
,'e'): /* set metadata (superblock) information */
332 fprintf(stderr
, Name
": metadata information already given\n");
335 for(i
=0; !ss
&& superlist
[i
]; i
++)
336 ss
= superlist
[i
]->match_metadata_desc(optarg
);
339 fprintf(stderr
, Name
": unrecognised metadata identifier: %s\n", optarg
);
342 max_disks
= ss
->max_devs
;
348 /* set write-mostly for following devices */
353 case O(CREATE
,'z'): /* size */
355 fprintf(stderr
, Name
": size may only be specified once. "
356 "Second value is %s.\n", optarg
);
359 if (strcmp(optarg
, "max")==0)
362 size
= strtoll(optarg
, &c
, 10);
363 if (!optarg
[0] || *c
|| size
< 4) {
364 fprintf(stderr
, Name
": invalid size: %s\n",
371 case O(GROW
,'l'): /* hack - needed to understand layout */
373 case O(BUILD
,'l'): /* set raid level*/
374 if (level
!= UnSet
) {
375 fprintf(stderr
, Name
": raid level may only be set once. "
376 "Second value is %s.\n", optarg
);
379 level
= map_name(pers
, optarg
);
380 if (level
== UnSet
) {
381 fprintf(stderr
, Name
": invalid raid level: %s\n",
385 if (level
!= 0 && level
!= -1 && level
!= 1 && level
!= -4 && level
!= -5 && mode
== BUILD
) {
386 fprintf(stderr
, Name
": Raid level %s not permitted with --build.\n",
390 if (sparedisks
> 0 && level
< 1 && level
>= -1) {
391 fprintf(stderr
, Name
": raid level %s is incompatible with spare-devices setting.\n",
398 case O(CREATE
,'p'): /* raid5 layout */
399 case O(BUILD
,'p'): /* faulty layout */
400 case O(GROW
, 'p'): /* faulty reconfig */
401 if (layout
!= UnSet
) {
402 fprintf(stderr
,Name
": layout may only be sent once. "
403 "Second value was %s\n", optarg
);
408 fprintf(stderr
, Name
": layout not meaningful for %s arrays.\n",
409 map_num(pers
, level
));
412 fprintf(stderr
, Name
": raid level must be given before layout.\n");
417 layout
= map_name(r5layout
, optarg
);
419 fprintf(stderr
, Name
": layout %s not understood for raid5.\n",
426 /* 'f', 'o' or 'n' followed by a number <= raid_disks */
427 if ((optarg
[0] != 'n' && optarg
[0] != 'f' && optarg
[0] != 'o') ||
428 (copies
= strtoul(optarg
+1, &cp
, 10)) < 1 ||
431 fprintf(stderr
, Name
": layout for raid10 must be 'nNN', 'oNN' or 'fNN' where NN is a number, not %s\n", optarg
);
434 if (optarg
[0] == 'n')
435 layout
= 256 + copies
;
436 else if (optarg
[0] == 'o')
437 layout
= 0x10000 + (copies
<<8) + 1;
439 layout
= 1 + (copies
<<8);
446 int ln
= strcspn(optarg
, "0123456789");
447 char *m
= strdup(optarg
);
450 mode
= map_name(faultylayout
, m
);
452 fprintf(stderr
, Name
": layout %s not understood for faulty.\n",
456 layout
= mode
| (atoi(optarg
+ln
)<< ModeShift
);
461 case O(CREATE
,AssumeClean
):
462 case O(BUILD
,AssumeClean
): /* assume clean */
468 case O(BUILD
,'n'): /* number of raid disks */
470 fprintf(stderr
, Name
": raid-devices set twice: %d and %s\n",
474 raiddisks
= strtol(optarg
, &c
, 10);
475 if (!optarg
[0] || *c
|| raiddisks
<=0) {
476 fprintf(stderr
, Name
": invalid number of raid devices: %s\n",
480 ident
.raid_disks
= raiddisks
;
483 case O(CREATE
,'x'): /* number of spare (eXtra) discs */
485 fprintf(stderr
,Name
": spare-devices set twice: %d and %s\n",
489 if (level
!= UnSet
&& level
<= 0 && level
>= -1) {
490 fprintf(stderr
, Name
": spare-devices setting is incompatible with raid level %d\n",
494 sparedisks
= strtol(optarg
, &c
, 10);
495 if (!optarg
[0] || *c
|| sparedisks
< 0) {
496 fprintf(stderr
, Name
": invalid number of spare-devices: %s\n",
504 case O(ASSEMBLE
,'a'): /* auto-creation of device node */
505 autof
= parse_auto(optarg
, "--auto flag", 0);
508 case O(CREATE
,Symlinks
):
509 case O(BUILD
,Symlinks
):
510 case O(ASSEMBLE
,Symlinks
): /* auto creation of symlinks in /dev to /dev/md */
514 case O(BUILD
,'f'): /* force honouring '-n 1' */
515 case O(GROW
,'f'): /* ditto */
516 case O(CREATE
,'f'): /* force honouring of device list */
517 case O(ASSEMBLE
,'f'): /* force assembly */
518 case O(MISC
,'f'): /* force zero */
522 /* now for the Assemble options */
523 case O(CREATE
,'u'): /* uuid of array */
524 case O(ASSEMBLE
,'u'): /* uuid of array */
525 if (ident
.uuid_set
) {
526 fprintf(stderr
, Name
": uuid cannot be set twice. "
527 "Second value %s.\n", optarg
);
530 if (parse_uuid(optarg
, ident
.uuid
))
533 fprintf(stderr
,Name
": Bad uuid: %s\n", optarg
);
539 case O(ASSEMBLE
,'N'):
541 fprintf(stderr
, Name
": name cannot be set twice. "
542 "Second value %s.\n", optarg
);
545 if (strlen(optarg
) > 32) {
546 fprintf(stderr
, Name
": name '%s' is too long, 32 chars max.\n",
550 strcpy(ident
.name
, optarg
);
553 case O(ASSEMBLE
,'m'): /* super-minor for array */
554 if (ident
.super_minor
!= UnSet
) {
555 fprintf(stderr
, Name
": super-minor cannot be set twice. "
556 "Second value: %s.\n", optarg
);
559 if (strcmp(optarg
, "dev")==0)
560 ident
.super_minor
= -2;
562 ident
.super_minor
= strtoul(optarg
, &cp
, 10);
563 if (!optarg
[0] || *cp
) {
564 fprintf(stderr
, Name
": Bad super-minor number: %s.\n", optarg
);
570 case O(ASSEMBLE
,'U'): /* update the superblock */
572 fprintf(stderr
, Name
": Can only update one aspect of superblock, both %s and %s given.\n",
577 if (strcmp(update
, "sparc2.2")==0)
579 if (strcmp(update
, "super-minor") == 0)
581 if (strcmp(update
, "summaries")==0)
583 if (strcmp(update
, "resync")==0)
585 if (strcmp(update
, "uuid")==0)
587 if (strcmp(update
, "name")==0)
589 if (strcmp(update
, "homehost")==0)
591 if (strcmp(update
, "devicesize")==0)
593 if (strcmp(update
, "byteorder")==0) {
595 fprintf(stderr
, Name
": must not set metadata type with --update=byteorder.\n");
598 for(i
=0; !ss
&& superlist
[i
]; i
++)
599 ss
= superlist
[i
]->match_metadata_desc("0.swap");
601 fprintf(stderr
, Name
": INTERNAL ERROR cannot find 0.swap\n");
607 if (strcmp(update
,"?") == 0 || strcmp(update
, "help") == 0)
608 fprintf(stderr
, Name
": ");
610 fprintf(stderr
, Name
": '--update=%s' is invalid. ", update
);
611 fprintf(stderr
, "Valid --update options are:\n"
612 " 'sparc2.2', 'super-minor', 'uuid', 'name', 'resync',\n"
613 " 'summaries', 'homehost', 'byteorder', 'devicesize'.\n");
616 case O(ASSEMBLE
,NoDegraded
): /* --no-degraded */
617 runstop
= -1; /* --stop isn't allowed for --assemble, so we overload slightly */
620 case O(ASSEMBLE
,'c'): /* config file */
624 fprintf(stderr
, Name
": configfile cannot be set twice. "
625 "Second value is %s.\n", optarg
);
629 set_conffile(configfile
);
630 /* FIXME possibly check that config file exists. Even parse it */
632 case O(ASSEMBLE
,'s'): /* scan */
635 case O(INCREMENTAL
,'s'):
639 case O(MONITOR
,'m'): /* mail address */
641 fprintf(stderr
, Name
": only specify one mailaddress. %s ignored.\n",
647 case O(MONITOR
,'p'): /* alert program */
649 fprintf(stderr
, Name
": only specify one alter program. %s ignored.\n",
655 case O(MONITOR
,'d'): /* delay in seconds */
657 case O(BUILD
,'d'): /* delay for bitmap updates */
660 fprintf(stderr
, Name
": only specify delay once. %s ignored.\n",
663 delay
= strtol(optarg
, &c
, 10);
664 if (!optarg
[0] || *c
|| delay
<1) {
665 fprintf(stderr
, Name
": invalid delay: %s\n",
671 case O(MONITOR
,'f'): /* daemonise */
674 case O(MONITOR
,'i'): /* pid */
676 fprintf(stderr
, Name
": only specify one pid file. %s ignored.\n",
681 case O(MONITOR
,'1'): /* oneshot */
684 case O(MONITOR
,'t'): /* test */
687 case O(MONITOR
,'y'): /* log messages to syslog */
688 openlog("mdadm", 0, SYSLOG_FACILITY
);
692 /* now the general management options. Some are applicable
693 * to other modes. None have arguments.
696 case O(MANAGE
,'a'): /* add a drive */
700 case O(MANAGE
,ReAdd
):
704 case O(MANAGE
,'r'): /* remove a drive */
707 case O(MANAGE
,'f'): /* set faulty */
710 case O(INCREMENTAL
,'R'):
712 case O(ASSEMBLE
,'R'):
714 case O(CREATE
,'R'): /* Run the array */
716 fprintf(stderr
, Name
": Cannot both Stop and Run an array\n");
723 fprintf(stderr
, Name
": Cannot both Run and Stop an array\n");
731 fprintf(stderr
, Name
": Cannot have both readonly and readwrite\n");
738 fprintf(stderr
, Name
": Cannot have both readwrite and readonly.\n");
754 if (devmode
&& devmode
!= opt
&&
755 (devmode
== 'E' || (opt
== 'E' && devmode
!= 'Q'))) {
756 fprintf(stderr
, Name
": --examine/-E cannot be given with -%c\n",
757 devmode
=='E'?opt
:devmode
);
766 case O(MISC
, Sparc22
):
767 if (devmode
!= 'E') {
768 fprintf(stderr
, Name
": --sparc2.2 only allowed with --examine\n");
774 case O(ASSEMBLE
,'b'): /* here we simply set the bitmap file */
776 fprintf(stderr
, Name
": bitmap file needed with -b in --assemble mode\n");
779 if (strcmp(optarg
, "internal")==0) {
780 fprintf(stderr
, Name
": there is no need to specify --bitmap when assembling arrays with internal bitmaps\n");
783 bitmap_fd
= open(optarg
, O_RDWR
);
784 if (!*optarg
|| bitmap_fd
< 0) {
785 fprintf(stderr
, Name
": cannot open bitmap file %s: %s\n", optarg
, strerror(errno
));
788 ident
.bitmap_fd
= bitmap_fd
; /* for Assemble */
791 case O(ASSEMBLE
, BackupFile
):
792 case O(GROW
, BackupFile
):
793 /* Specify a file into which grow might place a backup,
794 * or from which assemble might recover a backup
797 fprintf(stderr
, Name
": backup file already specified, rejecting %s\n", optarg
);
800 backup_file
= optarg
;
805 case O(CREATE
,'b'): /* here we create the bitmap */
806 if (strcmp(optarg
, "internal")== 0 ||
807 strcmp(optarg
, "none")== 0 ||
808 strchr(optarg
, '/') != NULL
) {
809 bitmap_file
= optarg
;
813 fprintf(stderr
, Name
": bitmap file must contain a '/', or be 'internal', or 'none'\n");
816 case O(GROW
,BitmapChunk
):
817 case O(BUILD
,BitmapChunk
):
818 case O(CREATE
,BitmapChunk
): /* bitmap chunksize */
819 bitmap_chunk
= strtol(optarg
, &c
, 10);
820 if (!optarg
[0] || *c
|| bitmap_chunk
< 0 ||
821 bitmap_chunk
& (bitmap_chunk
- 1)) {
822 fprintf(stderr
, Name
": invalid bitmap chunksize: %s\n",
826 /* convert K to B, chunk of 0K means 512B */
827 bitmap_chunk
= bitmap_chunk
? bitmap_chunk
* 1024 : 512;
830 case O(BUILD
, WriteBehind
):
831 case O(CREATE
, WriteBehind
): /* write-behind mode */
832 write_behind
= DEFAULT_MAX_WRITE_BEHIND
;
834 write_behind
= strtol(optarg
, &c
, 10);
835 if (write_behind
< 0 || *c
||
836 write_behind
> 16383) {
837 fprintf(stderr
, Name
": Invalid value for maximum outstanding write-behind writes: %s.\n\tMust be between 0 and 16383.\n", optarg
);
843 case O(INCREMENTAL
, 'r'):
847 /* We have now processed all the valid options. Anything else is
850 if (option_index
> 0)
851 fprintf(stderr
, Name
":option --%s not valid in %s mode\n",
852 long_options
[option_index
].name
,
853 map_num(modes
, mode
));
855 fprintf(stderr
, Name
": option -%c not valid in %s mode\n",
856 opt
, map_num(modes
, mode
));
862 char *help_text
= Help
;
864 help_text
= OptionHelp
;
867 case ASSEMBLE
: help_text
= Help_assemble
; break;
868 case BUILD
: help_text
= Help_build
; break;
869 case CREATE
: help_text
= Help_create
; break;
870 case MANAGE
: help_text
= Help_manage
; break;
871 case MISC
: help_text
= Help_misc
; break;
872 case MONITOR
: help_text
= Help_monitor
; break;
873 case GROW
: help_text
= Help_grow
; break;
874 case INCREMENTAL
:help_text
= Help_incr
; break;
876 fputs(help_text
,stderr
);
880 if (!mode
&& devs_found
) {
883 if (devlist
->disposition
== 0)
884 devlist
->disposition
= devmode
;
887 fputs(Usage
, stderr
);
892 struct createinfo
*ci
= conf_get_create_info();
894 if (strcasecmp(symlinks
, "yes") == 0)
896 else if (strcasecmp(symlinks
, "no") == 0)
899 fprintf(stderr
, Name
": option --symlinks must be 'no' or 'yes'\n");
903 /* Ok, got the option parsing out of the way
904 * hopefully it's mostly right but there might be some stuff
907 * That is mosty checked in the per-mode stuff but...
909 * For @,B,C and A without -s, the first device listed must be an md device
910 * we check that here and open it.
913 if (mode
==MANAGE
|| mode
== BUILD
|| mode
== CREATE
|| mode
== GROW
||
914 (mode
== ASSEMBLE
&& ! scan
)) {
915 if (devs_found
< 1) {
916 fprintf(stderr
, Name
": an md device must be given in this mode\n");
919 if ((int)ident
.super_minor
== -2 && autof
) {
920 fprintf(stderr
, Name
": --super-minor=dev is incompatible with --auto\n");
923 if (mode
== MANAGE
|| mode
== GROW
)
924 autof
=1; /* Don't create */
925 mdfd
= open_mddev(devlist
->devname
, autof
);
928 if ((int)ident
.super_minor
== -2) {
931 ident
.super_minor
= minor(stb
.st_rdev
);
936 if (raiddisks
> max_disks
) {
937 fprintf(stderr
, Name
": invalid number of raid devices: %d\n",
941 if (raiddisks
== 1 && !force
&& level
!= -5) {
942 fprintf(stderr
, Name
": '1' is an unusual number of drives for an array, so it is probably\n"
943 " a mistake. If you really mean it you will need to specify --force before\n"
944 " setting the number of drives.\n");
949 if ( sparedisks
> max_disks
- raiddisks
) {
950 fprintf(stderr
, Name
": invalid number of spare-devices: %d\n",
956 if (homehost
== NULL
)
957 homehost
= conf_get_homehost();
958 if (homehost
&& strcmp(homehost
, "<system>")==0) {
959 if (gethostname(sys_hostname
, sizeof(sys_hostname
)) == 0) {
960 sys_hostname
[sizeof(sys_hostname
)-1] = 0;
961 homehost
= sys_hostname
;
968 /* readonly, add/remove, readwrite, runstop */
970 rv
= Manage_ro(devlist
->devname
, mdfd
, readonly
);
971 if (!rv
&& devs_found
>1)
972 rv
= Manage_subdevs(devlist
->devname
, mdfd
,
973 devlist
->next
, verbose
-quiet
);
974 if (!rv
&& readonly
< 0)
975 rv
= Manage_ro(devlist
->devname
, mdfd
, readonly
);
977 rv
= Manage_runstop(devlist
->devname
, mdfd
, runstop
, quiet
);
980 if (devs_found
== 1 && ident
.uuid_set
== 0 &&
981 ident
.super_minor
== UnSet
&& ident
.name
[0] == 0 && !scan
) {
982 /* Only a device has been given, so get details from config file */
983 mddev_ident_t array_ident
= conf_get_ident(devlist
->devname
);
984 if (array_ident
== NULL
) {
985 fprintf(stderr
, Name
": %s not identified in config file.\n",
989 mdfd
= open_mddev(devlist
->devname
,
990 array_ident
->autof
? array_ident
->autof
: autof
);
994 rv
|= Assemble(ss
, devlist
->devname
, mdfd
, array_ident
,
996 readonly
, runstop
, update
, homehost
, verbose
-quiet
, force
);
1001 rv
= Assemble(ss
, devlist
->devname
, mdfd
, &ident
,
1002 devlist
->next
, backup_file
,
1003 readonly
, runstop
, update
, homehost
, verbose
-quiet
, force
);
1004 else if (devs_found
>0) {
1005 if (update
&& devs_found
> 1) {
1006 fprintf(stderr
, Name
": can only update a single array at a time\n");
1009 if (backup_file
&& devs_found
> 1) {
1010 fprintf(stderr
, Name
": can only assemble a single array when providing a backup file.\n");
1013 for (dv
= devlist
; dv
; dv
=dv
->next
) {
1014 mddev_ident_t array_ident
= conf_get_ident(dv
->devname
);
1015 if (array_ident
== NULL
) {
1016 fprintf(stderr
, Name
": %s not identified in config file.\n",
1021 mdfd
= open_mddev(dv
->devname
,
1022 array_ident
->autof
?array_ident
->autof
: autof
);
1027 rv
|= Assemble(ss
, dv
->devname
, mdfd
, array_ident
,
1029 readonly
, runstop
, update
, homehost
, verbose
-quiet
, force
);
1033 mddev_ident_t array_list
= conf_get_ident(NULL
);
1034 mddev_dev_t devlist
= conf_get_devs();
1036 if (devlist
== NULL
) {
1037 fprintf(stderr
, Name
": No devices listed in conf file were found.\n");
1041 fprintf(stderr
, Name
": --update not meaningful with a --scan assembly.\n");
1045 fprintf(stderr
, Name
": --backup_file not meaningful with a --scan assembly.\n");
1048 for (; array_list
; array_list
= array_list
->next
) {
1049 mdu_array_info_t array
;
1050 mdfd
= open_mddev(array_list
->devname
,
1051 array_list
->autof
? array_list
->autof
: autof
);
1056 if (ioctl(mdfd
, GET_ARRAY_INFO
, &array
)>=0)
1057 /* already assembled, skip */
1060 rv
|= Assemble(ss
, array_list
->devname
, mdfd
,
1063 readonly
, runstop
, NULL
, homehost
, verbose
-quiet
, force
);
1069 /* Maybe we can auto-assemble something.
1070 * Repeatedly call Assemble in auto-assmble mode
1075 ident
.autof
= autof
;
1079 rv2
= Assemble(ss
, NULL
, -1,
1082 readonly
, runstop
, NULL
, homehost
, verbose
-quiet
, force
);
1088 /* found something so even though assembly failed we
1089 * want to avoid auto-updates
1091 auto_update_home
= 0;
1093 /* Incase there are stacked devices, we need to go around again */
1095 if (cnt
== 0 && auto_update_home
&& homehost
) {
1096 /* Nothing found, maybe we need to bootstrap homehost info */
1100 rv2
= Assemble(ss
, NULL
, -1,
1103 readonly
, runstop
, "homehost", homehost
, verbose
-quiet
, force
);
1109 /* Incase there are stacked devices, we need to go around again */
1112 if (cnt
== 0 && rv
== 0) {
1113 fprintf(stderr
, Name
": No arrays found in config file or automatically\n");
1116 } else if (cnt
== 0 && rv
== 0) {
1117 fprintf(stderr
, Name
": No arrays found in config file\n");
1123 if (delay
== 0) delay
= DEFAULT_BITMAP_DELAY
;
1124 if (write_behind
&& !bitmap_file
) {
1125 fprintf(stderr
, Name
": write-behind mode requires a bitmap.\n");
1131 if (strcmp(bitmap_file
, "internal")==0) {
1132 fprintf(stderr
, Name
": 'internal' bitmaps not supported with --build\n");
1137 rv
= Build(devlist
->devname
, mdfd
, chunk
, level
, layout
,
1138 raiddisks
, devlist
->next
, assume_clean
,
1139 bitmap_file
, bitmap_chunk
, write_behind
, delay
, verbose
-quiet
);
1142 if (delay
== 0) delay
= DEFAULT_BITMAP_DELAY
;
1143 if (write_behind
&& !bitmap_file
) {
1144 fprintf(stderr
, Name
": write-behind mode requires a bitmap.\n");
1149 rv
= Create(ss
, devlist
->devname
, mdfd
, chunk
, level
, layout
, size
<0 ? 0 : size
,
1150 raiddisks
, sparedisks
, ident
.name
, homehost
,
1151 ident
.uuid_set
? ident
.uuid
: NULL
,
1152 devs_found
-1, devlist
->next
, runstop
, verbose
-quiet
, force
, assume_clean
,
1153 bitmap_file
, bitmap_chunk
, write_behind
, delay
);
1156 if (devmode
== 'E') {
1157 if (devlist
== NULL
&& !scan
) {
1158 fprintf(stderr
, Name
": No devices to examine\n");
1161 if (devlist
== NULL
)
1162 devlist
= conf_get_devs();
1163 if (devlist
== NULL
) {
1164 fprintf(stderr
, Name
": No devices listed in %s\n", configfile
?configfile
:DefaultConfFile
);
1167 if (brief
&& verbose
)
1169 rv
= Examine(devlist
, scan
?(verbose
>1?0:verbose
+1):brief
, scan
, SparcAdjust
, ss
, homehost
);
1171 if (devlist
== NULL
) {
1172 if (devmode
=='D' && scan
) {
1173 /* apply --detail to all devices in /proc/mdstat */
1174 struct mdstat_ent
*ms
= mdstat_read(0, 1);
1175 struct mdstat_ent
*e
;
1176 for (e
=ms
; e
; e
=e
->next
) {
1177 char *name
= get_md_name(e
->devnum
);
1180 fprintf(stderr
, Name
": cannot find device file for %s\n",
1184 rv
|= Detail(name
, verbose
>1?0:verbose
+1, test
, homehost
);
1187 } else if (devmode
== 'S' && scan
) {
1188 /* apply --stop to all devices in /proc/mdstat */
1189 /* Due to possible stacking of devices, repeat until
1190 * nothing more can be stopped
1192 int progress
=1, err
;
1195 struct mdstat_ent
*ms
= mdstat_read(0, 0);
1196 struct mdstat_ent
*e
;
1198 if (!progress
) last
= 1;
1199 progress
= 0; err
= 0;
1200 for (e
=ms
; e
; e
=e
->next
) {
1201 char *name
= get_md_name(e
->devnum
);
1204 fprintf(stderr
, Name
": cannot find device file for %s\n",
1208 mdfd
= open_mddev(name
, 1);
1210 if (Manage_runstop(name
, mdfd
, -1, quiet
?1:last
?0:-1))
1219 } while (!last
&& err
);
1222 fprintf(stderr
, Name
": No devices given.\n");
1226 for (dv
=devlist
; dv
; dv
=dv
->next
) {
1227 switch(dv
->disposition
) {
1229 rv
|= Detail(dv
->devname
, brief
?1+verbose
:0, test
, homehost
); continue;
1230 case 'K': /* Zero superblock */
1231 rv
|= Kill(dv
->devname
, force
, quiet
); continue;
1233 rv
|= Query(dv
->devname
); continue;
1235 rv
|= ExamineBitmap(dv
->devname
, brief
, ss
); continue;
1237 rv
|= Wait(dv
->devname
); continue;
1239 mdfd
= open_mddev(dv
->devname
, 1);
1241 switch(dv
->disposition
) {
1243 rv
|= Manage_runstop(dv
->devname
, mdfd
, 1, quiet
); break;
1245 rv
|= Manage_runstop(dv
->devname
, mdfd
, -1, quiet
); break;
1247 rv
|= Manage_ro(dv
->devname
, mdfd
, 1); break;
1249 rv
|= Manage_ro(dv
->devname
, mdfd
, -1); break;
1258 if (!devlist
&& !scan
) {
1259 fprintf(stderr
, Name
": Cannot monitor: need --scan or at least one device\n");
1263 if (pidfile
&& !daemonise
) {
1264 fprintf(stderr
, Name
": Cannot write a pid file when not in daemon mode\n");
1268 rv
= Monitor(devlist
, mailaddr
, program
,
1269 delay
?delay
:60, daemonise
, scan
, oneshot
,
1270 dosyslog
, test
, pidfile
);
1274 if (devs_found
> 1) {
1277 if (size
>= 0 || raiddisks
) {
1278 fprintf(stderr
, Name
": --size, --raiddisks, and --add are exclusing in --grow mode\n");
1282 for (dv
=devlist
->next
; dv
; dv
=dv
->next
) {
1283 rv
= Grow_Add_device(devlist
->devname
, mdfd
, dv
->devname
);
1287 } else if ((size
>= 0) + (raiddisks
!= 0) + (layout
!= UnSet
) + (bitmap_file
!= NULL
)> 1) {
1288 fprintf(stderr
, Name
": can change at most one of size, raiddisks, bitmap, and layout\n");
1291 } else if (layout
!= UnSet
)
1292 rv
= Manage_reconfig(devlist
->devname
, mdfd
, layout
);
1293 else if (size
>= 0 || raiddisks
)
1294 rv
= Grow_reshape(devlist
->devname
, mdfd
, quiet
, backup_file
,
1295 size
, level
, layout
, chunk
, raiddisks
);
1296 else if (bitmap_file
) {
1297 if (delay
== 0) delay
= DEFAULT_BITMAP_DELAY
;
1298 rv
= Grow_addbitmap(devlist
->devname
, mdfd
, bitmap_file
,
1299 bitmap_chunk
, delay
, write_behind
, force
);
1301 fprintf(stderr
, Name
": no changes to --grow\n");
1309 fprintf(stderr
, Name
1310 ": --incremental --scan meaningless without --run.\n");
1313 rv
= IncrementalScan(verbose
);
1316 if (!rebuild_map
&& !scan
) {
1317 fprintf(stderr
, Name
1318 ": --incremental requires a device.\n");
1323 if (devlist
->next
) {
1324 fprintf(stderr
, Name
1325 ": --incremental can only handle one device.\n");
1329 rv
= Incremental(devlist
->devname
, verbose
-quiet
, runstop
,
1330 ss
, homehost
, autof
);