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