]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Incremental.c
tests/03r5assemV1: reduce sync speed further.
[thirdparty/mdadm.git] / Incremental.c
1 /*
2 * Incremental.c - support --incremental. Part of:
3 * mdadm - manage Linux "md" devices aka RAID arrays.
4 *
5 * Copyright (C) 2006-2009 Neil Brown <neilb@suse.de>
6 *
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 *
22 * Author: Neil Brown
23 * Email: <neilb@suse.de>
24 * Paper: Neil Brown
25 * Novell Inc
26 * GPO Box Q1283
27 * QVB Post Office, NSW 1230
28 * Australia
29 */
30
31 #include "mdadm.h"
32 #include <dirent.h>
33 #include <ctype.h>
34
35 static int count_active(struct supertype *st, struct mdinfo *sra,
36 int mdfd, char **availp,
37 struct mdinfo *info);
38 static void find_reject(int mdfd, struct supertype *st, struct mdinfo *sra,
39 int number, __u64 events, int verbose,
40 char *array_name);
41 static int try_spare(char *devname, int *dfdp, struct dev_policy *pol,
42 struct map_ent *target,
43 struct supertype *st, int verbose);
44
45 static int Incremental_container(struct supertype *st, char *devname,
46 struct context *c);
47
48 int Incremental(char *devname, struct context *c,
49 struct supertype *st)
50 {
51 /* Add this device to an array, creating the array if necessary
52 * and starting the array if sensible or - if runstop>0 - if possible.
53 *
54 * This has several steps:
55 *
56 * 1/ Check if device is permitted by mdadm.conf, reject if not.
57 * 2/ Find metadata, reject if none appropriate (check
58 * version/name from args)
59 * 3/ Check if there is a match in mdadm.conf
60 * 3a/ if not, check for homehost match. If no match, assemble as
61 * a 'foreign' array.
62 * 4/ Determine device number.
63 * - If in mdadm.conf with std name, use that
64 * - UUID in /var/run/mdadm.map use that
65 * - If name is suggestive, use that. unless in use with different uuid.
66 * - Choose a free, high number.
67 * - Use a partitioned device unless strong suggestion not to.
68 * e.g. auto=md
69 * Don't choose partitioned for containers.
70 * 5/ Find out if array already exists
71 * 5a/ if it does not
72 * - choose a name, from mdadm.conf or 'name' field in array.
73 * - create the array
74 * - add the device
75 * 5b/ if it does
76 * - check one drive in array to make sure metadata is a reasonably
77 * close match. Reject if not (e.g. different type)
78 * - add the device
79 * 6/ Make sure /var/run/mdadm.map contains this array.
80 * 7/ Is there enough devices to possibly start the array?
81 * For a container, this means running Incremental_container.
82 * 7a/ if not, finish with success.
83 * 7b/ if yes,
84 * - read all metadata and arrange devices like -A does
85 * - if number of OK devices match expected, or -R and there are enough,
86 * start the array (auto-readonly).
87 */
88 struct stat stb;
89 struct mdinfo info, dinfo;
90 struct mdinfo *sra = NULL, *d;
91 struct mddev_ident *match;
92 char chosen_name[1024];
93 int rv = 1;
94 struct map_ent *mp, *map = NULL;
95 int dfd = -1, mdfd = -1;
96 char *avail = NULL;
97 int active_disks;
98 int trustworthy;
99 char *name_to_use;
100 mdu_array_info_t ainf;
101 struct dev_policy *policy = NULL;
102 struct map_ent target_array;
103 int have_target;
104
105 struct createinfo *ci = conf_get_create_info();
106
107 if (stat(devname, &stb) < 0) {
108 if (c->verbose >= 0)
109 pr_err("stat failed for %s: %s.\n",
110 devname, strerror(errno));
111 return rv;
112 }
113 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
114 if (c->verbose >= 0)
115 pr_err("%s is not a block device.\n",
116 devname);
117 return rv;
118 }
119 dfd = dev_open(devname, O_RDONLY|O_EXCL);
120 if (dfd < 0) {
121 if (c->verbose >= 0)
122 pr_err("cannot open %s: %s.\n",
123 devname, strerror(errno));
124 return rv;
125 }
126 /* If the device is a container, we do something very different */
127 if (must_be_container(dfd)) {
128 if (!st)
129 st = super_by_fd(dfd, NULL);
130 if (st && st->ss->load_container)
131 rv = st->ss->load_container(st, dfd, NULL);
132
133 close(dfd);
134 if (!rv && st->ss->container_content) {
135 if (map_lock(&map))
136 pr_err("failed to get "
137 "exclusive lock on mapfile\n");
138 rv = Incremental_container(st, devname, c);
139 map_unlock(&map);
140 return rv;
141 }
142
143 pr_err("%s is not part of an md array.\n",
144 devname);
145 return rv;
146 }
147
148 /* 1/ Check if device is permitted by mdadm.conf */
149
150 if (!conf_test_dev(devname)) {
151 if (c->verbose >= 0)
152 pr_err("%s not permitted by mdadm.conf.\n",
153 devname);
154 goto out;
155 }
156
157 /* 2/ Find metadata, reject if none appropriate (check
158 * version/name from args) */
159
160 if (fstat(dfd, &stb) < 0) {
161 if (c->verbose >= 0)
162 pr_err("fstat failed for %s: %s.\n",
163 devname, strerror(errno));
164 goto out;
165 }
166 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
167 if (c->verbose >= 0)
168 pr_err("%s is not a block device.\n",
169 devname);
170 goto out;
171 }
172
173 dinfo.disk.major = major(stb.st_rdev);
174 dinfo.disk.minor = minor(stb.st_rdev);
175
176 policy = disk_policy(&dinfo);
177 have_target = policy_check_path(&dinfo, &target_array);
178
179 if (st == NULL && (st = guess_super(dfd)) == NULL) {
180 if (c->verbose >= 0)
181 pr_err("no recognisable superblock on %s.\n",
182 devname);
183 rv = try_spare(devname, &dfd, policy,
184 have_target ? &target_array : NULL,
185 st, c->verbose);
186 goto out;
187 }
188 if (st->ss->compare_super == NULL ||
189 st->ss->load_super(st, dfd, NULL)) {
190 if (c->verbose >= 0)
191 pr_err("no RAID superblock on %s.\n",
192 devname);
193 rv = try_spare(devname, &dfd, policy,
194 have_target ? &target_array : NULL,
195 st, c->verbose);
196 free(st);
197 goto out;
198 }
199 close (dfd); dfd = -1;
200
201 st->ss->getinfo_super(st, &info, NULL);
202
203 /* 3/ Check if there is a match in mdadm.conf */
204 match = conf_match(st, &info, devname, c->verbose, &rv);
205 if (!match && rv == 2)
206 goto out;
207
208 if (match && match->devname
209 && strcasecmp(match->devname, "<ignore>") == 0) {
210 if (c->verbose >= 0)
211 pr_err("array containing %s is explicitly"
212 " ignored by mdadm.conf\n",
213 devname);
214 goto out;
215 }
216
217 /* 3a/ if not, check for homehost match. If no match, continue
218 * but don't trust the 'name' in the array. Thus a 'random' minor
219 * number will be assigned, and the device name will be based
220 * on that. */
221 if (match)
222 trustworthy = LOCAL;
223 else if (st->ss->match_home(st, c->homehost) == 1)
224 trustworthy = LOCAL;
225 else if (st->ss->match_home(st, "any") == 1)
226 trustworthy = LOCAL_ANY;
227 else
228 trustworthy = FOREIGN;
229
230
231 if (!match && !conf_test_metadata(st->ss->name, policy,
232 (trustworthy == LOCAL))) {
233 if (c->verbose >= 1)
234 pr_err("%s has metadata type %s for which "
235 "auto-assembly is disabled\n",
236 devname, st->ss->name);
237 goto out;
238 }
239 if (trustworthy == LOCAL_ANY)
240 trustworthy = LOCAL;
241
242 /* There are three possible sources for 'autof': command line,
243 * ARRAY line in mdadm.conf, or CREATE line in mdadm.conf.
244 * ARRAY takes precedence, then command line, then
245 * CREATE.
246 */
247 if (match && match->autof)
248 c->autof = match->autof;
249 if (c->autof == 0)
250 c->autof = ci->autof;
251
252 name_to_use = info.name;
253 if (name_to_use[0] == 0 &&
254 info.array.level == LEVEL_CONTAINER) {
255 name_to_use = info.text_version;
256 trustworthy = METADATA;
257 }
258 if (name_to_use[0] && trustworthy != LOCAL &&
259 ! c->require_homehost &&
260 conf_name_is_free(name_to_use))
261 trustworthy = LOCAL;
262
263 /* strip "hostname:" prefix from name if we have decided
264 * to treat it as LOCAL
265 */
266 if (trustworthy == LOCAL && strchr(name_to_use, ':') != NULL)
267 name_to_use = strchr(name_to_use, ':')+1;
268
269 /* 4/ Check if array exists.
270 */
271 if (map_lock(&map))
272 pr_err("failed to get exclusive lock on "
273 "mapfile\n");
274 mp = map_by_uuid(&map, info.uuid);
275 if (mp)
276 mdfd = open_dev(mp->devnum);
277 else
278 mdfd = -1;
279
280 if (mdfd < 0) {
281
282 /* Couldn't find an existing array, maybe make a new one */
283 mdfd = create_mddev(match ? match->devname : NULL,
284 name_to_use, c->autof, trustworthy, chosen_name);
285
286 if (mdfd < 0)
287 goto out_unlock;
288
289 sysfs_init(&info, mdfd, 0);
290
291 if (set_array_info(mdfd, st, &info) != 0) {
292 pr_err("failed to set array info for %s: %s\n",
293 chosen_name, strerror(errno));
294 rv = 2;
295 goto out_unlock;
296 }
297
298 dinfo = info;
299 dinfo.disk.major = major(stb.st_rdev);
300 dinfo.disk.minor = minor(stb.st_rdev);
301 if (add_disk(mdfd, st, &info, &dinfo) != 0) {
302 pr_err("failed to add %s to %s: %s.\n",
303 devname, chosen_name, strerror(errno));
304 ioctl(mdfd, STOP_ARRAY, 0);
305 rv = 2;
306 goto out_unlock;
307 }
308 sra = sysfs_read(mdfd, -1, (GET_DEVS | GET_STATE |
309 GET_OFFSET | GET_SIZE));
310
311 if (!sra || !sra->devs || sra->devs->disk.raid_disk >= 0) {
312 /* It really should be 'none' - must be old buggy
313 * kernel, and mdadm -I may not be able to complete.
314 * So reject it.
315 */
316 ioctl(mdfd, STOP_ARRAY, NULL);
317 pr_err("You have an old buggy kernel which cannot support\n"
318 " --incremental reliably. Aborting.\n");
319 rv = 2;
320 goto out_unlock;
321 }
322 info.array.working_disks = 1;
323 /* 6/ Make sure /var/run/mdadm.map contains this array. */
324 map_update(&map, fd2devnum(mdfd),
325 info.text_version,
326 info.uuid, chosen_name);
327 } else {
328 /* 5b/ if it does */
329 /* - check one drive in array to make sure metadata is a reasonably */
330 /* close match. Reject if not (e.g. different type) */
331 /* - add the device */
332 char dn[20];
333 int dfd2;
334 int err;
335 struct supertype *st2;
336 struct mdinfo info2, *d;
337
338 sra = sysfs_read(mdfd, -1, (GET_DEVS | GET_STATE |
339 GET_OFFSET | GET_SIZE));
340
341 if (mp->path)
342 strcpy(chosen_name, mp->path);
343 else
344 strcpy(chosen_name, devnum2devname(mp->devnum));
345
346 /* It is generally not OK to add non-spare drives to a
347 * running array as they are probably missing because
348 * they failed. However if runstop is 1, then the
349 * array was possibly started early and our best bet is
350 * to add this anyway.
351 * Also if action policy is re-add or better we allow
352 * re-add.
353 * This doesn't apply to containers as the 'non-spare'
354 * flag has a different meaning. The test has to happen
355 * at the device level there
356 */
357 if (!st->ss->external
358 && (info.disk.state & (1<<MD_DISK_SYNC)) != 0
359 && ! policy_action_allows(policy, st->ss->name,
360 act_re_add)
361 && c->runstop < 1) {
362 if (ioctl(mdfd, GET_ARRAY_INFO, &ainf) == 0) {
363 pr_err("not adding %s to active array (without --run) %s\n",
364 devname, chosen_name);
365 rv = 2;
366 goto out_unlock;
367 }
368 }
369 if (!sra) {
370 rv = 2;
371 goto out_unlock;
372 }
373 if (sra->devs) {
374 sprintf(dn, "%d:%d", sra->devs->disk.major,
375 sra->devs->disk.minor);
376 dfd2 = dev_open(dn, O_RDONLY);
377 if (dfd2 < 0) {
378 pr_err("unable to open %s\n", devname);
379 rv = 2;
380 goto out_unlock;
381 }
382 st2 = dup_super(st);
383 if (st2->ss->load_super(st2, dfd2, NULL) ||
384 st->ss->compare_super(st, st2) != 0) {
385 pr_err("metadata mismatch between %s and "
386 "chosen array %s\n",
387 devname, chosen_name);
388 close(dfd2);
389 rv = 2;
390 goto out_unlock;
391 }
392 close(dfd2);
393 st2->ss->getinfo_super(st2, &info2, NULL);
394 st2->ss->free_super(st2);
395 if (info.array.level != info2.array.level ||
396 memcmp(info.uuid, info2.uuid, 16) != 0 ||
397 info.array.raid_disks != info2.array.raid_disks) {
398 pr_err("unexpected difference between %s and %s.\n",
399 chosen_name, devname);
400 rv = 2;
401 goto out_unlock;
402 }
403 }
404 info.disk.major = major(stb.st_rdev);
405 info.disk.minor = minor(stb.st_rdev);
406 /* add disk needs to know about containers */
407 if (st->ss->external)
408 sra->array.level = LEVEL_CONTAINER;
409 err = add_disk(mdfd, st, sra, &info);
410 if (err < 0 && errno == EBUSY) {
411 /* could be another device present with the same
412 * disk.number. Find and reject any such
413 */
414 find_reject(mdfd, st, sra, info.disk.number,
415 info.events, c->verbose, chosen_name);
416 err = add_disk(mdfd, st, sra, &info);
417 }
418 if (err < 0) {
419 pr_err("failed to add %s to %s: %s.\n",
420 devname, chosen_name, strerror(errno));
421 rv = 2;
422 goto out_unlock;
423 }
424 info.array.working_disks = 0;
425 for (d = sra->devs; d; d=d->next)
426 info.array.working_disks ++;
427
428 }
429
430 /* 7/ Is there enough devices to possibly start the array? */
431 /* 7a/ if not, finish with success. */
432 if (info.array.level == LEVEL_CONTAINER) {
433 int devnum = devnum; /* defined and used iff ->external */
434 /* Try to assemble within the container */
435 sysfs_uevent(sra, "change");
436 if (c->verbose >= 0)
437 pr_err("container %s now has %d device%s\n",
438 chosen_name, info.array.working_disks,
439 info.array.working_disks==1?"":"s");
440 wait_for(chosen_name, mdfd);
441 if (st->ss->external)
442 devnum = fd2devnum(mdfd);
443 if (st->ss->load_container)
444 rv = st->ss->load_container(st, mdfd, NULL);
445 close(mdfd);
446 sysfs_free(sra);
447 if (!rv)
448 rv = Incremental_container(st, chosen_name, c);
449 map_unlock(&map);
450 if (rv == 1)
451 /* Don't fail the whole -I if a subarray didn't
452 * have enough devices to start yet
453 */
454 rv = 0;
455 /* after spare is added, ping monitor for external metadata
456 * so that it can eg. try to rebuild degraded array */
457 if (st->ss->external)
458 ping_monitor_by_id(devnum);
459 return rv;
460 }
461
462 /* We have added something to the array, so need to re-read the
463 * state. Eventually this state should be kept up-to-date as
464 * things change.
465 */
466 sysfs_free(sra);
467 sra = sysfs_read(mdfd, -1, (GET_DEVS | GET_STATE |
468 GET_OFFSET | GET_SIZE));
469 active_disks = count_active(st, sra, mdfd, &avail, &info);
470 if (enough(info.array.level, info.array.raid_disks,
471 info.array.layout, info.array.state & 1,
472 avail) == 0) {
473 if (c->verbose >= 0)
474 pr_err("%s attached to %s, not enough to start (%d).\n",
475 devname, chosen_name, active_disks);
476 rv = 0;
477 goto out_unlock;
478 }
479
480 /* 7b/ if yes, */
481 /* - if number of OK devices match expected, or -R and there */
482 /* are enough, */
483 /* + add any bitmap file */
484 /* + start the array (auto-readonly). */
485
486 if (ioctl(mdfd, GET_ARRAY_INFO, &ainf) == 0) {
487 if (c->verbose >= 0)
488 pr_err("%s attached to %s which is already active.\n",
489 devname, chosen_name);
490 rv = 0;
491 goto out_unlock;
492 }
493
494 map_unlock(&map);
495 if (c->runstop > 0 || active_disks >= info.array.working_disks) {
496 struct mdinfo *dsk;
497 /* Let's try to start it */
498 if (match && match->bitmap_file) {
499 int bmfd = open(match->bitmap_file, O_RDWR);
500 if (bmfd < 0) {
501 pr_err("Could not open bitmap file %s.\n",
502 match->bitmap_file);
503 goto out;
504 }
505 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
506 close(bmfd);
507 pr_err("Failed to set bitmapfile for %s.\n",
508 chosen_name);
509 goto out;
510 }
511 close(bmfd);
512 }
513 /* Need to remove from the array any devices which
514 * 'count_active' discerned were too old or inappropriate
515 */
516 for (d = sra ? sra->devs : NULL ; d ; d = d->next)
517 if (d->disk.state & (1<<MD_DISK_REMOVED))
518 remove_disk(mdfd, st, sra, d);
519
520 if ((sra == NULL || active_disks >= info.array.working_disks)
521 && trustworthy != FOREIGN)
522 rv = ioctl(mdfd, RUN_ARRAY, NULL);
523 else
524 rv = sysfs_set_str(sra, NULL,
525 "array_state", "read-auto");
526 if (rv == 0) {
527 if (c->verbose >= 0)
528 pr_err("%s attached to %s, which has been started.\n",
529 devname, chosen_name);
530 rv = 0;
531 wait_for(chosen_name, mdfd);
532 /* We just started the array, so some devices
533 * might have been evicted from the array
534 * because their event counts were too old.
535 * If the action=re-add policy is in-force for
536 * those devices we should re-add them now.
537 */
538 for (dsk = sra->devs; dsk ; dsk = dsk->next) {
539 if (disk_action_allows(dsk, st->ss->name, act_re_add) &&
540 add_disk(mdfd, st, sra, dsk) == 0)
541 pr_err("%s re-added to %s\n",
542 dsk->sys_name, chosen_name);
543 }
544 } else {
545 pr_err("%s attached to %s, but failed to start: %s.\n",
546 devname, chosen_name, strerror(errno));
547 rv = 1;
548 }
549 } else {
550 if (c->verbose >= 0)
551 pr_err("%s attached to %s, not enough to start safely.\n",
552 devname, chosen_name);
553 rv = 0;
554 }
555 out:
556 free(avail);
557 if (dfd >= 0)
558 close(dfd);
559 if (mdfd >= 0)
560 close(mdfd);
561 if (policy)
562 dev_policy_free(policy);
563 if (sra)
564 sysfs_free(sra);
565 return rv;
566 out_unlock:
567 map_unlock(&map);
568 goto out;
569 }
570
571 static void find_reject(int mdfd, struct supertype *st, struct mdinfo *sra,
572 int number, __u64 events, int verbose,
573 char *array_name)
574 {
575 /* Find a device attached to this array with a disk.number of number
576 * and events less than the passed events, and remove the device.
577 */
578 struct mdinfo *d;
579 mdu_array_info_t ra;
580
581 if (ioctl(mdfd, GET_ARRAY_INFO, &ra) == 0)
582 return; /* not safe to remove from active arrays
583 * without thinking more */
584
585 for (d = sra->devs; d ; d = d->next) {
586 char dn[10];
587 int dfd;
588 struct mdinfo info;
589 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
590 dfd = dev_open(dn, O_RDONLY);
591 if (dfd < 0)
592 continue;
593 if (st->ss->load_super(st, dfd, NULL)) {
594 close(dfd);
595 continue;
596 }
597 st->ss->getinfo_super(st, &info, NULL);
598 st->ss->free_super(st);
599 close(dfd);
600
601 if (info.disk.number != number ||
602 info.events >= events)
603 continue;
604
605 if (d->disk.raid_disk > -1)
606 sysfs_set_str(sra, d, "slot", "none");
607 if (sysfs_set_str(sra, d, "state", "remove") == 0)
608 if (verbose >= 0)
609 pr_err("removing old device %s from %s\n",
610 d->sys_name+4, array_name);
611 }
612 }
613
614 static int count_active(struct supertype *st, struct mdinfo *sra,
615 int mdfd, char **availp,
616 struct mdinfo *bestinfo)
617 {
618 /* count how many devices in sra think they are active */
619 struct mdinfo *d;
620 int cnt = 0;
621 __u64 max_events = 0;
622 char *avail = NULL;
623 int *best = NULL;
624 char *devmap = NULL;
625 int numdevs = 0;
626 int devnum;
627 int b, i;
628 int raid_disks = 0;
629
630 if (!sra)
631 return 0;
632
633 for (d = sra->devs ; d ; d = d->next)
634 numdevs++;
635 for (d = sra->devs, devnum=0 ; d ; d = d->next, devnum++) {
636 char dn[30];
637 int dfd;
638 int ok;
639 struct mdinfo info;
640
641 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
642 dfd = dev_open(dn, O_RDONLY);
643 if (dfd < 0)
644 continue;
645 ok = st->ss->load_super(st, dfd, NULL);
646 close(dfd);
647 if (ok != 0)
648 continue;
649 info.array.raid_disks = raid_disks;
650 st->ss->getinfo_super(st, &info, devmap + raid_disks * devnum);
651 if (!avail) {
652 raid_disks = info.array.raid_disks;
653 avail = xcalloc(raid_disks, 1);
654 *availp = avail;
655
656 best = xcalloc(raid_disks, sizeof(int));
657 devmap = xcalloc(raid_disks, numdevs);
658
659 st->ss->getinfo_super(st, &info, devmap);
660 }
661
662 if (info.disk.state & (1<<MD_DISK_SYNC))
663 {
664 if (cnt == 0) {
665 cnt++;
666 max_events = info.events;
667 avail[info.disk.raid_disk] = 2;
668 best[info.disk.raid_disk] = devnum;
669 st->ss->getinfo_super(st, bestinfo, NULL);
670 } else if (info.events == max_events) {
671 avail[info.disk.raid_disk] = 2;
672 best[info.disk.raid_disk] = devnum;
673 } else if (info.events == max_events-1) {
674 if (avail[info.disk.raid_disk] == 0) {
675 avail[info.disk.raid_disk] = 1;
676 best[info.disk.raid_disk] = devnum;
677 }
678 } else if (info.events < max_events - 1)
679 ;
680 else if (info.events == max_events+1) {
681 int i;
682 max_events = info.events;
683 for (i=0; i < raid_disks; i++)
684 if (avail[i])
685 avail[i]--;
686 avail[info.disk.raid_disk] = 2;
687 best[info.disk.raid_disk] = devnum;
688 st->ss->getinfo_super(st, bestinfo, NULL);
689 } else { /* info.events much bigger */
690 memset(avail, 0, raid_disks);
691 max_events = info.events;
692 avail[info.disk.raid_disk] = 2;
693 best[info.disk.raid_disk] = devnum;
694 st->ss->getinfo_super(st, bestinfo, NULL);
695 }
696 }
697 st->ss->free_super(st);
698 }
699 if (!avail)
700 return 0;
701 /* We need to reject any device that thinks the best device is
702 * failed or missing */
703 for (b = 0; b < raid_disks; b++)
704 if (avail[b] == 2)
705 break;
706 cnt = 0;
707 for (i = 0 ; i < raid_disks ; i++) {
708 if (i != b && avail[i])
709 if (devmap[raid_disks * best[i] + b] == 0) {
710 /* This device thinks 'b' is failed -
711 * don't use it */
712 devnum = best[i];
713 for (d=sra->devs ; devnum; d = d->next)
714 devnum--;
715 d->disk.state |= (1 << MD_DISK_REMOVED);
716 avail[i] = 0;
717 }
718 if (avail[i])
719 cnt++;
720 }
721 free(best);
722 free(devmap);
723 return cnt;
724 }
725
726 /* test if container has degraded member(s) */
727 static int container_members_max_degradation(struct map_ent *map, struct map_ent *me)
728 {
729 mdu_array_info_t array;
730 int afd;
731 int max_degraded = 0;
732
733 for(; map; map = map->next) {
734 if (!is_subarray(map->metadata) ||
735 devname2devnum(map->metadata+1) != me->devnum)
736 continue;
737 afd = open_dev(map->devnum);
738 if (afd < 0)
739 continue;
740 /* most accurate information regarding array degradation */
741 if (ioctl(afd, GET_ARRAY_INFO, &array) >= 0) {
742 int degraded = array.raid_disks - array.active_disks -
743 array.spare_disks;
744 if (degraded > max_degraded)
745 max_degraded = degraded;
746 }
747 close(afd);
748 }
749 return (max_degraded);
750 }
751
752 static int array_try_spare(char *devname, int *dfdp, struct dev_policy *pol,
753 struct map_ent *target, int bare,
754 struct supertype *st, int verbose)
755 {
756 /* This device doesn't have any md metadata
757 * The device policy allows 'spare' and if !bare, it allows spare-same-slot.
758 * If 'st' is not set, then we only know that some metadata allows this,
759 * others possibly don't.
760 * So look for a container or array to attach the device to.
761 * Prefer 'target' if that is set and the array is found.
762 *
763 * If st is set, then only arrays of that type are considered
764 * Return 0 on success, or some exit code on failure, probably 1.
765 */
766 int rv = 1;
767 struct stat stb;
768 struct map_ent *mp, *map = NULL;
769 struct mdinfo *chosen = NULL;
770 int dfd = *dfdp;
771
772 if (fstat(dfd, &stb) != 0)
773 return 1;
774
775 /*
776 * Now we need to find a suitable array to add this to.
777 * We only accept arrays that:
778 * - match 'st'
779 * - are in the same domains as the device
780 * - are of an size for which the device will be useful
781 * and we choose the one that is the most degraded
782 */
783
784 if (map_lock(&map)) {
785 pr_err("failed to get exclusive lock on "
786 "mapfile\n");
787 return 1;
788 }
789 for (mp = map ; mp ; mp = mp->next) {
790 struct supertype *st2;
791 struct domainlist *dl = NULL;
792 struct mdinfo *sra;
793 unsigned long long devsize;
794 unsigned long long component_size = 0;
795
796 if (is_subarray(mp->metadata))
797 continue;
798 if (st) {
799 st2 = st->ss->match_metadata_desc(mp->metadata);
800 if (!st2 ||
801 (st->minor_version >= 0 &&
802 st->minor_version != st2->minor_version)) {
803 if (verbose > 1)
804 pr_err("not adding %s to %s as metadata type doesn't match\n",
805 devname, mp->path);
806 free(st2);
807 continue;
808 }
809 free(st2);
810 }
811 sra = sysfs_read(-1, mp->devnum,
812 GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE|
813 GET_DEGRADED|GET_COMPONENT|GET_VERSION);
814 if (!sra) {
815 /* Probably a container - no degraded info */
816 sra = sysfs_read(-1, mp->devnum,
817 GET_DEVS|GET_OFFSET|GET_SIZE|GET_STATE|
818 GET_COMPONENT|GET_VERSION);
819 if (sra)
820 sra->array.failed_disks = -1;
821 }
822 if (!sra)
823 continue;
824 if (st == NULL) {
825 int i;
826 st2 = NULL;
827 for(i=0; !st2 && superlist[i]; i++)
828 st2 = superlist[i]->match_metadata_desc(
829 sra->text_version);
830 if (!st2) {
831 if (verbose > 1)
832 pr_err("not adding %s to %s"
833 " as metadata not recognised.\n",
834 devname, mp->path);
835 goto next;
836 }
837 /* Need to double check the 'act_spare' permissions applies
838 * to this metadata.
839 */
840 if (!policy_action_allows(pol, st2->ss->name, act_spare))
841 goto next;
842 if (!bare && !policy_action_allows(pol, st2->ss->name,
843 act_spare_same_slot))
844 goto next;
845 } else
846 st2 = st;
847 /* update number of failed disks for mostly degraded
848 * container member */
849 if (sra->array.failed_disks == -1)
850 sra->array.failed_disks = container_members_max_degradation(map, mp);
851
852 get_dev_size(dfd, NULL, &devsize);
853 if (sra->component_size == 0) {
854 /* true for containers, here we must read superblock
855 * to obtain minimum spare size */
856 struct supertype *st3 = dup_super(st2);
857 int mdfd = open_dev(mp->devnum);
858 if (mdfd < 0) {
859 free(st3);
860 goto next;
861 }
862 if (st3->ss->load_container &&
863 !st3->ss->load_container(st3, mdfd, mp->path)) {
864 component_size = st3->ss->min_acceptable_spare_size(st3);
865 st3->ss->free_super(st3);
866 }
867 free(st3);
868 close(mdfd);
869 }
870 if ((sra->component_size > 0 &&
871 st2->ss->avail_size(st2, devsize) < sra->component_size)
872 ||
873 (sra->component_size == 0 && devsize < component_size)) {
874 if (verbose > 1)
875 pr_err("not adding %s to %s as it is too small\n",
876 devname, mp->path);
877 goto next;
878 }
879 /* test against target.
880 * If 'target' is set and 'bare' is false, we only accept
881 * arrays/containers that match 'target'.
882 * If 'target' is set and 'bare' is true, we prefer the
883 * array which matches 'target'.
884 * target is considered only if we deal with degraded array
885 */
886 if (target && policy_action_allows(pol, st2->ss->name,
887 act_spare_same_slot)) {
888 if (strcmp(target->metadata, mp->metadata) == 0 &&
889 memcmp(target->uuid, mp->uuid,
890 sizeof(target->uuid)) == 0 &&
891 sra->array.failed_disks > 0) {
892 /* This is our target!! */
893 if (chosen)
894 sysfs_free(chosen);
895 chosen = sra;
896 sra = NULL;
897 /* skip to end so we don't check any more */
898 while (mp->next)
899 mp = mp->next;
900 goto next;
901 }
902 /* not our target */
903 if (!bare)
904 goto next;
905 }
906
907 dl = domain_from_array(sra, st2->ss->name);
908 if (domain_test(dl, pol, st2->ss->name) != 1) {
909 /* domain test fails */
910 if (verbose > 1)
911 pr_err("not adding %s to %s as"
912 " it is not in a compatible domain\n",
913 devname, mp->path);
914
915 goto next;
916 }
917 /* all tests passed, OK to add to this array */
918 if (!chosen) {
919 chosen = sra;
920 sra = NULL;
921 } else if (chosen->array.failed_disks < sra->array.failed_disks) {
922 sysfs_free(chosen);
923 chosen = sra;
924 sra = NULL;
925 }
926 next:
927 if (sra)
928 sysfs_free(sra);
929 if (st != st2)
930 free(st2);
931 if (dl)
932 domain_free(dl);
933 }
934 if (chosen) {
935 /* add current device to chosen array as a spare */
936 int mdfd = open_dev(devname2devnum(chosen->sys_name));
937 if (mdfd >= 0) {
938 struct mddev_dev devlist;
939 char devname[20];
940 devlist.next = NULL;
941 devlist.used = 0;
942 devlist.writemostly = 0;
943 devlist.devname = devname;
944 sprintf(devname, "%d:%d", major(stb.st_rdev),
945 minor(stb.st_rdev));
946 devlist.disposition = 'a';
947 close(dfd);
948 *dfdp = -1;
949 rv = Manage_subdevs(chosen->sys_name, mdfd, &devlist,
950 -1, 0, NULL, 0);
951 close(mdfd);
952 }
953 if (verbose > 0) {
954 if (rv == 0)
955 pr_err("added %s as spare for %s\n",
956 devname, chosen->sys_name);
957 else
958 pr_err("failed to add %s as spare for %s\n",
959 devname, chosen->sys_name);
960 }
961 sysfs_free(chosen);
962 }
963 map_unlock(&map);
964 return rv;
965 }
966
967 static int partition_try_spare(char *devname, int *dfdp, struct dev_policy *pol,
968 struct supertype *st, int verbose)
969 {
970 /* we know that at least one partition virtual-metadata is
971 * allowed to incorporate spares like this device. We need to
972 * find a suitable device to copy partition information from.
973 *
974 * Getting a list of all disk (not partition) devices is
975 * slightly non-trivial. We could look at /sys/block, but
976 * that is theoretically due to be removed. Maybe best to use
977 * /dev/disk/by-path/?* and ignore names ending '-partNN' as
978 * we depend on this directory of 'path' info. But that fails
979 * to find loop devices and probably others. Maybe don't
980 * worry about that, they aren't the real target.
981 *
982 * So: check things in /dev/disk/by-path to see if they are in
983 * a compatible domain, then load the partition table and see
984 * if it is OK for the new device, and choose the largest
985 * partition table that fits.
986 */
987 DIR *dir;
988 struct dirent *de;
989 char *chosen = NULL;
990 unsigned long long chosen_size = 0;
991 struct supertype *chosen_st = NULL;
992 int fd;
993
994 dir = opendir("/dev/disk/by-path");
995 if (!dir)
996 return 1;
997 while ((de = readdir(dir)) != NULL) {
998 char *ep;
999 struct dev_policy *pol2 = NULL;
1000 struct domainlist *domlist = NULL;
1001 int fd = -1;
1002 struct mdinfo info;
1003 struct supertype *st2 = NULL;
1004 char *devname = NULL;
1005 unsigned long long devsectors;
1006
1007 if (de->d_ino == 0 ||
1008 de->d_name[0] == '.' ||
1009 (de->d_type != DT_LNK && de->d_type != DT_UNKNOWN))
1010 goto next;
1011
1012 ep = de->d_name + strlen(de->d_name);
1013 while (ep > de->d_name &&
1014 isdigit(ep[-1]))
1015 ep--;
1016 if (ep > de->d_name + 5 &&
1017 strncmp(ep-5, "-part", 5) == 0)
1018 /* This is a partition - skip it */
1019 goto next;
1020
1021 pol2 = path_policy(de->d_name, type_disk);
1022
1023 domain_merge(&domlist, pol2, st ? st->ss->name : NULL);
1024 if (domain_test(domlist, pol, st ? st->ss->name : NULL) != 1)
1025 /* new device is incompatible with this device. */
1026 goto next;
1027
1028 domain_free(domlist);
1029 domlist = NULL;
1030
1031 if (asprintf(&devname, "/dev/disk/by-path/%s", de->d_name) != 1) {
1032 devname = NULL;
1033 goto next;
1034 }
1035 fd = open(devname, O_RDONLY);
1036 if (fd < 0)
1037 goto next;
1038 if (get_dev_size(fd, devname, &devsectors) == 0)
1039 goto next;
1040 devsectors >>= 9;
1041
1042 if (st)
1043 st2 = dup_super(st);
1044 else
1045 st2 = guess_super_type(fd, guess_partitions);
1046 if (st2 == NULL ||
1047 st2->ss->load_super(st2, fd, NULL) < 0)
1048 goto next;
1049
1050 if (!st) {
1051 /* Check domain policy again, this time referring to metadata */
1052 domain_merge(&domlist, pol2, st2->ss->name);
1053 if (domain_test(domlist, pol, st2->ss->name) != 1)
1054 /* Incompatible devices for this metadata type */
1055 goto next;
1056 if (!policy_action_allows(pol, st2->ss->name, act_spare))
1057 /* Some partition types allow sparing, but not
1058 * this one.
1059 */
1060 goto next;
1061 }
1062
1063 st2->ss->getinfo_super(st2, &info, NULL);
1064 if (info.component_size > devsectors)
1065 /* This partitioning doesn't fit in the device */
1066 goto next;
1067
1068 /* This is an acceptable device to copy partition
1069 * metadata from. We could just stop here, but I
1070 * think I want to keep looking incase a larger
1071 * metadata which makes better use of the device can
1072 * be found.
1073 */
1074 if (chosen == NULL ||
1075 chosen_size < info.component_size) {
1076 chosen_size = info.component_size;
1077 free(chosen);
1078 chosen = devname;
1079 devname = NULL;
1080 if (chosen_st) {
1081 chosen_st->ss->free_super(chosen_st);
1082 free(chosen_st);
1083 }
1084 chosen_st = st2;
1085 st2 = NULL;
1086 }
1087
1088 next:
1089 free(devname);
1090 domain_free(domlist);
1091 dev_policy_free(pol2);
1092 if (st2)
1093 st2->ss->free_super(st2);
1094 free(st2);
1095
1096 if (fd >= 0)
1097 close(fd);
1098 }
1099
1100 closedir(dir);
1101
1102 if (!chosen)
1103 return 1;
1104
1105 /* 'chosen' is the best device we can find. Let's write its
1106 * metadata to devname dfd is read-only so don't use that
1107 */
1108 fd = open(devname, O_RDWR);
1109 if (fd >= 0) {
1110 chosen_st->ss->store_super(chosen_st, fd);
1111 close(fd);
1112 }
1113 free(chosen);
1114 chosen_st->ss->free_super(chosen_st);
1115 free(chosen_st);
1116 return 0;
1117 }
1118
1119 static int is_bare(int dfd)
1120 {
1121 unsigned long long size = 0;
1122 char bufpad[4096 + 4096];
1123 char *buf = (char*)(((long)bufpad + 4096) & ~4095);
1124
1125 if (lseek(dfd, 0, SEEK_SET) != 0 ||
1126 read(dfd, buf, 4096) != 4096)
1127 return 0;
1128
1129 if (buf[0] != '\0' && buf[0] != '\x5a' && buf[0] != '\xff')
1130 return 0;
1131 if (memcmp(buf, buf+1, 4095) != 0)
1132 return 0;
1133
1134 /* OK, first 4K appear blank, try the end. */
1135 get_dev_size(dfd, NULL, &size);
1136 if (lseek(dfd, size-4096, SEEK_SET) < 0 ||
1137 read(dfd, buf, 4096) != 4096)
1138 return 0;
1139
1140 if (buf[0] != '\0' && buf[0] != '\x5a' && buf[0] != '\xff')
1141 return 0;
1142 if (memcmp(buf, buf+1, 4095) != 0)
1143 return 0;
1144
1145 return 1;
1146 }
1147
1148 /* adding a spare to a regular array is quite different from adding one to
1149 * a set-of-partitions virtual array.
1150 * This function determines which is worth trying and tries as appropriate.
1151 * Arrays are given priority over partitions.
1152 */
1153 static int try_spare(char *devname, int *dfdp, struct dev_policy *pol,
1154 struct map_ent *target,
1155 struct supertype *st, int verbose)
1156 {
1157 int i;
1158 int rv;
1159 int arrays_ok = 0;
1160 int partitions_ok = 0;
1161 int dfd = *dfdp;
1162 int bare;
1163
1164 /* Can only add a spare if device has at least one domain */
1165 if (pol_find(pol, pol_domain) == NULL)
1166 return 1;
1167 /* And only if some action allows spares */
1168 if (!policy_action_allows(pol, st?st->ss->name:NULL, act_spare))
1169 return 1;
1170
1171 /* Now check if the device is bare.
1172 * bare devices can always be added as a spare
1173 * non-bare devices can only be added if spare-same-slot is permitted,
1174 * and this device is replacing a previous device - in which case 'target'
1175 * will be set.
1176 */
1177 if (!is_bare(dfd)) {
1178 /* Must have a target and allow same_slot */
1179 /* Later - may allow force_spare without target */
1180 if (!target ||
1181 !policy_action_allows(pol, st?st->ss->name:NULL,
1182 act_spare_same_slot)) {
1183 if (verbose > 1)
1184 pr_err("%s is not bare, so not "
1185 "considering as a spare\n",
1186 devname);
1187 return 1;
1188 }
1189 bare = 0;
1190 } else
1191 bare = 1;
1192
1193 /* It might be OK to add this device to an array - need to see
1194 * what arrays might be candidates.
1195 */
1196 if (st) {
1197 /* just try try 'array' or 'partition' based on this metadata */
1198 if (st->ss->add_to_super)
1199 return array_try_spare(devname, dfdp, pol, target, bare,
1200 st, verbose);
1201 else
1202 return partition_try_spare(devname, dfdp, pol,
1203 st, verbose);
1204 }
1205 /* No metadata was specified or found so options are open.
1206 * Check for whether any array metadata, or any partition metadata
1207 * might allow adding the spare. This check is just help to avoid
1208 * a more costly scan of all arrays when we can be sure that will
1209 * fail.
1210 */
1211 for (i = 0; (!arrays_ok || !partitions_ok) && superlist[i] ; i++) {
1212 if (superlist[i]->add_to_super && !arrays_ok &&
1213 policy_action_allows(pol, superlist[i]->name, act_spare))
1214 arrays_ok = 1;
1215 if (superlist[i]->add_to_super == NULL && !partitions_ok &&
1216 policy_action_allows(pol, superlist[i]->name, act_spare))
1217 partitions_ok = 1;
1218 }
1219 rv = 1;
1220 if (arrays_ok)
1221 rv = array_try_spare(devname, dfdp, pol, target, bare,
1222 st, verbose);
1223 if (rv != 0 && partitions_ok)
1224 rv = partition_try_spare(devname, dfdp, pol, st, verbose);
1225 return rv;
1226 }
1227
1228 int IncrementalScan(int verbose)
1229 {
1230 /* look at every device listed in the 'map' file.
1231 * If one is found that is not running then:
1232 * look in mdadm.conf for bitmap file.
1233 * if one exists, but array has none, add it.
1234 * try to start array in auto-readonly mode
1235 */
1236 struct map_ent *mapl = NULL;
1237 struct map_ent *me;
1238 struct mddev_ident *devs, *mddev;
1239 int rv = 0;
1240
1241 map_read(&mapl);
1242 devs = conf_get_ident(NULL);
1243
1244 for (me = mapl ; me ; me = me->next) {
1245 mdu_array_info_t array;
1246 mdu_bitmap_file_t bmf;
1247 struct mdinfo *sra;
1248 int mdfd = open_dev(me->devnum);
1249
1250 if (mdfd < 0)
1251 continue;
1252 if (ioctl(mdfd, GET_ARRAY_INFO, &array) == 0 ||
1253 errno != ENODEV) {
1254 close(mdfd);
1255 continue;
1256 }
1257 /* Ok, we can try this one. Maybe it needs a bitmap */
1258 for (mddev = devs ; mddev ; mddev = mddev->next)
1259 if (mddev->devname && me->path
1260 && devname_matches(mddev->devname, me->path))
1261 break;
1262 if (mddev && mddev->bitmap_file) {
1263 /*
1264 * Note: early kernels will wrongly fail this, so it
1265 * is a hint only
1266 */
1267 int added = -1;
1268 if (ioctl(mdfd, GET_ARRAY_INFO, &bmf) < 0) {
1269 int bmfd = open(mddev->bitmap_file, O_RDWR);
1270 if (bmfd >= 0) {
1271 added = ioctl(mdfd, SET_BITMAP_FILE,
1272 bmfd);
1273 close(bmfd);
1274 }
1275 }
1276 if (verbose >= 0) {
1277 if (added == 0)
1278 pr_err("Added bitmap %s to %s\n",
1279 mddev->bitmap_file, me->path);
1280 else if (errno != EEXIST)
1281 pr_err("Failed to add bitmap to %s: %s\n",
1282 me->path, strerror(errno));
1283 }
1284 }
1285 sra = sysfs_read(mdfd, 0, 0);
1286 if (sra) {
1287 if (sysfs_set_str(sra, NULL,
1288 "array_state", "read-auto") == 0) {
1289 if (verbose >= 0)
1290 pr_err("started array %s\n",
1291 me->path ?: devnum2devname(me->devnum));
1292 } else {
1293 pr_err("failed to start array %s: %s\n",
1294 me->path ?: devnum2devname(me->devnum),
1295 strerror(errno));
1296 rv = 1;
1297 }
1298 sysfs_free(sra);
1299 }
1300 }
1301 return rv;
1302 }
1303
1304 static char *container2devname(char *devname)
1305 {
1306 char *mdname = NULL;
1307
1308 if (devname[0] == '/') {
1309 int fd = open(devname, O_RDONLY);
1310 if (fd >= 0) {
1311 mdname = devnum2devname(fd2devnum(fd));
1312 close(fd);
1313 }
1314 } else {
1315 int uuid[4];
1316 struct map_ent *mp, *map = NULL;
1317
1318 if (!parse_uuid(devname, uuid))
1319 return mdname;
1320 mp = map_by_uuid(&map, uuid);
1321 if (mp)
1322 mdname = devnum2devname(mp->devnum);
1323 map_free(map);
1324 }
1325
1326 return mdname;
1327 }
1328
1329 static int Incremental_container(struct supertype *st, char *devname,
1330 struct context *c)
1331 {
1332 /* Collect the contents of this container and for each
1333 * array, choose a device name and assemble the array.
1334 */
1335
1336 struct mdinfo *list;
1337 struct mdinfo *ra;
1338 struct map_ent *map = NULL;
1339 struct mdinfo info;
1340 int trustworthy;
1341 struct mddev_ident *match;
1342 int rv = 0;
1343 struct domainlist *domains;
1344 struct map_ent *smp;
1345 int suuid[4];
1346 int sfd;
1347 int ra_blocked = 0;
1348 int ra_all = 0;
1349
1350 st->ss->getinfo_super(st, &info, NULL);
1351
1352 if ((c->runstop > 0 && info.container_enough >= 0) ||
1353 info.container_enough > 0)
1354 /* pass */;
1355 else {
1356 if (c->verbose)
1357 pr_err("not enough devices to start the container\n");
1358 return 0;
1359 }
1360
1361 match = conf_match(st, &info, devname, c->verbose, &rv);
1362 if (match == NULL && rv == 2)
1363 return rv;
1364
1365 /* Need to compute 'trustworthy' */
1366 if (match)
1367 trustworthy = LOCAL;
1368 else if (st->ss->match_home(st, c->homehost) == 1)
1369 trustworthy = LOCAL;
1370 else if (st->ss->match_home(st, "any") == 1)
1371 trustworthy = LOCAL;
1372 else
1373 trustworthy = FOREIGN;
1374
1375 list = st->ss->container_content(st, NULL);
1376 /* when nothing to activate - quit */
1377 if (list == NULL)
1378 return 0;
1379 for (ra = list ; ra ; ra = ra->next) {
1380 int mdfd;
1381 char chosen_name[1024];
1382 struct map_ent *mp;
1383 struct mddev_ident *match = NULL;
1384
1385 ra_all++;
1386 /* do not activate arrays blocked by metadata handler */
1387 if (ra->array.state & (1 << MD_SB_BLOCK_VOLUME)) {
1388 pr_err("Cannot activate array %s in %s.\n",
1389 ra->text_version, devname);
1390 ra_blocked++;
1391 continue;
1392 }
1393 mp = map_by_uuid(&map, ra->uuid);
1394
1395 if (mp) {
1396 mdfd = open_dev(mp->devnum);
1397 if (mp->path)
1398 strcpy(chosen_name, mp->path);
1399 else
1400 strcpy(chosen_name, devnum2devname(mp->devnum));
1401 } else {
1402
1403 /* Check in mdadm.conf for container == devname and
1404 * member == ra->text_version after second slash.
1405 */
1406 char *sub = strchr(ra->text_version+1, '/');
1407 struct mddev_ident *array_list;
1408 if (sub) {
1409 sub++;
1410 array_list = conf_get_ident(NULL);
1411 } else
1412 array_list = NULL;
1413 for(; array_list ; array_list = array_list->next) {
1414 char *dn;
1415 if (array_list->member == NULL ||
1416 array_list->container == NULL)
1417 continue;
1418 if (strcmp(array_list->member, sub) != 0)
1419 continue;
1420 if (array_list->uuid_set &&
1421 !same_uuid(ra->uuid, array_list->uuid, st->ss->swapuuid))
1422 continue;
1423 dn = container2devname(array_list->container);
1424 if (dn == NULL)
1425 continue;
1426 if (strncmp(dn, ra->text_version+1,
1427 strlen(dn)) != 0 ||
1428 ra->text_version[strlen(dn)+1] != '/') {
1429 free(dn);
1430 continue;
1431 }
1432 free(dn);
1433 /* we have a match */
1434 match = array_list;
1435 if (c->verbose>0)
1436 pr_err("match found for member %s\n",
1437 array_list->member);
1438 break;
1439 }
1440
1441 if (match && match->devname &&
1442 strcasecmp(match->devname, "<ignore>") == 0) {
1443 if (c->verbose > 0)
1444 pr_err("array %s/%s is "
1445 "explicitly ignored by mdadm.conf\n",
1446 match->container, match->member);
1447 return 2;
1448 }
1449 if (match)
1450 trustworthy = LOCAL;
1451
1452 mdfd = create_mddev(match ? match->devname : NULL,
1453 ra->name,
1454 c->autof,
1455 trustworthy,
1456 chosen_name);
1457 }
1458
1459 if (mdfd < 0) {
1460 pr_err("failed to open %s: %s.\n",
1461 chosen_name, strerror(errno));
1462 return 2;
1463 }
1464
1465 assemble_container_content(st, mdfd, ra, c,
1466 chosen_name);
1467 close(mdfd);
1468 }
1469
1470 /* don't move spares to container with volume being activated
1471 when all volumes are blocked */
1472 if (ra_all == ra_blocked)
1473 return 0;
1474
1475 /* Now move all suitable spares from spare container */
1476 domains = domain_from_array(list, st->ss->name);
1477 memcpy(suuid, uuid_zero, sizeof(int[4]));
1478 if (domains &&
1479 (smp = map_by_uuid(&map, suuid)) != NULL &&
1480 (sfd = open(smp->path, O_RDONLY)) >= 0) {
1481 /* spare container found */
1482 struct supertype *sst =
1483 super_imsm.match_metadata_desc("imsm");
1484 struct mdinfo *sinfo;
1485 unsigned long long min_size = 0;
1486 if (st->ss->min_acceptable_spare_size)
1487 min_size = st->ss->min_acceptable_spare_size(st);
1488 if (!sst->ss->load_container(sst, sfd, NULL)) {
1489 close(sfd);
1490 sinfo = container_choose_spares(sst, min_size,
1491 domains, NULL,
1492 st->ss->name, 0);
1493 sst->ss->free_super(sst);
1494 if (sinfo){
1495 int count = 0;
1496 struct mdinfo *disks = sinfo->devs;
1497 while (disks) {
1498 /* move spare from spare
1499 * container to currently
1500 * assembled one
1501 */
1502 if (move_spare(
1503 smp->path,
1504 devname,
1505 makedev(disks->disk.major,
1506 disks->disk.minor)))
1507 count++;
1508 disks = disks->next;
1509 }
1510 if (count)
1511 pr_err("Added %d spare%s to %s\n",
1512 count, count>1?"s":"", devname);
1513 }
1514 sysfs_free(sinfo);
1515 } else
1516 close(sfd);
1517 }
1518 domain_free(domains);
1519 return 0;
1520 }
1521
1522 /*
1523 * IncrementalRemove - Attempt to see if the passed in device belongs to any
1524 * raid arrays, and if so first fail (if needed) and then remove the device.
1525 *
1526 * @devname - The device we want to remove
1527 * @id_path - name as found in /dev/disk/by-path for this device
1528 *
1529 * Note: the device name must be a kernel name like "sda", so
1530 * that we can find it in /proc/mdstat
1531 */
1532 int IncrementalRemove(char *devname, char *id_path, int verbose)
1533 {
1534 int mdfd;
1535 int rv;
1536 struct mdstat_ent *ent;
1537 struct mddev_dev devlist;
1538
1539 if (!id_path)
1540 dprintf(Name ": incremental removal without --path <id_path> "
1541 "lacks the possibility to re-add new device in this "
1542 "port\n");
1543
1544 if (strchr(devname, '/')) {
1545 pr_err("incremental removal requires a "
1546 "kernel device name, not a file: %s\n", devname);
1547 return 1;
1548 }
1549 ent = mdstat_by_component(devname);
1550 if (!ent) {
1551 pr_err("%s does not appear to be a component "
1552 "of any array\n", devname);
1553 return 1;
1554 }
1555 mdfd = open_dev(ent->devnum);
1556 if (mdfd < 0) {
1557 pr_err("Cannot open array %s!!\n", ent->dev);
1558 free_mdstat(ent);
1559 return 1;
1560 }
1561
1562 if (id_path) {
1563 struct map_ent *map = NULL, *me;
1564 me = map_by_devnum(&map, ent->devnum);
1565 if (me)
1566 policy_save_path(id_path, me);
1567 map_free(map);
1568 }
1569
1570 memset(&devlist, 0, sizeof(devlist));
1571 devlist.devname = devname;
1572 devlist.disposition = 'f';
1573 /* for a container, we must fail each member array */
1574 if (ent->metadata_version &&
1575 strncmp(ent->metadata_version, "external:", 9) == 0) {
1576 struct mdstat_ent *mdstat = mdstat_read(0, 0);
1577 struct mdstat_ent *memb;
1578 for (memb = mdstat ; memb ; memb = memb->next)
1579 if (is_container_member(memb, ent->dev)) {
1580 int subfd = open_dev(memb->devnum);
1581 if (subfd >= 0) {
1582 Manage_subdevs(memb->dev, subfd,
1583 &devlist, verbose, 0,
1584 NULL, 0);
1585 close(subfd);
1586 }
1587 }
1588 free_mdstat(mdstat);
1589 } else
1590 Manage_subdevs(ent->dev, mdfd, &devlist, verbose, 0, NULL, 0);
1591 devlist.disposition = 'r';
1592 rv = Manage_subdevs(ent->dev, mdfd, &devlist, verbose, 0, NULL, 0);
1593 close(mdfd);
1594 free_mdstat(ent);
1595 return rv;
1596 }