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