]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Incremental.c
Use 'mdinfo' instead of special 'sysdev' structure.
[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);
35static void find_reject(int mdfd, struct supertype *st, struct sysarray *sra,
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
43 * and starting the array if sensibe or - if runstop>0 - if possible.
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 }
3da92f27 143 st->ss->getinfo_super(st, &info);
8382f19b
NB
144 close (dfd);
145
146 /* 3/ Check if there is a match in mdadm.conf */
147
148 array_list = conf_get_ident(NULL);
149 match = NULL;
150 for (; array_list; array_list = array_list->next) {
151 if (array_list->uuid_set &&
152 same_uuid(array_list->uuid, info.uuid, st->ss->swapuuid)
153 == 0) {
154 if (verbose >= 2)
155 fprintf(stderr, Name
156 ": UUID differs from %s.\n",
157 array_list->devname);
158 continue;
159 }
160 if (array_list->name[0] &&
161 strcasecmp(array_list->name, info.name) != 0) {
162 if (verbose >= 2)
163 fprintf(stderr, Name
164 ": Name differs from %s.\n",
165 array_list->devname);
166 continue;
167 }
168 if (array_list->devices &&
169 !match_oneof(array_list->devices, devname)) {
170 if (verbose >= 2)
171 fprintf(stderr, Name
172 ": Not a listed device for %s.\n",
173 array_list->devname);
174 continue;
175 }
176 if (array_list->super_minor != UnSet &&
177 array_list->super_minor != info.array.md_minor) {
178 if (verbose >= 2)
179 fprintf(stderr, Name
180 ": Different super-minor to %s.\n",
181 array_list->devname);
182 continue;
183 }
184 if (!array_list->uuid_set &&
185 !array_list->name[0] &&
186 !array_list->devices &&
187 array_list->super_minor == UnSet) {
188 if (verbose >= 2)
189 fprintf(stderr, Name
190 ": %s doesn't have any identifying information.\n",
191 array_list->devname);
192 continue;
193 }
194 /* FIXME, should I check raid_disks and level too?? */
195
196 if (match) {
197 if (verbose >= 0)
198 fprintf(stderr, Name
199 ": we match both %s and %s - cannot decide which to use.\n",
200 match->devname, array_list->devname);
201 return 2;
202 }
203 match = array_list;
204 }
205
206 /* 3a/ if not, check for homehost match. If no match, reject. */
207 if (!match) {
208 if (homehost == NULL ||
3da92f27 209 st->ss->match_home(st, homehost) == 0) {
8382f19b
NB
210 if (verbose >= 0)
211 fprintf(stderr, Name
212 ": not found in mdadm.conf and not identified by homehost.\n");
213 return 2;
214 }
215 }
216 /* 4/ Determine device number. */
217 /* - If in mdadm.conf with std name, use that */
218 /* - UUID in /var/run/mdadm.map use that */
219 /* - If name is suggestive, use that. unless in use with */
220 /* different uuid. */
221 /* - Choose a free, high number. */
222 /* - Use a partitioned device unless strong suggestion not to. */
223 /* e.g. auto=md */
224 if (match && is_standard(match->devname, &devnum))
225 /* We have devnum now */;
226 else if ((mp = map_by_uuid(&map, info.uuid)) != NULL)
227 devnum = mp->devnum;
228 else {
229 /* Have to guess a bit. */
230 int use_partitions = 1;
231 char *np, *ep;
232 if ((autof&7) == 3 || (autof&7) == 5)
233 use_partitions = 0;
234 np = strchr(info.name, ':');
235 if (np)
236 np++;
237 else
238 np = info.name;
239 devnum = strtoul(np, &ep, 10);
240 if (ep > np && *ep == 0) {
241 /* This is a number. Let check that it is unused. */
242 if (mddev_busy(use_partitions ? (-1-devnum) : devnum))
243 devnum = -1;
244 } else
245 devnum = -1;
246
247 if (devnum < 0) {
248 /* Haven't found anything yet, choose something free */
249 /* There is similar code in mdopen.c - should unify */
250 for (devnum = 127 ; devnum != 128 ;
251 devnum = devnum ? devnum-1 : (1<<22)-1) {
252 if (mddev_busy(use_partitions ?
253 (-1-devnum) : devnum))
254 break;
255 }
256 if (devnum == 128) {
257 fprintf(stderr, Name
258 ": No spare md devices!!\n");
259 return 2;
260 }
261 }
262 devnum = use_partitions ? (-1-devnum) : devnum;
263 }
264 mdfd = open_mddev_devnum(match ? match->devname : NULL,
265 devnum,
266 info.name,
267 chosen_name);
268 if (mdfd < 0) {
269 fprintf(stderr, Name ": failed to open %s: %s.\n",
270 chosen_name, strerror(errno));
271 return 2;
272 }
273 /* 5/ Find out if array already exists */
274 if (! mddev_busy(devnum)) {
275 /* 5a/ if it does not */
276 /* - choose a name, from mdadm.conf or 'name' field in array. */
277 /* - create the array */
278 /* - add the device */
279 mdu_array_info_t ainf;
280 mdu_disk_info_t disk;
281 char md[20];
282 struct sysarray *sra;
283
284 memset(&ainf, 0, sizeof(ainf));
285 ainf.major_version = st->ss->major;
286 ainf.minor_version = st->minor_version;
287 if (ioctl(mdfd, SET_ARRAY_INFO, &ainf) != 0) {
288 fprintf(stderr, Name
289 ": SET_ARRAY_INFO failed for %s: %s\b",
290 chosen_name, strerror(errno));
291 close(mdfd);
292 return 2;
293 }
294 sprintf(md, "%d.%d\n", st->ss->major, st->minor_version);
295 sra = sysfs_read(mdfd, devnum, GET_VERSION);
296 sysfs_set_str(sra, NULL, "metadata_version", md);
297 memset(&disk, 0, sizeof(disk));
298 disk.major = major(stb.st_rdev);
299 disk.minor = minor(stb.st_rdev);
300 sysfs_free(sra);
301 if (ioctl(mdfd, ADD_NEW_DISK, &disk) != 0) {
302 fprintf(stderr, Name ": failed to add %s to %s: %s.\n",
303 devname, chosen_name, strerror(errno));
304 ioctl(mdfd, STOP_ARRAY, 0);
305 close(mdfd);
306 return 2;
307 }
308 sra = sysfs_read(mdfd, devnum, GET_DEVS);
06c7f68e 309 if (!sra || !sra->devs || sra->devs->disk.raid_disk >= 0) {
8382f19b
NB
310 /* It really should be 'none' - must be old buggy
311 * kernel, and mdadm -I may not be able to complete.
312 * So reject it.
313 */
314 ioctl(mdfd, STOP_ARRAY, NULL);
315 fprintf(stderr, Name
316 ": You have an old buggy kernel which cannot support\n"
317 " --incremental reliably. Aborting.\n");
318 close(mdfd);
319 sysfs_free(sra);
320 return 2;
321 }
322 } else {
323 /* 5b/ if it does */
324 /* - check one drive in array to make sure metadata is a reasonably */
325 /* close match. Reject if not (e.g. different type) */
326 /* - add the device */
327 char dn[20];
328 int dfd2;
329 mdu_disk_info_t disk;
330 int err;
331 struct sysarray *sra;
3da92f27 332 struct supertype *st2;
8382f19b
NB
333 sra = sysfs_read(mdfd, devnum, (GET_VERSION | GET_DEVS |
334 GET_STATE));
335 if (sra->major_version != st->ss->major ||
336 sra->minor_version != st->minor_version) {
337 if (verbose >= 0)
338 fprintf(stderr, Name
339 ": %s has different metadata to chosen array %s %d.%d %d.%d.\n",
340 devname, chosen_name,
341 sra->major_version, sra->minor_version,
342 st->ss->major, st->minor_version);
343 close(mdfd);
344 return 1;
345 }
06c7f68e
NB
346 sprintf(dn, "%d:%d", sra->devs->disk.major,
347 sra->devs->disk.minor);
8382f19b 348 dfd2 = dev_open(dn, O_RDONLY);
3da92f27
NB
349 st2 = dup_super(st);
350 if (st2->ss->load_super(st2, dfd2, NULL)) {
8382f19b
NB
351 fprintf(stderr, Name
352 ": Strange error loading metadata for %s.\n",
353 chosen_name);
354 close(mdfd);
355 close(dfd2);
356 return 2;
357 }
358 close(dfd2);
3da92f27
NB
359 st2->ss->getinfo_super(st2, &info2);
360 st2->ss->free_super(st2);
8382f19b
NB
361 if (info.array.level != info2.array.level ||
362 memcmp(info.uuid, info2.uuid, 16) != 0 ||
363 info.array.raid_disks != info2.array.raid_disks) {
364 fprintf(stderr, Name
365 ": unexpected difference between %s and %s.\n",
366 chosen_name, devname);
367 close(mdfd);
368 return 2;
369 }
370 memset(&disk, 0, sizeof(disk));
371 disk.major = major(stb.st_rdev);
372 disk.minor = minor(stb.st_rdev);
373 err = ioctl(mdfd, ADD_NEW_DISK, &disk);
374 if (err < 0 && errno == EBUSY) {
375 /* could be another device present with the same
376 * disk.number. Find and reject any such
377 */
378 find_reject(mdfd, st, sra, info.disk.number,
379 info.events, verbose, chosen_name);
380 err = ioctl(mdfd, ADD_NEW_DISK, &disk);
381 }
382 if (err < 0) {
383 fprintf(stderr, Name ": failed to add %s to %s: %s.\n",
384 devname, chosen_name, strerror(errno));
385 close(mdfd);
386 return 2;
387 }
388 }
389 /* 6/ Make sure /var/run/mdadm.map contains this array. */
390 map_update(&map, devnum,
391 info.array.major_version,
392 info.array.minor_version,
393 info.uuid, chosen_name);
394
395 /* 7/ Is there enough devices to possibly start the array? */
396 /* 7a/ if not, finish with success. */
f8409e54 397 avail = NULL;
8382f19b
NB
398 active_disks = count_active(st, mdfd, &avail, &info);
399 if (enough(info.array.level, info.array.raid_disks,
400 info.array.layout, info.array.state & 1,
401 avail, active_disks) == 0) {
402 free(avail);
403 if (verbose >= 0)
404 fprintf(stderr, Name
405 ": %s attached to %s, not enough to start (%d).\n",
406 devname, chosen_name, active_disks);
407 close(mdfd);
408 return 0;
409 }
410 free(avail);
411
412 /* 7b/ if yes, */
413 /* - if number of OK devices match expected, or -R and there */
414 /* are enough, */
415 /* + add any bitmap file */
416 /* + start the array (auto-readonly). */
417{
418 mdu_array_info_t ainf;
419
420 if (ioctl(mdfd, GET_ARRAY_INFO, &ainf) == 0) {
421 if (verbose >= 0)
422 fprintf(stderr, Name
423 ": %s attached to %s which is already active.\n",
424 devname, chosen_name);
425 close (mdfd);
426 return 0;
427 }
428}
429 if (runstop > 0 || active_disks >= info.array.working_disks) {
430 struct sysarray *sra;
431 /* Let's try to start it */
432 if (match && match->bitmap_file) {
433 int bmfd = open(match->bitmap_file, O_RDWR);
434 if (bmfd < 0) {
435 fprintf(stderr, Name
436 ": Could not open bitmap file %s.\n",
437 match->bitmap_file);
438 close(mdfd);
439 return 1;
440 }
441 if (ioctl(mdfd, SET_BITMAP_FILE, bmfd) != 0) {
442 close(bmfd);
443 fprintf(stderr, Name
444 ": Failed to set bitmapfile for %s.\n",
445 chosen_name);
446 close(mdfd);
447 return 1;
448 }
449 close(bmfd);
450 }
451 sra = sysfs_read(mdfd, devnum, 0);
452 if (sra == NULL || active_disks >= info.array.working_disks)
453 rv = ioctl(mdfd, RUN_ARRAY, NULL);
454 else
455 rv = sysfs_set_str(sra, NULL,
456 "array_state", "read-auto");
457 if (rv == 0) {
458 if (verbose >= 0)
459 fprintf(stderr, Name
460 ": %s attached to %s, which has been started.\n",
461 devname, chosen_name);
462 rv = 0;
463 } else {
464 fprintf(stderr, Name
465 ": %s attached to %s, but failed to start: %s.\n",
466 devname, chosen_name, strerror(errno));
467 rv = 1;
468 }
469 } else {
470 if (verbose >= 0)
471 fprintf(stderr, Name
472 ": %s attached to %s, not enough to start safely.\n",
473 devname, chosen_name);
474 rv = 0;
475 }
476 close(mdfd);
477 return rv;
478}
479
480static void find_reject(int mdfd, struct supertype *st, struct sysarray *sra,
481 int number, __u64 events, int verbose,
482 char *array_name)
483{
3da92f27 484 /* Find a device attached to this array with a disk.number of number
8382f19b
NB
485 * and events less than the passed events, and remove the device.
486 */
06c7f68e 487 struct mdinfo *d;
8382f19b
NB
488 mdu_array_info_t ra;
489
490 if (ioctl(mdfd, GET_ARRAY_INFO, &ra) == 0)
491 return; /* not safe to remove from active arrays
492 * without thinking more */
493
494 for (d = sra->devs; d ; d = d->next) {
495 char dn[10];
496 int dfd;
8382f19b 497 struct mdinfo info;
06c7f68e 498 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
8382f19b
NB
499 dfd = dev_open(dn, O_RDONLY);
500 if (dfd < 0)
501 continue;
3da92f27 502 if (st->ss->load_super(st, dfd, NULL)) {
8382f19b
NB
503 close(dfd);
504 continue;
505 }
3da92f27
NB
506 st->ss->getinfo_super(st, &info);
507 st->ss->free_super(st);
8382f19b
NB
508 close(dfd);
509
510 if (info.disk.number != number ||
511 info.events >= events)
512 continue;
513
06c7f68e 514 if (d->disk.raid_disk > -1)
8382f19b
NB
515 sysfs_set_str(sra, d, "slot", "none");
516 if (sysfs_set_str(sra, d, "state", "remove") == 0)
517 if (verbose >= 0)
518 fprintf(stderr, Name
519 ": removing old device %s from %s\n",
06c7f68e 520 d->sys_name+4, array_name);
8382f19b
NB
521 }
522}
523
524static int count_active(struct supertype *st, int mdfd, char **availp,
525 struct mdinfo *bestinfo)
526{
527 /* count how many devices in sra think they are active */
06c7f68e 528 struct mdinfo *d;
8382f19b
NB
529 int cnt = 0, cnt1 = 0;
530 __u64 max_events = 0;
8382f19b
NB
531 struct sysarray *sra = sysfs_read(mdfd, -1, GET_DEVS | GET_STATE);
532 char *avail = NULL;
533
534 for (d = sra->devs ; d ; d = d->next) {
535 char dn[30];
536 int dfd;
8382f19b
NB
537 int ok;
538 struct mdinfo info;
539
06c7f68e 540 sprintf(dn, "%d:%d", d->disk.major, d->disk.minor);
8382f19b
NB
541 dfd = dev_open(dn, O_RDONLY);
542 if (dfd < 0)
543 continue;
3da92f27 544 ok = st->ss->load_super(st, dfd, NULL);
8382f19b
NB
545 close(dfd);
546 if (ok != 0)
547 continue;
3da92f27 548 st->ss->getinfo_super(st, &info);
8382f19b
NB
549 if (info.disk.state & (1<<MD_DISK_SYNC))
550 {
551 if (avail == NULL) {
552 avail = malloc(info.array.raid_disks);
553 memset(avail, 0, info.array.raid_disks);
554 }
555 if (cnt == 0) {
556 cnt++;
557 max_events = info.events;
558 avail[info.disk.raid_disk] = 2;
3da92f27 559 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
560 } else if (info.events == max_events) {
561 cnt++;
562 avail[info.disk.raid_disk] = 2;
563 } else if (info.events == max_events-1) {
564 cnt1++;
565 avail[info.disk.raid_disk] = 1;
566 } else if (info.events < max_events - 1)
567 ;
568 else if (info.events == max_events+1) {
569 int i;
570 cnt1 = cnt;
571 cnt = 1;
572 max_events = info.events;
573 for (i=0; i<info.array.raid_disks; i++)
574 if (avail[i])
575 avail[i]--;
576 avail[info.disk.raid_disk] = 2;
3da92f27 577 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
578 } else { /* info.events much bigger */
579 cnt = 1; cnt1 = 0;
580 memset(avail, 0, info.disk.raid_disk);
581 max_events = info.events;
3da92f27 582 st->ss->getinfo_super(st, bestinfo);
8382f19b
NB
583 }
584 }
3da92f27 585 st->ss->free_super(st);
8382f19b
NB
586 }
587 return cnt + cnt1;
588}
589
590void RebuildMap(void)
591{
592 struct mdstat_ent *mdstat = mdstat_read(0, 0);
593 struct mdstat_ent *md;
594 struct map_ent *map = NULL;
595 int mdp = get_mdp_major();
596
597 for (md = mdstat ; md ; md = md->next) {
598 struct sysarray *sra = sysfs_read(-1, md->devnum, GET_DEVS);
06c7f68e 599 struct mdinfo *sd;
8382f19b
NB
600
601 for (sd = sra->devs ; sd ; sd = sd->next) {
602 char dn[30];
603 int dfd;
604 int ok;
605 struct supertype *st;
606 char *path;
8382f19b
NB
607 struct mdinfo info;
608
06c7f68e 609 sprintf(dn, "%d:%d", sd->disk.major, sd->disk.minor);
8382f19b
NB
610 dfd = dev_open(dn, O_RDONLY);
611 if (dfd < 0)
612 continue;
613 st = guess_super(dfd);
614 if ( st == NULL)
615 ok = -1;
616 else
3da92f27 617 ok = st->ss->load_super(st, dfd, NULL);
8382f19b
NB
618 close(dfd);
619 if (ok != 0)
620 continue;
3da92f27 621 st->ss->getinfo_super(st, &info);
8382f19b
NB
622 if (md->devnum > 0)
623 path = map_dev(MD_MAJOR, md->devnum, 0);
624 else
625 path = map_dev(mdp, (-1-md->devnum)<< 6, 0);
626 map_add(&map, md->devnum, st->ss->major,
627 st->minor_version,
628 info.uuid, path ? : "/unknown");
3da92f27 629 st->ss->free_super(st);
8382f19b
NB
630 break;
631 }
632 }
633 map_write(map);
634 map_free(map);
635}
636
637int IncrementalScan(int verbose)
638{
639 /* look at every device listed in the 'map' file.
640 * If one is found that is not running then:
641 * look in mdadm.conf for bitmap file.
642 * if one exists, but array has none, add it.
643 * try to start array in auto-readonly mode
644 */
645 struct map_ent *mapl = NULL;
646 struct map_ent *me;
647 mddev_ident_t devs, mddev;
648 int rv = 0;
649
650 map_read(&mapl);
651 devs = conf_get_ident(NULL);
652
653 for (me = mapl ; me ; me = me->next) {
654 char path[1024];
655 mdu_array_info_t array;
656 mdu_bitmap_file_t bmf;
657 struct sysarray *sra;
658 int mdfd = open_mddev_devnum(me->path, me->devnum, NULL, path);
659 if (mdfd < 0)
660 continue;
661 if (ioctl(mdfd, GET_ARRAY_INFO, &array) == 0 ||
662 errno != ENODEV) {
663 close(mdfd);
664 continue;
665 }
666 /* Ok, we can try this one. Maybe it needs a bitmap */
667 for (mddev = devs ; mddev ; mddev = mddev->next)
668 if (strcmp(mddev->devname, me->path) == 0)
669 break;
670 if (mddev && mddev->bitmap_file) {
671 /*
672 * Note: early kernels will wrongly fail this, so it
673 * is a hint only
674 */
675 int added = -1;
676 if (ioctl(mdfd, GET_ARRAY_INFO, &bmf) < 0) {
677 int bmfd = open(mddev->bitmap_file, O_RDWR);
678 if (bmfd >= 0) {
679 added = ioctl(mdfd, SET_BITMAP_FILE,
680 bmfd);
681 close(bmfd);
682 }
683 }
684 if (verbose >= 0) {
685 if (added == 0)
686 fprintf(stderr, Name
687 ": Added bitmap %s to %s\n",
688 mddev->bitmap_file, me->path);
689 else if (errno != EEXIST)
690 fprintf(stderr, Name
691 ": Failed to add bitmap to %s: %s\n",
692 me->path, strerror(errno));
693 }
694 }
695 sra = sysfs_read(mdfd, 0, 0);
696 if (sra) {
697 if (sysfs_set_str(sra, NULL,
698 "array_state", "read-auto") == 0) {
699 if (verbose >= 0)
700 fprintf(stderr, Name
701 ": started array %s\n",
702 me->path);
703 } else {
704 fprintf(stderr, Name
705 ": failed to start array %s: %s\n",
706 me->path, strerror(errno));
707 rv = 1;
708 }
709 }
710 }
711 return rv;
712}