]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Incremental.c
mapfile: allow the path name to the device to be empty.
[thirdparty/mdadm.git] / Incremental.c
CommitLineData
8382f19b
NB
1/*
2 * Incremental.c - support --incremental. Part of:
3 * mdadm - manage Linux "md" devices aka RAID arrays.
4 *
5 * Copyright (C) 2006 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
33static int count_active(struct supertype *st, int mdfd, char **availp,
34 struct mdinfo *info);
7e0f6979 35static void find_reject(int mdfd, struct supertype *st, struct mdinfo *sra,
8382f19b
NB
36 int number, __u64 events, int verbose,
37 char *array_name);
38
39int Incremental(char *devname, int verbose, int runstop,
0ac91628
N
40 struct supertype *st, char *homehost, int require_homehost,
41 int autof)
8382f19b
NB
42{
43 /* Add this device to an array, creating the array if necessary
598f0d58 44 * and starting the array if sensible or - if runstop>0 - if possible.
8382f19b
NB
45 *
46 * This has several steps:
47 *
48 * 1/ Check if device is permitted by mdadm.conf, reject if not.
49 * 2/ Find metadata, reject if none appropriate (check
50 * version/name from args)
51 * 3/ Check if there is a match in mdadm.conf
215bb3f7
N
52 * 3a/ if not, check for homehost match. If no match, assemble as
53 * a 'foreign' array.
8382f19b
NB
54 * 4/ Determine device number.
55 * - If in mdadm.conf with std name, use that
56 * - UUID in /var/run/mdadm.map use that
57 * - If name is suggestive, use that. unless in use with different uuid.
58 * - Choose a free, high number.
59 * - Use a partitioned device unless strong suggestion not to.
60 * e.g. auto=md
352452c3 61 * Don't choose partitioned for containers.
8382f19b
NB
62 * 5/ Find out if array already exists
63 * 5a/ if it does not
64 * - choose a name, from mdadm.conf or 'name' field in array.
65 * - create the array
66 * - add the device
67 * 5b/ if it does
68 * - check one drive in array to make sure metadata is a reasonably
69 * close match. Reject if not (e.g. different type)
70 * - add the device
71 * 6/ Make sure /var/run/mdadm.map contains this array.
72 * 7/ Is there enough devices to possibly start the array?
352452c3 73 * For a container, this means running Incremental_container.
8382f19b
NB
74 * 7a/ if not, finish with success.
75 * 7b/ if yes,
76 * - read all metadata and arrange devices like -A does
77 * - if number of OK devices match expected, or -R and there are enough,
78 * start the array (auto-readonly).
79 */
80 struct stat stb;
f35f2525 81 struct mdinfo info;
8382f19b
NB
82 struct mddev_ident_s *array_list, *match;
83 char chosen_name[1024];
84 int rv;
8382f19b
NB
85 struct map_ent *mp, *map = NULL;
86 int dfd, mdfd;
87 char *avail;
88 int active_disks;
215bb3f7 89 int trustworthy = FOREIGN;
d7288ddc 90 char *name_to_use;
ad5bc697 91 mdu_array_info_t ainf;
8382f19b
NB
92
93 struct createinfo *ci = conf_get_create_info();
94
8382f19b 95
352452c3 96 /* 1/ Check if device is permitted by mdadm.conf */
8382f19b
NB
97
98 if (!conf_test_dev(devname)) {
99 if (verbose >= 0)
100 fprintf(stderr, Name
101 ": %s not permitted by mdadm.conf.\n",
102 devname);
103 return 1;
104 }
105
106 /* 2/ Find metadata, reject if none appropriate (check
107 * version/name from args) */
108
109 dfd = dev_open(devname, O_RDONLY|O_EXCL);
110 if (dfd < 0) {
111 if (verbose >= 0)
112 fprintf(stderr, Name ": cannot open %s: %s.\n",
113 devname, strerror(errno));
114 return 1;
115 }
116 if (fstat(dfd, &stb) < 0) {
117 if (verbose >= 0)
118 fprintf(stderr, Name ": fstat failed for %s: %s.\n",
119 devname, strerror(errno));
120 close(dfd);
121 return 1;
122 }
123 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
124 if (verbose >= 0)
125 fprintf(stderr, Name ": %s is not a block device.\n",
126 devname);
127 close(dfd);
128 return 1;
129 }
130
131 if (st == NULL && (st = guess_super(dfd)) == NULL) {
132 if (verbose >= 0)
133 fprintf(stderr, Name
134 ": no recognisable superblock on %s.\n",
135 devname);
136 close(dfd);
137 return 1;
138 }
3da92f27 139 if (st->ss->load_super(st, dfd, NULL)) {
8382f19b
NB
140 if (verbose >= 0)
141 fprintf(stderr, Name ": no RAID superblock on %s.\n",
142 devname);
143 close(dfd);
144 return 1;
145 }
8382f19b
NB
146 close (dfd);
147
f35f2525 148 memset(&info, 0, sizeof(info));
598f0d58 149 st->ss->getinfo_super(st, &info);
8382f19b
NB
150 /* 3/ Check if there is a match in mdadm.conf */
151
152 array_list = conf_get_ident(NULL);
153 match = NULL;
154 for (; array_list; array_list = array_list->next) {
155 if (array_list->uuid_set &&
156 same_uuid(array_list->uuid, info.uuid, st->ss->swapuuid)
157 == 0) {
fe056d1f 158 if (verbose >= 2 && array_list->devname)
8382f19b
NB
159 fprintf(stderr, Name
160 ": UUID differs from %s.\n",
161 array_list->devname);
162 continue;
163 }
164 if (array_list->name[0] &&
165 strcasecmp(array_list->name, info.name) != 0) {
fe056d1f 166 if (verbose >= 2 && array_list->devname)
8382f19b
NB
167 fprintf(stderr, Name
168 ": Name differs from %s.\n",
169 array_list->devname);
170 continue;
171 }
172 if (array_list->devices &&
173 !match_oneof(array_list->devices, devname)) {
fe056d1f 174 if (verbose >= 2 && array_list->devname)
8382f19b
NB
175 fprintf(stderr, Name
176 ": Not a listed device for %s.\n",
177 array_list->devname);
178 continue;
179 }
180 if (array_list->super_minor != UnSet &&
181 array_list->super_minor != info.array.md_minor) {
fe056d1f 182 if (verbose >= 2 && array_list->devname)
8382f19b
NB
183 fprintf(stderr, Name
184 ": Different super-minor to %s.\n",
185 array_list->devname);
186 continue;
187 }
188 if (!array_list->uuid_set &&
189 !array_list->name[0] &&
190 !array_list->devices &&
191 array_list->super_minor == UnSet) {
fe056d1f 192 if (verbose >= 2 && array_list->devname)
8382f19b
NB
193 fprintf(stderr, Name
194 ": %s doesn't have any identifying information.\n",
195 array_list->devname);
196 continue;
197 }
198 /* FIXME, should I check raid_disks and level too?? */
199
200 if (match) {
fe056d1f
N
201 if (verbose >= 0) {
202 if (match->devname && array_list->devname)
203 fprintf(stderr, Name
8382f19b 204 ": we match both %s and %s - cannot decide which to use.\n",
fe056d1f
N
205 match->devname, array_list->devname);
206 else
207 fprintf(stderr, Name
208 ": multiple lines in mdadm.conf match\n");
209 }
8382f19b
NB
210 return 2;
211 }
212 match = array_list;
213 }
214
112cace6
N
215 if (match && match->devname
216 && strcasecmp(match->devname, "<ignore>") == 0) {
217 if (verbose >= 0)
218 fprintf(stderr, Name ": array containing %s is explicitly"
219 " ignored by mdadm.conf\n",
220 devname);
221 return 1;
222 }
223
31015d57
N
224 if (!match && !conf_test_metadata(st->ss->name)) {
225 if (verbose >= 1)
226 fprintf(stderr, Name
227 ": %s has metadata type %s for which "
228 "auto-assembly is disabled\n",
229 devname, st->ss->name);
230 return 1;
231 }
232
7b403fef
N
233 /* 3a/ if not, check for homehost match. If no match, continue
234 * but don't trust the 'name' in the array. Thus a 'random' minor
235 * number will be assigned, and the device name will be based
236 * on that. */
215bb3f7
N
237 if (match)
238 trustworthy = LOCAL;
745f72f6
N
239 else if ((homehost == NULL ||
240 st->ss->match_home(st, homehost) != 1) &&
241 st->ss->match_home(st, "any") != 1)
215bb3f7 242 trustworthy = FOREIGN;
215bb3f7 243 else
ecb02e31 244 trustworthy = LOCAL;
e12e1d1d 245
4ef2f11e
N
246 /* There are three possible sources for 'autof': command line,
247 * ARRAY line in mdadm.conf, or CREATE line in mdadm.conf.
350ac35d
N
248 * ARRAY takes precedence, then command line, then
249 * CREATE.
4ef2f11e 250 */
350ac35d 251 if (match && match->autof)
4ef2f11e
N
252 autof = match->autof;
253 if (autof == 0)
254 autof = ci->autof;
255
215bb3f7
N
256 if (st->ss->container_content && st->loaded_container) {
257 /* This is a pre-built container array, so we do something
258 * rather different.
259 */
260 return Incremental_container(st, devname, verbose, runstop,
261 autof, trustworthy);
8382f19b 262 }
ecb02e31 263
7cdc0872 264 name_to_use = info.name;
0ac91628 265 if (name_to_use[0] == 0 &&
ecb02e31
N
266 info.array.level == LEVEL_CONTAINER &&
267 trustworthy == LOCAL) {
268 name_to_use = info.text_version;
269 trustworthy = METADATA;
270 }
0ac91628
N
271 if (name_to_use[0] && trustworthy != LOCAL &&
272 ! require_homehost &&
273 conf_name_is_free(name_to_use))
274 trustworthy = LOCAL;
ecb02e31 275
7cdc0872
N
276 /* strip "hostname:" prefix from name if we have decided
277 * to treat it as LOCAL
278 */
279 if (trustworthy == LOCAL && strchr(name_to_use, ':') != NULL)
280 name_to_use = strchr(name_to_use, ':')+1;
281
ad5bc697 282 /* 4/ Check if array exists.
215bb3f7 283 */
ad5bc697 284 map_lock(&map);
215bb3f7 285 mp = map_by_uuid(&map, info.uuid);
ffb3e494 286 if (mp) {
215bb3f7 287 mdfd = open_mddev(mp->path, 0);
ffb3e494
N
288 if (mdfd < 0 && mddev_busy(mp->devnum)) {
289 /* maybe udev hasn't created it yet. */
290 char buf[50];
291 sprintf(buf, "%d:%d", dev2major(mp->devnum),
292 dev2minor(mp->devnum));
293 mdfd = dev_open(buf, O_RDWR);
294 }
295 } else
215bb3f7 296 mdfd = -1;
d7288ddc 297
8382f19b 298 if (mdfd < 0) {
7e0f6979 299 struct mdinfo *sra;
c5afc314 300 struct mdinfo dinfo;
8382f19b 301
215bb3f7 302 /* Couldn't find an existing array, maybe make a new one */
ffb3e494 303 mdfd = create_mddev(match ? match->devname : NULL,
e12e1d1d 304 name_to_use, autof, trustworthy, chosen_name);
215bb3f7
N
305
306 if (mdfd < 0)
307 return 1;
308
309 sysfs_init(&info, mdfd, 0);
310
f35f2525
N
311 if (set_array_info(mdfd, st, &info) != 0) {
312 fprintf(stderr, Name ": failed to set array info for %s: %s\n",
8382f19b
NB
313 chosen_name, strerror(errno));
314 close(mdfd);
315 return 2;
316 }
7801ac20 317
c5afc314
N
318 dinfo = info;
319 dinfo.disk.major = major(stb.st_rdev);
320 dinfo.disk.minor = minor(stb.st_rdev);
321 if (add_disk(mdfd, st, &info, &dinfo) != 0) {
8382f19b
NB
322 fprintf(stderr, Name ": failed to add %s to %s: %s.\n",
323 devname, chosen_name, strerror(errno));
324 ioctl(mdfd, STOP_ARRAY, 0);
325 close(mdfd);
326 return 2;
327 }
197e3eb6 328 sra = sysfs_read(mdfd, fd2devnum(mdfd), GET_DEVS);
06c7f68e 329 if (!sra || !sra->devs || sra->devs->disk.raid_disk >= 0) {
8382f19b
NB
330 /* It really should be 'none' - must be old buggy
331 * kernel, and mdadm -I may not be able to complete.
332 * So reject it.
333 */
334 ioctl(mdfd, STOP_ARRAY, NULL);
335 fprintf(stderr, Name
336 ": You have an old buggy kernel which cannot support\n"
337 " --incremental reliably. Aborting.\n");
338 close(mdfd);
339 sysfs_free(sra);
340 return 2;
341 }
c5afc314 342 info.array.working_disks = 1;
f35f2525 343 sysfs_free(sra);
ad5bc697
N
344 /* 6/ Make sure /var/run/mdadm.map contains this array. */
345 map_update(&map, fd2devnum(mdfd),
346 info.text_version,
347 info.uuid, chosen_name);
8382f19b
NB
348 } else {
349 /* 5b/ if it does */
350 /* - check one drive in array to make sure metadata is a reasonably */
351 /* close match. Reject if not (e.g. different type) */
352 /* - add the device */
353 char dn[20];
354 int dfd2;
8382f19b 355 int err;
7e0f6979 356 struct mdinfo *sra;
3da92f27 357 struct supertype *st2;
c5afc314 358 struct mdinfo info2, *d;
215bb3f7
N
359
360 strcpy(chosen_name, mp->path);
361
197e3eb6 362 sra = sysfs_read(mdfd, fd2devnum(mdfd), (GET_DEVS | GET_STATE));
2cdb6489 363
7c548327
N
364 if (sra->devs) {
365 sprintf(dn, "%d:%d", sra->devs->disk.major,
366 sra->devs->disk.minor);
367 dfd2 = dev_open(dn, O_RDONLY);
368 st2 = dup_super(st);
369 if (st2->ss->load_super(st2, dfd2, NULL) ||
370 st->ss->compare_super(st, st2) != 0) {
371 fprintf(stderr, Name
372 ": metadata mismatch between %s and "
373 "chosen array %s\n",
374 devname, chosen_name);
375 close(mdfd);
376 close(dfd2);
377 return 2;
378 }
8382f19b 379 close(dfd2);
7c548327
N
380 memset(&info2, 0, sizeof(info2));
381 st2->ss->getinfo_super(st2, &info2);
382 st2->ss->free_super(st2);
383 if (info.array.level != info2.array.level ||
384 memcmp(info.uuid, info2.uuid, 16) != 0 ||
385 info.array.raid_disks != info2.array.raid_disks) {
386 fprintf(stderr, Name
387 ": unexpected difference between %s and %s.\n",
388 chosen_name, devname);
389 close(mdfd);
390 return 2;
391 }
8382f19b 392 }
7801ac20
N
393 info2.disk.major = major(stb.st_rdev);
394 info2.disk.minor = minor(stb.st_rdev);
c5afc314
N
395 /* add disk needs to know about containers */
396 if (st->ss->external)
397 sra->array.level = LEVEL_CONTAINER;
7801ac20 398 err = add_disk(mdfd, st2, sra, &info2);
8382f19b
NB
399 if (err < 0 && errno == EBUSY) {
400 /* could be another device present with the same
401 * disk.number. Find and reject any such
402 */
403 find_reject(mdfd, st, sra, info.disk.number,
404 info.events, verbose, chosen_name);
7801ac20 405 err = add_disk(mdfd, st2, sra, &info2);
8382f19b
NB
406 }
407 if (err < 0) {
408 fprintf(stderr, Name ": failed to add %s to %s: %s.\n",
409 devname, chosen_name, strerror(errno));
410 close(mdfd);
411 return 2;
412 }
c5afc314
N
413 info.array.working_disks = 0;
414 for (d = sra->devs; d; d=d->next)
415 info.array.working_disks ++;
416
8382f19b 417 }
8382f19b
NB
418
419 /* 7/ Is there enough devices to possibly start the array? */
420 /* 7a/ if not, finish with success. */
352452c3
N
421 if (info.array.level == LEVEL_CONTAINER) {
422 /* Try to assemble within the container */
ad5bc697 423 map_unlock(&map);
97590376 424 sysfs_uevent(&info, "change");
c5afc314
N
425 if (verbose >= 0)
426 fprintf(stderr, Name
427 ": container %s now has %d devices\n",
428 chosen_name, info.array.working_disks);
a7c6e3fb
N
429 wait_for(chosen_name, mdfd);
430 close(mdfd);
fdb482f9
DW
431 if (runstop < 0)
432 return 0; /* don't try to assemble */
03b7f6c6 433 rv = Incremental(chosen_name, verbose, runstop,
0ac91628 434 NULL, homehost, require_homehost, autof);
03b7f6c6
N
435 if (rv == 1)
436 /* Don't fail the whole -I if a subarray didn't
437 * have enough devices to start yet
438 */
439 rv = 0;
440 return rv;
352452c3 441 }
f8409e54 442 avail = NULL;
8382f19b
NB
443 active_disks = count_active(st, mdfd, &avail, &info);
444 if (enough(info.array.level, info.array.raid_disks,
445 info.array.layout, info.array.state & 1,
fdb482f9
DW
446 avail, active_disks) == 0 ||
447 (runstop < 0 && active_disks < info.array.raid_disks)) {
8382f19b
NB
448 free(avail);
449 if (verbose >= 0)
450 fprintf(stderr, Name
451 ": %s attached to %s, not enough to start (%d).\n",
452 devname, chosen_name, active_disks);
ad5bc697 453 map_unlock(&map);
8382f19b
NB
454 close(mdfd);
455 return 0;
456 }
457 free(avail);
458
459 /* 7b/ if yes, */
460 /* - if number of OK devices match expected, or -R and there */
461 /* are enough, */
462 /* + add any bitmap file */
463 /* + start the array (auto-readonly). */
8382f19b
NB
464
465 if (ioctl(mdfd, GET_ARRAY_INFO, &ainf) == 0) {
466 if (verbose >= 0)
467 fprintf(stderr, Name
468 ": %s attached to %s which is already active.\n",
469 devname, chosen_name);
ad5bc697
N
470 close(mdfd);
471 map_unlock(&map);
8382f19b
NB
472 return 0;
473 }
ad5bc697
N
474
475 map_unlock(&map);
8382f19b 476 if (runstop > 0 || active_disks >= info.array.working_disks) {
7e0f6979 477 struct mdinfo *sra;
8382f19b
NB
478 /* Let's try to start it */
479 if (match && match->bitmap_file) {
480 int bmfd = open(match->bitmap_file, O_RDWR);
481 if (bmfd < 0) {
482 fprintf(stderr, Name
483 ": Could not open bitmap file %s.\n",
484 match->bitmap_file);
485 close(mdfd);
486 return 1;
487 }
488 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
489 close(bmfd);
490 fprintf(stderr, Name
491 ": Failed to set bitmapfile for %s.\n",
492 chosen_name);
493 close(mdfd);
494 return 1;
495 }
496 close(bmfd);
497 }
197e3eb6 498 sra = sysfs_read(mdfd, fd2devnum(mdfd), 0);
7b403fef 499 if ((sra == NULL || active_disks >= info.array.working_disks)
215bb3f7 500 && trustworthy != FOREIGN)
8382f19b
NB
501 rv = ioctl(mdfd, RUN_ARRAY, NULL);
502 else
503 rv = sysfs_set_str(sra, NULL,
504 "array_state", "read-auto");
505 if (rv == 0) {
506 if (verbose >= 0)
507 fprintf(stderr, Name
508 ": %s attached to %s, which has been started.\n",
509 devname, chosen_name);
510 rv = 0;
a7c6e3fb 511 wait_for(chosen_name, mdfd);
8382f19b
NB
512 } else {
513 fprintf(stderr, Name
514 ": %s attached to %s, but failed to start: %s.\n",
515 devname, chosen_name, strerror(errno));
516 rv = 1;
517 }
518 } else {
519 if (verbose >= 0)
520 fprintf(stderr, Name
521 ": %s attached to %s, not enough to start safely.\n",
522 devname, chosen_name);
523 rv = 0;
524 }
525 close(mdfd);
526 return rv;
527}
528
7e0f6979 529static void find_reject(int mdfd, struct supertype *st, struct mdinfo *sra,
8382f19b
NB
530 int number, __u64 events, int verbose,
531 char *array_name)
532{
3da92f27 533 /* Find a device attached to this array with a disk.number of number
8382f19b
NB
534 * and events less than the passed events, and remove the device.
535 */
06c7f68e 536 struct mdinfo *d;
8382f19b
NB
537 mdu_array_info_t ra;
538
539 if (ioctl(mdfd, GET_ARRAY_INFO, &ra) == 0)
540 return; /* not safe to remove from active arrays
541 * without thinking more */
542
543 for (d = sra->devs; d ; d = d->next) {
544 char dn[10];
545 int dfd;
8382f19b 546 struct mdinfo info;
06c7f68e 547 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
8382f19b
NB
548 dfd = dev_open(dn, O_RDONLY);
549 if (dfd < 0)
550 continue;
3da92f27 551 if (st->ss->load_super(st, dfd, NULL)) {
8382f19b
NB
552 close(dfd);
553 continue;
554 }
3da92f27
NB
555 st->ss->getinfo_super(st, &info);
556 st->ss->free_super(st);
8382f19b
NB
557 close(dfd);
558
559 if (info.disk.number != number ||
560 info.events >= events)
561 continue;
562
06c7f68e 563 if (d->disk.raid_disk > -1)
8382f19b
NB
564 sysfs_set_str(sra, d, "slot", "none");
565 if (sysfs_set_str(sra, d, "state", "remove") == 0)
566 if (verbose >= 0)
567 fprintf(stderr, Name
568 ": removing old device %s from %s\n",
06c7f68e 569 d->sys_name+4, array_name);
8382f19b
NB
570 }
571}
572
573static int count_active(struct supertype *st, int mdfd, char **availp,
574 struct mdinfo *bestinfo)
575{
576 /* count how many devices in sra think they are active */
06c7f68e 577 struct mdinfo *d;
8382f19b
NB
578 int cnt = 0, cnt1 = 0;
579 __u64 max_events = 0;
7e0f6979 580 struct mdinfo *sra = sysfs_read(mdfd, -1, GET_DEVS | GET_STATE);
8382f19b
NB
581 char *avail = NULL;
582
583 for (d = sra->devs ; d ; d = d->next) {
584 char dn[30];
585 int dfd;
8382f19b
NB
586 int ok;
587 struct mdinfo info;
588
06c7f68e 589 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
8382f19b
NB
590 dfd = dev_open(dn, O_RDONLY);
591 if (dfd < 0)
592 continue;
3da92f27 593 ok = st->ss->load_super(st, dfd, NULL);
8382f19b
NB
594 close(dfd);
595 if (ok != 0)
596 continue;
3da92f27 597 st->ss->getinfo_super(st, &info);
43aaf431
DL
598 if (!avail) {
599 avail = malloc(info.array.raid_disks);
600 if (!avail) {
601 fprintf(stderr, Name ": out of memory.\n");
602 exit(1);
603 }
604 memset(avail, 0, info.array.raid_disks);
605 *availp = avail;
606 }
607
8382f19b
NB
608 if (info.disk.state & (1<<MD_DISK_SYNC))
609 {
8382f19b
NB
610 if (cnt == 0) {
611 cnt++;
612 max_events = info.events;
613 avail[info.disk.raid_disk] = 2;
3da92f27 614 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
615 } else if (info.events == max_events) {
616 cnt++;
617 avail[info.disk.raid_disk] = 2;
618 } else if (info.events == max_events-1) {
619 cnt1++;
620 avail[info.disk.raid_disk] = 1;
621 } else if (info.events < max_events - 1)
622 ;
623 else if (info.events == max_events+1) {
624 int i;
625 cnt1 = cnt;
626 cnt = 1;
627 max_events = info.events;
628 for (i=0; i<info.array.raid_disks; i++)
629 if (avail[i])
630 avail[i]--;
631 avail[info.disk.raid_disk] = 2;
3da92f27 632 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
633 } else { /* info.events much bigger */
634 cnt = 1; cnt1 = 0;
635 memset(avail, 0, info.disk.raid_disk);
636 max_events = info.events;
3da92f27 637 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
638 }
639 }
3da92f27 640 st->ss->free_super(st);
8382f19b
NB
641 }
642 return cnt + cnt1;
643}
644
8382f19b
NB
645int IncrementalScan(int verbose)
646{
647 /* look at every device listed in the 'map' file.
648 * If one is found that is not running then:
649 * look in mdadm.conf for bitmap file.
650 * if one exists, but array has none, add it.
651 * try to start array in auto-readonly mode
652 */
653 struct map_ent *mapl = NULL;
654 struct map_ent *me;
655 mddev_ident_t devs, mddev;
656 int rv = 0;
657
658 map_read(&mapl);
659 devs = conf_get_ident(NULL);
660
661 for (me = mapl ; me ; me = me->next) {
8382f19b
NB
662 mdu_array_info_t array;
663 mdu_bitmap_file_t bmf;
7e0f6979 664 struct mdinfo *sra;
215bb3f7
N
665 int mdfd = open_mddev(me->path, 0);
666
8382f19b
NB
667 if (mdfd < 0)
668 continue;
669 if (ioctl(mdfd, GET_ARRAY_INFO, &array) == 0 ||
670 errno != ENODEV) {
671 close(mdfd);
672 continue;
673 }
674 /* Ok, we can try this one. Maybe it needs a bitmap */
675 for (mddev = devs ; mddev ; mddev = mddev->next)
fe056d1f
N
676 if (mddev->devname
677 && strcmp(mddev->devname, me->path) == 0)
8382f19b
NB
678 break;
679 if (mddev && mddev->bitmap_file) {
680 /*
681 * Note: early kernels will wrongly fail this, so it
682 * is a hint only
683 */
684 int added = -1;
685 if (ioctl(mdfd, GET_ARRAY_INFO, &bmf) < 0) {
686 int bmfd = open(mddev->bitmap_file, O_RDWR);
687 if (bmfd >= 0) {
688 added = ioctl(mdfd, SET_BITMAP_FILE,
689 bmfd);
690 close(bmfd);
691 }
692 }
693 if (verbose >= 0) {
694 if (added == 0)
695 fprintf(stderr, Name
696 ": Added bitmap %s to %s\n",
697 mddev->bitmap_file, me->path);
698 else if (errno != EEXIST)
699 fprintf(stderr, Name
700 ": Failed to add bitmap to %s: %s\n",
701 me->path, strerror(errno));
702 }
703 }
704 sra = sysfs_read(mdfd, 0, 0);
705 if (sra) {
706 if (sysfs_set_str(sra, NULL,
707 "array_state", "read-auto") == 0) {
708 if (verbose >= 0)
709 fprintf(stderr, Name
710 ": started array %s\n",
711 me->path);
712 } else {
713 fprintf(stderr, Name
714 ": failed to start array %s: %s\n",
715 me->path, strerror(errno));
716 rv = 1;
717 }
718 }
719 }
720 return rv;
721}
598f0d58 722
1771a6e2
N
723static char *container2devname(char *devname)
724{
725 char *mdname = NULL;
726
727 if (devname[0] == '/') {
728 int fd = open(devname, O_RDONLY);
729 if (fd >= 0) {
730 mdname = devnum2devname(fd2devnum(fd));
731 close(fd);
732 }
733 } else {
734 int uuid[4];
735 struct map_ent *mp, *map = NULL;
736
737 if (!parse_uuid(devname, uuid))
738 return mdname;
739 mp = map_by_uuid(&map, uuid);
740 if (mp)
741 mdname = devnum2devname(mp->devnum);
742 map_free(map);
743 }
744
745 return mdname;
746}
747
598f0d58 748int Incremental_container(struct supertype *st, char *devname, int verbose,
215bb3f7 749 int runstop, int autof, int trustworthy)
598f0d58
NB
750{
751 /* Collect the contents of this container and for each
752 * array, choose a device name and assemble the array.
753 */
754
755 struct mdinfo *list = st->ss->container_content(st);
756 struct mdinfo *ra;
ad5bc697
N
757 struct map_ent *map = NULL;
758
759 map_lock(&map);
598f0d58
NB
760
761 for (ra = list ; ra ; ra = ra->next) {
598f0d58
NB
762 int mdfd;
763 char chosen_name[1024];
ad5bc697 764 struct map_ent *mp;
dbb44303 765 struct mddev_ident_s *match = NULL;
598f0d58 766
c5afc314 767 mp = map_by_uuid(&map, ra->uuid);
d7288ddc 768
30926600
N
769 if (mp) {
770 mdfd = open_dev(mp->devnum);
771 strcpy(chosen_name, mp->path);
772 } else {
dbb44303 773
112cace6 774 /* Check in mdadm.conf for container == devname and
dbb44303
N
775 * member == ra->text_version after second slash.
776 */
777 char *sub = strchr(ra->text_version+1, '/');
778 struct mddev_ident_s *array_list;
779 if (sub) {
780 sub++;
781 array_list = conf_get_ident(NULL);
782 } else
783 array_list = NULL;
784 for(; array_list ; array_list = array_list->next) {
dbb44303
N
785 char *dn;
786 if (array_list->member == NULL ||
787 array_list->container == NULL)
788 continue;
789 if (strcmp(array_list->member, sub) != 0)
790 continue;
71d60c48
DW
791 if (array_list->uuid_set &&
792 !same_uuid(ra->uuid, array_list->uuid, st->ss->swapuuid))
793 continue;
1771a6e2
N
794 dn = container2devname(array_list->container);
795 if (dn == NULL)
dbb44303 796 continue;
dbb44303
N
797 if (strncmp(dn, ra->text_version+1,
798 strlen(dn)) != 0 ||
799 ra->text_version[strlen(dn)+1] != '/') {
800 free(dn);
801 continue;
802 }
803 free(dn);
804 /* we have a match */
805 match = array_list;
71d60c48
DW
806 if (verbose>0)
807 fprintf(stderr, Name ": match found for member %s\n",
808 array_list->member);
dbb44303
N
809 break;
810 }
dbb44303 811
112cace6
N
812 if (match && match->devname &&
813 strcasecmp(match->devname, "<ignore>") == 0) {
814 if (verbose > 0)
815 fprintf(stderr, Name ": array %s/%s is "
816 "explicitly ignored by mdadm.conf\n",
817 match->container, match->member);
818 return 2;
819 }
05833051
N
820 if (match)
821 trustworthy = LOCAL;
112cace6 822
30926600
N
823 mdfd = create_mddev(match ? match->devname : NULL,
824 ra->name,
825 autof,
826 trustworthy,
827 chosen_name);
828 }
598f0d58
NB
829
830 if (mdfd < 0) {
831 fprintf(stderr, Name ": failed to open %s: %s.\n",
832 chosen_name, strerror(errno));
833 return 2;
834 }
835
03b7f6c6
N
836 assemble_container_content(st, mdfd, ra, runstop,
837 chosen_name, verbose);
598f0d58 838 }
ad5bc697 839 map_unlock(&map);
598f0d58
NB
840 return 0;
841}