]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Assemble: turn next_member goto loop into a for loop.
[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;
289 tmpdev = tmpdev->next) {
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;
52826846 295
da6b5ca9
NB
296 if (tmpdev->used > 1) continue;
297
52826846 298 if (ident->devices &&
56eedc1a 299 !match_oneof(ident->devices, devname)) {
52437b4f 300 if (report_missmatch)
56eedc1a 301 fprintf(stderr, Name ": %s is not one of %s\n", devname, ident->devices);
52826846 302 continue;
56eedc1a 303 }
4b1ac34b 304
8b0dabea 305 dfd = dev_open(devname, O_RDONLY|O_EXCL);
64c4757e 306 if (dfd < 0) {
52437b4f 307 if (report_missmatch)
682c7051 308 fprintf(stderr, Name ": cannot open device %s: %s\n",
64c4757e 309 devname, strerror(errno));
da6b5ca9 310 tmpdev->used = 2;
52826846
NB
311 } else if (fstat(dfd, &stb)< 0) {
312 /* Impossible! */
313 fprintf(stderr, Name ": fstat failed for %s: %s\n",
314 devname, strerror(errno));
da6b5ca9 315 tmpdev->used = 2;
cd29a5c8
NB
316 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
317 fprintf(stderr, Name ": %s is not a block device.\n",
52826846 318 devname);
da6b5ca9 319 tmpdev->used = 2;
82d9eba6 320 } else if (!tst && (tst = guess_super(dfd)) == NULL) {
52437b4f 321 if (report_missmatch)
da6b5ca9
NB
322 fprintf(stderr, Name ": no recogniseable superblock on %s\n",
323 devname);
324 tmpdev->used = 2;
1ff98339
N
325 } else if (tst->ss->load_super(tst,dfd, NULL)) {
326 if (report_missmatch)
0f22b998
N
327 fprintf(stderr, Name ": no RAID superblock on %s\n",
328 devname);
d68ea4d7 329 tmpdev->used = 2;
0f22b998
N
330 } else if (tst->ss->compare_super == NULL) {
331 if (report_missmatch)
332 fprintf(stderr, Name ": Cannot assemble %s metadata on %s\n",
333 tst->ss->name, devname);
0f22b998 334 tmpdev->used = 2;
31015d57 335 } else if (auto_assem && st == NULL &&
4e8d9f0a 336 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
d1d3482b 337 tst->ss->match_home(tst, homehost) == 1)) {
31015d57
N
338 if (report_missmatch)
339 fprintf(stderr, Name ": %s has metadata type %s for which "
340 "auto-assembly is disabled\n",
341 devname, tst->ss->name);
342 tmpdev->used = 2;
52826846 343 } else {
98dbd966
DW
344 content = &info;
345 memset(content, 0, sizeof(*content));
a5d85af7 346 tst->ss->getinfo_super(tst, content, NULL);
64c4757e 347 }
c06487ce 348 if (dfd >= 0) close(dfd);
d68ea4d7
N
349 if (tmpdev->used == 2) {
350 if (auto_assem)
351 /* Ignore unrecognised devices during auto-assembly */
352 goto loop;
353 if (ident->uuid_set || ident->name[0] ||
354 ident->super_minor != UnSet)
355 /* Ignore unrecognised device if looking for
356 * specific array */
357 goto loop;
358
359
360 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
361 devname);
362 if (st)
363 st->ss->free_super(st);
364 dev_policy_free(pol);
365 return 1;
366 }
52826846 367
d68ea4d7 368 if (tst->ss->container_content
9008ed1c
N
369 && tst->loaded_container) {
370 /* tmpdev is a container. We need to be either
371 * looking for a member, or auto-assembling
372 */
373 if (st) {
374 /* already found some components, this cannot
375 * be another one.
376 */
377 if (report_missmatch)
378 fprintf(stderr, Name ": %s is a container, but we are looking for components\n",
379 devname);
380 goto loop;
381 }
382
383 if (ident->container) {
384 if (ident->container[0] == '/' &&
385 !same_dev(ident->container, devname)) {
386 if (report_missmatch)
387 fprintf(stderr, Name ": %s is not the container required (%s)\n",
388 devname, ident->container);
389 goto loop;
390 }
391 if (ident->container[0] != '/') {
392 /* we have a uuid */
393 int uuid[4];
394 if (!parse_uuid(ident->container, uuid) ||
395 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
396 if (report_missmatch)
397 fprintf(stderr, Name ": %s has wrong UUID to be required container\n",
398 devname);
399 goto loop;
400 }
401 }
402 }
403 /* It is worth looking inside this container.
404 */
7636b5a8
N
405 if (verbose > 0)
406 fprintf(stderr, Name ": looking in container %s\n",
407 devname);
1415fe4b 408
88cef9b3
N
409 for (content = tst->ss->container_content(tst, NULL);
410 content;
411 content = content->next) {
1415fe4b 412
88cef9b3
N
413 if (!ident_matches(ident, content, tst,
414 homehost, update,
415 report_missmatch ? devname : NULL))
416 /* message already printed */;
417 else if (is_member_busy(content->text_version)) {
418 if (report_missmatch)
419 fprintf(stderr, Name ": member %s in %s is already assembled\n",
420 content->text_version,
421 devname);
422 } else
423 break;
424 }
425 if (!content) {
f7ad3ccc 426 tmpdev->used = 2;
88cef9b3 427 goto loop; /* empty container */
fa031239 428 }
88cef9b3 429
9008ed1c 430 st = tst; tst = NULL;
4c1c3ad8 431 if (!auto_assem && inargv && tmpdev->next != NULL) {
9008ed1c
N
432 fprintf(stderr, Name ": %s is a container, but is not "
433 "only device given: confused and aborting\n",
434 devname);
435 st->ss->free_super(st);
4e8d9f0a 436 dev_policy_free(pol);
9008ed1c
N
437 return 1;
438 }
7636b5a8
N
439 if (verbose > 0)
440 fprintf(stderr, Name ": found match on member %s in %s\n",
441 content->text_version, devname);
9008ed1c
N
442 break;
443 }
bac0d92e 444
bac0d92e
N
445 if (!ident_matches(ident, content, tst,
446 homehost, update,
447 report_missmatch ? devname : NULL))
448 goto loop;
449
83b6208e 450 if (st == NULL)
3da92f27
NB
451 st = dup_super(tst);
452 if (st->minor_version == -1)
453 st->minor_version = tst->minor_version;
83b6208e
NB
454 if (st->ss != tst->ss ||
455 st->minor_version != tst->minor_version ||
64557c33 456 st->ss->compare_super(st, tst) != 0) {
83b6208e 457 /* Some mismatch. If exactly one array matches this host,
da6b5ca9
NB
458 * we can resolve on that one.
459 * Or, if we are auto assembling, we just ignore the second
460 * for now.
83b6208e 461 */
c30e5369 462 if (auto_assem)
df37ffc0 463 goto loop;
83b6208e 464 if (homehost) {
3da92f27
NB
465 int first = st->ss->match_home(st, homehost);
466 int last = tst->ss->match_home(tst, homehost);
9362c1c8
N
467 if (first != last &&
468 (first == 1 || last == 1)) {
83b6208e
NB
469 /* We can do something */
470 if (first) {/* just ignore this one */
52437b4f 471 if (report_missmatch)
83b6208e
NB
472 fprintf(stderr, Name ": %s misses out due to wrong homehost\n",
473 devname);
df37ffc0 474 goto loop;
83b6208e 475 } else { /* reject all those sofar */
a655e550 476 struct mddev_dev *td;
52437b4f 477 if (report_missmatch)
83b6208e
NB
478 fprintf(stderr, Name ": %s overrides previous devices due to good homehost\n",
479 devname);
480 for (td=devlist; td != tmpdev; td=td->next)
481 if (td->used == 1)
482 td->used = 0;
483 tmpdev->used = 1;
df37ffc0 484 goto loop;
83b6208e
NB
485 }
486 }
487 }
52826846
NB
488 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
489 devname);
3da92f27
NB
490 tst->ss->free_super(tst);
491 st->ss->free_super(st);
4e8d9f0a 492 dev_policy_free(pol);
52826846 493 return 1;
64c4757e
NB
494 }
495
811e6cbe 496 tmpdev->used = 1;
df37ffc0
NB
497
498 loop:
4e8d9f0a
N
499 dev_policy_free(pol);
500 pol = NULL;
3d2b16e7
NB
501 if (tst)
502 tst->ss->free_super(tst);
811e6cbe
NB
503 }
504
98dbd966 505 if (!st || !st->sb || !content)
c30e5369
N
506 return 2;
507
05833051 508 /* Now need to open the array device. Use create_mddev */
98dbd966 509 if (content == &info)
a5d85af7 510 st->ss->getinfo_super(st, content, NULL);
3d2c4fc7 511
69207ff6 512 trustworthy = FOREIGN;
05833051 513 name = content->name;
745f72f6
N
514 switch (st->ss->match_home(st, homehost)
515 ?: st->ss->match_home(st, "any")) {
69207ff6
N
516 case 1:
517 trustworthy = LOCAL;
98dbd966 518 name = strchr(content->name, ':');
69207ff6
N
519 if (name)
520 name++;
3d2c4fc7 521 else
98dbd966 522 name = content->name;
69207ff6 523 break;
c30e5369 524 }
05833051 525 if (!auto_assem)
aa7c284c 526 /* If the array is listed in mdadm.conf or on
ac2ecf55
N
527 * command line, then we trust the name
528 * even if the array doesn't look local
529 */
530 trustworthy = LOCAL;
531
05833051 532 if (name[0] == 0 &&
98dbd966
DW
533 content->array.level == LEVEL_CONTAINER) {
534 name = content->text_version;
a4bc1720
N
535 trustworthy = METADATA;
536 }
0ac91628
N
537
538 if (name[0] && trustworthy != LOCAL &&
539 ! require_homehost &&
540 conf_name_is_free(name))
541 trustworthy = LOCAL;
542
7cdc0872
N
543 if (trustworthy == LOCAL &&
544 strchr(name, ':'))
545 /* Ignore 'host:' prefix of name */
546 name = strchr(name, ':')+1;
547
a04d5763
N
548 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
549 chosen_name);
c30e5369
N
550 if (mdfd < 0) {
551 st->ss->free_super(st);
c30e5369 552 if (auto_assem)
60e1bc1a 553 goto try_again;
c30e5369
N
554 return 1;
555 }
a04d5763 556 mddev = chosen_name;
c30e5369
N
557 vers = md_get_version(mdfd);
558 if (vers < 9000) {
559 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
560 " Upgrade your kernel or try --build\n");
561 close(mdfd);
562 return 1;
563 }
66afdfa9 564 if (mddev_busy(fd2devnum(mdfd))) {
c30e5369
N
565 fprintf(stderr, Name ": %s already active, cannot restart it!\n",
566 mddev);
567 for (tmpdev = devlist ;
568 tmpdev && tmpdev->used != 1;
569 tmpdev = tmpdev->next)
570 ;
571 if (tmpdev && auto_assem)
572 fprintf(stderr, Name ": %s needed for %s...\n",
573 mddev, tmpdev->devname);
574 close(mdfd);
575 mdfd = -3;
576 st->ss->free_super(st);
c30e5369
N
577 if (auto_assem)
578 goto try_again;
579 return 1;
8a46fe84 580 }
c30e5369 581 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
8a46fe84 582
9008ed1c
N
583#ifndef MDASSEMBLE
584 if (content != &info) {
585 /* This is a member of a container. Try starting the array. */
586 return assemble_container_content(st, mdfd, content, runstop,
587 chosen_name, verbose);
588 }
589#endif
811e6cbe 590 /* Ok, no bad inconsistancy, we can try updating etc */
bf4fb153 591 bitmap_done = 0;
6e46bf34 592 content->update_private = NULL;
d7f7ebb7 593 devices = malloc(num_devs * sizeof(*devices));
02e7c5b7 594 devmap = calloc(num_devs * content->array.raid_disks, 1);
da6b5ca9 595 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
811e6cbe
NB
596 char *devname = tmpdev->devname;
597 struct stat stb;
5787fa49 598 /* looks like a good enough match to update the super block if needed */
d1f1011b 599#ifndef MDASSEMBLE
5787fa49 600 if (update) {
811e6cbe 601 int dfd;
4b1ac34b
NB
602 /* prepare useful information in info structures */
603 struct stat stb2;
3da92f27 604 struct supertype *tst;
1e2b2765 605 int err;
4b1ac34b 606 fstat(mdfd, &stb2);
7d99579f
NB
607
608 if (strcmp(update, "uuid")==0 &&
609 !ident->uuid_set) {
610 int rfd;
611 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
612 read(rfd, ident->uuid, 16) != 16) {
613 *(__u32*)(ident->uuid) = random();
614 *(__u32*)(ident->uuid+1) = random();
615 *(__u32*)(ident->uuid+2) = random();
616 *(__u32*)(ident->uuid+3) = random();
617 }
618 if (rfd >= 0) close(rfd);
7d99579f 619 }
811e6cbe
NB
620 dfd = dev_open(devname, O_RDWR|O_EXCL);
621
0430ed48
NB
622 remove_partitions(dfd);
623
3da92f27 624 tst = dup_super(st);
9f22b13f
N
625 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
626 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
627 devname);
628 if (dfd >= 0)
629 close(dfd);
630 close(mdfd);
d7f7ebb7 631 free(devices);
02e7c5b7 632 free(devmap);
9f22b13f
N
633 return 1;
634 }
02e7c5b7 635 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
811e6cbe 636
98dbd966
DW
637 memcpy(content->uuid, ident->uuid, 16);
638 strcpy(content->name, ident->name);
639 content->array.md_minor = minor(stb2.st_rdev);
811e6cbe 640
1e2b2765
N
641 if (strcmp(update, "byteorder") == 0)
642 err = 0;
643 else
644 err = tst->ss->update_super(tst, content, update,
645 devname, verbose,
646 ident->uuid_set,
647 homehost);
648 if (err < 0) {
649 fprintf(stderr,
650 Name ": --update=%s not understood"
651 " for %s metadata\n",
652 update, tst->ss->name);
653 tst->ss->free_super(tst);
654 free(tst);
655 close(mdfd);
656 close(dfd);
d7f7ebb7 657 free(devices);
02e7c5b7 658 free(devmap);
1e2b2765
N
659 return 1;
660 }
e5eac01f
NB
661 if (strcmp(update, "uuid")==0 &&
662 !ident->uuid_set) {
663 ident->uuid_set = 1;
98dbd966 664 memcpy(ident->uuid, content->uuid, 16);
e5eac01f 665 }
1e2b2765 666 if (tst->ss->store_super(tst, dfd))
5787fa49
NB
667 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
668 devname);
1e2b2765 669 close(dfd);
8131b493
NB
670
671 if (strcmp(update, "uuid")==0 &&
bf4fb153 672 ident->bitmap_fd >= 0 && !bitmap_done) {
3da92f27 673 if (bitmap_update_uuid(ident->bitmap_fd,
98dbd966 674 content->uuid,
3da92f27 675 tst->ss->swapuuid) != 0)
bf4fb153
NB
676 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
677 else
678 bitmap_done = 1;
679 }
3da92f27 680 tst->ss->free_super(tst);
d1f1011b
NB
681 } else
682#endif
683 {
30e1b9a5 684 struct supertype *tst = dup_super(st);
da6b5ca9
NB
685 int dfd;
686 dfd = dev_open(devname, O_RDWR|O_EXCL);
687
0430ed48
NB
688 remove_partitions(dfd);
689
9f22b13f
N
690 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
691 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
692 devname);
693 if (dfd >= 0)
694 close(dfd);
695 close(mdfd);
d7f7ebb7 696 free(devices);
02e7c5b7 697 free(devmap);
9f22b13f
N
698 return 1;
699 }
02e7c5b7 700 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
3da92f27 701 tst->ss->free_super(tst);
da6b5ca9 702 close(dfd);
5787fa49
NB
703 }
704
811e6cbe
NB
705 stat(devname, &stb);
706
dab6685f 707 if (verbose > 0)
cd29a5c8 708 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
98dbd966 709 devname, mddev, content->disk.raid_disk);
64c4757e 710 devices[devcnt].devname = devname;
64c4757e 711 devices[devcnt].uptodate = 0;
98dbd966 712 devices[devcnt].i = *content;
213ee40b
NB
713 devices[devcnt].i.disk.major = major(stb.st_rdev);
714 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
64c4757e 715 if (most_recent < devcnt) {
213ee40b
NB
716 if (devices[devcnt].i.events
717 > devices[most_recent].i.events)
64c4757e
NB
718 most_recent = devcnt;
719 }
df0d4ea0 720 if (content->array.level == LEVEL_MULTIPATH)
5787fa49
NB
721 /* with multipath, the raid_disk from the superblock is meaningless */
722 i = devcnt;
723 else
213ee40b 724 i = devices[devcnt].i.disk.raid_disk;
308e1801 725 if (i+1 == 0) {
98dbd966
DW
726 if (nextspare < content->array.raid_disks)
727 nextspare = content->array.raid_disks;
308e1801 728 i = nextspare++;
08110d41 729 } else {
98dbd966 730 if (i >= content->array.raid_disks &&
08110d41
NB
731 i >= nextspare)
732 nextspare = i+1;
308e1801 733 }
98c6faba 734 if (i < 10000) {
56eedc1a 735 if (i >= bestcnt) {
f21e18ca 736 int newbestcnt = i+10;
56eedc1a 737 int *newbest = malloc(sizeof(int)*newbestcnt);
f21e18ca 738 int c;
56eedc1a
NB
739 for (c=0; c < newbestcnt; c++)
740 if (c < bestcnt)
741 newbest[c] = best[c];
742 else
743 newbest[c] = -1;
744 if (best)free(best);
745 best = newbest;
746 bestcnt = newbestcnt;
747 }
6a255b69 748 if (best[i] >=0 &&
213ee40b
NB
749 devices[best[i]].i.events
750 == devices[devcnt].i.events
751 && (devices[best[i]].i.disk.minor
752 != devices[devcnt].i.disk.minor)
b8ac1967 753 && st->ss == &super0
98dbd966 754 && content->array.level != LEVEL_MULTIPATH) {
6a255b69
NB
755 /* two different devices with identical superblock.
756 * Could be a mis-detection caused by overlapping
757 * partitions. fail-safe.
758 */
759 fprintf(stderr, Name ": WARNING %s and %s appear"
760 " to have very similar superblocks.\n"
761 " If they are really different, "
762 "please --zero the superblock on one\n"
d2df86e0
NB
763 " If they are the same or overlap,"
764 " please remove one from %s.\n",
765 devices[best[i]].devname, devname,
766 inargv ? "the list" :
767 "the\n DEVICE list in mdadm.conf"
768 );
7f91af49 769 close(mdfd);
d7f7ebb7 770 free(devices);
02e7c5b7 771 free(devmap);
6a255b69
NB
772 return 1;
773 }
52826846 774 if (best[i] == -1
213ee40b
NB
775 || (devices[best[i]].i.events
776 < devices[devcnt].i.events))
52826846 777 best[i] = devcnt;
56eedc1a 778 }
64c4757e 779 devcnt++;
df37ffc0 780 }
6e46bf34
DW
781 free(content->update_private);
782 content->update_private = NULL;
4b1ac34b 783
64c4757e 784 if (devcnt == 0) {
682c7051 785 fprintf(stderr, Name ": no devices found for %s\n",
64c4757e 786 mddev);
3d2b16e7
NB
787 if (st)
788 st->ss->free_super(st);
7f91af49 789 close(mdfd);
d7f7ebb7 790 free(devices);
02e7c5b7 791 free(devmap);
64c4757e
NB
792 return 1;
793 }
4b1ac34b 794
3d2b16e7
NB
795 if (update && strcmp(update, "byteorder")==0)
796 st->minor_version = 90;
797
a5d85af7 798 st->ss->getinfo_super(st, content, NULL);
98dbd966 799 clean = content->array.state & 1;
4b1ac34b 800
64c4757e
NB
801 /* now we have some devices that might be suitable.
802 * I wonder how many
803 */
98dbd966
DW
804 avail = malloc(content->array.raid_disks);
805 memset(avail, 0, content->array.raid_disks);
64c4757e 806 okcnt = 0;
52826846 807 sparecnt=0;
1ff98339 808 rebuilding_cnt=0;
f21e18ca 809 for (i=0; i< bestcnt; i++) {
64c4757e 810 int j = best[i];
ee04451c
NB
811 int event_margin = 1; /* always allow a difference of '1'
812 * like the kernel does
813 */
64c4757e 814 if (j < 0) continue;
d013a55e
NB
815 /* note: we ignore error flags in multipath arrays
816 * as they don't make sense
817 */
df0d4ea0 818 if (content->array.level != LEVEL_MULTIPATH)
f22385f9 819 if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
213ee40b
NB
820 if (!(devices[j].i.disk.state
821 & (1<<MD_DISK_FAULTY)))
aa88f531 822 sparecnt++;
d013a55e 823 continue;
aa88f531 824 }
02e7c5b7
N
825 /* If this devices thinks that 'most_recent' has failed, then
826 * we must reject this device.
827 */
828 if (j != most_recent &&
829 content->array.raid_disks > 0 &&
830 devices[most_recent].i.disk.raid_disk >= 0 &&
831 devmap[j * content->array.raid_disks + devices[most_recent].i.disk.raid_disk] == 0) {
832 if (verbose > -1)
833 fprintf(stderr, Name ": ignoring %s as it reports %s as failed\n",
834 devices[j].devname, devices[most_recent].devname);
835 best[i] = -1;
836 continue;
837 }
213ee40b
NB
838 if (devices[j].i.events+event_margin >=
839 devices[most_recent].i.events) {
64c4757e 840 devices[j].uptodate = 1;
1ff98339
N
841 if (i < content->array.raid_disks) {
842 if (devices[j].i.recovery_start == MaxSector) {
843 okcnt++;
844 avail[i]=1;
845 } else
846 rebuilding_cnt++;
265e0f17 847 } else
52826846 848 sparecnt++;
64c4757e
NB
849 }
850 }
02e7c5b7 851 free(devmap);
98dbd966
DW
852 while (force && !enough(content->array.level, content->array.raid_disks,
853 content->array.layout, 1,
265e0f17 854 avail, okcnt)) {
64c4757e
NB
855 /* Choose the newest best drive which is
856 * not up-to-date, update the superblock
857 * and add it.
858 */
52826846 859 int fd;
3da92f27 860 struct supertype *tst;
f21e18ca 861 unsigned long long current_events;
cd29a5c8 862 chosen_drive = -1;
f21e18ca 863 for (i = 0; i < content->array.raid_disks && i < bestcnt; i++) {
52826846
NB
864 int j = best[i];
865 if (j>=0 &&
866 !devices[j].uptodate &&
921d9e16 867 devices[j].i.recovery_start == MaxSector &&
52826846 868 (chosen_drive < 0 ||
213ee40b
NB
869 devices[j].i.events
870 > devices[chosen_drive].i.events))
52826846
NB
871 chosen_drive = j;
872 }
873 if (chosen_drive < 0)
874 break;
213ee40b 875 current_events = devices[chosen_drive].i.events;
c5a6f9a6 876 add_another:
dab6685f
NB
877 if (verbose >= 0)
878 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
213ee40b
NB
879 devices[chosen_drive].devname,
880 devices[chosen_drive].i.disk.raid_disk,
881 (int)(devices[chosen_drive].i.events),
882 (int)(devices[most_recent].i.events));
8b0dabea 883 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846
NB
884 if (fd < 0) {
885 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
886 devices[chosen_drive].devname);
213ee40b 887 devices[chosen_drive].i.events = 0;
52826846
NB
888 continue;
889 }
3da92f27 890 tst = dup_super(st);
60b435db 891 if (tst->ss->load_super(tst,fd, NULL)) {
52826846
NB
892 close(fd);
893 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
894 devices[chosen_drive].devname);
213ee40b 895 devices[chosen_drive].i.events = 0;
52826846
NB
896 continue;
897 }
98dbd966
DW
898 content->events = devices[most_recent].i.events;
899 tst->ss->update_super(tst, content, "force-one",
67a8c82d
NB
900 devices[chosen_drive].devname, verbose,
901 0, NULL);
4b1ac34b 902
3da92f27 903 if (tst->ss->store_super(tst, fd)) {
52826846
NB
904 close(fd);
905 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
906 devices[chosen_drive].devname);
213ee40b 907 devices[chosen_drive].i.events = 0;
3da92f27 908 tst->ss->free_super(tst);
52826846
NB
909 continue;
910 }
911 close(fd);
213ee40b 912 devices[chosen_drive].i.events = devices[most_recent].i.events;
52826846 913 devices[chosen_drive].uptodate = 1;
265e0f17 914 avail[chosen_drive] = 1;
52826846 915 okcnt++;
3da92f27 916 tst->ss->free_super(tst);
c5a6f9a6
NB
917
918 /* If there are any other drives of the same vintage,
919 * add them in as well. We can't lose and we might gain
920 */
f21e18ca 921 for (i = 0; i < content->array.raid_disks && i < bestcnt ; i++) {
c5a6f9a6
NB
922 int j = best[i];
923 if (j >= 0 &&
924 !devices[j].uptodate &&
213ee40b 925 devices[j].i.events == current_events) {
c5a6f9a6
NB
926 chosen_drive = j;
927 goto add_another;
928 }
929 }
64c4757e 930 }
52826846
NB
931
932 /* Now we want to look at the superblock which the kernel will base things on
933 * and compare the devices that we think are working with the devices that the
934 * superblock thinks are working.
935 * If there are differences and --force is given, then update this chosen
936 * superblock.
937 */
cd29a5c8 938 chosen_drive = -1;
3da92f27 939 st->ss->free_super(st);
56eedc1a 940 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
941 int j = best[i];
942 int fd;
4b1ac34b 943
52826846
NB
944 if (j<0)
945 continue;
946 if (!devices[j].uptodate)
947 continue;
948 chosen_drive = j;
8b0dabea 949 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
52826846
NB
950 fprintf(stderr, Name ": Cannot open %s: %s\n",
951 devices[j].devname, strerror(errno));
7f91af49 952 close(mdfd);
d7f7ebb7 953 free(devices);
52826846
NB
954 return 1;
955 }
3da92f27 956 if (st->ss->load_super(st,fd, NULL)) {
52826846
NB
957 close(fd);
958 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
959 devices[j].devname);
7f91af49 960 close(mdfd);
d7f7ebb7 961 free(devices);
52826846
NB
962 return 1;
963 }
964 close(fd);
965 }
3da92f27 966 if (st->sb == NULL) {
4b1ac34b 967 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
7f91af49 968 close(mdfd);
d7f7ebb7 969 free(devices);
4b1ac34b
NB
970 return 1;
971 }
a5d85af7 972 st->ss->getinfo_super(st, content, NULL);
f35f2525 973#ifndef MDASSEMBLE
98dbd966 974 sysfs_init(content, mdfd, 0);
f35f2525 975#endif
56eedc1a 976 for (i=0; i<bestcnt; i++) {
52826846 977 int j = best[i];
98c6faba 978 unsigned int desired_state;
11a3e71d 979
98dbd966 980 if (i < content->array.raid_disks)
11a3e71d
NB
981 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
982 else
983 desired_state = 0;
984
52826846
NB
985 if (j<0)
986 continue;
987 if (!devices[j].uptodate)
988 continue;
4b1ac34b 989
213ee40b 990 devices[j].i.disk.state = desired_state;
4e9a6ff7
N
991 if (!(devices[j].i.array.state & 1))
992 clean = 0;
213ee40b
NB
993
994 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
68c7d6d7 995 verbose, 0, NULL)) {
52826846 996 if (force) {
dab6685f
NB
997 if (verbose >= 0)
998 fprintf(stderr, Name ": "
999 "clearing FAULTY flag for device %d in %s for %s\n",
1000 j, mddev, devices[j].devname);
4b1ac34b 1001 change = 1;
52826846 1002 } else {
dab6685f
NB
1003 if (verbose >= -1)
1004 fprintf(stderr, Name ": "
1005 "device %d in %s has wrong state in superblock, but %s seems ok\n",
1006 i, mddev, devices[j].devname);
52826846
NB
1007 }
1008 }
4b1ac34b 1009#if 0
213ee40b 1010 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
52826846
NB
1011 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
1012 i, mddev);
1013 }
4b1ac34b 1014#endif
52826846 1015 }
c5a6f9a6 1016 if (force && !clean &&
98dbd966
DW
1017 !enough(content->array.level, content->array.raid_disks,
1018 content->array.layout, clean,
c5a6f9a6 1019 avail, okcnt)) {
98dbd966 1020 change += st->ss->update_super(st, content, "force-array",
67a8c82d
NB
1021 devices[chosen_drive].devname, verbose,
1022 0, NULL);
583315d9 1023 clean = 1;
d013a55e 1024 }
52826846 1025
4b1ac34b 1026 if (change) {
52826846 1027 int fd;
8b0dabea 1028 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846 1029 if (fd < 0) {
353632d9 1030 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
52826846 1031 devices[chosen_drive].devname);
7f91af49 1032 close(mdfd);
d7f7ebb7 1033 free(devices);
52826846
NB
1034 return 1;
1035 }
3da92f27 1036 if (st->ss->store_super(st, fd)) {
52826846
NB
1037 close(fd);
1038 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
1039 devices[chosen_drive].devname);
7f91af49 1040 close(mdfd);
d7f7ebb7 1041 free(devices);
52826846
NB
1042 return 1;
1043 }
1044 close(fd);
52826846
NB
1045 }
1046
353632d9
NB
1047 /* If we are in the middle of a reshape we may need to restore saved data
1048 * that was moved aside due to the reshape overwriting live data
1049 * The code of doing this lives in Grow.c
1050 */
39c5a909 1051#ifndef MDASSEMBLE
98dbd966 1052 if (content->reshape_active) {
353632d9
NB
1053 int err = 0;
1054 int *fdlist = malloc(sizeof(int)* bestcnt);
cd77ac4e 1055 if (verbose > 0)
ea0ebe96
N
1056 fprintf(stderr, Name ":%s has an active reshape - checking "
1057 "if critical section needs to be restored\n",
1058 chosen_name);
353632d9
NB
1059 for (i=0; i<bestcnt; i++) {
1060 int j = best[i];
1061 if (j >= 0) {
1062 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
1063 if (fdlist[i] < 0) {
1064 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
1065 devices[j].devname);
1066 err = 1;
1067 break;
1068 }
1069 } else
1070 fdlist[i] = -1;
1071 }
1072 if (!err)
cd77ac4e 1073 err = Grow_restart(st, content, fdlist, bestcnt, backup_file, verbose > 0);
353632d9
NB
1074 while (i>0) {
1075 i--;
1076 if (fdlist[i]>=0) close(fdlist[i]);
1077 }
1078 if (err) {
1079 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
e9e43ec3
N
1080 if (backup_file == NULL)
1081 fprintf(stderr," Possibly you needed to specify the --backup-file\n");
7f91af49 1082 close(mdfd);
d7f7ebb7 1083 free(devices);
353632d9
NB
1084 return err;
1085 }
1086 }
39c5a909 1087#endif
aa88f531
NB
1088 /* count number of in-sync devices according to the superblock.
1089 * We must have this number to start the array without -s or -R
1090 */
98dbd966 1091 req_cnt = content->array.working_disks;
aa88f531 1092
64c4757e
NB
1093 /* Almost ready to actually *do* something */
1094 if (!old_linux) {
fbf8a0b7 1095 int rv;
a19c88b8 1096
a04d5763
N
1097 /* First, fill in the map, so that udev can find our name
1098 * as soon as we become active.
1099 */
98dbd966
DW
1100 map_update(NULL, fd2devnum(mdfd), content->text_version,
1101 content->uuid, chosen_name);
a04d5763 1102
98dbd966 1103 rv = set_array_info(mdfd, st, content);
fbf8a0b7 1104 if (rv) {
f35f2525 1105 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
64c4757e 1106 mddev, strerror(errno));
24af7a87 1107 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1108 close(mdfd);
d7f7ebb7 1109 free(devices);
64c4757e
NB
1110 return 1;
1111 }
11484a63 1112 if (ident->bitmap_fd >= 0) {
c82f047c
NB
1113 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
1114 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
24af7a87 1115 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1116 close(mdfd);
d7f7ebb7 1117 free(devices);
c82f047c
NB
1118 return 1;
1119 }
7ef02d01
NB
1120 } else if (ident->bitmap_file) {
1121 /* From config file */
1122 int bmfd = open(ident->bitmap_file, O_RDWR);
1123 if (bmfd < 0) {
1124 fprintf(stderr, Name ": Could not open bitmap file %s\n",
1125 ident->bitmap_file);
24af7a87 1126 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1127 close(mdfd);
d7f7ebb7 1128 free(devices);
7ef02d01
NB
1129 return 1;
1130 }
1131 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
1132 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
1133 close(bmfd);
24af7a87 1134 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1135 close(mdfd);
d7f7ebb7 1136 free(devices);
7ef02d01
NB
1137 return 1;
1138 }
1139 close(bmfd);
c82f047c 1140 }
7ef02d01 1141
52826846 1142 /* First, add the raid disks, but add the chosen one last */
56eedc1a 1143 for (i=0; i<= bestcnt; i++) {
52826846 1144 int j;
56eedc1a 1145 if (i < bestcnt) {
52826846
NB
1146 j = best[i];
1147 if (j == chosen_drive)
1148 continue;
1149 } else
1150 j = chosen_drive;
1151
56eedc1a 1152 if (j >= 0 /* && devices[j].uptodate */) {
98dbd966 1153 rv = add_disk(mdfd, st, content, &devices[j].i);
7801ac20 1154
a19c88b8 1155 if (rv) {
213ee40b
NB
1156 fprintf(stderr, Name ": failed to add "
1157 "%s to %s: %s\n",
64c4757e
NB
1158 devices[j].devname,
1159 mddev,
1160 strerror(errno));
98dbd966 1161 if (i < content->array.raid_disks
213ee40b 1162 || i == bestcnt)
52826846
NB
1163 okcnt--;
1164 else
1165 sparecnt--;
dab6685f 1166 } else if (verbose > 0)
213ee40b
NB
1167 fprintf(stderr, Name ": added %s "
1168 "to %s as %d\n",
1169 devices[j].devname, mddev,
1170 devices[j].i.disk.raid_disk);
98dbd966 1171 } else if (verbose > 0 && i < content->array.raid_disks)
213ee40b
NB
1172 fprintf(stderr, Name ": no uptodate device for "
1173 "slot %d of %s\n",
64c4757e
NB
1174 i, mddev);
1175 }
aba69144 1176
98dbd966 1177 if (content->array.level == LEVEL_CONTAINER) {
598f0d58
NB
1178 if (verbose >= 0) {
1179 fprintf(stderr, Name ": Container %s has been "
1180 "assembled with %d drive%s",
57ed8c91 1181 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
f21e18ca 1182 if (okcnt < (unsigned)content->array.raid_disks)
598f0d58 1183 fprintf(stderr, " (out of %d)",
98dbd966 1184 content->array.raid_disks);
598f0d58
NB
1185 fprintf(stderr, "\n");
1186 }
98dbd966 1187 sysfs_uevent(content, "change");
a7c6e3fb 1188 wait_for(chosen_name, mdfd);
7f91af49 1189 close(mdfd);
d7f7ebb7 1190 free(devices);
598f0d58
NB
1191 return 0;
1192 }
1193
64c4757e 1194 if (runstop == 1 ||
b8a8ccf9 1195 (runstop <= 0 &&
98dbd966
DW
1196 ( enough(content->array.level, content->array.raid_disks,
1197 content->array.layout, clean, avail, okcnt) &&
1ff98339 1198 (okcnt + rebuilding_cnt >= req_cnt || start_partial_ok)
aa88f531 1199 ))) {
e9e43ec3
N
1200 /* This array is good-to-go.
1201 * If a reshape is in progress then we might need to
1202 * continue monitoring it. In that case we start
1203 * it read-only and let the grow code make it writable.
1204 */
1205 int rv;
eb3929a4 1206#ifndef MDASSEMBLE
e9e43ec3
N
1207 if (content->reshape_active &&
1208 content->delta_disks <= 0)
1209 rv = Grow_continue(mdfd, st, content, backup_file);
1210 else
eb3929a4 1211#endif
e9e43ec3
N
1212 rv = ioctl(mdfd, RUN_ARRAY, NULL);
1213 if (rv == 0) {
dab6685f
NB
1214 if (verbose >= 0) {
1215 fprintf(stderr, Name ": %s has been started with %d drive%s",
1216 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1217 if (okcnt < (unsigned)content->array.raid_disks)
98dbd966 1218 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1ff98339
N
1219 if (rebuilding_cnt)
1220 fprintf(stderr, "%s %d rebuilding", sparecnt?",":" and", rebuilding_cnt);
dab6685f
NB
1221 if (sparecnt)
1222 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1223 fprintf(stderr, ".\n");
1224 }
8a659c33
N
1225 if (content->reshape_active &&
1226 content->array.level >= 4 &&
1227 content->array.level <= 6) {
acee8e89
N
1228 /* might need to increase the size
1229 * of the stripe cache - default is 256
1230 */
8a659c33 1231 if (256 < 4 * (content->array.chunk_size/4096)) {
acee8e89
N
1232 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1233 if (sra)
1234 sysfs_set_num(sra, NULL,
1235 "stripe_cache_size",
8a659c33 1236 (4 * content->array.chunk_size / 4096) + 1);
acee8e89
N
1237 }
1238 }
7e83544b
N
1239 if (okcnt < (unsigned)content->array.raid_disks) {
1240 /* If any devices did not get added
1241 * because the kernel rejected them based
1242 * on event count, try adding them
1243 * again providing the action policy is
1244 * 're-add' or greater. The bitmap
1245 * might allow them to be included, or
1246 * they will become spares.
1247 */
1248 for (i = 0; i <= bestcnt; i++) {
1249 int j = best[i];
1250 if (j >= 0 && !devices[j].uptodate) {
1251 if (!disk_action_allows(&devices[j].i, st->ss->name, act_re_add))
1252 continue;
1253 rv = add_disk(mdfd, st, content,
1254 &devices[j].i);
1255 if (rv == 0 && verbose >= 0)
1256 fprintf(stderr,
1257 Name ": %s has been re-added.\n",
1258 devices[j].devname);
1259 }
1260 }
1261 }
a7c6e3fb 1262 wait_for(mddev, mdfd);
7f91af49
N
1263 close(mdfd);
1264 if (auto_assem) {
589395d6 1265 int usecs = 1;
589395d6
NB
1266 /* There is a nasty race with 'mdadm --monitor'.
1267 * If it opens this device before we close it,
1268 * it gets an incomplete open on which IO
598f0d58
NB
1269 * doesn't work and the capacity is
1270 * wrong.
589395d6
NB
1271 * If we reopen (to check for layered devices)
1272 * before --monitor closes, we loose.
1273 *
1274 * So: wait upto 1 second for there to be
1275 * a non-zero capacity.
1276 */
1277 while (usecs < 1000) {
1278 mdfd = open(mddev, O_RDONLY);
1279 if (mdfd >= 0) {
beae1dfe
NB
1280 unsigned long long size;
1281 if (get_dev_size(mdfd, NULL, &size) &&
589395d6
NB
1282 size > 0)
1283 break;
1284 close(mdfd);
1285 }
1286 usleep(usecs);
1287 usecs <<= 1;
1288 }
1289 }
d7f7ebb7 1290 free(devices);
64c4757e 1291 return 0;
82b27616 1292 }
682c7051 1293 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
64c4757e 1294 mddev, strerror(errno));
583315d9 1295
98dbd966
DW
1296 if (!enough(content->array.level, content->array.raid_disks,
1297 content->array.layout, 1, avail, okcnt))
583315d9
NB
1298 fprintf(stderr, Name ": Not enough devices to "
1299 "start the array.\n");
98dbd966
DW
1300 else if (!enough(content->array.level,
1301 content->array.raid_disks,
1302 content->array.layout, clean,
583315d9
NB
1303 avail, okcnt))
1304 fprintf(stderr, Name ": Not enough devices to "
1305 "start the array while not clean "
1306 "- consider --force.\n");
1307
7f91af49 1308 if (auto_assem)
1c203a4b 1309 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1310 close(mdfd);
d7f7ebb7 1311 free(devices);
64c4757e
NB
1312 return 1;
1313 }
82b27616 1314 if (runstop == -1) {
b8a8ccf9 1315 fprintf(stderr, Name ": %s assembled from %d drive%s",
52826846 1316 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1317 if (okcnt != (unsigned)content->array.raid_disks)
98dbd966 1318 fprintf(stderr, " (out of %d)", content->array.raid_disks);
b8a8ccf9 1319 fprintf(stderr, ", but not started.\n");
7f91af49 1320 close(mdfd);
d7f7ebb7 1321 free(devices);
64c4757e 1322 return 0;
82b27616 1323 }
4855f95c 1324 if (verbose >= -1) {
dab6685f 1325 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1ff98339
N
1326 if (rebuilding_cnt)
1327 fprintf(stderr, "%s %d rebuilding", sparecnt?", ":" and ", rebuilding_cnt);
dab6685f
NB
1328 if (sparecnt)
1329 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
98dbd966
DW
1330 if (!enough(content->array.level, content->array.raid_disks,
1331 content->array.layout, 1, avail, okcnt))
dab6685f 1332 fprintf(stderr, " - not enough to 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, " - not enough to start the "
1338 "array while not clean - consider "
1339 "--force.\n");
dab6685f 1340 else {
f21e18ca 1341 if (req_cnt == (unsigned)content->array.raid_disks)
dab6685f
NB
1342 fprintf(stderr, " - need all %d to start it", req_cnt);
1343 else
98dbd966 1344 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
dab6685f
NB
1345 fprintf(stderr, " (use --run to insist).\n");
1346 }
aa88f531 1347 }
7f91af49 1348 if (auto_assem)
1c203a4b 1349 ioctl(mdfd, STOP_ARRAY, NULL);
56a8da69 1350 close(mdfd);
d7f7ebb7 1351 free(devices);
64c4757e 1352 return 1;
82b27616 1353 } else {
52826846
NB
1354 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1355 * been updated to point to the current locations of devices.
1356 * so we can just start the array
82b27616 1357 */
cd29a5c8 1358 unsigned long dev;
213ee40b
NB
1359 dev = makedev(devices[chosen_drive].i.disk.major,
1360 devices[chosen_drive].i.disk.minor);
82b27616
NB
1361 if (ioctl(mdfd, START_ARRAY, dev)) {
1362 fprintf(stderr, Name ": Cannot start array: %s\n",
1363 strerror(errno));
1364 }
aba69144 1365
64c4757e 1366 }
7f91af49 1367 close(mdfd);
d7f7ebb7 1368 free(devices);
e0d19036 1369 return 0;
64c4757e 1370}
6234c63c
DW
1371
1372#ifndef MDASSEMBLE
1373int assemble_container_content(struct supertype *st, int mdfd,
1374 struct mdinfo *content, int runstop,
1375 char *chosen_name, int verbose)
1376{
1377 struct mdinfo *dev, *sra;
1378 int working = 0, preexist = 0;
1379 struct map_ent *map = NULL;
1380
1381 sysfs_init(content, mdfd, 0);
1382
1383 sra = sysfs_read(mdfd, 0, GET_VERSION);
1384 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0)
4408ee76
N
1385 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1386 close(mdfd);
6234c63c 1387 return 1;
4408ee76 1388 }
6234c63c
DW
1389 if (sra)
1390 sysfs_free(sra);
1391
1392 for (dev = content->devs; dev; dev = dev->next)
462906cd 1393 if (sysfs_add_disk(content, dev, 1) == 0)
6234c63c
DW
1394 working++;
1395 else if (errno == EEXIST)
1396 preexist++;
4408ee76
N
1397 if (working == 0) {
1398 close(mdfd);
7cb2aa33 1399 return 1;/* Nothing new, don't try to start */
8b4e5ea9
N
1400 }
1401
1402 map_update(&map, fd2devnum(mdfd),
1403 content->text_version,
1404 content->uuid, chosen_name);
1405
1406 if (runstop > 0 ||
6234c63c 1407 (working + preexist) >= content->array.working_disks) {
bb50e5d3 1408 int err;
a714580e 1409
6234c63c
DW
1410 switch(content->array.level) {
1411 case LEVEL_LINEAR:
1412 case LEVEL_MULTIPATH:
1413 case 0:
bb50e5d3
N
1414 err = sysfs_set_str(content, NULL, "array_state",
1415 "active");
6234c63c
DW
1416 break;
1417 default:
bb50e5d3 1418 err = sysfs_set_str(content, NULL, "array_state",
6234c63c
DW
1419 "readonly");
1420 /* start mdmon if needed. */
bb50e5d3
N
1421 if (!err) {
1422 if (!mdmon_running(st->container_dev))
1423 start_mdmon(st->container_dev);
1424 ping_monitor(devnum2devname(st->container_dev));
1425 }
6234c63c
DW
1426 break;
1427 }
bb50e5d3
N
1428 if (!err)
1429 sysfs_set_safemode(content, content->safe_mode_delay);
6234c63c 1430 if (verbose >= 0) {
bb50e5d3
N
1431 if (err)
1432 fprintf(stderr, Name
1433 ": array %s now has %d devices",
1434 chosen_name, working + preexist);
1435 else
1436 fprintf(stderr, Name
1437 ": Started %s with %d devices",
1438 chosen_name, working + preexist);
6234c63c
DW
1439 if (preexist)
1440 fprintf(stderr, " (%d new)", working);
1441 fprintf(stderr, "\n");
1442 }
bb50e5d3 1443 if (!err)
a7c6e3fb 1444 wait_for(chosen_name, mdfd);
4408ee76 1445 close(mdfd);
7cb2aa33 1446 return 0;
6234c63c 1447 /* FIXME should have an O_EXCL and wait for read-auto */
7cb2aa33 1448 } else {
6234c63c
DW
1449 if (verbose >= 0)
1450 fprintf(stderr, Name
1451 ": %s assembled with %d devices but "
1452 "not started\n",
1453 chosen_name, working);
4408ee76 1454 close(mdfd);
7cb2aa33
N
1455 return 1;
1456 }
6234c63c
DW
1457}
1458#endif
1459