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