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