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