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