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