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