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