]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Detail: don't report a faulty device as 'spare' or 'rebuilding'.
[thirdparty/mdadm.git] / Assemble.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
e736b623 4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
64c4757e
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
e736b623 22 * Email: <neilb@suse.de>
64c4757e
NB
23 */
24
9a9dab36 25#include "mdadm.h"
41a3b72a 26#include <ctype.h>
64c4757e 27
624920bb
NB
28static int name_matches(char *found, char *required, char *homehost)
29{
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
32 */
33 char fnd[33];
34
35 strncpy(fnd, found, 32);
36 fnd[32] = 0;
37 if (strcmp(found, required)==0)
38 return 1;
39 if (homehost) {
40 int l = strlen(homehost);
41 if (l < 32 && fnd[l] == ':' &&
42 strcmp(fnd+l+1, required)==0)
43 return 1;
44 }
45 return 0;
46}
47
9008ed1c 48static int is_member_busy(char *metadata_version)
2de8884f
DW
49{
50 /* check if the given member array is active */
51 struct mdstat_ent *mdstat = mdstat_read(1, 0);
52 struct mdstat_ent *ent;
53 int busy = 0;
54
55 for (ent = mdstat; ent; ent = ent->next) {
56 if (ent->metadata_version == NULL)
57 continue;
58 if (strncmp(ent->metadata_version, "external:", 9) != 0)
59 continue;
60 if (!is_subarray(&ent->metadata_version[9]))
61 continue;
62 /* Skip first char - it can be '/' or '-' */
63 if (strcmp(&ent->metadata_version[10], metadata_version+1) == 0) {
64 busy = 1;
65 break;
66 }
67 }
68 free_mdstat(mdstat);
69
70 return busy;
71}
72
fa56eddb 73static int ident_matches(struct mddev_ident *ident,
08fb91a3
N
74 struct mdinfo *content,
75 struct supertype *tst,
76 char *homehost,
77 char *update, char *devname)
78{
79
80 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
cbeeb0e5
AC
81 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0 &&
82 memcmp(content->uuid, uuid_zero, sizeof(int[4])) != 0) {
08fb91a3 83 if (devname)
e7b84f9d 84 pr_err("%s has wrong uuid.\n", devname);
08fb91a3
N
85 return 0;
86 }
87 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
88 name_matches(content->name, ident->name, homehost)==0) {
89 if (devname)
e7b84f9d 90 pr_err("%s has wrong name.\n", devname);
08fb91a3
N
91 return 0;
92 }
93 if (ident->super_minor != UnSet &&
94 ident->super_minor != content->array.md_minor) {
95 if (devname)
e7b84f9d
N
96 pr_err("%s has wrong super-minor.\n",
97 devname);
08fb91a3
N
98 return 0;
99 }
100 if (ident->level != UnSet &&
101 ident->level != content->array.level) {
102 if (devname)
e7b84f9d
N
103 pr_err("%s has wrong raid level.\n",
104 devname);
08fb91a3
N
105 return 0;
106 }
107 if (ident->raid_disks != UnSet &&
108 ident->raid_disks!= content->array.raid_disks) {
109 if (devname)
e7b84f9d
N
110 pr_err("%s requires wrong number of drives.\n",
111 devname);
08fb91a3
N
112 return 0;
113 }
805d30b2
N
114 if (ident->member && ident->member[0]) {
115 /* content->text_version must match */
116 char *s = strchr(content->text_version+1, '/');
117 if (s == NULL) {
118 if (devname)
e7b84f9d
N
119 pr_err("%s is not a container and one is required.\n",
120 devname);
805d30b2
N
121 return 0;
122 } else if (strcmp(ident->member, s+1) != 0) {
123 if (devname)
e7b84f9d
N
124 pr_err("skipping wrong member %s is %s\n",
125 content->text_version, devname);
805d30b2
N
126 return 0;
127 }
128 }
08fb91a3
N
129 return 1;
130}
08fb91a3 131
95425a89
N
132static int select_devices(struct mddev_dev *devlist,
133 struct mddev_ident *ident,
134 struct supertype **stp,
135 struct mdinfo **contentp,
136 struct context *c,
137 int inargv, int auto_assem)
138
64c4757e 139{
a655e550 140 struct mddev_dev *tmpdev;
95425a89
N
141 int num_devs;
142 struct supertype *st = *stp;
98dbd966 143 struct mdinfo *content = NULL;
95425a89 144 int report_missmatch = ((inargv && c->verbose >= 0) || c->verbose > 0);
cbeeb0e5 145 struct domainlist *domains = NULL;
60e1bc1a 146
5787fa49
NB
147 tmpdev = devlist; num_devs = 0;
148 while (tmpdev) {
da6b5ca9
NB
149 if (tmpdev->used)
150 tmpdev->used = 2;
151 else
152 num_devs++;
0431869c 153 tmpdev->disposition = 0;
5787fa49
NB
154 tmpdev = tmpdev->next;
155 }
5787fa49 156
811e6cbe
NB
157 /* first walk the list of devices to find a consistent set
158 * that match the criterea, if that is possible.
c30e5369 159 * We flag the ones we like with 'used'.
811e6cbe
NB
160 */
161 for (tmpdev = devlist;
162 tmpdev;
5083d66b 163 tmpdev = tmpdev ? tmpdev->next : NULL) {
811e6cbe 164 char *devname = tmpdev->devname;
64c4757e
NB
165 int dfd;
166 struct stat stb;
518a60f3 167 struct supertype *tst;
4e8d9f0a 168 struct dev_policy *pol = NULL;
5083d66b 169 int found_container = 0;
52826846 170
95425a89
N
171 if (tmpdev->used > 1)
172 continue;
da6b5ca9 173
52826846 174 if (ident->devices &&
56eedc1a 175 !match_oneof(ident->devices, devname)) {
52437b4f 176 if (report_missmatch)
e7b84f9d 177 pr_err("%s is not one of %s\n", devname, ident->devices);
52826846 178 continue;
56eedc1a 179 }
4b1ac34b 180
518a60f3
JS
181 tst = dup_super(st);
182
56d18859 183 dfd = dev_open(devname, O_RDONLY);
64c4757e 184 if (dfd < 0) {
52437b4f 185 if (report_missmatch)
e7b84f9d
N
186 pr_err("cannot open device %s: %s\n",
187 devname, strerror(errno));
da6b5ca9 188 tmpdev->used = 2;
52826846
NB
189 } else if (fstat(dfd, &stb)< 0) {
190 /* Impossible! */
e7b84f9d
N
191 pr_err("fstat failed for %s: %s\n",
192 devname, strerror(errno));
da6b5ca9 193 tmpdev->used = 2;
cd29a5c8 194 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
e7b84f9d
N
195 pr_err("%s is not a block device.\n",
196 devname);
da6b5ca9 197 tmpdev->used = 2;
5083d66b
N
198 } else if (must_be_container(dfd)) {
199 if (st) {
200 /* already found some components, this cannot
201 * be another one.
202 */
203 if (report_missmatch)
e7b84f9d
N
204 pr_err("%s is a container, but we are looking for components\n",
205 devname);
5083d66b 206 tmpdev->used = 2;
71204a50 207#if !defined(MDASSEMBLE) || defined(MDASSEMBLE) && defined(MDASSEMBLE_AUTO)
5083d66b
N
208 } if (!tst && (tst = super_by_fd(dfd, NULL)) == NULL) {
209 if (report_missmatch)
e7b84f9d
N
210 pr_err("not a recognisable container: %s\n",
211 devname);
5083d66b 212 tmpdev->used = 2;
71204a50 213#endif
417f346e
HCP
214 } else if (!tst->ss->load_container
215 || tst->ss->load_container(tst, dfd, NULL)) {
5083d66b 216 if (report_missmatch)
e7b84f9d
N
217 pr_err("no correct container type: %s\n",
218 devname);
5083d66b
N
219 tmpdev->used = 2;
220 } else if (auto_assem &&
221 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
4977146a 222 tst->ss->match_home(tst, c->homehost) == 1)) {
5083d66b 223 if (report_missmatch)
e7b84f9d
N
224 pr_err("%s has metadata type %s for which "
225 "auto-assembly is disabled\n",
226 devname, tst->ss->name);
5083d66b
N
227 tmpdev->used = 2;
228 } else
229 found_container = 1;
52826846 230 } else {
5083d66b
N
231 if (!tst && (tst = guess_super(dfd)) == NULL) {
232 if (report_missmatch)
e7b84f9d
N
233 pr_err("no recogniseable superblock on %s\n",
234 devname);
5083d66b
N
235 tmpdev->used = 2;
236 } else if (tst->ss->load_super(tst,dfd, NULL)) {
237 if (report_missmatch)
e7b84f9d
N
238 pr_err("no RAID superblock on %s\n",
239 devname);
5083d66b
N
240 tmpdev->used = 2;
241 } else if (tst->ss->compare_super == NULL) {
242 if (report_missmatch)
e7b84f9d
N
243 pr_err("Cannot assemble %s metadata on %s\n",
244 tst->ss->name, devname);
5083d66b
N
245 tmpdev->used = 2;
246 } else if (auto_assem && st == NULL &&
247 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
4977146a 248 tst->ss->match_home(tst, c->homehost) == 1)) {
5083d66b 249 if (report_missmatch)
e7b84f9d
N
250 pr_err("%s has metadata type %s for which "
251 "auto-assembly is disabled\n",
252 devname, tst->ss->name);
5083d66b
N
253 tmpdev->used = 2;
254 }
64c4757e 255 }
c06487ce 256 if (dfd >= 0) close(dfd);
d68ea4d7 257 if (tmpdev->used == 2) {
d4386799 258 if (auto_assem || !inargv)
d68ea4d7
N
259 /* Ignore unrecognised devices during auto-assembly */
260 goto loop;
261 if (ident->uuid_set || ident->name[0] ||
262 ident->super_minor != UnSet)
263 /* Ignore unrecognised device if looking for
264 * specific array */
265 goto loop;
d68ea4d7 266
e7b84f9d 267 pr_err("%s has no superblock - assembly aborted\n",
d68ea4d7
N
268 devname);
269 if (st)
270 st->ss->free_super(st);
271 dev_policy_free(pol);
cbeeb0e5 272 domain_free(domains);
95425a89 273 return -1;
d68ea4d7 274 }
52826846 275
5083d66b 276 if (found_container) {
9008ed1c
N
277 /* tmpdev is a container. We need to be either
278 * looking for a member, or auto-assembling
279 */
56d18859
N
280 /* should be safe to try an exclusive open now, we
281 * have rejected anything that some other mdadm might
282 * be looking at
283 */
284 dfd = dev_open(devname, O_RDONLY | O_EXCL);
285 if (dfd < 0) {
286 if (report_missmatch)
e7b84f9d 287 pr_err("%s is busy - skipping\n", devname);
56d18859
N
288 goto loop;
289 }
290 close(dfd);
9008ed1c
N
291
292 if (ident->container) {
293 if (ident->container[0] == '/' &&
294 !same_dev(ident->container, devname)) {
295 if (report_missmatch)
e7b84f9d 296 pr_err("%s is not the container required (%s)\n",
9008ed1c
N
297 devname, ident->container);
298 goto loop;
299 }
300 if (ident->container[0] != '/') {
301 /* we have a uuid */
302 int uuid[4];
87477e6d 303
95425a89 304 content = *contentp;
87477e6d
N
305 tst->ss->getinfo_super(tst, content, NULL);
306
9008ed1c
N
307 if (!parse_uuid(ident->container, uuid) ||
308 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
309 if (report_missmatch)
e7b84f9d 310 pr_err("%s has wrong UUID to be required container\n",
9008ed1c
N
311 devname);
312 goto loop;
313 }
314 }
315 }
316 /* It is worth looking inside this container.
317 */
4977146a 318 if (c->verbose > 0)
e7b84f9d 319 pr_err("looking in container %s\n",
7636b5a8 320 devname);
1415fe4b 321
88cef9b3
N
322 for (content = tst->ss->container_content(tst, NULL);
323 content;
324 content = content->next) {
1415fe4b 325
88cef9b3 326 if (!ident_matches(ident, content, tst,
4977146a 327 c->homehost, c->update,
88cef9b3
N
328 report_missmatch ? devname : NULL))
329 /* message already printed */;
330 else if (is_member_busy(content->text_version)) {
331 if (report_missmatch)
e7b84f9d 332 pr_err("member %s in %s is already assembled\n",
88cef9b3
N
333 content->text_version,
334 devname);
81219e70
LM
335 } else if (content->array.state & (1<<MD_SB_BLOCK_VOLUME)) {
336 /* do not assemble arrays with unsupported configurations */
e7b84f9d 337 pr_err("Cannot activate member %s in %s.\n",
81219e70
LM
338 content->text_version,
339 devname);
88cef9b3
N
340 } else
341 break;
342 }
343 if (!content) {
f7ad3ccc 344 tmpdev->used = 2;
88cef9b3 345 goto loop; /* empty container */
fa031239 346 }
88cef9b3 347
9008ed1c 348 st = tst; tst = NULL;
4c1c3ad8 349 if (!auto_assem && inargv && tmpdev->next != NULL) {
e7b84f9d 350 pr_err("%s is a container, but is not "
9008ed1c
N
351 "only device given: confused and aborting\n",
352 devname);
353 st->ss->free_super(st);
4e8d9f0a 354 dev_policy_free(pol);
cbeeb0e5 355 domain_free(domains);
95425a89 356 return -1;
9008ed1c 357 }
4977146a 358 if (c->verbose > 0)
e7b84f9d 359 pr_err("found match on member %s in %s\n",
7636b5a8 360 content->text_version, devname);
bac0d92e 361
5083d66b
N
362 /* make sure we finished the loop */
363 tmpdev = NULL;
bac0d92e 364 goto loop;
5083d66b 365 } else {
bac0d92e 366
95425a89 367 content = *contentp;
5083d66b
N
368 tst->ss->getinfo_super(tst, content, NULL);
369
370 if (!ident_matches(ident, content, tst,
4977146a 371 c->homehost, c->update,
5083d66b 372 report_missmatch ? devname : NULL))
df37ffc0 373 goto loop;
cbeeb0e5 374
56d18859
N
375 /* should be safe to try an exclusive open now, we
376 * have rejected anything that some other mdadm might
377 * be looking at
378 */
379 dfd = dev_open(devname, O_RDONLY | O_EXCL);
380 if (dfd < 0) {
381 if (report_missmatch)
e7b84f9d 382 pr_err("%s is busy - skipping\n", devname);
56d18859
N
383 goto loop;
384 }
385 close(dfd);
386
5083d66b
N
387 if (st == NULL)
388 st = dup_super(tst);
389 if (st->minor_version == -1)
390 st->minor_version = tst->minor_version;
ed7fc6b4
AC
391
392 if (memcmp(content->uuid, uuid_zero,
393 sizeof(int[4])) == 0) {
394 /* this is a floating spare. It cannot define
395 * an array unless there are no more arrays of
396 * this type to be found. It can be included
397 * in an array of this type though.
398 */
399 tmpdev->used = 3;
400 goto loop;
401 }
402
5083d66b
N
403 if (st->ss != tst->ss ||
404 st->minor_version != tst->minor_version ||
405 st->ss->compare_super(st, tst) != 0) {
406 /* Some mismatch. If exactly one array matches this host,
407 * we can resolve on that one.
408 * Or, if we are auto assembling, we just ignore the second
409 * for now.
410 */
411 if (auto_assem)
412 goto loop;
4977146a
N
413 if (c->homehost) {
414 int first = st->ss->match_home(st, c->homehost);
415 int last = tst->ss->match_home(tst, c->homehost);
5083d66b
N
416 if (first != last &&
417 (first == 1 || last == 1)) {
418 /* We can do something */
419 if (first) {/* just ignore this one */
420 if (report_missmatch)
e7b84f9d 421 pr_err("%s misses out due to wrong homehost\n",
5083d66b
N
422 devname);
423 goto loop;
424 } else { /* reject all those sofar */
425 struct mddev_dev *td;
426 if (report_missmatch)
e7b84f9d 427 pr_err("%s overrides previous devices due to good homehost\n",
5083d66b
N
428 devname);
429 for (td=devlist; td != tmpdev; td=td->next)
430 if (td->used == 1)
431 td->used = 0;
432 tmpdev->used = 1;
433 goto loop;
434 }
83b6208e
NB
435 }
436 }
e7b84f9d 437 pr_err("superblock on %s doesn't match others - assembly aborted\n",
5083d66b
N
438 devname);
439 tst->ss->free_super(tst);
440 st->ss->free_super(st);
441 dev_policy_free(pol);
cbeeb0e5 442 domain_free(domains);
95425a89 443 return -1;
83b6208e 444 }
5083d66b 445 tmpdev->used = 1;
64c4757e 446 }
df37ffc0 447 loop:
cbeeb0e5 448 /* Collect domain information from members only */
26b05aea
AC
449 if (tmpdev && tmpdev->used == 1) {
450 if (!pol)
451 pol = devnum_policy(stb.st_rdev);
cbeeb0e5 452 domain_merge(&domains, pol, tst?tst->ss->name:NULL);
26b05aea 453 }
4e8d9f0a
N
454 dev_policy_free(pol);
455 pol = NULL;
3d2b16e7
NB
456 if (tst)
457 tst->ss->free_super(tst);
811e6cbe
NB
458 }
459
ed7fc6b4 460 /* Check if we found some imsm spares but no members */
3c7b4a25
CA
461 if ((auto_assem ||
462 (ident->uuid_set &&
463 memcmp(uuid_zero, ident->uuid,sizeof(uuid_zero)) == 0)) &&
464 (!st || !st->sb))
ed7fc6b4
AC
465 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
466 if (tmpdev->used != 3)
467 continue;
468 tmpdev->used = 1;
95425a89 469 content = *contentp;
ed7fc6b4
AC
470
471 if (!st->sb) {
472 /* we need sb from one of the spares */
473 int dfd = dev_open(tmpdev->devname, O_RDONLY);
474 if (dfd < 0 ||
475 st->ss->load_super(st, dfd, NULL))
476 tmpdev->used = 2;
477 if (dfd > 0)
478 close(dfd);
479 }
480 }
481
cbeeb0e5
AC
482 /* Now reject spares that don't match domains of identified members */
483 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
484 struct stat stb;
485 if (tmpdev->used != 3)
486 continue;
487 if (stat(tmpdev->devname, &stb)< 0) {
e7b84f9d 488 pr_err("fstat failed for %s: %s\n",
cbeeb0e5
AC
489 tmpdev->devname, strerror(errno));
490 tmpdev->used = 2;
491 } else {
a5d10dce
N
492 struct dev_policy *pol = devnum_policy(stb.st_rdev);
493 int dt = domain_test(domains, pol, NULL);
494 if (inargv && dt != 0)
495 /* take this spare as domains match
496 * if there are any */
497 tmpdev->used = 1;
498 else if (!inargv && dt == 1)
499 /* device wasn't explicitly listed, so need
500 * explicit domain match - which we have */
cbeeb0e5
AC
501 tmpdev->used = 1;
502 else
503 /* if domains don't match mark as unused */
504 tmpdev->used = 0;
505 dev_policy_free(pol);
506 }
507 }
508 domain_free(domains);
95425a89
N
509 *stp = st;
510 if (st && st->sb && content == *contentp)
511 st->ss->getinfo_super(st, content, NULL);
512 *contentp = content;
513
514 return num_devs;
515}
516
2c355c22
N
517struct devs {
518 char *devname;
519 int uptodate; /* set once we decide that this device is as
520 * recent as everything else in the array.
521 */
522 int included; /* set if the device is already in the array
523 * due to a previous '-I'
524 */
525 struct mdinfo i;
526};
527
528static int load_devices(struct devs *devices, char *devmap,
529 struct mddev_ident *ident, struct supertype *st,
530 struct mddev_dev *devlist, struct context *c,
531 struct mdinfo *content,
532 int mdfd, char *mddev,
533 int *most_recentp, int *bestcntp, int **bestp,
534 int inargv)
535{
536 struct mddev_dev *tmpdev;
537 int devcnt = 0;
538 int nextspare = 0;
539#ifndef MDASSEMBLE
540 int bitmap_done = 0;
541#endif
542 int most_recent = 0;
543 int bestcnt = 0;
544 int *best = *bestp;
545
546 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) {
547 char *devname = tmpdev->devname;
548 struct stat stb;
549 int i;
550
551 if (tmpdev->used != 1)
552 continue;
553 /* looks like a good enough match to update the super block if needed */
554#ifndef MDASSEMBLE
555 if (c->update) {
556 int dfd;
557 /* prepare useful information in info structures */
558 struct stat stb2;
559 struct supertype *tst;
560 int err;
561 fstat(mdfd, &stb2);
562
563 if (strcmp(c->update, "uuid")==0 &&
564 !ident->uuid_set) {
565 int rfd;
566 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
567 read(rfd, ident->uuid, 16) != 16) {
568 *(__u32*)(ident->uuid) = random();
569 *(__u32*)(ident->uuid+1) = random();
570 *(__u32*)(ident->uuid+2) = random();
571 *(__u32*)(ident->uuid+3) = random();
572 }
573 if (rfd >= 0) close(rfd);
574 }
575 dfd = dev_open(devname,
576 tmpdev->disposition == 'I'
577 ? O_RDWR : (O_RDWR|O_EXCL));
578
579 tst = dup_super(st);
580 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
581 pr_err("cannot re-read metadata from %s - aborting\n",
582 devname);
583 if (dfd >= 0)
584 close(dfd);
585 close(mdfd);
586 free(devices);
587 free(devmap);
588 return -1;
589 }
590 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
591
592 memcpy(content->uuid, ident->uuid, 16);
593 strcpy(content->name, ident->name);
594 content->array.md_minor = minor(stb2.st_rdev);
595
596 if (strcmp(c->update, "byteorder") == 0)
597 err = 0;
598 else
599 err = tst->ss->update_super(tst, content, c->update,
600 devname, c->verbose,
601 ident->uuid_set,
602 c->homehost);
603 if (err < 0) {
604 pr_err("--update=%s not understood"
605 " for %s metadata\n",
606 c->update, tst->ss->name);
607 tst->ss->free_super(tst);
608 free(tst);
609 close(mdfd);
610 close(dfd);
611 free(devices);
612 free(devmap);
613 return -1;
614 }
615 if (strcmp(c->update, "uuid")==0 &&
616 !ident->uuid_set) {
617 ident->uuid_set = 1;
618 memcpy(ident->uuid, content->uuid, 16);
619 }
620 if (tst->ss->store_super(tst, dfd))
621 pr_err("Could not re-write superblock on %s.\n",
622 devname);
623 close(dfd);
624
625 if (strcmp(c->update, "uuid")==0 &&
626 ident->bitmap_fd >= 0 && !bitmap_done) {
627 if (bitmap_update_uuid(ident->bitmap_fd,
628 content->uuid,
629 tst->ss->swapuuid) != 0)
630 pr_err("Could not update uuid on external bitmap.\n");
631 else
632 bitmap_done = 1;
633 }
634 tst->ss->free_super(tst);
635 } else
636#endif
637 {
638 struct supertype *tst = dup_super(st);
639 int dfd;
640 dfd = dev_open(devname,
641 tmpdev->disposition == 'I'
642 ? O_RDWR : (O_RDWR|O_EXCL));
643
644 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
645 pr_err("cannot re-read metadata from %s - aborting\n",
646 devname);
647 if (dfd >= 0)
648 close(dfd);
649 close(mdfd);
650 free(devices);
651 free(devmap);
652 return -1;
653 }
654 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
655 tst->ss->free_super(tst);
656 close(dfd);
657 }
658
659 stat(devname, &stb);
660
661 if (c->verbose > 0)
662 pr_err("%s is identified as a member of %s, slot %d.\n",
663 devname, mddev, content->disk.raid_disk);
664 devices[devcnt].devname = devname;
665 devices[devcnt].uptodate = 0;
666 devices[devcnt].included = (tmpdev->disposition == 'I');
667 devices[devcnt].i = *content;
668 devices[devcnt].i.disk.major = major(stb.st_rdev);
669 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
670 if (most_recent < devcnt) {
671 if (devices[devcnt].i.events
672 > devices[most_recent].i.events)
673 most_recent = devcnt;
674 }
675 if (content->array.level == LEVEL_MULTIPATH)
676 /* with multipath, the raid_disk from the superblock is meaningless */
677 i = devcnt;
678 else
679 i = devices[devcnt].i.disk.raid_disk;
680 if (i+1 == 0) {
681 if (nextspare < content->array.raid_disks)
682 nextspare = content->array.raid_disks;
683 i = nextspare++;
684 } else {
685 if (i >= content->array.raid_disks &&
686 i >= nextspare)
687 nextspare = i+1;
688 }
689 if (i < 10000) {
690 if (i >= bestcnt) {
691 int newbestcnt = i+10;
692 int *newbest = xmalloc(sizeof(int)*newbestcnt);
693 int c;
694 for (c=0; c < newbestcnt; c++)
695 if (c < bestcnt)
696 newbest[c] = best[c];
697 else
698 newbest[c] = -1;
699 if (best)free(best);
700 best = newbest;
701 bestcnt = newbestcnt;
702 }
703 if (best[i] >=0 &&
704 devices[best[i]].i.events
705 == devices[devcnt].i.events
706 && (devices[best[i]].i.disk.minor
707 != devices[devcnt].i.disk.minor)
708 && st->ss == &super0
709 && content->array.level != LEVEL_MULTIPATH) {
710 /* two different devices with identical superblock.
711 * Could be a mis-detection caused by overlapping
712 * partitions. fail-safe.
713 */
714 pr_err("WARNING %s and %s appear"
715 " to have very similar superblocks.\n"
716 " If they are really different, "
717 "please --zero the superblock on one\n"
718 " If they are the same or overlap,"
719 " please remove one from %s.\n",
720 devices[best[i]].devname, devname,
721 inargv ? "the list" :
722 "the\n DEVICE list in mdadm.conf"
723 );
724 close(mdfd);
725 free(devices);
726 free(devmap);
727 return -1;
728 }
729 if (best[i] == -1
730 || (devices[best[i]].i.events
731 < devices[devcnt].i.events))
732 best[i] = devcnt;
733 }
734 devcnt++;
735 }
736 *most_recentp = most_recent;
737 *bestcntp = bestcnt;
738 *bestp = best;
739 return devcnt;
740}
741
9f5470ce
N
742static int force_array(struct mdinfo *content,
743 struct devs *devices,
744 int *best, int bestcnt, char *avail,
745 int most_recent,
746 struct supertype *st,
747 struct context *c)
748{
749 int okcnt = 0;
750 while (!enough(content->array.level, content->array.raid_disks,
751 content->array.layout, 1,
752 avail)
753 ||
754 (content->reshape_active && content->delta_disks > 0 &&
755 !enough(content->array.level, (content->array.raid_disks
756 - content->delta_disks),
757 content->new_layout, 1,
758 avail)
759 )) {
760 /* Choose the newest best drive which is
761 * not up-to-date, update the superblock
762 * and add it.
763 */
764 int fd;
765 struct supertype *tst;
766 unsigned long long current_events;
767 int chosen_drive = -1;
768 int i;
769
770 for (i = 0; i < content->array.raid_disks && i < bestcnt; i++) {
771 int j = best[i];
772 if (j>=0 &&
773 !devices[j].uptodate &&
774 devices[j].i.recovery_start == MaxSector &&
775 (chosen_drive < 0 ||
776 devices[j].i.events
777 > devices[chosen_drive].i.events))
778 chosen_drive = j;
779 }
780 if (chosen_drive < 0)
781 break;
782 current_events = devices[chosen_drive].i.events;
783 add_another:
784 if (c->verbose >= 0)
785 pr_err("forcing event count in %s(%d) from %d upto %d\n",
786 devices[chosen_drive].devname,
787 devices[chosen_drive].i.disk.raid_disk,
788 (int)(devices[chosen_drive].i.events),
789 (int)(devices[most_recent].i.events));
790 fd = dev_open(devices[chosen_drive].devname,
791 devices[chosen_drive].included ? O_RDWR
792 : (O_RDWR|O_EXCL));
793 if (fd < 0) {
794 pr_err("Couldn't open %s for write - not updating\n",
795 devices[chosen_drive].devname);
796 devices[chosen_drive].i.events = 0;
797 continue;
798 }
799 tst = dup_super(st);
800 if (tst->ss->load_super(tst,fd, NULL)) {
801 close(fd);
802 pr_err("RAID superblock disappeared from %s - not updating.\n",
803 devices[chosen_drive].devname);
804 devices[chosen_drive].i.events = 0;
805 continue;
806 }
807 content->events = devices[most_recent].i.events;
808 tst->ss->update_super(tst, content, "force-one",
809 devices[chosen_drive].devname, c->verbose,
810 0, NULL);
811
812 if (tst->ss->store_super(tst, fd)) {
813 close(fd);
814 pr_err("Could not re-write superblock on %s\n",
815 devices[chosen_drive].devname);
816 devices[chosen_drive].i.events = 0;
817 tst->ss->free_super(tst);
818 continue;
819 }
820 close(fd);
821 devices[chosen_drive].i.events = devices[most_recent].i.events;
822 devices[chosen_drive].uptodate = 1;
823 avail[chosen_drive] = 1;
824 okcnt++;
825 tst->ss->free_super(tst);
826
827 /* If there are any other drives of the same vintage,
828 * add them in as well. We can't lose and we might gain
829 */
830 for (i = 0; i < content->array.raid_disks && i < bestcnt ; i++) {
831 int j = best[i];
832 if (j >= 0 &&
833 !devices[j].uptodate &&
834 devices[j].i.recovery_start == MaxSector &&
835 devices[j].i.events == current_events) {
836 chosen_drive = j;
837 goto add_another;
838 }
839 }
840 }
841 return okcnt;
842}
843
95425a89
N
844int Assemble(struct supertype *st, char *mddev,
845 struct mddev_ident *ident,
846 struct mddev_dev *devlist,
847 struct context *c)
848{
849 /*
850 * The task of Assemble is to find a collection of
851 * devices that should (according to their superblocks)
852 * form an array, and to give this collection to the MD driver.
853 * In Linux-2.4 and later, this involves submitting a
854 * SET_ARRAY_INFO ioctl with no arg - to prepare
855 * the array - and then submit a number of
856 * ADD_NEW_DISK ioctls to add disks into
857 * the array. Finally RUN_ARRAY might
858 * be submitted to start the array.
859 *
860 * Much of the work of Assemble is in finding and/or
861 * checking the disks to make sure they look right.
862 *
863 * If mddev is not set, then scan must be set and we
864 * read through the config file for dev+uuid mapping
865 * We recurse, setting mddev, for each device that
866 * - isn't running
867 * - has a valid uuid (or any uuid if !uuidset)
868 *
869 * If mddev is set, we try to determine state of md.
870 * check version - must be at least 0.90.0
871 * check kernel version. must be at least 2.4.
872 * If not, we can possibly fall back on START_ARRAY
873 * Try to GET_ARRAY_INFO.
874 * If possible, give up
875 * If not, try to STOP_ARRAY just to make sure
876 *
877 * If !uuidset and scan, look in conf-file for uuid
878 * If not found, give up
879 * If !devlist and scan and uuidset, get list of devs from conf-file
880 *
881 * For each device:
882 * Check superblock - discard if bad
883 * Check uuid (set if we don't have one) - discard if no match
884 * Check superblock similarity if we have a superblock - discard if different
885 * Record events, devicenum
886 * This should give us a list of devices for the array
887 * We should collect the most recent event number
888 *
889 * Count disks with recent enough event count
890 * While force && !enough disks
891 * Choose newest rejected disks, update event count
892 * mark clean and rewrite superblock
893 * If recent kernel:
894 * SET_ARRAY_INFO
895 * foreach device with recent events : ADD_NEW_DISK
896 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
897 * If old kernel:
898 * Check the device numbers in superblock are right
899 * update superblock if any changes
900 * START_ARRAY
901 *
902 */
903 int mdfd;
904 int clean;
905 int auto_assem = (mddev == NULL && !ident->uuid_set &&
906 ident->super_minor == UnSet && ident->name[0] == 0
907 && (ident->container == NULL || ident->member == NULL));
908 int old_linux = 0;
909 int vers = vers; /* Keep gcc quite - it really is initialised */
2c355c22 910 struct devs *devices;
95425a89
N
911 char *devmap;
912 int *best = NULL; /* indexed by raid_disk */
913 int bestcnt = 0;
2c355c22 914 int devcnt;
95425a89
N
915 unsigned int okcnt, sparecnt, rebuilding_cnt;
916 unsigned int req_cnt;
917 int i;
918 int most_recent = 0;
919 int chosen_drive;
920 int change = 0;
921 int inargv = 0;
95425a89
N
922 int start_partial_ok = (c->runstop >= 0) &&
923 (c->force || devlist==NULL || auto_assem);
924 int num_devs;
925 struct mddev_dev *tmpdev;
926 struct mdinfo info;
927 struct mdinfo *content = NULL;
928 struct mdinfo *pre_exist = NULL;
929 char *avail;
95425a89
N
930 char *name = NULL;
931 char chosen_name[1024];
932 struct map_ent *map = NULL;
933 struct map_ent *mp;
934
935 if (get_linux_version() < 2004000)
936 old_linux = 1;
937
938 /*
939 * If any subdevs are listed, then any that don't
940 * match ident are discarded. Remainder must all match and
941 * become the array.
942 * If no subdevs, then we scan all devices in the config file, but
943 * there must be something in the identity
944 */
945
946 if (!devlist &&
947 ident->uuid_set == 0 &&
948 (ident->super_minor < 0 || ident->super_minor == UnSet) &&
949 ident->name[0] == 0 &&
950 (ident->container == NULL || ident->member == NULL) &&
951 ident->devices == NULL) {
952 pr_err("No identity information available for %s - cannot assemble.\n",
953 mddev ? mddev : "further assembly");
954 return 1;
955 }
956
957 if (devlist == NULL)
958 devlist = conf_get_devs();
959 else if (mddev)
960 inargv = 1;
961
962 try_again:
963 /* We come back here when doing auto-assembly and attempting some
964 * set of devices failed. Those are now marked as ->used==2 and
965 * we ignore them and try again
966 */
967 if (!st && ident->st)
968 st = ident->st;
969 if (c->verbose>0)
970 pr_err("looking for devices for %s\n",
971 mddev ? mddev : "further assembly");
972
973 content = &info;
974 num_devs = select_devices(devlist, ident, &st, &content, c,
975 inargv, auto_assem);
976 if (num_devs < 0)
977 return 1;
cbeeb0e5 978
98dbd966 979 if (!st || !st->sb || !content)
c30e5369
N
980 return 2;
981
0431869c
N
982 /* We have a full set of devices - we now need to find the
983 * array device.
984 * However there is a risk that we are racing with "mdadm -I"
985 * and the array is already partially assembled - we will have
986 * rejected any devices already in this address.
987 * So we take a lock on the map file - to prevent further races -
988 * and look for the uuid in there. If found and the array is
989 * active, we abort. If found and the array is not active
990 * we commit to that md device and add all the contained devices
991 * to our list. We flag them so that we don't try to re-add,
992 * but can remove if they turn out to not be wanted.
993 */
994 if (map_lock(&map))
995 pr_err("failed to get exclusive lock on mapfile - continue anyway...\n");
996 mp = map_by_uuid(&map, content->uuid);
997 if (mp) {
998 struct mdinfo *dv;
999 /* array already exists. */
1000 pre_exist = sysfs_read(-1, mp->devnum, GET_LEVEL|GET_DEVS);
1001 if (pre_exist->array.level != UnSet) {
1002 pr_err("Found some drive for an array that is already active: %s\n",
1003 mp->path);
1004 pr_err("giving up.\n");
1005 return 1;
1006 }
1007 for (dv = pre_exist->devs; dv; dv = dv->next) {
1008 /* We want to add this device to our list,
1009 * but it could already be there if "mdadm -I"
1010 * started *after* we checked for O_EXCL.
1011 * If we add it to the top of the list
1012 * it will be preferred over later copies.
1013 */
1014 struct mddev_dev *newdev;
1015 char *devname = map_dev(dv->disk.major,
1016 dv->disk.minor,
1017 0);
1018 if (!devname)
1019 continue;
1020 newdev = xmalloc(sizeof(*newdev));
1021 newdev->devname = devname;
1022 newdev->disposition = 'I';
1023 newdev->used = 1;
1024 newdev->next = devlist;
1025 devlist = newdev;
1026 num_devs++;
1027 }
1028 strcpy(chosen_name, mp->path);
1029 if (c->verbose > 0 || mddev == NULL ||
1030 strcmp(mddev, chosen_name) != 0)
1031 pr_err("Merging with already-assembled %s\n",
1032 chosen_name);
1033 mdfd = open_dev_excl(mp->devnum);
1034 } else {
1035 int trustworthy = FOREIGN;
1036 name = content->name;
1037 switch (st->ss->match_home(st, c->homehost)
1038 ?: st->ss->match_home(st, "any")) {
1039 case 1:
1040 trustworthy = LOCAL;
1041 name = strchr(content->name, ':');
1042 if (name)
1043 name++;
1044 else
1045 name = content->name;
1046 break;
1047 }
1048 if (!auto_assem)
1049 /* If the array is listed in mdadm.conf or on
1050 * command line, then we trust the name
1051 * even if the array doesn't look local
1052 */
1053 trustworthy = LOCAL;
ac2ecf55 1054
0431869c
N
1055 if (name[0] == 0 &&
1056 content->array.level == LEVEL_CONTAINER) {
1057 name = content->text_version;
1058 trustworthy = METADATA;
1059 }
0ac91628 1060
0431869c
N
1061 if (name[0] && trustworthy != LOCAL &&
1062 ! c->require_homehost &&
1063 conf_name_is_free(name))
1064 trustworthy = LOCAL;
0ac91628 1065
0431869c
N
1066 if (trustworthy == LOCAL &&
1067 strchr(name, ':'))
1068 /* Ignore 'host:' prefix of name */
1069 name = strchr(name, ':')+1;
7cdc0872 1070
0431869c
N
1071 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
1072 chosen_name);
1073 }
c30e5369
N
1074 if (mdfd < 0) {
1075 st->ss->free_super(st);
c30e5369 1076 if (auto_assem)
60e1bc1a 1077 goto try_again;
c30e5369
N
1078 return 1;
1079 }
a04d5763 1080 mddev = chosen_name;
c30e5369
N
1081 vers = md_get_version(mdfd);
1082 if (vers < 9000) {
e7b84f9d 1083 pr_err("Assemble requires driver version 0.90.0 or later.\n"
c30e5369
N
1084 " Upgrade your kernel or try --build\n");
1085 close(mdfd);
1086 return 1;
1087 }
0431869c
N
1088 if (pre_exist == NULL) {
1089 if (mddev_busy(fd2devnum(mdfd))) {
1090 pr_err("%s already active, cannot restart it!\n",
1091 mddev);
1092 for (tmpdev = devlist ;
1093 tmpdev && tmpdev->used != 1;
1094 tmpdev = tmpdev->next)
1095 ;
1096 if (tmpdev && auto_assem)
1097 pr_err("%s needed for %s...\n",
1098 mddev, tmpdev->devname);
1099 close(mdfd);
1100 mdfd = -3;
1101 st->ss->free_super(st);
1102 if (auto_assem)
1103 goto try_again;
1104 return 1;
1105 }
1106 /* just incase it was started but has no content */
1107 ioctl(mdfd, STOP_ARRAY, NULL);
8a46fe84
NB
1108 }
1109
9008ed1c
N
1110#ifndef MDASSEMBLE
1111 if (content != &info) {
1112 /* This is a member of a container. Try starting the array. */
588bebfc 1113 int err;
11b6d91d
N
1114 err = assemble_container_content(st, mdfd, content, c,
1115 chosen_name);
588bebfc 1116 close(mdfd);
588bebfc 1117 return err;
9008ed1c
N
1118 }
1119#endif
811e6cbe 1120 /* Ok, no bad inconsistancy, we can try updating etc */
503975b9
N
1121 devices = xcalloc(num_devs, sizeof(*devices));
1122 devmap = xcalloc(num_devs, content->array.raid_disks);
2c355c22
N
1123 devcnt = load_devices(devices, devmap, ident, st, devlist,
1124 c, content, mdfd, mddev,
1125 &most_recent, &bestcnt, &best, inargv);
1126 if (devcnt < 0)
1127 return 1;
4b1ac34b 1128
64c4757e 1129 if (devcnt == 0) {
e7b84f9d 1130 pr_err("no devices found for %s\n",
64c4757e 1131 mddev);
3d2b16e7
NB
1132 if (st)
1133 st->ss->free_super(st);
7f91af49 1134 close(mdfd);
d7f7ebb7 1135 free(devices);
02e7c5b7 1136 free(devmap);
64c4757e
NB
1137 return 1;
1138 }
4b1ac34b 1139
4977146a 1140 if (c->update && strcmp(c->update, "byteorder")==0)
3d2b16e7
NB
1141 st->minor_version = 90;
1142
a5d85af7 1143 st->ss->getinfo_super(st, content, NULL);
98dbd966 1144 clean = content->array.state & 1;
4b1ac34b 1145
64c4757e
NB
1146 /* now we have some devices that might be suitable.
1147 * I wonder how many
1148 */
503975b9 1149 avail = xcalloc(content->array.raid_disks, 1);
64c4757e 1150 okcnt = 0;
52826846 1151 sparecnt=0;
1ff98339 1152 rebuilding_cnt=0;
f21e18ca 1153 for (i=0; i< bestcnt; i++) {
64c4757e 1154 int j = best[i];
ee04451c
NB
1155 int event_margin = 1; /* always allow a difference of '1'
1156 * like the kernel does
1157 */
64c4757e 1158 if (j < 0) continue;
d013a55e
NB
1159 /* note: we ignore error flags in multipath arrays
1160 * as they don't make sense
1161 */
df0d4ea0 1162 if (content->array.level != LEVEL_MULTIPATH)
f22385f9 1163 if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
213ee40b 1164 if (!(devices[j].i.disk.state
ed7fc6b4
AC
1165 & (1<<MD_DISK_FAULTY))) {
1166 devices[j].uptodate = 1;
aa88f531 1167 sparecnt++;
ed7fc6b4 1168 }
d013a55e 1169 continue;
aa88f531 1170 }
de5a472e 1171 /* If this device thinks that 'most_recent' has failed, then
02e7c5b7
N
1172 * we must reject this device.
1173 */
1174 if (j != most_recent &&
1175 content->array.raid_disks > 0 &&
1176 devices[most_recent].i.disk.raid_disk >= 0 &&
1177 devmap[j * content->array.raid_disks + devices[most_recent].i.disk.raid_disk] == 0) {
4977146a 1178 if (c->verbose > -1)
e7b84f9d 1179 pr_err("ignoring %s as it reports %s as failed\n",
02e7c5b7
N
1180 devices[j].devname, devices[most_recent].devname);
1181 best[i] = -1;
1182 continue;
1183 }
213ee40b
NB
1184 if (devices[j].i.events+event_margin >=
1185 devices[most_recent].i.events) {
64c4757e 1186 devices[j].uptodate = 1;
1ff98339 1187 if (i < content->array.raid_disks) {
dcc4210f
DW
1188 if (devices[j].i.recovery_start == MaxSector ||
1189 (content->reshape_active &&
b720636a
N
1190 ((i >= content->array.raid_disks - content->delta_disks) ||
1191 (i >= content->array.raid_disks - content->delta_disks - 1
1192 && content->array.level == 4)))) {
1ff98339
N
1193 okcnt++;
1194 avail[i]=1;
1195 } else
1196 rebuilding_cnt++;
265e0f17 1197 } else
52826846 1198 sparecnt++;
64c4757e
NB
1199 }
1200 }
02e7c5b7 1201 free(devmap);
9f5470ce
N
1202 if (c->force)
1203 okcnt += force_array(content, devices, best, bestcnt,
1204 avail, most_recent, st, c);
52826846
NB
1205
1206 /* Now we want to look at the superblock which the kernel will base things on
1207 * and compare the devices that we think are working with the devices that the
1208 * superblock thinks are working.
1209 * If there are differences and --force is given, then update this chosen
1210 * superblock.
1211 */
cd29a5c8 1212 chosen_drive = -1;
3da92f27 1213 st->ss->free_super(st);
56eedc1a 1214 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
1215 int j = best[i];
1216 int fd;
4b1ac34b 1217
52826846
NB
1218 if (j<0)
1219 continue;
1220 if (!devices[j].uptodate)
1221 continue;
a28232b8
N
1222 if (devices[j].i.events < devices[most_recent].i.events)
1223 continue;
52826846 1224 chosen_drive = j;
0431869c
N
1225 if ((fd=dev_open(devices[j].devname,
1226 devices[j].included ? O_RDONLY
1227 : (O_RDONLY|O_EXCL)))< 0) {
e7b84f9d 1228 pr_err("Cannot open %s: %s\n",
52826846 1229 devices[j].devname, strerror(errno));
7f91af49 1230 close(mdfd);
d7f7ebb7 1231 free(devices);
52826846
NB
1232 return 1;
1233 }
3da92f27 1234 if (st->ss->load_super(st,fd, NULL)) {
52826846 1235 close(fd);
e7b84f9d 1236 pr_err("RAID superblock has disappeared from %s\n",
52826846 1237 devices[j].devname);
7f91af49 1238 close(mdfd);
d7f7ebb7 1239 free(devices);
52826846
NB
1240 return 1;
1241 }
1242 close(fd);
1243 }
3da92f27 1244 if (st->sb == NULL) {
e7b84f9d 1245 pr_err("No suitable drives found for %s\n", mddev);
7f91af49 1246 close(mdfd);
d7f7ebb7 1247 free(devices);
4b1ac34b
NB
1248 return 1;
1249 }
a5d85af7 1250 st->ss->getinfo_super(st, content, NULL);
f35f2525 1251#ifndef MDASSEMBLE
98dbd966 1252 sysfs_init(content, mdfd, 0);
f35f2525 1253#endif
56eedc1a 1254 for (i=0; i<bestcnt; i++) {
52826846 1255 int j = best[i];
98c6faba 1256 unsigned int desired_state;
11a3e71d 1257
98dbd966 1258 if (i < content->array.raid_disks)
11a3e71d
NB
1259 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
1260 else
1261 desired_state = 0;
1262
52826846
NB
1263 if (j<0)
1264 continue;
1265 if (!devices[j].uptodate)
1266 continue;
4b1ac34b 1267
213ee40b 1268 devices[j].i.disk.state = desired_state;
4e9a6ff7
N
1269 if (!(devices[j].i.array.state & 1))
1270 clean = 0;
213ee40b
NB
1271
1272 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
4977146a
N
1273 c->verbose, 0, NULL)) {
1274 if (c->force) {
1275 if (c->verbose >= 0)
e7b84f9d 1276 pr_err("clearing FAULTY flag for device %d in %s for %s\n",
dab6685f 1277 j, mddev, devices[j].devname);
4b1ac34b 1278 change = 1;
52826846 1279 } else {
4977146a 1280 if (c->verbose >= -1)
e7b84f9d 1281 pr_err("device %d in %s has wrong state in superblock, but %s seems ok\n",
dab6685f 1282 i, mddev, devices[j].devname);
52826846
NB
1283 }
1284 }
4b1ac34b 1285#if 0
213ee40b 1286 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
e7b84f9d 1287 pr_err("devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
52826846
NB
1288 i, mddev);
1289 }
4b1ac34b 1290#endif
52826846 1291 }
4977146a 1292 if (c->force && !clean &&
98dbd966
DW
1293 !enough(content->array.level, content->array.raid_disks,
1294 content->array.layout, clean,
de5a472e 1295 avail)) {
98dbd966 1296 change += st->ss->update_super(st, content, "force-array",
4977146a 1297 devices[chosen_drive].devname, c->verbose,
67a8c82d 1298 0, NULL);
583315d9 1299 clean = 1;
d013a55e 1300 }
52826846 1301
4b1ac34b 1302 if (change) {
52826846 1303 int fd;
0431869c
N
1304 fd = dev_open(devices[chosen_drive].devname,
1305 devices[chosen_drive].included ?
1306 O_RDWR : (O_RDWR|O_EXCL));
52826846 1307 if (fd < 0) {
e7b84f9d 1308 pr_err("Could not open %s for write - cannot Assemble array.\n",
52826846 1309 devices[chosen_drive].devname);
7f91af49 1310 close(mdfd);
d7f7ebb7 1311 free(devices);
52826846
NB
1312 return 1;
1313 }
3da92f27 1314 if (st->ss->store_super(st, fd)) {
52826846 1315 close(fd);
e7b84f9d 1316 pr_err("Could not re-write superblock on %s\n",
52826846 1317 devices[chosen_drive].devname);
7f91af49 1318 close(mdfd);
d7f7ebb7 1319 free(devices);
52826846
NB
1320 return 1;
1321 }
4977146a 1322 if (c->verbose >= 0)
e7b84f9d 1323 pr_err("Marking array %s as 'clean'\n",
a28232b8 1324 mddev);
52826846 1325 close(fd);
52826846
NB
1326 }
1327
353632d9
NB
1328 /* If we are in the middle of a reshape we may need to restore saved data
1329 * that was moved aside due to the reshape overwriting live data
1330 * The code of doing this lives in Grow.c
1331 */
39c5a909 1332#ifndef MDASSEMBLE
5e88ab2e
N
1333 if (content->reshape_active &&
1334 !(content->reshape_active & RESHAPE_NO_BACKUP)) {
353632d9 1335 int err = 0;
503975b9 1336 int *fdlist = xmalloc(sizeof(int)* bestcnt);
4977146a 1337 if (c->verbose > 0)
e7b84f9d 1338 pr_err(":%s has an active reshape - checking "
ea0ebe96
N
1339 "if critical section needs to be restored\n",
1340 chosen_name);
353632d9
NB
1341 for (i=0; i<bestcnt; i++) {
1342 int j = best[i];
1343 if (j >= 0) {
0431869c
N
1344 fdlist[i] = dev_open(devices[j].devname,
1345 devices[j].included
1346 ? O_RDWR : (O_RDWR|O_EXCL));
353632d9 1347 if (fdlist[i] < 0) {
e7b84f9d 1348 pr_err("Could not open %s for write - cannot Assemble array.\n",
353632d9
NB
1349 devices[j].devname);
1350 err = 1;
1351 break;
1352 }
1353 } else
1354 fdlist[i] = -1;
1355 }
87f26d14 1356 if (!err) {
ba53ea59
AK
1357 if (st->ss->external && st->ss->recover_backup)
1358 err = st->ss->recover_backup(st, content);
1359 else
1360 err = Grow_restart(st, content, fdlist, bestcnt,
4977146a
N
1361 c->backup_file, c->verbose > 0);
1362 if (err && c->invalid_backup) {
1363 if (c->verbose > 0)
e7b84f9d 1364 pr_err("continuing"
87f26d14
N
1365 " without restoring backup\n");
1366 err = 0;
1367 }
1368 }
353632d9
NB
1369 while (i>0) {
1370 i--;
1371 if (fdlist[i]>=0) close(fdlist[i]);
1372 }
56dcaa6b 1373 free(fdlist);
353632d9 1374 if (err) {
e7b84f9d 1375 pr_err("Failed to restore critical section for reshape, sorry.\n");
4977146a 1376 if (c->backup_file == NULL)
e7b84f9d 1377 cont_err("Possibly you needed to specify the --backup-file\n");
7f91af49 1378 close(mdfd);
d7f7ebb7 1379 free(devices);
353632d9
NB
1380 return err;
1381 }
1382 }
39c5a909 1383#endif
aa88f531
NB
1384 /* count number of in-sync devices according to the superblock.
1385 * We must have this number to start the array without -s or -R
1386 */
98dbd966 1387 req_cnt = content->array.working_disks;
aa88f531 1388
64c4757e
NB
1389 /* Almost ready to actually *do* something */
1390 if (!old_linux) {
fbf8a0b7 1391 int rv;
a19c88b8 1392
a04d5763
N
1393 /* First, fill in the map, so that udev can find our name
1394 * as soon as we become active.
1395 */
0431869c 1396 map_update(&map, fd2devnum(mdfd), content->text_version,
98dbd966 1397 content->uuid, chosen_name);
a04d5763 1398
98dbd966 1399 rv = set_array_info(mdfd, st, content);
0431869c 1400 if (rv && !pre_exist) {
e7b84f9d 1401 pr_err("failed to set array info for %s: %s\n",
64c4757e 1402 mddev, strerror(errno));
24af7a87 1403 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1404 close(mdfd);
d7f7ebb7 1405 free(devices);
0431869c 1406 map_unlock(&map);
64c4757e
NB
1407 return 1;
1408 }
11484a63 1409 if (ident->bitmap_fd >= 0) {
c82f047c 1410 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
e7b84f9d 1411 pr_err("SET_BITMAP_FILE failed.\n");
24af7a87 1412 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1413 close(mdfd);
d7f7ebb7 1414 free(devices);
0431869c 1415 map_unlock(&map);
c82f047c
NB
1416 return 1;
1417 }
7ef02d01
NB
1418 } else if (ident->bitmap_file) {
1419 /* From config file */
1420 int bmfd = open(ident->bitmap_file, O_RDWR);
1421 if (bmfd < 0) {
e7b84f9d 1422 pr_err("Could not open bitmap file %s\n",
7ef02d01 1423 ident->bitmap_file);
24af7a87 1424 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1425 close(mdfd);
d7f7ebb7 1426 free(devices);
0431869c 1427 map_unlock(&map);
7ef02d01
NB
1428 return 1;
1429 }
1430 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
e7b84f9d 1431 pr_err("Failed to set bitmapfile for %s\n", mddev);
7ef02d01 1432 close(bmfd);
24af7a87 1433 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1434 close(mdfd);
d7f7ebb7 1435 free(devices);
0431869c 1436 map_unlock(&map);
7ef02d01
NB
1437 return 1;
1438 }
1439 close(bmfd);
c82f047c 1440 }
7ef02d01 1441
52826846 1442 /* First, add the raid disks, but add the chosen one last */
56eedc1a 1443 for (i=0; i<= bestcnt; i++) {
52826846 1444 int j;
56eedc1a 1445 if (i < bestcnt) {
52826846
NB
1446 j = best[i];
1447 if (j == chosen_drive)
1448 continue;
1449 } else
1450 j = chosen_drive;
1451
0431869c 1452 if (j >= 0 && !devices[j].included) {
484ae54d
N
1453 int dfd = dev_open(devices[j].devname,
1454 O_RDWR|O_EXCL);
1455 if (dfd >= 0) {
1456 remove_partitions(dfd);
1457 close(dfd);
1458 }
98dbd966 1459 rv = add_disk(mdfd, st, content, &devices[j].i);
7801ac20 1460
a19c88b8 1461 if (rv) {
e7b84f9d
N
1462 pr_err("failed to add "
1463 "%s to %s: %s\n",
1464 devices[j].devname,
1465 mddev,
1466 strerror(errno));
98dbd966 1467 if (i < content->array.raid_disks
213ee40b 1468 || i == bestcnt)
52826846
NB
1469 okcnt--;
1470 else
1471 sparecnt--;
4977146a 1472 } else if (c->verbose > 0)
e7b84f9d
N
1473 pr_err("added %s to %s as %d%s\n",
1474 devices[j].devname, mddev,
1475 devices[j].i.disk.raid_disk,
1476 devices[j].uptodate?"":
1477 " (possibly out of date)");
0431869c
N
1478 } else if (j >= 0) {
1479 if (c->verbose > 0)
1480 pr_err("%s is already in %s as %d\n",
1481 devices[j].devname, mddev,
1482 devices[j].i.disk.raid_disk);
4977146a 1483 } else if (c->verbose > 0 && i < content->array.raid_disks)
0431869c 1484 pr_err("no uptodate device for slot %d of %s\n",
64c4757e
NB
1485 i, mddev);
1486 }
aba69144 1487
98dbd966 1488 if (content->array.level == LEVEL_CONTAINER) {
4977146a 1489 if (c->verbose >= 0) {
e7b84f9d 1490 pr_err("Container %s has been "
598f0d58 1491 "assembled with %d drive%s",
57ed8c91 1492 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
f21e18ca 1493 if (okcnt < (unsigned)content->array.raid_disks)
598f0d58 1494 fprintf(stderr, " (out of %d)",
98dbd966 1495 content->array.raid_disks);
598f0d58
NB
1496 fprintf(stderr, "\n");
1497 }
ac597b1c 1498 st->ss->free_super(st);
98dbd966 1499 sysfs_uevent(content, "change");
0431869c 1500 map_unlock(&map);
a7c6e3fb 1501 wait_for(chosen_name, mdfd);
7f91af49 1502 close(mdfd);
d7f7ebb7 1503 free(devices);
598f0d58
NB
1504 return 0;
1505 }
1506
4977146a
N
1507 if (c->runstop == 1 ||
1508 (c->runstop <= 0 &&
98dbd966 1509 ( enough(content->array.level, content->array.raid_disks,
de5a472e 1510 content->array.layout, clean, avail) &&
1ff98339 1511 (okcnt + rebuilding_cnt >= req_cnt || start_partial_ok)
aa88f531 1512 ))) {
e9e43ec3
N
1513 /* This array is good-to-go.
1514 * If a reshape is in progress then we might need to
1515 * continue monitoring it. In that case we start
1516 * it read-only and let the grow code make it writable.
1517 */
1518 int rv;
eb3929a4 1519#ifndef MDASSEMBLE
e9e43ec3 1520 if (content->reshape_active &&
5e88ab2e 1521 !(content->reshape_active & RESHAPE_NO_BACKUP) &&
3bd58dc6
AK
1522 content->delta_disks <= 0) {
1523 rv = sysfs_set_str(content, NULL,
1524 "array_state", "readonly");
1525 if (rv == 0)
1526 rv = Grow_continue(mdfd, st, content,
4977146a
N
1527 c->backup_file,
1528 c->freeze_reshape);
1529 } else if (c->readonly &&
0ea8f5b1
N
1530 sysfs_attribute_available(
1531 content, NULL, "array_state")) {
1532 rv = sysfs_set_str(content, NULL,
1533 "array_state", "readonly");
3bd58dc6 1534 } else
eb3929a4 1535#endif
e9e43ec3
N
1536 rv = ioctl(mdfd, RUN_ARRAY, NULL);
1537 if (rv == 0) {
4977146a 1538 if (c->verbose >= 0) {
e7b84f9d 1539 pr_err("%s has been started with %d drive%s",
dab6685f 1540 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1541 if (okcnt < (unsigned)content->array.raid_disks)
98dbd966 1542 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1ff98339
N
1543 if (rebuilding_cnt)
1544 fprintf(stderr, "%s %d rebuilding", sparecnt?",":" and", rebuilding_cnt);
dab6685f
NB
1545 if (sparecnt)
1546 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1547 fprintf(stderr, ".\n");
1548 }
8a659c33
N
1549 if (content->reshape_active &&
1550 content->array.level >= 4 &&
1551 content->array.level <= 6) {
acee8e89
N
1552 /* might need to increase the size
1553 * of the stripe cache - default is 256
1554 */
8a659c33 1555 if (256 < 4 * (content->array.chunk_size/4096)) {
acee8e89
N
1556 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1557 if (sra)
1558 sysfs_set_num(sra, NULL,
1559 "stripe_cache_size",
8a659c33 1560 (4 * content->array.chunk_size / 4096) + 1);
83366b33 1561 sysfs_free(sra);
acee8e89
N
1562 }
1563 }
7e83544b
N
1564 if (okcnt < (unsigned)content->array.raid_disks) {
1565 /* If any devices did not get added
1566 * because the kernel rejected them based
1567 * on event count, try adding them
1568 * again providing the action policy is
1569 * 're-add' or greater. The bitmap
1570 * might allow them to be included, or
1571 * they will become spares.
1572 */
b787bec6 1573 for (i = 0; i < bestcnt; i++) {
7e83544b
N
1574 int j = best[i];
1575 if (j >= 0 && !devices[j].uptodate) {
1576 if (!disk_action_allows(&devices[j].i, st->ss->name, act_re_add))
1577 continue;
1578 rv = add_disk(mdfd, st, content,
1579 &devices[j].i);
4977146a 1580 if (rv == 0 && c->verbose >= 0)
e7b84f9d
N
1581 pr_err("%s has been re-added.\n",
1582 devices[j].devname);
7e83544b
N
1583 }
1584 }
1585 }
0431869c 1586 map_unlock(&map);
a7c6e3fb 1587 wait_for(mddev, mdfd);
7f91af49
N
1588 close(mdfd);
1589 if (auto_assem) {
589395d6 1590 int usecs = 1;
589395d6
NB
1591 /* There is a nasty race with 'mdadm --monitor'.
1592 * If it opens this device before we close it,
1593 * it gets an incomplete open on which IO
598f0d58
NB
1594 * doesn't work and the capacity is
1595 * wrong.
589395d6
NB
1596 * If we reopen (to check for layered devices)
1597 * before --monitor closes, we loose.
1598 *
1599 * So: wait upto 1 second for there to be
1600 * a non-zero capacity.
1601 */
1602 while (usecs < 1000) {
1603 mdfd = open(mddev, O_RDONLY);
1604 if (mdfd >= 0) {
beae1dfe
NB
1605 unsigned long long size;
1606 if (get_dev_size(mdfd, NULL, &size) &&
589395d6
NB
1607 size > 0)
1608 break;
1609 close(mdfd);
1610 }
1611 usleep(usecs);
1612 usecs <<= 1;
1613 }
1614 }
d7f7ebb7 1615 free(devices);
64c4757e 1616 return 0;
82b27616 1617 }
e7b84f9d 1618 pr_err("failed to RUN_ARRAY %s: %s\n",
64c4757e 1619 mddev, strerror(errno));
583315d9 1620
98dbd966 1621 if (!enough(content->array.level, content->array.raid_disks,
de5a472e 1622 content->array.layout, 1, avail))
e7b84f9d 1623 pr_err("Not enough devices to "
583315d9 1624 "start the array.\n");
98dbd966
DW
1625 else if (!enough(content->array.level,
1626 content->array.raid_disks,
1627 content->array.layout, clean,
de5a472e 1628 avail))
e7b84f9d 1629 pr_err("Not enough devices to "
583315d9
NB
1630 "start the array while not clean "
1631 "- consider --force.\n");
1632
7f91af49 1633 if (auto_assem)
1c203a4b 1634 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1635 close(mdfd);
d7f7ebb7 1636 free(devices);
0431869c 1637 map_unlock(&map);
64c4757e
NB
1638 return 1;
1639 }
4977146a 1640 if (c->runstop == -1) {
e7b84f9d
N
1641 pr_err("%s assembled from %d drive%s",
1642 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1643 if (okcnt != (unsigned)content->array.raid_disks)
98dbd966 1644 fprintf(stderr, " (out of %d)", content->array.raid_disks);
b8a8ccf9 1645 fprintf(stderr, ", but not started.\n");
7f91af49 1646 close(mdfd);
d7f7ebb7 1647 free(devices);
0431869c 1648 map_unlock(&map);
64c4757e 1649 return 0;
82b27616 1650 }
4977146a 1651 if (c->verbose >= -1) {
e7b84f9d 1652 pr_err("%s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1ff98339
N
1653 if (rebuilding_cnt)
1654 fprintf(stderr, "%s %d rebuilding", sparecnt?", ":" and ", rebuilding_cnt);
dab6685f
NB
1655 if (sparecnt)
1656 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
98dbd966 1657 if (!enough(content->array.level, content->array.raid_disks,
de5a472e 1658 content->array.layout, 1, avail))
dab6685f 1659 fprintf(stderr, " - not enough to start the array.\n");
98dbd966
DW
1660 else if (!enough(content->array.level,
1661 content->array.raid_disks,
1662 content->array.layout, clean,
de5a472e 1663 avail))
583315d9
NB
1664 fprintf(stderr, " - not enough to start the "
1665 "array while not clean - consider "
1666 "--force.\n");
dab6685f 1667 else {
f21e18ca 1668 if (req_cnt == (unsigned)content->array.raid_disks)
dab6685f
NB
1669 fprintf(stderr, " - need all %d to start it", req_cnt);
1670 else
98dbd966 1671 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
dab6685f
NB
1672 fprintf(stderr, " (use --run to insist).\n");
1673 }
aa88f531 1674 }
7f91af49 1675 if (auto_assem)
1c203a4b 1676 ioctl(mdfd, STOP_ARRAY, NULL);
56a8da69 1677 close(mdfd);
d7f7ebb7 1678 free(devices);
0431869c 1679 map_unlock(&map);
64c4757e 1680 return 1;
82b27616 1681 } else {
52826846
NB
1682 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1683 * been updated to point to the current locations of devices.
1684 * so we can just start the array
82b27616 1685 */
cd29a5c8 1686 unsigned long dev;
213ee40b
NB
1687 dev = makedev(devices[chosen_drive].i.disk.major,
1688 devices[chosen_drive].i.disk.minor);
82b27616 1689 if (ioctl(mdfd, START_ARRAY, dev)) {
e7b84f9d 1690 pr_err("Cannot start array: %s\n",
82b27616
NB
1691 strerror(errno));
1692 }
aba69144 1693
64c4757e 1694 }
7f91af49 1695 close(mdfd);
d7f7ebb7 1696 free(devices);
0431869c 1697 map_unlock(&map);
e0d19036 1698 return 0;
64c4757e 1699}
6234c63c
DW
1700
1701#ifndef MDASSEMBLE
1702int assemble_container_content(struct supertype *st, int mdfd,
11b6d91d
N
1703 struct mdinfo *content, struct context *c,
1704 char *chosen_name)
6234c63c
DW
1705{
1706 struct mdinfo *dev, *sra;
1707 int working = 0, preexist = 0;
882029c8 1708 int expansion = 0;
6234c63c 1709 struct map_ent *map = NULL;
7af03341 1710 int old_raid_disks;
4aecb54a 1711 int start_reshape;
6234c63c
DW
1712
1713 sysfs_init(content, mdfd, 0);
1714
1715 sra = sysfs_read(mdfd, 0, GET_VERSION);
0ea8f5b1
N
1716 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0) {
1717 if (content->array.major_version == -1 &&
1718 content->array.minor_version == -2 &&
11b6d91d 1719 c->readonly &&
0ea8f5b1
N
1720 content->text_version[0] == '/')
1721 content->text_version[0] = '-';
22472ee1
JS
1722 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1723 if (sra)
1724 sysfs_free(sra);
6234c63c 1725 return 1;
22472ee1 1726 }
0ea8f5b1 1727 }
588bebfc 1728
4aecb54a
AK
1729 /* There are two types of reshape: container wide or sub-array specific
1730 * Check if metadata requests blocking container wide reshapes
1731 */
1732 start_reshape = (content->reshape_active &&
1733 !((content->reshape_active == CONTAINER_RESHAPE) &&
1734 (content->array.state & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE))));
1735
1736 /* Block subarray here if it is under reshape now
1737 * Do not allow for any changes in this array
1738 */
1739 if (st->ss->external && content->recovery_blocked && start_reshape)
b8063f07
AK
1740 block_subarray(content);
1741
6234c63c
DW
1742 if (sra)
1743 sysfs_free(sra);
7af03341 1744 old_raid_disks = content->array.raid_disks - content->delta_disks;
6234c63c 1745 for (dev = content->devs; dev; dev = dev->next)
14032016 1746 if (sysfs_add_disk(content, dev, 1) == 0) {
7af03341 1747 if (dev->disk.raid_disk >= old_raid_disks &&
14032016
AK
1748 content->reshape_active)
1749 expansion++;
1750 else
1751 working++;
1752 } else if (errno == EEXIST)
6234c63c 1753 preexist++;
111e9fda 1754 if (working + expansion == 0)
7cb2aa33 1755 return 1;/* Nothing new, don't try to start */
588bebfc 1756
8b4e5ea9
N
1757 map_update(&map, fd2devnum(mdfd),
1758 content->text_version,
1759 content->uuid, chosen_name);
1760
11b6d91d 1761 if (c->runstop > 0 ||
882029c8
AK
1762 (working + preexist + expansion) >=
1763 content->array.working_disks) {
bb50e5d3 1764 int err;
a714580e 1765
81219e70 1766 if (start_reshape) {
49680258 1767 int spare = content->array.raid_disks + expansion;
3f54bd62
AK
1768 if (restore_backup(st, content,
1769 working,
11b6d91d 1770 spare, c->backup_file, c->verbose) == 1)
49680258 1771 return 1;
49680258 1772
3bd58dc6
AK
1773 err = sysfs_set_str(content, NULL,
1774 "array_state", "readonly");
1775 if (err)
1776 return 1;
1777
a93ada3b
AK
1778 if (st->ss->external) {
1779 if (!mdmon_running(st->container_dev))
1780 start_mdmon(st->container_dev);
1781 ping_monitor_by_id(st->container_dev);
7728e1c6
LD
1782 if (mdmon_running(st->container_dev) &&
1783 st->update_tail == NULL)
1784 st->update_tail = &st->updates;
a93ada3b
AK
1785 }
1786
11b6d91d
N
1787 err = Grow_continue(mdfd, st, content, c->backup_file,
1788 c->freeze_reshape);
49680258 1789 } else switch(content->array.level) {
6234c63c
DW
1790 case LEVEL_LINEAR:
1791 case LEVEL_MULTIPATH:
1792 case 0:
bb50e5d3 1793 err = sysfs_set_str(content, NULL, "array_state",
11b6d91d 1794 c->readonly ? "readonly" : "active");
6234c63c
DW
1795 break;
1796 default:
bb50e5d3 1797 err = sysfs_set_str(content, NULL, "array_state",
6234c63c
DW
1798 "readonly");
1799 /* start mdmon if needed. */
bb50e5d3
N
1800 if (!err) {
1801 if (!mdmon_running(st->container_dev))
1802 start_mdmon(st->container_dev);
983fff45 1803 ping_monitor_by_id(st->container_dev);
bb50e5d3 1804 }
6234c63c
DW
1805 break;
1806 }
bb50e5d3
N
1807 if (!err)
1808 sysfs_set_safemode(content, content->safe_mode_delay);
4aecb54a
AK
1809
1810 /* Block subarray here if it is not reshaped now
1811 * It has be blocked a little later to allow mdmon to switch in
1812 * in to R/W state
1813 */
1814 if (st->ss->external && content->recovery_blocked &&
1815 !start_reshape)
1816 block_subarray(content);
1817
11b6d91d 1818 if (c->verbose >= 0) {
bb50e5d3 1819 if (err)
e7b84f9d
N
1820 pr_err("array %s now has %d device%s",
1821 chosen_name, working + preexist,
1822 working + preexist == 1 ? "":"s");
bb50e5d3 1823 else
e7b84f9d
N
1824 pr_err("Started %s with %d device%s",
1825 chosen_name, working + preexist,
1826 working + preexist == 1 ? "":"s");
6234c63c
DW
1827 if (preexist)
1828 fprintf(stderr, " (%d new)", working);
882029c8
AK
1829 if (expansion)
1830 fprintf(stderr, " ( + %d for expansion)",
1831 expansion);
6234c63c
DW
1832 fprintf(stderr, "\n");
1833 }
bb50e5d3 1834 if (!err)
a7c6e3fb 1835 wait_for(chosen_name, mdfd);
588bebfc 1836 return err;
6234c63c 1837 /* FIXME should have an O_EXCL and wait for read-auto */
7cb2aa33 1838 } else {
11b6d91d 1839 if (c->verbose >= 0) {
e7b84f9d
N
1840 pr_err("%s assembled with %d device%s",
1841 chosen_name, preexist + working,
1842 preexist + working == 1 ? "":"s");
88716263
N
1843 if (preexist)
1844 fprintf(stderr, " (%d new)", working);
1845 fprintf(stderr, " but not started\n");
1846 }
7cb2aa33
N
1847 return 1;
1848 }
6234c63c
DW
1849}
1850#endif
1851