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