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