]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Manage.c
mdadm: Fixup more broken logical operator formatting
[thirdparty/mdadm.git] / Manage.c
CommitLineData
64c4757e 1/*
9a9dab36 2 * mdadm - manage Linux "md" devices aka RAID arrays.
64c4757e 3 *
6f02172d 4 * Copyright (C) 2001-2013 Neil Brown <neilb@suse.de>
64c4757e
NB
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
e736b623 22 * Email: <neilb@suse.de>
64c4757e
NB
23 */
24
9a9dab36 25#include "mdadm.h"
682c7051
NB
26#include "md_u.h"
27#include "md_p.h"
4ccad7b1 28#include <ctype.h>
64c4757e
NB
29
30int Manage_ro(char *devname, int fd, int readonly)
31{
682c7051
NB
32 /* switch to readonly or rw
33 *
34 * requires >= 0.90.0
35 * first check that array is runing
36 * use RESTART_ARRAY_RW or STOP_ARRAY_RO
37 *
38 */
e9dd1598 39 struct mdinfo *mdi;
b73e45ae 40 int rv = 0;
aba69144 41
7bd04da9 42 /* If this is an externally-managed array, we need to modify the
e9dd1598
N
43 * metadata_version so that mdmon doesn't undo our change.
44 */
4dd2df09 45 mdi = sysfs_read(fd, NULL, GET_LEVEL|GET_VERSION);
e9dd1598
N
46 if (mdi &&
47 mdi->array.major_version == -1 &&
e9dd1598
N
48 is_subarray(mdi->text_version)) {
49 char vers[64];
50 strcpy(vers, "external:");
51 strcat(vers, mdi->text_version);
52 if (readonly > 0) {
53 int rv;
54 /* We set readonly ourselves. */
55 vers[9] = '-';
56 sysfs_set_str(mdi, NULL, "metadata_version", vers);
57
58 close(fd);
59 rv = sysfs_set_str(mdi, NULL, "array_state", "readonly");
60
61 if (rv < 0) {
e7b84f9d 62 pr_err("failed to set readonly for %s: %s\n",
e9dd1598
N
63 devname, strerror(errno));
64
65 vers[9] = mdi->text_version[0];
66 sysfs_set_str(mdi, NULL, "metadata_version", vers);
b73e45ae
JS
67 rv = 1;
68 goto out;
e9dd1598
N
69 }
70 } else {
71 char *cp;
72 /* We cannot set read/write - must signal mdmon */
73 vers[9] = '/';
74 sysfs_set_str(mdi, NULL, "metadata_version", vers);
75
76 cp = strchr(vers+10, '/');
1471b8b1 77 if (cp)
e9dd1598
N
78 *cp = 0;
79 ping_monitor(vers+10);
9ea5a252
DW
80 if (mdi->array.level <= 0)
81 sysfs_set_str(mdi, NULL, "array_state", "active");
e9dd1598 82 }
b73e45ae 83 goto out;
e9dd1598 84 }
32141c17 85
80223cb4
JS
86 if (!md_array_active(fd)) {
87 pr_err("%s does not appear to be active.\n", devname);
b73e45ae
JS
88 rv = 1;
89 goto out;
682c7051 90 }
aba69144 91
7bd04da9 92 if (readonly > 0) {
682c7051 93 if (ioctl(fd, STOP_ARRAY_RO, NULL)) {
e7b84f9d 94 pr_err("failed to set readonly for %s: %s\n",
682c7051 95 devname, strerror(errno));
b73e45ae
JS
96 rv = 1;
97 goto out;
682c7051
NB
98 }
99 } else if (readonly < 0) {
100 if (ioctl(fd, RESTART_ARRAY_RW, NULL)) {
e7b84f9d 101 pr_err("failed to set writable for %s: %s\n",
682c7051 102 devname, strerror(errno));
b73e45ae
JS
103 rv = 1;
104 goto out;
682c7051
NB
105 }
106 }
b73e45ae 107out:
6e8d27e7 108 sysfs_free(mdi);
b73e45ae 109 return rv;
64c4757e
NB
110}
111
4dd2df09 112static void remove_devices(char *devnm, char *path)
4ccad7b1 113{
7bd04da9 114 /*
b1702f48
N
115 * Remove names at 'path' - possibly with
116 * partition suffixes - which link to the 'standard'
4dd2df09 117 * name for devnm. These were probably created
b1702f48 118 * by mdadm when the array was assembled.
4ccad7b1
N
119 */
120 char base[40];
121 char *path2;
122 char link[1024];
123 int n;
124 int part;
125 char *be;
126 char *pe;
127
b1702f48
N
128 if (!path)
129 return;
130
4dd2df09 131 sprintf(base, "/dev/%s", devnm);
4ccad7b1 132 be = base + strlen(base);
b1702f48 133
503975b9 134 path2 = xmalloc(strlen(path)+20);
b1702f48
N
135 strcpy(path2, path);
136 pe = path2 + strlen(path2);
7bd04da9 137
4ccad7b1
N
138 for (part = 0; part < 16; part++) {
139 if (part) {
140 sprintf(be, "p%d", part);
b1702f48
N
141
142 if (isdigit(pe[-1]))
143 sprintf(pe, "p%d", part);
144 else
145 sprintf(pe, "%d", part);
4ccad7b1 146 }
b1702f48 147 n = readlink(path2, link, sizeof(link));
d9ca03e9 148 if (n > 0 && (int)strlen(base) == n &&
b1702f48
N
149 strncmp(link, base, n) == 0)
150 unlink(path2);
4ccad7b1 151 }
0eb26465 152 free(path2);
4ccad7b1 153}
4ccad7b1 154
d5a40416 155int Manage_run(char *devname, int fd, struct context *c)
64c4757e 156{
fe7e0e64
N
157 /* Run the array. Array must already be configured
158 * Requires >= 0.90.0
682c7051 159 */
d3786cdc 160 char nm[32], *nmp;
82b27616 161
d3786cdc
N
162 nmp = fd2devnm(fd);
163 if (!nmp) {
164 pr_err("Cannot find %s in sysfs!!\n", devname);
fe7e0e64
N
165 return 1;
166 }
d3786cdc 167 strcpy(nm, nmp);
d5a40416 168 return IncrementalScan(c, nm);
fe7e0e64
N
169}
170
171int Manage_stop(char *devname, int fd, int verbose, int will_retry)
172{
173 /* Stop the array. Array must already be configured
174 * 'will_retry' means that error messages are not wanted.
175 */
176 int rv = 0;
177 struct map_ent *map = NULL;
178 struct mdinfo *mdi;
179 char devnm[32];
180 char container[32];
181 int err;
182 int count;
2eba8496
N
183 char buf[32];
184 unsigned long long rd1, rd2;
fe7e0e64 185
ba728be7
N
186 if (will_retry && verbose == 0)
187 verbose = -1;
188
fe7e0e64
N
189 strcpy(devnm, fd2devnm(fd));
190 /* Get EXCL access first. If this fails, then attempting
191 * to stop is probably a bad idea.
192 */
2eba8496 193 mdi = sysfs_read(fd, NULL, GET_LEVEL|GET_COMPONENT|GET_VERSION);
fe7e0e64
N
194 if (mdi && is_subarray(mdi->text_version)) {
195 char *sl;
196 strncpy(container, mdi->text_version+1, sizeof(container));
197 container[sizeof(container)-1] = 0;
198 sl = strchr(container, '/');
199 if (sl)
200 *sl = 0;
201 } else
202 container[0] = 0;
203 close(fd);
204 count = 5;
52b6ccad 205 while (((fd = ((devname[0] == '/')
fe7e0e64 206 ?open(devname, O_RDONLY|O_EXCL)
fc54fe7a
JS
207 :open_dev_flags(devnm, O_RDONLY|O_EXCL))) < 0 ||
208 strcmp(fd2devnm(fd), devnm) != 0) && container[0] &&
209 mdmon_running(container) && count) {
932be627
N
210 /* Can't open, so something might be wrong. However it
211 * is a container, so we might be racing with mdmon, so
212 * retry for a bit.
213 */
fe7e0e64
N
214 if (fd >= 0)
215 close(fd);
216 flush_mdmon(container);
217 count--;
682c7051 218 }
fe7e0e64
N
219 if (fd < 0 || strcmp(fd2devnm(fd), devnm) != 0) {
220 if (fd >= 0)
221 close(fd);
ba728be7 222 if (verbose >= 0)
7a862a02 223 pr_err("Cannot get exclusive access to %s:Perhaps a running process, mounted filesystem or active volume group?\n",
fe7e0e64
N
224 devname);
225 return 1;
226 }
932be627
N
227 /* If this is an mdmon managed array, just write 'inactive'
228 * to the array state and let mdmon clear up.
229 */
fe7e0e64
N
230 if (mdi &&
231 mdi->array.level > 0 &&
232 is_subarray(mdi->text_version)) {
eb0af526 233 int err;
fe7e0e64 234 /* This is mdmon managed. */
eb0af526 235 close(fd);
daf7a3ce 236
932be627 237 /* As we had an O_EXCL open, any use of the device
eb0af526
N
238 * which blocks STOP_ARRAY is probably a transient use,
239 * so it is reasonable to retry for a while - 5 seconds.
240 */
fe7e0e64
N
241 count = 25;
242 while (count &&
243 (err = sysfs_set_str(mdi, NULL,
244 "array_state",
fc54fe7a
JS
245 "inactive")) < 0 &&
246 errno == EBUSY) {
eb0af526 247 usleep(200000);
fe7e0e64 248 count--;
eb0af526 249 }
fe7e0e64
N
250 if (err) {
251 if (verbose >= 0)
e7b84f9d
N
252 pr_err("failed to stop array %s: %s\n",
253 devname, strerror(errno));
bccd8153
JS
254 rv = 1;
255 goto out;
682c7051 256 }
fe7e0e64
N
257
258 /* Give monitor a chance to act */
259 ping_monitor(mdi->text_version);
260
261 fd = open_dev_excl(devnm);
262 if (fd < 0) {
263 if (verbose >= 0)
7a862a02 264 pr_err("failed to completely stop %s: Device is busy\n",
fe7e0e64
N
265 devname);
266 rv = 1;
267 goto out;
268 }
269 } else if (mdi &&
270 mdi->array.major_version == -1 &&
271 mdi->array.minor_version == -2 &&
272 !is_subarray(mdi->text_version)) {
273 struct mdstat_ent *mds, *m;
274 /* container, possibly mdmon-managed.
275 * Make sure mdmon isn't opening it, which
276 * would interfere with the 'stop'
97590376 277 */
fe7e0e64 278 ping_monitor(mdi->sys_name);
daf7a3ce 279
fe7e0e64
N
280 /* now check that there are no existing arrays
281 * which are members of this array
282 */
283 mds = mdstat_read(0, 0);
284 for (m = mds; m; m = m->next)
285 if (m->metadata_version &&
286 strncmp(m->metadata_version, "external:", 9)==0 &&
287 metadata_container_matches(m->metadata_version+9,
288 devnm)) {
289 if (verbose >= 0)
7a862a02 290 pr_err("Cannot stop container %s: member %s still active\n",
9581efb1 291 devname, m->devnm);
fe7e0e64
N
292 free_mdstat(mds);
293 rv = 1;
294 goto out;
295 }
296 }
297
2eba8496
N
298 /* If the array is undergoing a reshape which changes the number
299 * of devices, then it would be nice to stop it at a point where
300 * it has completed a full number of stripes in both old and
301 * new layouts as this will allow the reshape to be reverted.
302 * So if 'sync_action' is "reshape" and 'raid_disks' shows two
303 * different numbers, then
304 * - freeze reshape
305 * - set sync_max to next multiple of both data_disks and
306 * chunk sizes (or next but one)
307 * - unfreeze reshape
308 * - wait on 'sync_completed' for that point to be reached.
309 */
310 if (mdi && (mdi->array.level >= 4 && mdi->array.level <= 6) &&
311 sysfs_attribute_available(mdi, NULL, "sync_action") &&
312 sysfs_attribute_available(mdi, NULL, "reshape_direction") &&
313 sysfs_get_str(mdi, NULL, "sync_action", buf, 20) > 0 &&
314 strcmp(buf, "reshape\n") == 0 &&
e3e0d0a8 315 sysfs_get_two(mdi, NULL, "raid_disks", &rd1, &rd2) == 2) {
2eba8496
N
316 unsigned long long position, curr;
317 unsigned long long chunk1, chunk2;
318 unsigned long long rddiv, chunkdiv;
319 unsigned long long sectors;
5509dc44
N
320 unsigned long long sync_max, old_sync_max;
321 unsigned long long completed;
2eba8496
N
322 int backwards = 0;
323 int delay;
324 int scfd;
325
e3e0d0a8
N
326 delay = 40;
327 while (rd1 > rd2 && delay > 0 &&
328 sysfs_get_ll(mdi, NULL, "sync_max", &old_sync_max) == 0) {
329 /* must be in the critical section - wait a bit */
330 delay -= 1;
331 usleep(100000);
332 }
333
334 if (sysfs_set_str(mdi, NULL, "sync_action", "frozen") != 0)
335 goto done;
336 /* Array is frozen */
337
2eba8496
N
338 rd1 -= mdi->array.level == 6 ? 2 : 1;
339 rd2 -= mdi->array.level == 6 ? 2 : 1;
340 sysfs_get_str(mdi, NULL, "reshape_direction", buf, sizeof(buf));
341 if (strncmp(buf, "back", 4) == 0)
342 backwards = 1;
e3e0d0a8
N
343 if (sysfs_get_ll(mdi, NULL, "reshape_position", &position) != 0) {
344 /* reshape must have finished now */
345 sysfs_set_str(mdi, NULL, "sync_action", "idle");
346 goto done;
347 }
2eba8496
N
348 sysfs_get_two(mdi, NULL, "chunk_size", &chunk1, &chunk2);
349 chunk1 /= 512;
350 chunk2 /= 512;
351 rddiv = GCD(rd1, rd2);
352 chunkdiv = GCD(chunk1, chunk2);
353 sectors = (chunk1/chunkdiv) * chunk2 * (rd1/rddiv) * rd2;
354
355 if (backwards) {
356 /* Need to subtract 'reshape_position' from
357 * array size to get equivalent of sync_max.
358 * Size calculation based on raid5_size in kernel.
359 */
360 unsigned long long size = mdi->component_size;
361 size &= ~(chunk1-1);
362 size &= ~(chunk2-1);
363 /* rd1 must be smaller */
932be627
N
364 /* Reshape may have progressed further backwards than
365 * recorded, so target even further back (hence "-1")
366 */
5509dc44 367 position = (position / sectors - 1) * sectors;
932be627
N
368 /* rd1 is always the conversion factor between 'sync'
369 * position and 'reshape' position.
370 * We read 1 "new" stripe worth of data from where-ever,
371 * and when write out that full stripe.
372 */
5509dc44 373 sync_max = size - position/rd1;
2eba8496 374 } else {
932be627
N
375 /* Reshape will very likely be beyond position, and it may
376 * be too late to stop at '+1', so aim for '+2'
377 */
5509dc44
N
378 position = (position / sectors + 2) * sectors;
379 sync_max = position/rd1;
2eba8496 380 }
5509dc44
N
381 if (sysfs_get_ll(mdi, NULL, "sync_max", &old_sync_max) < 0)
382 old_sync_max = mdi->component_size;
383 /* Must not advance sync_max as that could confuse
384 * the reshape monitor */
385 if (sync_max < old_sync_max)
386 sysfs_set_num(mdi, NULL, "sync_max", sync_max);
2eba8496
N
387 sysfs_set_str(mdi, NULL, "sync_action", "idle");
388
389 /* That should have set things going again. Now we
3afaff93 390 * wait a little while (3 second max) for sync_completed
2eba8496 391 * to reach the target.
3afaff93
N
392 * The reshape process can block for 500msec if
393 * the sync speed limit is hit, so we need to wait
394 * a lot longer than that. 1 second is usually
395 * enough. 3 is safe.
2eba8496 396 */
3afaff93 397 delay = 3000;
2eba8496 398 scfd = sysfs_open(mdi->sys_name, NULL, "sync_completed");
3afaff93 399 while (scfd >= 0 && delay > 0 && old_sync_max > 0) {
30ddba7d 400 unsigned long long max_completed;
5509dc44 401 sysfs_get_ll(mdi, NULL, "reshape_position", &curr);
2eba8496 402 sysfs_fd_get_str(scfd, buf, sizeof(buf));
3afaff93
N
403 if (strncmp(buf, "none", 4) == 0) {
404 /* Either reshape has aborted, or hasn't
405 * quite started yet. Wait a bit and
406 * check 'sync_action' to see.
407 */
408 usleep(10000);
409 sysfs_get_str(mdi, NULL, "sync_action", buf, sizeof(buf));
410 if (strncmp(buf, "reshape", 7) != 0)
411 break;
412 }
5509dc44 413
30ddba7d
N
414 if (sysfs_fd_get_two(scfd, &completed,
415 &max_completed) == 2 &&
416 /* 'completed' sometimes reads as max-uulong */
417 completed < max_completed &&
5509dc44
N
418 (completed > sync_max ||
419 (completed == sync_max && curr != position))) {
420 while (completed > sync_max) {
421 sync_max += sectors / rd1;
422 if (backwards)
423 position -= sectors;
424 else
425 position += sectors;
426 }
427 if (sync_max < old_sync_max)
428 sysfs_set_num(mdi, NULL, "sync_max", sync_max);
429 }
430
2eba8496
N
431 if (!backwards && curr >= position)
432 break;
433 if (backwards && curr <= position)
434 break;
435 sysfs_wait(scfd, &delay);
436 }
437 if (scfd >= 0)
438 close(scfd);
439
440 }
e3e0d0a8 441done:
2eba8496 442
fe7e0e64
N
443 /* As we have an O_EXCL open, any use of the device
444 * which blocks STOP_ARRAY is probably a transient use,
445 * so it is reasonable to retry for a while - 5 seconds.
446 */
447 count = 25; err = 0;
fc54fe7a
JS
448 while (count && fd >= 0 &&
449 (err = ioctl(fd, STOP_ARRAY, NULL)) < 0 && errno == EBUSY) {
fe7e0e64
N
450 usleep(200000);
451 count --;
452 }
453 if (fd >= 0 && err) {
454 if (verbose >= 0) {
455 pr_err("failed to stop array %s: %s\n",
456 devname, strerror(errno));
457 if (errno == EBUSY)
7a862a02 458 cont_err("Perhaps a running process, mounted filesystem or active volume group?\n");
4ccad7b1 459 }
fe7e0e64
N
460 rv = 1;
461 goto out;
462 }
229e66cb
JS
463
464 if (get_linux_version() < 2006028) {
465 /* prior to 2.6.28, KOBJ_CHANGE was not sent when an md array
466 * was stopped, so We'll do it here just to be sure. Drop any
467 * partitions as well...
468 */
469 if (fd >= 0)
470 ioctl(fd, BLKRRPART, 0);
471 if (mdi)
472 sysfs_uevent(mdi, "change");
473 }
4ccad7b1 474
fe7e0e64
N
475 if (devnm[0] && use_udev()) {
476 struct map_ent *mp = map_by_devnm(&map, devnm);
477 remove_devices(devnm, mp ? mp->path : NULL);
682c7051 478 }
fe7e0e64
N
479
480 if (verbose >= 0)
481 pr_err("stopped %s\n", devname);
482 map_lock(&map);
483 map_remove(&map, devnm);
484 map_unlock(&map);
485out:
6e8d27e7 486 sysfs_free(mdi);
fe7e0e64 487
bccd8153 488 return rv;
64c4757e
NB
489}
490
5e73b024
N
491static struct mddev_dev *add_one(struct mddev_dev *dv, char *name, char disp)
492{
493 struct mddev_dev *new;
494 new = xmalloc(sizeof(*new));
495 memset(new, 0, sizeof(*new));
496 new->devname = xstrdup(name);
497 new->disposition = disp;
498 new->next = dv->next;
499 dv->next = new;
500 return new;
501}
502
1d997643
N
503static void add_faulty(struct mddev_dev *dv, int fd, char disp)
504{
505 mdu_array_info_t array;
506 mdu_disk_info_t disk;
507 int remaining_disks;
508 int i;
509
9cd39f01 510 if (md_get_array_info(fd, &array) != 0)
1d997643
N
511 return;
512
513 remaining_disks = array.nr_disks;
514 for (i = 0; i < MAX_DISKS && remaining_disks > 0; i++) {
1d997643
N
515 char buf[40];
516 disk.number = i;
d97572f5 517 if (md_get_disk_info(fd, &disk) != 0)
1d997643
N
518 continue;
519 if (disk.major == 0 && disk.minor == 0)
520 continue;
521 remaining_disks--;
522 if ((disk.state & 1) == 0) /* not faulty */
523 continue;
524 sprintf(buf, "%d:%d", disk.major, disk.minor);
5e73b024 525 dv = add_one(dv, buf, disp);
1d997643
N
526 }
527}
528
529static void add_detached(struct mddev_dev *dv, int fd, char disp)
530{
531 mdu_array_info_t array;
532 mdu_disk_info_t disk;
533 int remaining_disks;
534 int i;
535
9cd39f01 536 if (md_get_array_info(fd, &array) != 0)
1d997643
N
537 return;
538
539 remaining_disks = array.nr_disks;
540 for (i = 0; i < MAX_DISKS && remaining_disks > 0; i++) {
1d997643
N
541 char buf[40];
542 int sfd;
543 disk.number = i;
d97572f5 544 if (md_get_disk_info(fd, &disk) != 0)
1d997643
N
545 continue;
546 if (disk.major == 0 && disk.minor == 0)
547 continue;
548 remaining_disks--;
549 if (disp == 'f' && (disk.state & 1) != 0) /* already faulty */
550 continue;
551 sprintf(buf, "%d:%d", disk.major, disk.minor);
552 sfd = dev_open(buf, O_RDONLY);
553 if (sfd >= 0) {
554 /* Not detached */
555 close(sfd);
556 continue;
557 }
558 if (errno != ENXIO)
559 /* Probably not detached */
560 continue;
5e73b024 561 dv = add_one(dv, buf, disp);
1d997643
N
562 }
563}
564
64a78416
N
565static void add_set(struct mddev_dev *dv, int fd, char set_char)
566{
567 mdu_array_info_t array;
568 mdu_disk_info_t disk;
569 int remaining_disks;
570 int copies, set;
571 int i;
572
9cd39f01 573 if (md_get_array_info(fd, &array) != 0)
64a78416
N
574 return;
575 if (array.level != 10)
576 return;
577 copies = ((array.layout & 0xff) *
578 ((array.layout >> 8) & 0xff));
579 if (array.raid_disks % copies)
580 return;
581
582 remaining_disks = array.nr_disks;
583 for (i = 0; i < MAX_DISKS && remaining_disks > 0; i++) {
584 char buf[40];
585 disk.number = i;
d97572f5 586 if (md_get_disk_info(fd, &disk) != 0)
64a78416
N
587 continue;
588 if (disk.major == 0 && disk.minor == 0)
589 continue;
590 remaining_disks--;
591 set = disk.raid_disk % copies;
592 if (set_char != set + 'A')
593 continue;
594 sprintf(buf, "%d:%d", disk.major, disk.minor);
595 dv = add_one(dv, buf, dv->disposition);
596 }
597}
598
abe94694
N
599int attempt_re_add(int fd, int tfd, struct mddev_dev *dv,
600 struct supertype *dev_st, struct supertype *tst,
601 unsigned long rdev,
602 char *update, char *devname, int verbose,
603 mdu_array_info_t *array)
604{
605 struct mdinfo mdi;
606 int duuid[4];
607 int ouuid[4];
608
609 dev_st->ss->getinfo_super(dev_st, &mdi, NULL);
610 dev_st->ss->uuid_from_super(dev_st, ouuid);
611 if (tst->sb)
612 tst->ss->uuid_from_super(tst, duuid);
613 else
614 /* Assume uuid matches: kernel will check */
615 memcpy(duuid, ouuid, sizeof(ouuid));
616 if ((mdi.disk.state & (1<<MD_DISK_ACTIVE)) &&
617 !(mdi.disk.state & (1<<MD_DISK_FAULTY)) &&
618 memcmp(duuid, ouuid, sizeof(ouuid))==0) {
619 /* Looks like it is worth a
620 * try. Need to make sure
621 * kernel will accept it
622 * though.
623 */
624 mdu_disk_info_t disc;
625 /* re-add doesn't work for version-1 superblocks
626 * before 2.6.18 :-(
627 */
628 if (array->major_version == 1 &&
629 get_linux_version() <= 2006018)
630 goto skip_re_add;
631 disc.number = mdi.disk.number;
d97572f5
JS
632 if (md_get_disk_info(fd, &disc) != 0 ||
633 disc.major != 0 || disc.minor != 0)
abe94694
N
634 goto skip_re_add;
635 disc.major = major(rdev);
636 disc.minor = minor(rdev);
637 disc.number = mdi.disk.number;
638 disc.raid_disk = mdi.disk.raid_disk;
639 disc.state = mdi.disk.state;
bff96f73
GJ
640 if (array->state & (1 << MD_SB_CLUSTERED)) {
641 /* extra flags are needed when adding to a cluster as
642 * there are two cases to distinguish
643 */
644 if (dv->disposition == 'c')
645 disc.state |= (1 << MD_DISK_CANDIDATE);
646 else
647 disc.state |= (1 << MD_DISK_CLUSTER_ADD);
648 }
e22fe3ae 649 if (dv->writemostly == FlagSet)
abe94694 650 disc.state |= 1 << MD_DISK_WRITEMOSTLY;
e22fe3ae 651 if (dv->writemostly == FlagClear)
abe94694 652 disc.state &= ~(1 << MD_DISK_WRITEMOSTLY);
e22fe3ae 653 if (dv->failfast == FlagSet)
71574efb 654 disc.state |= 1 << MD_DISK_FAILFAST;
e22fe3ae 655 if (dv->failfast == FlagClear)
71574efb 656 disc.state &= ~(1 << MD_DISK_FAILFAST);
abe94694 657 remove_partitions(tfd);
d7be7d87
JS
658 if (update || dv->writemostly != FlagDefault ||
659 dv->failfast != FlagDefault) {
abe94694
N
660 int rv = -1;
661 tfd = dev_open(dv->devname, O_RDWR);
662 if (tfd < 0) {
7a862a02 663 pr_err("failed to open %s for superblock update during re-add\n", dv->devname);
abe94694
N
664 return -1;
665 }
666
e22fe3ae 667 if (dv->writemostly == FlagSet)
abe94694
N
668 rv = dev_st->ss->update_super(
669 dev_st, NULL, "writemostly",
670 devname, verbose, 0, NULL);
e22fe3ae 671 if (dv->writemostly == FlagClear)
abe94694
N
672 rv = dev_st->ss->update_super(
673 dev_st, NULL, "readwrite",
674 devname, verbose, 0, NULL);
e22fe3ae 675 if (dv->failfast == FlagSet)
71574efb
N
676 rv = dev_st->ss->update_super(
677 dev_st, NULL, "failfast",
678 devname, verbose, 0, NULL);
e22fe3ae 679 if (dv->failfast == FlagClear)
71574efb
N
680 rv = dev_st->ss->update_super(
681 dev_st, NULL, "nofailfast",
682 devname, verbose, 0, NULL);
abe94694
N
683 if (update)
684 rv = dev_st->ss->update_super(
685 dev_st, NULL, update,
686 devname, verbose, 0, NULL);
687 if (rv == 0)
688 rv = dev_st->ss->store_super(dev_st, tfd);
689 close(tfd);
690 if (rv != 0) {
7a862a02 691 pr_err("failed to update superblock during re-add\n");
abe94694
N
692 return -1;
693 }
694 }
695 /* don't even try if disk is marked as faulty */
696 errno = 0;
697 if (ioctl(fd, ADD_NEW_DISK, &disc) == 0) {
698 if (verbose >= 0)
699 pr_err("re-added %s\n", dv->devname);
700 return 1;
701 }
702 if (errno == ENOMEM || errno == EROFS) {
703 pr_err("add new device failed for %s: %s\n",
704 dv->devname, strerror(errno));
705 if (dv->disposition == 'M')
706 return 0;
707 return -1;
708 }
709 }
710skip_re_add:
711 return 0;
712}
713
38aeaf3a
N
714int Manage_add(int fd, int tfd, struct mddev_dev *dv,
715 struct supertype *tst, mdu_array_info_t *array,
716 int force, int verbose, char *devname,
4de90913
GJ
717 char *update, unsigned long rdev, unsigned long long array_size,
718 int raid_slot)
38aeaf3a
N
719{
720 unsigned long long ldsize;
fbd3e15c 721 struct supertype *dev_st;
38aeaf3a
N
722 int j;
723 mdu_disk_info_t disc;
724
725 if (!get_dev_size(tfd, dv->devname, &ldsize)) {
726 if (dv->disposition == 'M')
727 return 0;
728 else
729 return -1;
730 }
731
632dc30c 732 if (tst->ss == &super0 && ldsize > 4ULL*1024*1024*1024*1024) {
7ccc4cc4 733 /* More than 4TB is wasted on v0.90 */
38aeaf3a 734 if (!force) {
7a862a02
N
735 pr_err("%s is larger than %s can effectively use.\n"
736 " Add --force is you really want to add this device.\n",
38aeaf3a
N
737 dv->devname, devname);
738 return -1;
739 }
7a862a02
N
740 pr_err("%s is larger than %s can effectively use.\n"
741 " Adding anyway as --force was given.\n",
38aeaf3a
N
742 dv->devname, devname);
743 }
091e8e6e 744 if (!tst->ss->external && array->major_version == 0) {
38aeaf3a
N
745 if (ioctl(fd, HOT_ADD_DISK, rdev)==0) {
746 if (verbose >= 0)
747 pr_err("hot added %s\n",
748 dv->devname);
749 return 1;
750 }
751
752 pr_err("hot add failed for %s: %s\n",
753 dv->devname, strerror(errno));
754 return -1;
755 }
756
757 if (array->not_persistent == 0 || tst->ss->external) {
758
759 /* need to find a sample superblock to copy, and
760 * a spare slot to use.
761 * For 'external' array (well, container based),
762 * We can just load the metadata for the array->
763 */
764 int array_failed;
765 if (tst->sb)
766 /* already loaded */;
767 else if (tst->ss->external) {
768 tst->ss->load_container(tst, fd, NULL);
769 } else for (j = 0; j < tst->max_devs; j++) {
770 char *dev;
771 int dfd;
772 disc.number = j;
d97572f5 773 if (md_get_disk_info(fd, &disc))
38aeaf3a
N
774 continue;
775 if (disc.major==0 && disc.minor==0)
776 continue;
777 if ((disc.state & 4)==0) /* sync */
778 continue;
779 /* Looks like a good device to try */
780 dev = map_dev(disc.major, disc.minor, 1);
781 if (!dev)
782 continue;
783 dfd = dev_open(dev, O_RDONLY);
784 if (dfd < 0)
785 continue;
786 if (tst->ss->load_super(tst, dfd,
787 NULL)) {
788 close(dfd);
789 continue;
790 }
791 close(dfd);
792 break;
793 }
794 /* FIXME this is a bad test to be using */
fc54fe7a
JS
795 if (!tst->sb && (dv->disposition != 'a' &&
796 dv->disposition != 'S')) {
38aeaf3a
N
797 /* we are re-adding a device to a
798 * completely dead array - have to depend
799 * on kernel to check
800 */
801 } else if (!tst->sb) {
802 pr_err("cannot load array metadata from %s\n", devname);
803 return -1;
804 }
805
806 /* Make sure device is large enough */
01290056
SL
807 if (dv->disposition != 'j' && /* skip size check for Journal */
808 tst->sb &&
2609f339 809 tst->ss->avail_size(tst, ldsize/512, INVALID_SECTORS) <
38aeaf3a
N
810 array_size) {
811 if (dv->disposition == 'M')
812 return 0;
813 pr_err("%s not large enough to join array\n",
814 dv->devname);
815 return -1;
816 }
817
818 /* Possibly this device was recently part of
819 * the array and was temporarily removed, and
820 * is now being re-added. If so, we can
821 * simply re-add it.
822 */
823
fbd3e15c 824 if (array->not_persistent == 0) {
38aeaf3a
N
825 dev_st = dup_super(tst);
826 dev_st->ss->load_super(dev_st, tfd, NULL);
fbd3e15c
JS
827 if (dev_st->sb && dv->disposition != 'S') {
828 int rv;
829
830 rv = attempt_re_add(fd, tfd, dv, dev_st, tst,
831 rdev, update, devname,
832 verbose, array);
833 dev_st->ss->free_super(dev_st);
834 if (rv)
835 return rv;
836 }
38aeaf3a
N
837 }
838 if (dv->disposition == 'M') {
839 if (verbose > 0)
840 pr_err("--re-add for %s to %s is not possible\n",
841 dv->devname, devname);
842 return 0;
843 }
844 if (dv->disposition == 'A') {
845 pr_err("--re-add for %s to %s is not possible\n",
846 dv->devname, devname);
847 return -1;
848 }
849 if (array->active_disks < array->raid_disks) {
850 char *avail = xcalloc(array->raid_disks, 1);
851 int d;
852 int found = 0;
853
d180d2aa 854 for (d = 0; d < MAX_DISKS && found < array->nr_disks; d++) {
38aeaf3a 855 disc.number = d;
d97572f5 856 if (md_get_disk_info(fd, &disc))
38aeaf3a
N
857 continue;
858 if (disc.major == 0 && disc.minor == 0)
859 continue;
860 if (!(disc.state & (1<<MD_DISK_SYNC)))
861 continue;
862 avail[disc.raid_disk] = 1;
d31d0f52 863 found++;
38aeaf3a
N
864 }
865 array_failed = !enough(array->level, array->raid_disks,
866 array->layout, 1, avail);
6157951f 867 free(avail);
38aeaf3a
N
868 } else
869 array_failed = 0;
870 if (array_failed) {
871 pr_err("%s has failed so using --add cannot work and might destroy\n",
872 devname);
873 pr_err("data on %s. You should stop the array and re-assemble it.\n",
874 dv->devname);
875 return -1;
876 }
877 } else {
878 /* non-persistent. Must ensure that new drive
879 * is at least array->size big.
880 */
881 if (ldsize/512 < array_size) {
882 pr_err("%s not large enough to join array\n",
883 dv->devname);
884 return -1;
885 }
886 }
887 /* committed to really trying this device now*/
888 remove_partitions(tfd);
889
890 /* in 2.6.17 and earlier, version-1 superblocks won't
891 * use the number we write, but will choose a free number.
892 * we must choose the same free number, which requires
893 * starting at 'raid_disks' and counting up
894 */
895 for (j = array->raid_disks; j < tst->max_devs; j++) {
896 disc.number = j;
d97572f5 897 if (md_get_disk_info(fd, &disc))
38aeaf3a
N
898 break;
899 if (disc.major==0 && disc.minor==0)
900 break;
901 if (disc.state & 8) /* removed */
902 break;
903 }
904 disc.major = major(rdev);
905 disc.minor = minor(rdev);
4de90913
GJ
906 if (raid_slot < 0)
907 disc.number = j;
908 else
909 disc.number = raid_slot;
38aeaf3a 910 disc.state = 0;
01290056
SL
911
912 /* only add journal to array that supports journaling */
913 if (dv->disposition == 'j') {
914 struct mdinfo mdi;
915 struct mdinfo *mdp;
916
917 mdp = sysfs_read(fd, NULL, GET_ARRAY_STATE);
2a1990c0
JS
918 if (!mdp) {
919 pr_err("%s unable to read array state.\n", devname);
920 return -1;
921 }
01290056 922
5e4ca8bb 923 if (mdp->array_state != ARRAY_READONLY) {
d209181d 924 sysfs_free(mdp);
01290056
SL
925 pr_err("%s is not readonly, cannot add journal.\n", devname);
926 return -1;
927 }
928
d209181d
JS
929 sysfs_free(mdp);
930
01290056
SL
931 tst->ss->getinfo_super(tst, &mdi, NULL);
932 if (mdi.journal_device_required == 0) {
933 pr_err("%s does not support journal device.\n", devname);
934 return -1;
935 }
38c2e05b 936 disc.raid_disk = 0;
01290056
SL
937 }
938
38aeaf3a
N
939 if (array->not_persistent==0) {
940 int dfd;
01290056
SL
941 if (dv->disposition == 'j')
942 disc.state |= (1 << MD_DISK_JOURNAL) | (1 << MD_DISK_SYNC);
e22fe3ae 943 if (dv->writemostly == FlagSet)
38aeaf3a 944 disc.state |= 1 << MD_DISK_WRITEMOSTLY;
e22fe3ae 945 if (dv->failfast == FlagSet)
71574efb 946 disc.state |= 1 << MD_DISK_FAILFAST;
38aeaf3a
N
947 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
948 if (tst->ss->add_to_super(tst, &disc, dfd,
72ca9bcf 949 dv->devname, INVALID_SECTORS))
38aeaf3a
N
950 return -1;
951 if (tst->ss->write_init_super(tst))
952 return -1;
953 } else if (dv->disposition == 'A') {
954 /* this had better be raid1.
955 * As we are "--re-add"ing we must find a spare slot
956 * to fill.
957 */
958 char *used = xcalloc(array->raid_disks, 1);
959 for (j = 0; j < tst->max_devs; j++) {
960 mdu_disk_info_t disc2;
961 disc2.number = j;
d97572f5 962 if (md_get_disk_info(fd, &disc2))
38aeaf3a
N
963 continue;
964 if (disc2.major==0 && disc2.minor==0)
965 continue;
966 if (disc2.state & 8) /* removed */
967 continue;
968 if (disc2.raid_disk < 0)
969 continue;
970 if (disc2.raid_disk > array->raid_disks)
971 continue;
972 used[disc2.raid_disk] = 1;
973 }
974 for (j = 0 ; j < array->raid_disks; j++)
975 if (!used[j]) {
976 disc.raid_disk = j;
977 disc.state |= (1<<MD_DISK_SYNC);
978 break;
979 }
980 free(used);
981 }
4de90913
GJ
982
983 if (array->state & (1 << MD_SB_CLUSTERED)) {
984 if (dv->disposition == 'c')
985 disc.state |= (1 << MD_DISK_CANDIDATE);
986 else
987 disc.state |= (1 << MD_DISK_CLUSTER_ADD);
988 }
989
e22fe3ae 990 if (dv->writemostly == FlagSet)
38aeaf3a 991 disc.state |= (1 << MD_DISK_WRITEMOSTLY);
e22fe3ae 992 if (dv->failfast == FlagSet)
71574efb 993 disc.state |= (1 << MD_DISK_FAILFAST);
38aeaf3a
N
994 if (tst->ss->external) {
995 /* add a disk
996 * to an external metadata container */
997 struct mdinfo new_mdi;
998 struct mdinfo *sra;
999 int container_fd;
4dd2df09 1000 char devnm[32];
38aeaf3a
N
1001 int dfd;
1002
4dd2df09
N
1003 strcpy(devnm, fd2devnm(fd));
1004
1005 container_fd = open_dev_excl(devnm);
38aeaf3a 1006 if (container_fd < 0) {
7a862a02 1007 pr_err("add failed for %s: could not get exclusive access to container\n",
38aeaf3a
N
1008 dv->devname);
1009 tst->ss->free_super(tst);
1010 return -1;
1011 }
1012
9cf9a1de 1013 Kill(dv->devname, NULL, 0, -1, 0);
38aeaf3a 1014 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
4dd2df09 1015 if (mdmon_running(tst->container_devnm))
38aeaf3a
N
1016 tst->update_tail = &tst->updates;
1017 if (tst->ss->add_to_super(tst, &disc, dfd,
72ca9bcf 1018 dv->devname, INVALID_SECTORS)) {
38aeaf3a
N
1019 close(dfd);
1020 close(container_fd);
1021 return -1;
1022 }
1023 if (tst->update_tail)
1024 flush_metadata_updates(tst);
1025 else
1026 tst->ss->sync_metadata(tst);
1027
4dd2df09 1028 sra = sysfs_read(container_fd, NULL, 0);
38aeaf3a
N
1029 if (!sra) {
1030 pr_err("add failed for %s: sysfs_read failed\n",
1031 dv->devname);
1032 close(container_fd);
1033 tst->ss->free_super(tst);
1034 return -1;
1035 }
1036 sra->array.level = LEVEL_CONTAINER;
1037 /* Need to set data_offset and component_size */
1038 tst->ss->getinfo_super(tst, &new_mdi, NULL);
1039 new_mdi.disk.major = disc.major;
1040 new_mdi.disk.minor = disc.minor;
1041 new_mdi.recovery_start = 0;
1042 /* Make sure fds are closed as they are O_EXCL which
1043 * would block add_disk */
1044 tst->ss->free_super(tst);
1045 if (sysfs_add_disk(sra, &new_mdi, 0) != 0) {
7a862a02 1046 pr_err("add new device to external metadata failed for %s\n", dv->devname);
38aeaf3a
N
1047 close(container_fd);
1048 sysfs_free(sra);
1049 return -1;
1050 }
4dd2df09 1051 ping_monitor(devnm);
38aeaf3a
N
1052 sysfs_free(sra);
1053 close(container_fd);
1054 } else {
1055 tst->ss->free_super(tst);
1056 if (ioctl(fd, ADD_NEW_DISK, &disc)) {
01290056
SL
1057 if (dv->disposition == 'j')
1058 pr_err("Failed to hot add %s as journal, "
1059 "please try restart %s.\n", dv->devname, devname);
1060 else
1061 pr_err("add new device failed for %s as %d: %s\n",
1062 dv->devname, j, strerror(errno));
38aeaf3a
N
1063 return -1;
1064 }
01290056
SL
1065 if (dv->disposition == 'j') {
1066 pr_err("Journal added successfully, making %s read-write\n", devname);
1067 if (Manage_ro(devname, fd, -1))
1068 pr_err("Failed to make %s read-write\n", devname);
1069 }
1070
38aeaf3a
N
1071 }
1072 if (verbose >= 0)
1073 pr_err("added %s\n", dv->devname);
1074 return 1;
1075}
1076
d070235d 1077int Manage_remove(struct supertype *tst, int fd, struct mddev_dev *dv,
1ab9ed2a 1078 int sysfd, unsigned long rdev, int force, int verbose, char *devname)
d070235d
N
1079{
1080 int lfd = -1;
1081 int err;
1082
1083 if (tst->ss->external) {
1084 /* To remove a device from a container, we must
1085 * check that it isn't in use in an array.
1086 * This involves looking in the 'holders'
1087 * directory - there must be just one entry,
1088 * the container.
1089 * To ensure that it doesn't get used as a
1090 * hot spare while we are checking, we
1091 * get an O_EXCL open on the container
1092 */
aab15415 1093 int ret;
4dd2df09
N
1094 char devnm[32];
1095 strcpy(devnm, fd2devnm(fd));
1096 lfd = open_dev_excl(devnm);
d070235d 1097 if (lfd < 0) {
7a862a02 1098 pr_err("Cannot get exclusive access to container - odd\n");
d070235d
N
1099 return -1;
1100 }
aab15415
N
1101 /* We may not be able to check on holders in
1102 * sysfs, either because we don't have the dev num
1103 * (rdev == 0) or because the device has been detached
1104 * and the 'holders' directory no longer exists
1105 * (ret == -1). In that case, assume it is OK to
1106 * remove.
d070235d 1107 */
aab15415
N
1108 if (rdev == 0)
1109 ret = -1;
c922221e
TM
1110 else {
1111 /*
1112 * The drive has already been set to 'faulty', however
1113 * monitor might not have had time to process it and the
1114 * drive might still have an entry in the 'holders'
1115 * directory. Try a few times to avoid a false error
1116 */
1117 int count = 20;
1118
1119 do {
1120 ret = sysfs_unique_holder(devnm, rdev);
1121 if (ret < 2)
1122 break;
1123 usleep(100 * 1000); /* 100ms */
1124 } while (--count > 0);
1125
1126 if (ret == 0) {
1127 pr_err("%s is not a member, cannot remove.\n",
1128 dv->devname);
1129 close(lfd);
1130 return -1;
1131 }
1132 if (ret >= 2) {
1133 pr_err("%s is still in use, cannot remove.\n",
1134 dv->devname);
1135 close(lfd);
1136 return -1;
1137 }
d070235d
N
1138 }
1139 }
1140 /* FIXME check that it is a current member */
1141 if (sysfd >= 0) {
1142 /* device has been removed and we don't know
1143 * the major:minor number
1144 */
1ab9ed2a 1145 err = sys_hot_remove_disk(sysfd, force);
d070235d 1146 } else {
1ab9ed2a 1147 err = hot_remove_disk(fd, rdev, force);
d070235d
N
1148 if (err && errno == ENODEV) {
1149 /* Old kernels rejected this if no personality
1150 * is registered */
4dd2df09 1151 struct mdinfo *sra = sysfs_read(fd, NULL, GET_DEVS);
d070235d
N
1152 struct mdinfo *dv = NULL;
1153 if (sra)
1154 dv = sra->devs;
1155 for ( ; dv ; dv=dv->next)
1156 if (dv->disk.major == (int)major(rdev) &&
1157 dv->disk.minor == (int)minor(rdev))
1158 break;
1159 if (dv)
1160 err = sysfs_set_str(sra, dv,
1161 "state", "remove");
1162 else
1163 err = -1;
6e8d27e7 1164 sysfs_free(sra);
d070235d
N
1165 }
1166 }
1167 if (err) {
7a862a02 1168 pr_err("hot remove failed for %s: %s\n", dv->devname,
d070235d
N
1169 strerror(errno));
1170 if (lfd >= 0)
1171 close(lfd);
1172 return -1;
1173 }
1174 if (tst->ss->external) {
1175 /*
1176 * Before dropping our exclusive open we make an
1177 * attempt at preventing mdmon from seeing an
1178 * 'add' event before reconciling this 'remove'
1179 * event.
1180 */
4dd2df09 1181 char *devnm = fd2devnm(fd);
d070235d 1182
4dd2df09 1183 if (!devnm) {
d070235d
N
1184 pr_err("unable to get container name\n");
1185 return -1;
1186 }
1187
4dd2df09 1188 ping_manager(devnm);
d070235d
N
1189 }
1190 if (lfd >= 0)
1191 close(lfd);
1192 if (verbose >= 0)
1193 pr_err("hot removed %s from %s\n",
1194 dv->devname, devname);
1195 return 1;
1196}
1197
70c55e36
N
1198int Manage_replace(struct supertype *tst, int fd, struct mddev_dev *dv,
1199 unsigned long rdev, int verbose, char *devname)
1200{
1201 struct mdinfo *mdi, *di;
1202 if (tst->ss->external) {
1203 pr_err("--replace only supported for native metadata (0.90 or 1.x)\n");
1204 return -1;
1205 }
1206 /* Need to find the device in sysfs and add 'want_replacement' to the
1207 * status.
1208 */
4dd2df09 1209 mdi = sysfs_read(fd, NULL, GET_DEVS);
70c55e36
N
1210 if (!mdi || !mdi->devs) {
1211 pr_err("Cannot find status of %s to enable replacement - strange\n",
1212 devname);
1213 return -1;
1214 }
1215 for (di = mdi->devs; di; di = di->next)
1216 if (di->disk.major == (int)major(rdev) &&
1217 di->disk.minor == (int)minor(rdev))
1218 break;
1219 if (di) {
1220 int rv;
1221 if (di->disk.raid_disk < 0) {
1222 pr_err("%s is not active and so cannot be replaced.\n",
1223 dv->devname);
1224 sysfs_free(mdi);
1225 return -1;
1226 }
1227 rv = sysfs_set_str(mdi, di,
1228 "state", "want_replacement");
1229 if (rv) {
1230 sysfs_free(mdi);
1231 pr_err("Failed to request replacement for %s\n",
1232 dv->devname);
1233 return -1;
1234 }
1235 if (verbose >= 0)
1236 pr_err("Marked %s (device %d in %s) for replacement\n",
1237 dv->devname, di->disk.raid_disk, devname);
1238 /* If there is a matching 'with', we need to tell it which
1239 * raid disk
1240 */
1241 while (dv && dv->disposition != 'W')
1242 dv = dv->next;
1243 if (dv) {
1244 dv->disposition = 'w';
1245 dv->used = di->disk.raid_disk;
1246 }
1247 return 1;
1248 }
1249 sysfs_free(mdi);
1250 pr_err("%s not found in %s so cannot --replace it\n",
1251 dv->devname, devname);
1252 return -1;
1253}
1254
1255int Manage_with(struct supertype *tst, int fd, struct mddev_dev *dv,
1256 unsigned long rdev, int verbose, char *devname)
1257{
1258 struct mdinfo *mdi, *di;
1259 /* try to set 'slot' for 'rdev' in 'fd' to 'dv->used' */
4dd2df09 1260 mdi = sysfs_read(fd, NULL, GET_DEVS|GET_STATE);
70c55e36
N
1261 if (!mdi || !mdi->devs) {
1262 pr_err("Cannot find status of %s to enable replacement - strange\n",
1263 devname);
1264 return -1;
1265 }
1266 for (di = mdi->devs; di; di = di->next)
1267 if (di->disk.major == (int)major(rdev) &&
1268 di->disk.minor == (int)minor(rdev))
1269 break;
1270 if (di) {
1271 int rv;
1272 if (di->disk.state & (1<<MD_DISK_FAULTY)) {
1273 pr_err("%s is faulty and cannot be a replacement\n",
1274 dv->devname);
1275 sysfs_free(mdi);
1276 return -1;
1277 }
1278 if (di->disk.raid_disk >= 0) {
1279 pr_err("%s is active and cannot be a replacement\n",
1280 dv->devname);
1281 sysfs_free(mdi);
1282 return -1;
1283 }
1284 rv = sysfs_set_num(mdi, di,
1285 "slot", dv->used);
1286 if (rv) {
1287 sysfs_free(mdi);
51425978 1288 pr_err("Failed to set %s as preferred replacement.\n",
70c55e36
N
1289 dv->devname);
1290 return -1;
1291 }
1292 if (verbose >= 0)
1293 pr_err("Marked %s in %s as replacement for device %d\n",
1294 dv->devname, devname, dv->used);
1295 return 1;
1296 }
1297 sysfs_free(mdi);
1298 pr_err("%s not found in %s so cannot make it preferred replacement\n",
1299 dv->devname, devname);
1300 return -1;
1301}
1302
64c4757e 1303int Manage_subdevs(char *devname, int fd,
833bb0f8 1304 struct mddev_dev *devlist, int verbose, int test,
11b391ec 1305 char *update, int force)
cd29a5c8 1306{
7bd04da9 1307 /* Do something to each dev.
682c7051
NB
1308 * devmode can be
1309 * 'a' - add the device
1310 * try HOT_ADD_DISK
1311 * If that fails EINVAL, try ADD_NEW_DISK
f33a71f1 1312 * 'S' - add the device as a spare - don't try re-add
01290056 1313 * 'j' - add the device as a journal device
7bd04da9
N
1314 * 'A' - re-add the device
1315 * 'r' - remove the device: HOT_REMOVE_DISK
b80da661
NB
1316 * device can be 'faulty' or 'detached' in which case all
1317 * matching devices are removed.
682c7051 1318 * 'f' - set the device faulty SET_DISK_FAULTY
b80da661
NB
1319 * device can be 'detached' in which case any device that
1320 * is inaccessible will be marked faulty.
70c55e36
N
1321 * 'R' - mark this device as wanting replacement.
1322 * 'W' - this device is added if necessary and activated as
1323 * a replacement for a previous 'R' device.
1324 * -----
1325 * 'w' - 'W' will be changed to 'w' when it is paired with
1326 * a 'R' device. If a 'W' is found while walking the list
1327 * it must be unpaired, and is an error.
1328 * 'M' - this is created by a 'missing' target. It is a slight
1329 * variant on 'A'
262e3b7f
N
1330 * 'F' - Another variant of 'A', where the device was faulty
1331 * so must be removed from the array first.
4de90913 1332 * 'c' - confirm the device as found (for clustered environments)
70c55e36 1333 *
98d27e39
N
1334 * For 'f' and 'r', the device can also be a kernel-internal
1335 * name such as 'sdb'.
682c7051
NB
1336 */
1337 mdu_array_info_t array;
7a3be72f 1338 unsigned long long array_size;
1d997643 1339 struct mddev_dev *dv;
cfad27a9 1340 int tfd = -1;
38aeaf3a 1341 struct supertype *tst;
4725bc31 1342 char *subarray = NULL;
98d27e39 1343 int sysfd = -1;
7d2e6486 1344 int count = 0; /* number of actions taken */
9f584691 1345 struct mdinfo info;
9465f170 1346 struct mdinfo devinfo;
9f584691 1347 int frozen = 0;
8af530b0 1348 int busy = 0;
4de90913 1349 int raid_slot = -1;
682c7051 1350
dae13137
JS
1351 if (sysfs_init(&info, fd, NULL)) {
1352 pr_err("sysfs not availabile for %s\n", devname);
1353 goto abort;
1354 }
1355
9cd39f01
JS
1356 if (md_get_array_info(fd, &array)) {
1357 pr_err("Cannot get array info for %s\n", devname);
bcbb3112 1358 goto abort;
682c7051 1359 }
7bd04da9 1360 /* array.size is only 32 bits and may be truncated.
7a3be72f
NB
1361 * So read from sysfs if possible, and record number of sectors
1362 */
1363
1364 array_size = get_component_size(fd);
1365 if (array_size <= 0)
1366 array_size = array.size * 2;
1367
4725bc31 1368 tst = super_by_fd(fd, &subarray);
3da92f27 1369 if (!tst) {
e7b84f9d 1370 pr_err("unsupport array - version %d.%d\n",
3da92f27 1371 array.major_version, array.minor_version);
bcbb3112 1372 goto abort;
3da92f27
NB
1373 }
1374
38aeaf3a 1375 for (dv = devlist; dv; dv = dv->next) {
5dffd09d 1376 unsigned long rdev = 0; /* device to add/remove etc */
38aeaf3a 1377 int rv;
b47024f1 1378 int mj,mn;
4a39c6f2 1379
4de90913
GJ
1380 raid_slot = -1;
1381 if (dv->disposition == 'c') {
1382 rv = parse_cluster_confirm_arg(dv->devname,
1383 &dv->devname,
1384 &raid_slot);
d7a49369 1385 if (rv) {
4de90913
GJ
1386 pr_err("Could not get the devname of cluster\n");
1387 goto abort;
1388 }
1389 }
1390
1d997643
N
1391 if (strcmp(dv->devname, "failed") == 0 ||
1392 strcmp(dv->devname, "faulty") == 0) {
fc54fe7a 1393 if (dv->disposition != 'A' && dv->disposition != 'r') {
7a862a02 1394 pr_err("%s only meaningful with -r or --re-add, not -%c\n",
b80da661 1395 dv->devname, dv->disposition);
bcbb3112 1396 goto abort;
b80da661 1397 }
262e3b7f
N
1398 add_faulty(dv, fd, (dv->disposition == 'A'
1399 ? 'F' : 'r'));
1d997643
N
1400 continue;
1401 }
1402 if (strcmp(dv->devname, "detached") == 0) {
b80da661 1403 if (dv->disposition != 'r' && dv->disposition != 'f') {
7a862a02 1404 pr_err("%s only meaningful with -r of -f, not -%c\n",
b80da661 1405 dv->devname, dv->disposition);
bcbb3112 1406 goto abort;
b80da661 1407 }
1d997643
N
1408 add_detached(dv, fd, dv->disposition);
1409 continue;
1410 }
1411
1412 if (strcmp(dv->devname, "missing") == 0) {
e9ddbb2b 1413 struct mddev_dev *add_devlist;
1d997643 1414 struct mddev_dev **dp;
4de90913
GJ
1415 if (dv->disposition == 'c') {
1416 rv = ioctl(fd, CLUSTERED_DISK_NACK, NULL);
1417 break;
1418 }
1419
c8e1a230 1420 if (dv->disposition != 'A') {
7a862a02 1421 pr_err("'missing' only meaningful with --re-add\n");
bcbb3112 1422 goto abort;
a4e13010 1423 }
1d997643 1424 add_devlist = conf_get_devs();
a4e13010 1425 if (add_devlist == NULL) {
e7b84f9d 1426 pr_err("no devices to scan for missing members.");
a4e13010
N
1427 continue;
1428 }
1d997643 1429 for (dp = &add_devlist; *dp; dp = & (*dp)->next)
7bd04da9 1430 /* 'M' (for 'missing') is like 'A' without errors */
1d997643
N
1431 (*dp)->disposition = 'M';
1432 *dp = dv->next;
1433 dv->next = add_devlist;
1434 continue;
1435 }
1436
64a78416
N
1437 if (strncmp(dv->devname, "set-", 4) == 0 &&
1438 strlen(dv->devname) == 5) {
1439 int copies;
1440
1441 if (dv->disposition != 'r' &&
1442 dv->disposition != 'f') {
1443 pr_err("'%s' only meaningful with -r or -f\n",
1444 dv->devname);
1445 goto abort;
1446 }
1447 if (array.level != 10) {
1448 pr_err("'%s' only meaningful with RAID10 arrays\n",
1449 dv->devname);
1450 goto abort;
1451 }
1452 copies = ((array.layout & 0xff) *
1453 ((array.layout >> 8) & 0xff));
1454 if (array.raid_disks % copies != 0 ||
1455 dv->devname[4] < 'A' ||
1456 dv->devname[4] >= 'A' + copies ||
1457 copies > 26) {
1458 pr_err("'%s' not meaningful with this array\n",
1459 dv->devname);
1460 goto abort;
1461 }
1462 add_set(dv, fd, dv->devname[4]);
1463 continue;
1464 }
1465
1d997643 1466 if (strchr(dv->devname, '/') == NULL &&
aab15415
N
1467 strchr(dv->devname, ':') == NULL &&
1468 strlen(dv->devname) < 50) {
98d27e39
N
1469 /* Assume this is a kernel-internal name like 'sda1' */
1470 int found = 0;
1471 char dname[55];
1472 if (dv->disposition != 'r' && dv->disposition != 'f') {
7a862a02 1473 pr_err("%s only meaningful with -r or -f, not -%c\n",
98d27e39 1474 dv->devname, dv->disposition);
bcbb3112 1475 goto abort;
98d27e39
N
1476 }
1477
1478 sprintf(dname, "dev-%s", dv->devname);
4dd2df09 1479 sysfd = sysfs_open(fd2devnm(fd), dname, "block/dev");
98d27e39
N
1480 if (sysfd >= 0) {
1481 char dn[20];
98d27e39
N
1482 if (sysfs_fd_get_str(sysfd, dn, 20) > 0 &&
1483 sscanf(dn, "%d:%d", &mj,&mn) == 2) {
5dffd09d 1484 rdev = makedev(mj,mn);
98d27e39
N
1485 found = 1;
1486 }
1487 close(sysfd);
1488 sysfd = -1;
1489 }
1490 if (!found) {
4dd2df09 1491 sysfd = sysfs_open(fd2devnm(fd), dname, "state");
98d27e39 1492 if (sysfd < 0) {
7a862a02 1493 pr_err("%s does not appear to be a component of %s\n",
98d27e39 1494 dv->devname, devname);
bcbb3112 1495 goto abort;
98d27e39
N
1496 }
1497 }
fc54fe7a
JS
1498 } else if ((dv->disposition == 'r' ||
1499 dv->disposition == 'f') &&
1500 get_maj_min(dv->devname, &mj, &mn)) {
b47024f1
N
1501 /* for 'fail' and 'remove', the device might
1502 * not exist.
1503 */
1504 rdev = makedev(mj, mn);
b80da661 1505 } else {
c7b47447 1506 tfd = dev_open(dv->devname, O_RDONLY);
cc5083d1 1507 if (tfd >= 0) {
0a6bff09 1508 fstat_is_blkdev(tfd, dv->devname, &rdev);
cc5083d1
JS
1509 close(tfd);
1510 } else {
5fe7f5f7 1511 int open_err = errno;
9e04ac1c 1512 if (!stat_is_blkdev(dv->devname, &rdev)) {
5fe7f5f7
N
1513 if (dv->disposition == 'M')
1514 /* non-fatal. Also improbable */
1515 continue;
5fe7f5f7
N
1516 goto abort;
1517 }
1518 if (dv->disposition == 'r')
1519 /* Be happy, the stat worked, that is
1520 * enough for --remove
1521 */
1522 ;
1523 else {
1d997643
N
1524 if (dv->disposition == 'M')
1525 /* non-fatal */
1526 continue;
839f27a3 1527 pr_err("Cannot open %s: %s\n",
5fe7f5f7 1528 dv->devname, strerror(open_err));
bcbb3112 1529 goto abort;
5a9de8db 1530 }
b80da661 1531 }
682c7051 1532 }
cd29a5c8 1533 switch(dv->disposition){
682c7051 1534 default:
e7b84f9d 1535 pr_err("internal error - devmode[%s]=%d\n",
c913b90e 1536 dv->devname, dv->disposition);
bcbb3112 1537 goto abort;
682c7051 1538 case 'a':
f33a71f1 1539 case 'S': /* --add-spare */
01290056 1540 case 'j': /* --add-journal */
c8e1a230 1541 case 'A':
262e3b7f
N
1542 case 'M': /* --re-add missing */
1543 case 'F': /* --re-add faulty */
4de90913 1544 case 'c': /* --cluster-confirm */
4a39c6f2 1545 /* add the device */
4725bc31 1546 if (subarray) {
7a862a02 1547 pr_err("Cannot add disks to a \'member\' array, perform this operation on the parent container\n");
bcbb3112 1548 goto abort;
f94d52f4 1549 }
9465f170
GJ
1550
1551 /* Let's first try to write re-add to sysfs */
1552 if (rdev != 0 &&
1553 (dv->disposition == 'A' || dv->disposition == 'F')) {
1554 sysfs_init_dev(&devinfo, rdev);
1555 if (sysfs_set_str(&info, &devinfo, "state", "re-add") == 0) {
1556 pr_err("re-add %s to %s succeed\n",
1557 dv->devname, info.sys_name);
1558 break;
1559 }
1560 }
1561
262e3b7f
N
1562 if (dv->disposition == 'F')
1563 /* Need to remove first */
1ab9ed2a 1564 hot_remove_disk(fd, rdev, force);
f277ce36 1565 /* Make sure it isn't in use (in 2.6 or later) */
1d997643 1566 tfd = dev_open(dv->devname, O_RDONLY|O_EXCL);
38aeaf3a
N
1567 if (tfd >= 0) {
1568 /* We know no-one else is using it. We'll
1569 * need non-exclusive access to add it, so
1570 * do that now.
1571 */
1572 close(tfd);
1573 tfd = dev_open(dv->devname, O_RDONLY);
1011e834 1574 }
0fbf459d 1575 if (tfd < 0) {
1d997643
N
1576 if (dv->disposition == 'M')
1577 continue;
e7b84f9d 1578 pr_err("Cannot open %s: %s\n",
d7eaf49f 1579 dv->devname, strerror(errno));
bcbb3112 1580 goto abort;
d7eaf49f 1581 }
9f584691
N
1582 if (!frozen) {
1583 if (sysfs_freeze_array(&info) == 1)
1584 frozen = 1;
1585 else
1586 frozen = -1;
1587 }
38aeaf3a
N
1588 rv = Manage_add(fd, tfd, dv, tst, &array,
1589 force, verbose, devname, update,
4de90913 1590 rdev, array_size, raid_slot);
38aeaf3a
N
1591 close(tfd);
1592 tfd = -1;
1593 if (rv < 0)
bcbb3112 1594 goto abort;
38aeaf3a
N
1595 if (rv > 0)
1596 count++;
682c7051
NB
1597 break;
1598
1599 case 'r':
1600 /* hot remove */
4725bc31 1601 if (subarray) {
7a862a02 1602 pr_err("Cannot remove disks from a \'member\' array, perform this operation on the parent container\n");
d070235d
N
1603 rv = -1;
1604 } else
1605 rv = Manage_remove(tst, fd, dv, sysfd,
1ab9ed2a 1606 rdev, verbose, force,
d070235d
N
1607 devname);
1608 if (sysfd >= 0)
98d27e39 1609 close(sysfd);
d070235d
N
1610 sysfd = -1;
1611 if (rv < 0)
bcbb3112 1612 goto abort;
d070235d
N
1613 if (rv > 0)
1614 count++;
682c7051
NB
1615 break;
1616
1617 case 'f': /* set faulty */
1618 /* FIXME check current member */
98d27e39
N
1619 if ((sysfd >= 0 && write(sysfd, "faulty", 6) != 6) ||
1620 (sysfd < 0 && ioctl(fd, SET_DISK_FAULTY,
5dffd09d 1621 rdev))) {
8af530b0
N
1622 if (errno == EBUSY)
1623 busy = 1;
e7b84f9d 1624 pr_err("set device faulty failed for %s: %s\n",
1d997643 1625 dv->devname, strerror(errno));
98d27e39
N
1626 if (sysfd >= 0)
1627 close(sysfd);
bcbb3112 1628 goto abort;
682c7051 1629 }
98d27e39
N
1630 if (sysfd >= 0)
1631 close(sysfd);
1632 sysfd = -1;
7d2e6486 1633 count++;
dab6685f 1634 if (verbose >= 0)
e7b84f9d 1635 pr_err("set %s faulty in %s\n",
1d997643 1636 dv->devname, devname);
682c7051 1637 break;
70c55e36
N
1638 case 'R': /* Mark as replaceable */
1639 if (subarray) {
7a862a02 1640 pr_err("Cannot replace disks in a \'member\' array, perform this operation on the parent container\n");
70c55e36
N
1641 rv = -1;
1642 } else {
1643 if (!frozen) {
1644 if (sysfs_freeze_array(&info) == 1)
1645 frozen = 1;
1646 else
1647 frozen = -1;
1648 }
1649 rv = Manage_replace(tst, fd, dv,
5dffd09d 1650 rdev, verbose,
70c55e36
N
1651 devname);
1652 }
1653 if (rv < 0)
1654 goto abort;
1655 if (rv > 0)
1656 count++;
1657 break;
1658 case 'W': /* --with device that doesn't match */
1659 pr_err("No matching --replace device for --with %s\n",
1660 dv->devname);
1661 goto abort;
1662 case 'w': /* --with device which was matched */
1663 rv = Manage_with(tst, fd, dv,
5dffd09d 1664 rdev, verbose, devname);
70c55e36
N
1665 if (rv < 0)
1666 goto abort;
1667 break;
682c7051
NB
1668 }
1669 }
9f584691
N
1670 if (frozen > 0)
1671 sysfs_set_str(&info, NULL, "sync_action","idle");
7d2e6486
N
1672 if (test && count == 0)
1673 return 2;
682c7051 1674 return 0;
bcbb3112
N
1675
1676abort:
9f584691
N
1677 if (frozen > 0)
1678 sysfs_set_str(&info, NULL, "sync_action","idle");
8af530b0 1679 return !test && busy ? 2 : 1;
64c4757e 1680}
1f48664b
NB
1681
1682int autodetect(void)
1683{
1684 /* Open any md device, and issue the RAID_AUTORUN ioctl */
1685 int rv = 1;
1686 int fd = dev_open("9:0", O_RDONLY);
1687 if (fd >= 0) {
1688 if (ioctl(fd, RAID_AUTORUN, 0) == 0)
1689 rv = 0;
1690 close(fd);
1691 }
1692 return rv;
1693}
aa534678 1694
ba728be7 1695int Update_subarray(char *dev, char *subarray, char *update, struct mddev_ident *ident, int verbose)
aa534678
DW
1696{
1697 struct supertype supertype, *st = &supertype;
1698 int fd, rv = 2;
1699
1700 memset(st, 0, sizeof(*st));
aa534678 1701
ba728be7 1702 fd = open_subarray(dev, subarray, st, verbose < 0);
aa534678
DW
1703 if (fd < 0)
1704 return 2;
1705
1706 if (!st->ss->update_subarray) {
ba728be7 1707 if (verbose >= 0)
e7b84f9d
N
1708 pr_err("Operation not supported for %s metadata\n",
1709 st->ss->name);
aa534678
DW
1710 goto free_super;
1711 }
1712
4dd2df09 1713 if (mdmon_running(st->devnm))
aa534678
DW
1714 st->update_tail = &st->updates;
1715
a951a4f7 1716 rv = st->ss->update_subarray(st, subarray, update, ident);
aa534678
DW
1717
1718 if (rv) {
ba728be7 1719 if (verbose >= 0)
e7b84f9d 1720 pr_err("Failed to update %s of subarray-%s in %s\n",
aa534678
DW
1721 update, subarray, dev);
1722 } else if (st->update_tail)
1723 flush_metadata_updates(st);
1724 else
1725 st->ss->sync_metadata(st);
1726
ba728be7 1727 if (rv == 0 && strcmp(update, "name") == 0 && verbose >= 0)
e7b84f9d
N
1728 pr_err("Updated subarray-%s name from %s, UUIDs may have changed\n",
1729 subarray, dev);
aa534678
DW
1730
1731 free_super:
1732 st->ss->free_super(st);
1733 close(fd);
1734
1735 return rv;
1736}
d52bb542 1737
7bd04da9
N
1738/* Move spare from one array to another If adding to destination array fails
1739 * add back to original array.
d52bb542
AC
1740 * Returns 1 on success, 0 on failure */
1741int move_spare(char *from_devname, char *to_devname, dev_t devid)
1742{
1743 struct mddev_dev devlist;
1744 char devname[20];
1745
1746 /* try to remove and add */
1747 int fd1 = open(to_devname, O_RDONLY);
1748 int fd2 = open(from_devname, O_RDONLY);
1749
1750 if (fd1 < 0 || fd2 < 0) {
1751 if (fd1>=0) close(fd1);
1752 if (fd2>=0) close(fd2);
1753 return 0;
1754 }
1755
1756 devlist.next = NULL;
1757 devlist.used = 0;
e22fe3ae
N
1758 devlist.writemostly = FlagDefault;
1759 devlist.failfast = FlagDefault;
d52bb542
AC
1760 devlist.devname = devname;
1761 sprintf(devname, "%d:%d", major(devid), minor(devid));
1762
1763 devlist.disposition = 'r';
11b391ec 1764 if (Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0) == 0) {
d52bb542 1765 devlist.disposition = 'a';
11b391ec 1766 if (Manage_subdevs(to_devname, fd1, &devlist, -1, 0, NULL, 0) == 0) {
d52bb542
AC
1767 /* make sure manager is aware of changes */
1768 ping_manager(to_devname);
1769 ping_manager(from_devname);
1770 close(fd1);
1771 close(fd2);
1772 return 1;
1773 }
11b391ec 1774 else Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0);
d52bb542
AC
1775 }
1776 close(fd1);
1777 close(fd2);
1778 return 0;
1779}