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