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