]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Manage.c
2df303d27cd1c75ba8fe4faf221953e1edae8233
[thirdparty/mdadm.git] / Manage.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2013 Neil Brown <neilb@suse.de>
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
22 * Email: <neilb@suse.de>
23 */
24
25 #include "mdadm.h"
26 #include "md_u.h"
27 #include "md_p.h"
28 #include <ctype.h>
29
30 #define REGISTER_DEV _IO (MD_MAJOR, 1)
31 #define START_MD _IO (MD_MAJOR, 2)
32 #define STOP_MD _IO (MD_MAJOR, 3)
33
34 int Manage_ro(char *devname, int fd, int readonly)
35 {
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;
44 #ifndef MDASSEMBLE
45 struct mdinfo *mdi;
46 #endif
47 int rv = 0;
48
49 if (md_get_version(fd) < 9000) {
50 pr_err("need md driver version 0.90.0 or later\n");
51 return 1;
52 }
53 #ifndef MDASSEMBLE
54 /* If this is an externally-managed array, we need to modify the
55 * metadata_version so that mdmon doesn't undo our change.
56 */
57 mdi = sysfs_read(fd, NULL, GET_LEVEL|GET_VERSION);
58 if (mdi &&
59 mdi->array.major_version == -1 &&
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) {
74 pr_err("failed to set readonly for %s: %s\n",
75 devname, strerror(errno));
76
77 vers[9] = mdi->text_version[0];
78 sysfs_set_str(mdi, NULL, "metadata_version", vers);
79 rv = 1;
80 goto out;
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, '/');
89 if (cp)
90 *cp = 0;
91 ping_monitor(vers+10);
92 if (mdi->array.level <= 0)
93 sysfs_set_str(mdi, NULL, "array_state", "active");
94 }
95 goto out;
96 }
97 #endif
98 if (ioctl(fd, GET_ARRAY_INFO, &array)) {
99 pr_err("%s does not appear to be active.\n",
100 devname);
101 rv = 1;
102 goto out;
103 }
104
105 if (readonly > 0) {
106 if (ioctl(fd, STOP_ARRAY_RO, NULL)) {
107 pr_err("failed to set readonly for %s: %s\n",
108 devname, strerror(errno));
109 rv = 1;
110 goto out;
111 }
112 } else if (readonly < 0) {
113 if (ioctl(fd, RESTART_ARRAY_RW, NULL)) {
114 pr_err("failed to set writable for %s: %s\n",
115 devname, strerror(errno));
116 rv = 1;
117 goto out;
118 }
119 }
120 out:
121 #ifndef MDASSEMBLE
122 if (mdi)
123 sysfs_free(mdi);
124 #endif
125 return rv;
126 }
127
128 #ifndef MDASSEMBLE
129
130 static void remove_devices(char *devnm, char *path)
131 {
132 /*
133 * Remove names at 'path' - possibly with
134 * partition suffixes - which link to the 'standard'
135 * name for devnm. These were probably created
136 * by mdadm when the array was assembled.
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
146 if (!path)
147 return;
148
149 sprintf(base, "/dev/%s", devnm);
150 be = base + strlen(base);
151
152 path2 = xmalloc(strlen(path)+20);
153 strcpy(path2, path);
154 pe = path2 + strlen(path2);
155
156 for (part = 0; part < 16; part++) {
157 if (part) {
158 sprintf(be, "p%d", part);
159
160 if (isdigit(pe[-1]))
161 sprintf(pe, "p%d", part);
162 else
163 sprintf(pe, "%d", part);
164 }
165 n = readlink(path2, link, sizeof(link));
166 if (n > 0 && (int)strlen(base) == n &&
167 strncmp(link, base, n) == 0)
168 unlink(path2);
169 }
170 free(path2);
171 }
172
173 int Manage_run(char *devname, int fd, struct context *c)
174 {
175 /* Run the array. Array must already be configured
176 * Requires >= 0.90.0
177 */
178 char nm[32], *nmp;
179
180 if (md_get_version(fd) < 9000) {
181 pr_err("need md driver version 0.90.0 or later\n");
182 return 1;
183 }
184 nmp = fd2devnm(fd);
185 if (!nmp) {
186 pr_err("Cannot find %s in sysfs!!\n", devname);
187 return 1;
188 }
189 strcpy(nm, nmp);
190 return IncrementalScan(c, nm);
191 }
192
193 int 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;
205 char buf[32];
206 unsigned long long rd1, rd2;
207
208 if (will_retry && verbose == 0)
209 verbose = -1;
210
211 if (md_get_version(fd) < 9000) {
212 if (ioctl(fd, STOP_MD, 0) == 0)
213 return 0;
214 pr_err("stopping device %s failed: %s\n",
215 devname, strerror(errno));
216 return 1;
217 }
218
219 strcpy(devnm, fd2devnm(fd));
220 /* Get EXCL access first. If this fails, then attempting
221 * to stop is probably a bad idea.
222 */
223 mdi = sysfs_read(fd, NULL, GET_LEVEL|GET_COMPONENT|GET_VERSION);
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;
235 while (((fd = ((devname[0] == '/')
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) {
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 */
246 if (fd >= 0)
247 close(fd);
248 flush_mdmon(container);
249 count--;
250 }
251 if (fd < 0 || strcmp(fd2devnm(fd), devnm) != 0) {
252 if (fd >= 0)
253 close(fd);
254 if (verbose >= 0)
255 pr_err("Cannot get exclusive access to %s:Perhaps a running process, mounted filesystem or active volume group?\n",
256 devname);
257 return 1;
258 }
259 /* If this is an mdmon managed array, just write 'inactive'
260 * to the array state and let mdmon clear up.
261 */
262 if (mdi &&
263 mdi->array.level > 0 &&
264 is_subarray(mdi->text_version)) {
265 int err;
266 /* This is mdmon managed. */
267 close(fd);
268
269 /* As we had an O_EXCL open, any use of the device
270 * which blocks STOP_ARRAY is probably a transient use,
271 * so it is reasonable to retry for a while - 5 seconds.
272 */
273 count = 25;
274 while (count &&
275 (err = sysfs_set_str(mdi, NULL,
276 "array_state",
277 "inactive")) < 0
278 && errno == EBUSY) {
279 usleep(200000);
280 count--;
281 }
282 if (err) {
283 if (verbose >= 0)
284 pr_err("failed to stop array %s: %s\n",
285 devname, strerror(errno));
286 rv = 1;
287 goto out;
288 }
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)
296 pr_err("failed to completely stop %s: Device is busy\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'
309 */
310 ping_monitor(mdi->sys_name);
311
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)
322 pr_err("Cannot stop container %s: member %s still active\n",
323 devname, m->devnm);
324 free_mdstat(mds);
325 rv = 1;
326 goto out;
327 }
328 }
329
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 &&
347 sysfs_get_two(mdi, NULL, "raid_disks", &rd1, &rd2) == 2) {
348 unsigned long long position, curr;
349 unsigned long long chunk1, chunk2;
350 unsigned long long rddiv, chunkdiv;
351 unsigned long long sectors;
352 unsigned long long sync_max, old_sync_max;
353 unsigned long long completed;
354 int backwards = 0;
355 int delay;
356 int scfd;
357
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
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;
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 }
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 */
396 /* Reshape may have progressed further backwards than
397 * recorded, so target even further back (hence "-1")
398 */
399 position = (position / sectors - 1) * sectors;
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 */
405 sync_max = size - position/rd1;
406 } else {
407 /* Reshape will very likely be beyond position, and it may
408 * be too late to stop at '+1', so aim for '+2'
409 */
410 position = (position / sectors + 2) * sectors;
411 sync_max = position/rd1;
412 }
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);
419 sysfs_set_str(mdi, NULL, "sync_action", "idle");
420
421 /* That should have set things going again. Now we
422 * wait a little while (3 second max) for sync_completed
423 * to reach the target.
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.
428 */
429 delay = 3000;
430 scfd = sysfs_open(mdi->sys_name, NULL, "sync_completed");
431 while (scfd >= 0 && delay > 0 && old_sync_max > 0) {
432 unsigned long long max_completed;
433 sysfs_get_ll(mdi, NULL, "reshape_position", &curr);
434 sysfs_fd_get_str(scfd, buf, sizeof(buf));
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 }
445
446 if (sysfs_fd_get_two(scfd, &completed,
447 &max_completed) == 2 &&
448 /* 'completed' sometimes reads as max-uulong */
449 completed < max_completed &&
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
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 }
473 done:
474
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)
491 cont_err("Perhaps a running process, mounted filesystem or active volume group?\n");
492 }
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");
504
505 if (devnm[0] && use_udev()) {
506 struct map_ent *mp = map_by_devnm(&map, devnm);
507 remove_devices(devnm, mp ? mp->path : NULL);
508 }
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);
515 out:
516 if (mdi)
517 sysfs_free(mdi);
518
519 return rv;
520 }
521
522 static 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
534 static 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++) {
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);
556 dv = add_one(dv, buf, disp);
557 }
558 }
559
560 static 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++) {
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;
592 dv = add_one(dv, buf, disp);
593 }
594 }
595
596 static 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
630 int 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 (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 }
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) {
690 pr_err("failed to open %s for superblock update during re-add\n", dv->devname);
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) {
710 pr_err("failed to update superblock during re-add\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 }
729 skip_re_add:
730 return 0;
731 }
732
733 int 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,
736 char *update, unsigned long rdev, unsigned long long array_size,
737 int raid_slot)
738 {
739 unsigned long long ldsize;
740 struct supertype *dev_st = NULL;
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
751 if (tst->ss == &super0 && ldsize > 4ULL*1024*1024*1024*1024) {
752 /* More than 4TB is wasted on v0.90 */
753 if (!force) {
754 pr_err("%s is larger than %s can effectively use.\n"
755 " Add --force is you really want to add this device.\n",
756 dv->devname, devname);
757 return -1;
758 }
759 pr_err("%s is larger than %s can effectively use.\n"
760 " Adding anyway as --force was given.\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 */
816 if (!tst->sb && (dv->disposition != 'a'
817 && dv->disposition != 'S')) {
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 */
828 if (tst->sb &&
829 tst->ss->avail_size(tst, ldsize/512, INVALID_SECTORS) <
830 array_size) {
831 if (dv->disposition == 'M')
832 return 0;
833 pr_err("%s not large enough to join array\n",
834 dv->devname);
835 return -1;
836 }
837
838 /* Possibly this device was recently part of
839 * the array and was temporarily removed, and
840 * is now being re-added. If so, we can
841 * simply re-add it.
842 */
843
844 if (array->not_persistent==0) {
845 dev_st = dup_super(tst);
846 dev_st->ss->load_super(dev_st, tfd, NULL);
847 }
848 if (dev_st && dev_st->sb && dv->disposition != 'S') {
849 int rv = attempt_re_add(fd, tfd, dv,
850 dev_st, tst,
851 rdev,
852 update, devname,
853 verbose,
854 array);
855 dev_st->ss->free_super(dev_st);
856 if (rv)
857 return rv;
858 }
859 if (dv->disposition == 'M') {
860 if (verbose > 0)
861 pr_err("--re-add for %s to %s is not possible\n",
862 dv->devname, devname);
863 return 0;
864 }
865 if (dv->disposition == 'A') {
866 pr_err("--re-add for %s to %s is not possible\n",
867 dv->devname, devname);
868 return -1;
869 }
870 if (array->active_disks < array->raid_disks) {
871 char *avail = xcalloc(array->raid_disks, 1);
872 int d;
873 int found = 0;
874
875 for (d = 0; d < MAX_DISKS && found < array->nr_disks; d++) {
876 disc.number = d;
877 if (ioctl(fd, GET_DISK_INFO, &disc))
878 continue;
879 if (disc.major == 0 && disc.minor == 0)
880 continue;
881 found++;
882 if (!(disc.state & (1<<MD_DISK_SYNC)))
883 continue;
884 avail[disc.raid_disk] = 1;
885 }
886 array_failed = !enough(array->level, array->raid_disks,
887 array->layout, 1, avail);
888 free(avail);
889 } else
890 array_failed = 0;
891 if (array_failed) {
892 pr_err("%s has failed so using --add cannot work and might destroy\n",
893 devname);
894 pr_err("data on %s. You should stop the array and re-assemble it.\n",
895 dv->devname);
896 return -1;
897 }
898 } else {
899 /* non-persistent. Must ensure that new drive
900 * is at least array->size big.
901 */
902 if (ldsize/512 < array_size) {
903 pr_err("%s not large enough to join array\n",
904 dv->devname);
905 return -1;
906 }
907 }
908 /* committed to really trying this device now*/
909 remove_partitions(tfd);
910
911 /* in 2.6.17 and earlier, version-1 superblocks won't
912 * use the number we write, but will choose a free number.
913 * we must choose the same free number, which requires
914 * starting at 'raid_disks' and counting up
915 */
916 for (j = array->raid_disks; j < tst->max_devs; j++) {
917 disc.number = j;
918 if (ioctl(fd, GET_DISK_INFO, &disc))
919 break;
920 if (disc.major==0 && disc.minor==0)
921 break;
922 if (disc.state & 8) /* removed */
923 break;
924 }
925 disc.major = major(rdev);
926 disc.minor = minor(rdev);
927 if (raid_slot < 0)
928 disc.number = j;
929 else
930 disc.number = raid_slot;
931 disc.state = 0;
932 if (array->not_persistent==0) {
933 int dfd;
934 if (dv->writemostly == 1)
935 disc.state |= 1 << MD_DISK_WRITEMOSTLY;
936 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
937 if (tst->ss->add_to_super(tst, &disc, dfd,
938 dv->devname, INVALID_SECTORS))
939 return -1;
940 if (tst->ss->write_init_super(tst))
941 return -1;
942 } else if (dv->disposition == 'A') {
943 /* this had better be raid1.
944 * As we are "--re-add"ing we must find a spare slot
945 * to fill.
946 */
947 char *used = xcalloc(array->raid_disks, 1);
948 for (j = 0; j < tst->max_devs; j++) {
949 mdu_disk_info_t disc2;
950 disc2.number = j;
951 if (ioctl(fd, GET_DISK_INFO, &disc2))
952 continue;
953 if (disc2.major==0 && disc2.minor==0)
954 continue;
955 if (disc2.state & 8) /* removed */
956 continue;
957 if (disc2.raid_disk < 0)
958 continue;
959 if (disc2.raid_disk > array->raid_disks)
960 continue;
961 used[disc2.raid_disk] = 1;
962 }
963 for (j = 0 ; j < array->raid_disks; j++)
964 if (!used[j]) {
965 disc.raid_disk = j;
966 disc.state |= (1<<MD_DISK_SYNC);
967 break;
968 }
969 free(used);
970 }
971
972 if (array->state & (1 << MD_SB_CLUSTERED)) {
973 if (dv->disposition == 'c')
974 disc.state |= (1 << MD_DISK_CANDIDATE);
975 else
976 disc.state |= (1 << MD_DISK_CLUSTER_ADD);
977 }
978
979 if (dv->writemostly == 1)
980 disc.state |= (1 << MD_DISK_WRITEMOSTLY);
981 if (tst->ss->external) {
982 /* add a disk
983 * to an external metadata container */
984 struct mdinfo new_mdi;
985 struct mdinfo *sra;
986 int container_fd;
987 char devnm[32];
988 int dfd;
989
990 strcpy(devnm, fd2devnm(fd));
991
992 container_fd = open_dev_excl(devnm);
993 if (container_fd < 0) {
994 pr_err("add failed for %s: could not get exclusive access to container\n",
995 dv->devname);
996 tst->ss->free_super(tst);
997 return -1;
998 }
999
1000 Kill(dv->devname, NULL, 0, -1, 0);
1001 dfd = dev_open(dv->devname, O_RDWR | O_EXCL|O_DIRECT);
1002 if (mdmon_running(tst->container_devnm))
1003 tst->update_tail = &tst->updates;
1004 if (tst->ss->add_to_super(tst, &disc, dfd,
1005 dv->devname, INVALID_SECTORS)) {
1006 close(dfd);
1007 close(container_fd);
1008 return -1;
1009 }
1010 if (tst->update_tail)
1011 flush_metadata_updates(tst);
1012 else
1013 tst->ss->sync_metadata(tst);
1014
1015 sra = sysfs_read(container_fd, NULL, 0);
1016 if (!sra) {
1017 pr_err("add failed for %s: sysfs_read failed\n",
1018 dv->devname);
1019 close(container_fd);
1020 tst->ss->free_super(tst);
1021 return -1;
1022 }
1023 sra->array.level = LEVEL_CONTAINER;
1024 /* Need to set data_offset and component_size */
1025 tst->ss->getinfo_super(tst, &new_mdi, NULL);
1026 new_mdi.disk.major = disc.major;
1027 new_mdi.disk.minor = disc.minor;
1028 new_mdi.recovery_start = 0;
1029 /* Make sure fds are closed as they are O_EXCL which
1030 * would block add_disk */
1031 tst->ss->free_super(tst);
1032 if (sysfs_add_disk(sra, &new_mdi, 0) != 0) {
1033 pr_err("add new device to external metadata failed for %s\n", dv->devname);
1034 close(container_fd);
1035 sysfs_free(sra);
1036 return -1;
1037 }
1038 ping_monitor(devnm);
1039 sysfs_free(sra);
1040 close(container_fd);
1041 } else {
1042 tst->ss->free_super(tst);
1043 if (ioctl(fd, ADD_NEW_DISK, &disc)) {
1044 pr_err("add new device failed for %s as %d: %s\n",
1045 dv->devname, j, strerror(errno));
1046 return -1;
1047 }
1048 }
1049 if (verbose >= 0)
1050 pr_err("added %s\n", dv->devname);
1051 return 1;
1052 }
1053
1054 int Manage_remove(struct supertype *tst, int fd, struct mddev_dev *dv,
1055 int sysfd, unsigned long rdev, int verbose, char *devname)
1056 {
1057 int lfd = -1;
1058 int err;
1059
1060 if (tst->ss->external) {
1061 /* To remove a device from a container, we must
1062 * check that it isn't in use in an array.
1063 * This involves looking in the 'holders'
1064 * directory - there must be just one entry,
1065 * the container.
1066 * To ensure that it doesn't get used as a
1067 * hot spare while we are checking, we
1068 * get an O_EXCL open on the container
1069 */
1070 int ret;
1071 char devnm[32];
1072 strcpy(devnm, fd2devnm(fd));
1073 lfd = open_dev_excl(devnm);
1074 if (lfd < 0) {
1075 pr_err("Cannot get exclusive access to container - odd\n");
1076 return -1;
1077 }
1078 /* We may not be able to check on holders in
1079 * sysfs, either because we don't have the dev num
1080 * (rdev == 0) or because the device has been detached
1081 * and the 'holders' directory no longer exists
1082 * (ret == -1). In that case, assume it is OK to
1083 * remove.
1084 */
1085 if (rdev == 0)
1086 ret = -1;
1087 else
1088 ret = sysfs_unique_holder(devnm, rdev);
1089 if (ret == 0) {
1090 pr_err("%s is not a member, cannot remove.\n",
1091 dv->devname);
1092 close(lfd);
1093 return -1;
1094 }
1095 if (ret >= 2) {
1096 pr_err("%s is still in use, cannot remove.\n",
1097 dv->devname);
1098 close(lfd);
1099 return -1;
1100 }
1101 }
1102 /* FIXME check that it is a current member */
1103 if (sysfd >= 0) {
1104 /* device has been removed and we don't know
1105 * the major:minor number
1106 */
1107 int n = write(sysfd, "remove", 6);
1108 if (n != 6)
1109 err = -1;
1110 else
1111 err = 0;
1112 } else {
1113 err = ioctl(fd, HOT_REMOVE_DISK, rdev);
1114 if (err && errno == ENODEV) {
1115 /* Old kernels rejected this if no personality
1116 * is registered */
1117 struct mdinfo *sra = sysfs_read(fd, NULL, GET_DEVS);
1118 struct mdinfo *dv = NULL;
1119 if (sra)
1120 dv = sra->devs;
1121 for ( ; dv ; dv=dv->next)
1122 if (dv->disk.major == (int)major(rdev) &&
1123 dv->disk.minor == (int)minor(rdev))
1124 break;
1125 if (dv)
1126 err = sysfs_set_str(sra, dv,
1127 "state", "remove");
1128 else
1129 err = -1;
1130 if (sra)
1131 sysfs_free(sra);
1132 }
1133 }
1134 if (err) {
1135 pr_err("hot remove failed for %s: %s\n", dv->devname,
1136 strerror(errno));
1137 if (lfd >= 0)
1138 close(lfd);
1139 return -1;
1140 }
1141 if (tst->ss->external) {
1142 /*
1143 * Before dropping our exclusive open we make an
1144 * attempt at preventing mdmon from seeing an
1145 * 'add' event before reconciling this 'remove'
1146 * event.
1147 */
1148 char *devnm = fd2devnm(fd);
1149
1150 if (!devnm) {
1151 pr_err("unable to get container name\n");
1152 return -1;
1153 }
1154
1155 ping_manager(devnm);
1156 }
1157 if (lfd >= 0)
1158 close(lfd);
1159 if (verbose >= 0)
1160 pr_err("hot removed %s from %s\n",
1161 dv->devname, devname);
1162 return 1;
1163 }
1164
1165 int Manage_replace(struct supertype *tst, int fd, struct mddev_dev *dv,
1166 unsigned long rdev, int verbose, char *devname)
1167 {
1168 struct mdinfo *mdi, *di;
1169 if (tst->ss->external) {
1170 pr_err("--replace only supported for native metadata (0.90 or 1.x)\n");
1171 return -1;
1172 }
1173 /* Need to find the device in sysfs and add 'want_replacement' to the
1174 * status.
1175 */
1176 mdi = sysfs_read(fd, NULL, GET_DEVS);
1177 if (!mdi || !mdi->devs) {
1178 pr_err("Cannot find status of %s to enable replacement - strange\n",
1179 devname);
1180 return -1;
1181 }
1182 for (di = mdi->devs; di; di = di->next)
1183 if (di->disk.major == (int)major(rdev) &&
1184 di->disk.minor == (int)minor(rdev))
1185 break;
1186 if (di) {
1187 int rv;
1188 if (di->disk.raid_disk < 0) {
1189 pr_err("%s is not active and so cannot be replaced.\n",
1190 dv->devname);
1191 sysfs_free(mdi);
1192 return -1;
1193 }
1194 rv = sysfs_set_str(mdi, di,
1195 "state", "want_replacement");
1196 if (rv) {
1197 sysfs_free(mdi);
1198 pr_err("Failed to request replacement for %s\n",
1199 dv->devname);
1200 return -1;
1201 }
1202 if (verbose >= 0)
1203 pr_err("Marked %s (device %d in %s) for replacement\n",
1204 dv->devname, di->disk.raid_disk, devname);
1205 /* If there is a matching 'with', we need to tell it which
1206 * raid disk
1207 */
1208 while (dv && dv->disposition != 'W')
1209 dv = dv->next;
1210 if (dv) {
1211 dv->disposition = 'w';
1212 dv->used = di->disk.raid_disk;
1213 }
1214 return 1;
1215 }
1216 sysfs_free(mdi);
1217 pr_err("%s not found in %s so cannot --replace it\n",
1218 dv->devname, devname);
1219 return -1;
1220 }
1221
1222 int Manage_with(struct supertype *tst, int fd, struct mddev_dev *dv,
1223 unsigned long rdev, int verbose, char *devname)
1224 {
1225 struct mdinfo *mdi, *di;
1226 /* try to set 'slot' for 'rdev' in 'fd' to 'dv->used' */
1227 mdi = sysfs_read(fd, NULL, GET_DEVS|GET_STATE);
1228 if (!mdi || !mdi->devs) {
1229 pr_err("Cannot find status of %s to enable replacement - strange\n",
1230 devname);
1231 return -1;
1232 }
1233 for (di = mdi->devs; di; di = di->next)
1234 if (di->disk.major == (int)major(rdev) &&
1235 di->disk.minor == (int)minor(rdev))
1236 break;
1237 if (di) {
1238 int rv;
1239 if (di->disk.state & (1<<MD_DISK_FAULTY)) {
1240 pr_err("%s is faulty and cannot be a replacement\n",
1241 dv->devname);
1242 sysfs_free(mdi);
1243 return -1;
1244 }
1245 if (di->disk.raid_disk >= 0) {
1246 pr_err("%s is active and cannot be a replacement\n",
1247 dv->devname);
1248 sysfs_free(mdi);
1249 return -1;
1250 }
1251 rv = sysfs_set_num(mdi, di,
1252 "slot", dv->used);
1253 if (rv) {
1254 sysfs_free(mdi);
1255 pr_err("Failed to set %s as preferred replacement.\n",
1256 dv->devname);
1257 return -1;
1258 }
1259 if (verbose >= 0)
1260 pr_err("Marked %s in %s as replacement for device %d\n",
1261 dv->devname, devname, dv->used);
1262 return 1;
1263 }
1264 sysfs_free(mdi);
1265 pr_err("%s not found in %s so cannot make it preferred replacement\n",
1266 dv->devname, devname);
1267 return -1;
1268 }
1269
1270 int Manage_subdevs(char *devname, int fd,
1271 struct mddev_dev *devlist, int verbose, int test,
1272 char *update, int force)
1273 {
1274 /* Do something to each dev.
1275 * devmode can be
1276 * 'a' - add the device
1277 * try HOT_ADD_DISK
1278 * If that fails EINVAL, try ADD_NEW_DISK
1279 * 'S' - add the device as a spare - don't try re-add
1280 * 'A' - re-add the device
1281 * 'r' - remove the device: HOT_REMOVE_DISK
1282 * device can be 'faulty' or 'detached' in which case all
1283 * matching devices are removed.
1284 * 'f' - set the device faulty SET_DISK_FAULTY
1285 * device can be 'detached' in which case any device that
1286 * is inaccessible will be marked faulty.
1287 * 'R' - mark this device as wanting replacement.
1288 * 'W' - this device is added if necessary and activated as
1289 * a replacement for a previous 'R' device.
1290 * -----
1291 * 'w' - 'W' will be changed to 'w' when it is paired with
1292 * a 'R' device. If a 'W' is found while walking the list
1293 * it must be unpaired, and is an error.
1294 * 'M' - this is created by a 'missing' target. It is a slight
1295 * variant on 'A'
1296 * 'F' - Another variant of 'A', where the device was faulty
1297 * so must be removed from the array first.
1298 * 'c' - confirm the device as found (for clustered environments)
1299 *
1300 * For 'f' and 'r', the device can also be a kernel-internal
1301 * name such as 'sdb'.
1302 */
1303 mdu_array_info_t array;
1304 unsigned long long array_size;
1305 struct mddev_dev *dv;
1306 int tfd = -1;
1307 struct supertype *tst;
1308 char *subarray = NULL;
1309 int sysfd = -1;
1310 int count = 0; /* number of actions taken */
1311 struct mdinfo info;
1312 struct mdinfo devinfo;
1313 int frozen = 0;
1314 int busy = 0;
1315 int raid_slot = -1;
1316
1317 if (ioctl(fd, GET_ARRAY_INFO, &array)) {
1318 pr_err("Cannot get array info for %s\n",
1319 devname);
1320 goto abort;
1321 }
1322 sysfs_init(&info, fd, NULL);
1323
1324 /* array.size is only 32 bits and may be truncated.
1325 * So read from sysfs if possible, and record number of sectors
1326 */
1327
1328 array_size = get_component_size(fd);
1329 if (array_size <= 0)
1330 array_size = array.size * 2;
1331
1332 tst = super_by_fd(fd, &subarray);
1333 if (!tst) {
1334 pr_err("unsupport array - version %d.%d\n",
1335 array.major_version, array.minor_version);
1336 goto abort;
1337 }
1338
1339 for (dv = devlist; dv; dv = dv->next) {
1340 unsigned long rdev = 0; /* device to add/remove etc */
1341 int rv;
1342 int mj,mn;
1343
1344 raid_slot = -1;
1345 if (dv->disposition == 'c') {
1346 rv = parse_cluster_confirm_arg(dv->devname,
1347 &dv->devname,
1348 &raid_slot);
1349 if (rv) {
1350 pr_err("Could not get the devname of cluster\n");
1351 goto abort;
1352 }
1353 }
1354
1355 if (strcmp(dv->devname, "failed") == 0 ||
1356 strcmp(dv->devname, "faulty") == 0) {
1357 if (dv->disposition != 'A'
1358 && dv->disposition != 'r') {
1359 pr_err("%s only meaningful with -r or --re-add, not -%c\n",
1360 dv->devname, dv->disposition);
1361 goto abort;
1362 }
1363 add_faulty(dv, fd, (dv->disposition == 'A'
1364 ? 'F' : 'r'));
1365 continue;
1366 }
1367 if (strcmp(dv->devname, "detached") == 0) {
1368 if (dv->disposition != 'r' && dv->disposition != 'f') {
1369 pr_err("%s only meaningful with -r of -f, not -%c\n",
1370 dv->devname, dv->disposition);
1371 goto abort;
1372 }
1373 add_detached(dv, fd, dv->disposition);
1374 continue;
1375 }
1376
1377 if (strcmp(dv->devname, "missing") == 0) {
1378 struct mddev_dev *add_devlist = NULL;
1379 struct mddev_dev **dp;
1380 if (dv->disposition == 'c') {
1381 rv = ioctl(fd, CLUSTERED_DISK_NACK, NULL);
1382 break;
1383 }
1384
1385 if (dv->disposition != 'A') {
1386 pr_err("'missing' only meaningful with --re-add\n");
1387 goto abort;
1388 }
1389 add_devlist = conf_get_devs();
1390 if (add_devlist == NULL) {
1391 pr_err("no devices to scan for missing members.");
1392 continue;
1393 }
1394 for (dp = &add_devlist; *dp; dp = & (*dp)->next)
1395 /* 'M' (for 'missing') is like 'A' without errors */
1396 (*dp)->disposition = 'M';
1397 *dp = dv->next;
1398 dv->next = add_devlist;
1399 continue;
1400 }
1401
1402 if (strncmp(dv->devname, "set-", 4) == 0 &&
1403 strlen(dv->devname) == 5) {
1404 int copies;
1405
1406 if (dv->disposition != 'r' &&
1407 dv->disposition != 'f') {
1408 pr_err("'%s' only meaningful with -r or -f\n",
1409 dv->devname);
1410 goto abort;
1411 }
1412 if (array.level != 10) {
1413 pr_err("'%s' only meaningful with RAID10 arrays\n",
1414 dv->devname);
1415 goto abort;
1416 }
1417 copies = ((array.layout & 0xff) *
1418 ((array.layout >> 8) & 0xff));
1419 if (array.raid_disks % copies != 0 ||
1420 dv->devname[4] < 'A' ||
1421 dv->devname[4] >= 'A' + copies ||
1422 copies > 26) {
1423 pr_err("'%s' not meaningful with this array\n",
1424 dv->devname);
1425 goto abort;
1426 }
1427 add_set(dv, fd, dv->devname[4]);
1428 continue;
1429 }
1430
1431 if (strchr(dv->devname, '/') == NULL &&
1432 strchr(dv->devname, ':') == NULL &&
1433 strlen(dv->devname) < 50) {
1434 /* Assume this is a kernel-internal name like 'sda1' */
1435 int found = 0;
1436 char dname[55];
1437 if (dv->disposition != 'r' && dv->disposition != 'f') {
1438 pr_err("%s only meaningful with -r or -f, not -%c\n",
1439 dv->devname, dv->disposition);
1440 goto abort;
1441 }
1442
1443 sprintf(dname, "dev-%s", dv->devname);
1444 sysfd = sysfs_open(fd2devnm(fd), dname, "block/dev");
1445 if (sysfd >= 0) {
1446 char dn[20];
1447 if (sysfs_fd_get_str(sysfd, dn, 20) > 0 &&
1448 sscanf(dn, "%d:%d", &mj,&mn) == 2) {
1449 rdev = makedev(mj,mn);
1450 found = 1;
1451 }
1452 close(sysfd);
1453 sysfd = -1;
1454 }
1455 if (!found) {
1456 sysfd = sysfs_open(fd2devnm(fd), dname, "state");
1457 if (sysfd < 0) {
1458 pr_err("%s does not appear to be a component of %s\n",
1459 dv->devname, devname);
1460 goto abort;
1461 }
1462 }
1463 } else if ((dv->disposition == 'r' || dv->disposition == 'f')
1464 && get_maj_min(dv->devname, &mj, &mn)) {
1465 /* for 'fail' and 'remove', the device might
1466 * not exist.
1467 */
1468 rdev = makedev(mj, mn);
1469 } else {
1470 struct stat stb;
1471 tfd = dev_open(dv->devname, O_RDONLY);
1472 if (tfd >= 0)
1473 fstat(tfd, &stb);
1474 else {
1475 int open_err = errno;
1476 if (stat(dv->devname, &stb) != 0) {
1477 pr_err("Cannot find %s: %s\n",
1478 dv->devname, strerror(errno));
1479 goto abort;
1480 }
1481 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
1482 if (dv->disposition == 'M')
1483 /* non-fatal. Also improbable */
1484 continue;
1485 pr_err("%s is not a block device.\n",
1486 dv->devname);
1487 goto abort;
1488 }
1489 if (dv->disposition == 'r')
1490 /* Be happy, the stat worked, that is
1491 * enough for --remove
1492 */
1493 ;
1494 else {
1495 if (dv->disposition == 'M')
1496 /* non-fatal */
1497 continue;
1498 pr_err("Cannot open %s: %s\n",
1499 dv->devname, strerror(open_err));
1500 goto abort;
1501 }
1502 }
1503 rdev = stb.st_rdev;
1504 }
1505 switch(dv->disposition){
1506 default:
1507 pr_err("internal error - devmode[%s]=%d\n",
1508 dv->devname, dv->disposition);
1509 goto abort;
1510 case 'a':
1511 case 'S': /* --add-spare */
1512 case 'A':
1513 case 'M': /* --re-add missing */
1514 case 'F': /* --re-add faulty */
1515 case 'c': /* --cluster-confirm */
1516 /* add the device */
1517 if (subarray) {
1518 pr_err("Cannot add disks to a \'member\' array, perform this operation on the parent container\n");
1519 goto abort;
1520 }
1521
1522 /* Let's first try to write re-add to sysfs */
1523 if (rdev != 0 &&
1524 (dv->disposition == 'A' || dv->disposition == 'F')) {
1525 sysfs_init_dev(&devinfo, rdev);
1526 if (sysfs_set_str(&info, &devinfo, "state", "re-add") == 0) {
1527 pr_err("re-add %s to %s succeed\n",
1528 dv->devname, info.sys_name);
1529 break;
1530 }
1531 }
1532
1533 if (dv->disposition == 'F')
1534 /* Need to remove first */
1535 ioctl(fd, HOT_REMOVE_DISK, rdev);
1536 /* Make sure it isn't in use (in 2.6 or later) */
1537 tfd = dev_open(dv->devname, O_RDONLY|O_EXCL);
1538 if (tfd >= 0) {
1539 /* We know no-one else is using it. We'll
1540 * need non-exclusive access to add it, so
1541 * do that now.
1542 */
1543 close(tfd);
1544 tfd = dev_open(dv->devname, O_RDONLY);
1545 }
1546 if (tfd < 0) {
1547 if (dv->disposition == 'M')
1548 continue;
1549 pr_err("Cannot open %s: %s\n",
1550 dv->devname, strerror(errno));
1551 goto abort;
1552 }
1553 if (!frozen) {
1554 if (sysfs_freeze_array(&info) == 1)
1555 frozen = 1;
1556 else
1557 frozen = -1;
1558 }
1559 rv = Manage_add(fd, tfd, dv, tst, &array,
1560 force, verbose, devname, update,
1561 rdev, array_size, raid_slot);
1562 close(tfd);
1563 tfd = -1;
1564 if (rv < 0)
1565 goto abort;
1566 if (rv > 0)
1567 count++;
1568 break;
1569
1570 case 'r':
1571 /* hot remove */
1572 if (subarray) {
1573 pr_err("Cannot remove disks from a \'member\' array, perform this operation on the parent container\n");
1574 rv = -1;
1575 } else
1576 rv = Manage_remove(tst, fd, dv, sysfd,
1577 rdev, verbose,
1578 devname);
1579 if (sysfd >= 0)
1580 close(sysfd);
1581 sysfd = -1;
1582 if (rv < 0)
1583 goto abort;
1584 if (rv > 0)
1585 count++;
1586 break;
1587
1588 case 'f': /* set faulty */
1589 /* FIXME check current member */
1590 if ((sysfd >= 0 && write(sysfd, "faulty", 6) != 6) ||
1591 (sysfd < 0 && ioctl(fd, SET_DISK_FAULTY,
1592 rdev))) {
1593 if (errno == EBUSY)
1594 busy = 1;
1595 pr_err("set device faulty failed for %s: %s\n",
1596 dv->devname, strerror(errno));
1597 if (sysfd >= 0)
1598 close(sysfd);
1599 goto abort;
1600 }
1601 if (sysfd >= 0)
1602 close(sysfd);
1603 sysfd = -1;
1604 count++;
1605 if (verbose >= 0)
1606 pr_err("set %s faulty in %s\n",
1607 dv->devname, devname);
1608 break;
1609 case 'R': /* Mark as replaceable */
1610 if (subarray) {
1611 pr_err("Cannot replace disks in a \'member\' array, perform this operation on the parent container\n");
1612 rv = -1;
1613 } else {
1614 if (!frozen) {
1615 if (sysfs_freeze_array(&info) == 1)
1616 frozen = 1;
1617 else
1618 frozen = -1;
1619 }
1620 rv = Manage_replace(tst, fd, dv,
1621 rdev, verbose,
1622 devname);
1623 }
1624 if (rv < 0)
1625 goto abort;
1626 if (rv > 0)
1627 count++;
1628 break;
1629 case 'W': /* --with device that doesn't match */
1630 pr_err("No matching --replace device for --with %s\n",
1631 dv->devname);
1632 goto abort;
1633 case 'w': /* --with device which was matched */
1634 rv = Manage_with(tst, fd, dv,
1635 rdev, verbose, devname);
1636 if (rv < 0)
1637 goto abort;
1638 break;
1639 }
1640 }
1641 if (frozen > 0)
1642 sysfs_set_str(&info, NULL, "sync_action","idle");
1643 if (test && count == 0)
1644 return 2;
1645 return 0;
1646
1647 abort:
1648 if (frozen > 0)
1649 sysfs_set_str(&info, NULL, "sync_action","idle");
1650 return !test && busy ? 2 : 1;
1651 }
1652
1653 int autodetect(void)
1654 {
1655 /* Open any md device, and issue the RAID_AUTORUN ioctl */
1656 int rv = 1;
1657 int fd = dev_open("9:0", O_RDONLY);
1658 if (fd >= 0) {
1659 if (ioctl(fd, RAID_AUTORUN, 0) == 0)
1660 rv = 0;
1661 close(fd);
1662 }
1663 return rv;
1664 }
1665
1666 int Update_subarray(char *dev, char *subarray, char *update, struct mddev_ident *ident, int verbose)
1667 {
1668 struct supertype supertype, *st = &supertype;
1669 int fd, rv = 2;
1670
1671 memset(st, 0, sizeof(*st));
1672
1673 fd = open_subarray(dev, subarray, st, verbose < 0);
1674 if (fd < 0)
1675 return 2;
1676
1677 if (!st->ss->update_subarray) {
1678 if (verbose >= 0)
1679 pr_err("Operation not supported for %s metadata\n",
1680 st->ss->name);
1681 goto free_super;
1682 }
1683
1684 if (mdmon_running(st->devnm))
1685 st->update_tail = &st->updates;
1686
1687 rv = st->ss->update_subarray(st, subarray, update, ident);
1688
1689 if (rv) {
1690 if (verbose >= 0)
1691 pr_err("Failed to update %s of subarray-%s in %s\n",
1692 update, subarray, dev);
1693 } else if (st->update_tail)
1694 flush_metadata_updates(st);
1695 else
1696 st->ss->sync_metadata(st);
1697
1698 if (rv == 0 && strcmp(update, "name") == 0 && verbose >= 0)
1699 pr_err("Updated subarray-%s name from %s, UUIDs may have changed\n",
1700 subarray, dev);
1701
1702 free_super:
1703 st->ss->free_super(st);
1704 close(fd);
1705
1706 return rv;
1707 }
1708
1709 /* Move spare from one array to another If adding to destination array fails
1710 * add back to original array.
1711 * Returns 1 on success, 0 on failure */
1712 int move_spare(char *from_devname, char *to_devname, dev_t devid)
1713 {
1714 struct mddev_dev devlist;
1715 char devname[20];
1716
1717 /* try to remove and add */
1718 int fd1 = open(to_devname, O_RDONLY);
1719 int fd2 = open(from_devname, O_RDONLY);
1720
1721 if (fd1 < 0 || fd2 < 0) {
1722 if (fd1>=0) close(fd1);
1723 if (fd2>=0) close(fd2);
1724 return 0;
1725 }
1726
1727 devlist.next = NULL;
1728 devlist.used = 0;
1729 devlist.writemostly = 0;
1730 devlist.devname = devname;
1731 sprintf(devname, "%d:%d", major(devid), minor(devid));
1732
1733 devlist.disposition = 'r';
1734 if (Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0) == 0) {
1735 devlist.disposition = 'a';
1736 if (Manage_subdevs(to_devname, fd1, &devlist, -1, 0, NULL, 0) == 0) {
1737 /* make sure manager is aware of changes */
1738 ping_manager(to_devname);
1739 ping_manager(from_devname);
1740 close(fd1);
1741 close(fd2);
1742 return 1;
1743 }
1744 else Manage_subdevs(from_devname, fd2, &devlist, -1, 0, NULL, 0);
1745 }
1746 close(fd1);
1747 close(fd2);
1748 return 0;
1749 }
1750 #endif