]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Assemble.c
Detail: export MD_UUID from mapfile
[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 next_member:
319 if (tmpdev->content)
320 content = tmpdev->content;
321 else
322 content = tst->ss->container_content(tst);
323 if (!content)
324 goto loop; /* empty container */
325
326 tmpdev->content = content->next;
327 if (tmpdev->content == NULL)
328 tmpdev->used = 2;
329
330 } else if (ident->container || ident->member) {
331 /* No chance of this matching if we don't have
332 * a container */
333 if (report_missmatch)
334 fprintf(stderr, Name "%s is not a container, and one is required.\n",
335 devname);
336 goto loop;
337 }
338
339 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
340 (!tst || !tst->sb ||
341 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0)) {
342 if (report_missmatch)
343 fprintf(stderr, Name ": %s has wrong uuid.\n",
344 devname);
345 goto loop;
346 }
347 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
348 (!tst || !tst->sb ||
349 name_matches(content->name, ident->name, homehost)==0)) {
350 if (report_missmatch)
351 fprintf(stderr, Name ": %s has wrong name.\n",
352 devname);
353 goto loop;
354 }
355 if (ident->super_minor != UnSet &&
356 (!tst || !tst->sb ||
357 ident->super_minor != content->array.md_minor)) {
358 if (report_missmatch)
359 fprintf(stderr, Name ": %s has wrong super-minor.\n",
360 devname);
361 goto loop;
362 }
363 if (ident->level != UnSet &&
364 (!tst || !tst->sb ||
365 ident->level != content->array.level)) {
366 if (report_missmatch)
367 fprintf(stderr, Name ": %s has wrong raid level.\n",
368 devname);
369 goto loop;
370 }
371 if (ident->raid_disks != UnSet &&
372 (!tst || !tst->sb ||
373 ident->raid_disks!= content->array.raid_disks)) {
374 if (report_missmatch)
375 fprintf(stderr, Name ": %s requires wrong number of drives.\n",
376 devname);
377 goto loop;
378 }
379 if (auto_assem) {
380 if (tst == NULL || tst->sb == NULL)
381 continue;
382 }
383 /* If we are this far, then we are nearly commited to this device.
384 * If the super_block doesn't exist, or doesn't match others,
385 * then we probably cannot continue
386 * However if one of the arrays is for the homehost, and
387 * the other isn't that can disambiguate.
388 */
389
390 if (!tst || !tst->sb) {
391 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
392 devname);
393 if (st)
394 st->ss->free_super(st);
395 return 1;
396 }
397
398 if (tst && tst->sb && tst->ss->container_content
399 && tst->loaded_container) {
400 /* we have the one container we need, don't keep
401 * looking. If the chosen member is active, skip.
402 */
403 if (is_member_busy(content->text_version)) {
404 if (report_missmatch)
405 fprintf(stderr, Name ": member %s in %s is already assembled\n",
406 content->text_version,
407 devname);
408 tst->ss->free_super(tst);
409 tst = NULL;
410 content = NULL;
411 if (auto_assem)
412 goto loop;
413 return 1;
414 }
415 st = tst; tst = NULL;
416 if (!auto_assem && tmpdev->next != NULL) {
417 fprintf(stderr, Name ": %s is a container, but is not "
418 "only device given: confused and aborting\n",
419 devname);
420 st->ss->free_super(st);
421 return 1;
422 }
423 break;
424 }
425 if (st == NULL)
426 st = dup_super(tst);
427 if (st->minor_version == -1)
428 st->minor_version = tst->minor_version;
429 if (st->ss != tst->ss ||
430 st->minor_version != tst->minor_version ||
431 st->ss->compare_super(st, tst) != 0) {
432 /* Some mismatch. If exactly one array matches this host,
433 * we can resolve on that one.
434 * Or, if we are auto assembling, we just ignore the second
435 * for now.
436 */
437 if (auto_assem)
438 goto loop;
439 if (homehost) {
440 int first = st->ss->match_home(st, homehost);
441 int last = tst->ss->match_home(tst, homehost);
442 if (first != last &&
443 (first == 1 || last == 1)) {
444 /* We can do something */
445 if (first) {/* just ignore this one */
446 if (report_missmatch)
447 fprintf(stderr, Name ": %s misses out due to wrong homehost\n",
448 devname);
449 goto loop;
450 } else { /* reject all those sofar */
451 mddev_dev_t td;
452 if (report_missmatch)
453 fprintf(stderr, Name ": %s overrides previous devices due to good homehost\n",
454 devname);
455 for (td=devlist; td != tmpdev; td=td->next)
456 if (td->used == 1)
457 td->used = 0;
458 tmpdev->used = 1;
459 goto loop;
460 }
461 }
462 }
463 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
464 devname);
465 tst->ss->free_super(tst);
466 st->ss->free_super(st);
467 return 1;
468 }
469
470 tmpdev->used = 1;
471
472 loop:
473 if (tmpdev->content)
474 goto next_member;
475 if (tst)
476 tst->ss->free_super(tst);
477 }
478
479 if (!st || !st->sb || !content)
480 return 2;
481
482 /* Now need to open the array device. Use create_mddev */
483 if (content == &info)
484 st->ss->getinfo_super(st, content);
485
486 trustworthy = FOREIGN;
487 name = content->name;
488 switch (st->ss->match_home(st, homehost)
489 ?: st->ss->match_home(st, "any")) {
490 case 1:
491 trustworthy = LOCAL;
492 name = strchr(content->name, ':');
493 if (name)
494 name++;
495 else
496 name = content->name;
497 break;
498 }
499 if (!auto_assem)
500 /* If the array is listed in mdadm.conf or on
501 * command line, then we trust the name
502 * even if the array doesn't look local
503 */
504 trustworthy = LOCAL;
505
506 if (name[0] == 0 &&
507 content->array.level == LEVEL_CONTAINER) {
508 name = content->text_version;
509 trustworthy = METADATA;
510 }
511
512 if (name[0] && trustworthy != LOCAL &&
513 ! require_homehost &&
514 conf_name_is_free(name))
515 trustworthy = LOCAL;
516
517 if (trustworthy == LOCAL &&
518 strchr(name, ':'))
519 /* Ignore 'host:' prefix of name */
520 name = strchr(name, ':')+1;
521
522 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
523 chosen_name);
524 if (mdfd < 0) {
525 st->ss->free_super(st);
526 free(devices);
527 if (auto_assem)
528 goto try_again;
529 return 1;
530 }
531 mddev = chosen_name;
532 vers = md_get_version(mdfd);
533 if (vers < 9000) {
534 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
535 " Upgrade your kernel or try --build\n");
536 close(mdfd);
537 return 1;
538 }
539 if (mddev_busy(fd2devnum(mdfd))) {
540 fprintf(stderr, Name ": %s already active, cannot restart it!\n",
541 mddev);
542 for (tmpdev = devlist ;
543 tmpdev && tmpdev->used != 1;
544 tmpdev = tmpdev->next)
545 ;
546 if (tmpdev && auto_assem)
547 fprintf(stderr, Name ": %s needed for %s...\n",
548 mddev, tmpdev->devname);
549 close(mdfd);
550 mdfd = -3;
551 st->ss->free_super(st);
552 free(devices);
553 if (auto_assem)
554 goto try_again;
555 return 1;
556 }
557 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
558
559 #ifndef MDASSEMBLE
560 if (content != &info) {
561 /* This is a member of a container. Try starting the array. */
562 return assemble_container_content(st, mdfd, content, runstop,
563 chosen_name, verbose);
564 }
565 #endif
566 /* Ok, no bad inconsistancy, we can try updating etc */
567 bitmap_done = 0;
568 content->update_private = NULL;
569 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
570 char *devname = tmpdev->devname;
571 struct stat stb;
572 /* looks like a good enough match to update the super block if needed */
573 #ifndef MDASSEMBLE
574 if (update) {
575 int dfd;
576 /* prepare useful information in info structures */
577 struct stat stb2;
578 struct supertype *tst;
579 fstat(mdfd, &stb2);
580
581 if (strcmp(update, "uuid")==0 &&
582 !ident->uuid_set) {
583 int rfd;
584 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
585 read(rfd, ident->uuid, 16) != 16) {
586 *(__u32*)(ident->uuid) = random();
587 *(__u32*)(ident->uuid+1) = random();
588 *(__u32*)(ident->uuid+2) = random();
589 *(__u32*)(ident->uuid+3) = random();
590 }
591 if (rfd >= 0) close(rfd);
592 }
593 dfd = dev_open(devname, O_RDWR|O_EXCL);
594
595 remove_partitions(dfd);
596
597 tst = dup_super(st);
598 tst->ss->load_super(tst, dfd, NULL);
599 tst->ss->getinfo_super(tst, content);
600
601 memcpy(content->uuid, ident->uuid, 16);
602 strcpy(content->name, ident->name);
603 content->array.md_minor = minor(stb2.st_rdev);
604
605 tst->ss->update_super(tst, content, update,
606 devname, verbose,
607 ident->uuid_set, homehost);
608 if (strcmp(update, "uuid")==0 &&
609 !ident->uuid_set) {
610 ident->uuid_set = 1;
611 memcpy(ident->uuid, content->uuid, 16);
612 }
613 if (dfd < 0)
614 fprintf(stderr, Name ": Cannot open %s for superblock update\n",
615 devname);
616 else if (tst->ss->store_super(tst, dfd))
617 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
618 devname);
619 if (dfd >= 0)
620 close(dfd);
621
622 if (strcmp(update, "uuid")==0 &&
623 ident->bitmap_fd >= 0 && !bitmap_done) {
624 if (bitmap_update_uuid(ident->bitmap_fd,
625 content->uuid,
626 tst->ss->swapuuid) != 0)
627 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
628 else
629 bitmap_done = 1;
630 }
631 tst->ss->free_super(tst);
632 } else
633 #endif
634 {
635 struct supertype *tst = dup_super(st);
636 int dfd;
637 dfd = dev_open(devname, O_RDWR|O_EXCL);
638
639 remove_partitions(dfd);
640
641 tst->ss->load_super(tst, dfd, NULL);
642 tst->ss->getinfo_super(tst, content);
643 tst->ss->free_super(tst);
644 close(dfd);
645 }
646
647 stat(devname, &stb);
648
649 if (verbose > 0)
650 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
651 devname, mddev, content->disk.raid_disk);
652 devices[devcnt].devname = devname;
653 devices[devcnt].uptodate = 0;
654 devices[devcnt].i = *content;
655 devices[devcnt].i.disk.major = major(stb.st_rdev);
656 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
657 if (most_recent < devcnt) {
658 if (devices[devcnt].i.events
659 > devices[most_recent].i.events)
660 most_recent = devcnt;
661 }
662 if (content->array.level == -4)
663 /* with multipath, the raid_disk from the superblock is meaningless */
664 i = devcnt;
665 else
666 i = devices[devcnt].i.disk.raid_disk;
667 if (i+1 == 0) {
668 if (nextspare < content->array.raid_disks)
669 nextspare = content->array.raid_disks;
670 i = nextspare++;
671 } else {
672 if (i >= content->array.raid_disks &&
673 i >= nextspare)
674 nextspare = i+1;
675 }
676 if (i < 10000) {
677 if (i >= bestcnt) {
678 unsigned int newbestcnt = i+10;
679 int *newbest = malloc(sizeof(int)*newbestcnt);
680 unsigned int c;
681 for (c=0; c < newbestcnt; c++)
682 if (c < bestcnt)
683 newbest[c] = best[c];
684 else
685 newbest[c] = -1;
686 if (best)free(best);
687 best = newbest;
688 bestcnt = newbestcnt;
689 }
690 if (best[i] >=0 &&
691 devices[best[i]].i.events
692 == devices[devcnt].i.events
693 && (devices[best[i]].i.disk.minor
694 != devices[devcnt].i.disk.minor)
695 && st->ss == &super0
696 && content->array.level != LEVEL_MULTIPATH) {
697 /* two different devices with identical superblock.
698 * Could be a mis-detection caused by overlapping
699 * partitions. fail-safe.
700 */
701 fprintf(stderr, Name ": WARNING %s and %s appear"
702 " to have very similar superblocks.\n"
703 " If they are really different, "
704 "please --zero the superblock on one\n"
705 " If they are the same or overlap,"
706 " please remove one from %s.\n",
707 devices[best[i]].devname, devname,
708 inargv ? "the list" :
709 "the\n DEVICE list in mdadm.conf"
710 );
711 close(mdfd);
712 return 1;
713 }
714 if (best[i] == -1
715 || (devices[best[i]].i.events
716 < devices[devcnt].i.events))
717 best[i] = devcnt;
718 }
719 devcnt++;
720 }
721 free(content->update_private);
722 content->update_private = NULL;
723
724 if (devcnt == 0) {
725 fprintf(stderr, Name ": no devices found for %s\n",
726 mddev);
727 if (st)
728 st->ss->free_super(st);
729 close(mdfd);
730 return 1;
731 }
732
733 if (update && strcmp(update, "byteorder")==0)
734 st->minor_version = 90;
735
736 st->ss->getinfo_super(st, content);
737 clean = content->array.state & 1;
738
739 /* now we have some devices that might be suitable.
740 * I wonder how many
741 */
742 avail = malloc(content->array.raid_disks);
743 memset(avail, 0, content->array.raid_disks);
744 okcnt = 0;
745 sparecnt=0;
746 for (i=0; i< bestcnt ;i++) {
747 int j = best[i];
748 int event_margin = 1; /* always allow a difference of '1'
749 * like the kernel does
750 */
751 if (j < 0) continue;
752 /* note: we ignore error flags in multipath arrays
753 * as they don't make sense
754 */
755 if (content->array.level != -4)
756 if (!(devices[j].i.disk.state & (1<<MD_DISK_SYNC))) {
757 if (!(devices[j].i.disk.state
758 & (1<<MD_DISK_FAULTY)))
759 sparecnt++;
760 continue;
761 }
762 if (devices[j].i.events+event_margin >=
763 devices[most_recent].i.events) {
764 devices[j].uptodate = 1;
765 if (i < content->array.raid_disks) {
766 okcnt++;
767 avail[i]=1;
768 } else
769 sparecnt++;
770 }
771 }
772 while (force && !enough(content->array.level, content->array.raid_disks,
773 content->array.layout, 1,
774 avail, okcnt)) {
775 /* Choose the newest best drive which is
776 * not up-to-date, update the superblock
777 * and add it.
778 */
779 int fd;
780 struct supertype *tst;
781 long long current_events;
782 chosen_drive = -1;
783 for (i=0; i<content->array.raid_disks && i < bestcnt; i++) {
784 int j = best[i];
785 if (j>=0 &&
786 !devices[j].uptodate &&
787 (chosen_drive < 0 ||
788 devices[j].i.events
789 > devices[chosen_drive].i.events))
790 chosen_drive = j;
791 }
792 if (chosen_drive < 0)
793 break;
794 current_events = devices[chosen_drive].i.events;
795 add_another:
796 if (verbose >= 0)
797 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
798 devices[chosen_drive].devname,
799 devices[chosen_drive].i.disk.raid_disk,
800 (int)(devices[chosen_drive].i.events),
801 (int)(devices[most_recent].i.events));
802 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
803 if (fd < 0) {
804 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
805 devices[chosen_drive].devname);
806 devices[chosen_drive].i.events = 0;
807 continue;
808 }
809 tst = dup_super(st);
810 if (tst->ss->load_super(tst,fd, NULL)) {
811 close(fd);
812 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
813 devices[chosen_drive].devname);
814 devices[chosen_drive].i.events = 0;
815 continue;
816 }
817 content->events = devices[most_recent].i.events;
818 tst->ss->update_super(tst, content, "force-one",
819 devices[chosen_drive].devname, verbose,
820 0, NULL);
821
822 if (tst->ss->store_super(tst, fd)) {
823 close(fd);
824 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
825 devices[chosen_drive].devname);
826 devices[chosen_drive].i.events = 0;
827 tst->ss->free_super(tst);
828 continue;
829 }
830 close(fd);
831 devices[chosen_drive].i.events = devices[most_recent].i.events;
832 devices[chosen_drive].uptodate = 1;
833 avail[chosen_drive] = 1;
834 okcnt++;
835 tst->ss->free_super(tst);
836
837 /* If there are any other drives of the same vintage,
838 * add them in as well. We can't lose and we might gain
839 */
840 for (i=0; i<content->array.raid_disks && i < bestcnt ; i++) {
841 int j = best[i];
842 if (j >= 0 &&
843 !devices[j].uptodate &&
844 devices[j].i.events == current_events) {
845 chosen_drive = j;
846 goto add_another;
847 }
848 }
849 }
850
851 /* Now we want to look at the superblock which the kernel will base things on
852 * and compare the devices that we think are working with the devices that the
853 * superblock thinks are working.
854 * If there are differences and --force is given, then update this chosen
855 * superblock.
856 */
857 chosen_drive = -1;
858 st->ss->free_super(st);
859 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
860 int j = best[i];
861 int fd;
862
863 if (j<0)
864 continue;
865 if (!devices[j].uptodate)
866 continue;
867 chosen_drive = j;
868 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
869 fprintf(stderr, Name ": Cannot open %s: %s\n",
870 devices[j].devname, strerror(errno));
871 close(mdfd);
872 return 1;
873 }
874 if (st->ss->load_super(st,fd, NULL)) {
875 close(fd);
876 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
877 devices[j].devname);
878 close(mdfd);
879 return 1;
880 }
881 close(fd);
882 }
883 if (st->sb == NULL) {
884 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
885 close(mdfd);
886 return 1;
887 }
888 st->ss->getinfo_super(st, content);
889 #ifndef MDASSEMBLE
890 sysfs_init(content, mdfd, 0);
891 #endif
892 for (i=0; i<bestcnt; i++) {
893 int j = best[i];
894 unsigned int desired_state;
895
896 if (i < content->array.raid_disks)
897 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
898 else
899 desired_state = 0;
900
901 if (j<0)
902 continue;
903 if (!devices[j].uptodate)
904 continue;
905
906 devices[j].i.disk.state = desired_state;
907 if (!(devices[j].i.array.state & 1))
908 clean = 0;
909
910 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
911 verbose, 0, NULL)) {
912 if (force) {
913 if (verbose >= 0)
914 fprintf(stderr, Name ": "
915 "clearing FAULTY flag for device %d in %s for %s\n",
916 j, mddev, devices[j].devname);
917 change = 1;
918 } else {
919 if (verbose >= -1)
920 fprintf(stderr, Name ": "
921 "device %d in %s has wrong state in superblock, but %s seems ok\n",
922 i, mddev, devices[j].devname);
923 }
924 }
925 #if 0
926 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
927 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
928 i, mddev);
929 }
930 #endif
931 }
932 if (force && !clean &&
933 !enough(content->array.level, content->array.raid_disks,
934 content->array.layout, clean,
935 avail, okcnt)) {
936 change += st->ss->update_super(st, content, "force-array",
937 devices[chosen_drive].devname, verbose,
938 0, NULL);
939 clean = 1;
940 }
941
942 if (change) {
943 int fd;
944 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
945 if (fd < 0) {
946 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
947 devices[chosen_drive].devname);
948 close(mdfd);
949 return 1;
950 }
951 if (st->ss->store_super(st, fd)) {
952 close(fd);
953 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
954 devices[chosen_drive].devname);
955 close(mdfd);
956 return 1;
957 }
958 close(fd);
959 }
960
961 /* If we are in the middle of a reshape we may need to restore saved data
962 * that was moved aside due to the reshape overwriting live data
963 * The code of doing this lives in Grow.c
964 */
965 #ifndef MDASSEMBLE
966 if (content->reshape_active) {
967 int err = 0;
968 int *fdlist = malloc(sizeof(int)* bestcnt);
969 for (i=0; i<bestcnt; i++) {
970 int j = best[i];
971 if (j >= 0) {
972 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
973 if (fdlist[i] < 0) {
974 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
975 devices[j].devname);
976 err = 1;
977 break;
978 }
979 } else
980 fdlist[i] = -1;
981 }
982 if (!err)
983 err = Grow_restart(st, content, fdlist, bestcnt, backup_file);
984 while (i>0) {
985 i--;
986 if (fdlist[i]>=0) close(fdlist[i]);
987 }
988 if (err) {
989 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
990 close(mdfd);
991 return err;
992 }
993 }
994 #endif
995 /* count number of in-sync devices according to the superblock.
996 * We must have this number to start the array without -s or -R
997 */
998 req_cnt = content->array.working_disks;
999
1000 /* Almost ready to actually *do* something */
1001 if (!old_linux) {
1002 int rv;
1003
1004 /* First, fill in the map, so that udev can find our name
1005 * as soon as we become active.
1006 */
1007 map_update(NULL, fd2devnum(mdfd), content->text_version,
1008 content->uuid, chosen_name);
1009
1010 rv = set_array_info(mdfd, st, content);
1011 if (rv) {
1012 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
1013 mddev, strerror(errno));
1014 close(mdfd);
1015 return 1;
1016 }
1017 if (ident->bitmap_fd >= 0) {
1018 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
1019 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
1020 close(mdfd);
1021 return 1;
1022 }
1023 } else if (ident->bitmap_file) {
1024 /* From config file */
1025 int bmfd = open(ident->bitmap_file, O_RDWR);
1026 if (bmfd < 0) {
1027 fprintf(stderr, Name ": Could not open bitmap file %s\n",
1028 ident->bitmap_file);
1029 close(mdfd);
1030 return 1;
1031 }
1032 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
1033 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
1034 close(bmfd);
1035 close(mdfd);
1036 return 1;
1037 }
1038 close(bmfd);
1039 }
1040
1041 /* First, add the raid disks, but add the chosen one last */
1042 for (i=0; i<= bestcnt; i++) {
1043 int j;
1044 if (i < bestcnt) {
1045 j = best[i];
1046 if (j == chosen_drive)
1047 continue;
1048 } else
1049 j = chosen_drive;
1050
1051 if (j >= 0 /* && devices[j].uptodate */) {
1052 rv = add_disk(mdfd, st, content, &devices[j].i);
1053
1054 if (rv) {
1055 fprintf(stderr, Name ": failed to add "
1056 "%s to %s: %s\n",
1057 devices[j].devname,
1058 mddev,
1059 strerror(errno));
1060 if (i < content->array.raid_disks
1061 || i == bestcnt)
1062 okcnt--;
1063 else
1064 sparecnt--;
1065 } else if (verbose > 0)
1066 fprintf(stderr, Name ": added %s "
1067 "to %s as %d\n",
1068 devices[j].devname, mddev,
1069 devices[j].i.disk.raid_disk);
1070 } else if (verbose > 0 && i < content->array.raid_disks)
1071 fprintf(stderr, Name ": no uptodate device for "
1072 "slot %d of %s\n",
1073 i, mddev);
1074 }
1075
1076 if (content->array.level == LEVEL_CONTAINER) {
1077 if (verbose >= 0) {
1078 fprintf(stderr, Name ": Container %s has been "
1079 "assembled with %d drive%s",
1080 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
1081 if (okcnt < content->array.raid_disks)
1082 fprintf(stderr, " (out of %d)",
1083 content->array.raid_disks);
1084 fprintf(stderr, "\n");
1085 }
1086 sysfs_uevent(content, "change");
1087 wait_for(chosen_name, mdfd);
1088 close(mdfd);
1089 return 0;
1090 }
1091
1092 if (runstop == 1 ||
1093 (runstop <= 0 &&
1094 ( enough(content->array.level, content->array.raid_disks,
1095 content->array.layout, clean, avail, okcnt) &&
1096 (okcnt >= req_cnt || start_partial_ok)
1097 ))) {
1098 if (ioctl(mdfd, RUN_ARRAY, NULL)==0) {
1099 if (verbose >= 0) {
1100 fprintf(stderr, Name ": %s has been started with %d drive%s",
1101 mddev, okcnt, okcnt==1?"":"s");
1102 if (okcnt < content->array.raid_disks)
1103 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1104 if (sparecnt)
1105 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1106 fprintf(stderr, ".\n");
1107 }
1108 if (content->reshape_active &&
1109 content->array.level >= 4 &&
1110 content->array.level <= 6) {
1111 /* might need to increase the size
1112 * of the stripe cache - default is 256
1113 */
1114 if (256 < 4 * (content->array.chunk_size/4096)) {
1115 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1116 if (sra)
1117 sysfs_set_num(sra, NULL,
1118 "stripe_cache_size",
1119 (4 * content->array.chunk_size / 4096) + 1);
1120 }
1121 }
1122 wait_for(mddev, mdfd);
1123 close(mdfd);
1124 if (auto_assem) {
1125 int usecs = 1;
1126 /* There is a nasty race with 'mdadm --monitor'.
1127 * If it opens this device before we close it,
1128 * it gets an incomplete open on which IO
1129 * doesn't work and the capacity is
1130 * wrong.
1131 * If we reopen (to check for layered devices)
1132 * before --monitor closes, we loose.
1133 *
1134 * So: wait upto 1 second for there to be
1135 * a non-zero capacity.
1136 */
1137 while (usecs < 1000) {
1138 mdfd = open(mddev, O_RDONLY);
1139 if (mdfd >= 0) {
1140 unsigned long long size;
1141 if (get_dev_size(mdfd, NULL, &size) &&
1142 size > 0)
1143 break;
1144 close(mdfd);
1145 }
1146 usleep(usecs);
1147 usecs <<= 1;
1148 }
1149 }
1150 return 0;
1151 }
1152 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
1153 mddev, strerror(errno));
1154
1155 if (!enough(content->array.level, content->array.raid_disks,
1156 content->array.layout, 1, avail, okcnt))
1157 fprintf(stderr, Name ": Not enough devices to "
1158 "start the array.\n");
1159 else if (!enough(content->array.level,
1160 content->array.raid_disks,
1161 content->array.layout, clean,
1162 avail, okcnt))
1163 fprintf(stderr, Name ": Not enough devices to "
1164 "start the array while not clean "
1165 "- consider --force.\n");
1166
1167 if (auto_assem)
1168 ioctl(mdfd, STOP_ARRAY, NULL);
1169 close(mdfd);
1170 return 1;
1171 }
1172 if (runstop == -1) {
1173 fprintf(stderr, Name ": %s assembled from %d drive%s",
1174 mddev, okcnt, okcnt==1?"":"s");
1175 if (okcnt != content->array.raid_disks)
1176 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1177 fprintf(stderr, ", but not started.\n");
1178 close(mdfd);
1179 return 0;
1180 }
1181 if (verbose >= -1) {
1182 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1183 if (sparecnt)
1184 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1185 if (!enough(content->array.level, content->array.raid_disks,
1186 content->array.layout, 1, avail, okcnt))
1187 fprintf(stderr, " - not enough to start the array.\n");
1188 else if (!enough(content->array.level,
1189 content->array.raid_disks,
1190 content->array.layout, clean,
1191 avail, okcnt))
1192 fprintf(stderr, " - not enough to start the "
1193 "array while not clean - consider "
1194 "--force.\n");
1195 else {
1196 if (req_cnt == content->array.raid_disks)
1197 fprintf(stderr, " - need all %d to start it", req_cnt);
1198 else
1199 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
1200 fprintf(stderr, " (use --run to insist).\n");
1201 }
1202 }
1203 if (auto_assem)
1204 ioctl(mdfd, STOP_ARRAY, NULL);
1205 close(mdfd);
1206 return 1;
1207 } else {
1208 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1209 * been updated to point to the current locations of devices.
1210 * so we can just start the array
1211 */
1212 unsigned long dev;
1213 dev = makedev(devices[chosen_drive].i.disk.major,
1214 devices[chosen_drive].i.disk.minor);
1215 if (ioctl(mdfd, START_ARRAY, dev)) {
1216 fprintf(stderr, Name ": Cannot start array: %s\n",
1217 strerror(errno));
1218 }
1219
1220 }
1221 close(mdfd);
1222 return 0;
1223 }
1224
1225 #ifndef MDASSEMBLE
1226 int assemble_container_content(struct supertype *st, int mdfd,
1227 struct mdinfo *content, int runstop,
1228 char *chosen_name, int verbose)
1229 {
1230 struct mdinfo *dev, *sra;
1231 int working = 0, preexist = 0;
1232 struct map_ent *map = NULL;
1233
1234 sysfs_init(content, mdfd, 0);
1235
1236 sra = sysfs_read(mdfd, 0, GET_VERSION);
1237 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0)
1238 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1239 close(mdfd);
1240 return 1;
1241 }
1242 if (sra)
1243 sysfs_free(sra);
1244
1245 for (dev = content->devs; dev; dev = dev->next)
1246 if (sysfs_add_disk(content, dev, 1) == 0)
1247 working++;
1248 else if (errno == EEXIST)
1249 preexist++;
1250 if (working == 0) {
1251 close(mdfd);
1252 return 1;/* Nothing new, don't try to start */
1253 }
1254
1255 map_update(&map, fd2devnum(mdfd),
1256 content->text_version,
1257 content->uuid, chosen_name);
1258
1259 if (runstop > 0 ||
1260 (working + preexist) >= content->array.working_disks) {
1261 int err;
1262
1263 switch(content->array.level) {
1264 case LEVEL_LINEAR:
1265 case LEVEL_MULTIPATH:
1266 case 0:
1267 err = sysfs_set_str(content, NULL, "array_state",
1268 "active");
1269 break;
1270 default:
1271 err = sysfs_set_str(content, NULL, "array_state",
1272 "readonly");
1273 /* start mdmon if needed. */
1274 if (!err) {
1275 if (!mdmon_running(st->container_dev))
1276 start_mdmon(st->container_dev);
1277 ping_monitor(devnum2devname(st->container_dev));
1278 }
1279 break;
1280 }
1281 if (!err)
1282 sysfs_set_safemode(content, content->safe_mode_delay);
1283 if (verbose >= 0) {
1284 if (err)
1285 fprintf(stderr, Name
1286 ": array %s now has %d devices",
1287 chosen_name, working + preexist);
1288 else
1289 fprintf(stderr, Name
1290 ": Started %s with %d devices",
1291 chosen_name, working + preexist);
1292 if (preexist)
1293 fprintf(stderr, " (%d new)", working);
1294 fprintf(stderr, "\n");
1295 }
1296 if (!err)
1297 wait_for(chosen_name, mdfd);
1298 close(mdfd);
1299 return 0;
1300 /* FIXME should have an O_EXCL and wait for read-auto */
1301 } else {
1302 if (verbose >= 0)
1303 fprintf(stderr, Name
1304 ": %s assembled with %d devices but "
1305 "not started\n",
1306 chosen_name, working);
1307 close(mdfd);
1308 return 1;
1309 }
1310 }
1311 #endif
1312