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