]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Assemble.c
Make sure name matching for array assembly understand the possibility of a homehost
[thirdparty/mdadm.git] / Assemble.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
4f589ad0 4 * Copyright (C) 2001-2006 Neil Brown <neilb@suse.de>
64c4757e
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@cse.unsw.edu.au>
23 * Paper: Neil Brown
24 * School of Computer Science and Engineering
25 * The University of New South Wales
26 * Sydney, 2052
27 * Australia
28 */
29
9a9dab36 30#include "mdadm.h"
64c4757e 31
624920bb
NB
32static int name_matches(char *found, char *required, char *homehost)
33{
34 /* See if the name found matches the required name, possibly
35 * prefixed with 'homehost'
36 */
37 char fnd[33];
38
39 strncpy(fnd, found, 32);
40 fnd[32] = 0;
41 if (strcmp(found, required)==0)
42 return 1;
43 if (homehost) {
44 int l = strlen(homehost);
45 if (l < 32 && fnd[l] == ':' &&
46 strcmp(fnd+l+1, required)==0)
47 return 1;
48 }
49 return 0;
50}
51
82d9eba6 52int Assemble(struct supertype *st, char *mddev, int mdfd,
52826846 53 mddev_ident_t ident, char *conffile,
06b0d786 54 mddev_dev_t devlist, char *backup_file,
64c4757e 55 int readonly, int runstop,
e5eac01f 56 char *update, char *homehost,
64c4757e
NB
57 int verbose, int force)
58{
59 /*
52826846
NB
60 * The task of Assemble is to find a collection of
61 * devices that should (according to their superblocks)
62 * form an array, and to give this collection to the MD driver.
63 * In Linux-2.4 and later, this involves submitting a
64c4757e
NB
64 * SET_ARRAY_INFO ioctl with no arg - to prepare
65 * the array - and then submit a number of
66 * ADD_NEW_DISK ioctls to add disks into
67 * the array. Finally RUN_ARRAY might
68 * be submitted to start the array.
69 *
70 * Much of the work of Assemble is in finding and/or
71 * checking the disks to make sure they look right.
72 *
4b1ac34b 73 * If mddev is not set, then scan must be set and we
64c4757e
NB
74 * read through the config file for dev+uuid mapping
75 * We recurse, setting mddev, for each device that
76 * - isn't running
4b1ac34b 77 * - has a valid uuid (or any uuid if !uuidset)
64c4757e
NB
78 *
79 * If mddev is set, we try to determine state of md.
80 * check version - must be at least 0.90.0
81 * check kernel version. must be at least 2.4.
82 * If not, we can possibly fall back on START_ARRAY
83 * Try to GET_ARRAY_INFO.
84 * If possible, give up
85 * If not, try to STOP_ARRAY just to make sure
86 *
87 * If !uuidset and scan, look in conf-file for uuid
88 * If not found, give up
b8a8ccf9 89 * If !devlist and scan and uuidset, get list of devs from conf-file
64c4757e
NB
90 *
91 * For each device:
92 * Check superblock - discard if bad
93 * Check uuid (set if we don't have one) - discard if no match
5787fa49 94 * Check superblock similarity if we have a superblock - discard if different
4b1ac34b 95 * Record events, devicenum
64c4757e 96 * This should give us a list of devices for the array
4b1ac34b 97 * We should collect the most recent event number
64c4757e
NB
98 *
99 * Count disks with recent enough event count
100 * While force && !enough disks
101 * Choose newest rejected disks, update event count
102 * mark clean and rewrite superblock
103 * If recent kernel:
104 * SET_ARRAY_INFO
105 * foreach device with recent events : ADD_NEW_DISK
106 * if runstop == 1 || "enough" disks and runstop==0 -> RUN_ARRAY
107 * If old kernel:
108 * Check the device numbers in superblock are right
109 * update superblock if any changes
110 * START_ARRAY
111 *
112 */
113 int old_linux = 0;
114 int vers;
4b1ac34b 115 void *first_super = NULL, *super = NULL;
64c4757e
NB
116 struct {
117 char *devname;
98c6faba
NB
118 unsigned int major, minor;
119 unsigned int oldmajor, oldminor;
64c4757e 120 long long events;
64c4757e 121 int uptodate;
d013a55e 122 int state;
52826846 123 int raid_disk;
6a41304b 124 int disk_nr;
5787fa49 125 } *devices;
56eedc1a 126 int *best = NULL; /* indexed by raid_disk */
98c6faba
NB
127 unsigned int bestcnt = 0;
128 int devcnt = 0;
129 unsigned int okcnt, sparecnt;
130 unsigned int req_cnt;
131 unsigned int i;
64c4757e 132 int most_recent = 0;
cd29a5c8 133 int chosen_drive;
52826846 134 int change = 0;
cd29a5c8 135 int inargv = 0;
b8a8ccf9 136 int start_partial_ok = (runstop >= 0) && (force || devlist==NULL);
98c6faba 137 unsigned int num_devs;
5787fa49 138 mddev_dev_t tmpdev;
4b1ac34b 139 struct mdinfo info;
265e0f17 140 char *avail;
308e1801 141 int nextspare = 0;
64c4757e 142
64c4757e
NB
143 vers = md_get_version(mdfd);
144 if (vers <= 0) {
e0d19036 145 fprintf(stderr, Name ": %s appears not to be an md device.\n", mddev);
64c4757e
NB
146 return 1;
147 }
682c7051
NB
148 if (vers < 9000) {
149 fprintf(stderr, Name ": Assemble requires driver version 0.90.0 or later.\n"
52826846 150 " Upgrade your kernel or try --build\n");
64c4757e
NB
151 return 1;
152 }
682c7051 153 if (get_linux_version() < 2004000)
64c4757e
NB
154 old_linux = 1;
155
4b1ac34b 156 if (ioctl(mdfd, GET_ARRAY_INFO, &info.array)>=0) {
682c7051 157 fprintf(stderr, Name ": device %s already active - cannot assemble it\n",
64c4757e
NB
158 mddev);
159 return 1;
160 }
161 ioctl(mdfd, STOP_ARRAY, NULL); /* just incase it was started but has no content */
162
163 /*
52826846
NB
164 * If any subdevs are listed, then any that don't
165 * match ident are discarded. Remainder must all match and
166 * become the array.
167 * If no subdevs, then we scan all devices in the config file, but
168 * there must be something in the identity
64c4757e 169 */
64c4757e 170
cd29a5c8 171 if (!devlist &&
52826846
NB
172 ident->uuid_set == 0 &&
173 ident->super_minor < 0 &&
174 ident->devices == NULL) {
175 fprintf(stderr, Name ": No identity information available for %s - cannot assemble.\n",
176 mddev);
177 return 1;
64c4757e 178 }
cd29a5c8 179 if (devlist == NULL)
64c4757e 180 devlist = conf_get_devs(conffile);
cd29a5c8 181 else inargv = 1;
64c4757e 182
5787fa49
NB
183 tmpdev = devlist; num_devs = 0;
184 while (tmpdev) {
185 num_devs++;
186 tmpdev = tmpdev->next;
187 }
5787fa49
NB
188 devices = malloc(num_devs * sizeof(*devices));
189
82d9eba6 190 if (!st && ident->st) st = ident->st;
64c4757e 191
dab6685f 192 if (verbose>0)
82b27616
NB
193 fprintf(stderr, Name ": looking for devices for %s\n",
194 mddev);
195
cd29a5c8 196 while ( devlist) {
64c4757e 197 char *devname;
64c4757e
NB
198 int dfd;
199 struct stat stb;
82d9eba6 200 struct supertype *tst = st;
52826846 201
cd29a5c8
NB
202 devname = devlist->devname;
203 devlist = devlist->next;
64c4757e 204
52826846 205 if (ident->devices &&
56eedc1a 206 !match_oneof(ident->devices, devname)) {
6a41304b 207 if ((inargv && verbose>=0) || verbose > 0)
56eedc1a 208 fprintf(stderr, Name ": %s is not one of %s\n", devname, ident->devices);
52826846 209 continue;
56eedc1a 210 }
4b1ac34b
NB
211
212 if (super) {
213 free(super);
214 super = NULL;
215 }
52826846 216
8b0dabea 217 dfd = dev_open(devname, O_RDONLY|O_EXCL);
64c4757e 218 if (dfd < 0) {
6a41304b 219 if ((inargv && verbose >= 0) || verbose > 0)
682c7051 220 fprintf(stderr, Name ": cannot open device %s: %s\n",
64c4757e 221 devname, strerror(errno));
52826846
NB
222 } else if (fstat(dfd, &stb)< 0) {
223 /* Impossible! */
224 fprintf(stderr, Name ": fstat failed for %s: %s\n",
225 devname, strerror(errno));
cd29a5c8
NB
226 } else if ((stb.st_mode & S_IFMT) != S_IFBLK) {
227 fprintf(stderr, Name ": %s is not a block device.\n",
52826846 228 devname);
82d9eba6 229 } else if (!tst && (tst = guess_super(dfd)) == NULL) {
6a41304b 230 if ((inargv && verbose >= 0) || verbose > 0)
f9ce90ba 231 fprintf(stderr, Name ": no recogniseable superblock\n");
82d9eba6 232 } else if (tst->ss->load_super(tst,dfd, &super, NULL)) {
6a41304b 233 if ((inargv && verbose >= 0) || verbose > 0)
682c7051 234 fprintf( stderr, Name ": no RAID superblock on %s\n",
64c4757e 235 devname);
52826846 236 } else {
31317663 237 tst->ss->getinfo_super(&info, super);
64c4757e 238 }
c06487ce 239 if (dfd >= 0) close(dfd);
52826846 240
838acbc2 241 if (ident->uuid_set && (!update || strcmp(update, "uuid")!= 0) &&
f277ce36 242 (!super || same_uuid(info.uuid, ident->uuid, tst->ss->swapuuid)==0)) {
6a41304b 243 if ((inargv && verbose >= 0) || verbose > 0)
52826846
NB
244 fprintf(stderr, Name ": %s has wrong uuid.\n",
245 devname);
246 continue;
82b27616 247 }
c4f12c13 248 if (ident->name[0] && (!update || strcmp(update, "name")!= 0) &&
624920bb 249 (!super || name_matches(info.name, ident->name, homehost)==0)) {
6a41304b 250 if ((inargv && verbose >= 0) || verbose > 0)
947fd4dd
NB
251 fprintf(stderr, Name ": %s has wrong name.\n",
252 devname);
253 continue;
254 }
98c6faba 255 if (ident->super_minor != UnSet &&
4b1ac34b 256 (!super || ident->super_minor != info.array.md_minor)) {
6a41304b 257 if ((inargv && verbose >= 0) || verbose > 0)
52826846 258 fprintf(stderr, Name ": %s has wrong super-minor.\n",
64c4757e
NB
259 devname);
260 continue;
261 }
98c6faba 262 if (ident->level != UnSet &&
4b1ac34b 263 (!super|| ident->level != info.array.level)) {
6a41304b 264 if ((inargv && verbose >= 0) || verbose > 0)
cd29a5c8
NB
265 fprintf(stderr, Name ": %s has wrong raid level.\n",
266 devname);
267 continue;
268 }
98c6faba 269 if (ident->raid_disks != UnSet &&
4b1ac34b 270 (!super || ident->raid_disks!= info.array.raid_disks)) {
6a41304b 271 if ((inargv && verbose >= 0) || verbose > 0)
cd29a5c8
NB
272 fprintf(stderr, Name ": %s requires wrong number of drives.\n",
273 devname);
274 continue;
275 }
52826846
NB
276
277 /* If we are this far, then we are commited to this device.
278 * If the super_block doesn't exist, or doesn't match others,
279 * then we cannot continue
280 */
52826846 281
4b1ac34b 282 if (!super) {
52826846
NB
283 fprintf(stderr, Name ": %s has no superblock - assembly aborted\n",
284 devname);
4b1ac34b 285 free(first_super);
52826846
NB
286 return 1;
287 }
838acbc2
NB
288
289
82d9eba6
NB
290 st = tst; /* commit to this format, if haven't already */
291 if (st->ss->compare_super(&first_super, super)) {
52826846
NB
292 fprintf(stderr, Name ": superblock on %s doesn't match others - assembly aborted\n",
293 devname);
4b1ac34b
NB
294 free(super);
295 free(first_super);
52826846 296 return 1;
64c4757e
NB
297 }
298
5787fa49
NB
299 /* looks like a good enough match to update the super block if needed */
300 if (update) {
4b1ac34b
NB
301 /* prepare useful information in info structures */
302 struct stat stb2;
303 fstat(mdfd, &stb2);
304 info.array.md_minor = minor(stb2.st_rdev);
7d99579f
NB
305
306 if (strcmp(update, "uuid")==0 &&
307 !ident->uuid_set) {
308 int rfd;
309 if ((rfd = open("/dev/urandom", O_RDONLY)) < 0 ||
310 read(rfd, ident->uuid, 16) != 16) {
311 *(__u32*)(ident->uuid) = random();
312 *(__u32*)(ident->uuid+1) = random();
313 *(__u32*)(ident->uuid+2) = random();
314 *(__u32*)(ident->uuid+3) = random();
315 }
316 if (rfd >= 0) close(rfd);
7d99579f
NB
317 }
318 memcpy(info.uuid, ident->uuid, 16);
e5eac01f
NB
319 strcpy(info.name, ident->name);
320 st->ss->update_super(&info, super, update, devname, verbose,
321 ident->uuid_set, homehost);
322 if (strcmp(update, "uuid")==0 &&
323 !ident->uuid_set) {
324 ident->uuid_set = 1;
325 memcpy(ident->uuid, info.uuid, 16);
326 }
8b0dabea 327 dfd = dev_open(devname, O_RDWR|O_EXCL);
b8a8ccf9 328 if (dfd < 0)
5787fa49
NB
329 fprintf(stderr, Name ": Cannot open %s for superblock update\n",
330 devname);
96395475 331 else if (st->ss->store_super(st, dfd, super))
5787fa49
NB
332 fprintf(stderr, Name ": Could not re-write superblock on %s.\n",
333 devname);
334 if (dfd >= 0)
335 close(dfd);
8131b493
NB
336
337 if (strcmp(update, "uuid")==0 &&
338 ident->bitmap_fd)
339 bitmap_update_uuid(ident->bitmap_fd, info.uuid);
5787fa49
NB
340 }
341
dab6685f 342 if (verbose > 0)
cd29a5c8 343 fprintf(stderr, Name ": %s is identified as a member of %s, slot %d.\n",
4b1ac34b 344 devname, mddev, info.disk.raid_disk);
64c4757e 345 devices[devcnt].devname = devname;
0df46c2a
NB
346 devices[devcnt].major = major(stb.st_rdev);
347 devices[devcnt].minor = minor(stb.st_rdev);
4b1ac34b
NB
348 devices[devcnt].oldmajor = info.disk.major;
349 devices[devcnt].oldminor = info.disk.minor;
350 devices[devcnt].events = info.events;
351 devices[devcnt].raid_disk = info.disk.raid_disk;
6a41304b 352 devices[devcnt].disk_nr = info.disk.number;
64c4757e 353 devices[devcnt].uptodate = 0;
4b1ac34b 354 devices[devcnt].state = info.disk.state;
64c4757e
NB
355 if (most_recent < devcnt) {
356 if (devices[devcnt].events
357 > devices[most_recent].events)
358 most_recent = devcnt;
359 }
b8a8ccf9 360 if (info.array.level == -4)
5787fa49
NB
361 /* with multipath, the raid_disk from the superblock is meaningless */
362 i = devcnt;
363 else
364 i = devices[devcnt].raid_disk;
308e1801
NB
365 if (i+1 == 0) {
366 if (nextspare < info.array.raid_disks)
367 nextspare = info.array.raid_disks;
368 i = nextspare++;
369 }
98c6faba 370 if (i < 10000) {
56eedc1a 371 if (i >= bestcnt) {
98c6faba 372 unsigned int newbestcnt = i+10;
56eedc1a 373 int *newbest = malloc(sizeof(int)*newbestcnt);
98c6faba 374 unsigned int c;
56eedc1a
NB
375 for (c=0; c < newbestcnt; c++)
376 if (c < bestcnt)
377 newbest[c] = best[c];
378 else
379 newbest[c] = -1;
380 if (best)free(best);
381 best = newbest;
382 bestcnt = newbestcnt;
383 }
52826846
NB
384 if (best[i] == -1
385 || devices[best[i]].events < devices[devcnt].events)
386 best[i] = devcnt;
56eedc1a 387 }
64c4757e
NB
388 devcnt++;
389 }
390
4b1ac34b
NB
391 if (super)
392 free(super);
393 super = NULL;
394
586ed405
NB
395 if (update && strcmp(update, "byteorder")==0)
396 st->minor_version = 90;
397
64c4757e 398 if (devcnt == 0) {
682c7051 399 fprintf(stderr, Name ": no devices found for %s\n",
64c4757e 400 mddev);
4b1ac34b 401 free(first_super);
64c4757e
NB
402 return 1;
403 }
4b1ac34b 404
31317663 405 st->ss->getinfo_super(&info, first_super);
4b1ac34b 406
64c4757e
NB
407 /* now we have some devices that might be suitable.
408 * I wonder how many
409 */
265e0f17
NB
410 avail = malloc(info.array.raid_disks);
411 memset(avail, 0, info.array.raid_disks);
64c4757e 412 okcnt = 0;
52826846 413 sparecnt=0;
56eedc1a 414 for (i=0; i< bestcnt ;i++) {
64c4757e 415 int j = best[i];
ee04451c
NB
416 int event_margin = 1; /* always allow a difference of '1'
417 * like the kernel does
418 */
64c4757e 419 if (j < 0) continue;
d013a55e
NB
420 /* note: we ignore error flags in multipath arrays
421 * as they don't make sense
422 */
4b1ac34b 423 if (info.array.level != -4)
aa88f531
NB
424 if (!(devices[j].state & (1<<MD_DISK_SYNC))) {
425 if (!(devices[j].state & (1<<MD_DISK_FAULTY)))
426 sparecnt++;
d013a55e 427 continue;
aa88f531 428 }
cd29a5c8 429 if (devices[j].events+event_margin >=
64c4757e
NB
430 devices[most_recent].events) {
431 devices[j].uptodate = 1;
265e0f17 432 if (i < info.array.raid_disks) {
52826846 433 okcnt++;
265e0f17
NB
434 avail[i]=1;
435 } else
52826846 436 sparecnt++;
64c4757e
NB
437 }
438 }
265e0f17
NB
439 while (force && !enough(info.array.level, info.array.raid_disks,
440 info.array.layout,
441 avail, okcnt)) {
64c4757e
NB
442 /* Choose the newest best drive which is
443 * not up-to-date, update the superblock
444 * and add it.
445 */
52826846 446 int fd;
cd29a5c8 447 chosen_drive = -1;
4b1ac34b 448 for (i=0; i<info.array.raid_disks && i < bestcnt; i++) {
52826846
NB
449 int j = best[i];
450 if (j>=0 &&
451 !devices[j].uptodate &&
452 devices[j].events > 0 &&
453 (chosen_drive < 0 ||
454 devices[j].events > devices[chosen_drive].events))
455 chosen_drive = j;
456 }
457 if (chosen_drive < 0)
458 break;
dab6685f
NB
459 if (verbose >= 0)
460 fprintf(stderr, Name ": forcing event count in %s(%d) from %d upto %d\n",
461 devices[chosen_drive].devname, devices[chosen_drive].raid_disk,
462 (int)(devices[chosen_drive].events),
463 (int)(devices[most_recent].events));
8b0dabea 464 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846
NB
465 if (fd < 0) {
466 fprintf(stderr, Name ": Couldn't open %s for write - not updating\n",
467 devices[chosen_drive].devname);
468 devices[chosen_drive].events = 0;
469 continue;
470 }
82d9eba6 471 if (st->ss->load_super(st,fd, &super, NULL)) {
52826846
NB
472 close(fd);
473 fprintf(stderr, Name ": RAID superblock disappeared from %s - not updating.\n",
474 devices[chosen_drive].devname);
475 devices[chosen_drive].events = 0;
476 continue;
477 }
4b1ac34b 478 info.events = devices[most_recent].events;
e5eac01f 479 st->ss->update_super(&info, super, "force", devices[chosen_drive].devname, verbose, 0, NULL);
4b1ac34b 480
96395475 481 if (st->ss->store_super(st, fd, super)) {
52826846
NB
482 close(fd);
483 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
484 devices[chosen_drive].devname);
485 devices[chosen_drive].events = 0;
4b1ac34b 486 free(super);
52826846
NB
487 continue;
488 }
489 close(fd);
490 devices[chosen_drive].events = devices[most_recent].events;
491 devices[chosen_drive].uptodate = 1;
265e0f17 492 avail[chosen_drive] = 1;
52826846 493 okcnt++;
4b1ac34b 494 free(super);
64c4757e 495 }
52826846
NB
496
497 /* Now we want to look at the superblock which the kernel will base things on
498 * and compare the devices that we think are working with the devices that the
499 * superblock thinks are working.
500 * If there are differences and --force is given, then update this chosen
501 * superblock.
502 */
cd29a5c8 503 chosen_drive = -1;
4b1ac34b 504 super = NULL;
56eedc1a 505 for (i=0; chosen_drive < 0 && i<bestcnt; i++) {
52826846
NB
506 int j = best[i];
507 int fd;
4b1ac34b 508
52826846
NB
509 if (j<0)
510 continue;
511 if (!devices[j].uptodate)
512 continue;
513 chosen_drive = j;
8b0dabea 514 if ((fd=dev_open(devices[j].devname, O_RDONLY|O_EXCL))< 0) {
52826846
NB
515 fprintf(stderr, Name ": Cannot open %s: %s\n",
516 devices[j].devname, strerror(errno));
517 return 1;
518 }
82d9eba6 519 if (st->ss->load_super(st,fd, &super, NULL)) {
52826846
NB
520 close(fd);
521 fprintf(stderr, Name ": RAID superblock has disappeared from %s\n",
522 devices[j].devname);
523 return 1;
524 }
525 close(fd);
526 }
4b1ac34b
NB
527 if (super == NULL) {
528 fprintf(stderr, Name ": No suitable drives found for %s\n", mddev);
529 return 1;
530 }
31317663 531 st->ss->getinfo_super(&info, super);
56eedc1a 532 for (i=0; i<bestcnt; i++) {
52826846 533 int j = best[i];
98c6faba 534 unsigned int desired_state;
11a3e71d 535
4b1ac34b 536 if (i < info.array.raid_disks)
11a3e71d
NB
537 desired_state = (1<<MD_DISK_ACTIVE) | (1<<MD_DISK_SYNC);
538 else
539 desired_state = 0;
540
52826846
NB
541 if (j<0)
542 continue;
543 if (!devices[j].uptodate)
544 continue;
6a41304b 545 info.disk.number = devices[j].disk_nr;
fbf8a0b7 546 info.disk.raid_disk = i;
4b1ac34b
NB
547 info.disk.state = desired_state;
548
52826846 549 if (devices[j].uptodate &&
e5eac01f 550 st->ss->update_super(&info, super, "assemble", NULL, verbose, 0, NULL)) {
52826846 551 if (force) {
dab6685f
NB
552 if (verbose >= 0)
553 fprintf(stderr, Name ": "
554 "clearing FAULTY flag for device %d in %s for %s\n",
555 j, mddev, devices[j].devname);
4b1ac34b 556 change = 1;
52826846 557 } else {
dab6685f
NB
558 if (verbose >= -1)
559 fprintf(stderr, Name ": "
560 "device %d in %s has wrong state in superblock, but %s seems ok\n",
561 i, mddev, devices[j].devname);
52826846
NB
562 }
563 }
4b1ac34b 564#if 0
52826846
NB
565 if (!devices[j].uptodate &&
566 !(super.disks[i].state & (1 << MD_DISK_FAULTY))) {
567 fprintf(stderr, Name ": devices %d of %s is not marked FAULTY in superblock, but cannot be found\n",
568 i, mddev);
569 }
4b1ac34b 570#endif
52826846 571 }
4b1ac34b
NB
572 if (force && okcnt == info.array.raid_disks-1) {
573 /* FIXME check event count */
b8a8ccf9 574 change += st->ss->update_super(&info, super, "force",
e5eac01f 575 devices[chosen_drive].devname, verbose, 0, NULL);
d013a55e 576 }
52826846 577
4b1ac34b 578 if (change) {
52826846 579 int fd;
8b0dabea 580 fd = dev_open(devices[chosen_drive].devname, O_RDWR|O_EXCL);
52826846 581 if (fd < 0) {
353632d9 582 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
52826846
NB
583 devices[chosen_drive].devname);
584 return 1;
585 }
96395475 586 if (st->ss->store_super(st, fd, super)) {
52826846
NB
587 close(fd);
588 fprintf(stderr, Name ": Could not re-write superblock on %s\n",
589 devices[chosen_drive].devname);
590 return 1;
591 }
592 close(fd);
52826846
NB
593 }
594
353632d9
NB
595 /* If we are in the middle of a reshape we may need to restore saved data
596 * that was moved aside due to the reshape overwriting live data
597 * The code of doing this lives in Grow.c
598 */
39c5a909 599#ifndef MDASSEMBLE
353632d9
NB
600 if (info.reshape_active) {
601 int err = 0;
602 int *fdlist = malloc(sizeof(int)* bestcnt);
603 for (i=0; i<bestcnt; i++) {
604 int j = best[i];
605 if (j >= 0) {
606 fdlist[i] = dev_open(devices[j].devname, O_RDWR|O_EXCL);
607 if (fdlist[i] < 0) {
608 fprintf(stderr, Name ": Could not open %s for write - cannot Assemble array.\n",
609 devices[j].devname);
610 err = 1;
611 break;
612 }
613 } else
614 fdlist[i] = -1;
615 }
616 if (!err)
06b0d786 617 err = Grow_restart(st, &info, fdlist, bestcnt, backup_file);
353632d9
NB
618 while (i>0) {
619 i--;
620 if (fdlist[i]>=0) close(fdlist[i]);
621 }
622 if (err) {
623 fprintf(stderr, Name ": Failed to restore critical section for reshape, sorry.\n");
624 return err;
625 }
626 }
39c5a909 627#endif
aa88f531
NB
628 /* count number of in-sync devices according to the superblock.
629 * We must have this number to start the array without -s or -R
630 */
4b1ac34b 631 req_cnt = info.array.working_disks;
aa88f531 632
64c4757e
NB
633 /* Almost ready to actually *do* something */
634 if (!old_linux) {
fbf8a0b7
NB
635 int rv;
636 if ((vers % 100) >= 1) { /* can use different versions */
637 mdu_array_info_t inf;
638 memset(&inf, 0, sizeof(inf));
639 inf.major_version = st->ss->major;
640 inf.minor_version = st->minor_version;
641 rv = ioctl(mdfd, SET_ARRAY_INFO, &inf);
b8a8ccf9 642 } else
fbf8a0b7
NB
643 rv = ioctl(mdfd, SET_ARRAY_INFO, NULL);
644
645 if (rv) {
682c7051 646 fprintf(stderr, Name ": SET_ARRAY_INFO failed for %s: %s\n",
64c4757e
NB
647 mddev, strerror(errno));
648 return 1;
649 }
11484a63 650 if (ident->bitmap_fd >= 0) {
c82f047c
NB
651 if (ioctl(mdfd, SET_BITMAP_FILE, ident->bitmap_fd) != 0) {
652 fprintf(stderr, Name ": SET_BITMAP_FILE failed.\n");
653 return 1;
654 }
7ef02d01
NB
655 } else if (ident->bitmap_file) {
656 /* From config file */
657 int bmfd = open(ident->bitmap_file, O_RDWR);
658 if (bmfd < 0) {
659 fprintf(stderr, Name ": Could not open bitmap file %s\n",
660 ident->bitmap_file);
661 return 1;
662 }
663 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
664 fprintf(stderr, Name ": Failed to set bitmapfile for %s\n", mddev);
665 close(bmfd);
666 return 1;
667 }
668 close(bmfd);
c82f047c 669 }
7ef02d01 670
52826846 671 /* First, add the raid disks, but add the chosen one last */
56eedc1a 672 for (i=0; i<= bestcnt; i++) {
52826846 673 int j;
56eedc1a 674 if (i < bestcnt) {
52826846
NB
675 j = best[i];
676 if (j == chosen_drive)
677 continue;
678 } else
679 j = chosen_drive;
680
56eedc1a 681 if (j >= 0 /* && devices[j].uptodate */) {
64c4757e
NB
682 mdu_disk_info_t disk;
683 memset(&disk, 0, sizeof(disk));
684 disk.major = devices[j].major;
685 disk.minor = devices[j].minor;
686 if (ioctl(mdfd, ADD_NEW_DISK, &disk)!=0) {
682c7051 687 fprintf(stderr, Name ": failed to add %s to %s: %s\n",
64c4757e
NB
688 devices[j].devname,
689 mddev,
690 strerror(errno));
4b1ac34b 691 if (i < info.array.raid_disks || i == bestcnt)
52826846
NB
692 okcnt--;
693 else
694 sparecnt--;
dab6685f 695 } else if (verbose > 0)
52826846
NB
696 fprintf(stderr, Name ": added %s to %s as %d\n",
697 devices[j].devname, mddev, devices[j].raid_disk);
dab6685f 698 } else if (verbose > 0 && i < info.array.raid_disks)
682c7051 699 fprintf(stderr, Name ": no uptodate device for slot %d of %s\n",
64c4757e
NB
700 i, mddev);
701 }
52826846 702
64c4757e 703 if (runstop == 1 ||
b8a8ccf9 704 (runstop <= 0 &&
265e0f17 705 ( enough(info.array.level, info.array.raid_disks, info.array.layout, avail, okcnt) &&
aa88f531
NB
706 (okcnt >= req_cnt || start_partial_ok)
707 ))) {
82b27616 708 if (ioctl(mdfd, RUN_ARRAY, NULL)==0) {
dab6685f
NB
709 if (verbose >= 0) {
710 fprintf(stderr, Name ": %s has been started with %d drive%s",
711 mddev, okcnt, okcnt==1?"":"s");
b8a8ccf9 712 if (okcnt < info.array.raid_disks)
dab6685f
NB
713 fprintf(stderr, " (out of %d)", info.array.raid_disks);
714 if (sparecnt)
715 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
716 fprintf(stderr, ".\n");
717 }
64c4757e 718 return 0;
82b27616 719 }
682c7051 720 fprintf(stderr, Name ": failed to RUN_ARRAY %s: %s\n",
64c4757e
NB
721 mddev, strerror(errno));
722 return 1;
723 }
82b27616 724 if (runstop == -1) {
b8a8ccf9 725 fprintf(stderr, Name ": %s assembled from %d drive%s",
52826846 726 mddev, okcnt, okcnt==1?"":"s");
b8a8ccf9
NB
727 if (okcnt != info.array.raid_disks)
728 fprintf(stderr, " (out of %d)", info.array.raid_disks);
729 fprintf(stderr, ", but not started.\n");
64c4757e 730 return 0;
82b27616 731 }
dab6685f
NB
732 if (verbose >= 0) {
733 fprintf(stderr, Name ": %s assembled from %d drive%s", mddev, okcnt, okcnt==1?"":"s");
734 if (sparecnt)
735 fprintf(stderr, " and %d spare%s", sparecnt, sparecnt==1?"":"s");
265e0f17 736 if (!enough(info.array.level, info.array.raid_disks, info.array.layout, avail, okcnt))
dab6685f
NB
737 fprintf(stderr, " - not enough to start the array.\n");
738 else {
739 if (req_cnt == info.array.raid_disks)
740 fprintf(stderr, " - need all %d to start it", req_cnt);
741 else
742 fprintf(stderr, " - need %d of %d to start", req_cnt, info.array.raid_disks);
743 fprintf(stderr, " (use --run to insist).\n");
744 }
aa88f531 745 }
64c4757e 746 return 1;
82b27616 747 } else {
52826846
NB
748 /* The "chosen_drive" is a good choice, and if necessary, the superblock has
749 * been updated to point to the current locations of devices.
750 * so we can just start the array
82b27616 751 */
cd29a5c8 752 unsigned long dev;
0df46c2a 753 dev = makedev(devices[chosen_drive].major,
82b27616
NB
754 devices[chosen_drive].minor);
755 if (ioctl(mdfd, START_ARRAY, dev)) {
756 fprintf(stderr, Name ": Cannot start array: %s\n",
757 strerror(errno));
758 }
759
64c4757e 760 }
e0d19036 761 return 0;
64c4757e 762}