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