2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2013 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@suse.de>
28 static int name_matches(char *found
, char *required
, char *homehost
)
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
35 strncpy(fnd
, found
, 32);
37 if (strcmp(found
, required
)==0)
40 int l
= strlen(homehost
);
41 if (l
< 32 && fnd
[l
] == ':' &&
42 strcmp(fnd
+l
+1, required
)==0)
48 static int is_member_busy(char *metadata_version
)
50 /* check if the given member array is active */
51 struct mdstat_ent
*mdstat
= mdstat_read(0, 0);
52 struct mdstat_ent
*ent
;
55 for (ent
= mdstat
; ent
; ent
= ent
->next
) {
56 if (ent
->metadata_version
== NULL
)
58 if (strncmp(ent
->metadata_version
, "external:", 9) != 0)
60 if (!is_subarray(&ent
->metadata_version
[9]))
62 /* Skip first char - it can be '/' or '-' */
63 if (strcmp(&ent
->metadata_version
[10], metadata_version
+1) == 0) {
73 static int ident_matches(struct mddev_ident
*ident
,
74 struct mdinfo
*content
,
75 struct supertype
*tst
,
77 char *update
, char *devname
)
80 if (ident
->uuid_set
&& (!update
|| strcmp(update
, "uuid")!= 0) &&
81 same_uuid(content
->uuid
, ident
->uuid
, tst
->ss
->swapuuid
)==0 &&
82 memcmp(content
->uuid
, uuid_zero
, sizeof(int[4])) != 0) {
84 pr_err("%s has wrong uuid.\n", devname
);
87 if (ident
->name
[0] && (!update
|| strcmp(update
, "name")!= 0) &&
88 name_matches(content
->name
, ident
->name
, homehost
)==0) {
90 pr_err("%s has wrong name.\n", devname
);
93 if (ident
->super_minor
!= UnSet
&&
94 ident
->super_minor
!= content
->array
.md_minor
) {
96 pr_err("%s has wrong super-minor.\n",
100 if (ident
->level
!= UnSet
&&
101 ident
->level
!= content
->array
.level
) {
103 pr_err("%s has wrong raid level.\n",
107 if (ident
->raid_disks
!= UnSet
&&
108 content
->array
.raid_disks
!= 0 && /* metadata doesn't know how many to expect */
109 ident
->raid_disks
!= content
->array
.raid_disks
) {
111 pr_err("%s requires wrong number of drives.\n",
115 if (ident
->member
&& ident
->member
[0]) {
116 /* content->text_version must match */
117 char *s
= strchr(content
->text_version
+1, '/');
120 pr_err("%s is not a container and one is required.\n",
123 } else if (strcmp(ident
->member
, s
+1) != 0) {
125 pr_err("skipping wrong member %s is %s\n",
126 content
->text_version
, devname
);
133 static int select_devices(struct mddev_dev
*devlist
,
134 struct mddev_ident
*ident
,
135 struct supertype
**stp
,
136 struct mdinfo
**contentp
,
138 int inargv
, int auto_assem
)
140 struct mddev_dev
*tmpdev
;
142 struct supertype
*st
= *stp
;
143 struct mdinfo
*content
= NULL
;
144 int report_mismatch
= ((inargv
&& c
->verbose
>= 0) || c
->verbose
> 0);
145 struct domainlist
*domains
= NULL
;
147 tmpdev
= devlist
; num_devs
= 0;
153 tmpdev
->disposition
= 0;
154 tmpdev
= tmpdev
->next
;
157 /* first walk the list of devices to find a consistent set
158 * that match the criterea, if that is possible.
159 * We flag the ones we like with 'used'.
161 for (tmpdev
= devlist
;
163 tmpdev
= tmpdev
? tmpdev
->next
: NULL
) {
164 char *devname
= tmpdev
->devname
;
167 struct supertype
*tst
;
168 struct dev_policy
*pol
= NULL
;
169 int found_container
= 0;
171 if (tmpdev
->used
> 1)
174 if (ident
->container
) {
175 if (ident
->container
[0] == '/' &&
176 !same_dev(ident
->container
, devname
)) {
178 pr_err("%s is not the container required (%s)\n",
179 devname
, ident
->container
);
182 } else if (ident
->devices
&&
183 !match_oneof(ident
->devices
, devname
)) {
184 /* Note that we ignore the "device=" identifier if a
185 * "container=" is given. Checking both is unnecessarily
189 pr_err("%s is not one of %s\n", devname
, ident
->devices
);
195 dfd
= dev_open(devname
, O_RDONLY
);
198 pr_err("cannot open device %s: %s\n",
199 devname
, strerror(errno
));
201 } else if (fstat(dfd
, &stb
)< 0) {
203 pr_err("fstat failed for %s: %s\n",
204 devname
, strerror(errno
));
206 } else if ((stb
.st_mode
& S_IFMT
) != S_IFBLK
) {
207 pr_err("%s is not a block device.\n",
210 } else if (must_be_container(dfd
)) {
212 /* already found some components, this cannot
216 pr_err("%s is a container, but we are looking for components\n",
219 #if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
220 } if (!tst
&& (tst
= super_by_fd(dfd
, NULL
)) == NULL
) {
222 pr_err("not a recognisable container: %s\n",
226 } else if (!tst
->ss
->load_container
227 || tst
->ss
->load_container(tst
, dfd
, NULL
)) {
229 pr_err("no correct container type: %s\n",
232 } else if (auto_assem
&&
233 !conf_test_metadata(tst
->ss
->name
, (pol
= devid_policy(stb
.st_rdev
)),
234 tst
->ss
->match_home(tst
, c
->homehost
) == 1)) {
236 pr_err("%s has metadata type %s for which "
237 "auto-assembly is disabled\n",
238 devname
, tst
->ss
->name
);
243 if (!tst
&& (tst
= guess_super(dfd
)) == NULL
) {
245 pr_err("no recogniseable superblock on %s\n",
248 } else if (tst
->ss
->load_super(tst
,dfd
, NULL
)) {
250 pr_err("no RAID superblock on %s\n",
253 } else if (tst
->ss
->compare_super
== NULL
) {
255 pr_err("Cannot assemble %s metadata on %s\n",
256 tst
->ss
->name
, devname
);
258 } else if (auto_assem
&& st
== NULL
&&
259 !conf_test_metadata(tst
->ss
->name
, (pol
= devid_policy(stb
.st_rdev
)),
260 tst
->ss
->match_home(tst
, c
->homehost
) == 1)) {
262 pr_err("%s has metadata type %s for which "
263 "auto-assembly is disabled\n",
264 devname
, tst
->ss
->name
);
268 if (dfd
>= 0) close(dfd
);
269 if (tmpdev
->used
== 2) {
270 if (auto_assem
|| !inargv
)
271 /* Ignore unrecognised devices during auto-assembly */
273 if (ident
->uuid_set
|| ident
->name
[0] ||
274 ident
->super_minor
!= UnSet
)
275 /* Ignore unrecognised device if looking for
279 pr_err("%s has no superblock - assembly aborted\n",
282 st
->ss
->free_super(st
);
283 dev_policy_free(pol
);
284 domain_free(domains
);
288 if (found_container
) {
289 /* tmpdev is a container. We need to be either
290 * looking for a member, or auto-assembling
292 /* should be safe to try an exclusive open now, we
293 * have rejected anything that some other mdadm might
296 dfd
= dev_open(devname
, O_RDONLY
| O_EXCL
);
299 pr_err("%s is busy - skipping\n", devname
);
304 if (ident
->container
&& ident
->container
[0] != '/') {
309 tst
->ss
->getinfo_super(tst
, content
, NULL
);
311 if (!parse_uuid(ident
->container
, uuid
) ||
312 !same_uuid(content
->uuid
, uuid
, tst
->ss
->swapuuid
)) {
314 pr_err("%s has wrong UUID to be required container\n",
319 /* It is worth looking inside this container.
322 pr_err("looking in container %s\n",
325 for (content
= tst
->ss
->container_content(tst
, NULL
);
327 content
= content
->next
) {
329 if (!ident_matches(ident
, content
, tst
,
330 c
->homehost
, c
->update
,
331 report_mismatch
? devname
: NULL
))
332 /* message already printed */;
333 else if (is_member_busy(content
->text_version
)) {
335 pr_err("member %s in %s is already assembled\n",
336 content
->text_version
,
338 } else if (content
->array
.state
& (1<<MD_SB_BLOCK_VOLUME
)) {
339 /* do not assemble arrays with unsupported configurations */
340 pr_err("Cannot activate member %s in %s.\n",
341 content
->text_version
,
348 goto loop
; /* empty container */
351 st
= tst
; tst
= NULL
;
352 if (!auto_assem
&& inargv
&& tmpdev
->next
!= NULL
) {
353 pr_err("%s is a container, but is not "
354 "only device given: confused and aborting\n",
356 st
->ss
->free_super(st
);
357 dev_policy_free(pol
);
358 domain_free(domains
);
362 pr_err("found match on member %s in %s\n",
363 content
->text_version
, devname
);
365 /* make sure we finished the loop */
370 struct mddev_ident
*match
;
373 tst
->ss
->getinfo_super(tst
, content
, NULL
);
375 if (!ident_matches(ident
, content
, tst
,
376 c
->homehost
, c
->update
,
377 report_mismatch
? devname
: NULL
))
380 match
= conf_match(tst
, content
, devname
,
381 report_mismatch
? c
->verbose
: -1,
383 if (!match
&& rv
== 2)
385 if (match
&& match
->devname
&&
386 strcasecmp(match
->devname
, "<ignore>") == 0) {
388 pr_err("%s is a member of an explicitly ignored array\n",
392 if (match
&& !ident_matches(match
, content
, tst
,
393 c
->homehost
, c
->update
,
394 report_mismatch
? devname
: NULL
))
395 /* Array exists in mdadm.conf but some
396 * details don't match, so reject it
400 /* should be safe to try an exclusive open now, we
401 * have rejected anything that some other mdadm might
404 dfd
= dev_open(devname
, O_RDONLY
| O_EXCL
);
407 pr_err("%s is busy - skipping\n", devname
);
414 if (st
->minor_version
== -1)
415 st
->minor_version
= tst
->minor_version
;
417 if (memcmp(content
->uuid
, uuid_zero
,
418 sizeof(int[4])) == 0) {
419 /* this is a floating spare. It cannot define
420 * an array unless there are no more arrays of
421 * this type to be found. It can be included
422 * in an array of this type though.
428 if (st
->ss
!= tst
->ss
||
429 st
->minor_version
!= tst
->minor_version
||
430 st
->ss
->compare_super(st
, tst
) != 0) {
431 /* Some mismatch. If exactly one array matches this host,
432 * we can resolve on that one.
433 * Or, if we are auto assembling, we just ignore the second
439 int first
= st
->ss
->match_home(st
, c
->homehost
);
440 int last
= tst
->ss
->match_home(tst
, c
->homehost
);
442 (first
== 1 || last
== 1)) {
443 /* We can do something */
444 if (first
) {/* just ignore this one */
446 pr_err("%s misses out due to wrong homehost\n",
449 } else { /* reject all those sofar */
450 struct mddev_dev
*td
;
452 pr_err("%s overrides previous devices due to good homehost\n",
454 for (td
=devlist
; td
!= tmpdev
; td
=td
->next
)
462 pr_err("superblock on %s doesn't match others - assembly aborted\n",
464 tst
->ss
->free_super(tst
);
465 st
->ss
->free_super(st
);
466 dev_policy_free(pol
);
467 domain_free(domains
);
473 /* Collect domain information from members only */
474 if (tmpdev
&& tmpdev
->used
== 1) {
476 pol
= devid_policy(stb
.st_rdev
);
477 domain_merge(&domains
, pol
, tst
?tst
->ss
->name
:NULL
);
479 dev_policy_free(pol
);
482 tst
->ss
->free_super(tst
);
485 /* Check if we found some imsm spares but no members */
488 memcmp(uuid_zero
, ident
->uuid
,sizeof(uuid_zero
)) == 0)) &&
490 for (tmpdev
= devlist
; tmpdev
; tmpdev
= tmpdev
->next
) {
491 if (tmpdev
->used
!= 3)
497 /* we need sb from one of the spares */
498 int dfd
= dev_open(tmpdev
->devname
, O_RDONLY
);
500 st
->ss
->load_super(st
, dfd
, NULL
))
507 /* Now reject spares that don't match domains of identified members */
508 for (tmpdev
= devlist
; tmpdev
; tmpdev
= tmpdev
->next
) {
510 if (tmpdev
->used
!= 3)
512 if (stat(tmpdev
->devname
, &stb
)< 0) {
513 pr_err("fstat failed for %s: %s\n",
514 tmpdev
->devname
, strerror(errno
));
517 struct dev_policy
*pol
= devid_policy(stb
.st_rdev
);
518 int dt
= domain_test(domains
, pol
, NULL
);
519 if (inargv
&& dt
!= 0)
520 /* take this spare as domains match
521 * if there are any */
523 else if (!inargv
&& dt
== 1)
524 /* device wasn't explicitly listed, so need
525 * explicit domain match - which we have */
528 /* if domains don't match mark as unused */
530 dev_policy_free(pol
);
533 domain_free(domains
);
535 if (st
&& st
->sb
&& content
== *contentp
)
536 st
->ss
->getinfo_super(st
, content
, NULL
);
544 int uptodate
; /* set once we decide that this device is as
545 * recent as everything else in the array.
547 int included
; /* set if the device is already in the array
548 * due to a previous '-I'
553 static int load_devices(struct devs
*devices
, char *devmap
,
554 struct mddev_ident
*ident
, struct supertype
**stp
,
555 struct mddev_dev
*devlist
, struct context
*c
,
556 struct mdinfo
*content
,
557 int mdfd
, char *mddev
,
558 int *most_recentp
, int *bestcntp
, int **bestp
,
561 struct mddev_dev
*tmpdev
;
567 int most_recent
= -1;
570 struct supertype
*st
= *stp
;
572 for (tmpdev
= devlist
; tmpdev
; tmpdev
=tmpdev
->next
) {
573 char *devname
= tmpdev
->devname
;
575 struct supertype
*tst
;
578 if (tmpdev
->used
!= 1)
580 /* looks like a good enough match to update the super block if needed */
584 /* prepare useful information in info structures */
589 if (strcmp(c
->update
, "uuid")==0 &&
592 if ((rfd
= open("/dev/urandom", O_RDONLY
)) < 0 ||
593 read(rfd
, ident
->uuid
, 16) != 16) {
594 *(__u32
*)(ident
->uuid
) = random();
595 *(__u32
*)(ident
->uuid
+1) = random();
596 *(__u32
*)(ident
->uuid
+2) = random();
597 *(__u32
*)(ident
->uuid
+3) = random();
599 if (rfd
>= 0) close(rfd
);
601 dfd
= dev_open(devname
,
602 tmpdev
->disposition
== 'I'
603 ? O_RDWR
: (O_RDWR
|O_EXCL
));
606 if (dfd
< 0 || tst
->ss
->load_super(tst
, dfd
, NULL
) != 0) {
607 pr_err("cannot re-read metadata from %s - aborting\n",
614 tst
->ss
->free_super(tst
);
619 tst
->ss
->getinfo_super(tst
, content
, devmap
+ devcnt
* content
->array
.raid_disks
);
621 memcpy(content
->uuid
, ident
->uuid
, 16);
622 strcpy(content
->name
, ident
->name
);
623 content
->array
.md_minor
= minor(stb2
.st_rdev
);
625 if (strcmp(c
->update
, "byteorder") == 0)
628 err
= tst
->ss
->update_super(tst
, content
, c
->update
,
634 pr_err("--update=%s not understood"
635 " for %s metadata\n",
636 c
->update
, tst
->ss
->name
);
637 tst
->ss
->free_super(tst
);
646 if (strcmp(c
->update
, "uuid")==0 &&
649 memcpy(ident
->uuid
, content
->uuid
, 16);
651 if (tst
->ss
->store_super(tst
, dfd
))
652 pr_err("Could not re-write superblock on %s.\n",
656 if (strcmp(c
->update
, "uuid")==0 &&
657 ident
->bitmap_fd
>= 0 && !bitmap_done
) {
658 if (bitmap_update_uuid(ident
->bitmap_fd
,
660 tst
->ss
->swapuuid
) != 0)
661 pr_err("Could not update uuid on external bitmap.\n");
668 int dfd
= dev_open(devname
,
669 tmpdev
->disposition
== 'I'
670 ? O_RDWR
: (O_RDWR
|O_EXCL
));
673 if (dfd
< 0 || tst
->ss
->load_super(tst
, dfd
, NULL
) != 0) {
674 pr_err("cannot re-read metadata from %s - aborting\n",
681 tst
->ss
->free_super(tst
);
686 tst
->ss
->getinfo_super(tst
, content
, devmap
+ devcnt
* content
->array
.raid_disks
);
693 pr_err("%s is identified as a member of %s, slot %d%s.\n",
694 devname
, mddev
, content
->disk
.raid_disk
,
695 (content
->disk
.state
& (1<<MD_DISK_REPLACEMENT
)) ? " replacement":"");
696 devices
[devcnt
].devname
= devname
;
697 devices
[devcnt
].uptodate
= 0;
698 devices
[devcnt
].included
= (tmpdev
->disposition
== 'I');
699 devices
[devcnt
].i
= *content
;
700 devices
[devcnt
].i
.disk
.major
= major(stb
.st_rdev
);
701 devices
[devcnt
].i
.disk
.minor
= minor(stb
.st_rdev
);
703 if (devices
[devcnt
].i
.disk
.state
== 6) {
704 if (most_recent
< 0 ||
705 devices
[devcnt
].i
.events
706 > devices
[most_recent
].i
.events
) {
707 struct supertype
*tmp
= tst
;
710 most_recent
= devcnt
;
713 tst
->ss
->free_super(tst
);
716 if (content
->array
.level
== LEVEL_MULTIPATH
)
717 /* with multipath, the raid_disk from the superblock is meaningless */
720 i
= devices
[devcnt
].i
.disk
.raid_disk
;
722 if (nextspare
< content
->array
.raid_disks
*2)
723 nextspare
= content
->array
.raid_disks
*2;
726 /* i is raid_disk - double it so there is room for
729 if (devices
[devcnt
].i
.disk
.state
& (1<<MD_DISK_REPLACEMENT
))
731 if (i
>= content
->array
.raid_disks
*2 &&
737 int newbestcnt
= i
+10;
738 int *newbest
= xmalloc(sizeof(int)*newbestcnt
);
740 for (c
=0; c
< newbestcnt
; c
++)
742 newbest
[c
] = best
[c
];
747 bestcnt
= newbestcnt
;
750 devices
[best
[i
]].i
.events
751 == devices
[devcnt
].i
.events
752 && (devices
[best
[i
]].i
.disk
.minor
753 != devices
[devcnt
].i
.disk
.minor
)
755 && content
->array
.level
!= LEVEL_MULTIPATH
) {
756 /* two different devices with identical superblock.
757 * Could be a mis-detection caused by overlapping
758 * partitions. fail-safe.
760 pr_err("WARNING %s and %s appear"
761 " to have very similar superblocks.\n"
762 " If they are really different, "
763 "please --zero the superblock on one\n"
764 " If they are the same or overlap,"
765 " please remove one from %s.\n",
766 devices
[best
[i
]].devname
, devname
,
767 inargv
? "the list" :
768 "the\n DEVICE list in mdadm.conf"
777 || (devices
[best
[i
]].i
.events
778 < devices
[devcnt
].i
.events
))
783 if (most_recent
>= 0)
784 *most_recentp
= most_recent
;
791 static int force_array(struct mdinfo
*content
,
792 struct devs
*devices
,
793 int *best
, int bestcnt
, char *avail
,
795 struct supertype
*st
,
799 while (!enough(content
->array
.level
, content
->array
.raid_disks
,
800 content
->array
.layout
, 1,
803 (content
->reshape_active
&& content
->delta_disks
> 0 &&
804 !enough(content
->array
.level
, (content
->array
.raid_disks
805 - content
->delta_disks
),
806 content
->new_layout
, 1,
809 /* Choose the newest best drive which is
810 * not up-to-date, update the superblock
814 struct supertype
*tst
;
815 unsigned long long current_events
;
816 int chosen_drive
= -1;
820 i
< content
->array
.raid_disks
* 2 && i
< bestcnt
;
824 !devices
[j
].uptodate
&&
825 devices
[j
].i
.recovery_start
== MaxSector
&&
828 > devices
[chosen_drive
].i
.events
))
831 if (chosen_drive
< 0)
833 current_events
= devices
[chosen_drive
].i
.events
;
836 pr_err("forcing event count in %s(%d) from %d upto %d\n",
837 devices
[chosen_drive
].devname
,
838 devices
[chosen_drive
].i
.disk
.raid_disk
,
839 (int)(devices
[chosen_drive
].i
.events
),
840 (int)(devices
[most_recent
].i
.events
));
841 fd
= dev_open(devices
[chosen_drive
].devname
,
842 devices
[chosen_drive
].included
? O_RDWR
845 pr_err("Couldn't open %s for write - not updating\n",
846 devices
[chosen_drive
].devname
);
847 devices
[chosen_drive
].i
.events
= 0;
851 if (tst
->ss
->load_super(tst
,fd
, NULL
)) {
853 pr_err("RAID superblock disappeared from %s - not updating.\n",
854 devices
[chosen_drive
].devname
);
855 devices
[chosen_drive
].i
.events
= 0;
858 content
->events
= devices
[most_recent
].i
.events
;
859 tst
->ss
->update_super(tst
, content
, "force-one",
860 devices
[chosen_drive
].devname
, c
->verbose
,
863 if (tst
->ss
->store_super(tst
, fd
)) {
865 pr_err("Could not re-write superblock on %s\n",
866 devices
[chosen_drive
].devname
);
867 devices
[chosen_drive
].i
.events
= 0;
868 tst
->ss
->free_super(tst
);
872 devices
[chosen_drive
].i
.events
= devices
[most_recent
].i
.events
;
873 devices
[chosen_drive
].uptodate
= 1;
874 avail
[chosen_drive
] = 1;
876 tst
->ss
->free_super(tst
);
878 /* If there are any other drives of the same vintage,
879 * add them in as well. We can't lose and we might gain
882 i
< content
->array
.raid_disks
* 2 && i
< bestcnt
;
886 !devices
[j
].uptodate
&&
887 devices
[j
].i
.recovery_start
== MaxSector
&&
888 devices
[j
].i
.events
== current_events
) {
897 static int start_array(int mdfd
,
899 struct mdinfo
*content
,
900 struct supertype
*st
,
901 struct mddev_ident
*ident
,
902 int *best
, int bestcnt
,
904 struct devs
*devices
,
906 unsigned int sparecnt
,
907 unsigned int rebuilding_cnt
,
909 int clean
, char *avail
,
910 int start_partial_ok
,
917 unsigned int req_cnt
;
919 rv
= set_array_info(mdfd
, st
, content
);
921 pr_err("failed to set array info for %s: %s\n",
922 mddev
, strerror(errno
));
925 if (ident
->bitmap_fd
>= 0) {
926 if (ioctl(mdfd
, SET_BITMAP_FILE
, ident
->bitmap_fd
) != 0) {
927 pr_err("SET_BITMAP_FILE failed.\n");
930 } else if (ident
->bitmap_file
) {
931 /* From config file */
932 int bmfd
= open(ident
->bitmap_file
, O_RDWR
);
934 pr_err("Could not open bitmap file %s\n",
938 if (ioctl(mdfd
, SET_BITMAP_FILE
, bmfd
) != 0) {
939 pr_err("Failed to set bitmapfile for %s\n", mddev
);
946 /* First, add the raid disks, but add the chosen one last */
947 for (i
=0; i
<= bestcnt
; i
++) {
951 if (j
== chosen_drive
)
956 if (j
>= 0 && !devices
[j
].included
) {
957 int dfd
= dev_open(devices
[j
].devname
,
960 remove_partitions(dfd
);
963 rv
= add_disk(mdfd
, st
, content
, &devices
[j
].i
);
966 pr_err("failed to add "
971 if (i
< content
->array
.raid_disks
* 2
976 } else if (c
->verbose
> 0)
977 pr_err("added %s to %s as %d%s%s\n",
978 devices
[j
].devname
, mddev
,
979 devices
[j
].i
.disk
.raid_disk
,
980 devices
[j
].uptodate
?"":
981 " (possibly out of date)",
982 (devices
[j
].i
.disk
.state
& (1<<MD_DISK_REPLACEMENT
))?" replacement":"");
985 pr_err("%s is already in %s as %d\n",
986 devices
[j
].devname
, mddev
,
987 devices
[j
].i
.disk
.raid_disk
);
988 } else if (c
->verbose
> 0 && i
< content
->array
.raid_disks
*2
990 pr_err("no uptodate device for slot %d of %s\n",
994 if (content
->array
.level
== LEVEL_CONTAINER
) {
995 if (c
->verbose
>= 0) {
996 pr_err("Container %s has been "
997 "assembled with %d drive%s",
998 mddev
, okcnt
+sparecnt
, okcnt
+sparecnt
==1?"":"s");
999 if (okcnt
< (unsigned)content
->array
.raid_disks
)
1000 fprintf(stderr
, " (out of %d)",
1001 content
->array
.raid_disks
);
1002 fprintf(stderr
, "\n");
1004 st
->ss
->free_super(st
);
1005 sysfs_uevent(content
, "change");
1006 if (err_ok
&& okcnt
< (unsigned)content
->array
.raid_disks
)
1007 /* Was partial, is still partial, so signal an error
1008 * to ensure we don't retry */
1013 /* Get number of in-sync devices according to the superblock.
1014 * We must have this number to start the array without -s or -R
1016 req_cnt
= content
->array
.working_disks
;
1018 if (c
->runstop
== 1 ||
1020 ( enough(content
->array
.level
, content
->array
.raid_disks
,
1021 content
->array
.layout
, clean
, avail
) &&
1022 (okcnt
+ rebuilding_cnt
>= req_cnt
|| start_partial_ok
)
1024 /* This array is good-to-go.
1025 * If a reshape is in progress then we might need to
1026 * continue monitoring it. In that case we start
1027 * it read-only and let the grow code make it writable.
1031 if (content
->reshape_active
&&
1032 !(content
->reshape_active
& RESHAPE_NO_BACKUP
) &&
1033 content
->delta_disks
<= 0) {
1034 if (!c
->backup_file
) {
1035 pr_err("%s: Need a backup file to complete reshape of this array.\n",
1037 pr_err("Please provided one with \"--backup-file=...\"\n");
1039 strcmp(c
->update
, "revert-reshape") == 0)
1040 pr_err("(Don't specify --update=revert-reshape again, that part succeeded.)\n");
1043 rv
= sysfs_set_str(content
, NULL
,
1044 "array_state", "readonly");
1046 rv
= Grow_continue(mdfd
, st
, content
,
1049 } else if (c
->readonly
&&
1050 sysfs_attribute_available(
1051 content
, NULL
, "array_state")) {
1052 rv
= sysfs_set_str(content
, NULL
,
1053 "array_state", "readonly");
1056 rv
= ioctl(mdfd
, RUN_ARRAY
, NULL
);
1057 reopen_mddev(mdfd
); /* drop O_EXCL */
1059 if (c
->verbose
>= 0) {
1060 pr_err("%s has been started with %d drive%s",
1061 mddev
, okcnt
, okcnt
==1?"":"s");
1062 if (okcnt
< (unsigned)content
->array
.raid_disks
)
1063 fprintf(stderr
, " (out of %d)", content
->array
.raid_disks
);
1065 fprintf(stderr
, "%s %d rebuilding", sparecnt
?",":" and", rebuilding_cnt
);
1067 fprintf(stderr
, " and %d spare%s", sparecnt
, sparecnt
==1?"":"s");
1068 fprintf(stderr
, ".\n");
1070 if (content
->reshape_active
&&
1071 content
->array
.level
>= 4 &&
1072 content
->array
.level
<= 6) {
1073 /* might need to increase the size
1074 * of the stripe cache - default is 256
1076 if (256 < 4 * (content
->array
.chunk_size
/4096)) {
1077 struct mdinfo
*sra
= sysfs_read(mdfd
, NULL
, 0);
1079 sysfs_set_num(sra
, NULL
,
1080 "stripe_cache_size",
1081 (4 * content
->array
.chunk_size
/ 4096) + 1);
1085 if (okcnt
< (unsigned)content
->array
.raid_disks
) {
1086 /* If any devices did not get added
1087 * because the kernel rejected them based
1088 * on event count, try adding them
1089 * again providing the action policy is
1090 * 're-add' or greater. The bitmap
1091 * might allow them to be included, or
1092 * they will become spares.
1094 for (i
= 0; i
< bestcnt
; i
++) {
1096 if (j
>= 0 && !devices
[j
].uptodate
) {
1097 if (!disk_action_allows(&devices
[j
].i
, st
->ss
->name
, act_re_add
))
1099 rv
= add_disk(mdfd
, st
, content
,
1101 if (rv
== 0 && c
->verbose
>= 0)
1102 pr_err("%s has been re-added.\n",
1103 devices
[j
].devname
);
1107 if (content
->array
.level
== 6 &&
1108 okcnt
+ 1 == (unsigned)content
->array
.raid_disks
&&
1110 struct mdinfo
*sra
= sysfs_read(mdfd
, NULL
, 0);
1112 sysfs_set_str(sra
, NULL
,
1113 "sync_action", "repair");
1118 pr_err("failed to RUN_ARRAY %s: %s\n",
1119 mddev
, strerror(errno
));
1121 if (!enough(content
->array
.level
, content
->array
.raid_disks
,
1122 content
->array
.layout
, 1, avail
))
1123 pr_err("Not enough devices to "
1124 "start the array.\n");
1125 else if (!enough(content
->array
.level
,
1126 content
->array
.raid_disks
,
1127 content
->array
.layout
, clean
,
1129 pr_err("Not enough devices to "
1130 "start the array while not clean "
1131 "- consider --force.\n");
1135 if (c
->runstop
== -1) {
1136 pr_err("%s assembled from %d drive%s",
1137 mddev
, okcnt
, okcnt
==1?"":"s");
1138 if (okcnt
!= (unsigned)content
->array
.raid_disks
)
1139 fprintf(stderr
, " (out of %d)", content
->array
.raid_disks
);
1140 fprintf(stderr
, ", but not started.\n");
1143 if (c
->verbose
>= -1) {
1144 pr_err("%s assembled from %d drive%s", mddev
, okcnt
, okcnt
==1?"":"s");
1146 fprintf(stderr
, "%s %d rebuilding", sparecnt
?",":" and", rebuilding_cnt
);
1148 fprintf(stderr
, " and %d spare%s", sparecnt
, sparecnt
==1?"":"s");
1149 if (!enough(content
->array
.level
, content
->array
.raid_disks
,
1150 content
->array
.layout
, 1, avail
))
1151 fprintf(stderr
, " - not enough to start the array.\n");
1152 else if (!enough(content
->array
.level
,
1153 content
->array
.raid_disks
,
1154 content
->array
.layout
, clean
,
1156 fprintf(stderr
, " - not enough to start the "
1157 "array while not clean - consider "
1160 if (req_cnt
== (unsigned)content
->array
.raid_disks
)
1161 fprintf(stderr
, " - need all %d to start it", req_cnt
);
1163 fprintf(stderr
, " - need %d to start", req_cnt
);
1164 fprintf(stderr
, " (use --run to insist).\n");
1170 int Assemble(struct supertype
*st
, char *mddev
,
1171 struct mddev_ident
*ident
,
1172 struct mddev_dev
*devlist
,
1176 * The task of Assemble is to find a collection of
1177 * devices that should (according to their superblocks)
1178 * form an array, and to give this collection to the MD driver.
1179 * In Linux-2.4 and later, this involves submitting a
1180 * SET_ARRAY_INFO ioctl with no arg - to prepare
1181 * the array - and then submit a number of
1182 * ADD_NEW_DISK ioctls to add disks into
1183 * the array. Finally RUN_ARRAY might
1184 * be submitted to start the array.
1186 * Much of the work of Assemble is in finding and/or
1187 * checking the disks to make sure they look right.
1189 * If mddev is not set, then scan must be set and we
1190 * read through the config file for dev+uuid mapping
1191 * We recurse, setting mddev, for each device that
1193 * - has a valid uuid (or any uuid if !uuidset)
1195 * If mddev is set, we try to determine state of md.
1196 * check version - must be at least 0.90.0
1197 * check kernel version. must be at least 2.4.
1198 * If not, we can possibly fall back on START_ARRAY
1199 * Try to GET_ARRAY_INFO.
1200 * If possible, give up
1201 * If not, try to STOP_ARRAY just to make sure
1203 * If !uuidset and scan, look in conf-file for uuid
1204 * If not found, give up
1205 * If !devlist and scan and uuidset, get list of devs from conf-file
1208 * Check superblock - discard if bad
1209 * Check uuid (set if we don't have one) - discard if no match
1210 * Check superblock similarity if we have a superblock - discard if different
1211 * Record events, devicenum
1212 * This should give us a list of devices for the array
1213 * We should collect the most recent event number
1215 * Count disks with recent enough event count
1216 * While force && !enough disks
1217 * Choose newest rejected disks, update event count
1218 * mark clean and rewrite superblock
1221 * foreach device with recent events : ADD_NEW_DISK
1222 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
1224 * Check the device numbers in superblock are right
1225 * update superblock if any changes
1232 int auto_assem
= (mddev
== NULL
&& !ident
->uuid_set
&&
1233 ident
->super_minor
== UnSet
&& ident
->name
[0] == 0
1234 && (ident
->container
== NULL
|| ident
->member
== NULL
));
1235 struct devs
*devices
;
1237 int *best
= NULL
; /* indexed by raid_disk */
1240 unsigned int okcnt
, sparecnt
, rebuilding_cnt
, replcnt
;
1243 int most_recent
= 0;
1247 int start_partial_ok
= (c
->runstop
>= 0) &&
1248 (c
->force
|| devlist
==NULL
|| auto_assem
);
1250 struct mddev_dev
*tmpdev
;
1252 struct mdinfo
*content
= NULL
;
1253 struct mdinfo
*pre_exist
= NULL
;
1256 char chosen_name
[1024];
1257 struct map_ent
*map
= NULL
;
1261 * If any subdevs are listed, then any that don't
1262 * match ident are discarded. Remainder must all match and
1264 * If no subdevs, then we scan all devices in the config file, but
1265 * there must be something in the identity
1269 ident
->uuid_set
== 0 &&
1270 (ident
->super_minor
< 0 || ident
->super_minor
== UnSet
) &&
1271 ident
->name
[0] == 0 &&
1272 (ident
->container
== NULL
|| ident
->member
== NULL
) &&
1273 ident
->devices
== NULL
) {
1274 pr_err("No identity information available for %s - cannot assemble.\n",
1275 mddev
? mddev
: "further assembly");
1279 if (devlist
== NULL
)
1280 devlist
= conf_get_devs();
1285 /* We come back here when doing auto-assembly and attempting some
1286 * set of devices failed. Those are now marked as ->used==2 and
1287 * we ignore them and try again
1289 if (!st
&& ident
->st
)
1292 pr_err("looking for devices for %s\n",
1293 mddev
? mddev
: "further assembly");
1297 st
->ignore_hw_compat
= 1;
1298 num_devs
= select_devices(devlist
, ident
, &st
, &content
, c
,
1299 inargv
, auto_assem
);
1303 if (!st
|| !st
->sb
|| !content
)
1306 /* We have a full set of devices - we now need to find the
1308 * However there is a risk that we are racing with "mdadm -I"
1309 * and the array is already partially assembled - we will have
1310 * rejected any devices already in this address.
1311 * So we take a lock on the map file - to prevent further races -
1312 * and look for the uuid in there. If found and the array is
1313 * active, we abort. If found and the array is not active
1314 * we commit to that md device and add all the contained devices
1315 * to our list. We flag them so that we don't try to re-add,
1316 * but can remove if they turn out to not be wanted.
1319 pr_err("failed to get exclusive lock on mapfile - continue anyway...\n");
1320 mp
= map_by_uuid(&map
, content
->uuid
);
1323 /* array already exists. */
1324 pre_exist
= sysfs_read(-1, mp
->devnm
, GET_LEVEL
|GET_DEVS
);
1325 if (pre_exist
->array
.level
!= UnSet
) {
1326 pr_err("Found some drive for an array that is already active: %s\n",
1328 pr_err("giving up.\n");
1331 for (dv
= pre_exist
->devs
; dv
; dv
= dv
->next
) {
1332 /* We want to add this device to our list,
1333 * but it could already be there if "mdadm -I"
1334 * started *after* we checked for O_EXCL.
1335 * If we add it to the top of the list
1336 * it will be preferred over later copies.
1338 struct mddev_dev
*newdev
;
1339 char *devname
= map_dev(dv
->disk
.major
,
1344 newdev
= xmalloc(sizeof(*newdev
));
1345 newdev
->devname
= devname
;
1346 newdev
->disposition
= 'I';
1348 newdev
->next
= devlist
;
1352 strcpy(chosen_name
, mp
->path
);
1353 if (c
->verbose
> 0 || mddev
== NULL
||
1354 strcmp(mddev
, chosen_name
) != 0)
1355 pr_err("Merging with already-assembled %s\n",
1357 mdfd
= open_dev_excl(mp
->devnm
);
1359 int trustworthy
= FOREIGN
;
1360 name
= content
->name
;
1361 switch (st
->ss
->match_home(st
, c
->homehost
)
1362 ?: st
->ss
->match_home(st
, "any")) {
1364 trustworthy
= LOCAL
;
1365 name
= strchr(content
->name
, ':');
1369 name
= content
->name
;
1373 /* If the array is listed in mdadm.conf or on
1374 * command line, then we trust the name
1375 * even if the array doesn't look local
1377 trustworthy
= LOCAL
;
1380 content
->array
.level
== LEVEL_CONTAINER
) {
1381 name
= content
->text_version
;
1382 trustworthy
= METADATA
;
1385 if (name
[0] && trustworthy
!= LOCAL
&&
1386 ! c
->require_homehost
&&
1387 conf_name_is_free(name
))
1388 trustworthy
= LOCAL
;
1390 if (trustworthy
== LOCAL
&&
1392 /* Ignore 'host:' prefix of name */
1393 name
= strchr(name
, ':')+1;
1395 mdfd
= create_mddev(mddev
, name
, ident
->autof
, trustworthy
,
1399 st
->ss
->free_super(st
);
1404 mddev
= chosen_name
;
1405 if (get_linux_version() < 2004000 ||
1406 md_get_version(mdfd
) < 9000) {
1407 pr_err("Assemble requires Linux 2.4 or later, and\n"
1408 " md driver version 0.90.0 or later.\n"
1409 " Upgrade your kernel or try --build\n");
1413 if (pre_exist
== NULL
) {
1414 if (mddev_busy(fd2devnm(mdfd
))) {
1415 pr_err("%s already active, cannot restart it!\n",
1417 for (tmpdev
= devlist
;
1418 tmpdev
&& tmpdev
->used
!= 1;
1419 tmpdev
= tmpdev
->next
)
1421 if (tmpdev
&& auto_assem
)
1422 pr_err("%s needed for %s...\n",
1423 mddev
, tmpdev
->devname
);
1426 st
->ss
->free_super(st
);
1431 /* just incase it was started but has no content */
1432 ioctl(mdfd
, STOP_ARRAY
, NULL
);
1436 if (content
!= &info
) {
1437 /* This is a member of a container. Try starting the array. */
1439 err
= assemble_container_content(st
, mdfd
, content
, c
,
1445 /* Ok, no bad inconsistancy, we can try updating etc */
1446 devices
= xcalloc(num_devs
, sizeof(*devices
));
1447 devmap
= xcalloc(num_devs
, content
->array
.raid_disks
);
1448 devcnt
= load_devices(devices
, devmap
, ident
, &st
, devlist
,
1449 c
, content
, mdfd
, mddev
,
1450 &most_recent
, &bestcnt
, &best
, inargv
);
1455 pr_err("no devices found for %s\n",
1458 st
->ss
->free_super(st
);
1465 if (c
->update
&& strcmp(c
->update
, "byteorder")==0)
1466 st
->minor_version
= 90;
1468 st
->ss
->getinfo_super(st
, content
, NULL
);
1469 clean
= content
->array
.state
& 1;
1471 /* now we have some devices that might be suitable.
1474 avail
= xcalloc(content
->array
.raid_disks
, 1);
1479 for (i
=0; i
< bestcnt
; i
++) {
1481 int event_margin
= 1; /* always allow a difference of '1'
1482 * like the kernel does
1484 if (j
< 0) continue;
1485 /* note: we ignore error flags in multipath arrays
1486 * as they don't make sense
1488 if (content
->array
.level
!= LEVEL_MULTIPATH
)
1489 if (!(devices
[j
].i
.disk
.state
& (1<<MD_DISK_ACTIVE
))) {
1490 if (!(devices
[j
].i
.disk
.state
1491 & (1<<MD_DISK_FAULTY
))) {
1492 devices
[j
].uptodate
= 1;
1497 /* If this device thinks that 'most_recent' has failed, then
1498 * we must reject this device.
1500 if (j
!= most_recent
&& !c
->force
&&
1501 content
->array
.raid_disks
> 0 &&
1502 devices
[most_recent
].i
.disk
.raid_disk
>= 0 &&
1503 devmap
[j
* content
->array
.raid_disks
+ devices
[most_recent
].i
.disk
.raid_disk
] == 0) {
1504 if (c
->verbose
> -1)
1505 pr_err("ignoring %s as it reports %s as failed\n",
1506 devices
[j
].devname
, devices
[most_recent
].devname
);
1510 /* Require event counter to be same as, or just less than,
1511 * most recent. If it is bigger, it must be a stray spare and
1512 * should be ignored.
1514 if (devices
[j
].i
.events
+event_margin
>=
1515 devices
[most_recent
].i
.events
&&
1516 devices
[j
].i
.events
<=
1517 devices
[most_recent
].i
.events
1519 devices
[j
].uptodate
= 1;
1520 if (i
< content
->array
.raid_disks
* 2) {
1521 if (devices
[j
].i
.recovery_start
== MaxSector
||
1522 (content
->reshape_active
&&
1523 ((i
>= content
->array
.raid_disks
- content
->delta_disks
) ||
1524 (i
>= content
->array
.raid_disks
- content
->delta_disks
- 1
1525 && content
->array
.level
== 4)))) {
1539 int force_ok
= force_array(content
, devices
, best
, bestcnt
,
1540 avail
, most_recent
, st
, c
);
1545 /* Now we want to look at the superblock which the kernel will base things on
1546 * and compare the devices that we think are working with the devices that the
1547 * superblock thinks are working.
1548 * If there are differences and --force is given, then update this chosen
1552 st
->ss
->free_super(st
);
1553 for (i
=0; chosen_drive
< 0 && i
<bestcnt
; i
+=2) {
1559 if (!devices
[j
].uptodate
)
1561 if (devices
[j
].i
.events
< devices
[most_recent
].i
.events
)
1564 if ((fd
=dev_open(devices
[j
].devname
,
1565 devices
[j
].included
? O_RDONLY
1566 : (O_RDONLY
|O_EXCL
)))< 0) {
1567 pr_err("Cannot open %s: %s\n",
1568 devices
[j
].devname
, strerror(errno
));
1573 if (st
->ss
->load_super(st
,fd
, NULL
)) {
1575 pr_err("RAID superblock has disappeared from %s\n",
1576 devices
[j
].devname
);
1583 if (st
->sb
== NULL
) {
1584 pr_err("No suitable drives found for %s\n", mddev
);
1589 st
->ss
->getinfo_super(st
, content
, NULL
);
1591 sysfs_init(content
, mdfd
, NULL
);
1593 for (i
=0; i
<bestcnt
; i
++) {
1595 unsigned int desired_state
;
1597 if (i
>= content
->array
.raid_disks
* 2)
1600 desired_state
= (1<<MD_DISK_ACTIVE
) | (1<<MD_DISK_REPLACEMENT
);
1602 desired_state
= (1<<MD_DISK_ACTIVE
) | (1<<MD_DISK_SYNC
);
1606 if (!devices
[j
].uptodate
)
1609 devices
[j
].i
.disk
.state
= desired_state
;
1610 if (!(devices
[j
].i
.array
.state
& 1))
1613 if (st
->ss
->update_super(st
, &devices
[j
].i
, "assemble", NULL
,
1614 c
->verbose
, 0, NULL
)) {
1616 if (c
->verbose
>= 0)
1617 pr_err("clearing FAULTY flag for device %d in %s for %s\n",
1618 j
, mddev
, devices
[j
].devname
);
1621 if (c
->verbose
>= -1)
1622 pr_err("device %d in %s has wrong state in superblock, but %s seems ok\n",
1623 i
, mddev
, devices
[j
].devname
);
1627 if (!(super
.disks
[i
].i
.disk
.state
& (1 << MD_DISK_FAULTY
))) {
1628 pr_err("devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
1633 if (c
->force
&& !clean
&&
1634 !enough(content
->array
.level
, content
->array
.raid_disks
,
1635 content
->array
.layout
, clean
,
1637 change
+= st
->ss
->update_super(st
, content
, "force-array",
1638 devices
[chosen_drive
].devname
, c
->verbose
,
1646 fd
= dev_open(devices
[chosen_drive
].devname
,
1647 devices
[chosen_drive
].included
?
1648 O_RDWR
: (O_RDWR
|O_EXCL
));
1650 pr_err("Could not open %s for write - cannot Assemble array.\n",
1651 devices
[chosen_drive
].devname
);
1656 if (st
->ss
->store_super(st
, fd
)) {
1658 pr_err("Could not re-write superblock on %s\n",
1659 devices
[chosen_drive
].devname
);
1664 if (c
->verbose
>= 0)
1665 pr_err("Marking array %s as 'clean'\n",
1670 /* If we are in the middle of a reshape we may need to restore saved data
1671 * that was moved aside due to the reshape overwriting live data
1672 * The code of doing this lives in Grow.c
1675 if (content
->reshape_active
&&
1676 !(content
->reshape_active
& RESHAPE_NO_BACKUP
)) {
1678 int *fdlist
= xmalloc(sizeof(int)* bestcnt
);
1680 pr_err(":%s has an active reshape - checking "
1681 "if critical section needs to be restored\n",
1683 if (!c
->backup_file
)
1684 c
->backup_file
= locate_backup(content
->sys_name
);
1685 enable_fds(bestcnt
/2);
1686 for (i
= 0; i
< bestcnt
/2; i
++) {
1689 fdlist
[i
] = dev_open(devices
[j
].devname
,
1691 ? O_RDWR
: (O_RDWR
|O_EXCL
));
1692 if (fdlist
[i
] < 0) {
1693 pr_err("Could not open %s for write - cannot Assemble array.\n",
1694 devices
[j
].devname
);
1702 if (st
->ss
->external
&& st
->ss
->recover_backup
)
1703 err
= st
->ss
->recover_backup(st
, content
);
1705 err
= Grow_restart(st
, content
, fdlist
, bestcnt
/2,
1706 c
->backup_file
, c
->verbose
> 0);
1707 if (err
&& c
->invalid_backup
) {
1710 " without restoring backup\n");
1716 if (fdlist
[i
]>=0) close(fdlist
[i
]);
1720 pr_err("Failed to restore critical section for reshape, sorry.\n");
1721 if (c
->backup_file
== NULL
)
1722 cont_err("Possibly you needed to specify the --backup-file\n");
1730 /* Almost ready to actually *do* something */
1731 /* First, fill in the map, so that udev can find our name
1732 * as soon as we become active.
1734 if (c
->update
&& strcmp(c
->update
, "metadata")==0) {
1735 content
->array
.major_version
= 1;
1736 content
->array
.minor_version
= 0;
1737 strcpy(content
->text_version
, "1.0");
1740 map_update(&map
, fd2devnm(mdfd
), content
->text_version
,
1741 content
->uuid
, chosen_name
);
1743 rv
= start_array(mdfd
, mddev
, content
,
1744 st
, ident
, best
, bestcnt
,
1745 chosen_drive
, devices
, okcnt
, sparecnt
,
1748 clean
, avail
, start_partial_ok
,
1751 if (rv
== 1 && !pre_exist
)
1752 ioctl(mdfd
, STOP_ARRAY
, NULL
);
1756 wait_for(chosen_name
, mdfd
);
1760 /* There is a nasty race with 'mdadm --monitor'.
1761 * If it opens this device before we close it,
1762 * it gets an incomplete open on which IO
1763 * doesn't work and the capacity is
1765 * If we reopen (to check for layered devices)
1766 * before --monitor closes, we loose.
1768 * So: wait upto 1 second for there to be
1769 * a non-zero capacity.
1771 while (usecs
< 1000) {
1772 mdfd
= open(mddev
, O_RDONLY
);
1774 unsigned long long size
;
1775 if (get_dev_size(mdfd
, NULL
, &size
) &&
1787 /* '2' means 'OK, but not started yet' */
1788 return rv
== 2 ? 0 : rv
;
1792 int assemble_container_content(struct supertype
*st
, int mdfd
,
1793 struct mdinfo
*content
, struct context
*c
,
1794 char *chosen_name
, int *result
)
1796 struct mdinfo
*dev
, *sra
;
1797 int working
= 0, preexist
= 0;
1799 struct map_ent
*map
= NULL
;
1805 sysfs_init(content
, mdfd
, NULL
);
1807 sra
= sysfs_read(mdfd
, NULL
, GET_VERSION
);
1808 if (sra
== NULL
|| strcmp(sra
->text_version
, content
->text_version
) != 0) {
1809 if (content
->array
.major_version
== -1 &&
1810 content
->array
.minor_version
== -2 &&
1812 content
->text_version
[0] == '/')
1813 content
->text_version
[0] = '-';
1814 if (sysfs_set_array(content
, md_get_version(mdfd
)) != 0) {
1821 /* There are two types of reshape: container wide or sub-array specific
1822 * Check if metadata requests blocking container wide reshapes
1824 start_reshape
= (content
->reshape_active
&&
1825 !((content
->reshape_active
== CONTAINER_RESHAPE
) &&
1826 (content
->array
.state
& (1<<MD_SB_BLOCK_CONTAINER_RESHAPE
))));
1828 /* Block subarray here if it is under reshape now
1829 * Do not allow for any changes in this array
1831 if (st
->ss
->external
&& content
->recovery_blocked
&& start_reshape
)
1832 block_subarray(content
);
1836 old_raid_disks
= content
->array
.raid_disks
- content
->delta_disks
;
1837 avail
= xcalloc(content
->array
.raid_disks
, 1);
1838 for (dev
= content
->devs
; dev
; dev
= dev
->next
) {
1839 if (dev
->disk
.raid_disk
>= 0)
1840 avail
[dev
->disk
.raid_disk
] = 1;
1841 if (sysfs_add_disk(content
, dev
, 1) == 0) {
1842 if (dev
->disk
.raid_disk
>= old_raid_disks
&&
1843 content
->reshape_active
)
1847 } else if (errno
== EEXIST
)
1850 if (working
+ expansion
== 0 && c
->runstop
<= 0) {
1852 return 1;/* Nothing new, don't try to start */
1854 map_update(&map
, fd2devnm(mdfd
),
1855 content
->text_version
,
1856 content
->uuid
, chosen_name
);
1859 if (enough(content
->array
.level
, content
->array
.raid_disks
,
1860 content
->array
.layout
, content
->array
.state
& 1, avail
) == 0) {
1861 if (c
->export
&& result
)
1863 else if (c
->verbose
>= 0) {
1864 pr_err("%s assembled with %d device%s",
1865 chosen_name
, preexist
+ working
,
1866 preexist
+ working
== 1 ? "":"s");
1868 fprintf(stderr
, " (%d new)", working
);
1869 fprintf(stderr
, " but not started\n");
1876 if (c
->runstop
<= 0 &&
1877 (working
+ preexist
+ expansion
) <
1878 content
->array
.working_disks
) {
1879 if (c
->export
&& result
)
1880 *result
|= INCR_UNSAFE
;
1881 else if (c
->verbose
>= 0) {
1882 pr_err("%s assembled with %d device%s",
1883 chosen_name
, preexist
+ working
,
1884 preexist
+ working
== 1 ? "":"s");
1886 fprintf(stderr
, " (%d new)", working
);
1887 fprintf(stderr
, " but not safe to start\n");
1893 if (start_reshape
) {
1894 int spare
= content
->array
.raid_disks
+ expansion
;
1895 if (restore_backup(st
, content
,
1897 spare
, &c
->backup_file
, c
->verbose
) == 1)
1900 err
= sysfs_set_str(content
, NULL
,
1901 "array_state", "readonly");
1905 if (st
->ss
->external
) {
1906 if (!mdmon_running(st
->container_devnm
))
1907 start_mdmon(st
->container_devnm
);
1908 ping_monitor(st
->container_devnm
);
1909 if (mdmon_running(st
->container_devnm
) &&
1910 st
->update_tail
== NULL
)
1911 st
->update_tail
= &st
->updates
;
1914 err
= Grow_continue(mdfd
, st
, content
, c
->backup_file
,
1915 0, c
->freeze_reshape
);
1916 } else switch(content
->array
.level
) {
1918 case LEVEL_MULTIPATH
:
1920 err
= sysfs_set_str(content
, NULL
, "array_state",
1921 c
->readonly
? "readonly" : "active");
1924 err
= sysfs_set_str(content
, NULL
, "array_state",
1926 /* start mdmon if needed. */
1928 if (!mdmon_running(st
->container_devnm
))
1929 start_mdmon(st
->container_devnm
);
1930 ping_monitor(st
->container_devnm
);
1935 sysfs_set_safemode(content
, content
->safe_mode_delay
);
1937 /* Block subarray here if it is not reshaped now
1938 * It has be blocked a little later to allow mdmon to switch in
1941 if (st
->ss
->external
&& content
->recovery_blocked
&&
1943 block_subarray(content
);
1945 if (c
->export
&& result
) {
1949 *result
|= INCR_YES
;
1950 } else if (c
->verbose
>= 0) {
1952 pr_err("array %s now has %d device%s",
1953 chosen_name
, working
+ preexist
,
1954 working
+ preexist
== 1 ? "":"s");
1956 pr_err("Started %s with %d device%s",
1957 chosen_name
, working
+ preexist
,
1958 working
+ preexist
== 1 ? "":"s");
1960 fprintf(stderr
, " (%d new)", working
);
1962 fprintf(stderr
, " ( + %d for expansion)",
1964 fprintf(stderr
, "\n");
1967 wait_for(chosen_name
, mdfd
);
1969 /* FIXME should have an O_EXCL and wait for read-auto */