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