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