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