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