]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Manage.c
recreate journal in mdadm
[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;
bff96f73
GJ
672 if (array->state & (1 << MD_SB_CLUSTERED)) {
673 /* extra flags are needed when adding to a cluster as
674 * there are two cases to distinguish
675 */
676 if (dv->disposition == 'c')
677 disc.state |= (1 << MD_DISK_CANDIDATE);
678 else
679 disc.state |= (1 << MD_DISK_CLUSTER_ADD);
680 }
abe94694
N
681 if (dv->writemostly == 1)
682 disc.state |= 1 << MD_DISK_WRITEMOSTLY;
683 if (dv->writemostly == 2)
684 disc.state &= ~(1 << MD_DISK_WRITEMOSTLY);
685 remove_partitions(tfd);
686 if (update || dv->writemostly > 0) {
687 int rv = -1;
688 tfd = dev_open(dv->devname, O_RDWR);
689 if (tfd < 0) {
7a862a02 690 pr_err("failed to open %s for superblock update during re-add\n", dv->devname);
abe94694
N
691 return -1;
692 }
693
694 if (dv->writemostly == 1)
695 rv = dev_st->ss->update_super(
696 dev_st, NULL, "writemostly",
697 devname, verbose, 0, NULL);
698 if (dv->writemostly == 2)
699 rv = dev_st->ss->update_super(
700 dev_st, NULL, "readwrite",
701 devname, verbose, 0, NULL);
702 if (update)
703 rv = dev_st->ss->update_super(
704 dev_st, NULL, update,
705 devname, verbose, 0, NULL);
706 if (rv == 0)
707 rv = dev_st->ss->store_super(dev_st, tfd);
708 close(tfd);
709 if (rv != 0) {
7a862a02 710 pr_err("failed to update superblock during re-add\n");
abe94694
N
711 return -1;
712 }
713 }
714 /* don't even try if disk is marked as faulty */
715 errno = 0;
716 if (ioctl(fd, ADD_NEW_DISK, &disc) == 0) {
717 if (verbose >= 0)
718 pr_err("re-added %s\n", dv->devname);
719 return 1;
720 }
721 if (errno == ENOMEM || errno == EROFS) {
722 pr_err("add new device failed for %s: %s\n",
723 dv->devname, strerror(errno));
724 if (dv->disposition == 'M')
725 return 0;
726 return -1;
727 }
728 }
729skip_re_add:
730 return 0;
731}
732
38aeaf3a
N
733int Manage_add(int fd, int tfd, struct mddev_dev *dv,
734 struct supertype *tst, mdu_array_info_t *array,
735 int force, int verbose, char *devname,
4de90913
GJ
736 char *update, unsigned long rdev, unsigned long long array_size,
737 int raid_slot)
38aeaf3a
N
738{
739 unsigned long long ldsize;
6d43efb5 740 struct supertype *dev_st = NULL;
38aeaf3a
N
741 int j;
742 mdu_disk_info_t disc;
743
744 if (!get_dev_size(tfd, dv->devname, &ldsize)) {
745 if (dv->disposition == 'M')
746 return 0;
747 else
748 return -1;
749 }
750
632dc30c 751 if (tst->ss == &super0 && ldsize > 4ULL*1024*1024*1024*1024) {
7ccc4cc4 752 /* More than 4TB is wasted on v0.90 */
38aeaf3a 753 if (!force) {
7a862a02
N
754 pr_err("%s is larger than %s can effectively use.\n"
755 " Add --force is you really want to add this device.\n",
38aeaf3a
N
756 dv->devname, devname);
757 return -1;
758 }
7a862a02
N
759 pr_err("%s is larger than %s can effectively use.\n"
760 " Adding anyway as --force was given.\n",
38aeaf3a
N
761 dv->devname, devname);
762 }
763 if (!tst->ss->external &&
764 array->major_version == 0 &&
765 md_get_version(fd)%100 < 2) {
766 if (ioctl(fd, HOT_ADD_DISK, rdev)==0) {
767 if (verbose >= 0)
768 pr_err("hot added %s\n",
769 dv->devname);
770 return 1;
771 }
772
773 pr_err("hot add failed for %s: %s\n",
774 dv->devname, strerror(errno));
775 return -1;
776 }
777
778 if (array->not_persistent == 0 || tst->ss->external) {
779
780 /* need to find a sample superblock to copy, and
781 * a spare slot to use.
782 * For 'external' array (well, container based),
783 * We can just load the metadata for the array->
784 */
785 int array_failed;
786 if (tst->sb)
787 /* already loaded */;
788 else if (tst->ss->external) {
789 tst->ss->load_container(tst, fd, NULL);
790 } else for (j = 0; j < tst->max_devs; j++) {
791 char *dev;
792 int dfd;
793 disc.number = j;
794 if (ioctl(fd, GET_DISK_INFO, &disc))
795 continue;
796 if (disc.major==0 && disc.minor==0)
797 continue;
798 if ((disc.state & 4)==0) /* sync */
799 continue;
800 /* Looks like a good device to try */
801 dev = map_dev(disc.major, disc.minor, 1);
802 if (!dev)
803 continue;
804 dfd = dev_open(dev, O_RDONLY);
805 if (dfd < 0)
806 continue;
807 if (tst->ss->load_super(tst, dfd,
808 NULL)) {
809 close(dfd);
810 continue;
811 }
812 close(dfd);
813 break;
814 }
815 /* FIXME this is a bad test to be using */
f33a71f1
N
816 if (!tst->sb && (dv->disposition != 'a'
817 && dv->disposition != 'S')) {
38aeaf3a
N
818 /* we are re-adding a device to a
819 * completely dead array - have to depend
820 * on kernel to check
821 */
822 } else if (!tst->sb) {
823 pr_err("cannot load array metadata from %s\n", devname);
824 return -1;
825 }
826
827 /* Make sure device is large enough */
01290056
SL
828 if (dv->disposition != 'j' && /* skip size check for Journal */
829 tst->sb &&
2609f339 830 tst->ss->avail_size(tst, ldsize/512, INVALID_SECTORS) <
38aeaf3a
N
831 array_size) {
832 if (dv->disposition == 'M')
833 return 0;
834 pr_err("%s not large enough to join array\n",
835 dv->devname);
836 return -1;
837 }
838
839 /* Possibly this device was recently part of
840 * the array and was temporarily removed, and
841 * is now being re-added. If so, we can
842 * simply re-add it.
843 */
844
845 if (array->not_persistent==0) {
846 dev_st = dup_super(tst);
847 dev_st->ss->load_super(dev_st, tfd, NULL);
848 }
f33a71f1 849 if (dev_st && dev_st->sb && dv->disposition != 'S') {
38aeaf3a
N
850 int rv = attempt_re_add(fd, tfd, dv,
851 dev_st, tst,
852 rdev,
853 update, devname,
854 verbose,
855 array);
856 dev_st->ss->free_super(dev_st);
857 if (rv)
858 return rv;
859 }
860 if (dv->disposition == 'M') {
861 if (verbose > 0)
862 pr_err("--re-add for %s to %s is not possible\n",
863 dv->devname, devname);
864 return 0;
865 }
866 if (dv->disposition == 'A') {
867 pr_err("--re-add for %s to %s is not possible\n",
868 dv->devname, devname);
869 return -1;
870 }
871 if (array->active_disks < array->raid_disks) {
872 char *avail = xcalloc(array->raid_disks, 1);
873 int d;
874 int found = 0;
875
d180d2aa 876 for (d = 0; d < MAX_DISKS && found < array->nr_disks; d++) {
38aeaf3a
N
877 disc.number = d;
878 if (ioctl(fd, GET_DISK_INFO, &disc))
879 continue;
880 if (disc.major == 0 && disc.minor == 0)
881 continue;
5dd29daf 882 found++;
38aeaf3a
N
883 if (!(disc.state & (1<<MD_DISK_SYNC)))
884 continue;
885 avail[disc.raid_disk] = 1;
38aeaf3a
N
886 }
887 array_failed = !enough(array->level, array->raid_disks,
888 array->layout, 1, avail);
6157951f 889 free(avail);
38aeaf3a
N
890 } else
891 array_failed = 0;
892 if (array_failed) {
893 pr_err("%s has failed so using --add cannot work and might destroy\n",
894 devname);
895 pr_err("data on %s. You should stop the array and re-assemble it.\n",
896 dv->devname);
897 return -1;
898 }
899 } else {
900 /* non-persistent. Must ensure that new drive
901 * is at least array->size big.
902 */
903 if (ldsize/512 < array_size) {
904 pr_err("%s not large enough to join array\n",
905 dv->devname);
906 return -1;
907 }
908 }
909 /* committed to really trying this device now*/
910 remove_partitions(tfd);
911
912 /* in 2.6.17 and earlier, version-1 superblocks won't
913 * use the number we write, but will choose a free number.
914 * we must choose the same free number, which requires
915 * starting at 'raid_disks' and counting up
916 */
917 for (j = array->raid_disks; j < tst->max_devs; j++) {
918 disc.number = j;
919 if (ioctl(fd, GET_DISK_INFO, &disc))
920 break;
921 if (disc.major==0 && disc.minor==0)
922 break;
923 if (disc.state & 8) /* removed */
924 break;
925 }
926 disc.major = major(rdev);
927 disc.minor = minor(rdev);
4de90913
GJ
928 if (raid_slot < 0)
929 disc.number = j;
930 else
931 disc.number = raid_slot;
38aeaf3a 932 disc.state = 0;
01290056
SL
933
934 /* only add journal to array that supports journaling */
935 if (dv->disposition == 'j') {
936 struct mdinfo mdi;
937 struct mdinfo *mdp;
938
939 mdp = sysfs_read(fd, NULL, GET_ARRAY_STATE);
940
941 if (strncmp(mdp->sysfs_array_state, "readonly", 8) != 0) {
942 pr_err("%s is not readonly, cannot add journal.\n", devname);
943 return -1;
944 }
945
946 tst->ss->getinfo_super(tst, &mdi, NULL);
947 if (mdi.journal_device_required == 0) {
948 pr_err("%s does not support journal device.\n", devname);
949 return -1;
950 }
951 disc.raid_disk = array->raid_disks;
952 }
953
38aeaf3a
N
954 if (array->not_persistent==0) {
955 int dfd;
01290056
SL
956 if (dv->disposition == 'j')
957 disc.state |= (1 << MD_DISK_JOURNAL) | (1 << MD_DISK_SYNC);
38aeaf3a
N
958 if (dv->writemostly == 1)
959 disc.state |= 1 << MD_DISK_WRITEMOSTLY;
960 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
961 if (tst->ss->add_to_super(tst, &disc, dfd,
72ca9bcf 962 dv->devname, INVALID_SECTORS))
38aeaf3a
N
963 return -1;
964 if (tst->ss->write_init_super(tst))
965 return -1;
966 } else if (dv->disposition == 'A') {
967 /* this had better be raid1.
968 * As we are "--re-add"ing we must find a spare slot
969 * to fill.
970 */
971 char *used = xcalloc(array->raid_disks, 1);
972 for (j = 0; j < tst->max_devs; j++) {
973 mdu_disk_info_t disc2;
974 disc2.number = j;
975 if (ioctl(fd, GET_DISK_INFO, &disc2))
976 continue;
977 if (disc2.major==0 && disc2.minor==0)
978 continue;
979 if (disc2.state & 8) /* removed */
980 continue;
981 if (disc2.raid_disk < 0)
982 continue;
983 if (disc2.raid_disk > array->raid_disks)
984 continue;
985 used[disc2.raid_disk] = 1;
986 }
987 for (j = 0 ; j < array->raid_disks; j++)
988 if (!used[j]) {
989 disc.raid_disk = j;
990 disc.state |= (1<<MD_DISK_SYNC);
991 break;
992 }
993 free(used);
994 }
4de90913
GJ
995
996 if (array->state & (1 << MD_SB_CLUSTERED)) {
997 if (dv->disposition == 'c')
998 disc.state |= (1 << MD_DISK_CANDIDATE);
999 else
1000 disc.state |= (1 << MD_DISK_CLUSTER_ADD);
1001 }
1002
38aeaf3a
N
1003 if (dv->writemostly == 1)
1004 disc.state |= (1 << MD_DISK_WRITEMOSTLY);
1005 if (tst->ss->external) {
1006 /* add a disk
1007 * to an external metadata container */
1008 struct mdinfo new_mdi;
1009 struct mdinfo *sra;
1010 int container_fd;
4dd2df09 1011 char devnm[32];
38aeaf3a
N
1012 int dfd;
1013
4dd2df09
N
1014 strcpy(devnm, fd2devnm(fd));
1015
1016 container_fd = open_dev_excl(devnm);
38aeaf3a 1017 if (container_fd < 0) {
7a862a02 1018 pr_err("add failed for %s: could not get exclusive access to container\n",
38aeaf3a
N
1019 dv->devname);
1020 tst->ss->free_super(tst);
1021 return -1;
1022 }
1023
9cf9a1de 1024 Kill(dv->devname, NULL, 0, -1, 0);
38aeaf3a 1025 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
4dd2df09 1026 if (mdmon_running(tst->container_devnm))
38aeaf3a
N
1027 tst->update_tail = &tst->updates;
1028 if (tst->ss->add_to_super(tst, &disc, dfd,
72ca9bcf 1029 dv->devname, INVALID_SECTORS)) {
38aeaf3a
N
1030 close(dfd);
1031 close(container_fd);
1032 return -1;
1033 }
1034 if (tst->update_tail)
1035 flush_metadata_updates(tst);
1036 else
1037 tst->ss->sync_metadata(tst);
1038
4dd2df09 1039 sra = sysfs_read(container_fd, NULL, 0);
38aeaf3a
N
1040 if (!sra) {
1041 pr_err("add failed for %s: sysfs_read failed\n",
1042 dv->devname);
1043 close(container_fd);
1044 tst->ss->free_super(tst);
1045 return -1;
1046 }
1047 sra->array.level = LEVEL_CONTAINER;
1048 /* Need to set data_offset and component_size */
1049 tst->ss->getinfo_super(tst, &new_mdi, NULL);
1050 new_mdi.disk.major = disc.major;
1051 new_mdi.disk.minor = disc.minor;
1052 new_mdi.recovery_start = 0;
1053 /* Make sure fds are closed as they are O_EXCL which
1054 * would block add_disk */
1055 tst->ss->free_super(tst);
1056 if (sysfs_add_disk(sra, &new_mdi, 0) != 0) {
7a862a02 1057 pr_err("add new device to external metadata failed for %s\n", dv->devname);
38aeaf3a
N
1058 close(container_fd);
1059 sysfs_free(sra);
1060 return -1;
1061 }
4dd2df09 1062 ping_monitor(devnm);
38aeaf3a
N
1063 sysfs_free(sra);
1064 close(container_fd);
1065 } else {
1066 tst->ss->free_super(tst);
1067 if (ioctl(fd, ADD_NEW_DISK, &disc)) {
01290056
SL
1068 if (dv->disposition == 'j')
1069 pr_err("Failed to hot add %s as journal, "
1070 "please try restart %s.\n", dv->devname, devname);
1071 else
1072 pr_err("add new device failed for %s as %d: %s\n",
1073 dv->devname, j, strerror(errno));
38aeaf3a
N
1074 return -1;
1075 }
01290056
SL
1076 if (dv->disposition == 'j') {
1077 pr_err("Journal added successfully, making %s read-write\n", devname);
1078 if (Manage_ro(devname, fd, -1))
1079 pr_err("Failed to make %s read-write\n", devname);
1080 }
1081
38aeaf3a
N
1082 }
1083 if (verbose >= 0)
1084 pr_err("added %s\n", dv->devname);
1085 return 1;
1086}
1087
d070235d
N
1088int Manage_remove(struct supertype *tst, int fd, struct mddev_dev *dv,
1089 int sysfd, unsigned long rdev, int verbose, char *devname)
1090{
1091 int lfd = -1;
1092 int err;
1093
1094 if (tst->ss->external) {
1095 /* To remove a device from a container, we must
1096 * check that it isn't in use in an array.
1097 * This involves looking in the 'holders'
1098 * directory - there must be just one entry,
1099 * the container.
1100 * To ensure that it doesn't get used as a
1101 * hot spare while we are checking, we
1102 * get an O_EXCL open on the container
1103 */
aab15415 1104 int ret;
4dd2df09
N
1105 char devnm[32];
1106 strcpy(devnm, fd2devnm(fd));
1107 lfd = open_dev_excl(devnm);
d070235d 1108 if (lfd < 0) {
7a862a02 1109 pr_err("Cannot get exclusive access to container - odd\n");
d070235d
N
1110 return -1;
1111 }
aab15415
N
1112 /* We may not be able to check on holders in
1113 * sysfs, either because we don't have the dev num
1114 * (rdev == 0) or because the device has been detached
1115 * and the 'holders' directory no longer exists
1116 * (ret == -1). In that case, assume it is OK to
1117 * remove.
d070235d 1118 */
aab15415
N
1119 if (rdev == 0)
1120 ret = -1;
1121 else
4dd2df09 1122 ret = sysfs_unique_holder(devnm, rdev);
aab15415
N
1123 if (ret == 0) {
1124 pr_err("%s is not a member, cannot remove.\n",
1125 dv->devname);
1126 close(lfd);
1127 return -1;
1128 }
1129 if (ret >= 2) {
1130 pr_err("%s is still in use, cannot remove.\n",
1131 dv->devname);
d070235d
N
1132 close(lfd);
1133 return -1;
1134 }
1135 }
1136 /* FIXME check that it is a current member */
1137 if (sysfd >= 0) {
1138 /* device has been removed and we don't know
1139 * the major:minor number
1140 */
1141 int n = write(sysfd, "remove", 6);
1142 if (n != 6)
1143 err = -1;
1144 else
1145 err = 0;
1146 } else {
1147 err = ioctl(fd, HOT_REMOVE_DISK, rdev);
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;
1164 if (sra)
1165 sysfs_free(sra);
1166 }
1167 }
1168 if (err) {
7a862a02 1169 pr_err("hot remove failed for %s: %s\n", dv->devname,
d070235d
N
1170 strerror(errno));
1171 if (lfd >= 0)
1172 close(lfd);
1173 return -1;
1174 }
1175 if (tst->ss->external) {
1176 /*
1177 * Before dropping our exclusive open we make an
1178 * attempt at preventing mdmon from seeing an
1179 * 'add' event before reconciling this 'remove'
1180 * event.
1181 */
4dd2df09 1182 char *devnm = fd2devnm(fd);
d070235d 1183
4dd2df09 1184 if (!devnm) {
d070235d
N
1185 pr_err("unable to get container name\n");
1186 return -1;
1187 }
1188
4dd2df09 1189 ping_manager(devnm);
d070235d
N
1190 }
1191 if (lfd >= 0)
1192 close(lfd);
1193 if (verbose >= 0)
1194 pr_err("hot removed %s from %s\n",
1195 dv->devname, devname);
1196 return 1;
1197}
1198
70c55e36
N
1199int Manage_replace(struct supertype *tst, int fd, struct mddev_dev *dv,
1200 unsigned long rdev, int verbose, char *devname)
1201{
1202 struct mdinfo *mdi, *di;
1203 if (tst->ss->external) {
1204 pr_err("--replace only supported for native metadata (0.90 or 1.x)\n");
1205 return -1;
1206 }
1207 /* Need to find the device in sysfs and add 'want_replacement' to the
1208 * status.
1209 */
4dd2df09 1210 mdi = sysfs_read(fd, NULL, GET_DEVS);
70c55e36
N
1211 if (!mdi || !mdi->devs) {
1212 pr_err("Cannot find status of %s to enable replacement - strange\n",
1213 devname);
1214 return -1;
1215 }
1216 for (di = mdi->devs; di; di = di->next)
1217 if (di->disk.major == (int)major(rdev) &&
1218 di->disk.minor == (int)minor(rdev))
1219 break;
1220 if (di) {
1221 int rv;
1222 if (di->disk.raid_disk < 0) {
1223 pr_err("%s is not active and so cannot be replaced.\n",
1224 dv->devname);
1225 sysfs_free(mdi);
1226 return -1;
1227 }
1228 rv = sysfs_set_str(mdi, di,
1229 "state", "want_replacement");
1230 if (rv) {
1231 sysfs_free(mdi);
1232 pr_err("Failed to request replacement for %s\n",
1233 dv->devname);
1234 return -1;
1235 }
1236 if (verbose >= 0)
1237 pr_err("Marked %s (device %d in %s) for replacement\n",
1238 dv->devname, di->disk.raid_disk, devname);
1239 /* If there is a matching 'with', we need to tell it which
1240 * raid disk
1241 */
1242 while (dv && dv->disposition != 'W')
1243 dv = dv->next;
1244 if (dv) {
1245 dv->disposition = 'w';
1246 dv->used = di->disk.raid_disk;
1247 }
1248 return 1;
1249 }
1250 sysfs_free(mdi);
1251 pr_err("%s not found in %s so cannot --replace it\n",
1252 dv->devname, devname);
1253 return -1;
1254}
1255
1256int Manage_with(struct supertype *tst, int fd, struct mddev_dev *dv,
1257 unsigned long rdev, int verbose, char *devname)
1258{
1259 struct mdinfo *mdi, *di;
1260 /* try to set 'slot' for 'rdev' in 'fd' to 'dv->used' */
4dd2df09 1261 mdi = sysfs_read(fd, NULL, GET_DEVS|GET_STATE);
70c55e36
N
1262 if (!mdi || !mdi->devs) {
1263 pr_err("Cannot find status of %s to enable replacement - strange\n",
1264 devname);
1265 return -1;
1266 }
1267 for (di = mdi->devs; di; di = di->next)
1268 if (di->disk.major == (int)major(rdev) &&
1269 di->disk.minor == (int)minor(rdev))
1270 break;
1271 if (di) {
1272 int rv;
1273 if (di->disk.state & (1<<MD_DISK_FAULTY)) {
1274 pr_err("%s is faulty and cannot be a replacement\n",
1275 dv->devname);
1276 sysfs_free(mdi);
1277 return -1;
1278 }
1279 if (di->disk.raid_disk >= 0) {
1280 pr_err("%s is active and cannot be a replacement\n",
1281 dv->devname);
1282 sysfs_free(mdi);
1283 return -1;
1284 }
1285 rv = sysfs_set_num(mdi, di,
1286 "slot", dv->used);
1287 if (rv) {
1288 sysfs_free(mdi);
51425978 1289 pr_err("Failed to set %s as preferred replacement.\n",
70c55e36
N
1290 dv->devname);
1291 return -1;
1292 }
1293 if (verbose >= 0)
1294 pr_err("Marked %s in %s as replacement for device %d\n",
1295 dv->devname, devname, dv->used);
1296 return 1;
1297 }
1298 sysfs_free(mdi);
1299 pr_err("%s not found in %s so cannot make it preferred replacement\n",
1300 dv->devname, devname);
1301 return -1;
1302}
1303
64c4757e 1304int Manage_subdevs(char *devname, int fd,
833bb0f8 1305 struct mddev_dev *devlist, int verbose, int test,
11b391ec 1306 char *update, int force)
cd29a5c8 1307{
7bd04da9 1308 /* Do something to each dev.
682c7051
NB
1309 * devmode can be
1310 * 'a' - add the device
1311 * try HOT_ADD_DISK
1312 * If that fails EINVAL, try ADD_NEW_DISK
f33a71f1 1313 * 'S' - add the device as a spare - don't try re-add
01290056 1314 * 'j' - add the device as a journal device
7bd04da9
N
1315 * 'A' - re-add the device
1316 * 'r' - remove the device: HOT_REMOVE_DISK
b80da661
NB
1317 * device can be 'faulty' or 'detached' in which case all
1318 * matching devices are removed.
682c7051 1319 * 'f' - set the device faulty SET_DISK_FAULTY
b80da661
NB
1320 * device can be 'detached' in which case any device that
1321 * is inaccessible will be marked faulty.
70c55e36
N
1322 * 'R' - mark this device as wanting replacement.
1323 * 'W' - this device is added if necessary and activated as
1324 * a replacement for a previous 'R' device.
1325 * -----
1326 * 'w' - 'W' will be changed to 'w' when it is paired with
1327 * a 'R' device. If a 'W' is found while walking the list
1328 * it must be unpaired, and is an error.
1329 * 'M' - this is created by a 'missing' target. It is a slight
1330 * variant on 'A'
262e3b7f
N
1331 * 'F' - Another variant of 'A', where the device was faulty
1332 * so must be removed from the array first.
4de90913 1333 * 'c' - confirm the device as found (for clustered environments)
70c55e36 1334 *
98d27e39
N
1335 * For 'f' and 'r', the device can also be a kernel-internal
1336 * name such as 'sdb'.
682c7051
NB
1337 */
1338 mdu_array_info_t array;
7a3be72f 1339 unsigned long long array_size;
1d997643 1340 struct mddev_dev *dv;
cfad27a9 1341 int tfd = -1;
38aeaf3a 1342 struct supertype *tst;
4725bc31 1343 char *subarray = NULL;
98d27e39 1344 int sysfd = -1;
7d2e6486 1345 int count = 0; /* number of actions taken */
9f584691 1346 struct mdinfo info;
9465f170 1347 struct mdinfo devinfo;
9f584691 1348 int frozen = 0;
8af530b0 1349 int busy = 0;
4de90913 1350 int raid_slot = -1;
682c7051
NB
1351
1352 if (ioctl(fd, GET_ARRAY_INFO, &array)) {
7bd04da9 1353 pr_err("Cannot get array info for %s\n",
682c7051 1354 devname);
bcbb3112 1355 goto abort;
682c7051 1356 }
4dd2df09 1357 sysfs_init(&info, fd, NULL);
3da92f27 1358
7bd04da9 1359 /* array.size is only 32 bits and may be truncated.
7a3be72f
NB
1360 * So read from sysfs if possible, and record number of sectors
1361 */
1362
1363 array_size = get_component_size(fd);
1364 if (array_size <= 0)
1365 array_size = array.size * 2;
1366
4725bc31 1367 tst = super_by_fd(fd, &subarray);
3da92f27 1368 if (!tst) {
e7b84f9d 1369 pr_err("unsupport array - version %d.%d\n",
3da92f27 1370 array.major_version, array.minor_version);
bcbb3112 1371 goto abort;
3da92f27
NB
1372 }
1373
38aeaf3a 1374 for (dv = devlist; dv; dv = dv->next) {
5dffd09d 1375 unsigned long rdev = 0; /* device to add/remove etc */
38aeaf3a 1376 int rv;
b47024f1 1377 int mj,mn;
4a39c6f2 1378
4de90913
GJ
1379 raid_slot = -1;
1380 if (dv->disposition == 'c') {
1381 rv = parse_cluster_confirm_arg(dv->devname,
1382 &dv->devname,
1383 &raid_slot);
d7a49369 1384 if (rv) {
4de90913
GJ
1385 pr_err("Could not get the devname of cluster\n");
1386 goto abort;
1387 }
1388 }
1389
1d997643
N
1390 if (strcmp(dv->devname, "failed") == 0 ||
1391 strcmp(dv->devname, "faulty") == 0) {
262e3b7f
N
1392 if (dv->disposition != 'A'
1393 && 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) {
1413 struct mddev_dev *add_devlist = NULL;
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 }
b47024f1
N
1498 } else if ((dv->disposition == 'r' || dv->disposition == 'f')
1499 && get_maj_min(dv->devname, &mj, &mn)) {
1500 /* for 'fail' and 'remove', the device might
1501 * not exist.
1502 */
1503 rdev = makedev(mj, mn);
b80da661 1504 } else {
5dffd09d 1505 struct stat stb;
c7b47447 1506 tfd = dev_open(dv->devname, O_RDONLY);
5fe7f5f7
N
1507 if (tfd >= 0)
1508 fstat(tfd, &stb);
5a9de8db 1509 else {
5fe7f5f7
N
1510 int open_err = errno;
1511 if (stat(dv->devname, &stb) != 0) {
1512 pr_err("Cannot find %s: %s\n",
1513 dv->devname, strerror(errno));
1514 goto abort;
1515 }
1516 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
1517 if (dv->disposition == 'M')
1518 /* non-fatal. Also improbable */
1519 continue;
1520 pr_err("%s is not a block device.\n",
1521 dv->devname);
1522 goto abort;
1523 }
1524 if (dv->disposition == 'r')
1525 /* Be happy, the stat worked, that is
1526 * enough for --remove
1527 */
1528 ;
1529 else {
1d997643
N
1530 if (dv->disposition == 'M')
1531 /* non-fatal */
1532 continue;
839f27a3 1533 pr_err("Cannot open %s: %s\n",
5fe7f5f7 1534 dv->devname, strerror(open_err));
bcbb3112 1535 goto abort;
5a9de8db 1536 }
b80da661 1537 }
5dffd09d 1538 rdev = stb.st_rdev;
682c7051 1539 }
cd29a5c8 1540 switch(dv->disposition){
682c7051 1541 default:
e7b84f9d 1542 pr_err("internal error - devmode[%s]=%d\n",
c913b90e 1543 dv->devname, dv->disposition);
bcbb3112 1544 goto abort;
682c7051 1545 case 'a':
f33a71f1 1546 case 'S': /* --add-spare */
01290056 1547 case 'j': /* --add-journal */
c8e1a230 1548 case 'A':
262e3b7f
N
1549 case 'M': /* --re-add missing */
1550 case 'F': /* --re-add faulty */
4de90913 1551 case 'c': /* --cluster-confirm */
4a39c6f2 1552 /* add the device */
4725bc31 1553 if (subarray) {
7a862a02 1554 pr_err("Cannot add disks to a \'member\' array, perform this operation on the parent container\n");
bcbb3112 1555 goto abort;
f94d52f4 1556 }
9465f170
GJ
1557
1558 /* Let's first try to write re-add to sysfs */
1559 if (rdev != 0 &&
1560 (dv->disposition == 'A' || dv->disposition == 'F')) {
1561 sysfs_init_dev(&devinfo, rdev);
1562 if (sysfs_set_str(&info, &devinfo, "state", "re-add") == 0) {
1563 pr_err("re-add %s to %s succeed\n",
1564 dv->devname, info.sys_name);
1565 break;
1566 }
1567 }
1568
262e3b7f
N
1569 if (dv->disposition == 'F')
1570 /* Need to remove first */
5dffd09d 1571 ioctl(fd, HOT_REMOVE_DISK, rdev);
f277ce36 1572 /* Make sure it isn't in use (in 2.6 or later) */
1d997643 1573 tfd = dev_open(dv->devname, O_RDONLY|O_EXCL);
38aeaf3a
N
1574 if (tfd >= 0) {
1575 /* We know no-one else is using it. We'll
1576 * need non-exclusive access to add it, so
1577 * do that now.
1578 */
1579 close(tfd);
1580 tfd = dev_open(dv->devname, O_RDONLY);
1011e834 1581 }
0fbf459d 1582 if (tfd < 0) {
1d997643
N
1583 if (dv->disposition == 'M')
1584 continue;
e7b84f9d 1585 pr_err("Cannot open %s: %s\n",
d7eaf49f 1586 dv->devname, strerror(errno));
bcbb3112 1587 goto abort;
d7eaf49f 1588 }
9f584691
N
1589 if (!frozen) {
1590 if (sysfs_freeze_array(&info) == 1)
1591 frozen = 1;
1592 else
1593 frozen = -1;
1594 }
38aeaf3a
N
1595 rv = Manage_add(fd, tfd, dv, tst, &array,
1596 force, verbose, devname, update,
4de90913 1597 rdev, array_size, raid_slot);
38aeaf3a
N
1598 close(tfd);
1599 tfd = -1;
1600 if (rv < 0)
bcbb3112 1601 goto abort;
38aeaf3a
N
1602 if (rv > 0)
1603 count++;
682c7051
NB
1604 break;
1605
1606 case 'r':
1607 /* hot remove */
4725bc31 1608 if (subarray) {
7a862a02 1609 pr_err("Cannot remove disks from a \'member\' array, perform this operation on the parent container\n");
d070235d
N
1610 rv = -1;
1611 } else
1612 rv = Manage_remove(tst, fd, dv, sysfd,
5dffd09d 1613 rdev, verbose,
d070235d
N
1614 devname);
1615 if (sysfd >= 0)
98d27e39 1616 close(sysfd);
d070235d
N
1617 sysfd = -1;
1618 if (rv < 0)
bcbb3112 1619 goto abort;
d070235d
N
1620 if (rv > 0)
1621 count++;
682c7051
NB
1622 break;
1623
1624 case 'f': /* set faulty */
1625 /* FIXME check current member */
98d27e39
N
1626 if ((sysfd >= 0 && write(sysfd, "faulty", 6) != 6) ||
1627 (sysfd < 0 && ioctl(fd, SET_DISK_FAULTY,
5dffd09d 1628 rdev))) {
8af530b0
N
1629 if (errno == EBUSY)
1630 busy = 1;
e7b84f9d 1631 pr_err("set device faulty failed for %s: %s\n",
1d997643 1632 dv->devname, strerror(errno));
98d27e39
N
1633 if (sysfd >= 0)
1634 close(sysfd);
bcbb3112 1635 goto abort;
682c7051 1636 }
98d27e39
N
1637 if (sysfd >= 0)
1638 close(sysfd);
1639 sysfd = -1;
7d2e6486 1640 count++;
dab6685f 1641 if (verbose >= 0)
e7b84f9d 1642 pr_err("set %s faulty in %s\n",
1d997643 1643 dv->devname, devname);
682c7051 1644 break;
70c55e36
N
1645 case 'R': /* Mark as replaceable */
1646 if (subarray) {
7a862a02 1647 pr_err("Cannot replace disks in a \'member\' array, perform this operation on the parent container\n");
70c55e36
N
1648 rv = -1;
1649 } else {
1650 if (!frozen) {
1651 if (sysfs_freeze_array(&info) == 1)
1652 frozen = 1;
1653 else
1654 frozen = -1;
1655 }
1656 rv = Manage_replace(tst, fd, dv,
5dffd09d 1657 rdev, verbose,
70c55e36
N
1658 devname);
1659 }
1660 if (rv < 0)
1661 goto abort;
1662 if (rv > 0)
1663 count++;
1664 break;
1665 case 'W': /* --with device that doesn't match */
1666 pr_err("No matching --replace device for --with %s\n",
1667 dv->devname);
1668 goto abort;
1669 case 'w': /* --with device which was matched */
1670 rv = Manage_with(tst, fd, dv,
5dffd09d 1671 rdev, verbose, devname);
70c55e36
N
1672 if (rv < 0)
1673 goto abort;
1674 break;
682c7051
NB
1675 }
1676 }
9f584691
N
1677 if (frozen > 0)
1678 sysfs_set_str(&info, NULL, "sync_action","idle");
7d2e6486
N
1679 if (test && count == 0)
1680 return 2;
682c7051 1681 return 0;
bcbb3112
N
1682
1683abort:
9f584691
N
1684 if (frozen > 0)
1685 sysfs_set_str(&info, NULL, "sync_action","idle");
8af530b0 1686 return !test && busy ? 2 : 1;
64c4757e 1687}
1f48664b
NB
1688
1689int autodetect(void)
1690{
1691 /* Open any md device, and issue the RAID_AUTORUN ioctl */
1692 int rv = 1;
1693 int fd = dev_open("9:0", O_RDONLY);
1694 if (fd >= 0) {
1695 if (ioctl(fd, RAID_AUTORUN, 0) == 0)
1696 rv = 0;
1697 close(fd);
1698 }
1699 return rv;
1700}
aa534678 1701
ba728be7 1702int Update_subarray(char *dev, char *subarray, char *update, struct mddev_ident *ident, int verbose)
aa534678
DW
1703{
1704 struct supertype supertype, *st = &supertype;
1705 int fd, rv = 2;
1706
1707 memset(st, 0, sizeof(*st));
aa534678 1708
ba728be7 1709 fd = open_subarray(dev, subarray, st, verbose < 0);
aa534678
DW
1710 if (fd < 0)
1711 return 2;
1712
1713 if (!st->ss->update_subarray) {
ba728be7 1714 if (verbose >= 0)
e7b84f9d
N
1715 pr_err("Operation not supported for %s metadata\n",
1716 st->ss->name);
aa534678
DW
1717 goto free_super;
1718 }
1719
4dd2df09 1720 if (mdmon_running(st->devnm))
aa534678
DW
1721 st->update_tail = &st->updates;
1722
a951a4f7 1723 rv = st->ss->update_subarray(st, subarray, update, ident);
aa534678
DW
1724
1725 if (rv) {
ba728be7 1726 if (verbose >= 0)
e7b84f9d 1727 pr_err("Failed to update %s of subarray-%s in %s\n",
aa534678
DW
1728 update, subarray, dev);
1729 } else if (st->update_tail)
1730 flush_metadata_updates(st);
1731 else
1732 st->ss->sync_metadata(st);
1733
ba728be7 1734 if (rv == 0 && strcmp(update, "name") == 0 && verbose >= 0)
e7b84f9d
N
1735 pr_err("Updated subarray-%s name from %s, UUIDs may have changed\n",
1736 subarray, dev);
aa534678
DW
1737
1738 free_super:
1739 st->ss->free_super(st);
1740 close(fd);
1741
1742 return rv;
1743}
d52bb542 1744
7bd04da9
N
1745/* Move spare from one array to another If adding to destination array fails
1746 * add back to original array.
d52bb542
AC
1747 * Returns 1 on success, 0 on failure */
1748int move_spare(char *from_devname, char *to_devname, dev_t devid)
1749{
1750 struct mddev_dev devlist;
1751 char devname[20];
1752
1753 /* try to remove and add */
1754 int fd1 = open(to_devname, O_RDONLY);
1755 int fd2 = open(from_devname, O_RDONLY);
1756
1757 if (fd1 < 0 || fd2 < 0) {
1758 if (fd1>=0) close(fd1);
1759 if (fd2>=0) close(fd2);
1760 return 0;
1761 }
1762
1763 devlist.next = NULL;
1764 devlist.used = 0;
d52bb542
AC
1765 devlist.writemostly = 0;
1766 devlist.devname = devname;
1767 sprintf(devname, "%d:%d", major(devid), minor(devid));
1768
1769 devlist.disposition = 'r';
11b391ec 1770 if (Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0) == 0) {
d52bb542 1771 devlist.disposition = 'a';
11b391ec 1772 if (Manage_subdevs(to_devname, fd1, &devlist, -1, 0, NULL, 0) == 0) {
d52bb542
AC
1773 /* make sure manager is aware of changes */
1774 ping_manager(to_devname);
1775 ping_manager(from_devname);
1776 close(fd1);
1777 close(fd2);
1778 return 1;
1779 }
11b391ec 1780 else Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0);
d52bb542
AC
1781 }
1782 close(fd1);
1783 close(fd2);
1784 return 0;
1785}
435d4ebb 1786#endif