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