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
33 static int name_matches(char *found
, char *required
, char *homehost
)
35 /* See if the name found matches the required name, possibly
36 * prefixed with 'homehost'
40 strncpy(fnd
, found
, 32);
42 if (strcmp(found
, required
)==0)
45 int l
= strlen(homehost
);
46 if (l
< 32 && fnd
[l
] == ':' &&
47 strcmp(fnd
+l
+1, required
)==0)
53 int Assemble(struct supertype
*st
, char *mddev
, int mdfd
,
55 mddev_dev_t devlist
, char *backup_file
,
56 int readonly
, int runstop
,
57 char *update
, char *homehost
,
58 int verbose
, int force
)
61 * The task of Assemble is to find a collection of
62 * devices that should (according to their superblocks)
63 * form an array, and to give this collection to the MD driver.
64 * In Linux-2.4 and later, this involves submitting a
65 * SET_ARRAY_INFO ioctl with no arg - to prepare
66 * the array - and then submit a number of
67 * ADD_NEW_DISK ioctls to add disks into
68 * the array. Finally RUN_ARRAY might
69 * be submitted to start the array.
71 * Much of the work of Assemble is in finding and/or
72 * checking the disks to make sure they look right.
74 * If mddev is not set, then scan must be set and we
75 * read through the config file for dev+uuid mapping
76 * We recurse, setting mddev, for each device that
78 * - has a valid uuid (or any uuid if !uuidset)
80 * If mddev is set, we try to determine state of md.
81 * check version - must be at least 0.90.0
82 * check kernel version. must be at least 2.4.
83 * If not, we can possibly fall back on START_ARRAY
84 * Try to GET_ARRAY_INFO.
85 * If possible, give up
86 * If not, try to STOP_ARRAY just to make sure
88 * If !uuidset and scan, look in conf-file for uuid
89 * If not found, give up
90 * If !devlist and scan and uuidset, get list of devs from conf-file
93 * Check superblock - discard if bad
94 * Check uuid (set if we don't have one) - discard if no match
95 * Check superblock similarity if we have a superblock - discard if different
96 * Record events, devicenum
97 * This should give us a list of devices for the array
98 * We should collect the most recent event number
100 * Count disks with recent enough event count
101 * While force && !enough disks
102 * Choose newest rejected disks, update event count
103 * mark clean and rewrite superblock
106 * foreach device with recent events : ADD_NEW_DISK
107 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
109 * Check the device numbers in superblock are right
110 * update superblock if any changes
117 int vers
= 0; /* Keep gcc quite - it really is initialised */
118 void *first_super
= NULL
, *super
= NULL
;
121 unsigned int major
, minor
;
122 unsigned int oldmajor
, oldminor
;
129 int *best
= NULL
; /* indexed by raid_disk */
130 unsigned int bestcnt
= 0;
132 unsigned int okcnt
, sparecnt
;
133 unsigned int req_cnt
;
140 int start_partial_ok
= (runstop
>= 0) && (force
|| devlist
==NULL
|| mdfd
< 0);
141 unsigned int num_devs
;
147 if (get_linux_version() < 2004000)
151 vers
= md_get_version(mdfd
);
153 fprintf(stderr
, Name
": %s appears not to be an md device.\n", mddev
);
157 fprintf(stderr
, Name
": Assemble requires driver version 0.90.0 or later.\n"
158 " Upgrade your kernel or try --build\n");
162 if (ioctl(mdfd
, GET_ARRAY_INFO
, &info
.array
)>=0) {
163 fprintf(stderr
, Name
": device %s already active - cannot assemble it\n",
167 ioctl(mdfd
, STOP_ARRAY
, NULL
); /* just incase it was started but has no content */
170 * If any subdevs are listed, then any that don't
171 * match ident are discarded. Remainder must all match and
173 * If no subdevs, then we scan all devices in the config file, but
174 * there must be something in the identity
178 ident
->uuid_set
== 0 &&
179 ident
->super_minor
< 0 &&
180 ident
->devices
== NULL
) {
181 fprintf(stderr
, Name
": No identity information available for %s - cannot assemble.\n",
182 mddev
? mddev
: "further assembly");
186 devlist
= conf_get_devs();
192 tmpdev
= devlist
; num_devs
= 0;
198 tmpdev
= tmpdev
->next
;
200 devices
= malloc(num_devs
* sizeof(*devices
));
202 if (!st
&& ident
->st
) st
= ident
->st
;
205 fprintf(stderr
, Name
": looking for devices for %s\n",
206 mddev
? mddev
: "further assembly");
208 /* first walk the list of devices to find a consistent set
209 * that match the criterea, if that is possible.
210 * We flag the one we like with 'used'.
212 for (tmpdev
= devlist
;
214 tmpdev
= tmpdev
->next
) {
215 char *devname
= tmpdev
->devname
;
218 struct supertype
*tst
= st
;
220 if (tmpdev
->used
> 1) continue;
222 if (ident
->devices
&&
223 !match_oneof(ident
->devices
, devname
)) {
224 if ((inargv
&& verbose
>=0) || verbose
> 0)
225 fprintf(stderr
, Name
": %s is not one of %s\n", devname
, ident
->devices
);
234 dfd
= dev_open(devname
, O_RDONLY
|O_EXCL
);
236 if ((inargv
&& verbose
>= 0) || verbose
> 0)
237 fprintf(stderr
, Name
": cannot open device %s: %s\n",
238 devname
, strerror(errno
));
240 } else if (fstat(dfd
, &stb
)< 0) {
242 fprintf(stderr
, Name
": fstat failed for %s: %s\n",
243 devname
, strerror(errno
));
245 } else if ((stb
.st_mode
& S_IFMT
) != S_IFBLK
) {
246 fprintf(stderr
, Name
": %s is not a block device.\n",
249 } else if (!tst
&& (tst
= guess_super(dfd
)) == NULL
) {
250 if ((inargv
&& verbose
>= 0) || verbose
> 0)
251 fprintf(stderr
, Name
": no recogniseable superblock on %s\n",
254 } else if (tst
->ss
->load_super(tst
,dfd
, &super
, NULL
)) {
255 if ((inargv
&& verbose
>= 0) || verbose
> 0)
256 fprintf( stderr
, Name
": no RAID superblock on %s\n",
259 tst
->ss
->getinfo_super(&info
, super
);
261 if (dfd
>= 0) close(dfd
);
263 if (ident
->uuid_set
&& (!update
|| strcmp(update
, "uuid")!= 0) &&
264 (!super
|| same_uuid(info
.uuid
, ident
->uuid
, tst
->ss
->swapuuid
)==0)) {
265 if ((inargv
&& verbose
>= 0) || verbose
> 0)
266 fprintf(stderr
, Name
": %s has wrong uuid.\n",
270 if (ident
->name
[0] && (!update
|| strcmp(update
, "name")!= 0) &&
271 (!super
|| name_matches(info
.name
, ident
->name
, homehost
)==0)) {
272 if ((inargv
&& verbose
>= 0) || verbose
> 0)
273 fprintf(stderr
, Name
": %s has wrong name.\n",
277 if (ident
->super_minor
!= UnSet
&&
278 (!super
|| ident
->super_minor
!= info
.array
.md_minor
)) {
279 if ((inargv
&& verbose
>= 0) || verbose
> 0)
280 fprintf(stderr
, Name
": %s has wrong super-minor.\n",
284 if (ident
->level
!= UnSet
&&
285 (!super
|| ident
->level
!= info
.array
.level
)) {
286 if ((inargv
&& verbose
>= 0) || verbose
> 0)
287 fprintf(stderr
, Name
": %s has wrong raid level.\n",
291 if (ident
->raid_disks
!= UnSet
&&
292 (!super
|| ident
->raid_disks
!= info
.array
.raid_disks
)) {
293 if ((inargv
&& verbose
>= 0) || verbose
> 0)
294 fprintf(stderr
, Name
": %s requires wrong number of drives.\n",
299 if (tst
== NULL
|| super
== NULL
)
301 if (update
== NULL
&&
302 tst
->ss
->match_home(super
, homehost
)==0) {
303 if ((inargv
&& verbose
>= 0) || verbose
> 0)
304 fprintf(stderr
, Name
": %s is not built for host %s.\n",
306 /* Auto-assemble, and this is not a usable host */
307 /* if update != NULL, we are updating the host
312 /* If we are this far, then we are nearly commited to this device.
313 * If the super_block doesn't exist, or doesn't match others,
314 * then we probably cannot continue
315 * However if one of the arrays is for the homehost, and
316 * the other isn't that can disambiguate.
320 fprintf(stderr
, Name
": %s has no superblock - assembly aborted\n",
328 if (st
->ss
!= tst
->ss
||
329 st
->minor_version
!= tst
->minor_version
||
330 st
->ss
->compare_super(&first_super
, super
) != 0) {
331 /* Some mismatch. If exactly one array matches this host,
332 * we can resolve on that one.
333 * Or, if we are auto assembling, we just ignore the second
339 int first
= st
->ss
->match_home(first_super
, homehost
);
340 int last
= tst
->ss
->match_home(super
, homehost
);
341 if (first
+last
== 1) {
342 /* We can do something */
343 if (first
) {/* just ignore this one */
344 if ((inargv
&& verbose
>= 0) || verbose
> 0)
345 fprintf(stderr
, Name
": %s misses out due to wrong homehost\n",
348 } else { /* reject all those sofar */
350 if ((inargv
&& verbose
>= 0) || verbose
> 0)
351 fprintf(stderr
, Name
": %s overrides previous devices due to good homehost\n",
353 for (td
=devlist
; td
!= tmpdev
; td
=td
->next
)
361 fprintf(stderr
, Name
": superblock on %s doesn't match others - assembly aborted\n",
372 /* So... it is up to me to open the device.
373 * We create a name '/dev/md/XXX' based on the info in the
374 * superblock, and call open_mddev on that
376 mdu_array_info_t inf
;
381 st
->ss
->getinfo_super(&info
, first_super
);
382 c
= strchr(info
.name
, ':');
383 if (c
) c
++; else c
= info
.name
;
384 if (isdigit(*c
) && ((ident
->autof
& 7)==4 || (ident
->autof
&7)==6))
385 /* /dev/md/d0 style for partitionable */
386 asprintf(&mddev
, "/dev/md/d%s", c
);
388 asprintf(&mddev
, "/dev/md/%s", c
);
389 mdfd
= open_mddev(mddev
, ident
->autof
);
396 vers
= md_get_version(mdfd
);
397 if (ioctl(mdfd
, GET_ARRAY_INFO
, &inf
)==0) {
398 for (tmpdev
= devlist
;
399 tmpdev
&& tmpdev
->used
!= 1;
400 tmpdev
= tmpdev
->next
)
402 fprintf(stderr
, Name
": %s already active, cannot restart it!\n", mddev
);
404 fprintf(stderr
, Name
": %s needed for %s...\n",
405 mddev
, tmpdev
->devname
);
416 /* Ok, no bad inconsistancy, we can try updating etc */
418 for (tmpdev
= devlist
; tmpdev
; tmpdev
=tmpdev
->next
) if (tmpdev
->used
== 1) {
419 char *devname
= tmpdev
->devname
;
421 /* looks like a good enough match to update the super block if needed */
425 /* prepare useful information in info structures */
429 if (strcmp(update
, "uuid")==0 &&
432 if ((rfd
= open("/dev/urandom", O_RDONLY
)) < 0 ||
433 read(rfd
, ident
->uuid
, 16) != 16) {
434 *(__u32
*)(ident
->uuid
) = random();
435 *(__u32
*)(ident
->uuid
+1) = random();
436 *(__u32
*)(ident
->uuid
+2) = random();
437 *(__u32
*)(ident
->uuid
+3) = random();
439 if (rfd
>= 0) close(rfd
);
441 dfd
= dev_open(devname
, O_RDWR
|O_EXCL
);
443 remove_partitions(dfd
);
450 st
->ss
->load_super(st
, dfd
, &super
, NULL
);
451 st
->ss
->getinfo_super(&info
, super
);
453 memcpy(info
.uuid
, ident
->uuid
, 16);
454 strcpy(info
.name
, ident
->name
);
455 info
.array
.md_minor
= minor(stb2
.st_rdev
);
457 st
->ss
->update_super(&info
, super
, update
, devname
, verbose
,
458 ident
->uuid_set
, homehost
);
459 if (strcmp(update
, "uuid")==0 &&
462 memcpy(ident
->uuid
, info
.uuid
, 16);
465 fprintf(stderr
, Name
": Cannot open %s for superblock update\n",
467 else if (st
->ss
->store_super(st
, dfd
, super
))
468 fprintf(stderr
, Name
": Could not re-write superblock on %s.\n",
473 if (strcmp(update
, "uuid")==0 &&
474 ident
->bitmap_fd
>= 0 && !bitmap_done
) {
475 if (bitmap_update_uuid(ident
->bitmap_fd
, info
.uuid
, st
->ss
->swapuuid
) != 0)
476 fprintf(stderr
, Name
": Could not update uuid on external bitmap.\n");
484 dfd
= dev_open(devname
, O_RDWR
|O_EXCL
);
486 remove_partitions(dfd
);
493 st
->ss
->load_super(st
, dfd
, &super
, NULL
);
494 st
->ss
->getinfo_super(&info
, super
);
501 fprintf(stderr
, Name
": %s is identified as a member of %s, slot %d.\n",
502 devname
, mddev
, info
.disk
.raid_disk
);
503 devices
[devcnt
].devname
= devname
;
504 devices
[devcnt
].major
= major(stb
.st_rdev
);
505 devices
[devcnt
].minor
= minor(stb
.st_rdev
);
506 devices
[devcnt
].oldmajor
= info
.disk
.major
;
507 devices
[devcnt
].oldminor
= info
.disk
.minor
;
508 devices
[devcnt
].events
= info
.events
;
509 devices
[devcnt
].raid_disk
= info
.disk
.raid_disk
;
510 devices
[devcnt
].disk_nr
= info
.disk
.number
;
511 devices
[devcnt
].uptodate
= 0;
512 devices
[devcnt
].state
= info
.disk
.state
;
513 if (most_recent
< devcnt
) {
514 if (devices
[devcnt
].events
515 > devices
[most_recent
].events
)
516 most_recent
= devcnt
;
518 if (info
.array
.level
== -4)
519 /* with multipath, the raid_disk from the superblock is meaningless */
522 i
= devices
[devcnt
].raid_disk
;
524 if (nextspare
< info
.array
.raid_disks
)
525 nextspare
= info
.array
.raid_disks
;
528 if (i
>= info
.array
.raid_disks
&&
534 unsigned int newbestcnt
= i
+10;
535 int *newbest
= malloc(sizeof(int)*newbestcnt
);
537 for (c
=0; c
< newbestcnt
; c
++)
539 newbest
[c
] = best
[c
];
544 bestcnt
= newbestcnt
;
547 devices
[best
[i
]].events
== devices
[devcnt
].events
&&
548 devices
[best
[i
]].minor
!= devices
[devcnt
].minor
&&
549 st
->ss
->major
== 0 &&
550 info
.array
.level
!= -4) {
551 /* two different devices with identical superblock.
552 * Could be a mis-detection caused by overlapping
553 * partitions. fail-safe.
555 fprintf(stderr
, Name
": WARNING %s and %s appear"
556 " to have very similar superblocks.\n"
557 " If they are really different, "
558 "please --zero the superblock on one\n"
559 " If they are the same or overlap,"
560 " please remove one from %s.\n",
561 devices
[best
[i
]].devname
, devname
,
562 inargv
? "the list" :
563 "the\n DEVICE list in mdadm.conf"
565 if (must_close
) close(mdfd
);
569 || devices
[best
[i
]].events
< devices
[devcnt
].events
)
579 if (update
&& strcmp(update
, "byteorder")==0)
580 st
->minor_version
= 90;
583 fprintf(stderr
, Name
": no devices found for %s\n",
586 if (must_close
) close(mdfd
);
590 st
->ss
->getinfo_super(&info
, first_super
);
591 clean
= info
.array
.state
& 1;
593 /* now we have some devices that might be suitable.
596 avail
= malloc(info
.array
.raid_disks
);
597 memset(avail
, 0, info
.array
.raid_disks
);
600 for (i
=0; i
< bestcnt
;i
++) {
602 int event_margin
= 1; /* always allow a difference of '1'
603 * like the kernel does
606 /* note: we ignore error flags in multipath arrays
607 * as they don't make sense
609 if (info
.array
.level
!= -4)
610 if (!(devices
[j
].state
& (1<<MD_DISK_SYNC
))) {
611 if (!(devices
[j
].state
& (1<<MD_DISK_FAULTY
)))
615 if (devices
[j
].events
+event_margin
>=
616 devices
[most_recent
].events
) {
617 devices
[j
].uptodate
= 1;
618 if (i
< info
.array
.raid_disks
) {
625 while (force
&& !enough(info
.array
.level
, info
.array
.raid_disks
,
626 info
.array
.layout
, 1,
628 /* Choose the newest best drive which is
629 * not up-to-date, update the superblock
633 long long current_events
;
635 for (i
=0; i
<info
.array
.raid_disks
&& i
< bestcnt
; i
++) {
638 !devices
[j
].uptodate
&&
639 devices
[j
].events
> 0 &&
641 devices
[j
].events
> devices
[chosen_drive
].events
))
644 if (chosen_drive
< 0)
646 current_events
= devices
[chosen_drive
].events
;
649 fprintf(stderr
, Name
": forcing event count in %s(%d) from %d upto %d\n",
650 devices
[chosen_drive
].devname
, devices
[chosen_drive
].raid_disk
,
651 (int)(devices
[chosen_drive
].events
),
652 (int)(devices
[most_recent
].events
));
653 fd
= dev_open(devices
[chosen_drive
].devname
, O_RDWR
|O_EXCL
);
655 fprintf(stderr
, Name
": Couldn't open %s for write - not updating\n",
656 devices
[chosen_drive
].devname
);
657 devices
[chosen_drive
].events
= 0;
660 if (st
->ss
->load_super(st
,fd
, &super
, NULL
)) {
662 fprintf(stderr
, Name
": RAID superblock disappeared from %s - not updating.\n",
663 devices
[chosen_drive
].devname
);
664 devices
[chosen_drive
].events
= 0;
667 info
.events
= devices
[most_recent
].events
;
668 st
->ss
->update_super(&info
, super
, "force-one",
669 devices
[chosen_drive
].devname
, verbose
,
672 if (st
->ss
->store_super(st
, fd
, super
)) {
674 fprintf(stderr
, Name
": Could not re-write superblock on %s\n",
675 devices
[chosen_drive
].devname
);
676 devices
[chosen_drive
].events
= 0;
681 devices
[chosen_drive
].events
= devices
[most_recent
].events
;
682 devices
[chosen_drive
].uptodate
= 1;
683 avail
[chosen_drive
] = 1;
687 /* If there are any other drives of the same vintage,
688 * add them in as well. We can't lose and we might gain
690 for (i
=0; i
<info
.array
.raid_disks
&& i
< bestcnt
; i
++) {
693 !devices
[j
].uptodate
&&
694 devices
[j
].events
> 0 &&
695 devices
[j
].events
== current_events
) {
702 /* Now we want to look at the superblock which the kernel will base things on
703 * and compare the devices that we think are working with the devices that the
704 * superblock thinks are working.
705 * If there are differences and --force is given, then update this chosen
710 for (i
=0; chosen_drive
< 0 && i
<bestcnt
; i
++) {
716 if (!devices
[j
].uptodate
)
719 if ((fd
=dev_open(devices
[j
].devname
, O_RDONLY
|O_EXCL
))< 0) {
720 fprintf(stderr
, Name
": Cannot open %s: %s\n",
721 devices
[j
].devname
, strerror(errno
));
722 if (must_close
) close(mdfd
);
725 if (st
->ss
->load_super(st
,fd
, &super
, NULL
)) {
727 fprintf(stderr
, Name
": RAID superblock has disappeared from %s\n",
729 if (must_close
) close(mdfd
);
735 fprintf(stderr
, Name
": No suitable drives found for %s\n", mddev
);
736 if (must_close
) close(mdfd
);
739 st
->ss
->getinfo_super(&info
, super
);
740 for (i
=0; i
<bestcnt
; i
++) {
742 unsigned int desired_state
;
744 if (i
< info
.array
.raid_disks
)
745 desired_state
= (1<<MD_DISK_ACTIVE
) | (1<<MD_DISK_SYNC
);
751 if (!devices
[j
].uptodate
)
753 info
.disk
.number
= devices
[j
].disk_nr
;
754 info
.disk
.raid_disk
= i
;
755 info
.disk
.state
= desired_state
;
757 if (devices
[j
].uptodate
&&
758 st
->ss
->update_super(&info
, super
, "assemble", NULL
, verbose
, 0, NULL
)) {
761 fprintf(stderr
, Name
": "
762 "clearing FAULTY flag for device %d in %s for %s\n",
763 j
, mddev
, devices
[j
].devname
);
767 fprintf(stderr
, Name
": "
768 "device %d in %s has wrong state in superblock, but %s seems ok\n",
769 i
, mddev
, devices
[j
].devname
);
773 if (!devices
[j
].uptodate
&&
774 !(super
.disks
[i
].state
& (1 << MD_DISK_FAULTY
))) {
775 fprintf(stderr
, Name
": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
780 if (force
&& !clean
&&
781 !enough(info
.array
.level
, info
.array
.raid_disks
,
782 info
.array
.layout
, clean
,
784 change
+= st
->ss
->update_super(&info
, super
, "force-array",
785 devices
[chosen_drive
].devname
, verbose
,
792 fd
= dev_open(devices
[chosen_drive
].devname
, O_RDWR
|O_EXCL
);
794 fprintf(stderr
, Name
": Could not open %s for write - cannot Assemble array.\n",
795 devices
[chosen_drive
].devname
);
796 if (must_close
) close(mdfd
);
799 if (st
->ss
->store_super(st
, fd
, super
)) {
801 fprintf(stderr
, Name
": Could not re-write superblock on %s\n",
802 devices
[chosen_drive
].devname
);
803 if (must_close
) close(mdfd
);
809 /* If we are in the middle of a reshape we may need to restore saved data
810 * that was moved aside due to the reshape overwriting live data
811 * The code of doing this lives in Grow.c
814 if (info
.reshape_active
) {
816 int *fdlist
= malloc(sizeof(int)* bestcnt
);
817 for (i
=0; i
<bestcnt
; i
++) {
820 fdlist
[i
] = dev_open(devices
[j
].devname
, O_RDWR
|O_EXCL
);
822 fprintf(stderr
, Name
": Could not open %s for write - cannot Assemble array.\n",
831 err
= Grow_restart(st
, &info
, fdlist
, bestcnt
, backup_file
);
834 if (fdlist
[i
]>=0) close(fdlist
[i
]);
837 fprintf(stderr
, Name
": Failed to restore critical section for reshape, sorry.\n");
838 if (must_close
) close(mdfd
);
843 /* count number of in-sync devices according to the superblock.
844 * We must have this number to start the array without -s or -R
846 req_cnt
= info
.array
.working_disks
;
848 /* Almost ready to actually *do* something */
851 if ((vers
% 100) >= 1) { /* can use different versions */
852 mdu_array_info_t inf
;
853 memset(&inf
, 0, sizeof(inf
));
854 inf
.major_version
= st
->ss
->major
;
855 inf
.minor_version
= st
->minor_version
;
856 rv
= ioctl(mdfd
, SET_ARRAY_INFO
, &inf
);
858 rv
= ioctl(mdfd
, SET_ARRAY_INFO
, NULL
);
861 fprintf(stderr
, Name
": SET_ARRAY_INFO failed for %s: %s\n",
862 mddev
, strerror(errno
));
863 if (must_close
) close(mdfd
);
866 if (ident
->bitmap_fd
>= 0) {
867 if (ioctl(mdfd
, SET_BITMAP_FILE
, ident
->bitmap_fd
) != 0) {
868 fprintf(stderr
, Name
": SET_BITMAP_FILE failed.\n");
869 if (must_close
) close(mdfd
);
872 } else if (ident
->bitmap_file
) {
873 /* From config file */
874 int bmfd
= open(ident
->bitmap_file
, O_RDWR
);
876 fprintf(stderr
, Name
": Could not open bitmap file %s\n",
878 if (must_close
) close(mdfd
);
881 if (ioctl(mdfd
, SET_BITMAP_FILE
, bmfd
) != 0) {
882 fprintf(stderr
, Name
": Failed to set bitmapfile for %s\n", mddev
);
884 if (must_close
) close(mdfd
);
890 /* First, add the raid disks, but add the chosen one last */
891 for (i
=0; i
<= bestcnt
; i
++) {
895 if (j
== chosen_drive
)
900 if (j
>= 0 /* && devices[j].uptodate */) {
901 mdu_disk_info_t disk
;
902 memset(&disk
, 0, sizeof(disk
));
903 disk
.major
= devices
[j
].major
;
904 disk
.minor
= devices
[j
].minor
;
905 if (ioctl(mdfd
, ADD_NEW_DISK
, &disk
)!=0) {
906 fprintf(stderr
, Name
": failed to add %s to %s: %s\n",
910 if (i
< info
.array
.raid_disks
|| i
== bestcnt
)
914 } else if (verbose
> 0)
915 fprintf(stderr
, Name
": added %s to %s as %d\n",
916 devices
[j
].devname
, mddev
, devices
[j
].raid_disk
);
917 } else if (verbose
> 0 && i
< info
.array
.raid_disks
)
918 fprintf(stderr
, Name
": no uptodate device for slot %d of %s\n",
924 ( enough(info
.array
.level
, info
.array
.raid_disks
,
925 info
.array
.layout
, clean
, avail
, okcnt
) &&
926 (okcnt
>= req_cnt
|| start_partial_ok
)
928 if (ioctl(mdfd
, RUN_ARRAY
, NULL
)==0) {
930 fprintf(stderr
, Name
": %s has been started with %d drive%s",
931 mddev
, okcnt
, okcnt
==1?"":"s");
932 if (okcnt
< info
.array
.raid_disks
)
933 fprintf(stderr
, " (out of %d)", info
.array
.raid_disks
);
935 fprintf(stderr
, " and %d spare%s", sparecnt
, sparecnt
==1?"":"s");
936 fprintf(stderr
, ".\n");
941 /* There is a nasty race with 'mdadm --monitor'.
942 * If it opens this device before we close it,
943 * it gets an incomplete open on which IO
944 * doesn't work and the capacity if wrong.
945 * If we reopen (to check for layered devices)
946 * before --monitor closes, we loose.
948 * So: wait upto 1 second for there to be
949 * a non-zero capacity.
951 while (usecs
< 1000) {
952 mdfd
= open(mddev
, O_RDONLY
);
954 unsigned long long size
;
955 if (get_dev_size(mdfd
, NULL
, &size
) &&
966 fprintf(stderr
, Name
": failed to RUN_ARRAY %s: %s\n",
967 mddev
, strerror(errno
));
969 if (!enough(info
.array
.level
, info
.array
.raid_disks
,
970 info
.array
.layout
, 1, avail
, okcnt
))
971 fprintf(stderr
, Name
": Not enough devices to "
972 "start the array.\n");
973 else if (!enough(info
.array
.level
,
974 info
.array
.raid_disks
,
975 info
.array
.layout
, clean
,
977 fprintf(stderr
, Name
": Not enough devices to "
978 "start the array while not clean "
979 "- consider --force.\n");
981 if (must_close
) close(mdfd
);
985 fprintf(stderr
, Name
": %s assembled from %d drive%s",
986 mddev
, okcnt
, okcnt
==1?"":"s");
987 if (okcnt
!= info
.array
.raid_disks
)
988 fprintf(stderr
, " (out of %d)", info
.array
.raid_disks
);
989 fprintf(stderr
, ", but not started.\n");
990 if (must_close
) close(mdfd
);
994 fprintf(stderr
, Name
": %s assembled from %d drive%s", mddev
, okcnt
, okcnt
==1?"":"s");
996 fprintf(stderr
, " and %d spare%s", sparecnt
, sparecnt
==1?"":"s");
997 if (!enough(info
.array
.level
, info
.array
.raid_disks
,
998 info
.array
.layout
, 1, avail
, okcnt
))
999 fprintf(stderr
, " - not enough to start the array.\n");
1000 else if (!enough(info
.array
.level
,
1001 info
.array
.raid_disks
,
1002 info
.array
.layout
, clean
,
1004 fprintf(stderr
, " - not enough to start the "
1005 "array while not clean - consider "
1008 if (req_cnt
== info
.array
.raid_disks
)
1009 fprintf(stderr
, " - need all %d to start it", req_cnt
);
1011 fprintf(stderr
, " - need %d of %d to start", req_cnt
, info
.array
.raid_disks
);
1012 fprintf(stderr
, " (use --run to insist).\n");
1015 if (must_close
) close(mdfd
);
1018 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1019 * been updated to point to the current locations of devices.
1020 * so we can just start the array
1023 dev
= makedev(devices
[chosen_drive
].major
,
1024 devices
[chosen_drive
].minor
);
1025 if (ioctl(mdfd
, START_ARRAY
, dev
)) {
1026 fprintf(stderr
, Name
": Cannot start array: %s\n",
1031 if (must_close
) close(mdfd
);