]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Assemble.c
Assemble: error-check ->load_super
[thirdparty/mdadm.git] / Assemble.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 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)
29 {
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
32 */
33 char fnd[33];
34
35 strncpy(fnd, found, 32);
36 fnd[32] = 0;
37 if (strcmp(found, required)==0)
38 return 1;
39 if (homehost) {
40 int l = strlen(homehost);
41 if (l < 32 && fnd[l] == ':' &&
42 strcmp(fnd+l+1, required)==0)
43 return 1;
44 }
45 return 0;
46 }
47
48 static int is_member_busy(char *metadata_version)
49 {
50 /* check if the given member array is active */
51 struct mdstat_ent *mdstat = mdstat_read(1, 0);
52 struct mdstat_ent *ent;
53 int busy = 0;
54
55 for (ent = mdstat; ent; ent = ent->next) {
56 if (ent->metadata_version == NULL)
57 continue;
58 if (strncmp(ent->metadata_version, "external:", 9) != 0)
59 continue;
60 if (!is_subarray(&ent->metadata_version[9]))
61 continue;
62 /* Skip first char - it can be '/' or '-' */
63 if (strcmp(&ent->metadata_version[10], metadata_version+1) == 0) {
64 busy = 1;
65 break;
66 }
67 }
68 free_mdstat(mdstat);
69
70 return busy;
71 }
72
73 int Assemble(struct supertype *st, char *mddev,
74 mddev_ident_t ident,
75 mddev_dev_t devlist, char *backup_file,
76 int readonly, int runstop,
77 char *update, char *homehost, int require_homehost,
78 int verbose, int force)
79 {
80 /*
81 * The task of Assemble is to find a collection of
82 * devices that should (according to their superblocks)
83 * form an array, and to give this collection to the MD driver.
84 * In Linux-2.4 and later, this involves submitting a
85 * SET_ARRAY_INFO ioctl with no arg - to prepare
86 * the array - and then submit a number of
87 * ADD_NEW_DISK ioctls to add disks into
88 * the array. Finally RUN_ARRAY might
89 * be submitted to start the array.
90 *
91 * Much of the work of Assemble is in finding and/or
92 * checking the disks to make sure they look right.
93 *
94 * If mddev is not set, then scan must be set and we
95 * read through the config file for dev+uuid mapping
96 * We recurse, setting mddev, for each device that
97 * - isn't running
98 * - has a valid uuid (or any uuid if !uuidset)
99 *
100 * If mddev is set, we try to determine state of md.
101 * check version - must be at least 0.90.0
102 * check kernel version. must be at least 2.4.
103 * If not, we can possibly fall back on START_ARRAY
104 * Try to GET_ARRAY_INFO.
105 * If possible, give up
106 * If not, try to STOP_ARRAY just to make sure
107 *
108 * If !uuidset and scan, look in conf-file for uuid
109 * If not found, give up
110 * If !devlist and scan and uuidset, get list of devs from conf-file
111 *
112 * For each device:
113 * Check superblock - discard if bad
114 * Check uuid (set if we don't have one) - discard if no match
115 * Check superblock similarity if we have a superblock - discard if different
116 * Record events, devicenum
117 * This should give us a list of devices for the array
118 * We should collect the most recent event number
119 *
120 * Count disks with recent enough event count
121 * While force && !enough disks
122 * Choose newest rejected disks, update event count
123 * mark clean and rewrite superblock
124 * If recent kernel:
125 * SET_ARRAY_INFO
126 * foreach device with recent events : ADD_NEW_DISK
127 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
128 * If old kernel:
129 * Check the device numbers in superblock are right
130 * update superblock if any changes
131 * START_ARRAY
132 *
133 */
134 int mdfd;
135 int clean;
136 int auto_assem = (mddev == NULL && !ident->uuid_set &&
137 ident->super_minor == UnSet && ident->name[0] == 0
138 && (ident->container == NULL || ident->member == NULL));
139 int old_linux = 0;
140 int vers = vers; /* Keep gcc quite - it really is initialised */
141 struct {
142 char *devname;
143 int uptodate; /* set once we decide that this device is as
144 * recent as everything else in the array.
145 */
146 struct mdinfo i;
147 } *devices;
148 int *best = NULL; /* indexed by raid_disk */
149 unsigned int bestcnt = 0;
150 int devcnt = 0;
151 unsigned int okcnt, sparecnt;
152 unsigned int req_cnt;
153 unsigned int i;
154 int most_recent = 0;
155 int chosen_drive;
156 int change = 0;
157 int inargv = 0;
158 int report_missmatch;
159 int bitmap_done;
160 int start_partial_ok = (runstop >= 0) &&
161 (force || devlist==NULL || auto_assem);
162 unsigned int num_devs;
163 mddev_dev_t tmpdev;
164 struct mdinfo info;
165 struct mdinfo *content = NULL;
166 char *avail;
167 int nextspare = 0;
168 char *name = NULL;
169 int trustworthy;
170 char chosen_name[1024];
171
172 if (get_linux_version() < 2004000)
173 old_linux = 1;
174
175 /*
176 * If any subdevs are listed, then any that don't
177 * match ident are discarded. Remainder must all match and
178 * become the array.
179 * If no subdevs, then we scan all devices in the config file, but
180 * there must be something in the identity
181 */
182
183 if (!devlist &&
184 ident->uuid_set == 0 &&
185 ident->super_minor < 0 &&
186 ident->name[0] == 0 &&
187 (ident->container == NULL || ident->member == NULL) &&
188 ident->devices == NULL) {
189 fprintf(stderr, Name ": No identity information available for %s - cannot assemble.\n",
190 mddev ? mddev : "further assembly");
191 return 1;
192 }
193
194 if (devlist == NULL)
195 devlist = conf_get_devs();
196 else if (mddev)
197 inargv = 1;
198
199 report_missmatch = ((inargv && verbose >= 0) || verbose > 0);
200 try_again:
201 /* We come back here when doing auto-assembly and attempting some
202 * set of devices failed. Those are now marked as ->used==2 and
203 * we ignore them and try again
204 */
205
206 tmpdev = devlist; num_devs = 0;
207 while (tmpdev) {
208 if (tmpdev->used)
209 tmpdev->used = 2;
210 else
211 num_devs++;
212 tmpdev = tmpdev->next;
213 }
214 devices = malloc(num_devs * sizeof(*devices));
215
216 if (!st && ident->st) st = ident->st;
217
218 if (verbose>0)
219 fprintf(stderr, Name ": looking for devices for %s\n",
220 mddev ? mddev : "further assembly");
221
222 /* first walk the list of devices to find a consistent set
223 * that match the criterea, if that is possible.
224 * We flag the ones we like with 'used'.
225 */
226 for (tmpdev = devlist;
227 tmpdev;
228 tmpdev = tmpdev->next) {
229 char *devname = tmpdev->devname;
230 int dfd;
231 struct stat stb;
232 struct supertype *tst = dup_super(st);
233
234 if (tmpdev->used > 1) continue;
235
236 if (ident->devices &&
237 !match_oneof(ident->devices, devname)) {
238 if (report_missmatch)
239 fprintf(stderr, Name ": %s is not one of %s\n", devname, ident->devices);
240 continue;
241 }
242
243 dfd = dev_open(devname, O_RDONLY|O_EXCL);
244 if (dfd < 0) {
245 if (report_missmatch)
246 fprintf(stderr, Name ": cannot open device %s: %s\n",
247 devname, strerror(errno));
248 tmpdev->used = 2;
249 } else if (fstat(dfd, &stb)< 0) {
250 /* Impossible! */
251 fprintf(stderr, Name ": fstat failed for %s: %s\n",
252 devname, strerror(errno));
253 tmpdev->used = 2;
254 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
255 fprintf(stderr, Name ": %s is not a block device.\n",
256 devname);
257 tmpdev->used = 2;
258 } else if (!tst && (tst = guess_super(dfd)) == NULL) {
259 if (report_missmatch)
260 fprintf(stderr, Name ": no recogniseable superblock on %s\n",
261 devname);
262 tmpdev->used = 2;
263 } else if (auto_assem && st == NULL &&
264 !conf_test_metadata(tst->ss->name)) {
265 if (report_missmatch)
266 fprintf(stderr, Name ": %s has metadata type %s for which "
267 "auto-assembly is disabled\n",
268 devname, tst->ss->name);
269 tmpdev->used = 2;
270 } else if (tst->ss->load_super(tst,dfd, NULL)) {
271 if (report_missmatch)
272 fprintf( stderr, Name ": no RAID superblock on %s\n",
273 devname);
274 } else {
275 content = &info;
276 memset(content, 0, sizeof(*content));
277 tst->ss->getinfo_super(tst, content);
278 }
279 if (dfd >= 0) close(dfd);
280
281 if (tst && tst->sb && tst->ss->container_content
282 && tst->loaded_container) {
283 /* tmpdev is a container. We need to be either
284 * looking for a member, or auto-assembling
285 */
286 if (st) {
287 /* already found some components, this cannot
288 * be another one.
289 */
290 if (report_missmatch)
291 fprintf(stderr, Name ": %s is a container, but we are looking for components\n",
292 devname);
293 goto loop;
294 }
295
296 if (ident->container) {
297 if (ident->container[0] == '/' &&
298 !same_dev(ident->container, devname)) {
299 if (report_missmatch)
300 fprintf(stderr, Name ": %s is not the container required (%s)\n",
301 devname, ident->container);
302 goto loop;
303 }
304 if (ident->container[0] != '/') {
305 /* we have a uuid */
306 int uuid[4];
307 if (!parse_uuid(ident->container, uuid) ||
308 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
309 if (report_missmatch)
310 fprintf(stderr, Name ": %s has wrong UUID to be required container\n",
311 devname);
312 goto loop;
313 }
314 }
315 }
316 /* It is worth looking inside this container.
317 */
318 if (verbose > 0)
319 fprintf(stderr, Name ": looking in container %s\n",
320 devname);
321 next_member:
322 if (tmpdev->content)
323 content = tmpdev->content;
324 else
325 content = tst->ss->container_content(tst);
326 if (!content)
327 goto loop; /* empty container */
328
329 tmpdev->content = content->next;
330 if (tmpdev->content == NULL)
331 tmpdev->used = 2;
332
333 } else if (ident->container || ident->member) {
334 /* No chance of this matching if we don't have
335 * a container */
336 if (report_missmatch)
337 fprintf(stderr, Name "%s is not a container, and one is required.\n",
338 devname);
339 goto loop;
340 }
341
342 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
343 (!tst || !tst->sb ||
344 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0)) {
345 if (report_missmatch)
346 fprintf(stderr, Name ": %s has wrong uuid.\n",
347 devname);
348 goto loop;
349 }
350 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
351 (!tst || !tst->sb ||
352 name_matches(content->name, ident->name, homehost)==0)) {
353 if (report_missmatch)
354 fprintf(stderr, Name ": %s has wrong name.\n",
355 devname);
356 goto loop;
357 }
358 if (ident->super_minor != UnSet &&
359 (!tst || !tst->sb ||
360 ident->super_minor != content->array.md_minor)) {
361 if (report_missmatch)
362 fprintf(stderr, Name ": %s has wrong super-minor.\n",
363 devname);
364 goto loop;
365 }
366 if (ident->level != UnSet &&
367 (!tst || !tst->sb ||
368 ident->level != content->array.level)) {
369 if (report_missmatch)
370 fprintf(stderr, Name ": %s has wrong raid level.\n",
371 devname);
372 goto loop;
373 }
374 if (ident->raid_disks != UnSet &&
375 (!tst || !tst->sb ||
376 ident->raid_disks!= content->array.raid_disks)) {
377 if (report_missmatch)
378 fprintf(stderr, Name ": %s requires wrong number of drives.\n",
379 devname);
380 goto loop;
381 }
382 if (auto_assem) {
383 if (tst == NULL || tst->sb == NULL)
384 continue;
385 }
386 /* If we are this far, then we are nearly commited to this device.
387 * If the super_block doesn't exist, or doesn't match others,
388 * then we probably cannot continue
389 * However if one of the arrays is for the homehost, and
390 * the other isn't that can disambiguate.
391 */
392
393 if (!tst || !tst->sb) {
394 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
395 devname);
396 if (st)
397 st->ss->free_super(st);
398 return 1;
399 }
400
401 if (tst && tst->sb && tst->ss->container_content
402 && tst->loaded_container) {
403 /* we have the one container we need, don't keep
404 * looking. If the chosen member is active, skip.
405 */
406 if (is_member_busy(content->text_version)) {
407 if (report_missmatch)
408 fprintf(stderr, Name ": member %s in %s is already assembled\n",
409 content->text_version,
410 devname);
411 skip:
412 if (tmpdev->content)
413 goto next_member;
414 tst->ss->free_super(tst);
415 tst = NULL;
416 content = NULL;
417 if (auto_assem)
418 goto loop;
419 return 1;
420 }
421 if (ident->member && ident->member[0]) {
422 char *s = strchr(content->text_version+1, '/');
423 if (s == NULL) {
424 fprintf(stderr, Name ": badly formatted version: %s\n",
425 content->text_version);
426 goto skip;
427 }
428 if (strcmp(ident->member, s+1) != 0) {
429 if (report_missmatch)
430 fprintf(stderr,
431 Name ": skipping wrong member %s\n",
432 content->text_version);
433 goto skip;
434 }
435 }
436 st = tst; tst = NULL;
437 if (!auto_assem && tmpdev->next != NULL) {
438 fprintf(stderr, Name ": %s is a container, but is not "
439 "only device given: confused and aborting\n",
440 devname);
441 st->ss->free_super(st);
442 return 1;
443 }
444 if (verbose > 0)
445 fprintf(stderr, Name ": found match on member %s in %s\n",
446 content->text_version, devname);
447 break;
448 }
449 if (st == NULL)
450 st = dup_super(tst);
451 if (st->minor_version == -1)
452 st->minor_version = tst->minor_version;
453 if (st->ss != tst->ss ||
454 st->minor_version != tst->minor_version ||
455 st->ss->compare_super(st, tst) != 0) {
456 /* Some mismatch. If exactly one array matches this host,
457 * we can resolve on that one.
458 * Or, if we are auto assembling, we just ignore the second
459 * for now.
460 */
461 if (auto_assem)
462 goto loop;
463 if (homehost) {
464 int first = st->ss->match_home(st, homehost);
465 int last = tst->ss->match_home(tst, homehost);
466 if (first != last &&
467 (first == 1 || last == 1)) {
468 /* We can do something */
469 if (first) {/* just ignore this one */
470 if (report_missmatch)
471 fprintf(stderr, Name ": %s misses out due to wrong homehost\n",
472 devname);
473 goto loop;
474 } else { /* reject all those sofar */
475 mddev_dev_t td;
476 if (report_missmatch)
477 fprintf(stderr, Name ": %s overrides previous devices due to good homehost\n",
478 devname);
479 for (td=devlist; td != tmpdev; td=td->next)
480 if (td->used == 1)
481 td->used = 0;
482 tmpdev->used = 1;
483 goto loop;
484 }
485 }
486 }
487 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
488 devname);
489 tst->ss->free_super(tst);
490 st->ss->free_super(st);
491 return 1;
492 }
493
494 tmpdev->used = 1;
495
496 loop:
497 if (tmpdev->content)
498 goto next_member;
499 if (tst)
500 tst->ss->free_super(tst);
501 }
502
503 if (!st || !st->sb || !content)
504 return 2;
505
506 /* Now need to open the array device. Use create_mddev */
507 if (content == &info)
508 st->ss->getinfo_super(st, content);
509
510 trustworthy = FOREIGN;
511 name = content->name;
512 switch (st->ss->match_home(st, homehost)
513 ?: st->ss->match_home(st, "any")) {
514 case 1:
515 trustworthy = LOCAL;
516 name = strchr(content->name, ':');
517 if (name)
518 name++;
519 else
520 name = content->name;
521 break;
522 }
523 if (!auto_assem)
524 /* If the array is listed in mdadm.conf or on
525 * command line, then we trust the name
526 * even if the array doesn't look local
527 */
528 trustworthy = LOCAL;
529
530 if (name[0] == 0 &&
531 content->array.level == LEVEL_CONTAINER) {
532 name = content->text_version;
533 trustworthy = METADATA;
534 }
535
536 if (name[0] && trustworthy != LOCAL &&
537 ! require_homehost &&
538 conf_name_is_free(name))
539 trustworthy = LOCAL;
540
541 if (trustworthy == LOCAL &&
542 strchr(name, ':'))
543 /* Ignore 'host:' prefix of name */
544 name = strchr(name, ':')+1;
545
546 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
547 chosen_name);
548 if (mdfd < 0) {
549 st->ss->free_super(st);
550 free(devices);
551 if (auto_assem)
552 goto try_again;
553 return 1;
554 }
555 mddev = chosen_name;
556 vers = md_get_version(mdfd);
557 if (vers < 9000) {
558 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
559 " Upgrade your kernel or try --build\n");
560 close(mdfd);
561 return 1;
562 }
563 if (mddev_busy(fd2devnum(mdfd))) {
564 fprintf(stderr, Name ": %s already active, cannot restart it!\n",
565 mddev);
566 for (tmpdev = devlist ;
567 tmpdev && tmpdev->used != 1;
568 tmpdev = tmpdev->next)
569 ;
570 if (tmpdev && auto_assem)
571 fprintf(stderr, Name ": %s needed for %s...\n",
572 mddev, tmpdev->devname);
573 close(mdfd);
574 mdfd = -3;
575 st->ss->free_super(st);
576 free(devices);
577 if (auto_assem)
578 goto try_again;
579 return 1;
580 }
581 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
582
583 #ifndef MDASSEMBLE
584 if (content != &info) {
585 /* This is a member of a container. Try starting the array. */
586 return assemble_container_content(st, mdfd, content, runstop,
587 chosen_name, verbose);
588 }
589 #endif
590 /* Ok, no bad inconsistancy, we can try updating etc */
591 bitmap_done = 0;
592 content->update_private = NULL;
593 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
594 char *devname = tmpdev->devname;
595 struct stat stb;
596 /* looks like a good enough match to update the super block if needed */
597 #ifndef MDASSEMBLE
598 if (update) {
599 int dfd;
600 /* prepare useful information in info structures */
601 struct stat stb2;
602 struct supertype *tst;
603 fstat(mdfd, &stb2);
604
605 if (strcmp(update, "uuid")==0 &&
606 !ident->uuid_set) {
607 int rfd;
608 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
609 read(rfd, ident->uuid, 16) != 16) {
610 *(__u32*)(ident->uuid) = random();
611 *(__u32*)(ident->uuid+1) = random();
612 *(__u32*)(ident->uuid+2) = random();
613 *(__u32*)(ident->uuid+3) = random();
614 }
615 if (rfd >= 0) close(rfd);
616 }
617 dfd = dev_open(devname, O_RDWR|O_EXCL);
618
619 remove_partitions(dfd);
620
621 tst = dup_super(st);
622 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
623 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
624 devname);
625 if (dfd >= 0)
626 close(dfd);
627 close(mdfd);
628 return 1;
629 }
630 tst->ss->getinfo_super(tst, content);
631
632 memcpy(content->uuid, ident->uuid, 16);
633 strcpy(content->name, ident->name);
634 content->array.md_minor = minor(stb2.st_rdev);
635
636 tst->ss->update_super(tst, content, update,
637 devname, verbose,
638 ident->uuid_set, homehost);
639 if (strcmp(update, "uuid")==0 &&
640 !ident->uuid_set) {
641 ident->uuid_set = 1;
642 memcpy(ident->uuid, content->uuid, 16);
643 }
644 if (dfd < 0)
645 fprintf(stderr, Name ": Cannot open %s for superblock update\n",
646 devname);
647 else if (tst->ss->store_super(tst, dfd))
648 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
649 devname);
650 if (dfd >= 0)
651 close(dfd);
652
653 if (strcmp(update, "uuid")==0 &&
654 ident->bitmap_fd >= 0 && !bitmap_done) {
655 if (bitmap_update_uuid(ident->bitmap_fd,
656 content->uuid,
657 tst->ss->swapuuid) != 0)
658 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
659 else
660 bitmap_done = 1;
661 }
662 tst->ss->free_super(tst);
663 } else
664 #endif
665 {
666 struct supertype *tst = dup_super(st);
667 int dfd;
668 dfd = dev_open(devname, O_RDWR|O_EXCL);
669
670 remove_partitions(dfd);
671
672 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
673 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
674 devname);
675 if (dfd >= 0)
676 close(dfd);
677 close(mdfd);
678 return 1;
679 }
680 tst->ss->getinfo_super(tst, content);
681 tst->ss->free_super(tst);
682 close(dfd);
683 }
684
685 stat(devname, &stb);
686
687 if (verbose > 0)
688 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
689 devname, mddev, content->disk.raid_disk);
690 devices[devcnt].devname = devname;
691 devices[devcnt].uptodate = 0;
692 devices[devcnt].i = *content;
693 devices[devcnt].i.disk.major = major(stb.st_rdev);
694 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
695 if (most_recent < devcnt) {
696 if (devices[devcnt].i.events
697 > devices[most_recent].i.events)
698 most_recent = devcnt;
699 }
700 if (content->array.level == LEVEL_MULTIPATH)
701 /* with multipath, the raid_disk from the superblock is meaningless */
702 i = devcnt;
703 else
704 i = devices[devcnt].i.disk.raid_disk;
705 if (i+1 == 0) {
706 if (nextspare < content->array.raid_disks)
707 nextspare = content->array.raid_disks;
708 i = nextspare++;
709 } else {
710 if (i >= content->array.raid_disks &&
711 i >= nextspare)
712 nextspare = i+1;
713 }
714 if (i < 10000) {
715 if (i >= bestcnt) {
716 unsigned int newbestcnt = i+10;
717 int *newbest = malloc(sizeof(int)*newbestcnt);
718 unsigned int c;
719 for (c=0; c < newbestcnt; c++)
720 if (c < bestcnt)
721 newbest[c] = best[c];
722 else
723 newbest[c] = -1;
724 if (best)free(best);
725 best = newbest;
726 bestcnt = newbestcnt;
727 }
728 if (best[i] >=0 &&
729 devices[best[i]].i.events
730 == devices[devcnt].i.events
731 && (devices[best[i]].i.disk.minor
732 != devices[devcnt].i.disk.minor)
733 && st->ss == &super0
734 && content->array.level != LEVEL_MULTIPATH) {
735 /* two different devices with identical superblock.
736 * Could be a mis-detection caused by overlapping
737 * partitions. fail-safe.
738 */
739 fprintf(stderr, Name ": WARNING %s and %s appear"
740 " to have very similar superblocks.\n"
741 " If they are really different, "
742 "please --zero the superblock on one\n"
743 " If they are the same or overlap,"
744 " please remove one from %s.\n",
745 devices[best[i]].devname, devname,
746 inargv ? "the list" :
747 "the\n DEVICE list in mdadm.conf"
748 );
749 close(mdfd);
750 return 1;
751 }
752 if (best[i] == -1
753 || (devices[best[i]].i.events
754 < devices[devcnt].i.events))
755 best[i] = devcnt;
756 }
757 devcnt++;
758 }
759 free(content->update_private);
760 content->update_private = NULL;
761
762 if (devcnt == 0) {
763 fprintf(stderr, Name ": no devices found for %s\n",
764 mddev);
765 if (st)
766 st->ss->free_super(st);
767 close(mdfd);
768 return 1;
769 }
770
771 if (update && strcmp(update, "byteorder")==0)
772 st->minor_version = 90;
773
774 st->ss->getinfo_super(st, content);
775 clean = content->array.state & 1;
776
777 /* now we have some devices that might be suitable.
778 * I wonder how many
779 */
780 avail = malloc(content->array.raid_disks);
781 memset(avail, 0, content->array.raid_disks);
782 okcnt = 0;
783 sparecnt=0;
784 for (i=0; i< bestcnt ;i++) {
785 int j = best[i];
786 int event_margin = 1; /* always allow a difference of '1'
787 * like the kernel does
788 */
789 if (j < 0) continue;
790 /* note: we ignore error flags in multipath arrays
791 * as they don't make sense
792 */
793 if (content->array.level != LEVEL_MULTIPATH)
794 if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
795 if (!(devices[j].i.disk.state
796 & (1<<MD_DISK_FAULTY)))
797 sparecnt++;
798 continue;
799 }
800 if (devices[j].i.events+event_margin >=
801 devices[most_recent].i.events) {
802 devices[j].uptodate = 1;
803 if (i < content->array.raid_disks) {
804 okcnt++;
805 avail[i]=1;
806 } else
807 sparecnt++;
808 }
809 }
810 while (force && !enough(content->array.level, content->array.raid_disks,
811 content->array.layout, 1,
812 avail, okcnt)) {
813 /* Choose the newest best drive which is
814 * not up-to-date, update the superblock
815 * and add it.
816 */
817 int fd;
818 struct supertype *tst;
819 long long current_events;
820 chosen_drive = -1;
821 for (i=0; i<content->array.raid_disks && i < bestcnt; i++) {
822 int j = best[i];
823 if (j>=0 &&
824 !devices[j].uptodate &&
825 (chosen_drive < 0 ||
826 devices[j].i.events
827 > devices[chosen_drive].i.events))
828 chosen_drive = j;
829 }
830 if (chosen_drive < 0)
831 break;
832 current_events = devices[chosen_drive].i.events;
833 add_another:
834 if (verbose >= 0)
835 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
836 devices[chosen_drive].devname,
837 devices[chosen_drive].i.disk.raid_disk,
838 (int)(devices[chosen_drive].i.events),
839 (int)(devices[most_recent].i.events));
840 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
841 if (fd < 0) {
842 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
843 devices[chosen_drive].devname);
844 devices[chosen_drive].i.events = 0;
845 continue;
846 }
847 tst = dup_super(st);
848 if (tst->ss->load_super(tst,fd, NULL)) {
849 close(fd);
850 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
851 devices[chosen_drive].devname);
852 devices[chosen_drive].i.events = 0;
853 continue;
854 }
855 content->events = devices[most_recent].i.events;
856 tst->ss->update_super(tst, content, "force-one",
857 devices[chosen_drive].devname, verbose,
858 0, NULL);
859
860 if (tst->ss->store_super(tst, fd)) {
861 close(fd);
862 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
863 devices[chosen_drive].devname);
864 devices[chosen_drive].i.events = 0;
865 tst->ss->free_super(tst);
866 continue;
867 }
868 close(fd);
869 devices[chosen_drive].i.events = devices[most_recent].i.events;
870 devices[chosen_drive].uptodate = 1;
871 avail[chosen_drive] = 1;
872 okcnt++;
873 tst->ss->free_super(tst);
874
875 /* If there are any other drives of the same vintage,
876 * add them in as well. We can't lose and we might gain
877 */
878 for (i=0; i<content->array.raid_disks && i < bestcnt ; i++) {
879 int j = best[i];
880 if (j >= 0 &&
881 !devices[j].uptodate &&
882 devices[j].i.events == current_events) {
883 chosen_drive = j;
884 goto add_another;
885 }
886 }
887 }
888
889 /* Now we want to look at the superblock which the kernel will base things on
890 * and compare the devices that we think are working with the devices that the
891 * superblock thinks are working.
892 * If there are differences and --force is given, then update this chosen
893 * superblock.
894 */
895 chosen_drive = -1;
896 st->ss->free_super(st);
897 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
898 int j = best[i];
899 int fd;
900
901 if (j<0)
902 continue;
903 if (!devices[j].uptodate)
904 continue;
905 chosen_drive = j;
906 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
907 fprintf(stderr, Name ": Cannot open %s: %s\n",
908 devices[j].devname, strerror(errno));
909 close(mdfd);
910 return 1;
911 }
912 if (st->ss->load_super(st,fd, NULL)) {
913 close(fd);
914 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
915 devices[j].devname);
916 close(mdfd);
917 return 1;
918 }
919 close(fd);
920 }
921 if (st->sb == NULL) {
922 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
923 close(mdfd);
924 return 1;
925 }
926 st->ss->getinfo_super(st, content);
927 #ifndef MDASSEMBLE
928 sysfs_init(content, mdfd, 0);
929 #endif
930 for (i=0; i<bestcnt; i++) {
931 int j = best[i];
932 unsigned int desired_state;
933
934 if (i < content->array.raid_disks)
935 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
936 else
937 desired_state = 0;
938
939 if (j<0)
940 continue;
941 if (!devices[j].uptodate)
942 continue;
943
944 devices[j].i.disk.state = desired_state;
945 if (!(devices[j].i.array.state & 1))
946 clean = 0;
947
948 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
949 verbose, 0, NULL)) {
950 if (force) {
951 if (verbose >= 0)
952 fprintf(stderr, Name ": "
953 "clearing FAULTY flag for device %d in %s for %s\n",
954 j, mddev, devices[j].devname);
955 change = 1;
956 } else {
957 if (verbose >= -1)
958 fprintf(stderr, Name ": "
959 "device %d in %s has wrong state in superblock, but %s seems ok\n",
960 i, mddev, devices[j].devname);
961 }
962 }
963 #if 0
964 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
965 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
966 i, mddev);
967 }
968 #endif
969 }
970 if (force && !clean &&
971 !enough(content->array.level, content->array.raid_disks,
972 content->array.layout, clean,
973 avail, okcnt)) {
974 change += st->ss->update_super(st, content, "force-array",
975 devices[chosen_drive].devname, verbose,
976 0, NULL);
977 clean = 1;
978 }
979
980 if (change) {
981 int fd;
982 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
983 if (fd < 0) {
984 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
985 devices[chosen_drive].devname);
986 close(mdfd);
987 return 1;
988 }
989 if (st->ss->store_super(st, fd)) {
990 close(fd);
991 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
992 devices[chosen_drive].devname);
993 close(mdfd);
994 return 1;
995 }
996 close(fd);
997 }
998
999 /* If we are in the middle of a reshape we may need to restore saved data
1000 * that was moved aside due to the reshape overwriting live data
1001 * The code of doing this lives in Grow.c
1002 */
1003 #ifndef MDASSEMBLE
1004 if (content->reshape_active) {
1005 int err = 0;
1006 int *fdlist = malloc(sizeof(int)* bestcnt);
1007 if (verbose > 0)
1008 fprintf(stderr, Name ":%s has an active reshape - checking "
1009 "if critical section needs to be restored\n",
1010 chosen_name);
1011 for (i=0; i<bestcnt; i++) {
1012 int j = best[i];
1013 if (j >= 0) {
1014 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
1015 if (fdlist[i] < 0) {
1016 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
1017 devices[j].devname);
1018 err = 1;
1019 break;
1020 }
1021 } else
1022 fdlist[i] = -1;
1023 }
1024 if (!err)
1025 err = Grow_restart(st, content, fdlist, bestcnt, backup_file, verbose > 0);
1026 while (i>0) {
1027 i--;
1028 if (fdlist[i]>=0) close(fdlist[i]);
1029 }
1030 if (err) {
1031 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
1032 if (backup_file == NULL)
1033 fprintf(stderr," Possibly you needed to specify the --backup-file\n");
1034 close(mdfd);
1035 return err;
1036 }
1037 }
1038 #endif
1039 /* count number of in-sync devices according to the superblock.
1040 * We must have this number to start the array without -s or -R
1041 */
1042 req_cnt = content->array.working_disks;
1043
1044 /* Almost ready to actually *do* something */
1045 if (!old_linux) {
1046 int rv;
1047
1048 /* First, fill in the map, so that udev can find our name
1049 * as soon as we become active.
1050 */
1051 map_update(NULL, fd2devnum(mdfd), content->text_version,
1052 content->uuid, chosen_name);
1053
1054 rv = set_array_info(mdfd, st, content);
1055 if (rv) {
1056 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
1057 mddev, strerror(errno));
1058 close(mdfd);
1059 return 1;
1060 }
1061 if (ident->bitmap_fd >= 0) {
1062 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
1063 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
1064 close(mdfd);
1065 return 1;
1066 }
1067 } else if (ident->bitmap_file) {
1068 /* From config file */
1069 int bmfd = open(ident->bitmap_file, O_RDWR);
1070 if (bmfd < 0) {
1071 fprintf(stderr, Name ": Could not open bitmap file %s\n",
1072 ident->bitmap_file);
1073 close(mdfd);
1074 return 1;
1075 }
1076 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
1077 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
1078 close(bmfd);
1079 close(mdfd);
1080 return 1;
1081 }
1082 close(bmfd);
1083 }
1084
1085 /* First, add the raid disks, but add the chosen one last */
1086 for (i=0; i<= bestcnt; i++) {
1087 int j;
1088 if (i < bestcnt) {
1089 j = best[i];
1090 if (j == chosen_drive)
1091 continue;
1092 } else
1093 j = chosen_drive;
1094
1095 if (j >= 0 /* && devices[j].uptodate */) {
1096 rv = add_disk(mdfd, st, content, &devices[j].i);
1097
1098 if (rv) {
1099 fprintf(stderr, Name ": failed to add "
1100 "%s to %s: %s\n",
1101 devices[j].devname,
1102 mddev,
1103 strerror(errno));
1104 if (i < content->array.raid_disks
1105 || i == bestcnt)
1106 okcnt--;
1107 else
1108 sparecnt--;
1109 } else if (verbose > 0)
1110 fprintf(stderr, Name ": added %s "
1111 "to %s as %d\n",
1112 devices[j].devname, mddev,
1113 devices[j].i.disk.raid_disk);
1114 } else if (verbose > 0 && i < content->array.raid_disks)
1115 fprintf(stderr, Name ": no uptodate device for "
1116 "slot %d of %s\n",
1117 i, mddev);
1118 }
1119
1120 if (content->array.level == LEVEL_CONTAINER) {
1121 if (verbose >= 0) {
1122 fprintf(stderr, Name ": Container %s has been "
1123 "assembled with %d drive%s",
1124 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
1125 if (okcnt < content->array.raid_disks)
1126 fprintf(stderr, " (out of %d)",
1127 content->array.raid_disks);
1128 fprintf(stderr, "\n");
1129 }
1130 sysfs_uevent(content, "change");
1131 wait_for(chosen_name, mdfd);
1132 close(mdfd);
1133 return 0;
1134 }
1135
1136 if (runstop == 1 ||
1137 (runstop <= 0 &&
1138 ( enough(content->array.level, content->array.raid_disks,
1139 content->array.layout, clean, avail, okcnt) &&
1140 (okcnt >= req_cnt || start_partial_ok)
1141 ))) {
1142 /* This array is good-to-go.
1143 * If a reshape is in progress then we might need to
1144 * continue monitoring it. In that case we start
1145 * it read-only and let the grow code make it writable.
1146 */
1147 int rv;
1148 #ifndef MDASSEMBLE
1149 if (content->reshape_active &&
1150 content->delta_disks <= 0)
1151 rv = Grow_continue(mdfd, st, content, backup_file);
1152 else
1153 #endif
1154 rv = ioctl(mdfd, RUN_ARRAY, NULL);
1155 if (rv == 0) {
1156 if (verbose >= 0) {
1157 fprintf(stderr, Name ": %s has been started with %d drive%s",
1158 mddev, okcnt, okcnt==1?"":"s");
1159 if (okcnt < content->array.raid_disks)
1160 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1161 if (sparecnt)
1162 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1163 fprintf(stderr, ".\n");
1164 }
1165 if (content->reshape_active &&
1166 content->array.level >= 4 &&
1167 content->array.level <= 6) {
1168 /* might need to increase the size
1169 * of the stripe cache - default is 256
1170 */
1171 if (256 < 4 * (content->array.chunk_size/4096)) {
1172 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1173 if (sra)
1174 sysfs_set_num(sra, NULL,
1175 "stripe_cache_size",
1176 (4 * content->array.chunk_size / 4096) + 1);
1177 }
1178 }
1179 wait_for(mddev, mdfd);
1180 close(mdfd);
1181 if (auto_assem) {
1182 int usecs = 1;
1183 /* There is a nasty race with 'mdadm --monitor'.
1184 * If it opens this device before we close it,
1185 * it gets an incomplete open on which IO
1186 * doesn't work and the capacity is
1187 * wrong.
1188 * If we reopen (to check for layered devices)
1189 * before --monitor closes, we loose.
1190 *
1191 * So: wait upto 1 second for there to be
1192 * a non-zero capacity.
1193 */
1194 while (usecs < 1000) {
1195 mdfd = open(mddev, O_RDONLY);
1196 if (mdfd >= 0) {
1197 unsigned long long size;
1198 if (get_dev_size(mdfd, NULL, &size) &&
1199 size > 0)
1200 break;
1201 close(mdfd);
1202 }
1203 usleep(usecs);
1204 usecs <<= 1;
1205 }
1206 }
1207 return 0;
1208 }
1209 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
1210 mddev, strerror(errno));
1211
1212 if (!enough(content->array.level, content->array.raid_disks,
1213 content->array.layout, 1, avail, okcnt))
1214 fprintf(stderr, Name ": Not enough devices to "
1215 "start the array.\n");
1216 else if (!enough(content->array.level,
1217 content->array.raid_disks,
1218 content->array.layout, clean,
1219 avail, okcnt))
1220 fprintf(stderr, Name ": Not enough devices to "
1221 "start the array while not clean "
1222 "- consider --force.\n");
1223
1224 if (auto_assem)
1225 ioctl(mdfd, STOP_ARRAY, NULL);
1226 close(mdfd);
1227 return 1;
1228 }
1229 if (runstop == -1) {
1230 fprintf(stderr, Name ": %s assembled from %d drive%s",
1231 mddev, okcnt, okcnt==1?"":"s");
1232 if (okcnt != content->array.raid_disks)
1233 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1234 fprintf(stderr, ", but not started.\n");
1235 close(mdfd);
1236 return 0;
1237 }
1238 if (verbose >= -1) {
1239 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1240 if (sparecnt)
1241 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1242 if (!enough(content->array.level, content->array.raid_disks,
1243 content->array.layout, 1, avail, okcnt))
1244 fprintf(stderr, " - not enough to start the array.\n");
1245 else if (!enough(content->array.level,
1246 content->array.raid_disks,
1247 content->array.layout, clean,
1248 avail, okcnt))
1249 fprintf(stderr, " - not enough to start the "
1250 "array while not clean - consider "
1251 "--force.\n");
1252 else {
1253 if (req_cnt == content->array.raid_disks)
1254 fprintf(stderr, " - need all %d to start it", req_cnt);
1255 else
1256 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
1257 fprintf(stderr, " (use --run to insist).\n");
1258 }
1259 }
1260 if (auto_assem)
1261 ioctl(mdfd, STOP_ARRAY, NULL);
1262 close(mdfd);
1263 return 1;
1264 } else {
1265 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1266 * been updated to point to the current locations of devices.
1267 * so we can just start the array
1268 */
1269 unsigned long dev;
1270 dev = makedev(devices[chosen_drive].i.disk.major,
1271 devices[chosen_drive].i.disk.minor);
1272 if (ioctl(mdfd, START_ARRAY, dev)) {
1273 fprintf(stderr, Name ": Cannot start array: %s\n",
1274 strerror(errno));
1275 }
1276
1277 }
1278 close(mdfd);
1279 return 0;
1280 }
1281
1282 #ifndef MDASSEMBLE
1283 int assemble_container_content(struct supertype *st, int mdfd,
1284 struct mdinfo *content, int runstop,
1285 char *chosen_name, int verbose)
1286 {
1287 struct mdinfo *dev, *sra;
1288 int working = 0, preexist = 0;
1289 struct map_ent *map = NULL;
1290
1291 sysfs_init(content, mdfd, 0);
1292
1293 sra = sysfs_read(mdfd, 0, GET_VERSION);
1294 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0)
1295 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1296 close(mdfd);
1297 return 1;
1298 }
1299 if (sra)
1300 sysfs_free(sra);
1301
1302 for (dev = content->devs; dev; dev = dev->next)
1303 if (sysfs_add_disk(content, dev, 1) == 0)
1304 working++;
1305 else if (errno == EEXIST)
1306 preexist++;
1307 if (working == 0) {
1308 close(mdfd);
1309 return 1;/* Nothing new, don't try to start */
1310 }
1311
1312 map_update(&map, fd2devnum(mdfd),
1313 content->text_version,
1314 content->uuid, chosen_name);
1315
1316 if (runstop > 0 ||
1317 (working + preexist) >= content->array.working_disks) {
1318 int err;
1319
1320 switch(content->array.level) {
1321 case LEVEL_LINEAR:
1322 case LEVEL_MULTIPATH:
1323 case 0:
1324 err = sysfs_set_str(content, NULL, "array_state",
1325 "active");
1326 break;
1327 default:
1328 err = sysfs_set_str(content, NULL, "array_state",
1329 "readonly");
1330 /* start mdmon if needed. */
1331 if (!err) {
1332 if (!mdmon_running(st->container_dev))
1333 start_mdmon(st->container_dev);
1334 ping_monitor(devnum2devname(st->container_dev));
1335 }
1336 break;
1337 }
1338 if (!err)
1339 sysfs_set_safemode(content, content->safe_mode_delay);
1340 if (verbose >= 0) {
1341 if (err)
1342 fprintf(stderr, Name
1343 ": array %s now has %d devices",
1344 chosen_name, working + preexist);
1345 else
1346 fprintf(stderr, Name
1347 ": Started %s with %d devices",
1348 chosen_name, working + preexist);
1349 if (preexist)
1350 fprintf(stderr, " (%d new)", working);
1351 fprintf(stderr, "\n");
1352 }
1353 if (!err)
1354 wait_for(chosen_name, mdfd);
1355 close(mdfd);
1356 return 0;
1357 /* FIXME should have an O_EXCL and wait for read-auto */
1358 } else {
1359 if (verbose >= 0)
1360 fprintf(stderr, Name
1361 ": %s assembled with %d devices but "
1362 "not started\n",
1363 chosen_name, working);
1364 close(mdfd);
1365 return 1;
1366 }
1367 }
1368 #endif
1369