]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Remove content from mddev_dev
[thirdparty/mdadm.git] / Assemble.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
e736b623 4 * Copyright (C) 2001-2009 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
e736b623 22 * Email: <neilb@suse.de>
64c4757e
NB
23 */
24
9a9dab36 25#include "mdadm.h"
41a3b72a 26#include <ctype.h>
64c4757e 27
624920bb
NB
28static int name_matches(char *found, char *required, char *homehost)
29{
30 /* See if the name found matches the required name, possibly
31 * prefixed with 'homehost'
32 */
33 char fnd[33];
34
35 strncpy(fnd, found, 32);
36 fnd[32] = 0;
37 if (strcmp(found, required)==0)
38 return 1;
39 if (homehost) {
40 int l = strlen(homehost);
41 if (l < 32 && fnd[l] == ':' &&
42 strcmp(fnd+l+1, required)==0)
43 return 1;
44 }
45 return 0;
46}
47
9008ed1c 48static int is_member_busy(char *metadata_version)
2de8884f
DW
49{
50 /* check if the given member array is active */
51 struct mdstat_ent *mdstat = mdstat_read(1, 0);
52 struct mdstat_ent *ent;
53 int busy = 0;
54
55 for (ent = mdstat; ent; ent = ent->next) {
56 if (ent->metadata_version == NULL)
57 continue;
58 if (strncmp(ent->metadata_version, "external:", 9) != 0)
59 continue;
60 if (!is_subarray(&ent->metadata_version[9]))
61 continue;
62 /* Skip first char - it can be '/' or '-' */
63 if (strcmp(&ent->metadata_version[10], metadata_version+1) == 0) {
64 busy = 1;
65 break;
66 }
67 }
68 free_mdstat(mdstat);
69
70 return busy;
71}
72
fa56eddb 73static int ident_matches(struct mddev_ident *ident,
08fb91a3
N
74 struct mdinfo *content,
75 struct supertype *tst,
76 char *homehost,
77 char *update, char *devname)
78{
79
80 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
81 same_uuid(content->uuid, ident->uuid, tst->ss->swapuuid)==0) {
82 if (devname)
83 fprintf(stderr, Name ": %s has wrong uuid.\n",
84 devname);
85 return 0;
86 }
87 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
88 name_matches(content->name, ident->name, homehost)==0) {
89 if (devname)
90 fprintf(stderr, Name ": %s has wrong name.\n",
91 devname);
92 return 0;
93 }
94 if (ident->super_minor != UnSet &&
95 ident->super_minor != content->array.md_minor) {
96 if (devname)
97 fprintf(stderr, Name ": %s has wrong super-minor.\n",
98 devname);
99 return 0;
100 }
101 if (ident->level != UnSet &&
102 ident->level != content->array.level) {
103 if (devname)
104 fprintf(stderr, Name ": %s has wrong raid level.\n",
105 devname);
106 return 0;
107 }
108 if (ident->raid_disks != UnSet &&
109 ident->raid_disks!= content->array.raid_disks) {
110 if (devname)
111 fprintf(stderr, Name ": %s requires wrong number of drives.\n",
112 devname);
113 return 0;
114 }
115 return 1;
116}
117
118
7f91af49 119int Assemble(struct supertype *st, char *mddev,
fa56eddb 120 struct mddev_ident *ident,
a655e550 121 struct mddev_dev *devlist, char *backup_file,
64c4757e 122 int readonly, int runstop,
0ac91628 123 char *update, char *homehost, int require_homehost,
64c4757e
NB
124 int verbose, int force)
125{
126 /*
52826846
NB
127 * The task of Assemble is to find a collection of
128 * devices that should (according to their superblocks)
129 * form an array, and to give this collection to the MD driver.
130 * In Linux-2.4 and later, this involves submitting a
64c4757e
NB
131 * SET_ARRAY_INFO ioctl with no arg - to prepare
132 * the array - and then submit a number of
133 * ADD_NEW_DISK ioctls to add disks into
134 * the array. Finally RUN_ARRAY might
135 * be submitted to start the array.
136 *
137 * Much of the work of Assemble is in finding and/or
138 * checking the disks to make sure they look right.
139 *
4b1ac34b 140 * If mddev is not set, then scan must be set and we
64c4757e
NB
141 * read through the config file for dev+uuid mapping
142 * We recurse, setting mddev, for each device that
143 * - isn't running
4b1ac34b 144 * - has a valid uuid (or any uuid if !uuidset)
64c4757e
NB
145 *
146 * If mddev is set, we try to determine state of md.
147 * check version - must be at least 0.90.0
148 * check kernel version. must be at least 2.4.
149 * If not, we can possibly fall back on START_ARRAY
150 * Try to GET_ARRAY_INFO.
151 * If possible, give up
152 * If not, try to STOP_ARRAY just to make sure
153 *
154 * If !uuidset and scan, look in conf-file for uuid
155 * If not found, give up
b8a8ccf9 156 * If !devlist and scan and uuidset, get list of devs from conf-file
64c4757e
NB
157 *
158 * For each device:
159 * Check superblock - discard if bad
160 * Check uuid (set if we don't have one) - discard if no match
5787fa49 161 * Check superblock similarity if we have a superblock - discard if different
4b1ac34b 162 * Record events, devicenum
64c4757e 163 * This should give us a list of devices for the array
4b1ac34b 164 * We should collect the most recent event number
64c4757e
NB
165 *
166 * Count disks with recent enough event count
167 * While force && !enough disks
168 * Choose newest rejected disks, update event count
169 * mark clean and rewrite superblock
170 * If recent kernel:
171 * SET_ARRAY_INFO
172 * foreach device with recent events : ADD_NEW_DISK
173 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
174 * If old kernel:
175 * Check the device numbers in superblock are right
176 * update superblock if any changes
177 * START_ARRAY
178 *
179 */
c30e5369
N
180 int mdfd;
181 int clean;
f05641cf
N
182 int auto_assem = (mddev == NULL && !ident->uuid_set &&
183 ident->super_minor == UnSet && ident->name[0] == 0
aa7c284c 184 && (ident->container == NULL || ident->member == NULL));
64c4757e 185 int old_linux = 0;
c30e5369 186 int vers = vers; /* Keep gcc quite - it really is initialised */
64c4757e
NB
187 struct {
188 char *devname;
213ee40b
NB
189 int uptodate; /* set once we decide that this device is as
190 * recent as everything else in the array.
191 */
192 struct mdinfo i;
5787fa49 193 } *devices;
02e7c5b7 194 char *devmap;
56eedc1a 195 int *best = NULL; /* indexed by raid_disk */
f21e18ca 196 int bestcnt = 0;
98c6faba 197 int devcnt = 0;
1ff98339 198 unsigned int okcnt, sparecnt, rebuilding_cnt;
98c6faba 199 unsigned int req_cnt;
f21e18ca 200 int i;
64c4757e 201 int most_recent = 0;
cd29a5c8 202 int chosen_drive;
52826846 203 int change = 0;
cd29a5c8 204 int inargv = 0;
52437b4f 205 int report_missmatch;
bf4fb153 206 int bitmap_done;
7f91af49
N
207 int start_partial_ok = (runstop >= 0) &&
208 (force || devlist==NULL || auto_assem);
98c6faba 209 unsigned int num_devs;
a655e550 210 struct mddev_dev *tmpdev;
4b1ac34b 211 struct mdinfo info;
98dbd966 212 struct mdinfo *content = NULL;
265e0f17 213 char *avail;
308e1801 214 int nextspare = 0;
197e3eb6 215 char *name = NULL;
69207ff6 216 int trustworthy;
a04d5763 217 char chosen_name[1024];
8a46fe84 218
682c7051 219 if (get_linux_version() < 2004000)
64c4757e
NB
220 old_linux = 1;
221
64c4757e 222 /*
52826846
NB
223 * If any subdevs are listed, then any that don't
224 * match ident are discarded. Remainder must all match and
225 * become the array.
226 * If no subdevs, then we scan all devices in the config file, but
227 * there must be something in the identity
64c4757e 228 */
64c4757e 229
cd29a5c8 230 if (!devlist &&
52826846 231 ident->uuid_set == 0 &&
f21e18ca 232 (ident->super_minor < 0 || ident->super_minor == UnSet) &&
e0fe762a
N
233 ident->name[0] == 0 &&
234 (ident->container == NULL || ident->member == NULL) &&
52826846
NB
235 ident->devices == NULL) {
236 fprintf(stderr, Name ": No identity information available for %s - cannot assemble.\n",
8a46fe84 237 mddev ? mddev : "further assembly");
52826846 238 return 1;
64c4757e 239 }
71d60c48 240
cd29a5c8 241 if (devlist == NULL)
8aec876d 242 devlist = conf_get_devs();
7f91af49 243 else if (mddev)
da6b5ca9 244 inargv = 1;
64c4757e 245
52437b4f 246 report_missmatch = ((inargv && verbose >= 0) || verbose > 0);
60e1bc1a 247 try_again:
c30e5369
N
248 /* We come back here when doing auto-assembly and attempting some
249 * set of devices failed. Those are now marked as ->used==2 and
250 * we ignore them and try again
251 */
60e1bc1a 252
5787fa49
NB
253 tmpdev = devlist; num_devs = 0;
254 while (tmpdev) {
da6b5ca9
NB
255 if (tmpdev->used)
256 tmpdev->used = 2;
257 else
258 num_devs++;
5787fa49
NB
259 tmpdev = tmpdev->next;
260 }
5787fa49 261
82d9eba6 262 if (!st && ident->st) st = ident->st;
64c4757e 263
dab6685f 264 if (verbose>0)
82b27616 265 fprintf(stderr, Name ": looking for devices for %s\n",
8a46fe84 266 mddev ? mddev : "further assembly");
82b27616 267
811e6cbe
NB
268 /* first walk the list of devices to find a consistent set
269 * that match the criterea, if that is possible.
c30e5369 270 * We flag the ones we like with 'used'.
811e6cbe
NB
271 */
272 for (tmpdev = devlist;
273 tmpdev;
274 tmpdev = tmpdev->next) {
275 char *devname = tmpdev->devname;
64c4757e
NB
276 int dfd;
277 struct stat stb;
3da92f27 278 struct supertype *tst = dup_super(st);
4e8d9f0a 279 struct dev_policy *pol = NULL;
52826846 280
da6b5ca9
NB
281 if (tmpdev->used > 1) continue;
282
52826846 283 if (ident->devices &&
56eedc1a 284 !match_oneof(ident->devices, devname)) {
52437b4f 285 if (report_missmatch)
56eedc1a 286 fprintf(stderr, Name ": %s is not one of %s\n", devname, ident->devices);
52826846 287 continue;
56eedc1a 288 }
4b1ac34b 289
8b0dabea 290 dfd = dev_open(devname, O_RDONLY|O_EXCL);
64c4757e 291 if (dfd < 0) {
52437b4f 292 if (report_missmatch)
682c7051 293 fprintf(stderr, Name ": cannot open device %s: %s\n",
64c4757e 294 devname, strerror(errno));
da6b5ca9 295 tmpdev->used = 2;
52826846
NB
296 } else if (fstat(dfd, &stb)< 0) {
297 /* Impossible! */
298 fprintf(stderr, Name ": fstat failed for %s: %s\n",
299 devname, strerror(errno));
da6b5ca9 300 tmpdev->used = 2;
cd29a5c8
NB
301 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
302 fprintf(stderr, Name ": %s is not a block device.\n",
52826846 303 devname);
da6b5ca9 304 tmpdev->used = 2;
82d9eba6 305 } else if (!tst && (tst = guess_super(dfd)) == NULL) {
52437b4f 306 if (report_missmatch)
da6b5ca9
NB
307 fprintf(stderr, Name ": no recogniseable superblock on %s\n",
308 devname);
309 tmpdev->used = 2;
1ff98339
N
310 } else if (tst->ss->load_super(tst,dfd, NULL)) {
311 if (report_missmatch)
0f22b998
N
312 fprintf(stderr, Name ": no RAID superblock on %s\n",
313 devname);
d68ea4d7 314 tmpdev->used = 2;
0f22b998
N
315 } else if (tst->ss->compare_super == NULL) {
316 if (report_missmatch)
317 fprintf(stderr, Name ": Cannot assemble %s metadata on %s\n",
318 tst->ss->name, devname);
0f22b998 319 tmpdev->used = 2;
31015d57 320 } else if (auto_assem && st == NULL &&
4e8d9f0a 321 !conf_test_metadata(tst->ss->name, (pol = devnum_policy(stb.st_rdev)),
d1d3482b 322 tst->ss->match_home(tst, homehost) == 1)) {
31015d57
N
323 if (report_missmatch)
324 fprintf(stderr, Name ": %s has metadata type %s for which "
325 "auto-assembly is disabled\n",
326 devname, tst->ss->name);
327 tmpdev->used = 2;
52826846 328 } else {
98dbd966
DW
329 content = &info;
330 memset(content, 0, sizeof(*content));
a5d85af7 331 tst->ss->getinfo_super(tst, content, NULL);
64c4757e 332 }
c06487ce 333 if (dfd >= 0) close(dfd);
d68ea4d7
N
334 if (tmpdev->used == 2) {
335 if (auto_assem)
336 /* Ignore unrecognised devices during auto-assembly */
337 goto loop;
338 if (ident->uuid_set || ident->name[0] ||
339 ident->super_minor != UnSet)
340 /* Ignore unrecognised device if looking for
341 * specific array */
342 goto loop;
343
344
345 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
346 devname);
347 if (st)
348 st->ss->free_super(st);
349 dev_policy_free(pol);
350 return 1;
351 }
52826846 352
d68ea4d7 353 if (tst->ss->container_content
9008ed1c
N
354 && tst->loaded_container) {
355 /* tmpdev is a container. We need to be either
356 * looking for a member, or auto-assembling
357 */
358 if (st) {
359 /* already found some components, this cannot
360 * be another one.
361 */
362 if (report_missmatch)
363 fprintf(stderr, Name ": %s is a container, but we are looking for components\n",
364 devname);
365 goto loop;
366 }
367
368 if (ident->container) {
369 if (ident->container[0] == '/' &&
370 !same_dev(ident->container, devname)) {
371 if (report_missmatch)
372 fprintf(stderr, Name ": %s is not the container required (%s)\n",
373 devname, ident->container);
374 goto loop;
375 }
376 if (ident->container[0] != '/') {
377 /* we have a uuid */
378 int uuid[4];
379 if (!parse_uuid(ident->container, uuid) ||
380 !same_uuid(content->uuid, uuid, tst->ss->swapuuid)) {
381 if (report_missmatch)
382 fprintf(stderr, Name ": %s has wrong UUID to be required container\n",
383 devname);
384 goto loop;
385 }
386 }
387 }
388 /* It is worth looking inside this container.
389 */
7636b5a8
N
390 if (verbose > 0)
391 fprintf(stderr, Name ": looking in container %s\n",
392 devname);
1415fe4b 393
2b594614 394 content = tst->ss->container_content(tst, NULL);
9008ed1c 395 next_member:
1415fe4b 396
3ef383aa
DW
397 if (!content)
398 goto loop; /* empty container */
9008ed1c 399
2b594614 400 if (content->next == NULL)
f7ad3ccc 401 tmpdev->used = 2;
9008ed1c 402
bac0d92e
N
403 if (!ident_matches(ident, content, tst,
404 homehost, update,
2b594614
N
405 report_missmatch ? devname : NULL)) {
406 content = content->next;
1415fe4b 407 goto next_member;
2b594614 408 }
838acbc2 409
9008ed1c
N
410 /* we have the one container we need, don't keep
411 * looking. If the chosen member is active, skip.
412 */
413 if (is_member_busy(content->text_version)) {
f7ad3ccc
N
414 if (report_missmatch)
415 fprintf(stderr, Name ": member %s in %s is already assembled\n",
416 content->text_version,
417 devname);
8a0a0ded 418 skip:
2b594614
N
419 content = content->next;
420 if (content)
8a0a0ded 421 goto next_member;
f7ad3ccc
N
422 tst->ss->free_super(tst);
423 tst = NULL;
9008ed1c
N
424 if (auto_assem)
425 goto loop;
4e8d9f0a 426 dev_policy_free(pol);
9008ed1c
N
427 return 1;
428 }
8a0a0ded
N
429 if (ident->member && ident->member[0]) {
430 char *s = strchr(content->text_version+1, '/');
431 if (s == NULL) {
432 fprintf(stderr, Name ": badly formatted version: %s\n",
433 content->text_version);
434 goto skip;
435 }
436 if (strcmp(ident->member, s+1) != 0) {
437 if (report_missmatch)
438 fprintf(stderr,
439 Name ": skipping wrong member %s\n",
440 content->text_version);
441 goto skip;
442 }
443 }
9008ed1c 444 st = tst; tst = NULL;
4c1c3ad8 445 if (!auto_assem && inargv && tmpdev->next != NULL) {
9008ed1c
N
446 fprintf(stderr, Name ": %s is a container, but is not "
447 "only device given: confused and aborting\n",
448 devname);
449 st->ss->free_super(st);
4e8d9f0a 450 dev_policy_free(pol);
9008ed1c
N
451 return 1;
452 }
7636b5a8
N
453 if (verbose > 0)
454 fprintf(stderr, Name ": found match on member %s in %s\n",
455 content->text_version, devname);
9008ed1c
N
456 break;
457 }
bac0d92e
N
458
459 if (ident->container || ident->member) {
460 /* No chance of this matching if we don't have
461 * a container */
462 if (report_missmatch)
463 fprintf(stderr, Name "%s is not a container, and one is required.\n",
464 devname);
465 goto loop;
466 }
467
468 if (!ident_matches(ident, content, tst,
469 homehost, update,
470 report_missmatch ? devname : NULL))
471 goto loop;
472
83b6208e 473 if (st == NULL)
3da92f27
NB
474 st = dup_super(tst);
475 if (st->minor_version == -1)
476 st->minor_version = tst->minor_version;
83b6208e
NB
477 if (st->ss != tst->ss ||
478 st->minor_version != tst->minor_version ||
64557c33 479 st->ss->compare_super(st, tst) != 0) {
83b6208e 480 /* Some mismatch. If exactly one array matches this host,
da6b5ca9
NB
481 * we can resolve on that one.
482 * Or, if we are auto assembling, we just ignore the second
483 * for now.
83b6208e 484 */
c30e5369 485 if (auto_assem)
df37ffc0 486 goto loop;
83b6208e 487 if (homehost) {
3da92f27
NB
488 int first = st->ss->match_home(st, homehost);
489 int last = tst->ss->match_home(tst, homehost);
9362c1c8
N
490 if (first != last &&
491 (first == 1 || last == 1)) {
83b6208e
NB
492 /* We can do something */
493 if (first) {/* just ignore this one */
52437b4f 494 if (report_missmatch)
83b6208e
NB
495 fprintf(stderr, Name ": %s misses out due to wrong homehost\n",
496 devname);
df37ffc0 497 goto loop;
83b6208e 498 } else { /* reject all those sofar */
a655e550 499 struct mddev_dev *td;
52437b4f 500 if (report_missmatch)
83b6208e
NB
501 fprintf(stderr, Name ": %s overrides previous devices due to good homehost\n",
502 devname);
503 for (td=devlist; td != tmpdev; td=td->next)
504 if (td->used == 1)
505 td->used = 0;
506 tmpdev->used = 1;
df37ffc0 507 goto loop;
83b6208e
NB
508 }
509 }
510 }
52826846
NB
511 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
512 devname);
3da92f27
NB
513 tst->ss->free_super(tst);
514 st->ss->free_super(st);
4e8d9f0a 515 dev_policy_free(pol);
52826846 516 return 1;
64c4757e
NB
517 }
518
811e6cbe 519 tmpdev->used = 1;
df37ffc0
NB
520
521 loop:
4e8d9f0a
N
522 dev_policy_free(pol);
523 pol = NULL;
3d2b16e7
NB
524 if (tst)
525 tst->ss->free_super(tst);
811e6cbe
NB
526 }
527
98dbd966 528 if (!st || !st->sb || !content)
c30e5369
N
529 return 2;
530
05833051 531 /* Now need to open the array device. Use create_mddev */
98dbd966 532 if (content == &info)
a5d85af7 533 st->ss->getinfo_super(st, content, NULL);
3d2c4fc7 534
69207ff6 535 trustworthy = FOREIGN;
05833051 536 name = content->name;
745f72f6
N
537 switch (st->ss->match_home(st, homehost)
538 ?: st->ss->match_home(st, "any")) {
69207ff6
N
539 case 1:
540 trustworthy = LOCAL;
98dbd966 541 name = strchr(content->name, ':');
69207ff6
N
542 if (name)
543 name++;
3d2c4fc7 544 else
98dbd966 545 name = content->name;
69207ff6 546 break;
c30e5369 547 }
05833051 548 if (!auto_assem)
aa7c284c 549 /* If the array is listed in mdadm.conf or on
ac2ecf55
N
550 * command line, then we trust the name
551 * even if the array doesn't look local
552 */
553 trustworthy = LOCAL;
554
05833051 555 if (name[0] == 0 &&
98dbd966
DW
556 content->array.level == LEVEL_CONTAINER) {
557 name = content->text_version;
a4bc1720
N
558 trustworthy = METADATA;
559 }
0ac91628
N
560
561 if (name[0] && trustworthy != LOCAL &&
562 ! require_homehost &&
563 conf_name_is_free(name))
564 trustworthy = LOCAL;
565
7cdc0872
N
566 if (trustworthy == LOCAL &&
567 strchr(name, ':'))
568 /* Ignore 'host:' prefix of name */
569 name = strchr(name, ':')+1;
570
a04d5763
N
571 mdfd = create_mddev(mddev, name, ident->autof, trustworthy,
572 chosen_name);
c30e5369
N
573 if (mdfd < 0) {
574 st->ss->free_super(st);
c30e5369 575 if (auto_assem)
60e1bc1a 576 goto try_again;
c30e5369
N
577 return 1;
578 }
a04d5763 579 mddev = chosen_name;
c30e5369
N
580 vers = md_get_version(mdfd);
581 if (vers < 9000) {
582 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
583 " Upgrade your kernel or try --build\n");
584 close(mdfd);
585 return 1;
586 }
66afdfa9 587 if (mddev_busy(fd2devnum(mdfd))) {
c30e5369
N
588 fprintf(stderr, Name ": %s already active, cannot restart it!\n",
589 mddev);
590 for (tmpdev = devlist ;
591 tmpdev && tmpdev->used != 1;
592 tmpdev = tmpdev->next)
593 ;
594 if (tmpdev && auto_assem)
595 fprintf(stderr, Name ": %s needed for %s...\n",
596 mddev, tmpdev->devname);
597 close(mdfd);
598 mdfd = -3;
599 st->ss->free_super(st);
c30e5369
N
600 if (auto_assem)
601 goto try_again;
602 return 1;
8a46fe84 603 }
c30e5369 604 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
8a46fe84 605
9008ed1c
N
606#ifndef MDASSEMBLE
607 if (content != &info) {
608 /* This is a member of a container. Try starting the array. */
609 return assemble_container_content(st, mdfd, content, runstop,
610 chosen_name, verbose);
611 }
612#endif
811e6cbe 613 /* Ok, no bad inconsistancy, we can try updating etc */
bf4fb153 614 bitmap_done = 0;
6e46bf34 615 content->update_private = NULL;
d7f7ebb7 616 devices = malloc(num_devs * sizeof(*devices));
02e7c5b7 617 devmap = calloc(num_devs * content->array.raid_disks, 1);
da6b5ca9 618 for (tmpdev = devlist; tmpdev; tmpdev=tmpdev->next) if (tmpdev->used == 1) {
811e6cbe
NB
619 char *devname = tmpdev->devname;
620 struct stat stb;
5787fa49 621 /* looks like a good enough match to update the super block if needed */
d1f1011b 622#ifndef MDASSEMBLE
5787fa49 623 if (update) {
811e6cbe 624 int dfd;
4b1ac34b
NB
625 /* prepare useful information in info structures */
626 struct stat stb2;
3da92f27 627 struct supertype *tst;
1e2b2765 628 int err;
4b1ac34b 629 fstat(mdfd, &stb2);
7d99579f
NB
630
631 if (strcmp(update, "uuid")==0 &&
632 !ident->uuid_set) {
633 int rfd;
634 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
635 read(rfd, ident->uuid, 16) != 16) {
636 *(__u32*)(ident->uuid) = random();
637 *(__u32*)(ident->uuid+1) = random();
638 *(__u32*)(ident->uuid+2) = random();
639 *(__u32*)(ident->uuid+3) = random();
640 }
641 if (rfd >= 0) close(rfd);
7d99579f 642 }
811e6cbe
NB
643 dfd = dev_open(devname, O_RDWR|O_EXCL);
644
0430ed48
NB
645 remove_partitions(dfd);
646
3da92f27 647 tst = dup_super(st);
9f22b13f
N
648 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
649 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
650 devname);
651 if (dfd >= 0)
652 close(dfd);
653 close(mdfd);
d7f7ebb7 654 free(devices);
02e7c5b7 655 free(devmap);
9f22b13f
N
656 return 1;
657 }
02e7c5b7 658 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
811e6cbe 659
98dbd966
DW
660 memcpy(content->uuid, ident->uuid, 16);
661 strcpy(content->name, ident->name);
662 content->array.md_minor = minor(stb2.st_rdev);
811e6cbe 663
1e2b2765
N
664 if (strcmp(update, "byteorder") == 0)
665 err = 0;
666 else
667 err = tst->ss->update_super(tst, content, update,
668 devname, verbose,
669 ident->uuid_set,
670 homehost);
671 if (err < 0) {
672 fprintf(stderr,
673 Name ": --update=%s not understood"
674 " for %s metadata\n",
675 update, tst->ss->name);
676 tst->ss->free_super(tst);
677 free(tst);
678 close(mdfd);
679 close(dfd);
d7f7ebb7 680 free(devices);
02e7c5b7 681 free(devmap);
1e2b2765
N
682 return 1;
683 }
e5eac01f
NB
684 if (strcmp(update, "uuid")==0 &&
685 !ident->uuid_set) {
686 ident->uuid_set = 1;
98dbd966 687 memcpy(ident->uuid, content->uuid, 16);
e5eac01f 688 }
1e2b2765 689 if (tst->ss->store_super(tst, dfd))
5787fa49
NB
690 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
691 devname);
1e2b2765 692 close(dfd);
8131b493
NB
693
694 if (strcmp(update, "uuid")==0 &&
bf4fb153 695 ident->bitmap_fd >= 0 && !bitmap_done) {
3da92f27 696 if (bitmap_update_uuid(ident->bitmap_fd,
98dbd966 697 content->uuid,
3da92f27 698 tst->ss->swapuuid) != 0)
bf4fb153
NB
699 fprintf(stderr, Name ": Could not update uuid on external bitmap.\n");
700 else
701 bitmap_done = 1;
702 }
3da92f27 703 tst->ss->free_super(tst);
d1f1011b
NB
704 } else
705#endif
706 {
30e1b9a5 707 struct supertype *tst = dup_super(st);
da6b5ca9
NB
708 int dfd;
709 dfd = dev_open(devname, O_RDWR|O_EXCL);
710
0430ed48
NB
711 remove_partitions(dfd);
712
9f22b13f
N
713 if (dfd < 0 || tst->ss->load_super(tst, dfd, NULL) != 0) {
714 fprintf(stderr, Name ": cannot re-read metadata from %s - aborting\n",
715 devname);
716 if (dfd >= 0)
717 close(dfd);
718 close(mdfd);
d7f7ebb7 719 free(devices);
02e7c5b7 720 free(devmap);
9f22b13f
N
721 return 1;
722 }
02e7c5b7 723 tst->ss->getinfo_super(tst, content, devmap + devcnt * content->array.raid_disks);
3da92f27 724 tst->ss->free_super(tst);
da6b5ca9 725 close(dfd);
5787fa49
NB
726 }
727
811e6cbe
NB
728 stat(devname, &stb);
729
dab6685f 730 if (verbose > 0)
cd29a5c8 731 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
98dbd966 732 devname, mddev, content->disk.raid_disk);
64c4757e 733 devices[devcnt].devname = devname;
64c4757e 734 devices[devcnt].uptodate = 0;
98dbd966 735 devices[devcnt].i = *content;
213ee40b
NB
736 devices[devcnt].i.disk.major = major(stb.st_rdev);
737 devices[devcnt].i.disk.minor = minor(stb.st_rdev);
64c4757e 738 if (most_recent < devcnt) {
213ee40b
NB
739 if (devices[devcnt].i.events
740 > devices[most_recent].i.events)
64c4757e
NB
741 most_recent = devcnt;
742 }
df0d4ea0 743 if (content->array.level == LEVEL_MULTIPATH)
5787fa49
NB
744 /* with multipath, the raid_disk from the superblock is meaningless */
745 i = devcnt;
746 else
213ee40b 747 i = devices[devcnt].i.disk.raid_disk;
308e1801 748 if (i+1 == 0) {
98dbd966
DW
749 if (nextspare < content->array.raid_disks)
750 nextspare = content->array.raid_disks;
308e1801 751 i = nextspare++;
08110d41 752 } else {
98dbd966 753 if (i >= content->array.raid_disks &&
08110d41
NB
754 i >= nextspare)
755 nextspare = i+1;
308e1801 756 }
98c6faba 757 if (i < 10000) {
56eedc1a 758 if (i >= bestcnt) {
f21e18ca 759 int newbestcnt = i+10;
56eedc1a 760 int *newbest = malloc(sizeof(int)*newbestcnt);
f21e18ca 761 int c;
56eedc1a
NB
762 for (c=0; c < newbestcnt; c++)
763 if (c < bestcnt)
764 newbest[c] = best[c];
765 else
766 newbest[c] = -1;
767 if (best)free(best);
768 best = newbest;
769 bestcnt = newbestcnt;
770 }
6a255b69 771 if (best[i] >=0 &&
213ee40b
NB
772 devices[best[i]].i.events
773 == devices[devcnt].i.events
774 && (devices[best[i]].i.disk.minor
775 != devices[devcnt].i.disk.minor)
b8ac1967 776 && st->ss == &super0
98dbd966 777 && content->array.level != LEVEL_MULTIPATH) {
6a255b69
NB
778 /* two different devices with identical superblock.
779 * Could be a mis-detection caused by overlapping
780 * partitions. fail-safe.
781 */
782 fprintf(stderr, Name ": WARNING %s and %s appear"
783 " to have very similar superblocks.\n"
784 " If they are really different, "
785 "please --zero the superblock on one\n"
d2df86e0
NB
786 " If they are the same or overlap,"
787 " please remove one from %s.\n",
788 devices[best[i]].devname, devname,
789 inargv ? "the list" :
790 "the\n DEVICE list in mdadm.conf"
791 );
7f91af49 792 close(mdfd);
d7f7ebb7 793 free(devices);
02e7c5b7 794 free(devmap);
6a255b69
NB
795 return 1;
796 }
52826846 797 if (best[i] == -1
213ee40b
NB
798 || (devices[best[i]].i.events
799 < devices[devcnt].i.events))
52826846 800 best[i] = devcnt;
56eedc1a 801 }
64c4757e 802 devcnt++;
df37ffc0 803 }
6e46bf34
DW
804 free(content->update_private);
805 content->update_private = NULL;
4b1ac34b 806
64c4757e 807 if (devcnt == 0) {
682c7051 808 fprintf(stderr, Name ": no devices found for %s\n",
64c4757e 809 mddev);
3d2b16e7
NB
810 if (st)
811 st->ss->free_super(st);
7f91af49 812 close(mdfd);
d7f7ebb7 813 free(devices);
02e7c5b7 814 free(devmap);
64c4757e
NB
815 return 1;
816 }
4b1ac34b 817
3d2b16e7
NB
818 if (update && strcmp(update, "byteorder")==0)
819 st->minor_version = 90;
820
a5d85af7 821 st->ss->getinfo_super(st, content, NULL);
98dbd966 822 clean = content->array.state & 1;
4b1ac34b 823
64c4757e
NB
824 /* now we have some devices that might be suitable.
825 * I wonder how many
826 */
98dbd966
DW
827 avail = malloc(content->array.raid_disks);
828 memset(avail, 0, content->array.raid_disks);
64c4757e 829 okcnt = 0;
52826846 830 sparecnt=0;
1ff98339 831 rebuilding_cnt=0;
f21e18ca 832 for (i=0; i< bestcnt; i++) {
64c4757e 833 int j = best[i];
ee04451c
NB
834 int event_margin = 1; /* always allow a difference of '1'
835 * like the kernel does
836 */
64c4757e 837 if (j < 0) continue;
d013a55e
NB
838 /* note: we ignore error flags in multipath arrays
839 * as they don't make sense
840 */
df0d4ea0 841 if (content->array.level != LEVEL_MULTIPATH)
f22385f9 842 if (!(devices[j].i.disk.state & (1<<MD_DISK_ACTIVE))) {
213ee40b
NB
843 if (!(devices[j].i.disk.state
844 & (1<<MD_DISK_FAULTY)))
aa88f531 845 sparecnt++;
d013a55e 846 continue;
aa88f531 847 }
02e7c5b7
N
848 /* If this devices thinks that 'most_recent' has failed, then
849 * we must reject this device.
850 */
851 if (j != most_recent &&
852 content->array.raid_disks > 0 &&
853 devices[most_recent].i.disk.raid_disk >= 0 &&
854 devmap[j * content->array.raid_disks + devices[most_recent].i.disk.raid_disk] == 0) {
855 if (verbose > -1)
856 fprintf(stderr, Name ": ignoring %s as it reports %s as failed\n",
857 devices[j].devname, devices[most_recent].devname);
858 best[i] = -1;
859 continue;
860 }
213ee40b
NB
861 if (devices[j].i.events+event_margin >=
862 devices[most_recent].i.events) {
64c4757e 863 devices[j].uptodate = 1;
1ff98339
N
864 if (i < content->array.raid_disks) {
865 if (devices[j].i.recovery_start == MaxSector) {
866 okcnt++;
867 avail[i]=1;
868 } else
869 rebuilding_cnt++;
265e0f17 870 } else
52826846 871 sparecnt++;
64c4757e
NB
872 }
873 }
02e7c5b7 874 free(devmap);
98dbd966
DW
875 while (force && !enough(content->array.level, content->array.raid_disks,
876 content->array.layout, 1,
265e0f17 877 avail, okcnt)) {
64c4757e
NB
878 /* Choose the newest best drive which is
879 * not up-to-date, update the superblock
880 * and add it.
881 */
52826846 882 int fd;
3da92f27 883 struct supertype *tst;
f21e18ca 884 unsigned long long current_events;
cd29a5c8 885 chosen_drive = -1;
f21e18ca 886 for (i = 0; i < content->array.raid_disks && i < bestcnt; i++) {
52826846
NB
887 int j = best[i];
888 if (j>=0 &&
889 !devices[j].uptodate &&
921d9e16 890 devices[j].i.recovery_start == MaxSector &&
52826846 891 (chosen_drive < 0 ||
213ee40b
NB
892 devices[j].i.events
893 > devices[chosen_drive].i.events))
52826846
NB
894 chosen_drive = j;
895 }
896 if (chosen_drive < 0)
897 break;
213ee40b 898 current_events = devices[chosen_drive].i.events;
c5a6f9a6 899 add_another:
dab6685f
NB
900 if (verbose >= 0)
901 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
213ee40b
NB
902 devices[chosen_drive].devname,
903 devices[chosen_drive].i.disk.raid_disk,
904 (int)(devices[chosen_drive].i.events),
905 (int)(devices[most_recent].i.events));
8b0dabea 906 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846
NB
907 if (fd < 0) {
908 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
909 devices[chosen_drive].devname);
213ee40b 910 devices[chosen_drive].i.events = 0;
52826846
NB
911 continue;
912 }
3da92f27 913 tst = dup_super(st);
60b435db 914 if (tst->ss->load_super(tst,fd, NULL)) {
52826846
NB
915 close(fd);
916 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
917 devices[chosen_drive].devname);
213ee40b 918 devices[chosen_drive].i.events = 0;
52826846
NB
919 continue;
920 }
98dbd966
DW
921 content->events = devices[most_recent].i.events;
922 tst->ss->update_super(tst, content, "force-one",
67a8c82d
NB
923 devices[chosen_drive].devname, verbose,
924 0, NULL);
4b1ac34b 925
3da92f27 926 if (tst->ss->store_super(tst, fd)) {
52826846
NB
927 close(fd);
928 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
929 devices[chosen_drive].devname);
213ee40b 930 devices[chosen_drive].i.events = 0;
3da92f27 931 tst->ss->free_super(tst);
52826846
NB
932 continue;
933 }
934 close(fd);
213ee40b 935 devices[chosen_drive].i.events = devices[most_recent].i.events;
52826846 936 devices[chosen_drive].uptodate = 1;
265e0f17 937 avail[chosen_drive] = 1;
52826846 938 okcnt++;
3da92f27 939 tst->ss->free_super(tst);
c5a6f9a6
NB
940
941 /* If there are any other drives of the same vintage,
942 * add them in as well. We can't lose and we might gain
943 */
f21e18ca 944 for (i = 0; i < content->array.raid_disks && i < bestcnt ; i++) {
c5a6f9a6
NB
945 int j = best[i];
946 if (j >= 0 &&
947 !devices[j].uptodate &&
213ee40b 948 devices[j].i.events == current_events) {
c5a6f9a6
NB
949 chosen_drive = j;
950 goto add_another;
951 }
952 }
64c4757e 953 }
52826846
NB
954
955 /* Now we want to look at the superblock which the kernel will base things on
956 * and compare the devices that we think are working with the devices that the
957 * superblock thinks are working.
958 * If there are differences and --force is given, then update this chosen
959 * superblock.
960 */
cd29a5c8 961 chosen_drive = -1;
3da92f27 962 st->ss->free_super(st);
56eedc1a 963 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
964 int j = best[i];
965 int fd;
4b1ac34b 966
52826846
NB
967 if (j<0)
968 continue;
969 if (!devices[j].uptodate)
970 continue;
971 chosen_drive = j;
8b0dabea 972 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
52826846
NB
973 fprintf(stderr, Name ": Cannot open %s: %s\n",
974 devices[j].devname, strerror(errno));
7f91af49 975 close(mdfd);
d7f7ebb7 976 free(devices);
52826846
NB
977 return 1;
978 }
3da92f27 979 if (st->ss->load_super(st,fd, NULL)) {
52826846
NB
980 close(fd);
981 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
982 devices[j].devname);
7f91af49 983 close(mdfd);
d7f7ebb7 984 free(devices);
52826846
NB
985 return 1;
986 }
987 close(fd);
988 }
3da92f27 989 if (st->sb == NULL) {
4b1ac34b 990 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
7f91af49 991 close(mdfd);
d7f7ebb7 992 free(devices);
4b1ac34b
NB
993 return 1;
994 }
a5d85af7 995 st->ss->getinfo_super(st, content, NULL);
f35f2525 996#ifndef MDASSEMBLE
98dbd966 997 sysfs_init(content, mdfd, 0);
f35f2525 998#endif
56eedc1a 999 for (i=0; i<bestcnt; i++) {
52826846 1000 int j = best[i];
98c6faba 1001 unsigned int desired_state;
11a3e71d 1002
98dbd966 1003 if (i < content->array.raid_disks)
11a3e71d
NB
1004 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
1005 else
1006 desired_state = 0;
1007
52826846
NB
1008 if (j<0)
1009 continue;
1010 if (!devices[j].uptodate)
1011 continue;
4b1ac34b 1012
213ee40b 1013 devices[j].i.disk.state = desired_state;
4e9a6ff7
N
1014 if (!(devices[j].i.array.state & 1))
1015 clean = 0;
213ee40b
NB
1016
1017 if (st->ss->update_super(st, &devices[j].i, "assemble", NULL,
68c7d6d7 1018 verbose, 0, NULL)) {
52826846 1019 if (force) {
dab6685f
NB
1020 if (verbose >= 0)
1021 fprintf(stderr, Name ": "
1022 "clearing FAULTY flag for device %d in %s for %s\n",
1023 j, mddev, devices[j].devname);
4b1ac34b 1024 change = 1;
52826846 1025 } else {
dab6685f
NB
1026 if (verbose >= -1)
1027 fprintf(stderr, Name ": "
1028 "device %d in %s has wrong state in superblock, but %s seems ok\n",
1029 i, mddev, devices[j].devname);
52826846
NB
1030 }
1031 }
4b1ac34b 1032#if 0
213ee40b 1033 if (!(super.disks[i].i.disk.state & (1 << MD_DISK_FAULTY))) {
52826846
NB
1034 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
1035 i, mddev);
1036 }
4b1ac34b 1037#endif
52826846 1038 }
c5a6f9a6 1039 if (force && !clean &&
98dbd966
DW
1040 !enough(content->array.level, content->array.raid_disks,
1041 content->array.layout, clean,
c5a6f9a6 1042 avail, okcnt)) {
98dbd966 1043 change += st->ss->update_super(st, content, "force-array",
67a8c82d
NB
1044 devices[chosen_drive].devname, verbose,
1045 0, NULL);
583315d9 1046 clean = 1;
d013a55e 1047 }
52826846 1048
4b1ac34b 1049 if (change) {
52826846 1050 int fd;
8b0dabea 1051 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846 1052 if (fd < 0) {
353632d9 1053 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
52826846 1054 devices[chosen_drive].devname);
7f91af49 1055 close(mdfd);
d7f7ebb7 1056 free(devices);
52826846
NB
1057 return 1;
1058 }
3da92f27 1059 if (st->ss->store_super(st, fd)) {
52826846
NB
1060 close(fd);
1061 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
1062 devices[chosen_drive].devname);
7f91af49 1063 close(mdfd);
d7f7ebb7 1064 free(devices);
52826846
NB
1065 return 1;
1066 }
1067 close(fd);
52826846
NB
1068 }
1069
353632d9
NB
1070 /* If we are in the middle of a reshape we may need to restore saved data
1071 * that was moved aside due to the reshape overwriting live data
1072 * The code of doing this lives in Grow.c
1073 */
39c5a909 1074#ifndef MDASSEMBLE
98dbd966 1075 if (content->reshape_active) {
353632d9
NB
1076 int err = 0;
1077 int *fdlist = malloc(sizeof(int)* bestcnt);
cd77ac4e 1078 if (verbose > 0)
ea0ebe96
N
1079 fprintf(stderr, Name ":%s has an active reshape - checking "
1080 "if critical section needs to be restored\n",
1081 chosen_name);
353632d9
NB
1082 for (i=0; i<bestcnt; i++) {
1083 int j = best[i];
1084 if (j >= 0) {
1085 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
1086 if (fdlist[i] < 0) {
1087 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
1088 devices[j].devname);
1089 err = 1;
1090 break;
1091 }
1092 } else
1093 fdlist[i] = -1;
1094 }
1095 if (!err)
cd77ac4e 1096 err = Grow_restart(st, content, fdlist, bestcnt, backup_file, verbose > 0);
353632d9
NB
1097 while (i>0) {
1098 i--;
1099 if (fdlist[i]>=0) close(fdlist[i]);
1100 }
1101 if (err) {
1102 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
e9e43ec3
N
1103 if (backup_file == NULL)
1104 fprintf(stderr," Possibly you needed to specify the --backup-file\n");
7f91af49 1105 close(mdfd);
d7f7ebb7 1106 free(devices);
353632d9
NB
1107 return err;
1108 }
1109 }
39c5a909 1110#endif
aa88f531
NB
1111 /* count number of in-sync devices according to the superblock.
1112 * We must have this number to start the array without -s or -R
1113 */
98dbd966 1114 req_cnt = content->array.working_disks;
aa88f531 1115
64c4757e
NB
1116 /* Almost ready to actually *do* something */
1117 if (!old_linux) {
fbf8a0b7 1118 int rv;
a19c88b8 1119
a04d5763
N
1120 /* First, fill in the map, so that udev can find our name
1121 * as soon as we become active.
1122 */
98dbd966
DW
1123 map_update(NULL, fd2devnum(mdfd), content->text_version,
1124 content->uuid, chosen_name);
a04d5763 1125
98dbd966 1126 rv = set_array_info(mdfd, st, content);
fbf8a0b7 1127 if (rv) {
f35f2525 1128 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
64c4757e 1129 mddev, strerror(errno));
24af7a87 1130 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1131 close(mdfd);
d7f7ebb7 1132 free(devices);
64c4757e
NB
1133 return 1;
1134 }
11484a63 1135 if (ident->bitmap_fd >= 0) {
c82f047c
NB
1136 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
1137 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
24af7a87 1138 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1139 close(mdfd);
d7f7ebb7 1140 free(devices);
c82f047c
NB
1141 return 1;
1142 }
7ef02d01
NB
1143 } else if (ident->bitmap_file) {
1144 /* From config file */
1145 int bmfd = open(ident->bitmap_file, O_RDWR);
1146 if (bmfd < 0) {
1147 fprintf(stderr, Name ": Could not open bitmap file %s\n",
1148 ident->bitmap_file);
24af7a87 1149 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1150 close(mdfd);
d7f7ebb7 1151 free(devices);
7ef02d01
NB
1152 return 1;
1153 }
1154 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
1155 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
1156 close(bmfd);
24af7a87 1157 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1158 close(mdfd);
d7f7ebb7 1159 free(devices);
7ef02d01
NB
1160 return 1;
1161 }
1162 close(bmfd);
c82f047c 1163 }
7ef02d01 1164
52826846 1165 /* First, add the raid disks, but add the chosen one last */
56eedc1a 1166 for (i=0; i<= bestcnt; i++) {
52826846 1167 int j;
56eedc1a 1168 if (i < bestcnt) {
52826846
NB
1169 j = best[i];
1170 if (j == chosen_drive)
1171 continue;
1172 } else
1173 j = chosen_drive;
1174
56eedc1a 1175 if (j >= 0 /* && devices[j].uptodate */) {
98dbd966 1176 rv = add_disk(mdfd, st, content, &devices[j].i);
7801ac20 1177
a19c88b8 1178 if (rv) {
213ee40b
NB
1179 fprintf(stderr, Name ": failed to add "
1180 "%s to %s: %s\n",
64c4757e
NB
1181 devices[j].devname,
1182 mddev,
1183 strerror(errno));
98dbd966 1184 if (i < content->array.raid_disks
213ee40b 1185 || i == bestcnt)
52826846
NB
1186 okcnt--;
1187 else
1188 sparecnt--;
dab6685f 1189 } else if (verbose > 0)
213ee40b
NB
1190 fprintf(stderr, Name ": added %s "
1191 "to %s as %d\n",
1192 devices[j].devname, mddev,
1193 devices[j].i.disk.raid_disk);
98dbd966 1194 } else if (verbose > 0 && i < content->array.raid_disks)
213ee40b
NB
1195 fprintf(stderr, Name ": no uptodate device for "
1196 "slot %d of %s\n",
64c4757e
NB
1197 i, mddev);
1198 }
aba69144 1199
98dbd966 1200 if (content->array.level == LEVEL_CONTAINER) {
598f0d58
NB
1201 if (verbose >= 0) {
1202 fprintf(stderr, Name ": Container %s has been "
1203 "assembled with %d drive%s",
57ed8c91 1204 mddev, okcnt+sparecnt, okcnt+sparecnt==1?"":"s");
f21e18ca 1205 if (okcnt < (unsigned)content->array.raid_disks)
598f0d58 1206 fprintf(stderr, " (out of %d)",
98dbd966 1207 content->array.raid_disks);
598f0d58
NB
1208 fprintf(stderr, "\n");
1209 }
98dbd966 1210 sysfs_uevent(content, "change");
a7c6e3fb 1211 wait_for(chosen_name, mdfd);
7f91af49 1212 close(mdfd);
d7f7ebb7 1213 free(devices);
598f0d58
NB
1214 return 0;
1215 }
1216
64c4757e 1217 if (runstop == 1 ||
b8a8ccf9 1218 (runstop <= 0 &&
98dbd966
DW
1219 ( enough(content->array.level, content->array.raid_disks,
1220 content->array.layout, clean, avail, okcnt) &&
1ff98339 1221 (okcnt + rebuilding_cnt >= req_cnt || start_partial_ok)
aa88f531 1222 ))) {
e9e43ec3
N
1223 /* This array is good-to-go.
1224 * If a reshape is in progress then we might need to
1225 * continue monitoring it. In that case we start
1226 * it read-only and let the grow code make it writable.
1227 */
1228 int rv;
eb3929a4 1229#ifndef MDASSEMBLE
e9e43ec3
N
1230 if (content->reshape_active &&
1231 content->delta_disks <= 0)
1232 rv = Grow_continue(mdfd, st, content, backup_file);
1233 else
eb3929a4 1234#endif
e9e43ec3
N
1235 rv = ioctl(mdfd, RUN_ARRAY, NULL);
1236 if (rv == 0) {
dab6685f
NB
1237 if (verbose >= 0) {
1238 fprintf(stderr, Name ": %s has been started with %d drive%s",
1239 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1240 if (okcnt < (unsigned)content->array.raid_disks)
98dbd966 1241 fprintf(stderr, " (out of %d)", content->array.raid_disks);
1ff98339
N
1242 if (rebuilding_cnt)
1243 fprintf(stderr, "%s %d rebuilding", sparecnt?",":" and", rebuilding_cnt);
dab6685f
NB
1244 if (sparecnt)
1245 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
1246 fprintf(stderr, ".\n");
1247 }
8a659c33
N
1248 if (content->reshape_active &&
1249 content->array.level >= 4 &&
1250 content->array.level <= 6) {
acee8e89
N
1251 /* might need to increase the size
1252 * of the stripe cache - default is 256
1253 */
8a659c33 1254 if (256 < 4 * (content->array.chunk_size/4096)) {
acee8e89
N
1255 struct mdinfo *sra = sysfs_read(mdfd, 0, 0);
1256 if (sra)
1257 sysfs_set_num(sra, NULL,
1258 "stripe_cache_size",
8a659c33 1259 (4 * content->array.chunk_size / 4096) + 1);
acee8e89
N
1260 }
1261 }
7e83544b
N
1262 if (okcnt < (unsigned)content->array.raid_disks) {
1263 /* If any devices did not get added
1264 * because the kernel rejected them based
1265 * on event count, try adding them
1266 * again providing the action policy is
1267 * 're-add' or greater. The bitmap
1268 * might allow them to be included, or
1269 * they will become spares.
1270 */
1271 for (i = 0; i <= bestcnt; i++) {
1272 int j = best[i];
1273 if (j >= 0 && !devices[j].uptodate) {
1274 if (!disk_action_allows(&devices[j].i, st->ss->name, act_re_add))
1275 continue;
1276 rv = add_disk(mdfd, st, content,
1277 &devices[j].i);
1278 if (rv == 0 && verbose >= 0)
1279 fprintf(stderr,
1280 Name ": %s has been re-added.\n",
1281 devices[j].devname);
1282 }
1283 }
1284 }
a7c6e3fb 1285 wait_for(mddev, mdfd);
7f91af49
N
1286 close(mdfd);
1287 if (auto_assem) {
589395d6 1288 int usecs = 1;
589395d6
NB
1289 /* There is a nasty race with 'mdadm --monitor'.
1290 * If it opens this device before we close it,
1291 * it gets an incomplete open on which IO
598f0d58
NB
1292 * doesn't work and the capacity is
1293 * wrong.
589395d6
NB
1294 * If we reopen (to check for layered devices)
1295 * before --monitor closes, we loose.
1296 *
1297 * So: wait upto 1 second for there to be
1298 * a non-zero capacity.
1299 */
1300 while (usecs < 1000) {
1301 mdfd = open(mddev, O_RDONLY);
1302 if (mdfd >= 0) {
beae1dfe
NB
1303 unsigned long long size;
1304 if (get_dev_size(mdfd, NULL, &size) &&
589395d6
NB
1305 size > 0)
1306 break;
1307 close(mdfd);
1308 }
1309 usleep(usecs);
1310 usecs <<= 1;
1311 }
1312 }
d7f7ebb7 1313 free(devices);
64c4757e 1314 return 0;
82b27616 1315 }
682c7051 1316 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
64c4757e 1317 mddev, strerror(errno));
583315d9 1318
98dbd966
DW
1319 if (!enough(content->array.level, content->array.raid_disks,
1320 content->array.layout, 1, avail, okcnt))
583315d9
NB
1321 fprintf(stderr, Name ": Not enough devices to "
1322 "start the array.\n");
98dbd966
DW
1323 else if (!enough(content->array.level,
1324 content->array.raid_disks,
1325 content->array.layout, clean,
583315d9
NB
1326 avail, okcnt))
1327 fprintf(stderr, Name ": Not enough devices to "
1328 "start the array while not clean "
1329 "- consider --force.\n");
1330
7f91af49 1331 if (auto_assem)
1c203a4b 1332 ioctl(mdfd, STOP_ARRAY, NULL);
7f91af49 1333 close(mdfd);
d7f7ebb7 1334 free(devices);
64c4757e
NB
1335 return 1;
1336 }
82b27616 1337 if (runstop == -1) {
b8a8ccf9 1338 fprintf(stderr, Name ": %s assembled from %d drive%s",
52826846 1339 mddev, okcnt, okcnt==1?"":"s");
f21e18ca 1340 if (okcnt != (unsigned)content->array.raid_disks)
98dbd966 1341 fprintf(stderr, " (out of %d)", content->array.raid_disks);
b8a8ccf9 1342 fprintf(stderr, ", but not started.\n");
7f91af49 1343 close(mdfd);
d7f7ebb7 1344 free(devices);
64c4757e 1345 return 0;
82b27616 1346 }
4855f95c 1347 if (verbose >= -1) {
dab6685f 1348 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
1ff98339
N
1349 if (rebuilding_cnt)
1350 fprintf(stderr, "%s %d rebuilding", sparecnt?", ":" and ", rebuilding_cnt);
dab6685f
NB
1351 if (sparecnt)
1352 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
98dbd966
DW
1353 if (!enough(content->array.level, content->array.raid_disks,
1354 content->array.layout, 1, avail, okcnt))
dab6685f 1355 fprintf(stderr, " - not enough to start the array.\n");
98dbd966
DW
1356 else if (!enough(content->array.level,
1357 content->array.raid_disks,
1358 content->array.layout, clean,
583315d9
NB
1359 avail, okcnt))
1360 fprintf(stderr, " - not enough to start the "
1361 "array while not clean - consider "
1362 "--force.\n");
dab6685f 1363 else {
f21e18ca 1364 if (req_cnt == (unsigned)content->array.raid_disks)
dab6685f
NB
1365 fprintf(stderr, " - need all %d to start it", req_cnt);
1366 else
98dbd966 1367 fprintf(stderr, " - need %d of %d to start", req_cnt, content->array.raid_disks);
dab6685f
NB
1368 fprintf(stderr, " (use --run to insist).\n");
1369 }
aa88f531 1370 }
7f91af49 1371 if (auto_assem)
1c203a4b 1372 ioctl(mdfd, STOP_ARRAY, NULL);
56a8da69 1373 close(mdfd);
d7f7ebb7 1374 free(devices);
64c4757e 1375 return 1;
82b27616 1376 } else {
52826846
NB
1377 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
1378 * been updated to point to the current locations of devices.
1379 * so we can just start the array
82b27616 1380 */
cd29a5c8 1381 unsigned long dev;
213ee40b
NB
1382 dev = makedev(devices[chosen_drive].i.disk.major,
1383 devices[chosen_drive].i.disk.minor);
82b27616
NB
1384 if (ioctl(mdfd, START_ARRAY, dev)) {
1385 fprintf(stderr, Name ": Cannot start array: %s\n",
1386 strerror(errno));
1387 }
aba69144 1388
64c4757e 1389 }
7f91af49 1390 close(mdfd);
d7f7ebb7 1391 free(devices);
e0d19036 1392 return 0;
64c4757e 1393}
6234c63c
DW
1394
1395#ifndef MDASSEMBLE
1396int assemble_container_content(struct supertype *st, int mdfd,
1397 struct mdinfo *content, int runstop,
1398 char *chosen_name, int verbose)
1399{
1400 struct mdinfo *dev, *sra;
1401 int working = 0, preexist = 0;
1402 struct map_ent *map = NULL;
1403
1404 sysfs_init(content, mdfd, 0);
1405
1406 sra = sysfs_read(mdfd, 0, GET_VERSION);
1407 if (sra == NULL || strcmp(sra->text_version, content->text_version) != 0)
4408ee76
N
1408 if (sysfs_set_array(content, md_get_version(mdfd)) != 0) {
1409 close(mdfd);
6234c63c 1410 return 1;
4408ee76 1411 }
6234c63c
DW
1412 if (sra)
1413 sysfs_free(sra);
1414
1415 for (dev = content->devs; dev; dev = dev->next)
462906cd 1416 if (sysfs_add_disk(content, dev, 1) == 0)
6234c63c
DW
1417 working++;
1418 else if (errno == EEXIST)
1419 preexist++;
4408ee76
N
1420 if (working == 0) {
1421 close(mdfd);
7cb2aa33 1422 return 1;/* Nothing new, don't try to start */
8b4e5ea9
N
1423 }
1424
1425 map_update(&map, fd2devnum(mdfd),
1426 content->text_version,
1427 content->uuid, chosen_name);
1428
1429 if (runstop > 0 ||
6234c63c 1430 (working + preexist) >= content->array.working_disks) {
bb50e5d3 1431 int err;
a714580e 1432
6234c63c
DW
1433 switch(content->array.level) {
1434 case LEVEL_LINEAR:
1435 case LEVEL_MULTIPATH:
1436 case 0:
bb50e5d3
N
1437 err = sysfs_set_str(content, NULL, "array_state",
1438 "active");
6234c63c
DW
1439 break;
1440 default:
bb50e5d3 1441 err = sysfs_set_str(content, NULL, "array_state",
6234c63c
DW
1442 "readonly");
1443 /* start mdmon if needed. */
bb50e5d3
N
1444 if (!err) {
1445 if (!mdmon_running(st->container_dev))
1446 start_mdmon(st->container_dev);
1447 ping_monitor(devnum2devname(st->container_dev));
1448 }
6234c63c
DW
1449 break;
1450 }
bb50e5d3
N
1451 if (!err)
1452 sysfs_set_safemode(content, content->safe_mode_delay);
6234c63c 1453 if (verbose >= 0) {
bb50e5d3
N
1454 if (err)
1455 fprintf(stderr, Name
1456 ": array %s now has %d devices",
1457 chosen_name, working + preexist);
1458 else
1459 fprintf(stderr, Name
1460 ": Started %s with %d devices",
1461 chosen_name, working + preexist);
6234c63c
DW
1462 if (preexist)
1463 fprintf(stderr, " (%d new)", working);
1464 fprintf(stderr, "\n");
1465 }
bb50e5d3 1466 if (!err)
a7c6e3fb 1467 wait_for(chosen_name, mdfd);
4408ee76 1468 close(mdfd);
7cb2aa33 1469 return 0;
6234c63c 1470 /* FIXME should have an O_EXCL and wait for read-auto */
7cb2aa33 1471 } else {
6234c63c
DW
1472 if (verbose >= 0)
1473 fprintf(stderr, Name
1474 ": %s assembled with %d devices but "
1475 "not started\n",
1476 chosen_name, working);
4408ee76 1477 close(mdfd);
7cb2aa33
N
1478 return 1;
1479 }
6234c63c
DW
1480}
1481#endif
1482