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