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