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