]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
clustermd_tests: add test case to test manage_re-add against cluster-raid10
[thirdparty/mdadm.git] / Assemble.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
c61b1c0b 4 * Copyright (C) 2001-2016 Neil Brown <neilb@suse.com>
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
86b77ddf 28static int name_matches(char *found, char *required, char *homehost, int require_homehost)
624920bb
NB
29{
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
32 */
00f23a88
N
33 char *sep;
34 unsigned int l;
624920bb 35
624920bb
NB
36 if (strcmp(found, required)==0)
37 return 1;
00f23a88
N
38 sep = strchr(found, ':');
39 if (!sep)
40 return 0;
41 l = sep - found;
42 if (strncmp(found, "any:", 4) == 0 ||
43 (homehost && strcmp(homehost, "any") == 0) ||
86b77ddf 44 !require_homehost ||
00f23a88
N
45 (homehost && strlen(homehost) == l &&
46 strncmp(found, homehost, l) == 0)) {
47 /* matching homehost */
48 if (strcmp(sep+1, required) == 0)
624920bb
NB
49 return 1;
50 }
51 return 0;
52}
53
9008ed1c 54static int is_member_busy(char *metadata_version)
2de8884f
DW
55{
56 /* check if the given member array is active */
b4924f46 57 struct mdstat_ent *mdstat = mdstat_read(0, 0);
2de8884f
DW
58 struct mdstat_ent *ent;
59 int busy = 0;
60
61 for (ent = mdstat; ent; ent = ent->next) {
62 if (ent->metadata_version == NULL)
63 continue;
64 if (strncmp(ent->metadata_version, "external:", 9) != 0)
65 continue;
66 if (!is_subarray(&ent->metadata_version[9]))
67 continue;
68 /* Skip first char - it can be '/' or '-' */
69 if (strcmp(&ent->metadata_version[10], metadata_version+1) == 0) {
70 busy = 1;
71 break;
72 }
73 }
74 free_mdstat(mdstat);
75
76 return busy;
77}
78
fa56eddb 79static int ident_matches(struct mddev_ident *ident,
08fb91a3
N
80 struct mdinfo *content,
81 struct supertype *tst,
86b77ddf 82 char *homehost, int require_homehost,
08fb91a3
N
83 char *update, char *devname)
84{
85
86 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
cbeeb0e5
AC
87 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0 &&
88 memcmp(content->uuid, uuid_zero, sizeof(int[4])) != 0) {
08fb91a3 89 if (devname)
e7b84f9d 90 pr_err("%s has wrong uuid.\n", devname);
08fb91a3
N
91 return 0;
92 }
93 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
86b77ddf 94 name_matches(content->name, ident->name, homehost, require_homehost)==0) {
08fb91a3 95 if (devname)
e7b84f9d 96 pr_err("%s has wrong name.\n", devname);
08fb91a3
N
97 return 0;
98 }
99 if (ident->super_minor != UnSet &&
100 ident->super_minor != content->array.md_minor) {
101 if (devname)
e7b84f9d
N
102 pr_err("%s has wrong super-minor.\n",
103 devname);
08fb91a3
N
104 return 0;
105 }
106 if (ident->level != UnSet &&
107 ident->level != content->array.level) {
108 if (devname)
e7b84f9d
N
109 pr_err("%s has wrong raid level.\n",
110 devname);
08fb91a3
N
111 return 0;
112 }
113 if (ident->raid_disks != UnSet &&
babb8dd4 114 content->array.raid_disks != 0 && /* metadata doesn't know how many to expect */
08fb91a3
N
115 ident->raid_disks!= content->array.raid_disks) {
116 if (devname)
e7b84f9d
N
117 pr_err("%s requires wrong number of drives.\n",
118 devname);
08fb91a3
N
119 return 0;
120 }
805d30b2
N
121 if (ident->member && ident->member[0]) {
122 /* content->text_version must match */
123 char *s = strchr(content->text_version+1, '/');
124 if (s == NULL) {
125 if (devname)
e7b84f9d
N
126 pr_err("%s is not a container and one is required.\n",
127 devname);
805d30b2
N
128 return 0;
129 } else if (strcmp(ident->member, s+1) != 0) {
130 if (devname)
e7b84f9d
N
131 pr_err("skipping wrong member %s is %s\n",
132 content->text_version, devname);
805d30b2
N
133 return 0;
134 }
135 }
08fb91a3
N
136 return 1;
137}
08fb91a3 138
95425a89
N
139static int select_devices(struct mddev_dev *devlist,
140 struct mddev_ident *ident,
141 struct supertype **stp,
142 struct mdinfo **contentp,
143 struct context *c,
144 int inargv, int auto_assem)
64c4757e 145{
a655e550 146 struct mddev_dev *tmpdev;
95425a89
N
147 int num_devs;
148 struct supertype *st = *stp;
98dbd966 149 struct mdinfo *content = NULL;
8cf2eb96 150 int report_mismatch = ((inargv && c->verbose >= 0) || c->verbose > 0);
cbeeb0e5 151 struct domainlist *domains = NULL;
0a6bff09 152 dev_t rdev;
60e1bc1a 153
5787fa49
NB
154 tmpdev = devlist; num_devs = 0;
155 while (tmpdev) {
da6b5ca9
NB
156 if (tmpdev->used)
157 tmpdev->used = 2;
158 else
159 num_devs++;
0431869c 160 tmpdev->disposition = 0;
5787fa49
NB
161 tmpdev = tmpdev->next;
162 }
5787fa49 163
811e6cbe
NB
164 /* first walk the list of devices to find a consistent set
165 * that match the criterea, if that is possible.
c30e5369 166 * We flag the ones we like with 'used'.
811e6cbe
NB
167 */
168 for (tmpdev = devlist;
169 tmpdev;
5083d66b 170 tmpdev = tmpdev ? tmpdev->next : NULL) {
811e6cbe 171 char *devname = tmpdev->devname;
64c4757e 172 int dfd;
518a60f3 173 struct supertype *tst;
4e8d9f0a 174 struct dev_policy *pol = NULL;
5083d66b 175 int found_container = 0;
52826846 176
95425a89
N
177 if (tmpdev->used > 1)
178 continue;
da6b5ca9 179
c39b2e63
N
180 if (ident->container) {
181 if (ident->container[0] == '/' &&
182 !same_dev(ident->container, devname)) {
183 if (report_mismatch)
184 pr_err("%s is not the container required (%s)\n",
185 devname, ident->container);
186 continue;
187 }
188 } else if (ident->devices &&
189 !match_oneof(ident->devices, devname)) {
190 /* Note that we ignore the "device=" identifier if a
191 * "container=" is given. Checking both is unnecessarily
192 * complicated.
193 */
8cf2eb96 194 if (report_mismatch)
e7b84f9d 195 pr_err("%s is not one of %s\n", devname, ident->devices);
52826846 196 continue;
56eedc1a 197 }
4b1ac34b 198
518a60f3
JS
199 tst = dup_super(st);
200
56d18859 201 dfd = dev_open(devname, O_RDONLY);
64c4757e 202 if (dfd < 0) {
8cf2eb96 203 if (report_mismatch)
e7b84f9d
N
204 pr_err("cannot open device %s: %s\n",
205 devname, strerror(errno));
da6b5ca9 206 tmpdev->used = 2;
0a6bff09 207 } else if (!fstat_is_blkdev(dfd, devname, &rdev)) {
da6b5ca9 208 tmpdev->used = 2;
5083d66b
N
209 } else if (must_be_container(dfd)) {
210 if (st) {
211 /* already found some components, this cannot
212 * be another one.
213 */
8cf2eb96 214 if (report_mismatch)
e7b84f9d
N
215 pr_err("%s is a container, but we are looking for components\n",
216 devname);
5083d66b
N
217 tmpdev->used = 2;
218 } if (!tst && (tst = super_by_fd(dfd, NULL)) == NULL) {
8cf2eb96 219 if (report_mismatch)
e7b84f9d
N
220 pr_err("not a recognisable container: %s\n",
221 devname);
5083d66b 222 tmpdev->used = 2;
d7be7d87
JS
223 } else if (!tst->ss->load_container ||
224 tst->ss->load_container(tst, dfd, NULL)) {
8cf2eb96 225 if (report_mismatch)
e7b84f9d
N
226 pr_err("no correct container type: %s\n",
227 devname);
5083d66b
N
228 tmpdev->used = 2;
229 } else if (auto_assem &&
0a6bff09
ZL
230 !conf_test_metadata(tst->ss->name,
231 (pol = devid_policy(rdev)),
4977146a 232 tst->ss->match_home(tst, c->homehost) == 1)) {
8cf2eb96 233 if (report_mismatch)
7a862a02 234 pr_err("%s has metadata type %s for which auto-assembly is disabled\n",
e7b84f9d 235 devname, tst->ss->name);
5083d66b
N
236 tmpdev->used = 2;
237 } else
238 found_container = 1;
52826846 239 } else {
5083d66b 240 if (!tst && (tst = guess_super(dfd)) == NULL) {
8cf2eb96 241 if (report_mismatch)
e7b84f9d
N
242 pr_err("no recogniseable superblock on %s\n",
243 devname);
5083d66b 244 tmpdev->used = 2;
83607604
N
245 } else if ((tst->ignore_hw_compat = 0),
246 tst->ss->load_super(tst, dfd,
247 report_mismatch ? devname : NULL)) {
8cf2eb96 248 if (report_mismatch)
e7b84f9d
N
249 pr_err("no RAID superblock on %s\n",
250 devname);
5083d66b
N
251 tmpdev->used = 2;
252 } else if (tst->ss->compare_super == NULL) {
8cf2eb96 253 if (report_mismatch)
e7b84f9d
N
254 pr_err("Cannot assemble %s metadata on %s\n",
255 tst->ss->name, devname);
5083d66b
N
256 tmpdev->used = 2;
257 } else if (auto_assem && st == NULL &&
0a6bff09
ZL
258 !conf_test_metadata(tst->ss->name,
259 (pol = devid_policy(rdev)),
4977146a 260 tst->ss->match_home(tst, c->homehost) == 1)) {
8cf2eb96 261 if (report_mismatch)
7a862a02 262 pr_err("%s has metadata type %s for which auto-assembly is disabled\n",
e7b84f9d 263 devname, tst->ss->name);
5083d66b
N
264 tmpdev->used = 2;
265 }
64c4757e 266 }
c06487ce 267 if (dfd >= 0) close(dfd);
d68ea4d7 268 if (tmpdev->used == 2) {
d4386799 269 if (auto_assem || !inargv)
d68ea4d7
N
270 /* Ignore unrecognised devices during auto-assembly */
271 goto loop;
272 if (ident->uuid_set || ident->name[0] ||
273 ident->super_minor != UnSet)
274 /* Ignore unrecognised device if looking for
275 * specific array */
276 goto loop;
d68ea4d7 277
e7b84f9d 278 pr_err("%s has no superblock - assembly aborted\n",
79f9f56d 279 devname);
d68ea4d7
N
280 if (st)
281 st->ss->free_super(st);
282 dev_policy_free(pol);
cbeeb0e5 283 domain_free(domains);
95425a89 284 return -1;
d68ea4d7 285 }
52826846 286
5083d66b 287 if (found_container) {
9008ed1c
N
288 /* tmpdev is a container. We need to be either
289 * looking for a member, or auto-assembling
290 */
56d18859
N
291 /* should be safe to try an exclusive open now, we
292 * have rejected anything that some other mdadm might
293 * be looking at
294 */
295 dfd = dev_open(devname, O_RDONLY | O_EXCL);
296 if (dfd < 0) {
8cf2eb96 297 if (report_mismatch)
e7b84f9d 298 pr_err("%s is busy - skipping\n", devname);
56d18859
N
299 goto loop;
300 }
301 close(dfd);
9008ed1c 302
c39b2e63
N
303 if (ident->container && ident->container[0] != '/') {
304 /* we have a uuid */
305 int uuid[4];
87477e6d 306
c39b2e63
N
307 content = *contentp;
308 tst->ss->getinfo_super(tst, content, NULL);
87477e6d 309
c39b2e63
N
310 if (!parse_uuid(ident->container, uuid) ||
311 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
312 if (report_mismatch)
313 pr_err("%s has wrong UUID to be required container\n",
314 devname);
315 goto loop;
9008ed1c
N
316 }
317 }
318 /* It is worth looking inside this container.
319 */
4977146a 320 if (c->verbose > 0)
e7b84f9d 321 pr_err("looking in container %s\n",
79f9f56d 322 devname);
1415fe4b 323
88cef9b3
N
324 for (content = tst->ss->container_content(tst, NULL);
325 content;
326 content = content->next) {
1415fe4b 327
88cef9b3 328 if (!ident_matches(ident, content, tst,
86b77ddf
N
329 c->homehost, c->require_homehost,
330 c->update,
8cf2eb96 331 report_mismatch ? devname : NULL))
88cef9b3
N
332 /* message already printed */;
333 else if (is_member_busy(content->text_version)) {
8cf2eb96 334 if (report_mismatch)
e7b84f9d 335 pr_err("member %s in %s is already assembled\n",
79f9f56d
N
336 content->text_version,
337 devname);
81219e70
LM
338 } else if (content->array.state & (1<<MD_SB_BLOCK_VOLUME)) {
339 /* do not assemble arrays with unsupported configurations */
e7b84f9d 340 pr_err("Cannot activate member %s in %s.\n",
79f9f56d
N
341 content->text_version,
342 devname);
88cef9b3
N
343 } else
344 break;
345 }
346 if (!content) {
f7ad3ccc 347 tmpdev->used = 2;
88cef9b3 348 goto loop; /* empty container */
fa031239 349 }
88cef9b3 350
9008ed1c 351 st = tst; tst = NULL;
4c1c3ad8 352 if (!auto_assem && inargv && tmpdev->next != NULL) {
7a862a02 353 pr_err("%s is a container, but is not only device given: confused and aborting\n",
79f9f56d 354 devname);
9008ed1c 355 st->ss->free_super(st);
4e8d9f0a 356 dev_policy_free(pol);
cbeeb0e5 357 domain_free(domains);
95425a89 358 return -1;
9008ed1c 359 }
4977146a 360 if (c->verbose > 0)
e7b84f9d 361 pr_err("found match on member %s in %s\n",
79f9f56d 362 content->text_version, devname);
bac0d92e 363
5083d66b
N
364 /* make sure we finished the loop */
365 tmpdev = NULL;
bac0d92e 366 goto loop;
5083d66b 367 } else {
95425a89 368 content = *contentp;
5083d66b
N
369 tst->ss->getinfo_super(tst, content, NULL);
370
371 if (!ident_matches(ident, content, tst,
86b77ddf
N
372 c->homehost, c->require_homehost,
373 c->update,
8cf2eb96 374 report_mismatch ? devname : NULL))
df37ffc0 375 goto loop;
66eb2c93 376
5141638c
N
377 if (auto_assem) {
378 /* Never auto-assemble things that conflict
379 * with mdadm.conf in some way
1d04e275 380 */
5141638c
N
381 struct mddev_ident *match;
382 int rv = 0;
383
384 match = conf_match(tst, content, devname,
385 report_mismatch ? c->verbose : -1,
386 &rv);
387 if (!match && rv == 2)
388 goto loop;
389 if (match && match->devname &&
390 strcasecmp(match->devname, "<ignore>") == 0) {
391 if (report_mismatch)
392 pr_err("%s is a member of an explicitly ignored array\n",
393 devname);
394 goto loop;
395 }
396 if (match && !ident_matches(match, content, tst,
86b77ddf
N
397 c->homehost, c->require_homehost,
398 c->update,
5141638c
N
399 report_mismatch ? devname : NULL))
400 /* Array exists in mdadm.conf but some
401 * details don't match, so reject it
402 */
403 goto loop;
404 }
66eb2c93 405
56d18859
N
406 /* should be safe to try an exclusive open now, we
407 * have rejected anything that some other mdadm might
408 * be looking at
409 */
410 dfd = dev_open(devname, O_RDONLY | O_EXCL);
411 if (dfd < 0) {
8cf2eb96 412 if (report_mismatch)
e7b84f9d 413 pr_err("%s is busy - skipping\n", devname);
56d18859
N
414 goto loop;
415 }
416 close(dfd);
417
5083d66b
N
418 if (st == NULL)
419 st = dup_super(tst);
420 if (st->minor_version == -1)
421 st->minor_version = tst->minor_version;
ed7fc6b4
AC
422
423 if (memcmp(content->uuid, uuid_zero,
424 sizeof(int[4])) == 0) {
425 /* this is a floating spare. It cannot define
426 * an array unless there are no more arrays of
427 * this type to be found. It can be included
428 * in an array of this type though.
429 */
430 tmpdev->used = 3;
431 goto loop;
432 }
433
5083d66b
N
434 if (st->ss != tst->ss ||
435 st->minor_version != tst->minor_version ||
436 st->ss->compare_super(st, tst) != 0) {
437 /* Some mismatch. If exactly one array matches this host,
438 * we can resolve on that one.
439 * Or, if we are auto assembling, we just ignore the second
440 * for now.
441 */
442 if (auto_assem)
443 goto loop;
4977146a
N
444 if (c->homehost) {
445 int first = st->ss->match_home(st, c->homehost);
446 int last = tst->ss->match_home(tst, c->homehost);
5083d66b
N
447 if (first != last &&
448 (first == 1 || last == 1)) {
449 /* We can do something */
450 if (first) {/* just ignore this one */
8cf2eb96 451 if (report_mismatch)
e7b84f9d 452 pr_err("%s misses out due to wrong homehost\n",
79f9f56d 453 devname);
5083d66b
N
454 goto loop;
455 } else { /* reject all those sofar */
456 struct mddev_dev *td;
8cf2eb96 457 if (report_mismatch)
e7b84f9d 458 pr_err("%s overrides previous devices due to good homehost\n",
79f9f56d 459 devname);
5083d66b
N
460 for (td=devlist; td != tmpdev; td=td->next)
461 if (td->used == 1)
462 td->used = 0;
463 tmpdev->used = 1;
464 goto loop;
465 }
83b6208e
NB
466 }
467 }
e7b84f9d 468 pr_err("superblock on %s doesn't match others - assembly aborted\n",
79f9f56d 469 devname);
5083d66b
N
470 tst->ss->free_super(tst);
471 st->ss->free_super(st);
472 dev_policy_free(pol);
cbeeb0e5 473 domain_free(domains);
95425a89 474 return -1;
83b6208e 475 }
5083d66b 476 tmpdev->used = 1;
64c4757e 477 }
df37ffc0 478 loop:
cbeeb0e5 479 /* Collect domain information from members only */
26b05aea
AC
480 if (tmpdev && tmpdev->used == 1) {
481 if (!pol)
0a6bff09 482 pol = devid_policy(rdev);
cbeeb0e5 483 domain_merge(&domains, pol, tst?tst->ss->name:NULL);
26b05aea 484 }
4e8d9f0a
N
485 dev_policy_free(pol);
486 pol = NULL;
3d2b16e7
NB
487 if (tst)
488 tst->ss->free_super(tst);
811e6cbe
NB
489 }
490
ed7fc6b4 491 /* Check if we found some imsm spares but no members */
3c7b4a25
CA
492 if ((auto_assem ||
493 (ident->uuid_set &&
494 memcmp(uuid_zero, ident->uuid,sizeof(uuid_zero)) == 0)) &&
495 (!st || !st->sb))
ed7fc6b4
AC
496 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
497 if (tmpdev->used != 3)
498 continue;
499 tmpdev->used = 1;
95425a89 500 content = *contentp;
ed7fc6b4
AC
501
502 if (!st->sb) {
503 /* we need sb from one of the spares */
504 int dfd = dev_open(tmpdev->devname, O_RDONLY);
505 if (dfd < 0 ||
506 st->ss->load_super(st, dfd, NULL))
507 tmpdev->used = 2;
508 if (dfd > 0)
509 close(dfd);
510 }
511 }
512
cbeeb0e5
AC
513 /* Now reject spares that don't match domains of identified members */
514 for (tmpdev = devlist; tmpdev; tmpdev = tmpdev->next) {
cbeeb0e5
AC
515 if (tmpdev->used != 3)
516 continue;
9e04ac1c 517 if (!stat_is_blkdev(tmpdev->devname, &rdev)) {
cbeeb0e5
AC
518 tmpdev->used = 2;
519 } else {
9e04ac1c 520 struct dev_policy *pol = devid_policy(rdev);
a5d10dce
N
521 int dt = domain_test(domains, pol, NULL);
522 if (inargv && dt != 0)
523 /* take this spare as domains match
524 * if there are any */
525 tmpdev->used = 1;
526 else if (!inargv && dt == 1)
527 /* device wasn't explicitly listed, so need
528 * explicit domain match - which we have */
cbeeb0e5
AC
529 tmpdev->used = 1;
530 else
531 /* if domains don't match mark as unused */
532 tmpdev->used = 0;
533 dev_policy_free(pol);
534 }
535 }
536 domain_free(domains);
95425a89
N
537 *stp = st;
538 if (st && st->sb && content == *contentp)
539 st->ss->getinfo_super(st, content, NULL);
540 *contentp = content;
541
542 return num_devs;
543}
544
2c355c22
N
545struct devs {
546 char *devname;
547 int uptodate; /* set once we decide that this device is as
548 * recent as everything else in the array.
549 */
550 int included; /* set if the device is already in the array
551 * due to a previous '-I'
552 */
553 struct mdinfo i;
554};
555
556static int load_devices(struct devs *devices, char *devmap,
df842e69 557 struct mddev_ident *ident, struct supertype **stp,
2c355c22
N
558 struct mddev_dev *devlist, struct context *c,
559 struct mdinfo *content,
560 int mdfd, char *mddev,
561 int *most_recentp, int *bestcntp, int **bestp,
562 int inargv)
563{
564 struct mddev_dev *tmpdev;
565 int devcnt = 0;
566 int nextspare = 0;
2c355c22 567 int bitmap_done = 0;
a792ece6 568 int most_recent = -1;
2c355c22
N
569 int bestcnt = 0;
570 int *best = *bestp;
df842e69 571 struct supertype *st = *stp;
2c355c22
N
572
573 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) {
574 char *devname = tmpdev->devname;
575 struct stat stb;
9ee314da 576 struct supertype *tst;
2c355c22 577 int i;
e9e6894d 578 int dfd;
2c355c22
N
579
580 if (tmpdev->used != 1)
581 continue;
582 /* looks like a good enough match to update the super block if needed */
2c355c22 583 if (c->update) {
2c355c22
N
584 /* prepare useful information in info structures */
585 struct stat stb2;
2c355c22
N
586 int err;
587 fstat(mdfd, &stb2);
588
c5f71c24
JS
589 if (strcmp(c->update, "uuid") == 0 && !ident->uuid_set)
590 random_uuid((__u8 *)ident->uuid);
591
e6e9dd3f
AP
592 if (strcmp(c->update, "ppl") == 0 &&
593 ident->bitmap_fd >= 0) {
594 pr_err("PPL is not compatible with bitmap\n");
595 return -1;
596 }
597
2c355c22
N
598 dfd = dev_open(devname,
599 tmpdev->disposition == 'I'
600 ? O_RDWR : (O_RDWR|O_EXCL));
601
602 tst = dup_super(st);
603 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
604 pr_err("cannot re-read metadata from %s - aborting\n",
605 devname);
606 if (dfd >= 0)
607 close(dfd);
608 close(mdfd);
609 free(devices);
610 free(devmap);
9ee314da
N
611 tst->ss->free_super(tst);
612 free(tst);
df842e69 613 *stp = st;
2c355c22
N
614 return -1;
615 }
616 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
617
618 memcpy(content->uuid, ident->uuid, 16);
619 strcpy(content->name, ident->name);
620 content->array.md_minor = minor(stb2.st_rdev);
621
622 if (strcmp(c->update, "byteorder") == 0)
623 err = 0;
0aa2f15b
GJ
624 else if (strcmp(c->update, "home-cluster") == 0) {
625 tst->cluster_name = c->homecluster;
d80f7aa9 626 err = tst->ss->write_bitmap(tst, dfd, NameUpdate);
7e6e839a
GJ
627 } else if (strcmp(c->update, "nodes") == 0) {
628 tst->nodes = c->nodes;
629 err = tst->ss->write_bitmap(tst, dfd, NodeNumUpdate);
d5ff855d
N
630 } else if (strcmp(c->update, "revert-reshape") == 0 &&
631 c->invalid_backup)
632 err = tst->ss->update_super(tst, content,
633 "revert-reshape-nobackup",
634 devname, c->verbose,
635 ident->uuid_set,
636 c->homehost);
637 else
2c355c22
N
638 err = tst->ss->update_super(tst, content, c->update,
639 devname, c->verbose,
640 ident->uuid_set,
641 c->homehost);
642 if (err < 0) {
afa368f4 643 if (err == -1)
7a862a02 644 pr_err("--update=%s not understood for %s metadata\n",
afa368f4 645 c->update, tst->ss->name);
2c355c22
N
646 tst->ss->free_super(tst);
647 free(tst);
648 close(mdfd);
649 close(dfd);
650 free(devices);
651 free(devmap);
df842e69 652 *stp = st;
2c355c22
N
653 return -1;
654 }
655 if (strcmp(c->update, "uuid")==0 &&
656 !ident->uuid_set) {
657 ident->uuid_set = 1;
658 memcpy(ident->uuid, content->uuid, 16);
659 }
660 if (tst->ss->store_super(tst, dfd))
661 pr_err("Could not re-write superblock on %s.\n",
662 devname);
2c355c22
N
663
664 if (strcmp(c->update, "uuid")==0 &&
665 ident->bitmap_fd >= 0 && !bitmap_done) {
666 if (bitmap_update_uuid(ident->bitmap_fd,
667 content->uuid,
668 tst->ss->swapuuid) != 0)
669 pr_err("Could not update uuid on external bitmap.\n");
670 else
671 bitmap_done = 1;
672 }
32141c17 673 } else {
e9e6894d
N
674 dfd = dev_open(devname,
675 tmpdev->disposition == 'I'
676 ? O_RDWR : (O_RDWR|O_EXCL));
9ee314da 677 tst = dup_super(st);
2c355c22
N
678
679 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
680 pr_err("cannot re-read metadata from %s - aborting\n",
681 devname);
682 if (dfd >= 0)
683 close(dfd);
684 close(mdfd);
685 free(devices);
686 free(devmap);
9ee314da
N
687 tst->ss->free_super(tst);
688 free(tst);
df842e69 689 *stp = st;
2c355c22
N
690 return -1;
691 }
692 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
2c355c22
N
693 }
694
e9e6894d
N
695 fstat(dfd, &stb);
696 close(dfd);
2c355c22
N
697
698 if (c->verbose > 0)
aacb2f81
N
699 pr_err("%s is identified as a member of %s, slot %d%s.\n",
700 devname, mddev, content->disk.raid_disk,
701 (content->disk.state & (1<<MD_DISK_REPLACEMENT)) ? " replacement":"");
2c355c22
N
702 devices[devcnt].devname = devname;
703 devices[devcnt].uptodate = 0;
704 devices[devcnt].included = (tmpdev->disposition == 'I');
705 devices[devcnt].i = *content;
706 devices[devcnt].i.disk.major = major(stb.st_rdev);
707 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
f80057ae 708
a792ece6
N
709 if (devices[devcnt].i.disk.state == 6) {
710 if (most_recent < 0 ||
711 devices[devcnt].i.events
56bbc588
N
712 > devices[most_recent].i.events) {
713 struct supertype *tmp = tst;
714 tst = st;
715 st = tmp;
2c355c22 716 most_recent = devcnt;
56bbc588 717 }
a792ece6 718 }
9ee314da
N
719 tst->ss->free_super(tst);
720 free(tst);
f80057ae 721
2c355c22
N
722 if (content->array.level == LEVEL_MULTIPATH)
723 /* with multipath, the raid_disk from the superblock is meaningless */
724 i = devcnt;
725 else
726 i = devices[devcnt].i.disk.raid_disk;
69a48116 727 if (i+1 == 0 || i == MD_DISK_ROLE_JOURNAL) {
aacb2f81
N
728 if (nextspare < content->array.raid_disks*2)
729 nextspare = content->array.raid_disks*2;
2c355c22
N
730 i = nextspare++;
731 } else {
aacb2f81
N
732 /* i is raid_disk - double it so there is room for
733 * replacements */
734 i *= 2;
735 if (devices[devcnt].i.disk.state & (1<<MD_DISK_REPLACEMENT))
736 i++;
737 if (i >= content->array.raid_disks*2 &&
2c355c22
N
738 i >= nextspare)
739 nextspare = i+1;
740 }
741 if (i < 10000) {
742 if (i >= bestcnt) {
743 int newbestcnt = i+10;
744 int *newbest = xmalloc(sizeof(int)*newbestcnt);
745 int c;
746 for (c=0; c < newbestcnt; c++)
747 if (c < bestcnt)
748 newbest[c] = best[c];
749 else
750 newbest[c] = -1;
751 if (best)free(best);
752 best = newbest;
753 bestcnt = newbestcnt;
754 }
755 if (best[i] >=0 &&
fc54fe7a
JS
756 devices[best[i]].i.events ==
757 devices[devcnt].i.events &&
d16a7494
JS
758 (devices[best[i]].i.disk.minor !=
759 devices[devcnt].i.disk.minor) &&
fc54fe7a
JS
760 st->ss == &super0 &&
761 content->array.level != LEVEL_MULTIPATH) {
2c355c22
N
762 /* two different devices with identical superblock.
763 * Could be a mis-detection caused by overlapping
764 * partitions. fail-safe.
765 */
7a862a02
N
766 pr_err("WARNING %s and %s appear to have very similar superblocks.\n"
767 " If they are really different, please --zero the superblock on one\n"
768 " If they are the same or overlap, please remove one from %s.\n",
2c355c22
N
769 devices[best[i]].devname, devname,
770 inargv ? "the list" :
771 "the\n DEVICE list in mdadm.conf"
772 );
773 close(mdfd);
774 free(devices);
775 free(devmap);
df842e69 776 *stp = st;
2c355c22
N
777 return -1;
778 }
d7be7d87
JS
779 if (best[i] == -1 || (devices[best[i]].i.events
780 < devices[devcnt].i.events))
2c355c22
N
781 best[i] = devcnt;
782 }
783 devcnt++;
784 }
a792ece6
N
785 if (most_recent >= 0)
786 *most_recentp = most_recent;
2c355c22
N
787 *bestcntp = bestcnt;
788 *bestp = best;
df842e69 789 *stp = st;
2c355c22
N
790 return devcnt;
791}
792
9f5470ce
N
793static int force_array(struct mdinfo *content,
794 struct devs *devices,
795 int *best, int bestcnt, char *avail,
796 int most_recent,
797 struct supertype *st,
798 struct context *c)
799{
800 int okcnt = 0;
801 while (!enough(content->array.level, content->array.raid_disks,
802 content->array.layout, 1,
fc54fe7a 803 avail) ||
9f5470ce
N
804 (content->reshape_active && content->delta_disks > 0 &&
805 !enough(content->array.level, (content->array.raid_disks
806 - content->delta_disks),
fc54fe7a 807 content->new_layout, 1, avail))) {
9f5470ce
N
808 /* Choose the newest best drive which is
809 * not up-to-date, update the superblock
810 * and add it.
811 */
812 int fd;
813 struct supertype *tst;
814 unsigned long long current_events;
815 int chosen_drive = -1;
816 int i;
817
f81a2b56
N
818 for (i = 0;
819 i < content->array.raid_disks * 2 && i < bestcnt;
820 i += 2) {
9f5470ce 821 int j = best[i];
87af7267
N
822 if (j < 0)
823 continue;
824 if (devices[j].uptodate)
825 continue;
826 if (devices[j].i.recovery_start != MaxSector) {
827 int delta;
828 if (!devices[j].i.reshape_active ||
829 devices[j].i.delta_disks <= 0)
830 continue;
831 /* When increasing number of devices, an
832 * added device also appears to be
833 * recovering. It is safe to include it
834 * as long as it won't be a source of
835 * data.
836 * For now, just allow for last data
837 * devices in RAID4 or last devices in RAID4/5/6.
838 */
839 delta = devices[j].i.delta_disks;
840 if (devices[j].i.array.level >= 4 &&
841 devices[j].i.array.level <= 6 &&
842 i/2 >= content->array.raid_disks - delta)
843 /* OK */;
844 else if (devices[j].i.array.level == 4 &&
845 i/2 >= content->array.raid_disks - delta - 1)
846 /* OK */;
847 else
848 continue;
62f1aee7
BC
849 } else if (devices[j].i.reshape_active !=
850 content->reshape_active ||
851 (devices[j].i.reshape_active &&
852 devices[j].i.reshape_progress !=
853 content->reshape_progress))
854 /* Here, it may be a source of data. If two
855 * devices claim different progresses, it
856 * means that reshape boundaries differ for
857 * their own devices. Kernel will only treat
858 * the first one as reshape progress and
859 * go on. It may cause disaster, so avoid it.
860 */
861 continue;
87af7267 862 if (chosen_drive < 0 ||
9f5470ce 863 devices[j].i.events
87af7267 864 > devices[chosen_drive].i.events)
9f5470ce
N
865 chosen_drive = j;
866 }
867 if (chosen_drive < 0)
868 break;
869 current_events = devices[chosen_drive].i.events;
870 add_another:
871 if (c->verbose >= 0)
872 pr_err("forcing event count in %s(%d) from %d upto %d\n",
79f9f56d
N
873 devices[chosen_drive].devname,
874 devices[chosen_drive].i.disk.raid_disk,
875 (int)(devices[chosen_drive].i.events),
876 (int)(devices[most_recent].i.events));
9f5470ce
N
877 fd = dev_open(devices[chosen_drive].devname,
878 devices[chosen_drive].included ? O_RDWR
879 : (O_RDWR|O_EXCL));
880 if (fd < 0) {
881 pr_err("Couldn't open %s for write - not updating\n",
79f9f56d 882 devices[chosen_drive].devname);
9f5470ce
N
883 devices[chosen_drive].i.events = 0;
884 continue;
885 }
886 tst = dup_super(st);
887 if (tst->ss->load_super(tst,fd, NULL)) {
888 close(fd);
889 pr_err("RAID superblock disappeared from %s - not updating.\n",
79f9f56d 890 devices[chosen_drive].devname);
9f5470ce
N
891 devices[chosen_drive].i.events = 0;
892 continue;
893 }
894 content->events = devices[most_recent].i.events;
895 tst->ss->update_super(tst, content, "force-one",
79f9f56d
N
896 devices[chosen_drive].devname, c->verbose,
897 0, NULL);
9f5470ce
N
898
899 if (tst->ss->store_super(tst, fd)) {
900 close(fd);
901 pr_err("Could not re-write superblock on %s\n",
79f9f56d 902 devices[chosen_drive].devname);
9f5470ce
N
903 devices[chosen_drive].i.events = 0;
904 tst->ss->free_super(tst);
905 continue;
906 }
907 close(fd);
908 devices[chosen_drive].i.events = devices[most_recent].i.events;
909 devices[chosen_drive].uptodate = 1;
910 avail[chosen_drive] = 1;
911 okcnt++;
912 tst->ss->free_super(tst);
9f5470ce
N
913 /* If there are any other drives of the same vintage,
914 * add them in as well. We can't lose and we might gain
915 */
f81a2b56
N
916 for (i = 0;
917 i < content->array.raid_disks * 2 && i < bestcnt ;
918 i += 2) {
9f5470ce
N
919 int j = best[i];
920 if (j >= 0 &&
921 !devices[j].uptodate &&
922 devices[j].i.recovery_start == MaxSector &&
62f1aee7
BC
923 devices[j].i.events == current_events &&
924 ((!devices[j].i.reshape_active &&
925 !content->reshape_active) ||
926 (devices[j].i.reshape_active ==
927 content->reshape_active &&
928 devices[j].i.reshape_progress ==
929 content->reshape_progress))) {
9f5470ce
N
930 chosen_drive = j;
931 goto add_another;
932 }
933 }
934 }
935 return okcnt;
936}
937
ddc1b11f
N
938static int start_array(int mdfd,
939 char *mddev,
940 struct mdinfo *content,
941 struct supertype *st,
942 struct mddev_ident *ident,
943 int *best, int bestcnt,
944 int chosen_drive,
945 struct devs *devices,
946 unsigned int okcnt,
947 unsigned int sparecnt,
948 unsigned int rebuilding_cnt,
69a48116 949 unsigned int journalcnt,
ddc1b11f
N
950 struct context *c,
951 int clean, char *avail,
8cde842b 952 int start_partial_ok,
71417de6 953 int err_ok,
051f3265 954 int was_forced
ddc1b11f
N
955 )
956{
957 int rv;
958 int i;
959 unsigned int req_cnt;
960
051f3265 961 if (content->journal_device_required && (content->journal_clean == 0)) {
69a48116
SL
962 if (!c->force) {
963 pr_err("Not safe to assemble with missing or stale journal device, consider --force.\n");
964 return 1;
965 }
966 pr_err("Journal is missing or stale, starting array read only.\n");
967 c->readonly = 1;
968 }
969
e97a7cd0
AP
970 if (content->consistency_policy == CONSISTENCY_POLICY_PPL)
971 clean = 1;
972
ddc1b11f 973 rv = set_array_info(mdfd, st, content);
71417de6 974 if (rv && !err_ok) {
ddc1b11f
N
975 pr_err("failed to set array info for %s: %s\n",
976 mddev, strerror(errno));
977 return 1;
978 }
979 if (ident->bitmap_fd >= 0) {
980 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
981 pr_err("SET_BITMAP_FILE failed.\n");
982 return 1;
983 }
984 } else if (ident->bitmap_file) {
985 /* From config file */
986 int bmfd = open(ident->bitmap_file, O_RDWR);
987 if (bmfd < 0) {
988 pr_err("Could not open bitmap file %s\n",
989 ident->bitmap_file);
990 return 1;
991 }
992 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
993 pr_err("Failed to set bitmapfile for %s\n", mddev);
994 close(bmfd);
995 return 1;
996 }
997 close(bmfd);
998 }
999
1000 /* First, add the raid disks, but add the chosen one last */
94b53b77 1001 for (i = 0; i <= bestcnt; i++) {
ddc1b11f
N
1002 int j;
1003 if (i < bestcnt) {
1004 j = best[i];
1005 if (j == chosen_drive)
1006 continue;
1007 } else
1008 j = chosen_drive;
1009
1010 if (j >= 0 && !devices[j].included) {
94b53b77
JS
1011 int dfd;
1012
1013 dfd = dev_open(devices[j].devname, O_RDWR|O_EXCL);
ddc1b11f
N
1014 if (dfd >= 0) {
1015 remove_partitions(dfd);
1016 close(dfd);
1017 }
1018 rv = add_disk(mdfd, st, content, &devices[j].i);
1019
1020 if (rv) {
7a862a02 1021 pr_err("failed to add %s to %s: %s\n",
94b53b77 1022 devices[j].devname, mddev,
ddc1b11f 1023 strerror(errno));
94b53b77
JS
1024 if (i < content->array.raid_disks * 2 ||
1025 i == bestcnt)
ddc1b11f
N
1026 okcnt--;
1027 else
1028 sparecnt--;
94b53b77 1029 } else if (c->verbose > 0) {
aacb2f81 1030 pr_err("added %s to %s as %d%s%s\n",
ddc1b11f
N
1031 devices[j].devname, mddev,
1032 devices[j].i.disk.raid_disk,
1033 devices[j].uptodate?"":
aacb2f81 1034 " (possibly out of date)",
94b53b77
JS
1035 (devices[j].i.disk.state &
1036 (1<<MD_DISK_REPLACEMENT)) ?
1037 " replacement":"");
1038 }
ddc1b11f
N
1039 } else if (j >= 0) {
1040 if (c->verbose > 0)
1041 pr_err("%s is already in %s as %d\n",
1042 devices[j].devname, mddev,
1043 devices[j].i.disk.raid_disk);
94b53b77
JS
1044 } else if (c->verbose > 0 &&
1045 i < content->array.raid_disks * 2 && (i & 1) == 0)
ddc1b11f 1046 pr_err("no uptodate device for slot %d of %s\n",
ee466574 1047 i/2, mddev);
ddc1b11f
N
1048 }
1049
1050 if (content->array.level == LEVEL_CONTAINER) {
1051 if (c->verbose >= 0) {
7a862a02 1052 pr_err("Container %s has been assembled with %d drive%s",
94b53b77
JS
1053 mddev, okcnt + sparecnt + journalcnt,
1054 okcnt + sparecnt + journalcnt == 1 ? "" : "s");
ddc1b11f
N
1055 if (okcnt < (unsigned)content->array.raid_disks)
1056 fprintf(stderr, " (out of %d)",
1057 content->array.raid_disks);
1058 fprintf(stderr, "\n");
1059 }
0c21b485
PB
1060
1061 if (st->ss->validate_container) {
1062 struct mdinfo *devices_list;
94b53b77 1063 struct mdinfo *info_devices;
0c21b485 1064 unsigned int count;
94b53b77 1065
0c21b485 1066 devices_list = NULL;
94b53b77
JS
1067 info_devices = xmalloc(sizeof(struct mdinfo) *
1068 (okcnt + sparecnt));
1069 for (count = 0; count < okcnt + sparecnt; count++) {
0c21b485
PB
1070 info_devices[count] = devices[count].i;
1071 info_devices[count].next = devices_list;
1072 devices_list = &info_devices[count];
1073 }
1074 if (st->ss->validate_container(devices_list))
1075 pr_err("Mismatch detected!\n");
1076 free(info_devices);
1077 }
1078
ddc1b11f
N
1079 st->ss->free_super(st);
1080 sysfs_uevent(content, "change");
284546ef
N
1081 if (err_ok && okcnt < (unsigned)content->array.raid_disks)
1082 /* Was partial, is still partial, so signal an error
1083 * to ensure we don't retry */
1084 return 1;
ddc1b11f
N
1085 return 0;
1086 }
1087
1088 /* Get number of in-sync devices according to the superblock.
1089 * We must have this number to start the array without -s or -R
1090 */
1091 req_cnt = content->array.working_disks;
1092
1093 if (c->runstop == 1 ||
1094 (c->runstop <= 0 &&
94b53b77
JS
1095 (enough(content->array.level, content->array.raid_disks,
1096 content->array.layout, clean, avail) &&
1097 (okcnt + rebuilding_cnt >= req_cnt || start_partial_ok)))) {
ddc1b11f
N
1098 /* This array is good-to-go.
1099 * If a reshape is in progress then we might need to
1100 * continue monitoring it. In that case we start
1101 * it read-only and let the grow code make it writable.
1102 */
1103 int rv;
94b53b77 1104
ddc1b11f
N
1105 if (content->reshape_active &&
1106 !(content->reshape_active & RESHAPE_NO_BACKUP) &&
1107 content->delta_disks <= 0) {
be7c26b4
N
1108 if (!c->backup_file) {
1109 pr_err("%s: Need a backup file to complete reshape of this array.\n",
1110 mddev);
1111 pr_err("Please provided one with \"--backup-file=...\"\n");
1112 if (c->update &&
1113 strcmp(c->update, "revert-reshape") == 0)
1114 pr_err("(Don't specify --update=revert-reshape again, that part succeeded.)\n");
1115 return 1;
1116 }
ddc1b11f
N
1117 rv = sysfs_set_str(content, NULL,
1118 "array_state", "readonly");
1119 if (rv == 0)
1120 rv = Grow_continue(mdfd, st, content,
06e293d0 1121 c->backup_file, 0,
ddc1b11f
N
1122 c->freeze_reshape);
1123 } else if (c->readonly &&
94b53b77
JS
1124 sysfs_attribute_available(content, NULL,
1125 "array_state")) {
ddc1b11f
N
1126 rv = sysfs_set_str(content, NULL,
1127 "array_state", "readonly");
1128 } else
ddc1b11f 1129 rv = ioctl(mdfd, RUN_ARRAY, NULL);
8832342d 1130 reopen_mddev(mdfd); /* drop O_EXCL */
ddc1b11f
N
1131 if (rv == 0) {
1132 if (c->verbose >= 0) {
1133 pr_err("%s has been started with %d drive%s",
1134 mddev, okcnt, okcnt==1?"":"s");
1135 if (okcnt < (unsigned)content->array.raid_disks)
94b53b77
JS
1136 fprintf(stderr, " (out of %d)",
1137 content->array.raid_disks);
ddc1b11f 1138 if (rebuilding_cnt)
94b53b77
JS
1139 fprintf(stderr, "%s %d rebuilding",
1140 sparecnt?",":" and",
1141 rebuilding_cnt);
ddc1b11f 1142 if (sparecnt)
94b53b77
JS
1143 fprintf(stderr, " and %d spare%s",
1144 sparecnt,
1145 sparecnt == 1 ? "" : "s");
051f3265 1146 if (content->journal_clean)
94b53b77
JS
1147 fprintf(stderr, " and %d journal",
1148 journalcnt);
ddc1b11f
N
1149 fprintf(stderr, ".\n");
1150 }
1151 if (content->reshape_active &&
1152 content->array.level >= 4 &&
1153 content->array.level <= 6) {
1154 /* might need to increase the size
1155 * of the stripe cache - default is 256
1156 */
56fcbcbb 1157 int chunk_size = content->array.chunk_size;
94b53b77 1158
56fcbcbb
N
1159 if (content->reshape_active &&
1160 content->new_chunk > chunk_size)
1161 chunk_size = content->new_chunk;
29a312f2 1162 if (256 < 4 * ((chunk_size+4065)/4096)) {
94b53b77
JS
1163 struct mdinfo *sra;
1164
1165 sra = sysfs_read(mdfd, NULL, 0);
ddc1b11f
N
1166 if (sra)
1167 sysfs_set_num(sra, NULL,
1168 "stripe_cache_size",
29a312f2 1169 (4 * chunk_size / 4096) + 1);
ddc1b11f
N
1170 sysfs_free(sra);
1171 }
1172 }
1173 if (okcnt < (unsigned)content->array.raid_disks) {
1174 /* If any devices did not get added
1175 * because the kernel rejected them based
1176 * on event count, try adding them
1177 * again providing the action policy is
1178 * 're-add' or greater. The bitmap
1179 * might allow them to be included, or
1180 * they will become spares.
1181 */
1182 for (i = 0; i < bestcnt; i++) {
1183 int j = best[i];
1184 if (j >= 0 && !devices[j].uptodate) {
1185 if (!disk_action_allows(&devices[j].i, st->ss->name, act_re_add))
1186 continue;
1187 rv = add_disk(mdfd, st, content,
1188 &devices[j].i);
1189 if (rv == 0 && c->verbose >= 0)
1190 pr_err("%s has been re-added.\n",
1191 devices[j].devname);
1192 }
1193 }
1194 }
8cde842b
N
1195 if (content->array.level == 6 &&
1196 okcnt + 1 == (unsigned)content->array.raid_disks &&
1197 was_forced) {
94b53b77
JS
1198 struct mdinfo *sra;
1199
1200 sra = sysfs_read(mdfd, NULL, 0);
8cde842b
N
1201 if (sra)
1202 sysfs_set_str(sra, NULL,
1203 "sync_action", "repair");
1204 sysfs_free(sra);
1205 }
ddc1b11f
N
1206 return 0;
1207 }
94b53b77 1208 pr_err("failed to RUN_ARRAY %s: %s\n", mddev, strerror(errno));
ddc1b11f
N
1209
1210 if (!enough(content->array.level, content->array.raid_disks,
1211 content->array.layout, 1, avail))
7a862a02 1212 pr_err("Not enough devices to start the array.\n");
ddc1b11f
N
1213 else if (!enough(content->array.level,
1214 content->array.raid_disks,
94b53b77 1215 content->array.layout, clean, avail))
7a862a02 1216 pr_err("Not enough devices to start the array while not clean - consider --force.\n");
ddc1b11f
N
1217
1218 return 1;
1219 }
1220 if (c->runstop == -1) {
1221 pr_err("%s assembled from %d drive%s",
94b53b77 1222 mddev, okcnt, okcnt == 1 ? "" : "s");
ddc1b11f 1223 if (okcnt != (unsigned)content->array.raid_disks)
94b53b77
JS
1224 fprintf(stderr, " (out of %d)",
1225 content->array.raid_disks);
ddc1b11f
N
1226 fprintf(stderr, ", but not started.\n");
1227 return 2;
1228 }
1229 if (c->verbose >= -1) {
94b53b77
JS
1230 pr_err("%s assembled from %d drive%s",
1231 mddev, okcnt, okcnt == 1 ? "" : "s");
ddc1b11f 1232 if (rebuilding_cnt)
94b53b77
JS
1233 fprintf(stderr, "%s %d rebuilding",
1234 sparecnt ? "," : " and", rebuilding_cnt);
ddc1b11f 1235 if (sparecnt)
94b53b77
JS
1236 fprintf(stderr, " and %d spare%s", sparecnt,
1237 sparecnt == 1 ? "" : "s");
ddc1b11f
N
1238 if (!enough(content->array.level, content->array.raid_disks,
1239 content->array.layout, 1, avail))
1240 fprintf(stderr, " - not enough to start the array.\n");
1241 else if (!enough(content->array.level,
1242 content->array.raid_disks,
94b53b77 1243 content->array.layout, clean, avail))
7a862a02 1244 fprintf(stderr, " - not enough to start the array while not clean - consider --force.\n");
ddc1b11f
N
1245 else {
1246 if (req_cnt == (unsigned)content->array.raid_disks)
94b53b77
JS
1247 fprintf(stderr, " - need all %d to start it",
1248 req_cnt);
ddc1b11f 1249 else
aacb2f81 1250 fprintf(stderr, " - need %d to start", req_cnt);
ddc1b11f
N
1251 fprintf(stderr, " (use --run to insist).\n");
1252 }
1253 }
1254 return 1;
1255}
1256
95425a89
N
1257int Assemble(struct supertype *st, char *mddev,
1258 struct mddev_ident *ident,
1259 struct mddev_dev *devlist,
1260 struct context *c)
1261{
1262 /*
1263 * The task of Assemble is to find a collection of
1264 * devices that should (according to their superblocks)
1265 * form an array, and to give this collection to the MD driver.
1266 * In Linux-2.4 and later, this involves submitting a
1267 * SET_ARRAY_INFO ioctl with no arg - to prepare
1268 * the array - and then submit a number of
1269 * ADD_NEW_DISK ioctls to add disks into
1270 * the array. Finally RUN_ARRAY might
1271 * be submitted to start the array.
1272 *
1273 * Much of the work of Assemble is in finding and/or
1274 * checking the disks to make sure they look right.
1275 *
1276 * If mddev is not set, then scan must be set and we
1277 * read through the config file for dev+uuid mapping
1278 * We recurse, setting mddev, for each device that
1279 * - isn't running
1280 * - has a valid uuid (or any uuid if !uuidset)
1281 *
1282 * If mddev is set, we try to determine state of md.
1283 * check version - must be at least 0.90.0
1284 * check kernel version. must be at least 2.4.
1285 * If not, we can possibly fall back on START_ARRAY
1286 * Try to GET_ARRAY_INFO.
1287 * If possible, give up
1288 * If not, try to STOP_ARRAY just to make sure
1289 *
1290 * If !uuidset and scan, look in conf-file for uuid
1291 * If not found, give up
1292 * If !devlist and scan and uuidset, get list of devs from conf-file
1293 *
1294 * For each device:
1295 * Check superblock - discard if bad
1296 * Check uuid (set if we don't have one) - discard if no match
1297 * Check superblock similarity if we have a superblock - discard if different
1298 * Record events, devicenum
1299 * This should give us a list of devices for the array
1300 * We should collect the most recent event number
1301 *
1302 * Count disks with recent enough event count
1303 * While force && !enough disks
1304 * Choose newest rejected disks, update event count
1305 * mark clean and rewrite superblock
1306 * If recent kernel:
1307 * SET_ARRAY_INFO
1308 * foreach device with recent events : ADD_NEW_DISK
1309 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
1310 * If old kernel:
1311 * Check the device numbers in superblock are right
1312 * update superblock if any changes
1313 * START_ARRAY
1314 *
1315 */
57908e9e
GJ
1316 int rv = -1;
1317 int mdfd = -1;
95425a89
N
1318 int clean;
1319 int auto_assem = (mddev == NULL && !ident->uuid_set &&
fc54fe7a
JS
1320 ident->super_minor == UnSet && ident->name[0] == 0 &&
1321 (ident->container == NULL || ident->member == NULL));
57908e9e 1322 struct devs *devices = NULL;
95425a89
N
1323 char *devmap;
1324 int *best = NULL; /* indexed by raid_disk */
1325 int bestcnt = 0;
2c355c22 1326 int devcnt;
69a48116 1327 unsigned int okcnt, sparecnt, rebuilding_cnt, replcnt, journalcnt;
dbfbca43 1328 int journal_clean = 0;
95425a89 1329 int i;
8cde842b 1330 int was_forced = 0;
95425a89
N
1331 int most_recent = 0;
1332 int chosen_drive;
1333 int change = 0;
1334 int inargv = 0;
95425a89
N
1335 int start_partial_ok = (c->runstop >= 0) &&
1336 (c->force || devlist==NULL || auto_assem);
1337 int num_devs;
1338 struct mddev_dev *tmpdev;
1339 struct mdinfo info;
1340 struct mdinfo *content = NULL;
1341 struct mdinfo *pre_exist = NULL;
1342 char *avail;
95425a89
N
1343 char *name = NULL;
1344 char chosen_name[1024];
1345 struct map_ent *map = NULL;
1346 struct map_ent *mp;
76781701
GJ
1347 int locked = 0;
1348 struct mdp_superblock_1 *sb;
1349 bitmap_super_t *bms;
95425a89 1350
95425a89
N
1351 /*
1352 * If any subdevs are listed, then any that don't
1353 * match ident are discarded. Remainder must all match and
1354 * become the array.
1355 * If no subdevs, then we scan all devices in the config file, but
1356 * there must be something in the identity
1357 */
1358
1359 if (!devlist &&
1360 ident->uuid_set == 0 &&
1361 (ident->super_minor < 0 || ident->super_minor == UnSet) &&
1362 ident->name[0] == 0 &&
1363 (ident->container == NULL || ident->member == NULL) &&
1364 ident->devices == NULL) {
1365 pr_err("No identity information available for %s - cannot assemble.\n",
1366 mddev ? mddev : "further assembly");
1367 return 1;
1368 }
1369
1370 if (devlist == NULL)
1371 devlist = conf_get_devs();
1372 else if (mddev)
1373 inargv = 1;
1374
79f9f56d 1375try_again:
95425a89
N
1376 /* We come back here when doing auto-assembly and attempting some
1377 * set of devices failed. Those are now marked as ->used==2 and
1378 * we ignore them and try again
1379 */
76781701
GJ
1380 if (locked)
1381 /*
1382 * if come back try_again is called, then need to unlock first,
1383 * and lock again since the metadate is re-read.
1384 */
1385 cluster_release_dlmlock();
95425a89
N
1386 if (!st && ident->st)
1387 st = ident->st;
1388 if (c->verbose>0)
1389 pr_err("looking for devices for %s\n",
1390 mddev ? mddev : "further assembly");
1391
1392 content = &info;
9f2e55a4 1393 if (st && c->force)
cb8f6859 1394 st->ignore_hw_compat = 1;
95425a89
N
1395 num_devs = select_devices(devlist, ident, &st, &content, c,
1396 inargv, auto_assem);
1397 if (num_devs < 0)
1398 return 1;
1011e834 1399
98dbd966 1400 if (!st || !st->sb || !content)
c30e5369
N
1401 return 2;
1402
76781701
GJ
1403 sb = st->sb;
1404 bms = (bitmap_super_t*)(((char*)sb) + 4096);
1405 if (sb && bms->version == BITMAP_MAJOR_CLUSTERED) {
1406 locked = cluster_get_dlmlock();
1407 if (locked != 1)
1408 return 1;
1409 }
1410
0431869c
N
1411 /* We have a full set of devices - we now need to find the
1412 * array device.
1413 * However there is a risk that we are racing with "mdadm -I"
1414 * and the array is already partially assembled - we will have
1415 * rejected any devices already in this address.
1416 * So we take a lock on the map file - to prevent further races -
1417 * and look for the uuid in there. If found and the array is
1418 * active, we abort. If found and the array is not active
1419 * we commit to that md device and add all the contained devices
1420 * to our list. We flag them so that we don't try to re-add,
1421 * but can remove if they turn out to not be wanted.
1422 */
1423 if (map_lock(&map))
1424 pr_err("failed to get exclusive lock on mapfile - continue anyway...\n");
ec6db5ba
N
1425 if (c->update && strcmp(c->update,"uuid") == 0)
1426 mp = NULL;
1427 else
1428 mp = map_by_uuid(&map, content->uuid);
0431869c
N
1429 if (mp) {
1430 struct mdinfo *dv;
1431 /* array already exists. */
4dd2df09 1432 pre_exist = sysfs_read(-1, mp->devnm, GET_LEVEL|GET_DEVS);
0431869c
N
1433 if (pre_exist->array.level != UnSet) {
1434 pr_err("Found some drive for an array that is already active: %s\n",
1435 mp->path);
1436 pr_err("giving up.\n");
57908e9e 1437 goto out;
0431869c
N
1438 }
1439 for (dv = pre_exist->devs; dv; dv = dv->next) {
1440 /* We want to add this device to our list,
1441 * but it could already be there if "mdadm -I"
1442 * started *after* we checked for O_EXCL.
1443 * If we add it to the top of the list
1444 * it will be preferred over later copies.
1445 */
1446 struct mddev_dev *newdev;
1447 char *devname = map_dev(dv->disk.major,
1448 dv->disk.minor,
1449 0);
1450 if (!devname)
1451 continue;
1452 newdev = xmalloc(sizeof(*newdev));
1453 newdev->devname = devname;
1454 newdev->disposition = 'I';
1455 newdev->used = 1;
1456 newdev->next = devlist;
1457 devlist = newdev;
1458 num_devs++;
1459 }
1460 strcpy(chosen_name, mp->path);
1461 if (c->verbose > 0 || mddev == NULL ||
1462 strcmp(mddev, chosen_name) != 0)
1463 pr_err("Merging with already-assembled %s\n",
1464 chosen_name);
4dd2df09 1465 mdfd = open_dev_excl(mp->devnm);
0431869c
N
1466 } else {
1467 int trustworthy = FOREIGN;
1468 name = content->name;
1469 switch (st->ss->match_home(st, c->homehost)
1470 ?: st->ss->match_home(st, "any")) {
1471 case 1:
1472 trustworthy = LOCAL;
1473 name = strchr(content->name, ':');
1474 if (name)
1475 name++;
1476 else
1477 name = content->name;
1478 break;
1479 }
1480 if (!auto_assem)
1481 /* If the array is listed in mdadm.conf or on
1482 * command line, then we trust the name
1483 * even if the array doesn't look local
1484 */
1485 trustworthy = LOCAL;
ac2ecf55 1486
0431869c
N
1487 if (name[0] == 0 &&
1488 content->array.level == LEVEL_CONTAINER) {
1489 name = content->text_version;
1490 trustworthy = METADATA;
1491 }
0ac91628 1492
0431869c
N
1493 if (name[0] && trustworthy != LOCAL &&
1494 ! c->require_homehost &&
1495 conf_name_is_free(name))
1496 trustworthy = LOCAL;
0ac91628 1497
0431869c
N
1498 if (trustworthy == LOCAL &&
1499 strchr(name, ':'))
1500 /* Ignore 'host:' prefix of name */
1501 name = strchr(name, ':')+1;
7cdc0872 1502
0431869c 1503 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
cd6cbb08 1504 chosen_name, 0);
0431869c 1505 }
c30e5369
N
1506 if (mdfd < 0) {
1507 st->ss->free_super(st);
c30e5369 1508 if (auto_assem)
60e1bc1a 1509 goto try_again;
57908e9e 1510 goto out;
c30e5369 1511 }
a04d5763 1512 mddev = chosen_name;
0431869c 1513 if (pre_exist == NULL) {
4dd2df09 1514 if (mddev_busy(fd2devnm(mdfd))) {
0431869c
N
1515 pr_err("%s already active, cannot restart it!\n",
1516 mddev);
1517 for (tmpdev = devlist ;
1518 tmpdev && tmpdev->used != 1;
1519 tmpdev = tmpdev->next)
1520 ;
1521 if (tmpdev && auto_assem)
1522 pr_err("%s needed for %s...\n",
1523 mddev, tmpdev->devname);
1524 close(mdfd);
1525 mdfd = -3;
1526 st->ss->free_super(st);
1527 if (auto_assem)
1528 goto try_again;
57908e9e 1529 goto out;
0431869c
N
1530 }
1531 /* just incase it was started but has no content */
1532 ioctl(mdfd, STOP_ARRAY, NULL);
8a46fe84
NB
1533 }
1534
9008ed1c
N
1535 if (content != &info) {
1536 /* This is a member of a container. Try starting the array. */
588bebfc 1537 int err;
11b6d91d 1538 err = assemble_container_content(st, mdfd, content, c,
9ca39acb 1539 chosen_name, NULL);
588bebfc 1540 close(mdfd);
76781701
GJ
1541 if (locked == 1)
1542 cluster_release_dlmlock();
588bebfc 1543 return err;
9008ed1c 1544 }
32141c17 1545
811e6cbe 1546 /* Ok, no bad inconsistancy, we can try updating etc */
503975b9
N
1547 devices = xcalloc(num_devs, sizeof(*devices));
1548 devmap = xcalloc(num_devs, content->array.raid_disks);
df842e69 1549 devcnt = load_devices(devices, devmap, ident, &st, devlist,
2c355c22
N
1550 c, content, mdfd, mddev,
1551 &most_recent, &bestcnt, &best, inargv);
76781701 1552 if (devcnt < 0) {
57908e9e
GJ
1553 mdfd = -3;
1554 goto out;
76781701 1555 }
4b1ac34b 1556
64c4757e 1557 if (devcnt == 0) {
e7b84f9d 1558 pr_err("no devices found for %s\n",
79f9f56d 1559 mddev);
3d2b16e7
NB
1560 if (st)
1561 st->ss->free_super(st);
02e7c5b7 1562 free(devmap);
57908e9e 1563 goto out;
64c4757e 1564 }
4b1ac34b 1565
4977146a 1566 if (c->update && strcmp(c->update, "byteorder")==0)
3d2b16e7
NB
1567 st->minor_version = 90;
1568
a5d85af7 1569 st->ss->getinfo_super(st, content, NULL);
98dbd966 1570 clean = content->array.state & 1;
4b1ac34b 1571
64c4757e
NB
1572 /* now we have some devices that might be suitable.
1573 * I wonder how many
1574 */
503975b9 1575 avail = xcalloc(content->array.raid_disks, 1);
64c4757e 1576 okcnt = 0;
aacb2f81 1577 replcnt = 0;
52826846 1578 sparecnt=0;
69a48116 1579 journalcnt=0;
1ff98339 1580 rebuilding_cnt=0;
f21e18ca 1581 for (i=0; i< bestcnt; i++) {
64c4757e 1582 int j = best[i];
ee04451c
NB
1583 int event_margin = 1; /* always allow a difference of '1'
1584 * like the kernel does
1585 */
64c4757e 1586 if (j < 0) continue;
d013a55e
NB
1587 /* note: we ignore error flags in multipath arrays
1588 * as they don't make sense
1589 */
69a48116
SL
1590 if (content->array.level != LEVEL_MULTIPATH) {
1591 if (devices[j].i.disk.state & (1<<MD_DISK_JOURNAL)) {
051f3265 1592 if (content->journal_device_required)
69a48116
SL
1593 journalcnt++;
1594 else /* unexpected journal, mark as faulty */
1595 devices[j].i.disk.state |= (1<<MD_DISK_FAULTY);
1596 } else if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
213ee40b 1597 if (!(devices[j].i.disk.state
ed7fc6b4
AC
1598 & (1<<MD_DISK_FAULTY))) {
1599 devices[j].uptodate = 1;
aa88f531 1600 sparecnt++;
ed7fc6b4 1601 }
d013a55e 1602 continue;
aa88f531 1603 }
69a48116 1604 }
de5a472e 1605 /* If this device thinks that 'most_recent' has failed, then
02e7c5b7
N
1606 * we must reject this device.
1607 */
eb20ecf1 1608 if (j != most_recent && !c->force &&
02e7c5b7
N
1609 content->array.raid_disks > 0 &&
1610 devices[most_recent].i.disk.raid_disk >= 0 &&
1611 devmap[j * content->array.raid_disks + devices[most_recent].i.disk.raid_disk] == 0) {
4977146a 1612 if (c->verbose > -1)
e7b84f9d 1613 pr_err("ignoring %s as it reports %s as failed\n",
79f9f56d 1614 devices[j].devname, devices[most_recent].devname);
02e7c5b7
N
1615 best[i] = -1;
1616 continue;
1617 }
f80057ae
N
1618 /* Require event counter to be same as, or just less than,
1619 * most recent. If it is bigger, it must be a stray spare and
1620 * should be ignored.
1621 */
213ee40b 1622 if (devices[j].i.events+event_margin >=
f80057ae
N
1623 devices[most_recent].i.events &&
1624 devices[j].i.events <=
1625 devices[most_recent].i.events
1626 ) {
64c4757e 1627 devices[j].uptodate = 1;
69a48116 1628 if (devices[j].i.disk.state & (1<<MD_DISK_JOURNAL))
dbfbca43 1629 journal_clean = 1;
aacb2f81 1630 if (i < content->array.raid_disks * 2) {
dcc4210f
DW
1631 if (devices[j].i.recovery_start == MaxSector ||
1632 (content->reshape_active &&
d316dba7 1633 i >= content->array.raid_disks - content->delta_disks)) {
aacb2f81
N
1634 if (!avail[i/2]) {
1635 okcnt++;
1636 avail[i/2]=1;
1637 } else
1638 replcnt++;
1ff98339
N
1639 } else
1640 rebuilding_cnt++;
69a48116 1641 } else if (devices[j].i.disk.raid_disk != MD_DISK_ROLE_JOURNAL)
52826846 1642 sparecnt++;
64c4757e
NB
1643 }
1644 }
02e7c5b7 1645 free(devmap);
8cde842b
N
1646 if (c->force) {
1647 int force_ok = force_array(content, devices, best, bestcnt,
1648 avail, most_recent, st, c);
1649 okcnt += force_ok;
1650 if (force_ok)
1651 was_forced = 1;
1652 }
52826846
NB
1653 /* Now we want to look at the superblock which the kernel will base things on
1654 * and compare the devices that we think are working with the devices that the
1655 * superblock thinks are working.
1656 * If there are differences and --force is given, then update this chosen
1657 * superblock.
1658 */
cd29a5c8 1659 chosen_drive = -1;
3da92f27 1660 st->ss->free_super(st);
f81a2b56 1661 for (i=0; chosen_drive < 0 && i<bestcnt; i+=2) {
52826846
NB
1662 int j = best[i];
1663 int fd;
4b1ac34b 1664
52826846
NB
1665 if (j<0)
1666 continue;
1667 if (!devices[j].uptodate)
1668 continue;
a28232b8
N
1669 if (devices[j].i.events < devices[most_recent].i.events)
1670 continue;
52826846 1671 chosen_drive = j;
0431869c
N
1672 if ((fd=dev_open(devices[j].devname,
1673 devices[j].included ? O_RDONLY
1674 : (O_RDONLY|O_EXCL)))< 0) {
e7b84f9d 1675 pr_err("Cannot open %s: %s\n",
79f9f56d 1676 devices[j].devname, strerror(errno));
57908e9e 1677 goto out;
52826846 1678 }
3da92f27 1679 if (st->ss->load_super(st,fd, NULL)) {
52826846 1680 close(fd);
e7b84f9d 1681 pr_err("RAID superblock has disappeared from %s\n",
79f9f56d 1682 devices[j].devname);
57908e9e 1683 goto out;
52826846
NB
1684 }
1685 close(fd);
1686 }
3da92f27 1687 if (st->sb == NULL) {
e7b84f9d 1688 pr_err("No suitable drives found for %s\n", mddev);
57908e9e 1689 goto out;
4b1ac34b 1690 }
a5d85af7 1691 st->ss->getinfo_super(st, content, NULL);
dae13137
JS
1692 if (sysfs_init(content, mdfd, NULL)) {
1693 pr_err("Unable to initialize sysfs\n");
57908e9e 1694 goto out;
dae13137 1695 }
32141c17 1696
dbfbca43
SL
1697 /* after reload context, store journal_clean in context */
1698 content->journal_clean = journal_clean;
56eedc1a 1699 for (i=0; i<bestcnt; i++) {
52826846 1700 int j = best[i];
98c6faba 1701 unsigned int desired_state;
11a3e71d 1702
31b6f0cd
AR
1703 if (j < 0)
1704 continue;
69a48116
SL
1705 if (devices[j].i.disk.raid_disk == MD_DISK_ROLE_JOURNAL)
1706 desired_state = (1<<MD_DISK_JOURNAL);
1707 else if (i >= content->array.raid_disks * 2)
11a3e71d 1708 desired_state = 0;
aacb2f81
N
1709 else if (i & 1)
1710 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_REPLACEMENT);
1711 else
1712 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
11a3e71d 1713
52826846
NB
1714 if (!devices[j].uptodate)
1715 continue;
4b1ac34b 1716
213ee40b 1717 devices[j].i.disk.state = desired_state;
4e9a6ff7
N
1718 if (!(devices[j].i.array.state & 1))
1719 clean = 0;
213ee40b
NB
1720
1721 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
4977146a
N
1722 c->verbose, 0, NULL)) {
1723 if (c->force) {
1724 if (c->verbose >= 0)
e7b84f9d 1725 pr_err("clearing FAULTY flag for device %d in %s for %s\n",
79f9f56d 1726 j, mddev, devices[j].devname);
4b1ac34b 1727 change = 1;
52826846 1728 } else {
4977146a 1729 if (c->verbose >= -1)
e7b84f9d 1730 pr_err("device %d in %s has wrong state in superblock, but %s seems ok\n",
79f9f56d 1731 i, mddev, devices[j].devname);
52826846
NB
1732 }
1733 }
4b1ac34b 1734#if 0
213ee40b 1735 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
e7b84f9d 1736 pr_err("devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
79f9f56d 1737 i, mddev);
52826846 1738 }
4b1ac34b 1739#endif
52826846 1740 }
4977146a 1741 if (c->force && !clean &&
98dbd966
DW
1742 !enough(content->array.level, content->array.raid_disks,
1743 content->array.layout, clean,
de5a472e 1744 avail)) {
98dbd966 1745 change += st->ss->update_super(st, content, "force-array",
6f4dbdc4 1746 devices[chosen_drive].devname, c->verbose,
67a8c82d 1747 0, NULL);
8cde842b 1748 was_forced = 1;
583315d9 1749 clean = 1;
d013a55e 1750 }
52826846 1751
4b1ac34b 1752 if (change) {
52826846 1753 int fd;
0431869c
N
1754 fd = dev_open(devices[chosen_drive].devname,
1755 devices[chosen_drive].included ?
1756 O_RDWR : (O_RDWR|O_EXCL));
52826846 1757 if (fd < 0) {
e7b84f9d 1758 pr_err("Could not open %s for write - cannot Assemble array.\n",
79f9f56d 1759 devices[chosen_drive].devname);
57908e9e 1760 goto out;
52826846 1761 }
3da92f27 1762 if (st->ss->store_super(st, fd)) {
52826846 1763 close(fd);
e7b84f9d 1764 pr_err("Could not re-write superblock on %s\n",
79f9f56d 1765 devices[chosen_drive].devname);
57908e9e 1766 goto out;
52826846 1767 }
4977146a 1768 if (c->verbose >= 0)
e7b84f9d 1769 pr_err("Marking array %s as 'clean'\n",
79f9f56d 1770 mddev);
52826846 1771 close(fd);
52826846
NB
1772 }
1773
353632d9
NB
1774 /* If we are in the middle of a reshape we may need to restore saved data
1775 * that was moved aside due to the reshape overwriting live data
1776 * The code of doing this lives in Grow.c
1777 */
5e88ab2e
N
1778 if (content->reshape_active &&
1779 !(content->reshape_active & RESHAPE_NO_BACKUP)) {
353632d9 1780 int err = 0;
503975b9 1781 int *fdlist = xmalloc(sizeof(int)* bestcnt);
4977146a 1782 if (c->verbose > 0)
c34fef77 1783 pr_err("%s has an active reshape - checking if critical section needs to be restored\n",
79f9f56d 1784 chosen_name);
54ded86f
N
1785 if (!c->backup_file)
1786 c->backup_file = locate_backup(content->sys_name);
a7dec3fd 1787 enable_fds(bestcnt/2);
5e9fd96f
N
1788 for (i = 0; i < bestcnt/2; i++) {
1789 int j = best[i*2];
353632d9 1790 if (j >= 0) {
0431869c
N
1791 fdlist[i] = dev_open(devices[j].devname,
1792 devices[j].included
1793 ? O_RDWR : (O_RDWR|O_EXCL));
353632d9 1794 if (fdlist[i] < 0) {
e7b84f9d 1795 pr_err("Could not open %s for write - cannot Assemble array.\n",
79f9f56d 1796 devices[j].devname);
353632d9
NB
1797 err = 1;
1798 break;
1799 }
1800 } else
1801 fdlist[i] = -1;
1802 }
87f26d14 1803 if (!err) {
ba53ea59
AK
1804 if (st->ss->external && st->ss->recover_backup)
1805 err = st->ss->recover_backup(st, content);
1806 else
5e9fd96f 1807 err = Grow_restart(st, content, fdlist, bestcnt/2,
4977146a
N
1808 c->backup_file, c->verbose > 0);
1809 if (err && c->invalid_backup) {
1810 if (c->verbose > 0)
7a862a02 1811 pr_err("continuing without restoring backup\n");
87f26d14
N
1812 err = 0;
1813 }
1814 }
353632d9
NB
1815 while (i>0) {
1816 i--;
1817 if (fdlist[i]>=0) close(fdlist[i]);
1818 }
56dcaa6b 1819 free(fdlist);
353632d9 1820 if (err) {
e7b84f9d 1821 pr_err("Failed to restore critical section for reshape, sorry.\n");
4977146a 1822 if (c->backup_file == NULL)
e7b84f9d 1823 cont_err("Possibly you needed to specify the --backup-file\n");
57908e9e 1824 goto out;
353632d9
NB
1825 }
1826 }
aa88f531 1827
64c4757e 1828 /* Almost ready to actually *do* something */
6f4dbdc4
N
1829 /* First, fill in the map, so that udev can find our name
1830 * as soon as we become active.
1831 */
afa368f4
N
1832 if (c->update && strcmp(c->update, "metadata")==0) {
1833 content->array.major_version = 1;
1834 content->array.minor_version = 0;
1835 strcpy(content->text_version, "1.0");
1836 }
1837
4dd2df09 1838 map_update(&map, fd2devnm(mdfd), content->text_version,
6f4dbdc4
N
1839 content->uuid, chosen_name);
1840
1841 rv = start_array(mdfd, mddev, content,
1842 st, ident, best, bestcnt,
1843 chosen_drive, devices, okcnt, sparecnt,
69a48116 1844 rebuilding_cnt, journalcnt,
6f4dbdc4 1845 c,
71417de6
N
1846 clean, avail, start_partial_ok,
1847 pre_exist != NULL,
051f3265 1848 was_forced);
6f4dbdc4
N
1849 if (rv == 1 && !pre_exist)
1850 ioctl(mdfd, STOP_ARRAY, NULL);
6f4dbdc4
N
1851 free(devices);
1852 map_unlock(&map);
57908e9e 1853out:
6f4dbdc4
N
1854 if (rv == 0) {
1855 wait_for(chosen_name, mdfd);
b20c8a50 1856 close(mdfd);
6f4dbdc4
N
1857 if (auto_assem) {
1858 int usecs = 1;
1859 /* There is a nasty race with 'mdadm --monitor'.
1860 * If it opens this device before we close it,
1861 * it gets an incomplete open on which IO
1862 * doesn't work and the capacity is
1863 * wrong.
1864 * If we reopen (to check for layered devices)
1865 * before --monitor closes, we loose.
1866 *
1867 * So: wait upto 1 second for there to be
1868 * a non-zero capacity.
1869 */
1870 while (usecs < 1000) {
1871 mdfd = open(mddev, O_RDONLY);
1872 if (mdfd >= 0) {
1873 unsigned long long size;
1874 if (get_dev_size(mdfd, NULL, &size) &&
1875 size > 0)
1876 break;
1877 close(mdfd);
589395d6 1878 }
6f4dbdc4
N
1879 usleep(usecs);
1880 usecs <<= 1;
dab6685f 1881 }
aa88f531 1882 }
57908e9e 1883 } else if (mdfd >= 0)
b20c8a50
N
1884 close(mdfd);
1885
6f4dbdc4 1886 /* '2' means 'OK, but not started yet' */
76781701
GJ
1887 if (locked == 1)
1888 cluster_release_dlmlock();
57908e9e
GJ
1889 if (rv == -1) {
1890 free(devices);
1891 return 1;
1892 }
6f4dbdc4 1893 return rv == 2 ? 0 : rv;
64c4757e 1894}
6234c63c 1895
6234c63c 1896int assemble_container_content(struct supertype *st, int mdfd,
11b6d91d 1897 struct mdinfo *content, struct context *c,
9ca39acb 1898 char *chosen_name, int *result)
6234c63c 1899{
02b70e83 1900 struct mdinfo *dev, *sra, *dev2;
6234c63c 1901 int working = 0, preexist = 0;
882029c8 1902 int expansion = 0;
7af03341 1903 int old_raid_disks;
4aecb54a 1904 int start_reshape;
0a8e239c 1905 char *avail;
c1736844 1906 int err;
6234c63c 1907
dae13137
JS
1908 if (sysfs_init(content, mdfd, NULL)) {
1909 pr_err("Unable to initialize sysfs\n");
1910 return 1;
1911 }
6234c63c 1912
02b70e83 1913 sra = sysfs_read(mdfd, NULL, GET_VERSION|GET_DEVS);
0ea8f5b1
N
1914 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0) {
1915 if (content->array.major_version == -1 &&
1916 content->array.minor_version == -2 &&
11b6d91d 1917 c->readonly &&
0ea8f5b1
N
1918 content->text_version[0] == '/')
1919 content->text_version[0] = '-';
b6e60be6 1920 if (sysfs_set_array(content, 9003) != 0) {
30e19bf8 1921 sysfs_free(sra);
6234c63c 1922 return 1;
22472ee1 1923 }
0ea8f5b1 1924 }
588bebfc 1925
4aecb54a
AK
1926 /* There are two types of reshape: container wide or sub-array specific
1927 * Check if metadata requests blocking container wide reshapes
1928 */
1929 start_reshape = (content->reshape_active &&
79f9f56d
N
1930 !((content->reshape_active == CONTAINER_RESHAPE) &&
1931 (content->array.state & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE))));
4aecb54a
AK
1932
1933 /* Block subarray here if it is under reshape now
1934 * Do not allow for any changes in this array
1935 */
1936 if (st->ss->external && content->recovery_blocked && start_reshape)
b8063f07
AK
1937 block_subarray(content);
1938
02b70e83
N
1939 for (dev2 = sra->devs; dev2; dev2 = dev2->next) {
1940 for (dev = content->devs; dev; dev = dev->next)
1941 if (dev2->disk.major == dev->disk.major &&
1942 dev2->disk.minor == dev->disk.minor)
1943 break;
1944 if (dev)
1945 continue;
1946 /* Don't want this one any more */
1947 if (sysfs_set_str(sra, dev2, "slot", "none") < 0 &&
1948 errno == EBUSY) {
1949 pr_err("Cannot remove old device %s: not updating %s\n", dev2->sys_name, sra->sys_name);
1950 sysfs_free(sra);
1951 return 1;
1952 }
1953 sysfs_set_str(sra, dev2, "state", "remove");
1954 }
7af03341 1955 old_raid_disks = content->array.raid_disks - content->delta_disks;
c1736844
N
1956 avail = xcalloc(content->array.raid_disks, 1);
1957 for (dev = content->devs; dev; dev = dev->next) {
1958 if (dev->disk.raid_disk >= 0)
1959 avail[dev->disk.raid_disk] = 1;
14032016 1960 if (sysfs_add_disk(content, dev, 1) == 0) {
7af03341 1961 if (dev->disk.raid_disk >= old_raid_disks &&
14032016
AK
1962 content->reshape_active)
1963 expansion++;
1964 else
1965 working++;
1966 } else if (errno == EEXIST)
6234c63c 1967 preexist++;
c1736844 1968 }
02b70e83 1969 sysfs_free(sra);
c1736844
N
1970 if (working + expansion == 0 && c->runstop <= 0) {
1971 free(avail);
7cb2aa33 1972 return 1;/* Nothing new, don't try to start */
c1736844 1973 }
0c79d8ca 1974 map_update(NULL, fd2devnm(mdfd), content->text_version,
8b4e5ea9
N
1975 content->uuid, chosen_name);
1976
2432ce9b
AP
1977 if (content->consistency_policy == CONSISTENCY_POLICY_PPL &&
1978 st->ss->validate_ppl) {
1979 content->array.state |= 1;
1980 err = 0;
1981
1982 for (dev = content->devs; dev; dev = dev->next) {
1983 int dfd;
1984 char *devpath;
1985 int ret;
1986
1987 ret = st->ss->validate_ppl(st, content, dev);
1988 if (ret == 0)
1989 continue;
1990
1991 if (ret < 0) {
1992 err = 1;
1993 break;
1994 }
1995
1996 if (!c->force) {
1997 pr_err("%s contains invalid PPL - consider --force or --update-subarray with --update=no-ppl\n",
1998 chosen_name);
1999 content->array.state &= ~1;
2000 avail[dev->disk.raid_disk] = 0;
2001 break;
2002 }
2003
2004 /* have --force - overwrite the invalid ppl */
2005 devpath = map_dev(dev->disk.major, dev->disk.minor, 0);
2006 dfd = dev_open(devpath, O_RDWR);
2007 if (dfd < 0) {
2008 pr_err("Failed to open %s\n", devpath);
2009 err = 1;
2010 break;
2011 }
2012
2013 err = st->ss->write_init_ppl(st, content, dfd);
2014 close(dfd);
2015
2016 if (err)
2017 break;
2018 }
2019
2020 if (err) {
2021 free(avail);
2022 return err;
2023 }
2024 }
2025
c1736844
N
2026 if (enough(content->array.level, content->array.raid_disks,
2027 content->array.layout, content->array.state & 1, avail) == 0) {
9ca39acb
N
2028 if (c->export && result)
2029 *result |= INCR_NO;
2030 else if (c->verbose >= 0) {
c1736844
N
2031 pr_err("%s assembled with %d device%s",
2032 chosen_name, preexist + working,
2033 preexist + working == 1 ? "":"s");
6234c63c
DW
2034 if (preexist)
2035 fprintf(stderr, " (%d new)", working);
c1736844 2036 fprintf(stderr, " but not started\n");
6234c63c 2037 }
c1736844
N
2038 free(avail);
2039 return 1;
2040 }
2041 free(avail);
2042
2043 if (c->runstop <= 0 &&
2044 (working + preexist + expansion) <
2045 content->array.working_disks) {
9ca39acb
N
2046 if (c->export && result)
2047 *result |= INCR_UNSAFE;
2048 else if (c->verbose >= 0) {
e7b84f9d
N
2049 pr_err("%s assembled with %d device%s",
2050 chosen_name, preexist + working,
2051 preexist + working == 1 ? "":"s");
88716263
N
2052 if (preexist)
2053 fprintf(stderr, " (%d new)", working);
c1736844 2054 fprintf(stderr, " but not safe to start\n");
88716263 2055 }
7cb2aa33
N
2056 return 1;
2057 }
c1736844
N
2058
2059
2060 if (start_reshape) {
2061 int spare = content->array.raid_disks + expansion;
2062 if (restore_backup(st, content,
2063 working,
54ded86f 2064 spare, &c->backup_file, c->verbose) == 1)
c1736844
N
2065 return 1;
2066
2067 err = sysfs_set_str(content, NULL,
2068 "array_state", "readonly");
2069 if (err)
2070 return 1;
2071
2072 if (st->ss->external) {
2073 if (!mdmon_running(st->container_devnm))
2074 start_mdmon(st->container_devnm);
2075 ping_monitor(st->container_devnm);
2076 if (mdmon_running(st->container_devnm) &&
2077 st->update_tail == NULL)
2078 st->update_tail = &st->updates;
2079 }
2080
2081 err = Grow_continue(mdfd, st, content, c->backup_file,
06e293d0 2082 0, c->freeze_reshape);
c1736844
N
2083 } else switch(content->array.level) {
2084 case LEVEL_LINEAR:
2085 case LEVEL_MULTIPATH:
2086 case 0:
2087 err = sysfs_set_str(content, NULL, "array_state",
2088 c->readonly ? "readonly" : "active");
2089 break;
2090 default:
2091 err = sysfs_set_str(content, NULL, "array_state",
2092 "readonly");
2093 /* start mdmon if needed. */
2094 if (!err) {
2095 if (!mdmon_running(st->container_devnm))
2096 start_mdmon(st->container_devnm);
2097 ping_monitor(st->container_devnm);
2098 }
2099 break;
2100 }
2101 if (!err)
2102 sysfs_set_safemode(content, content->safe_mode_delay);
2103
2104 /* Block subarray here if it is not reshaped now
2105 * It has be blocked a little later to allow mdmon to switch in
2106 * in to R/W state
2107 */
2108 if (st->ss->external && content->recovery_blocked &&
2109 !start_reshape)
2110 block_subarray(content);
2111
9ca39acb
N
2112 if (c->export && result) {
2113 if (err)
2114 *result |= INCR_NO;
2115 else
2116 *result |= INCR_YES;
2117 } else if (c->verbose >= 0) {
c1736844
N
2118 if (err)
2119 pr_err("array %s now has %d device%s",
2120 chosen_name, working + preexist,
2121 working + preexist == 1 ? "":"s");
2122 else
2123 pr_err("Started %s with %d device%s",
2124 chosen_name, working + preexist,
2125 working + preexist == 1 ? "":"s");
2126 if (preexist)
2127 fprintf(stderr, " (%d new)", working);
2128 if (expansion)
2129 fprintf(stderr, " ( + %d for expansion)",
2130 expansion);
2131 fprintf(stderr, "\n");
2132 }
2133 if (!err)
2134 wait_for(chosen_name, mdfd);
2135 return err;
2136 /* FIXME should have an O_EXCL and wait for read-auto */
6234c63c 2137}