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