]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Create: report failure if array cannot be started.
[thirdparty/mdadm.git] / Assemble.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
e736b623 4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
64c4757e
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
e736b623 22 * Email: <neilb@suse.de>
64c4757e
NB
23 */
24
9a9dab36 25#include "mdadm.h"
41a3b72a 26#include <ctype.h>
64c4757e 27
624920bb
NB
28static int name_matches(char *found, char *required, char *homehost)
29{
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
32 */
33 char fnd[33];
34
35 strncpy(fnd, found, 32);
36 fnd[32] = 0;
37 if (strcmp(found, required)==0)
38 return 1;
39 if (homehost) {
40 int l = strlen(homehost);
41 if (l < 32 && fnd[l] == ':' &&
42 strcmp(fnd+l+1, required)==0)
43 return 1;
44 }
45 return 0;
46}
47
9008ed1c 48static int is_member_busy(char *metadata_version)
2de8884f
DW
49{
50 /* check if the given member array is active */
51 struct mdstat_ent *mdstat = mdstat_read(1, 0);
52 struct mdstat_ent *ent;
53 int busy = 0;
54
55 for (ent = mdstat; ent; ent = ent->next) {
56 if (ent->metadata_version == NULL)
57 continue;
58 if (strncmp(ent->metadata_version, "external:", 9) != 0)
59 continue;
60 if (!is_subarray(&ent->metadata_version[9]))
61 continue;
62 /* Skip first char - it can be '/' or '-' */
63 if (strcmp(&ent->metadata_version[10], metadata_version+1) == 0) {
64 busy = 1;
65 break;
66 }
67 }
68 free_mdstat(mdstat);
69
70 return busy;
71}
72
fa56eddb 73static int ident_matches(struct mddev_ident *ident,
08fb91a3
N
74 struct mdinfo *content,
75 struct supertype *tst,
76 char *homehost,
77 char *update, char *devname)
78{
79
80 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
81 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0) {
82 if (devname)
83 fprintf(stderr, Name ": %s has wrong uuid.\n",
84 devname);
85 return 0;
86 }
87 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
88 name_matches(content->name, ident->name, homehost)==0) {
89 if (devname)
90 fprintf(stderr, Name ": %s has wrong name.\n",
91 devname);
92 return 0;
93 }
94 if (ident->super_minor != UnSet &&
95 ident->super_minor != content->array.md_minor) {
96 if (devname)
97 fprintf(stderr, Name ": %s has wrong super-minor.\n",
98 devname);
99 return 0;
100 }
101 if (ident->level != UnSet &&
102 ident->level != content->array.level) {
103 if (devname)
104 fprintf(stderr, Name ": %s has wrong raid level.\n",
105 devname);
106 return 0;
107 }
108 if (ident->raid_disks != UnSet &&
109 ident->raid_disks!= content->array.raid_disks) {
110 if (devname)
111 fprintf(stderr, Name ": %s requires wrong number of drives.\n",
112 devname);
113 return 0;
114 }
805d30b2
N
115 if (ident->member && ident->member[0]) {
116 /* content->text_version must match */
117 char *s = strchr(content->text_version+1, '/');
118 if (s == NULL) {
119 if (devname)
120 fprintf(stderr, Name ": %s is not a container and one is required.\n",
121 devname);
122 return 0;
123 } else if (strcmp(ident->member, s+1) != 0) {
124 if (devname)
125 fprintf(stderr, Name ": skipping wrong member %s is %s\n",
126 content->text_version, devname);
127 return 0;
128 }
129 }
08fb91a3
N
130 return 1;
131}
132
133
7f91af49 134int Assemble(struct supertype *st, char *mddev,
fa56eddb 135 struct mddev_ident *ident,
a655e550 136 struct mddev_dev *devlist, char *backup_file,
64c4757e 137 int readonly, int runstop,
0ac91628 138 char *update, char *homehost, int require_homehost,
64c4757e
NB
139 int verbose, int force)
140{
141 /*
52826846
NB
142 * The task of Assemble is to find a collection of
143 * devices that should (according to their superblocks)
144 * form an array, and to give this collection to the MD driver.
145 * In Linux-2.4 and later, this involves submitting a
64c4757e
NB
146 * SET_ARRAY_INFO ioctl with no arg - to prepare
147 * the array - and then submit a number of
148 * ADD_NEW_DISK ioctls to add disks into
149 * the array. Finally RUN_ARRAY might
150 * be submitted to start the array.
151 *
152 * Much of the work of Assemble is in finding and/or
153 * checking the disks to make sure they look right.
154 *
4b1ac34b 155 * If mddev is not set, then scan must be set and we
64c4757e
NB
156 * read through the config file for dev+uuid mapping
157 * We recurse, setting mddev, for each device that
158 * - isn't running
4b1ac34b 159 * - has a valid uuid (or any uuid if !uuidset)
64c4757e
NB
160 *
161 * If mddev is set, we try to determine state of md.
162 * check version - must be at least 0.90.0
163 * check kernel version. must be at least 2.4.
164 * If not, we can possibly fall back on START_ARRAY
165 * Try to GET_ARRAY_INFO.
166 * If possible, give up
167 * If not, try to STOP_ARRAY just to make sure
168 *
169 * If !uuidset and scan, look in conf-file for uuid
170 * If not found, give up
b8a8ccf9 171 * If !devlist and scan and uuidset, get list of devs from conf-file
64c4757e
NB
172 *
173 * For each device:
174 * Check superblock - discard if bad
175 * Check uuid (set if we don't have one) - discard if no match
5787fa49 176 * Check superblock similarity if we have a superblock - discard if different
4b1ac34b 177 * Record events, devicenum
64c4757e 178 * This should give us a list of devices for the array
4b1ac34b 179 * We should collect the most recent event number
64c4757e
NB
180 *
181 * Count disks with recent enough event count
182 * While force && !enough disks
183 * Choose newest rejected disks, update event count
184 * mark clean and rewrite superblock
185 * If recent kernel:
186 * SET_ARRAY_INFO
187 * foreach device with recent events : ADD_NEW_DISK
188 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
189 * If old kernel:
190 * Check the device numbers in superblock are right
191 * update superblock if any changes
192 * START_ARRAY
193 *
194 */
c30e5369
N
195 int mdfd;
196 int clean;
f05641cf
N
197 int auto_assem = (mddev == NULL && !ident->uuid_set &&
198 ident->super_minor == UnSet && ident->name[0] == 0
aa7c284c 199 && (ident->container == NULL || ident->member == NULL));
64c4757e 200 int old_linux = 0;
c30e5369 201 int vers = vers; /* Keep gcc quite - it really is initialised */
64c4757e
NB
202 struct {
203 char *devname;
213ee40b
NB
204 int uptodate; /* set once we decide that this device is as
205 * recent as everything else in the array.
206 */
207 struct mdinfo i;
5787fa49 208 } *devices;
02e7c5b7 209 char *devmap;
56eedc1a 210 int *best = NULL; /* indexed by raid_disk */
f21e18ca 211 int bestcnt = 0;
98c6faba 212 int devcnt = 0;
1ff98339 213 unsigned int okcnt, sparecnt, rebuilding_cnt;
98c6faba 214 unsigned int req_cnt;
f21e18ca 215 int i;
64c4757e 216 int most_recent = 0;
cd29a5c8 217 int chosen_drive;
52826846 218 int change = 0;
cd29a5c8 219 int inargv = 0;
52437b4f 220 int report_missmatch;
bf4fb153 221 int bitmap_done;
7f91af49
N
222 int start_partial_ok = (runstop >= 0) &&
223 (force || devlist==NULL || auto_assem);
98c6faba 224 unsigned int num_devs;
a655e550 225 struct mddev_dev *tmpdev;
4b1ac34b 226 struct mdinfo info;
98dbd966 227 struct mdinfo *content = NULL;
265e0f17 228 char *avail;
308e1801 229 int nextspare = 0;
197e3eb6 230 char *name = NULL;
69207ff6 231 int trustworthy;
a04d5763 232 char chosen_name[1024];
8a46fe84 233
682c7051 234 if (get_linux_version() < 2004000)
64c4757e
NB
235 old_linux = 1;
236
64c4757e 237 /*
52826846
NB
238 * If any subdevs are listed, then any that don't
239 * match ident are discarded. Remainder must all match and
240 * become the array.
241 * If no subdevs, then we scan all devices in the config file, but
242 * there must be something in the identity
64c4757e 243 */
64c4757e 244
cd29a5c8 245 if (!devlist &&
52826846 246 ident->uuid_set == 0 &&
f21e18ca 247 (ident->super_minor < 0 || ident->super_minor == UnSet) &&
e0fe762a
N
248 ident->name[0] == 0 &&
249 (ident->container == NULL || ident->member == NULL) &&
52826846
NB
250 ident->devices == NULL) {
251 fprintf(stderr, Name ": No identity information available for %s - cannot assemble.\n",
8a46fe84 252 mddev ? mddev : "further assembly");
52826846 253 return 1;
64c4757e 254 }
71d60c48 255
cd29a5c8 256 if (devlist == NULL)
8aec876d 257 devlist = conf_get_devs();
7f91af49 258 else if (mddev)
da6b5ca9 259 inargv = 1;
64c4757e 260
52437b4f 261 report_missmatch = ((inargv && verbose >= 0) || verbose > 0);
60e1bc1a 262 try_again:
c30e5369
N
263 /* We come back here when doing auto-assembly and attempting some
264 * set of devices failed. Those are now marked as ->used==2 and
265 * we ignore them and try again
266 */
60e1bc1a 267
5787fa49
NB
268 tmpdev = devlist; num_devs = 0;
269 while (tmpdev) {
da6b5ca9
NB
270 if (tmpdev->used)
271 tmpdev->used = 2;
272 else
273 num_devs++;
5787fa49
NB
274 tmpdev = tmpdev->next;
275 }
5787fa49 276
82d9eba6 277 if (!st && ident->st) st = ident->st;
64c4757e 278
dab6685f 279 if (verbose>0)
82b27616 280 fprintf(stderr, Name ": looking for devices for %s\n",
8a46fe84 281 mddev ? mddev : "further assembly");
82b27616 282
811e6cbe
NB
283 /* first walk the list of devices to find a consistent set
284 * that match the criterea, if that is possible.
c30e5369 285 * We flag the ones we like with 'used'.
811e6cbe
NB
286 */
287 for (tmpdev = devlist;
288 tmpdev;
5083d66b 289 tmpdev = tmpdev ? tmpdev->next : NULL) {
811e6cbe 290 char *devname = tmpdev->devname;
64c4757e
NB
291 int dfd;
292 struct stat stb;
3da92f27 293 struct supertype *tst = dup_super(st);
4e8d9f0a 294 struct dev_policy *pol = NULL;
5083d66b 295 int found_container = 0;
52826846 296
da6b5ca9
NB
297 if (tmpdev->used > 1) continue;
298
52826846 299 if (ident->devices &&
56eedc1a 300 !match_oneof(ident->devices, devname)) {
52437b4f 301 if (report_missmatch)
56eedc1a 302 fprintf(stderr, Name ": %s is not one of %s\n", devname, ident->devices);
52826846 303 continue;
56eedc1a 304 }
4b1ac34b 305
8b0dabea 306 dfd = dev_open(devname, O_RDONLY|O_EXCL);
64c4757e 307 if (dfd < 0) {
52437b4f 308 if (report_missmatch)
682c7051 309 fprintf(stderr, Name ": cannot open device %s: %s\n",
64c4757e 310 devname, strerror(errno));
da6b5ca9 311 tmpdev->used = 2;
52826846
NB
312 } else if (fstat(dfd, &stb)< 0) {
313 /* Impossible! */
314 fprintf(stderr, Name ": fstat failed for %s: %s\n",
315 devname, strerror(errno));
da6b5ca9 316 tmpdev->used = 2;
cd29a5c8
NB
317 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
318 fprintf(stderr, Name ": %s is not a block device.\n",
52826846 319 devname);
da6b5ca9 320 tmpdev->used = 2;
5083d66b
N
321 } else if (must_be_container(dfd)) {
322 if (st) {
323 /* already found some components, this cannot
324 * be another one.
325 */
326 if (report_missmatch)
327 fprintf(stderr, Name ": %s is a container, but we are looking for components\n",
328 devname);
329 tmpdev->used = 2;
330 } if (!tst && (tst = super_by_fd(dfd, NULL)) == NULL) {
331 if (report_missmatch)
332 fprintf(stderr, Name ": not a recognisable container: %s\n",
333 devname);
334 tmpdev->used = 2;
335 } else if (tst->ss->load_container(tst, dfd, NULL)) {
336 if (report_missmatch)
337 fprintf(stderr, Name ": no correct container type: %s\n",
338 devname);
339 tmpdev->used = 2;
340 } else if (auto_assem &&
341 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
342 tst->ss->match_home(tst, homehost) == 1)) {
343 if (report_missmatch)
344 fprintf(stderr, Name ": %s has metadata type %s for which "
345 "auto-assembly is disabled\n",
346 devname, tst->ss->name);
347 tmpdev->used = 2;
348 } else
349 found_container = 1;
52826846 350 } else {
5083d66b
N
351 if (!tst && (tst = guess_super(dfd)) == NULL) {
352 if (report_missmatch)
353 fprintf(stderr, Name ": no recogniseable superblock on %s\n",
354 devname);
355 tmpdev->used = 2;
356 } else if (tst->ss->load_super(tst,dfd, NULL)) {
357 if (report_missmatch)
358 fprintf(stderr, Name ": no RAID superblock on %s\n",
359 devname);
360 tmpdev->used = 2;
361 } else if (tst->ss->compare_super == NULL) {
362 if (report_missmatch)
363 fprintf(stderr, Name ": Cannot assemble %s metadata on %s\n",
364 tst->ss->name, devname);
365 tmpdev->used = 2;
366 } else if (auto_assem && st == NULL &&
367 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
368 tst->ss->match_home(tst, homehost) == 1)) {
369 if (report_missmatch)
370 fprintf(stderr, Name ": %s has metadata type %s for which "
371 "auto-assembly is disabled\n",
372 devname, tst->ss->name);
373 tmpdev->used = 2;
374 }
64c4757e 375 }
c06487ce 376 if (dfd >= 0) close(dfd);
d68ea4d7
N
377 if (tmpdev->used == 2) {
378 if (auto_assem)
379 /* Ignore unrecognised devices during auto-assembly */
380 goto loop;
381 if (ident->uuid_set || ident->name[0] ||
382 ident->super_minor != UnSet)
383 /* Ignore unrecognised device if looking for
384 * specific array */
385 goto loop;
386
387
388 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
389 devname);
390 if (st)
391 st->ss->free_super(st);
392 dev_policy_free(pol);
393 return 1;
394 }
52826846 395
5083d66b 396 if (found_container) {
9008ed1c
N
397 /* tmpdev is a container. We need to be either
398 * looking for a member, or auto-assembling
399 */
9008ed1c
N
400
401 if (ident->container) {
402 if (ident->container[0] == '/' &&
403 !same_dev(ident->container, devname)) {
404 if (report_missmatch)
405 fprintf(stderr, Name ": %s is not the container required (%s)\n",
406 devname, ident->container);
407 goto loop;
408 }
409 if (ident->container[0] != '/') {
410 /* we have a uuid */
411 int uuid[4];
87477e6d
N
412
413 content = &info;
414 memset(content, 0, sizeof(*content));
415 tst->ss->getinfo_super(tst, content, NULL);
416
9008ed1c
N
417 if (!parse_uuid(ident->container, uuid) ||
418 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
419 if (report_missmatch)
420 fprintf(stderr, Name ": %s has wrong UUID to be required container\n",
421 devname);
422 goto loop;
423 }
424 }
425 }
426 /* It is worth looking inside this container.
427 */
7636b5a8
N
428 if (verbose > 0)
429 fprintf(stderr, Name ": looking in container %s\n",
430 devname);
1415fe4b 431
88cef9b3
N
432 for (content = tst->ss->container_content(tst, NULL);
433 content;
434 content = content->next) {
1415fe4b 435
88cef9b3
N
436 if (!ident_matches(ident, content, tst,
437 homehost, update,
438 report_missmatch ? devname : NULL))
439 /* message already printed */;
440 else if (is_member_busy(content->text_version)) {
441 if (report_missmatch)
442 fprintf(stderr, Name ": member %s in %s is already assembled\n",
443 content->text_version,
444 devname);
445 } else
446 break;
447 }
448 if (!content) {
f7ad3ccc 449 tmpdev->used = 2;
88cef9b3 450 goto loop; /* empty container */
fa031239 451 }
88cef9b3 452
9008ed1c 453 st = tst; tst = NULL;
4c1c3ad8 454 if (!auto_assem && inargv && tmpdev->next != NULL) {
9008ed1c
N
455 fprintf(stderr, Name ": %s is a container, but is not "
456 "only device given: confused and aborting\n",
457 devname);
458 st->ss->free_super(st);
4e8d9f0a 459 dev_policy_free(pol);
9008ed1c
N
460 return 1;
461 }
7636b5a8
N
462 if (verbose > 0)
463 fprintf(stderr, Name ": found match on member %s in %s\n",
464 content->text_version, devname);
bac0d92e 465
5083d66b
N
466 /* make sure we finished the loop */
467 tmpdev = NULL;
bac0d92e 468 goto loop;
5083d66b 469 } else {
bac0d92e 470
5083d66b
N
471 content = &info;
472 memset(content, 0, sizeof(*content));
473 tst->ss->getinfo_super(tst, content, NULL);
474
475 if (!ident_matches(ident, content, tst,
476 homehost, update,
477 report_missmatch ? devname : NULL))
df37ffc0 478 goto loop;
5083d66b
N
479
480 if (st == NULL)
481 st = dup_super(tst);
482 if (st->minor_version == -1)
483 st->minor_version = tst->minor_version;
484 if (st->ss != tst->ss ||
485 st->minor_version != tst->minor_version ||
486 st->ss->compare_super(st, tst) != 0) {
487 /* Some mismatch. If exactly one array matches this host,
488 * we can resolve on that one.
489 * Or, if we are auto assembling, we just ignore the second
490 * for now.
491 */
492 if (auto_assem)
493 goto loop;
494 if (homehost) {
495 int first = st->ss->match_home(st, homehost);
496 int last = tst->ss->match_home(tst, homehost);
497 if (first != last &&
498 (first == 1 || last == 1)) {
499 /* We can do something */
500 if (first) {/* just ignore this one */
501 if (report_missmatch)
502 fprintf(stderr, Name ": %s misses out due to wrong homehost\n",
503 devname);
504 goto loop;
505 } else { /* reject all those sofar */
506 struct mddev_dev *td;
507 if (report_missmatch)
508 fprintf(stderr, Name ": %s overrides previous devices due to good homehost\n",
509 devname);
510 for (td=devlist; td != tmpdev; td=td->next)
511 if (td->used == 1)
512 td->used = 0;
513 tmpdev->used = 1;
514 goto loop;
515 }
83b6208e
NB
516 }
517 }
5083d66b
N
518 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
519 devname);
520 tst->ss->free_super(tst);
521 st->ss->free_super(st);
522 dev_policy_free(pol);
523 return 1;
83b6208e 524 }
5083d66b 525 tmpdev->used = 1;
64c4757e 526 }
df37ffc0 527 loop:
4e8d9f0a
N
528 dev_policy_free(pol);
529 pol = NULL;
3d2b16e7
NB
530 if (tst)
531 tst->ss->free_super(tst);
811e6cbe
NB
532 }
533
98dbd966 534 if (!st || !st->sb || !content)
c30e5369
N
535 return 2;
536
05833051 537 /* Now need to open the array device. Use create_mddev */
98dbd966 538 if (content == &info)
a5d85af7 539 st->ss->getinfo_super(st, content, NULL);
3d2c4fc7 540
69207ff6 541 trustworthy = FOREIGN;
05833051 542 name = content->name;
745f72f6
N
543 switch (st->ss->match_home(st, homehost)
544 ?: st->ss->match_home(st, "any")) {
69207ff6
N
545 case 1:
546 trustworthy = LOCAL;
98dbd966 547 name = strchr(content->name, ':');
69207ff6
N
548 if (name)
549 name++;
3d2c4fc7 550 else
98dbd966 551 name = content->name;
69207ff6 552 break;
c30e5369 553 }
05833051 554 if (!auto_assem)
aa7c284c 555 /* If the array is listed in mdadm.conf or on
ac2ecf55
N
556 * command line, then we trust the name
557 * even if the array doesn't look local
558 */
559 trustworthy = LOCAL;
560
05833051 561 if (name[0] == 0 &&
98dbd966
DW
562 content->array.level == LEVEL_CONTAINER) {
563 name = content->text_version;
a4bc1720
N
564 trustworthy = METADATA;
565 }
0ac91628
N
566
567 if (name[0] && trustworthy != LOCAL &&
568 ! require_homehost &&
569 conf_name_is_free(name))
570 trustworthy = LOCAL;
571
7cdc0872
N
572 if (trustworthy == LOCAL &&
573 strchr(name, ':'))
574 /* Ignore 'host:' prefix of name */
575 name = strchr(name, ':')+1;
576
a04d5763
N
577 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
578 chosen_name);
c30e5369
N
579 if (mdfd < 0) {
580 st->ss->free_super(st);
c30e5369 581 if (auto_assem)
60e1bc1a 582 goto try_again;
c30e5369
N
583 return 1;
584 }
a04d5763 585 mddev = chosen_name;
c30e5369
N
586 vers = md_get_version(mdfd);
587 if (vers < 9000) {
588 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
589 " Upgrade your kernel or try --build\n");
590 close(mdfd);
591 return 1;
592 }
66afdfa9 593 if (mddev_busy(fd2devnum(mdfd))) {
c30e5369
N
594 fprintf(stderr, Name ": %s already active, cannot restart it!\n",
595 mddev);
596 for (tmpdev = devlist ;
597 tmpdev && tmpdev->used != 1;
598 tmpdev = tmpdev->next)
599 ;
600 if (tmpdev && auto_assem)
601 fprintf(stderr, Name ": %s needed for %s...\n",
602 mddev, tmpdev->devname);
603 close(mdfd);
604 mdfd = -3;
605 st->ss->free_super(st);
c30e5369
N
606 if (auto_assem)
607 goto try_again;
608 return 1;
8a46fe84 609 }
c30e5369 610 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
8a46fe84 611
9008ed1c
N
612#ifndef MDASSEMBLE
613 if (content != &info) {
614 /* This is a member of a container. Try starting the array. */
615 return assemble_container_content(st, mdfd, content, runstop,
616 chosen_name, verbose);
617 }
618#endif
811e6cbe 619 /* Ok, no bad inconsistancy, we can try updating etc */
bf4fb153 620 bitmap_done = 0;
6e46bf34 621 content->update_private = NULL;
d7f7ebb7 622 devices = malloc(num_devs * sizeof(*devices));
02e7c5b7 623 devmap = calloc(num_devs * content->array.raid_disks, 1);
da6b5ca9 624 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
811e6cbe
NB
625 char *devname = tmpdev->devname;
626 struct stat stb;
5787fa49 627 /* looks like a good enough match to update the super block if needed */
d1f1011b 628#ifndef MDASSEMBLE
5787fa49 629 if (update) {
811e6cbe 630 int dfd;
4b1ac34b
NB
631 /* prepare useful information in info structures */
632 struct stat stb2;
3da92f27 633 struct supertype *tst;
1e2b2765 634 int err;
4b1ac34b 635 fstat(mdfd, &stb2);
7d99579f
NB
636
637 if (strcmp(update, "uuid")==0 &&
638 !ident->uuid_set) {
639 int rfd;
640 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
641 read(rfd, ident->uuid, 16) != 16) {
642 *(__u32*)(ident->uuid) = random();
643 *(__u32*)(ident->uuid+1) = random();
644 *(__u32*)(ident->uuid+2) = random();
645 *(__u32*)(ident->uuid+3) = random();
646 }
647 if (rfd >= 0) close(rfd);
7d99579f 648 }
811e6cbe
NB
649 dfd = dev_open(devname, O_RDWR|O_EXCL);
650
3da92f27 651 tst = dup_super(st);
9f22b13f
N
652 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
653 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
654 devname);
655 if (dfd >= 0)
656 close(dfd);
657 close(mdfd);
d7f7ebb7 658 free(devices);
02e7c5b7 659 free(devmap);
9f22b13f
N
660 return 1;
661 }
02e7c5b7 662 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
811e6cbe 663
98dbd966
DW
664 memcpy(content->uuid, ident->uuid, 16);
665 strcpy(content->name, ident->name);
666 content->array.md_minor = minor(stb2.st_rdev);
811e6cbe 667
1e2b2765
N
668 if (strcmp(update, "byteorder") == 0)
669 err = 0;
670 else
671 err = tst->ss->update_super(tst, content, update,
672 devname, verbose,
673 ident->uuid_set,
674 homehost);
675 if (err < 0) {
676 fprintf(stderr,
677 Name ": --update=%s not understood"
678 " for %s metadata\n",
679 update, tst->ss->name);
680 tst->ss->free_super(tst);
681 free(tst);
682 close(mdfd);
683 close(dfd);
d7f7ebb7 684 free(devices);
02e7c5b7 685 free(devmap);
1e2b2765
N
686 return 1;
687 }
e5eac01f
NB
688 if (strcmp(update, "uuid")==0 &&
689 !ident->uuid_set) {
690 ident->uuid_set = 1;
98dbd966 691 memcpy(ident->uuid, content->uuid, 16);
e5eac01f 692 }
1e2b2765 693 if (tst->ss->store_super(tst, dfd))
5787fa49
NB
694 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
695 devname);
1e2b2765 696 close(dfd);
8131b493
NB
697
698 if (strcmp(update, "uuid")==0 &&
bf4fb153 699 ident->bitmap_fd >= 0 && !bitmap_done) {
3da92f27 700 if (bitmap_update_uuid(ident->bitmap_fd,
98dbd966 701 content->uuid,
3da92f27 702 tst->ss->swapuuid) != 0)
bf4fb153
NB
703 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
704 else
705 bitmap_done = 1;
706 }
3da92f27 707 tst->ss->free_super(tst);
d1f1011b
NB
708 } else
709#endif
710 {
30e1b9a5 711 struct supertype *tst = dup_super(st);
da6b5ca9
NB
712 int dfd;
713 dfd = dev_open(devname, O_RDWR|O_EXCL);
714
9f22b13f
N
715 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
716 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
717 devname);
718 if (dfd >= 0)
719 close(dfd);
720 close(mdfd);
d7f7ebb7 721 free(devices);
02e7c5b7 722 free(devmap);
9f22b13f
N
723 return 1;
724 }
02e7c5b7 725 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
3da92f27 726 tst->ss->free_super(tst);
da6b5ca9 727 close(dfd);
5787fa49
NB
728 }
729
811e6cbe
NB
730 stat(devname, &stb);
731
dab6685f 732 if (verbose > 0)
cd29a5c8 733 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
98dbd966 734 devname, mddev, content->disk.raid_disk);
64c4757e 735 devices[devcnt].devname = devname;
64c4757e 736 devices[devcnt].uptodate = 0;
98dbd966 737 devices[devcnt].i = *content;
213ee40b
NB
738 devices[devcnt].i.disk.major = major(stb.st_rdev);
739 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
64c4757e 740 if (most_recent < devcnt) {
213ee40b
NB
741 if (devices[devcnt].i.events
742 > devices[most_recent].i.events)
64c4757e
NB
743 most_recent = devcnt;
744 }
df0d4ea0 745 if (content->array.level == LEVEL_MULTIPATH)
5787fa49
NB
746 /* with multipath, the raid_disk from the superblock is meaningless */
747 i = devcnt;
748 else
213ee40b 749 i = devices[devcnt].i.disk.raid_disk;
308e1801 750 if (i+1 == 0) {
98dbd966
DW
751 if (nextspare < content->array.raid_disks)
752 nextspare = content->array.raid_disks;
308e1801 753 i = nextspare++;
08110d41 754 } else {
98dbd966 755 if (i >= content->array.raid_disks &&
08110d41
NB
756 i >= nextspare)
757 nextspare = i+1;
308e1801 758 }
98c6faba 759 if (i < 10000) {
56eedc1a 760 if (i >= bestcnt) {
f21e18ca 761 int newbestcnt = i+10;
56eedc1a 762 int *newbest = malloc(sizeof(int)*newbestcnt);
f21e18ca 763 int c;
56eedc1a
NB
764 for (c=0; c < newbestcnt; c++)
765 if (c < bestcnt)
766 newbest[c] = best[c];
767 else
768 newbest[c] = -1;
769 if (best)free(best);
770 best = newbest;
771 bestcnt = newbestcnt;
772 }
6a255b69 773 if (best[i] >=0 &&
213ee40b
NB
774 devices[best[i]].i.events
775 == devices[devcnt].i.events
776 && (devices[best[i]].i.disk.minor
777 != devices[devcnt].i.disk.minor)
b8ac1967 778 && st->ss == &super0
98dbd966 779 && content->array.level != LEVEL_MULTIPATH) {
6a255b69
NB
780 /* two different devices with identical superblock.
781 * Could be a mis-detection caused by overlapping
782 * partitions. fail-safe.
783 */
784 fprintf(stderr, Name ": WARNING %s and %s appear"
785 " to have very similar superblocks.\n"
786 " If they are really different, "
787 "please --zero the superblock on one\n"
d2df86e0
NB
788 " If they are the same or overlap,"
789 " please remove one from %s.\n",
790 devices[best[i]].devname, devname,
791 inargv ? "the list" :
792 "the\n DEVICE list in mdadm.conf"
793 );
7f91af49 794 close(mdfd);
d7f7ebb7 795 free(devices);
02e7c5b7 796 free(devmap);
6a255b69
NB
797 return 1;
798 }
52826846 799 if (best[i] == -1
213ee40b
NB
800 || (devices[best[i]].i.events
801 < devices[devcnt].i.events))
52826846 802 best[i] = devcnt;
56eedc1a 803 }
64c4757e 804 devcnt++;
df37ffc0 805 }
6e46bf34
DW
806 free(content->update_private);
807 content->update_private = NULL;
4b1ac34b 808
64c4757e 809 if (devcnt == 0) {
682c7051 810 fprintf(stderr, Name ": no devices found for %s\n",
64c4757e 811 mddev);
3d2b16e7
NB
812 if (st)
813 st->ss->free_super(st);
7f91af49 814 close(mdfd);
d7f7ebb7 815 free(devices);
02e7c5b7 816 free(devmap);
64c4757e
NB
817 return 1;
818 }
4b1ac34b 819
3d2b16e7
NB
820 if (update && strcmp(update, "byteorder")==0)
821 st->minor_version = 90;
822
a5d85af7 823 st->ss->getinfo_super(st, content, NULL);
98dbd966 824 clean = content->array.state & 1;
4b1ac34b 825
64c4757e
NB
826 /* now we have some devices that might be suitable.
827 * I wonder how many
828 */
98dbd966
DW
829 avail = malloc(content->array.raid_disks);
830 memset(avail, 0, content->array.raid_disks);
64c4757e 831 okcnt = 0;
52826846 832 sparecnt=0;
1ff98339 833 rebuilding_cnt=0;
f21e18ca 834 for (i=0; i< bestcnt; i++) {
64c4757e 835 int j = best[i];
ee04451c
NB
836 int event_margin = 1; /* always allow a difference of '1'
837 * like the kernel does
838 */
64c4757e 839 if (j < 0) continue;
d013a55e
NB
840 /* note: we ignore error flags in multipath arrays
841 * as they don't make sense
842 */
df0d4ea0 843 if (content->array.level != LEVEL_MULTIPATH)
f22385f9 844 if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
213ee40b
NB
845 if (!(devices[j].i.disk.state
846 & (1<<MD_DISK_FAULTY)))
aa88f531 847 sparecnt++;
d013a55e 848 continue;
aa88f531 849 }
02e7c5b7
N
850 /* If this devices thinks that 'most_recent' has failed, then
851 * we must reject this device.
852 */
853 if (j != most_recent &&
854 content->array.raid_disks > 0 &&
855 devices[most_recent].i.disk.raid_disk >= 0 &&
856 devmap[j * content->array.raid_disks + devices[most_recent].i.disk.raid_disk] == 0) {
857 if (verbose > -1)
858 fprintf(stderr, Name ": ignoring %s as it reports %s as failed\n",
859 devices[j].devname, devices[most_recent].devname);
860 best[i] = -1;
861 continue;
862 }
213ee40b
NB
863 if (devices[j].i.events+event_margin >=
864 devices[most_recent].i.events) {
64c4757e 865 devices[j].uptodate = 1;
1ff98339 866 if (i < content->array.raid_disks) {
dcc4210f
DW
867 if (devices[j].i.recovery_start == MaxSector ||
868 (content->reshape_active &&
869 j >= content->array.raid_disks - content->delta_disks)) {
1ff98339
N
870 okcnt++;
871 avail[i]=1;
872 } else
873 rebuilding_cnt++;
265e0f17 874 } else
52826846 875 sparecnt++;
64c4757e
NB
876 }
877 }
02e7c5b7 878 free(devmap);
98dbd966
DW
879 while (force && !enough(content->array.level, content->array.raid_disks,
880 content->array.layout, 1,
265e0f17 881 avail, okcnt)) {
64c4757e
NB
882 /* Choose the newest best drive which is
883 * not up-to-date, update the superblock
884 * and add it.
885 */
52826846 886 int fd;
3da92f27 887 struct supertype *tst;
f21e18ca 888 unsigned long long current_events;
cd29a5c8 889 chosen_drive = -1;
f21e18ca 890 for (i = 0; i < content->array.raid_disks && i < bestcnt; i++) {
52826846
NB
891 int j = best[i];
892 if (j>=0 &&
893 !devices[j].uptodate &&
921d9e16 894 devices[j].i.recovery_start == MaxSector &&
52826846 895 (chosen_drive < 0 ||
213ee40b
NB
896 devices[j].i.events
897 > devices[chosen_drive].i.events))
52826846
NB
898 chosen_drive = j;
899 }
900 if (chosen_drive < 0)
901 break;
213ee40b 902 current_events = devices[chosen_drive].i.events;
c5a6f9a6 903 add_another:
dab6685f
NB
904 if (verbose >= 0)
905 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
213ee40b
NB
906 devices[chosen_drive].devname,
907 devices[chosen_drive].i.disk.raid_disk,
908 (int)(devices[chosen_drive].i.events),
909 (int)(devices[most_recent].i.events));
8b0dabea 910 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846
NB
911 if (fd < 0) {
912 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
913 devices[chosen_drive].devname);
213ee40b 914 devices[chosen_drive].i.events = 0;
52826846
NB
915 continue;
916 }
3da92f27 917 tst = dup_super(st);
60b435db 918 if (tst->ss->load_super(tst,fd, NULL)) {
52826846
NB
919 close(fd);
920 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
921 devices[chosen_drive].devname);
213ee40b 922 devices[chosen_drive].i.events = 0;
52826846
NB
923 continue;
924 }
98dbd966
DW
925 content->events = devices[most_recent].i.events;
926 tst->ss->update_super(tst, content, "force-one",
67a8c82d
NB
927 devices[chosen_drive].devname, verbose,
928 0, NULL);
4b1ac34b 929
3da92f27 930 if (tst->ss->store_super(tst, fd)) {
52826846
NB
931 close(fd);
932 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
933 devices[chosen_drive].devname);
213ee40b 934 devices[chosen_drive].i.events = 0;
3da92f27 935 tst->ss->free_super(tst);
52826846
NB
936 continue;
937 }
938 close(fd);
213ee40b 939 devices[chosen_drive].i.events = devices[most_recent].i.events;
52826846 940 devices[chosen_drive].uptodate = 1;
265e0f17 941 avail[chosen_drive] = 1;
52826846 942 okcnt++;
3da92f27 943 tst->ss->free_super(tst);
c5a6f9a6
NB
944
945 /* If there are any other drives of the same vintage,
946 * add them in as well. We can't lose and we might gain
947 */
f21e18ca 948 for (i = 0; i < content->array.raid_disks && i < bestcnt ; i++) {
c5a6f9a6
NB
949 int j = best[i];
950 if (j >= 0 &&
951 !devices[j].uptodate &&
213ee40b 952 devices[j].i.events == current_events) {
c5a6f9a6
NB
953 chosen_drive = j;
954 goto add_another;
955 }
956 }
64c4757e 957 }
52826846
NB
958
959 /* Now we want to look at the superblock which the kernel will base things on
960 * and compare the devices that we think are working with the devices that the
961 * superblock thinks are working.
962 * If there are differences and --force is given, then update this chosen
963 * superblock.
964 */
cd29a5c8 965 chosen_drive = -1;
3da92f27 966 st->ss->free_super(st);
56eedc1a 967 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
968 int j = best[i];
969 int fd;
4b1ac34b 970
52826846
NB
971 if (j<0)
972 continue;
973 if (!devices[j].uptodate)
974 continue;
975 chosen_drive = j;
8b0dabea 976 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
52826846
NB
977 fprintf(stderr, Name ": Cannot open %s: %s\n",
978 devices[j].devname, strerror(errno));
7f91af49 979 close(mdfd);
d7f7ebb7 980 free(devices);
52826846
NB
981 return 1;
982 }
3da92f27 983 if (st->ss->load_super(st,fd, NULL)) {
52826846
NB
984 close(fd);
985 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
986 devices[j].devname);
7f91af49 987 close(mdfd);
d7f7ebb7 988 free(devices);
52826846
NB
989 return 1;
990 }
991 close(fd);
992 }
3da92f27 993 if (st->sb == NULL) {
4b1ac34b 994 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
7f91af49 995 close(mdfd);
d7f7ebb7 996 free(devices);
4b1ac34b
NB
997 return 1;
998 }
a5d85af7 999 st->ss->getinfo_super(st, content, NULL);
f35f2525 1000#ifndef MDASSEMBLE
98dbd966 1001 sysfs_init(content, mdfd, 0);
f35f2525 1002#endif
56eedc1a 1003 for (i=0; i<bestcnt; i++) {
52826846 1004 int j = best[i];
98c6faba 1005 unsigned int desired_state;
11a3e71d 1006
98dbd966 1007 if (i < content->array.raid_disks)
11a3e71d
NB
1008 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
1009 else
1010 desired_state = 0;
1011
52826846
NB
1012 if (j<0)
1013 continue;
1014 if (!devices[j].uptodate)
1015 continue;
4b1ac34b 1016
213ee40b 1017 devices[j].i.disk.state = desired_state;
4e9a6ff7
N
1018 if (!(devices[j].i.array.state & 1))
1019 clean = 0;
213ee40b
NB
1020
1021 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
68c7d6d7 1022 verbose, 0, NULL)) {
52826846 1023 if (force) {
dab6685f
NB
1024 if (verbose >= 0)
1025 fprintf(stderr, Name ": "
1026 "clearing FAULTY flag for device %d in %s for %s\n",
1027 j, mddev, devices[j].devname);
4b1ac34b 1028 change = 1;
52826846 1029 } else {
dab6685f
NB
1030 if (verbose >= -1)
1031 fprintf(stderr, Name ": "
1032 "device %d in %s has wrong state in superblock, but %s seems ok\n",
1033 i, mddev, devices[j].devname);
52826846
NB
1034 }
1035 }
4b1ac34b 1036#if 0
213ee40b 1037 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
52826846
NB
1038 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
1039 i, mddev);
1040 }
4b1ac34b 1041#endif
52826846 1042 }
c5a6f9a6 1043 if (force && !clean &&
98dbd966
DW
1044 !enough(content->array.level, content->array.raid_disks,
1045 content->array.layout, clean,
c5a6f9a6 1046 avail, okcnt)) {
98dbd966 1047 change += st->ss->update_super(st, content, "force-array",
67a8c82d
NB
1048 devices[chosen_drive].devname, verbose,
1049 0, NULL);
583315d9 1050 clean = 1;
d013a55e 1051 }
52826846 1052
4b1ac34b 1053 if (change) {
52826846 1054 int fd;
8b0dabea 1055 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846 1056 if (fd < 0) {
353632d9 1057 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
52826846 1058 devices[chosen_drive].devname);
7f91af49 1059 close(mdfd);
d7f7ebb7 1060 free(devices);
52826846
NB
1061 return 1;
1062 }
3da92f27 1063 if (st->ss->store_super(st, fd)) {
52826846
NB
1064 close(fd);
1065 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
1066 devices[chosen_drive].devname);
7f91af49 1067 close(mdfd);
d7f7ebb7 1068 free(devices);
52826846
NB
1069 return 1;
1070 }
1071 close(fd);
52826846
NB
1072 }
1073
353632d9
NB
1074 /* If we are in the middle of a reshape we may need to restore saved data
1075 * that was moved aside due to the reshape overwriting live data
1076 * The code of doing this lives in Grow.c
1077 */
39c5a909 1078#ifndef MDASSEMBLE
98dbd966 1079 if (content->reshape_active) {
353632d9
NB
1080 int err = 0;
1081 int *fdlist = malloc(sizeof(int)* bestcnt);
cd77ac4e 1082 if (verbose > 0)
ea0ebe96
N
1083 fprintf(stderr, Name ":%s has an active reshape - checking "
1084 "if critical section needs to be restored\n",
1085 chosen_name);
353632d9
NB
1086 for (i=0; i<bestcnt; i++) {
1087 int j = best[i];
1088 if (j >= 0) {
1089 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
1090 if (fdlist[i] < 0) {
1091 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
1092 devices[j].devname);
1093 err = 1;
1094 break;
1095 }
1096 } else
1097 fdlist[i] = -1;
1098 }
1099 if (!err)
cd77ac4e 1100 err = Grow_restart(st, content, fdlist, bestcnt, backup_file, verbose > 0);
353632d9
NB
1101 while (i>0) {
1102 i--;
1103 if (fdlist[i]>=0) close(fdlist[i]);
1104 }
1105 if (err) {
1106 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
e9e43ec3
N
1107 if (backup_file == NULL)
1108 fprintf(stderr," Possibly you needed to specify the --backup-file\n");
7f91af49 1109 close(mdfd);
d7f7ebb7 1110 free(devices);
353632d9
NB
1111 return err;
1112 }
1113 }
39c5a909 1114#endif
aa88f531
NB
1115 /* count number of in-sync devices according to the superblock.
1116 * We must have this number to start the array without -s or -R
1117 */
98dbd966 1118 req_cnt = content->array.working_disks;
aa88f531 1119
64c4757e
NB
1120 /* Almost ready to actually *do* something */
1121 if (!old_linux) {
fbf8a0b7 1122 int rv;
a19c88b8 1123
a04d5763
N
1124 /* First, fill in the map, so that udev can find our name
1125 * as soon as we become active.
1126 */
98dbd966
DW
1127 map_update(NULL, fd2devnum(mdfd), content->text_version,
1128 content->uuid, chosen_name);
a04d5763 1129
98dbd966 1130 rv = set_array_info(mdfd, st, content);
fbf8a0b7 1131 if (rv) {
f35f2525 1132 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
64c4757e 1133 mddev, strerror(errno));
24af7a87 1134 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1135 close(mdfd);
d7f7ebb7 1136 free(devices);
64c4757e
NB
1137 return 1;
1138 }
11484a63 1139 if (ident->bitmap_fd >= 0) {
c82f047c
NB
1140 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
1141 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
24af7a87 1142 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1143 close(mdfd);
d7f7ebb7 1144 free(devices);
c82f047c
NB
1145 return 1;
1146 }
7ef02d01
NB
1147 } else if (ident->bitmap_file) {
1148 /* From config file */
1149 int bmfd = open(ident->bitmap_file, O_RDWR);
1150 if (bmfd < 0) {
1151 fprintf(stderr, Name ": Could not open bitmap file %s\n",
1152 ident->bitmap_file);
24af7a87 1153 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1154 close(mdfd);
d7f7ebb7 1155 free(devices);
7ef02d01
NB
1156 return 1;
1157 }
1158 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
1159 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
1160 close(bmfd);
24af7a87 1161 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1162 close(mdfd);
d7f7ebb7 1163 free(devices);
7ef02d01
NB
1164 return 1;
1165 }
1166 close(bmfd);
c82f047c 1167 }
7ef02d01 1168
52826846 1169 /* First, add the raid disks, but add the chosen one last */
56eedc1a 1170 for (i=0; i<= bestcnt; i++) {
52826846 1171 int j;
56eedc1a 1172 if (i < bestcnt) {
52826846
NB
1173 j = best[i];
1174 if (j == chosen_drive)
1175 continue;
1176 } else
1177 j = chosen_drive;
1178
56eedc1a 1179 if (j >= 0 /* && devices[j].uptodate */) {
484ae54d
N
1180 int dfd = dev_open(devices[j].devname,
1181 O_RDWR|O_EXCL);
1182 if (dfd >= 0) {
1183 remove_partitions(dfd);
1184 close(dfd);
1185 }
98dbd966 1186 rv = add_disk(mdfd, st, content, &devices[j].i);
7801ac20 1187
a19c88b8 1188 if (rv) {
213ee40b
NB
1189 fprintf(stderr, Name ": failed to add "
1190 "%s to %s: %s\n",
64c4757e
NB
1191 devices[j].devname,
1192 mddev,
1193 strerror(errno));
98dbd966 1194 if (i < content->array.raid_disks
213ee40b 1195 || i == bestcnt)
52826846
NB
1196 okcnt--;
1197 else
1198 sparecnt--;
dab6685f 1199 } else if (verbose > 0)
213ee40b
NB
1200 fprintf(stderr, Name ": added %s "
1201 "to %s as %d\n",
1202 devices[j].devname, mddev,
1203 devices[j].i.disk.raid_disk);
98dbd966 1204 } else if (verbose > 0 && i < content->array.raid_disks)
213ee40b
NB
1205 fprintf(stderr, Name ": no uptodate device for "
1206 "slot %d of %s\n",
64c4757e
NB
1207 i, mddev);
1208 }
aba69144 1209
98dbd966 1210 if (content->array.level == LEVEL_CONTAINER) {
598f0d58
NB
1211 if (verbose >= 0) {
1212 fprintf(stderr, Name ": Container %s has been "
1213 "assembled with %d drive%s",
57ed8c91 1214 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
f21e18ca 1215 if (okcnt < (unsigned)content->array.raid_disks)
598f0d58 1216 fprintf(stderr, " (out of %d)",
98dbd966 1217 content->array.raid_disks);
598f0d58
NB
1218 fprintf(stderr, "\n");
1219 }
98dbd966 1220 sysfs_uevent(content, "change");
a7c6e3fb 1221 wait_for(chosen_name, mdfd);
7f91af49 1222 close(mdfd);
d7f7ebb7 1223 free(devices);
598f0d58
NB
1224 return 0;
1225 }
1226
64c4757e 1227 if (runstop == 1 ||
b8a8ccf9 1228 (runstop <= 0 &&
98dbd966
DW
1229 ( enough(content->array.level, content->array.raid_disks,
1230 content->array.layout, clean, avail, okcnt) &&
1ff98339 1231 (okcnt + rebuilding_cnt >= req_cnt || start_partial_ok)
aa88f531 1232 ))) {
e9e43ec3
N
1233 /* This array is good-to-go.
1234 * If a reshape is in progress then we might need to
1235 * continue monitoring it. In that case we start
1236 * it read-only and let the grow code make it writable.
1237 */
1238 int rv;
eb3929a4 1239#ifndef MDASSEMBLE
e9e43ec3
N
1240 if (content->reshape_active &&
1241 content->delta_disks <= 0)
1242 rv = Grow_continue(mdfd, st, content, backup_file);
1243 else
eb3929a4 1244#endif
e9e43ec3
N
1245 rv = ioctl(mdfd, RUN_ARRAY, NULL);
1246 if (rv == 0) {
dab6685f
NB
1247 if (verbose >= 0) {
1248 fprintf(stderr, Name ": %s has been started with %d drive%s",
1249 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1250 if (okcnt < (unsigned)content->array.raid_disks)
98dbd966 1251 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1ff98339
N
1252 if (rebuilding_cnt)
1253 fprintf(stderr, "%s %d rebuilding", sparecnt?",":" and", rebuilding_cnt);
dab6685f
NB
1254 if (sparecnt)
1255 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1256 fprintf(stderr, ".\n");
1257 }
8a659c33
N
1258 if (content->reshape_active &&
1259 content->array.level >= 4 &&
1260 content->array.level <= 6) {
acee8e89
N
1261 /* might need to increase the size
1262 * of the stripe cache - default is 256
1263 */
8a659c33 1264 if (256 < 4 * (content->array.chunk_size/4096)) {
acee8e89
N
1265 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1266 if (sra)
1267 sysfs_set_num(sra, NULL,
1268 "stripe_cache_size",
8a659c33 1269 (4 * content->array.chunk_size / 4096) + 1);
acee8e89
N
1270 }
1271 }
7e83544b
N
1272 if (okcnt < (unsigned)content->array.raid_disks) {
1273 /* If any devices did not get added
1274 * because the kernel rejected them based
1275 * on event count, try adding them
1276 * again providing the action policy is
1277 * 're-add' or greater. The bitmap
1278 * might allow them to be included, or
1279 * they will become spares.
1280 */
1281 for (i = 0; i <= bestcnt; i++) {
1282 int j = best[i];
1283 if (j >= 0 && !devices[j].uptodate) {
1284 if (!disk_action_allows(&devices[j].i, st->ss->name, act_re_add))
1285 continue;
1286 rv = add_disk(mdfd, st, content,
1287 &devices[j].i);
1288 if (rv == 0 && verbose >= 0)
1289 fprintf(stderr,
1290 Name ": %s has been re-added.\n",
1291 devices[j].devname);
1292 }
1293 }
1294 }
a7c6e3fb 1295 wait_for(mddev, mdfd);
7f91af49
N
1296 close(mdfd);
1297 if (auto_assem) {
589395d6 1298 int usecs = 1;
589395d6
NB
1299 /* There is a nasty race with 'mdadm --monitor'.
1300 * If it opens this device before we close it,
1301 * it gets an incomplete open on which IO
598f0d58
NB
1302 * doesn't work and the capacity is
1303 * wrong.
589395d6
NB
1304 * If we reopen (to check for layered devices)
1305 * before --monitor closes, we loose.
1306 *
1307 * So: wait upto 1 second for there to be
1308 * a non-zero capacity.
1309 */
1310 while (usecs < 1000) {
1311 mdfd = open(mddev, O_RDONLY);
1312 if (mdfd >= 0) {
beae1dfe
NB
1313 unsigned long long size;
1314 if (get_dev_size(mdfd, NULL, &size) &&
589395d6
NB
1315 size > 0)
1316 break;
1317 close(mdfd);
1318 }
1319 usleep(usecs);
1320 usecs <<= 1;
1321 }
1322 }
d7f7ebb7 1323 free(devices);
64c4757e 1324 return 0;
82b27616 1325 }
682c7051 1326 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
64c4757e 1327 mddev, strerror(errno));
583315d9 1328
98dbd966
DW
1329 if (!enough(content->array.level, content->array.raid_disks,
1330 content->array.layout, 1, avail, okcnt))
583315d9
NB
1331 fprintf(stderr, Name ": Not enough devices to "
1332 "start the array.\n");
98dbd966
DW
1333 else if (!enough(content->array.level,
1334 content->array.raid_disks,
1335 content->array.layout, clean,
583315d9
NB
1336 avail, okcnt))
1337 fprintf(stderr, Name ": Not enough devices to "
1338 "start the array while not clean "
1339 "- consider --force.\n");
1340
7f91af49 1341 if (auto_assem)
1c203a4b 1342 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1343 close(mdfd);
d7f7ebb7 1344 free(devices);
64c4757e
NB
1345 return 1;
1346 }
82b27616 1347 if (runstop == -1) {
b8a8ccf9 1348 fprintf(stderr, Name ": %s assembled from %d drive%s",
52826846 1349 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1350 if (okcnt != (unsigned)content->array.raid_disks)
98dbd966 1351 fprintf(stderr, " (out of %d)", content->array.raid_disks);
b8a8ccf9 1352 fprintf(stderr, ", but not started.\n");
7f91af49 1353 close(mdfd);
d7f7ebb7 1354 free(devices);
64c4757e 1355 return 0;
82b27616 1356 }
4855f95c 1357 if (verbose >= -1) {
dab6685f 1358 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1ff98339
N
1359 if (rebuilding_cnt)
1360 fprintf(stderr, "%s %d rebuilding", sparecnt?", ":" and ", rebuilding_cnt);
dab6685f
NB
1361 if (sparecnt)
1362 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
98dbd966
DW
1363 if (!enough(content->array.level, content->array.raid_disks,
1364 content->array.layout, 1, avail, okcnt))
dab6685f 1365 fprintf(stderr, " - not enough to start the array.\n");
98dbd966
DW
1366 else if (!enough(content->array.level,
1367 content->array.raid_disks,
1368 content->array.layout, clean,
583315d9
NB
1369 avail, okcnt))
1370 fprintf(stderr, " - not enough to start the "
1371 "array while not clean - consider "
1372 "--force.\n");
dab6685f 1373 else {
f21e18ca 1374 if (req_cnt == (unsigned)content->array.raid_disks)
dab6685f
NB
1375 fprintf(stderr, " - need all %d to start it", req_cnt);
1376 else
98dbd966 1377 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
dab6685f
NB
1378 fprintf(stderr, " (use --run to insist).\n");
1379 }
aa88f531 1380 }
7f91af49 1381 if (auto_assem)
1c203a4b 1382 ioctl(mdfd, STOP_ARRAY, NULL);
56a8da69 1383 close(mdfd);
d7f7ebb7 1384 free(devices);
64c4757e 1385 return 1;
82b27616 1386 } else {
52826846
NB
1387 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1388 * been updated to point to the current locations of devices.
1389 * so we can just start the array
82b27616 1390 */
cd29a5c8 1391 unsigned long dev;
213ee40b
NB
1392 dev = makedev(devices[chosen_drive].i.disk.major,
1393 devices[chosen_drive].i.disk.minor);
82b27616
NB
1394 if (ioctl(mdfd, START_ARRAY, dev)) {
1395 fprintf(stderr, Name ": Cannot start array: %s\n",
1396 strerror(errno));
1397 }
aba69144 1398
64c4757e 1399 }
7f91af49 1400 close(mdfd);
d7f7ebb7 1401 free(devices);
e0d19036 1402 return 0;
64c4757e 1403}
6234c63c
DW
1404
1405#ifndef MDASSEMBLE
1406int assemble_container_content(struct supertype *st, int mdfd,
1407 struct mdinfo *content, int runstop,
1408 char *chosen_name, int verbose)
1409{
1410 struct mdinfo *dev, *sra;
1411 int working = 0, preexist = 0;
1412 struct map_ent *map = NULL;
1413
1414 sysfs_init(content, mdfd, 0);
1415
1416 sra = sysfs_read(mdfd, 0, GET_VERSION);
1417 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0)
4408ee76
N
1418 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1419 close(mdfd);
6234c63c 1420 return 1;
4408ee76 1421 }
6234c63c
DW
1422 if (sra)
1423 sysfs_free(sra);
1424
1425 for (dev = content->devs; dev; dev = dev->next)
462906cd 1426 if (sysfs_add_disk(content, dev, 1) == 0)
6234c63c
DW
1427 working++;
1428 else if (errno == EEXIST)
1429 preexist++;
4408ee76
N
1430 if (working == 0) {
1431 close(mdfd);
7cb2aa33 1432 return 1;/* Nothing new, don't try to start */
8b4e5ea9
N
1433 }
1434
1435 map_update(&map, fd2devnum(mdfd),
1436 content->text_version,
1437 content->uuid, chosen_name);
1438
1439 if (runstop > 0 ||
6234c63c 1440 (working + preexist) >= content->array.working_disks) {
bb50e5d3 1441 int err;
a714580e 1442
6234c63c
DW
1443 switch(content->array.level) {
1444 case LEVEL_LINEAR:
1445 case LEVEL_MULTIPATH:
1446 case 0:
bb50e5d3
N
1447 err = sysfs_set_str(content, NULL, "array_state",
1448 "active");
6234c63c
DW
1449 break;
1450 default:
bb50e5d3 1451 err = sysfs_set_str(content, NULL, "array_state",
6234c63c
DW
1452 "readonly");
1453 /* start mdmon if needed. */
bb50e5d3
N
1454 if (!err) {
1455 if (!mdmon_running(st->container_dev))
1456 start_mdmon(st->container_dev);
1457 ping_monitor(devnum2devname(st->container_dev));
1458 }
6234c63c
DW
1459 break;
1460 }
bb50e5d3
N
1461 if (!err)
1462 sysfs_set_safemode(content, content->safe_mode_delay);
6234c63c 1463 if (verbose >= 0) {
bb50e5d3
N
1464 if (err)
1465 fprintf(stderr, Name
1466 ": array %s now has %d devices",
1467 chosen_name, working + preexist);
1468 else
1469 fprintf(stderr, Name
1470 ": Started %s with %d devices",
1471 chosen_name, working + preexist);
6234c63c
DW
1472 if (preexist)
1473 fprintf(stderr, " (%d new)", working);
1474 fprintf(stderr, "\n");
1475 }
bb50e5d3 1476 if (!err)
a7c6e3fb 1477 wait_for(chosen_name, mdfd);
4408ee76 1478 close(mdfd);
7cb2aa33 1479 return 0;
6234c63c 1480 /* FIXME should have an O_EXCL and wait for read-auto */
7cb2aa33 1481 } else {
6234c63c
DW
1482 if (verbose >= 0)
1483 fprintf(stderr, Name
1484 ": %s assembled with %d devices but "
1485 "not started\n",
1486 chosen_name, working);
4408ee76 1487 close(mdfd);
7cb2aa33
N
1488 return 1;
1489 }
6234c63c
DW
1490}
1491#endif
1492