]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Allow a uuid of all f's to always match
[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];
3d2c4fc7
DW
399 int rc;
400
1c203a4b 401 if (!st || !st->sb) {
d55e3aef 402 return 2;
da6b5ca9 403 }
3da92f27 404 st->ss->getinfo_super(st, &info);
d7288ddc 405 if (uuid_for_name)
ff54de6e 406 c = fname_from_uuid(st, &info, nbuf, '-');
d7288ddc
N
407 else {
408 c = strchr(info.name, ':');
409 if (c) c++; else c= info.name;
410 }
41a3b72a
NB
411 if (isdigit(*c) && ((ident->autof & 7)==4 || (ident->autof&7)==6))
412 /* /dev/md/d0 style for partitionable */
3d2c4fc7
DW
413 rc = asprintf(&mddev, "/dev/md/d%s", c);
414 else
415 rc = asprintf(&mddev, "/dev/md/%s", c);
416 if (rc < 0)
417 mdfd = -1;
41a3b72a 418 else
3d2c4fc7 419 mdfd = open_mddev(mddev, ident->autof);
60e1bc1a 420 if (mdfd < 0) {
3da92f27 421 st->ss->free_super(st);
60e1bc1a 422 free(devices);
60e1bc1a
NB
423 goto try_again;
424 }
da6b5ca9
NB
425 vers = md_get_version(mdfd);
426 if (ioctl(mdfd, GET_ARRAY_INFO, &inf)==0) {
60e1bc1a
NB
427 for (tmpdev = devlist ;
428 tmpdev && tmpdev->used != 1;
429 tmpdev = tmpdev->next)
430 ;
da6b5ca9 431 fprintf(stderr, Name ": %s already active, cannot restart it!\n", mddev);
60e1bc1a
NB
432 if (tmpdev)
433 fprintf(stderr, Name ": %s needed for %s...\n",
434 mddev, tmpdev->devname);
da6b5ca9 435 close(mdfd);
60e1bc1a 436 mdfd = -1;
3da92f27 437 st->ss->free_super(st);
60e1bc1a 438 free(devices);
60e1bc1a 439 goto try_again;
da6b5ca9 440 }
d55e3aef 441 must_close = 1;
8a46fe84
NB
442 }
443
811e6cbe 444 /* Ok, no bad inconsistancy, we can try updating etc */
bf4fb153 445 bitmap_done = 0;
da6b5ca9 446 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
811e6cbe
NB
447 char *devname = tmpdev->devname;
448 struct stat stb;
5787fa49 449 /* looks like a good enough match to update the super block if needed */
d1f1011b 450#ifndef MDASSEMBLE
5787fa49 451 if (update) {
811e6cbe 452 int dfd;
4b1ac34b
NB
453 /* prepare useful information in info structures */
454 struct stat stb2;
3da92f27 455 struct supertype *tst;
4b1ac34b 456 fstat(mdfd, &stb2);
7d99579f
NB
457
458 if (strcmp(update, "uuid")==0 &&
459 !ident->uuid_set) {
460 int rfd;
461 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
462 read(rfd, ident->uuid, 16) != 16) {
463 *(__u32*)(ident->uuid) = random();
464 *(__u32*)(ident->uuid+1) = random();
465 *(__u32*)(ident->uuid+2) = random();
466 *(__u32*)(ident->uuid+3) = random();
467 }
468 if (rfd >= 0) close(rfd);
7d99579f 469 }
811e6cbe
NB
470 dfd = dev_open(devname, O_RDWR|O_EXCL);
471
0430ed48
NB
472 remove_partitions(dfd);
473
3da92f27
NB
474 tst = dup_super(st);
475 tst->ss->load_super(tst, dfd, NULL);
476 tst->ss->getinfo_super(tst, &info);
811e6cbe 477
7d99579f 478 memcpy(info.uuid, ident->uuid, 16);
e5eac01f 479 strcpy(info.name, ident->name);
811e6cbe
NB
480 info.array.md_minor = minor(stb2.st_rdev);
481
3da92f27
NB
482 tst->ss->update_super(tst, &info, update,
483 devname, verbose,
484 ident->uuid_set, homehost);
e5eac01f
NB
485 if (strcmp(update, "uuid")==0 &&
486 !ident->uuid_set) {
487 ident->uuid_set = 1;
488 memcpy(ident->uuid, info.uuid, 16);
489 }
b8a8ccf9 490 if (dfd < 0)
5787fa49
NB
491 fprintf(stderr, Name ": Cannot open %s for superblock update\n",
492 devname);
3da92f27 493 else if (tst->ss->store_super(tst, dfd))
5787fa49
NB
494 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
495 devname);
496 if (dfd >= 0)
497 close(dfd);
8131b493
NB
498
499 if (strcmp(update, "uuid")==0 &&
bf4fb153 500 ident->bitmap_fd >= 0 && !bitmap_done) {
3da92f27
NB
501 if (bitmap_update_uuid(ident->bitmap_fd,
502 info.uuid,
503 tst->ss->swapuuid) != 0)
bf4fb153
NB
504 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
505 else
506 bitmap_done = 1;
507 }
3da92f27 508 tst->ss->free_super(tst);
d1f1011b
NB
509 } else
510#endif
511 {
30e1b9a5 512 struct supertype *tst = dup_super(st);
da6b5ca9
NB
513 int dfd;
514 dfd = dev_open(devname, O_RDWR|O_EXCL);
515
0430ed48
NB
516 remove_partitions(dfd);
517
3da92f27
NB
518 tst->ss->load_super(tst, dfd, NULL);
519 tst->ss->getinfo_super(tst, &info);
520 tst->ss->free_super(tst);
da6b5ca9 521 close(dfd);
5787fa49
NB
522 }
523
811e6cbe
NB
524 stat(devname, &stb);
525
dab6685f 526 if (verbose > 0)
cd29a5c8 527 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
4b1ac34b 528 devname, mddev, info.disk.raid_disk);
64c4757e 529 devices[devcnt].devname = devname;
64c4757e 530 devices[devcnt].uptodate = 0;
213ee40b
NB
531 devices[devcnt].i = info;
532 devices[devcnt].i.disk.major = major(stb.st_rdev);
533 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
64c4757e 534 if (most_recent < devcnt) {
213ee40b
NB
535 if (devices[devcnt].i.events
536 > devices[most_recent].i.events)
64c4757e
NB
537 most_recent = devcnt;
538 }
b8a8ccf9 539 if (info.array.level == -4)
5787fa49
NB
540 /* with multipath, the raid_disk from the superblock is meaningless */
541 i = devcnt;
542 else
213ee40b 543 i = devices[devcnt].i.disk.raid_disk;
308e1801
NB
544 if (i+1 == 0) {
545 if (nextspare < info.array.raid_disks)
546 nextspare = info.array.raid_disks;
547 i = nextspare++;
08110d41
NB
548 } else {
549 if (i >= info.array.raid_disks &&
550 i >= nextspare)
551 nextspare = i+1;
308e1801 552 }
98c6faba 553 if (i < 10000) {
56eedc1a 554 if (i >= bestcnt) {
98c6faba 555 unsigned int newbestcnt = i+10;
56eedc1a 556 int *newbest = malloc(sizeof(int)*newbestcnt);
98c6faba 557 unsigned int c;
56eedc1a
NB
558 for (c=0; c < newbestcnt; c++)
559 if (c < bestcnt)
560 newbest[c] = best[c];
561 else
562 newbest[c] = -1;
563 if (best)free(best);
564 best = newbest;
565 bestcnt = newbestcnt;
566 }
6a255b69 567 if (best[i] >=0 &&
213ee40b
NB
568 devices[best[i]].i.events
569 == devices[devcnt].i.events
570 && (devices[best[i]].i.disk.minor
571 != devices[devcnt].i.disk.minor)
b8ac1967
NB
572 && st->ss == &super0
573 && info.array.level != LEVEL_MULTIPATH) {
6a255b69
NB
574 /* two different devices with identical superblock.
575 * Could be a mis-detection caused by overlapping
576 * partitions. fail-safe.
577 */
578 fprintf(stderr, Name ": WARNING %s and %s appear"
579 " to have very similar superblocks.\n"
580 " If they are really different, "
581 "please --zero the superblock on one\n"
d2df86e0
NB
582 " If they are the same or overlap,"
583 " please remove one from %s.\n",
584 devices[best[i]].devname, devname,
585 inargv ? "the list" :
586 "the\n DEVICE list in mdadm.conf"
587 );
6a255b69
NB
588 if (must_close) close(mdfd);
589 return 1;
590 }
52826846 591 if (best[i] == -1
213ee40b
NB
592 || (devices[best[i]].i.events
593 < devices[devcnt].i.events))
52826846 594 best[i] = devcnt;
56eedc1a 595 }
64c4757e 596 devcnt++;
df37ffc0 597 }
4b1ac34b 598
64c4757e 599 if (devcnt == 0) {
682c7051 600 fprintf(stderr, Name ": no devices found for %s\n",
64c4757e 601 mddev);
3d2b16e7
NB
602 if (st)
603 st->ss->free_super(st);
d55e3aef 604 if (must_close) close(mdfd);
64c4757e
NB
605 return 1;
606 }
4b1ac34b 607
3d2b16e7
NB
608 if (update && strcmp(update, "byteorder")==0)
609 st->minor_version = 90;
610
3da92f27 611 st->ss->getinfo_super(st, &info);
583315d9 612 clean = info.array.state & 1;
4b1ac34b 613
64c4757e
NB
614 /* now we have some devices that might be suitable.
615 * I wonder how many
616 */
265e0f17
NB
617 avail = malloc(info.array.raid_disks);
618 memset(avail, 0, info.array.raid_disks);
64c4757e 619 okcnt = 0;
52826846 620 sparecnt=0;
56eedc1a 621 for (i=0; i< bestcnt ;i++) {
64c4757e 622 int j = best[i];
ee04451c
NB
623 int event_margin = 1; /* always allow a difference of '1'
624 * like the kernel does
625 */
64c4757e 626 if (j < 0) continue;
d013a55e
NB
627 /* note: we ignore error flags in multipath arrays
628 * as they don't make sense
629 */
4b1ac34b 630 if (info.array.level != -4)
213ee40b
NB
631 if (!(devices[j].i.disk.state & (1<<MD_DISK_SYNC))) {
632 if (!(devices[j].i.disk.state
633 & (1<<MD_DISK_FAULTY)))
aa88f531 634 sparecnt++;
d013a55e 635 continue;
aa88f531 636 }
213ee40b
NB
637 if (devices[j].i.events+event_margin >=
638 devices[most_recent].i.events) {
64c4757e 639 devices[j].uptodate = 1;
265e0f17 640 if (i < info.array.raid_disks) {
52826846 641 okcnt++;
265e0f17
NB
642 avail[i]=1;
643 } else
52826846 644 sparecnt++;
64c4757e
NB
645 }
646 }
265e0f17 647 while (force && !enough(info.array.level, info.array.raid_disks,
583315d9 648 info.array.layout, 1,
265e0f17 649 avail, okcnt)) {
64c4757e
NB
650 /* Choose the newest best drive which is
651 * not up-to-date, update the superblock
652 * and add it.
653 */
52826846 654 int fd;
3da92f27 655 struct supertype *tst;
c5a6f9a6 656 long long current_events;
cd29a5c8 657 chosen_drive = -1;
4b1ac34b 658 for (i=0; i<info.array.raid_disks && i < bestcnt; i++) {
52826846
NB
659 int j = best[i];
660 if (j>=0 &&
661 !devices[j].uptodate &&
213ee40b 662 devices[j].i.events > 0 &&
52826846 663 (chosen_drive < 0 ||
213ee40b
NB
664 devices[j].i.events
665 > devices[chosen_drive].i.events))
52826846
NB
666 chosen_drive = j;
667 }
668 if (chosen_drive < 0)
669 break;
213ee40b 670 current_events = devices[chosen_drive].i.events;
c5a6f9a6 671 add_another:
dab6685f
NB
672 if (verbose >= 0)
673 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
213ee40b
NB
674 devices[chosen_drive].devname,
675 devices[chosen_drive].i.disk.raid_disk,
676 (int)(devices[chosen_drive].i.events),
677 (int)(devices[most_recent].i.events));
8b0dabea 678 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846
NB
679 if (fd < 0) {
680 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
681 devices[chosen_drive].devname);
213ee40b 682 devices[chosen_drive].i.events = 0;
52826846
NB
683 continue;
684 }
3da92f27 685 tst = dup_super(st);
60b435db 686 if (tst->ss->load_super(tst,fd, NULL)) {
52826846
NB
687 close(fd);
688 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
689 devices[chosen_drive].devname);
213ee40b 690 devices[chosen_drive].i.events = 0;
52826846
NB
691 continue;
692 }
213ee40b 693 info.events = devices[most_recent].i.events;
3da92f27 694 tst->ss->update_super(tst, &info, "force-one",
67a8c82d
NB
695 devices[chosen_drive].devname, verbose,
696 0, NULL);
4b1ac34b 697
3da92f27 698 if (tst->ss->store_super(tst, fd)) {
52826846
NB
699 close(fd);
700 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
701 devices[chosen_drive].devname);
213ee40b 702 devices[chosen_drive].i.events = 0;
3da92f27 703 tst->ss->free_super(tst);
52826846
NB
704 continue;
705 }
706 close(fd);
213ee40b 707 devices[chosen_drive].i.events = devices[most_recent].i.events;
52826846 708 devices[chosen_drive].uptodate = 1;
265e0f17 709 avail[chosen_drive] = 1;
52826846 710 okcnt++;
3da92f27 711 tst->ss->free_super(tst);
c5a6f9a6
NB
712
713 /* If there are any other drives of the same vintage,
714 * add them in as well. We can't lose and we might gain
715 */
716 for (i=0; i<info.array.raid_disks && i < bestcnt ; i++) {
717 int j = best[i];
718 if (j >= 0 &&
719 !devices[j].uptodate &&
213ee40b
NB
720 devices[j].i.events > 0 &&
721 devices[j].i.events == current_events) {
c5a6f9a6
NB
722 chosen_drive = j;
723 goto add_another;
724 }
725 }
64c4757e 726 }
52826846
NB
727
728 /* Now we want to look at the superblock which the kernel will base things on
729 * and compare the devices that we think are working with the devices that the
730 * superblock thinks are working.
731 * If there are differences and --force is given, then update this chosen
732 * superblock.
733 */
cd29a5c8 734 chosen_drive = -1;
3da92f27 735 st->ss->free_super(st);
56eedc1a 736 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
737 int j = best[i];
738 int fd;
4b1ac34b 739
52826846
NB
740 if (j<0)
741 continue;
742 if (!devices[j].uptodate)
743 continue;
744 chosen_drive = j;
8b0dabea 745 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
52826846
NB
746 fprintf(stderr, Name ": Cannot open %s: %s\n",
747 devices[j].devname, strerror(errno));
d55e3aef 748 if (must_close) close(mdfd);
52826846
NB
749 return 1;
750 }
3da92f27 751 if (st->ss->load_super(st,fd, NULL)) {
52826846
NB
752 close(fd);
753 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
754 devices[j].devname);
d55e3aef 755 if (must_close) close(mdfd);
52826846
NB
756 return 1;
757 }
758 close(fd);
759 }
3da92f27 760 if (st->sb == NULL) {
4b1ac34b 761 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
d55e3aef 762 if (must_close) close(mdfd);
4b1ac34b
NB
763 return 1;
764 }
3da92f27 765 st->ss->getinfo_super(st, &info);
f35f2525
N
766#ifndef MDASSEMBLE
767 sysfs_init(&info, mdfd, 0);
768#endif
56eedc1a 769 for (i=0; i<bestcnt; i++) {
52826846 770 int j = best[i];
98c6faba 771 unsigned int desired_state;
11a3e71d 772
4b1ac34b 773 if (i < info.array.raid_disks)
11a3e71d
NB
774 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
775 else
776 desired_state = 0;
777
52826846
NB
778 if (j<0)
779 continue;
780 if (!devices[j].uptodate)
781 continue;
4b1ac34b 782
213ee40b
NB
783 devices[j].i.disk.state = desired_state;
784
785 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
68c7d6d7 786 verbose, 0, NULL)) {
52826846 787 if (force) {
dab6685f
NB
788 if (verbose >= 0)
789 fprintf(stderr, Name ": "
790 "clearing FAULTY flag for device %d in %s for %s\n",
791 j, mddev, devices[j].devname);
4b1ac34b 792 change = 1;
52826846 793 } else {
dab6685f
NB
794 if (verbose >= -1)
795 fprintf(stderr, Name ": "
796 "device %d in %s has wrong state in superblock, but %s seems ok\n",
797 i, mddev, devices[j].devname);
52826846
NB
798 }
799 }
4b1ac34b 800#if 0
213ee40b 801 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
52826846
NB
802 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
803 i, mddev);
804 }
4b1ac34b 805#endif
52826846 806 }
c5a6f9a6
NB
807 if (force && !clean &&
808 !enough(info.array.level, info.array.raid_disks,
809 info.array.layout, clean,
810 avail, okcnt)) {
3da92f27 811 change += st->ss->update_super(st, &info, "force-array",
67a8c82d
NB
812 devices[chosen_drive].devname, verbose,
813 0, NULL);
583315d9 814 clean = 1;
d013a55e 815 }
52826846 816
4b1ac34b 817 if (change) {
52826846 818 int fd;
8b0dabea 819 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846 820 if (fd < 0) {
353632d9 821 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
52826846 822 devices[chosen_drive].devname);
d55e3aef 823 if (must_close) close(mdfd);
52826846
NB
824 return 1;
825 }
3da92f27 826 if (st->ss->store_super(st, fd)) {
52826846
NB
827 close(fd);
828 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
829 devices[chosen_drive].devname);
d55e3aef 830 if (must_close) close(mdfd);
52826846
NB
831 return 1;
832 }
833 close(fd);
52826846
NB
834 }
835
353632d9
NB
836 /* If we are in the middle of a reshape we may need to restore saved data
837 * that was moved aside due to the reshape overwriting live data
838 * The code of doing this lives in Grow.c
839 */
39c5a909 840#ifndef MDASSEMBLE
353632d9
NB
841 if (info.reshape_active) {
842 int err = 0;
843 int *fdlist = malloc(sizeof(int)* bestcnt);
844 for (i=0; i<bestcnt; i++) {
845 int j = best[i];
846 if (j >= 0) {
847 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
848 if (fdlist[i] < 0) {
849 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
850 devices[j].devname);
851 err = 1;
852 break;
853 }
854 } else
855 fdlist[i] = -1;
856 }
857 if (!err)
06b0d786 858 err = Grow_restart(st, &info, fdlist, bestcnt, backup_file);
353632d9
NB
859 while (i>0) {
860 i--;
861 if (fdlist[i]>=0) close(fdlist[i]);
862 }
863 if (err) {
864 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
d55e3aef 865 if (must_close) close(mdfd);
353632d9
NB
866 return err;
867 }
868 }
39c5a909 869#endif
aa88f531
NB
870 /* count number of in-sync devices according to the superblock.
871 * We must have this number to start the array without -s or -R
872 */
4b1ac34b 873 req_cnt = info.array.working_disks;
aa88f531 874
64c4757e
NB
875 /* Almost ready to actually *do* something */
876 if (!old_linux) {
fbf8a0b7 877 int rv;
a19c88b8 878
f35f2525 879 rv = set_array_info(mdfd, st, &info);
fbf8a0b7 880 if (rv) {
f35f2525 881 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
64c4757e 882 mddev, strerror(errno));
d55e3aef 883 if (must_close) close(mdfd);
64c4757e
NB
884 return 1;
885 }
11484a63 886 if (ident->bitmap_fd >= 0) {
c82f047c
NB
887 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
888 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
d55e3aef 889 if (must_close) close(mdfd);
c82f047c
NB
890 return 1;
891 }
7ef02d01
NB
892 } else if (ident->bitmap_file) {
893 /* From config file */
894 int bmfd = open(ident->bitmap_file, O_RDWR);
895 if (bmfd < 0) {
896 fprintf(stderr, Name ": Could not open bitmap file %s\n",
897 ident->bitmap_file);
d55e3aef 898 if (must_close) close(mdfd);
7ef02d01
NB
899 return 1;
900 }
901 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
902 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
903 close(bmfd);
d55e3aef 904 if (must_close) close(mdfd);
7ef02d01
NB
905 return 1;
906 }
907 close(bmfd);
c82f047c 908 }
7ef02d01 909
52826846 910 /* First, add the raid disks, but add the chosen one last */
56eedc1a 911 for (i=0; i<= bestcnt; i++) {
52826846 912 int j;
56eedc1a 913 if (i < bestcnt) {
52826846
NB
914 j = best[i];
915 if (j == chosen_drive)
916 continue;
917 } else
918 j = chosen_drive;
919
56eedc1a 920 if (j >= 0 /* && devices[j].uptodate */) {
f35f2525 921 rv = add_disk(mdfd, st, &info, &devices[j].i);
7801ac20 922
a19c88b8 923 if (rv) {
213ee40b
NB
924 fprintf(stderr, Name ": failed to add "
925 "%s to %s: %s\n",
64c4757e
NB
926 devices[j].devname,
927 mddev,
928 strerror(errno));
213ee40b
NB
929 if (i < info.array.raid_disks
930 || i == bestcnt)
52826846
NB
931 okcnt--;
932 else
933 sparecnt--;
dab6685f 934 } else if (verbose > 0)
213ee40b
NB
935 fprintf(stderr, Name ": added %s "
936 "to %s as %d\n",
937 devices[j].devname, mddev,
938 devices[j].i.disk.raid_disk);
dab6685f 939 } else if (verbose > 0 && i < info.array.raid_disks)
213ee40b
NB
940 fprintf(stderr, Name ": no uptodate device for "
941 "slot %d of %s\n",
64c4757e
NB
942 i, mddev);
943 }
aba69144 944
598f0d58
NB
945 if (info.array.level == LEVEL_CONTAINER) {
946 if (verbose >= 0) {
947 fprintf(stderr, Name ": Container %s has been "
948 "assembled with %d drive%s",
949 mddev, okcnt, okcnt==1?"":"s");
950 if (okcnt < info.array.raid_disks)
951 fprintf(stderr, " (out of %d)",
952 info.array.raid_disks);
953 fprintf(stderr, "\n");
954 }
955 if (must_close)
956 close(mdfd);
957 return 0;
958 }
959
64c4757e 960 if (runstop == 1 ||
b8a8ccf9 961 (runstop <= 0 &&
583315d9
NB
962 ( enough(info.array.level, info.array.raid_disks,
963 info.array.layout, clean, avail, okcnt) &&
aa88f531
NB
964 (okcnt >= req_cnt || start_partial_ok)
965 ))) {
82b27616 966 if (ioctl(mdfd, RUN_ARRAY, NULL)==0) {
dab6685f
NB
967 if (verbose >= 0) {
968 fprintf(stderr, Name ": %s has been started with %d drive%s",
969 mddev, okcnt, okcnt==1?"":"s");
b8a8ccf9 970 if (okcnt < info.array.raid_disks)
dab6685f
NB
971 fprintf(stderr, " (out of %d)", info.array.raid_disks);
972 if (sparecnt)
973 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
974 fprintf(stderr, ".\n");
975 }
589395d6
NB
976 if (must_close) {
977 int usecs = 1;
978 close(mdfd);
979 /* There is a nasty race with 'mdadm --monitor'.
980 * If it opens this device before we close it,
981 * it gets an incomplete open on which IO
598f0d58
NB
982 * doesn't work and the capacity is
983 * wrong.
589395d6
NB
984 * If we reopen (to check for layered devices)
985 * before --monitor closes, we loose.
986 *
987 * So: wait upto 1 second for there to be
988 * a non-zero capacity.
989 */
990 while (usecs < 1000) {
991 mdfd = open(mddev, O_RDONLY);
992 if (mdfd >= 0) {
beae1dfe
NB
993 unsigned long long size;
994 if (get_dev_size(mdfd, NULL, &size) &&
589395d6
NB
995 size > 0)
996 break;
997 close(mdfd);
998 }
999 usleep(usecs);
1000 usecs <<= 1;
1001 }
1002 }
64c4757e 1003 return 0;
82b27616 1004 }
682c7051 1005 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
64c4757e 1006 mddev, strerror(errno));
583315d9
NB
1007
1008 if (!enough(info.array.level, info.array.raid_disks,
1009 info.array.layout, 1, avail, okcnt))
1010 fprintf(stderr, Name ": Not enough devices to "
1011 "start the array.\n");
1012 else if (!enough(info.array.level,
1013 info.array.raid_disks,
1014 info.array.layout, clean,
1015 avail, okcnt))
1016 fprintf(stderr, Name ": Not enough devices to "
1017 "start the array while not clean "
1018 "- consider --force.\n");
1019
1c203a4b
NB
1020 if (must_close) {
1021 ioctl(mdfd, STOP_ARRAY, NULL);
1022 close(mdfd);
1023 }
64c4757e
NB
1024 return 1;
1025 }
82b27616 1026 if (runstop == -1) {
b8a8ccf9 1027 fprintf(stderr, Name ": %s assembled from %d drive%s",
52826846 1028 mddev, okcnt, okcnt==1?"":"s");
b8a8ccf9
NB
1029 if (okcnt != info.array.raid_disks)
1030 fprintf(stderr, " (out of %d)", info.array.raid_disks);
1031 fprintf(stderr, ", but not started.\n");
d55e3aef 1032 if (must_close) close(mdfd);
64c4757e 1033 return 0;
82b27616 1034 }
4855f95c 1035 if (verbose >= -1) {
dab6685f
NB
1036 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1037 if (sparecnt)
1038 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
583315d9
NB
1039 if (!enough(info.array.level, info.array.raid_disks,
1040 info.array.layout, 1, avail, okcnt))
dab6685f 1041 fprintf(stderr, " - not enough to start the array.\n");
583315d9
NB
1042 else if (!enough(info.array.level,
1043 info.array.raid_disks,
1044 info.array.layout, clean,
1045 avail, okcnt))
1046 fprintf(stderr, " - not enough to start the "
1047 "array while not clean - consider "
1048 "--force.\n");
dab6685f
NB
1049 else {
1050 if (req_cnt == info.array.raid_disks)
1051 fprintf(stderr, " - need all %d to start it", req_cnt);
1052 else
1053 fprintf(stderr, " - need %d of %d to start", req_cnt, info.array.raid_disks);
1054 fprintf(stderr, " (use --run to insist).\n");
1055 }
aa88f531 1056 }
1c203a4b
NB
1057 if (must_close) {
1058 ioctl(mdfd, STOP_ARRAY, NULL);
1059 close(mdfd);
1060 }
64c4757e 1061 return 1;
82b27616 1062 } else {
52826846
NB
1063 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1064 * been updated to point to the current locations of devices.
1065 * so we can just start the array
82b27616 1066 */
cd29a5c8 1067 unsigned long dev;
213ee40b
NB
1068 dev = makedev(devices[chosen_drive].i.disk.major,
1069 devices[chosen_drive].i.disk.minor);
82b27616
NB
1070 if (ioctl(mdfd, START_ARRAY, dev)) {
1071 fprintf(stderr, Name ": Cannot start array: %s\n",
1072 strerror(errno));
1073 }
aba69144 1074
64c4757e 1075 }
d55e3aef 1076 if (must_close) close(mdfd);
e0d19036 1077 return 0;
64c4757e 1078}