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