]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
sysfs: Use the presence of /sys/block/<dev>/md as indicator of valid device
[thirdparty/mdadm.git] / Grow.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 #include "mdadm.h"
25 #include "dlink.h"
26 #include <sys/mman.h>
27 #include <stddef.h>
28 #include <stdint.h>
29 #include <signal.h>
30 #include <sys/wait.h>
31
32 #if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
33 #error no endian defined
34 #endif
35 #include "md_u.h"
36 #include "md_p.h"
37
38 int restore_backup(struct supertype *st,
39 struct mdinfo *content,
40 int working_disks,
41 int next_spare,
42 char **backup_filep,
43 int verbose)
44 {
45 int i;
46 int *fdlist;
47 struct mdinfo *dev;
48 int err;
49 int disk_count = next_spare + working_disks;
50 char *backup_file = *backup_filep;
51
52 dprintf("Called restore_backup()\n");
53 fdlist = xmalloc(sizeof(int) * disk_count);
54
55 enable_fds(next_spare);
56 for (i = 0; i < next_spare; i++)
57 fdlist[i] = -1;
58 for (dev = content->devs; dev; dev = dev->next) {
59 char buf[22];
60 int fd;
61 sprintf(buf, "%d:%d",
62 dev->disk.major,
63 dev->disk.minor);
64 fd = dev_open(buf, O_RDWR);
65
66 if (dev->disk.raid_disk >= 0)
67 fdlist[dev->disk.raid_disk] = fd;
68 else
69 fdlist[next_spare++] = fd;
70 }
71
72 if (!backup_file) {
73 backup_file = locate_backup(content->sys_name);
74 *backup_filep = backup_file;
75 }
76
77 if (st->ss->external && st->ss->recover_backup)
78 err = st->ss->recover_backup(st, content);
79 else
80 err = Grow_restart(st, content, fdlist, next_spare,
81 backup_file, verbose > 0);
82
83 while (next_spare > 0) {
84 next_spare--;
85 if (fdlist[next_spare] >= 0)
86 close(fdlist[next_spare]);
87 }
88 free(fdlist);
89 if (err) {
90 pr_err("Failed to restore critical section for reshape - sorry.\n");
91 if (!backup_file)
92 pr_err("Possibly you need to specify a --backup-file\n");
93 return 1;
94 }
95
96 dprintf("restore_backup() returns status OK.\n");
97 return 0;
98 }
99
100 int Grow_Add_device(char *devname, int fd, char *newdev)
101 {
102 /* Add a device to an active array.
103 * Currently, just extend a linear array.
104 * This requires writing a new superblock on the
105 * new device, calling the kernel to add the device,
106 * and if that succeeds, update the superblock on
107 * all other devices.
108 * This means that we need to *find* all other devices.
109 */
110 struct mdinfo info;
111
112 struct stat stb;
113 int nfd, fd2;
114 int d, nd;
115 struct supertype *st = NULL;
116 char *subarray = NULL;
117
118 if (md_get_array_info(fd, &info.array) < 0) {
119 pr_err("cannot get array info for %s\n", devname);
120 return 1;
121 }
122
123 if (info.array.level != -1) {
124 pr_err("can only add devices to linear arrays\n");
125 return 1;
126 }
127
128 st = super_by_fd(fd, &subarray);
129 if (!st) {
130 pr_err("cannot handle arrays with superblock version %d\n",
131 info.array.major_version);
132 return 1;
133 }
134
135 if (subarray) {
136 pr_err("Cannot grow linear sub-arrays yet\n");
137 free(subarray);
138 free(st);
139 return 1;
140 }
141
142 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
143 if (nfd < 0) {
144 pr_err("cannot open %s\n", newdev);
145 free(st);
146 return 1;
147 }
148 fstat(nfd, &stb);
149 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
150 pr_err("%s is not a block device!\n", newdev);
151 close(nfd);
152 free(st);
153 return 1;
154 }
155 /* now check out all the devices and make sure we can read the
156 * superblock */
157 for (d=0 ; d < info.array.raid_disks ; d++) {
158 mdu_disk_info_t disk;
159 char *dv;
160
161 st->ss->free_super(st);
162
163 disk.number = d;
164 if (md_get_disk_info(fd, &disk) < 0) {
165 pr_err("cannot get device detail for device %d\n",
166 d);
167 close(nfd);
168 free(st);
169 return 1;
170 }
171 dv = map_dev(disk.major, disk.minor, 1);
172 if (!dv) {
173 pr_err("cannot find device file for device %d\n",
174 d);
175 close(nfd);
176 free(st);
177 return 1;
178 }
179 fd2 = dev_open(dv, O_RDWR);
180 if (fd2 < 0) {
181 pr_err("cannot open device file %s\n", dv);
182 close(nfd);
183 free(st);
184 return 1;
185 }
186
187 if (st->ss->load_super(st, fd2, NULL)) {
188 pr_err("cannot find super block on %s\n", dv);
189 close(nfd);
190 close(fd2);
191 free(st);
192 return 1;
193 }
194 close(fd2);
195 }
196 /* Ok, looks good. Lets update the superblock and write it out to
197 * newdev.
198 */
199
200 info.disk.number = d;
201 info.disk.major = major(stb.st_rdev);
202 info.disk.minor = minor(stb.st_rdev);
203 info.disk.raid_disk = d;
204 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
205 st->ss->update_super(st, &info, "linear-grow-new", newdev,
206 0, 0, NULL);
207
208 if (st->ss->store_super(st, nfd)) {
209 pr_err("Cannot store new superblock on %s\n",
210 newdev);
211 close(nfd);
212 return 1;
213 }
214 close(nfd);
215
216 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
217 pr_err("Cannot add new disk to this array\n");
218 return 1;
219 }
220 /* Well, that seems to have worked.
221 * Now go through and update all superblocks
222 */
223
224 if (md_get_array_info(fd, &info.array) < 0) {
225 pr_err("cannot get array info for %s\n", devname);
226 return 1;
227 }
228
229 nd = d;
230 for (d=0 ; d < info.array.raid_disks ; d++) {
231 mdu_disk_info_t disk;
232 char *dv;
233
234 disk.number = d;
235 if (md_get_disk_info(fd, &disk) < 0) {
236 pr_err("cannot get device detail for device %d\n",
237 d);
238 return 1;
239 }
240 dv = map_dev(disk.major, disk.minor, 1);
241 if (!dv) {
242 pr_err("cannot find device file for device %d\n",
243 d);
244 return 1;
245 }
246 fd2 = dev_open(dv, O_RDWR);
247 if (fd2 < 0) {
248 pr_err("cannot open device file %s\n", dv);
249 return 1;
250 }
251 if (st->ss->load_super(st, fd2, NULL)) {
252 pr_err("cannot find super block on %s\n", dv);
253 close(fd);
254 return 1;
255 }
256 info.array.raid_disks = nd+1;
257 info.array.nr_disks = nd+1;
258 info.array.active_disks = nd+1;
259 info.array.working_disks = nd+1;
260
261 st->ss->update_super(st, &info, "linear-grow-update", dv,
262 0, 0, NULL);
263
264 if (st->ss->store_super(st, fd2)) {
265 pr_err("Cannot store new superblock on %s\n", dv);
266 close(fd2);
267 return 1;
268 }
269 close(fd2);
270 }
271
272 return 0;
273 }
274
275 int Grow_addbitmap(char *devname, int fd, struct context *c, struct shape *s)
276 {
277 /*
278 * First check that array doesn't have a bitmap
279 * Then create the bitmap
280 * Then add it
281 *
282 * For internal bitmaps, we need to check the version,
283 * find all the active devices, and write the bitmap block
284 * to all devices
285 */
286 mdu_bitmap_file_t bmf;
287 mdu_array_info_t array;
288 struct supertype *st;
289 char *subarray = NULL;
290 int major = BITMAP_MAJOR_HI;
291 int vers = md_get_version(fd);
292 unsigned long long bitmapsize, array_size;
293 struct mdinfo *mdi;
294
295 if (vers < 9003) {
296 major = BITMAP_MAJOR_HOSTENDIAN;
297 pr_err("Warning - bitmaps created on this kernel are not portable\n"
298 " between different architectures. Consider upgrading the Linux kernel.\n");
299 }
300
301 /*
302 * We only ever get called if s->bitmap_file is != NULL, so this check
303 * is just here to quiet down static code checkers.
304 */
305 if (!s->bitmap_file)
306 return 1;
307
308 if (strcmp(s->bitmap_file, "clustered") == 0)
309 major = BITMAP_MAJOR_CLUSTERED;
310
311 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
312 if (errno == ENOMEM)
313 pr_err("Memory allocation failure.\n");
314 else
315 pr_err("bitmaps not supported by this kernel.\n");
316 return 1;
317 }
318 if (bmf.pathname[0]) {
319 if (strcmp(s->bitmap_file,"none") == 0) {
320 if (ioctl(fd, SET_BITMAP_FILE, -1) != 0) {
321 pr_err("failed to remove bitmap %s\n",
322 bmf.pathname);
323 return 1;
324 }
325 return 0;
326 }
327 pr_err("%s already has a bitmap (%s)\n",
328 devname, bmf.pathname);
329 return 1;
330 }
331 if (md_get_array_info(fd, &array) != 0) {
332 pr_err("cannot get array status for %s\n", devname);
333 return 1;
334 }
335 if (array.state & (1 << MD_SB_BITMAP_PRESENT)) {
336 if (strcmp(s->bitmap_file, "none")==0) {
337 array.state &= ~(1 << MD_SB_BITMAP_PRESENT);
338 if (md_set_array_info(fd, &array) != 0) {
339 if (array.state & (1 << MD_SB_CLUSTERED))
340 pr_err("failed to remove clustered bitmap.\n");
341 else
342 pr_err("failed to remove internal bitmap.\n");
343 return 1;
344 }
345 return 0;
346 }
347 pr_err("bitmap already present on %s\n", devname);
348 return 1;
349 }
350
351 if (strcmp(s->bitmap_file, "none") == 0) {
352 pr_err("no bitmap found on %s\n", devname);
353 return 1;
354 }
355 if (array.level <= 0) {
356 pr_err("Bitmaps not meaningful with level %s\n",
357 map_num(pers, array.level)?:"of this array");
358 return 1;
359 }
360 bitmapsize = array.size;
361 bitmapsize <<= 1;
362 if (get_dev_size(fd, NULL, &array_size) &&
363 array_size > (0x7fffffffULL << 9)) {
364 /* Array is big enough that we cannot trust array.size
365 * try other approaches
366 */
367 bitmapsize = get_component_size(fd);
368 }
369 if (bitmapsize == 0) {
370 pr_err("Cannot reliably determine size of array to create bitmap - sorry.\n");
371 return 1;
372 }
373
374 if (array.level == 10) {
375 int ncopies;
376
377 ncopies = (array.layout & 255) * ((array.layout >> 8) & 255);
378 bitmapsize = bitmapsize * array.raid_disks / ncopies;
379 }
380
381 st = super_by_fd(fd, &subarray);
382 if (!st) {
383 pr_err("Cannot understand version %d.%d\n",
384 array.major_version, array.minor_version);
385 return 1;
386 }
387 if (subarray) {
388 pr_err("Cannot add bitmaps to sub-arrays yet\n");
389 free(subarray);
390 free(st);
391 return 1;
392 }
393
394 mdi = sysfs_read(fd, NULL, GET_CONSISTENCY_POLICY);
395 if (mdi) {
396 if (mdi->consistency_policy == CONSISTENCY_POLICY_PPL) {
397 pr_err("Cannot add bitmap to array with PPL\n");
398 free(mdi);
399 free(st);
400 return 1;
401 }
402 free(mdi);
403 }
404
405 if (strcmp(s->bitmap_file, "internal") == 0 ||
406 strcmp(s->bitmap_file, "clustered") == 0) {
407 int rv;
408 int d;
409 int offset_setable = 0;
410 if (st->ss->add_internal_bitmap == NULL) {
411 pr_err("Internal bitmaps not supported with %s metadata\n", st->ss->name);
412 return 1;
413 }
414 st->nodes = c->nodes;
415 st->cluster_name = c->homecluster;
416 mdi = sysfs_read(fd, NULL, GET_BITMAP_LOCATION);
417 if (mdi)
418 offset_setable = 1;
419 for (d = 0; d < st->max_devs; d++) {
420 mdu_disk_info_t disk;
421 char *dv;
422 int fd2;
423
424 disk.number = d;
425 if (md_get_disk_info(fd, &disk) < 0)
426 continue;
427 if (disk.major == 0 && disk.minor == 0)
428 continue;
429 if ((disk.state & (1 << MD_DISK_SYNC)) == 0)
430 continue;
431 dv = map_dev(disk.major, disk.minor, 1);
432 if (!dv)
433 continue;
434 fd2 = dev_open(dv, O_RDWR);
435 if (fd2 < 0)
436 continue;
437 rv = st->ss->load_super(st, fd2, NULL);
438 if (!rv) {
439 rv = st->ss->add_internal_bitmap(
440 st, &s->bitmap_chunk, c->delay,
441 s->write_behind, bitmapsize,
442 offset_setable, major);
443 if (!rv) {
444 st->ss->write_bitmap(st, fd2,
445 NodeNumUpdate);
446 } else {
447 pr_err("failed to create internal bitmap - chunksize problem.\n");
448 }
449 } else {
450 pr_err("failed to load super-block.\n");
451 }
452 close(fd2);
453 if (rv)
454 return 1;
455 }
456 if (offset_setable) {
457 st->ss->getinfo_super(st, mdi, NULL);
458 sysfs_init(mdi, fd, NULL);
459 rv = sysfs_set_num_signed(mdi, NULL, "bitmap/location",
460 mdi->bitmap_offset);
461 free(mdi);
462 } else {
463 if (strcmp(s->bitmap_file, "clustered") == 0)
464 array.state |= (1 << MD_SB_CLUSTERED);
465 array.state |= (1 << MD_SB_BITMAP_PRESENT);
466 rv = md_set_array_info(fd, &array);
467 }
468 if (rv < 0) {
469 if (errno == EBUSY)
470 pr_err("Cannot add bitmap while array is resyncing or reshaping etc.\n");
471 pr_err("failed to set internal bitmap.\n");
472 return 1;
473 }
474 } else {
475 int uuid[4];
476 int bitmap_fd;
477 int d;
478 int max_devs = st->max_devs;
479
480 /* try to load a superblock */
481 for (d = 0; d < max_devs; d++) {
482 mdu_disk_info_t disk;
483 char *dv;
484 int fd2;
485 disk.number = d;
486 if (md_get_disk_info(fd, &disk) < 0)
487 continue;
488 if ((disk.major==0 && disk.minor == 0) ||
489 (disk.state & (1 << MD_DISK_REMOVED)))
490 continue;
491 dv = map_dev(disk.major, disk.minor, 1);
492 if (!dv)
493 continue;
494 fd2 = dev_open(dv, O_RDONLY);
495 if (fd2 >= 0) {
496 if (st->ss->load_super(st, fd2, NULL) == 0) {
497 close(fd2);
498 st->ss->uuid_from_super(st, uuid);
499 break;
500 }
501 close(fd2);
502 }
503 }
504 if (d == max_devs) {
505 pr_err("cannot find UUID for array!\n");
506 return 1;
507 }
508 if (CreateBitmap(s->bitmap_file, c->force, (char*)uuid,
509 s->bitmap_chunk, c->delay, s->write_behind,
510 bitmapsize, major)) {
511 return 1;
512 }
513 bitmap_fd = open(s->bitmap_file, O_RDWR);
514 if (bitmap_fd < 0) {
515 pr_err("weird: %s cannot be opened\n", s->bitmap_file);
516 return 1;
517 }
518 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
519 int err = errno;
520 if (errno == EBUSY)
521 pr_err("Cannot add bitmap while array is resyncing or reshaping etc.\n");
522 pr_err("Cannot set bitmap file for %s: %s\n",
523 devname, strerror(err));
524 return 1;
525 }
526 }
527
528 return 0;
529 }
530
531 int Grow_consistency_policy(char *devname, int fd, struct context *c, struct shape *s)
532 {
533 struct supertype *st;
534 struct mdinfo *sra;
535 struct mdinfo *sd;
536 char *subarray = NULL;
537 int ret = 0;
538 char container_dev[PATH_MAX];
539
540 if (s->consistency_policy != CONSISTENCY_POLICY_RESYNC &&
541 s->consistency_policy != CONSISTENCY_POLICY_PPL) {
542 pr_err("Operation not supported for consistency policy %s\n",
543 map_num(consistency_policies, s->consistency_policy));
544 return 1;
545 }
546
547 st = super_by_fd(fd, &subarray);
548 if (!st)
549 return 1;
550
551 sra = sysfs_read(fd, NULL, GET_CONSISTENCY_POLICY|GET_LEVEL|
552 GET_DEVS|GET_STATE);
553 if (!sra) {
554 ret = 1;
555 goto free_st;
556 }
557
558 if (s->consistency_policy == CONSISTENCY_POLICY_PPL &&
559 !st->ss->write_init_ppl) {
560 pr_err("%s metadata does not support PPL\n", st->ss->name);
561 ret = 1;
562 goto free_info;
563 }
564
565 if (sra->array.level != 5) {
566 pr_err("Operation not supported for array level %d\n",
567 sra->array.level);
568 ret = 1;
569 goto free_info;
570 }
571
572 if (sra->consistency_policy == (unsigned)s->consistency_policy) {
573 pr_err("Consistency policy is already %s\n",
574 map_num(consistency_policies, s->consistency_policy));
575 ret = 1;
576 goto free_info;
577 } else if (sra->consistency_policy != CONSISTENCY_POLICY_RESYNC &&
578 sra->consistency_policy != CONSISTENCY_POLICY_PPL) {
579 pr_err("Current consistency policy is %s, cannot change to %s\n",
580 map_num(consistency_policies, sra->consistency_policy),
581 map_num(consistency_policies, s->consistency_policy));
582 ret = 1;
583 goto free_info;
584 }
585
586 if (subarray) {
587 char *update;
588
589 if (s->consistency_policy == CONSISTENCY_POLICY_PPL)
590 update = "ppl";
591 else
592 update = "no-ppl";
593
594 sprintf(container_dev, "/dev/%s", st->container_devnm);
595
596 ret = Update_subarray(container_dev, subarray, update, NULL,
597 c->verbose);
598 if (ret)
599 goto free_info;
600 }
601
602 if (s->consistency_policy == CONSISTENCY_POLICY_PPL) {
603 struct mdinfo info;
604
605 if (subarray) {
606 struct mdinfo *mdi;
607 int cfd;
608
609 cfd = open(container_dev, O_RDWR|O_EXCL);
610 if (cfd < 0) {
611 pr_err("Failed to open %s\n", container_dev);
612 ret = 1;
613 goto free_info;
614 }
615
616 ret = st->ss->load_container(st, cfd, st->container_devnm);
617 close(cfd);
618
619 if (ret) {
620 pr_err("Cannot read superblock for %s\n",
621 container_dev);
622 goto free_info;
623 }
624
625 mdi = st->ss->container_content(st, subarray);
626 info = *mdi;
627 free(mdi);
628 }
629
630 for (sd = sra->devs; sd; sd = sd->next) {
631 int dfd;
632 char *devpath;
633
634 if ((sd->disk.state & (1 << MD_DISK_SYNC)) == 0)
635 continue;
636
637 devpath = map_dev(sd->disk.major, sd->disk.minor, 0);
638 dfd = dev_open(devpath, O_RDWR);
639 if (dfd < 0) {
640 pr_err("Failed to open %s\n", devpath);
641 ret = 1;
642 goto free_info;
643 }
644
645 if (!subarray) {
646 ret = st->ss->load_super(st, dfd, NULL);
647 if (ret) {
648 pr_err("Failed to load super-block.\n");
649 close(dfd);
650 goto free_info;
651 }
652
653 ret = st->ss->update_super(st, sra, "ppl", devname,
654 c->verbose, 0, NULL);
655 if (ret) {
656 close(dfd);
657 st->ss->free_super(st);
658 goto free_info;
659 }
660 st->ss->getinfo_super(st, &info, NULL);
661 }
662
663 ret |= sysfs_set_num(sra, sd, "ppl_sector", info.ppl_sector);
664 ret |= sysfs_set_num(sra, sd, "ppl_size", info.ppl_size);
665
666 if (ret) {
667 pr_err("Failed to set PPL attributes for %s\n",
668 sd->sys_name);
669 close(dfd);
670 st->ss->free_super(st);
671 goto free_info;
672 }
673
674 ret = st->ss->write_init_ppl(st, &info, dfd);
675 if (ret)
676 pr_err("Failed to write PPL\n");
677
678 close(dfd);
679
680 if (!subarray)
681 st->ss->free_super(st);
682
683 if (ret)
684 goto free_info;
685 }
686 }
687
688 ret = sysfs_set_str(sra, NULL, "consistency_policy",
689 map_num(consistency_policies,
690 s->consistency_policy));
691 if (ret)
692 pr_err("Failed to change array consistency policy\n");
693
694 free_info:
695 sysfs_free(sra);
696 free_st:
697 free(st);
698 free(subarray);
699
700 return ret;
701 }
702
703 /*
704 * When reshaping an array we might need to backup some data.
705 * This is written to all spares with a 'super_block' describing it.
706 * The superblock goes 4K from the end of the used space on the
707 * device.
708 * It if written after the backup is complete.
709 * It has the following structure.
710 */
711
712 static struct mdp_backup_super {
713 char magic[16]; /* md_backup_data-1 or -2 */
714 __u8 set_uuid[16];
715 __u64 mtime;
716 /* start/sizes in 512byte sectors */
717 __u64 devstart; /* address on backup device/file of data */
718 __u64 arraystart;
719 __u64 length;
720 __u32 sb_csum; /* csum of preceeding bytes. */
721 __u32 pad1;
722 __u64 devstart2; /* offset in to data of second section */
723 __u64 arraystart2;
724 __u64 length2;
725 __u32 sb_csum2; /* csum of preceeding bytes. */
726 __u8 pad[512-68-32];
727 } __attribute__((aligned(512))) bsb, bsb2;
728
729 static __u32 bsb_csum(char *buf, int len)
730 {
731 int i;
732 int csum = 0;
733 for (i = 0; i < len; i++)
734 csum = (csum<<3) + buf[0];
735 return __cpu_to_le32(csum);
736 }
737
738 static int check_idle(struct supertype *st)
739 {
740 /* Check that all member arrays for this container, or the
741 * container of this array, are idle
742 */
743 char *container = (st->container_devnm[0]
744 ? st->container_devnm : st->devnm);
745 struct mdstat_ent *ent, *e;
746 int is_idle = 1;
747
748 ent = mdstat_read(0, 0);
749 for (e = ent ; e; e = e->next) {
750 if (!is_container_member(e, container))
751 continue;
752 if (e->percent >= 0) {
753 is_idle = 0;
754 break;
755 }
756 }
757 free_mdstat(ent);
758 return is_idle;
759 }
760
761 static int freeze_container(struct supertype *st)
762 {
763 char *container = (st->container_devnm[0]
764 ? st->container_devnm : st->devnm);
765
766 if (!check_idle(st))
767 return -1;
768
769 if (block_monitor(container, 1)) {
770 pr_err("failed to freeze container\n");
771 return -2;
772 }
773
774 return 1;
775 }
776
777 static void unfreeze_container(struct supertype *st)
778 {
779 char *container = (st->container_devnm[0]
780 ? st->container_devnm : st->devnm);
781
782 unblock_monitor(container, 1);
783 }
784
785 static int freeze(struct supertype *st)
786 {
787 /* Try to freeze resync/rebuild on this array/container.
788 * Return -1 if the array is busy,
789 * return -2 container cannot be frozen,
790 * return 0 if this kernel doesn't support 'frozen'
791 * return 1 if it worked.
792 */
793 if (st->ss->external)
794 return freeze_container(st);
795 else {
796 struct mdinfo *sra = sysfs_read(-1, st->devnm, GET_VERSION);
797 int err;
798 char buf[20];
799
800 if (!sra)
801 return -1;
802 /* Need to clear any 'read-auto' status */
803 if (sysfs_get_str(sra, NULL, "array_state", buf, 20) > 0 &&
804 strncmp(buf, "read-auto", 9) == 0)
805 sysfs_set_str(sra, NULL, "array_state", "clean");
806
807 err = sysfs_freeze_array(sra);
808 sysfs_free(sra);
809 return err;
810 }
811 }
812
813 static void unfreeze(struct supertype *st)
814 {
815 if (st->ss->external)
816 return unfreeze_container(st);
817 else {
818 struct mdinfo *sra = sysfs_read(-1, st->devnm, GET_VERSION);
819 char buf[20];
820
821 if (sra &&
822 sysfs_get_str(sra, NULL, "sync_action", buf, 20) > 0
823 && strcmp(buf, "frozen\n") == 0)
824 sysfs_set_str(sra, NULL, "sync_action", "idle");
825 sysfs_free(sra);
826 }
827 }
828
829 static void wait_reshape(struct mdinfo *sra)
830 {
831 int fd = sysfs_get_fd(sra, NULL, "sync_action");
832 char action[20];
833
834 if (fd < 0)
835 return;
836
837 while (sysfs_fd_get_str(fd, action, 20) > 0 &&
838 strncmp(action, "reshape", 7) == 0)
839 sysfs_wait(fd, NULL);
840 close(fd);
841 }
842
843 static int reshape_super(struct supertype *st, unsigned long long size,
844 int level, int layout, int chunksize, int raid_disks,
845 int delta_disks, char *backup_file, char *dev,
846 int direction, int verbose)
847 {
848 /* nothing extra to check in the native case */
849 if (!st->ss->external)
850 return 0;
851 if (!st->ss->reshape_super ||
852 !st->ss->manage_reshape) {
853 pr_err("%s metadata does not support reshape\n",
854 st->ss->name);
855 return 1;
856 }
857
858 return st->ss->reshape_super(st, size, level, layout, chunksize,
859 raid_disks, delta_disks, backup_file, dev,
860 direction, verbose);
861 }
862
863 static void sync_metadata(struct supertype *st)
864 {
865 if (st->ss->external) {
866 if (st->update_tail) {
867 flush_metadata_updates(st);
868 st->update_tail = &st->updates;
869 } else
870 st->ss->sync_metadata(st);
871 }
872 }
873
874 static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
875 {
876 /* when dealing with external metadata subarrays we need to be
877 * prepared to handle EAGAIN. The kernel may need to wait for
878 * mdmon to mark the array active so the kernel can handle
879 * allocations/writeback when preparing the reshape action
880 * (md_allow_write()). We temporarily disable safe_mode_delay
881 * to close a race with the array_state going clean before the
882 * next write to raid_disks / stripe_cache_size
883 */
884 char safe[50];
885 int rc;
886
887 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
888 if (!container ||
889 (strcmp(name, "raid_disks") != 0 &&
890 strcmp(name, "stripe_cache_size") != 0))
891 return sysfs_set_num(sra, NULL, name, n);
892
893 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
894 if (rc <= 0)
895 return -1;
896 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
897 rc = sysfs_set_num(sra, NULL, name, n);
898 if (rc < 0 && errno == EAGAIN) {
899 ping_monitor(container);
900 /* if we get EAGAIN here then the monitor is not active
901 * so stop trying
902 */
903 rc = sysfs_set_num(sra, NULL, name, n);
904 }
905 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
906 return rc;
907 }
908
909 int start_reshape(struct mdinfo *sra, int already_running,
910 int before_data_disks, int data_disks)
911 {
912 int err;
913 unsigned long long sync_max_to_set;
914
915 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
916 err = sysfs_set_num(sra, NULL, "suspend_hi", sra->reshape_progress);
917 err = err ?: sysfs_set_num(sra, NULL, "suspend_lo",
918 sra->reshape_progress);
919 if (before_data_disks <= data_disks)
920 sync_max_to_set = sra->reshape_progress / data_disks;
921 else
922 sync_max_to_set = (sra->component_size * data_disks
923 - sra->reshape_progress) / data_disks;
924 if (!already_running)
925 sysfs_set_num(sra, NULL, "sync_min", sync_max_to_set);
926 err = err ?: sysfs_set_num(sra, NULL, "sync_max", sync_max_to_set);
927 if (!already_running && err == 0) {
928 int cnt = 5;
929 do {
930 err = sysfs_set_str(sra, NULL, "sync_action", "reshape");
931 if (err)
932 sleep(1);
933 } while (err && errno == EBUSY && cnt-- > 0);
934 }
935 return err;
936 }
937
938 void abort_reshape(struct mdinfo *sra)
939 {
940 sysfs_set_str(sra, NULL, "sync_action", "idle");
941 /*
942 * Prior to kernel commit: 23ddff3792f6 ("md: allow suspend_lo and
943 * suspend_hi to decrease as well as increase.")
944 * you could only increase suspend_{lo,hi} unless the region they
945 * covered was empty. So to reset to 0, you need to push suspend_lo
946 * up past suspend_hi first. So to maximize the chance of mdadm
947 * working on all kernels, we want to keep doing that.
948 */
949 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
950 sysfs_set_num(sra, NULL, "suspend_hi", 0);
951 sysfs_set_num(sra, NULL, "suspend_lo", 0);
952 sysfs_set_num(sra, NULL, "sync_min", 0);
953 // It isn't safe to reset sync_max as we aren't monitoring.
954 // Array really should be stopped at this point.
955 }
956
957 int remove_disks_for_takeover(struct supertype *st,
958 struct mdinfo *sra,
959 int layout)
960 {
961 int nr_of_copies;
962 struct mdinfo *remaining;
963 int slot;
964
965 if (st->ss->external) {
966 int rv = 0;
967 struct mdinfo *arrays = st->ss->container_content(st, NULL);
968 /*
969 * containter_content returns list of arrays in container
970 * If arrays->next is not NULL it means that there are
971 * 2 arrays in container and operation should be blocked
972 */
973 if (arrays) {
974 if (arrays->next)
975 rv = 1;
976 sysfs_free(arrays);
977 if (rv) {
978 pr_err("Error. Cannot perform operation on /dev/%s\n", st->devnm);
979 pr_err("For this operation it MUST be single array in container\n");
980 return rv;
981 }
982 }
983 }
984
985 if (sra->array.level == 10)
986 nr_of_copies = layout & 0xff;
987 else if (sra->array.level == 1)
988 nr_of_copies = sra->array.raid_disks;
989 else
990 return 1;
991
992 remaining = sra->devs;
993 sra->devs = NULL;
994 /* for each 'copy', select one device and remove from the list. */
995 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
996 struct mdinfo **diskp;
997 int found = 0;
998
999 /* Find a working device to keep */
1000 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
1001 struct mdinfo *disk = *diskp;
1002
1003 if (disk->disk.raid_disk < slot)
1004 continue;
1005 if (disk->disk.raid_disk >= slot + nr_of_copies)
1006 continue;
1007 if (disk->disk.state & (1<<MD_DISK_REMOVED))
1008 continue;
1009 if (disk->disk.state & (1<<MD_DISK_FAULTY))
1010 continue;
1011 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
1012 continue;
1013
1014 /* We have found a good disk to use! */
1015 *diskp = disk->next;
1016 disk->next = sra->devs;
1017 sra->devs = disk;
1018 found = 1;
1019 break;
1020 }
1021 if (!found)
1022 break;
1023 }
1024
1025 if (slot < sra->array.raid_disks) {
1026 /* didn't find all slots */
1027 struct mdinfo **e;
1028 e = &remaining;
1029 while (*e)
1030 e = &(*e)->next;
1031 *e = sra->devs;
1032 sra->devs = remaining;
1033 return 1;
1034 }
1035
1036 /* Remove all 'remaining' devices from the array */
1037 while (remaining) {
1038 struct mdinfo *sd = remaining;
1039 remaining = sd->next;
1040
1041 sysfs_set_str(sra, sd, "state", "faulty");
1042 sysfs_set_str(sra, sd, "slot", "none");
1043 /* for external metadata disks should be removed in mdmon */
1044 if (!st->ss->external)
1045 sysfs_set_str(sra, sd, "state", "remove");
1046 sd->disk.state |= (1<<MD_DISK_REMOVED);
1047 sd->disk.state &= ~(1<<MD_DISK_SYNC);
1048 sd->next = sra->devs;
1049 sra->devs = sd;
1050 }
1051 return 0;
1052 }
1053
1054 void reshape_free_fdlist(int *fdlist,
1055 unsigned long long *offsets,
1056 int size)
1057 {
1058 int i;
1059
1060 for (i = 0; i < size; i++)
1061 if (fdlist[i] >= 0)
1062 close(fdlist[i]);
1063
1064 free(fdlist);
1065 free(offsets);
1066 }
1067
1068 int reshape_prepare_fdlist(char *devname,
1069 struct mdinfo *sra,
1070 int raid_disks,
1071 int nrdisks,
1072 unsigned long blocks,
1073 char *backup_file,
1074 int *fdlist,
1075 unsigned long long *offsets)
1076 {
1077 int d = 0;
1078 struct mdinfo *sd;
1079
1080 enable_fds(nrdisks);
1081 for (d = 0; d <= nrdisks; d++)
1082 fdlist[d] = -1;
1083 d = raid_disks;
1084 for (sd = sra->devs; sd; sd = sd->next) {
1085 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1086 continue;
1087 if (sd->disk.state & (1<<MD_DISK_SYNC) &&
1088 sd->disk.raid_disk < raid_disks) {
1089 char *dn = map_dev(sd->disk.major,
1090 sd->disk.minor, 1);
1091 fdlist[sd->disk.raid_disk]
1092 = dev_open(dn, O_RDONLY);
1093 offsets[sd->disk.raid_disk] = sd->data_offset*512;
1094 if (fdlist[sd->disk.raid_disk] < 0) {
1095 pr_err("%s: cannot open component %s\n",
1096 devname, dn ? dn : "-unknown-");
1097 d = -1;
1098 goto release;
1099 }
1100 } else if (backup_file == NULL) {
1101 /* spare */
1102 char *dn = map_dev(sd->disk.major,
1103 sd->disk.minor, 1);
1104 fdlist[d] = dev_open(dn, O_RDWR);
1105 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
1106 if (fdlist[d] < 0) {
1107 pr_err("%s: cannot open component %s\n",
1108 devname, dn ? dn : "-unknown-");
1109 d = -1;
1110 goto release;
1111 }
1112 d++;
1113 }
1114 }
1115 release:
1116 return d;
1117 }
1118
1119 int reshape_open_backup_file(char *backup_file,
1120 int fd,
1121 char *devname,
1122 long blocks,
1123 int *fdlist,
1124 unsigned long long *offsets,
1125 char *sys_name,
1126 int restart)
1127 {
1128 /* Return 1 on success, 0 on any form of failure */
1129 /* need to check backup file is large enough */
1130 char buf[512];
1131 struct stat stb;
1132 unsigned int dev;
1133 int i;
1134
1135 *fdlist = open(backup_file, O_RDWR|O_CREAT|(restart ? O_TRUNC : O_EXCL),
1136 S_IRUSR | S_IWUSR);
1137 *offsets = 8 * 512;
1138 if (*fdlist < 0) {
1139 pr_err("%s: cannot create backup file %s: %s\n",
1140 devname, backup_file, strerror(errno));
1141 return 0;
1142 }
1143 /* Guard against backup file being on array device.
1144 * If array is partitioned or if LVM etc is in the
1145 * way this will not notice, but it is better than
1146 * nothing.
1147 */
1148 fstat(*fdlist, &stb);
1149 dev = stb.st_dev;
1150 fstat(fd, &stb);
1151 if (stb.st_rdev == dev) {
1152 pr_err("backup file must NOT be on the array being reshaped.\n");
1153 close(*fdlist);
1154 return 0;
1155 }
1156
1157 memset(buf, 0, 512);
1158 for (i=0; i < blocks + 8 ; i++) {
1159 if (write(*fdlist, buf, 512) != 512) {
1160 pr_err("%s: cannot create backup file %s: %s\n",
1161 devname, backup_file, strerror(errno));
1162 return 0;
1163 }
1164 }
1165 if (fsync(*fdlist) != 0) {
1166 pr_err("%s: cannot create backup file %s: %s\n",
1167 devname, backup_file, strerror(errno));
1168 return 0;
1169 }
1170
1171 if (!restart && strncmp(backup_file, MAP_DIR, strlen(MAP_DIR)) != 0) {
1172 char *bu = make_backup(sys_name);
1173 if (symlink(backup_file, bu))
1174 pr_err("Recording backup file in " MAP_DIR " failed: %s\n",
1175 strerror(errno));
1176 free(bu);
1177 }
1178
1179 return 1;
1180 }
1181
1182 unsigned long compute_backup_blocks(int nchunk, int ochunk,
1183 unsigned int ndata, unsigned int odata)
1184 {
1185 unsigned long a, b, blocks;
1186 /* So how much do we need to backup.
1187 * We need an amount of data which is both a whole number of
1188 * old stripes and a whole number of new stripes.
1189 * So LCM for (chunksize*datadisks).
1190 */
1191 a = (ochunk/512) * odata;
1192 b = (nchunk/512) * ndata;
1193 /* Find GCD */
1194 a = GCD(a, b);
1195 /* LCM == product / GCD */
1196 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
1197
1198 return blocks;
1199 }
1200
1201 char *analyse_change(char *devname, struct mdinfo *info, struct reshape *re)
1202 {
1203 /* Based on the current array state in info->array and
1204 * the changes in info->new_* etc, determine:
1205 * - whether the change is possible
1206 * - Intermediate level/raid_disks/layout
1207 * - whether a restriping reshape is needed
1208 * - number of sectors in minimum change unit. This
1209 * will cover a whole number of stripes in 'before' and
1210 * 'after'.
1211 *
1212 * Return message if the change should be rejected
1213 * NULL if the change can be achieved
1214 *
1215 * This can be called as part of starting a reshape, or
1216 * when assembling an array that is undergoing reshape.
1217 */
1218 int near, far, offset, copies;
1219 int new_disks;
1220 int old_chunk, new_chunk;
1221 /* delta_parity records change in number of devices
1222 * caused by level change
1223 */
1224 int delta_parity = 0;
1225
1226 memset(re, 0, sizeof(*re));
1227
1228 /* If a new level not explicitly given, we assume no-change */
1229 if (info->new_level == UnSet)
1230 info->new_level = info->array.level;
1231
1232 if (info->new_chunk)
1233 switch (info->new_level) {
1234 case 0:
1235 case 4:
1236 case 5:
1237 case 6:
1238 case 10:
1239 /* chunk size is meaningful, must divide component_size
1240 * evenly
1241 */
1242 if (info->component_size % (info->new_chunk/512)) {
1243 unsigned long long shrink = info->component_size;
1244 shrink &= ~(unsigned long long)(info->new_chunk/512-1);
1245 pr_err("New chunk size (%dK) does not evenly divide device size (%lluk)\n",
1246 info->new_chunk/1024, info->component_size/2);
1247 pr_err("After shrinking any filesystem, \"mdadm --grow %s --size %llu\"\n",
1248 devname, shrink/2);
1249 pr_err("will shrink the array so the given chunk size would work.\n");
1250 return "";
1251 }
1252 break;
1253 default:
1254 return "chunk size not meaningful for this level";
1255 }
1256 else
1257 info->new_chunk = info->array.chunk_size;
1258
1259 switch (info->array.level) {
1260 default:
1261 return "No reshape is possibly for this RAID level";
1262 case LEVEL_LINEAR:
1263 if (info->delta_disks != UnSet)
1264 return "Only --add is supported for LINEAR, setting --raid-disks is not needed";
1265 else
1266 return "Only --add is supported for LINEAR, other --grow options are not meaningful";
1267 case 1:
1268 /* RAID1 can convert to RAID1 with different disks, or
1269 * raid5 with 2 disks, or
1270 * raid0 with 1 disk
1271 */
1272 if (info->new_level > 1 && (info->component_size & 7))
1273 return "Cannot convert RAID1 of this size - reduce size to multiple of 4K first.";
1274 if (info->new_level == 0) {
1275 if (info->delta_disks != UnSet &&
1276 info->delta_disks != 0)
1277 return "Cannot change number of disks with RAID1->RAID0 conversion";
1278 re->level = 0;
1279 re->before.data_disks = 1;
1280 re->after.data_disks = 1;
1281 return NULL;
1282 }
1283 if (info->new_level == 1) {
1284 if (info->delta_disks == UnSet)
1285 /* Don't know what to do */
1286 return "no change requested for Growing RAID1";
1287 re->level = 1;
1288 return NULL;
1289 }
1290 if (info->array.raid_disks != 2 && info->new_level == 5)
1291 return "Can only convert a 2-device array to RAID5";
1292 if (info->array.raid_disks == 2 && info->new_level == 5) {
1293 re->level = 5;
1294 re->before.data_disks = 1;
1295 if (info->delta_disks != UnSet &&
1296 info->delta_disks != 0)
1297 re->after.data_disks = 1 + info->delta_disks;
1298 else
1299 re->after.data_disks = 1;
1300 if (re->after.data_disks < 1)
1301 return "Number of disks too small for RAID5";
1302
1303 re->before.layout = ALGORITHM_LEFT_SYMMETRIC;
1304 info->array.chunk_size = 65536;
1305 break;
1306 }
1307 /* Could do some multi-stage conversions, but leave that to
1308 * later.
1309 */
1310 return "Impossibly level change request for RAID1";
1311
1312 case 10:
1313 /* RAID10 can be converted from near mode to
1314 * RAID0 by removing some devices.
1315 * It can also be reshaped if the kernel supports
1316 * new_data_offset.
1317 */
1318 switch (info->new_level) {
1319 case 0:
1320 if ((info->array.layout & ~0xff) != 0x100)
1321 return "Cannot Grow RAID10 with far/offset layout";
1322 /* number of devices must be multiple of number of copies */
1323 if (info->array.raid_disks % (info->array.layout & 0xff))
1324 return "RAID10 layout too complex for Grow operation";
1325
1326 new_disks = (info->array.raid_disks
1327 / (info->array.layout & 0xff));
1328 if (info->delta_disks == UnSet)
1329 info->delta_disks = (new_disks
1330 - info->array.raid_disks);
1331
1332 if (info->delta_disks != new_disks - info->array.raid_disks)
1333 return "New number of raid-devices impossible for RAID10";
1334 if (info->new_chunk &&
1335 info->new_chunk != info->array.chunk_size)
1336 return "Cannot change chunk-size with RAID10 Grow";
1337
1338 /* looks good */
1339 re->level = 0;
1340 re->before.data_disks = new_disks;
1341 re->after.data_disks = re->before.data_disks;
1342 return NULL;
1343
1344 case 10:
1345 near = info->array.layout & 0xff;
1346 far = (info->array.layout >> 8) & 0xff;
1347 offset = info->array.layout & 0x10000;
1348 if (far > 1 && !offset)
1349 return "Cannot reshape RAID10 in far-mode";
1350 copies = near * far;
1351
1352 old_chunk = info->array.chunk_size * far;
1353
1354 if (info->new_layout == UnSet)
1355 info->new_layout = info->array.layout;
1356 else {
1357 near = info->new_layout & 0xff;
1358 far = (info->new_layout >> 8) & 0xff;
1359 offset = info->new_layout & 0x10000;
1360 if (far > 1 && !offset)
1361 return "Cannot reshape RAID10 to far-mode";
1362 if (near * far != copies)
1363 return "Cannot change number of copies when reshaping RAID10";
1364 }
1365 if (info->delta_disks == UnSet)
1366 info->delta_disks = 0;
1367 new_disks = (info->array.raid_disks +
1368 info->delta_disks);
1369
1370 new_chunk = info->new_chunk * far;
1371
1372 re->level = 10;
1373 re->before.layout = info->array.layout;
1374 re->before.data_disks = info->array.raid_disks;
1375 re->after.layout = info->new_layout;
1376 re->after.data_disks = new_disks;
1377 /* For RAID10 we don't do backup but do allow reshape,
1378 * so set backup_blocks to INVALID_SECTORS rather than
1379 * zero.
1380 * And there is no need to synchronise stripes on both
1381 * 'old' and 'new'. So the important
1382 * number is the minimum data_offset difference
1383 * which is the larger of (offset copies * chunk).
1384 */
1385 re->backup_blocks = INVALID_SECTORS;
1386 re->min_offset_change = max(old_chunk, new_chunk) / 512;
1387 if (new_disks < re->before.data_disks &&
1388 info->space_after < re->min_offset_change)
1389 /* Reduce component size by one chunk */
1390 re->new_size = (info->component_size -
1391 re->min_offset_change);
1392 else
1393 re->new_size = info->component_size;
1394 re->new_size = re->new_size * new_disks / copies;
1395 return NULL;
1396
1397 default:
1398 return "RAID10 can only be changed to RAID0";
1399 }
1400 case 0:
1401 /* RAID0 can be converted to RAID10, or to RAID456 */
1402 if (info->new_level == 10) {
1403 if (info->new_layout == UnSet &&
1404 info->delta_disks == UnSet) {
1405 /* Assume near=2 layout */
1406 info->new_layout = 0x102;
1407 info->delta_disks = info->array.raid_disks;
1408 }
1409 if (info->new_layout == UnSet) {
1410 int copies = 1 + (info->delta_disks
1411 / info->array.raid_disks);
1412 if (info->array.raid_disks * (copies-1)
1413 != info->delta_disks)
1414 return "Impossible number of devices for RAID0->RAID10";
1415 info->new_layout = 0x100 + copies;
1416 }
1417 if (info->delta_disks == UnSet) {
1418 int copies = info->new_layout & 0xff;
1419 if (info->new_layout != 0x100 + copies)
1420 return "New layout impossible for RAID0->RAID10";;
1421 info->delta_disks = (copies - 1) *
1422 info->array.raid_disks;
1423 }
1424 if (info->new_chunk &&
1425 info->new_chunk != info->array.chunk_size)
1426 return "Cannot change chunk-size with RAID0->RAID10";
1427 /* looks good */
1428 re->level = 10;
1429 re->before.data_disks = (info->array.raid_disks +
1430 info->delta_disks);
1431 re->after.data_disks = re->before.data_disks;
1432 re->before.layout = info->new_layout;
1433 return NULL;
1434 }
1435
1436 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1437 * a raid4 style layout of the final level.
1438 */
1439 switch (info->new_level) {
1440 case 4:
1441 delta_parity = 1;
1442 case 0:
1443 re->level = 4;
1444 re->before.layout = 0;
1445 break;
1446 case 5:
1447 delta_parity = 1;
1448 re->level = 5;
1449 re->before.layout = ALGORITHM_PARITY_N;
1450 if (info->new_layout == UnSet)
1451 info->new_layout = map_name(r5layout, "default");
1452 break;
1453 case 6:
1454 delta_parity = 2;
1455 re->level = 6;
1456 re->before.layout = ALGORITHM_PARITY_N;
1457 if (info->new_layout == UnSet)
1458 info->new_layout = map_name(r6layout, "default");
1459 break;
1460 default:
1461 return "Impossible level change requested";
1462 }
1463 re->before.data_disks = info->array.raid_disks;
1464 /* determining 'after' layout happens outside this 'switch' */
1465 break;
1466
1467 case 4:
1468 info->array.layout = ALGORITHM_PARITY_N;
1469 case 5:
1470 switch (info->new_level) {
1471 case 0:
1472 delta_parity = -1;
1473 case 4:
1474 re->level = info->array.level;
1475 re->before.data_disks = info->array.raid_disks - 1;
1476 re->before.layout = info->array.layout;
1477 break;
1478 case 5:
1479 re->level = 5;
1480 re->before.data_disks = info->array.raid_disks - 1;
1481 re->before.layout = info->array.layout;
1482 break;
1483 case 6:
1484 delta_parity = 1;
1485 re->level = 6;
1486 re->before.data_disks = info->array.raid_disks - 1;
1487 switch (info->array.layout) {
1488 case ALGORITHM_LEFT_ASYMMETRIC:
1489 re->before.layout = ALGORITHM_LEFT_ASYMMETRIC_6;
1490 break;
1491 case ALGORITHM_RIGHT_ASYMMETRIC:
1492 re->before.layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
1493 break;
1494 case ALGORITHM_LEFT_SYMMETRIC:
1495 re->before.layout = ALGORITHM_LEFT_SYMMETRIC_6;
1496 break;
1497 case ALGORITHM_RIGHT_SYMMETRIC:
1498 re->before.layout = ALGORITHM_RIGHT_SYMMETRIC_6;
1499 break;
1500 case ALGORITHM_PARITY_0:
1501 re->before.layout = ALGORITHM_PARITY_0_6;
1502 break;
1503 case ALGORITHM_PARITY_N:
1504 re->before.layout = ALGORITHM_PARITY_N_6;
1505 break;
1506 default:
1507 return "Cannot convert an array with this layout";
1508 }
1509 break;
1510 case 1:
1511 if (info->array.raid_disks != 2)
1512 return "Can only convert a 2-device array to RAID1";
1513 if (info->delta_disks != UnSet &&
1514 info->delta_disks != 0)
1515 return "Cannot set raid_disk when converting RAID5->RAID1";
1516 re->level = 1;
1517 info->new_chunk = 0;
1518 return NULL;
1519 default:
1520 return "Impossible level change requested";
1521 }
1522 break;
1523 case 6:
1524 switch (info->new_level) {
1525 case 4:
1526 case 5:
1527 delta_parity = -1;
1528 case 6:
1529 re->level = 6;
1530 re->before.data_disks = info->array.raid_disks - 2;
1531 re->before.layout = info->array.layout;
1532 break;
1533 default:
1534 return "Impossible level change requested";
1535 }
1536 break;
1537 }
1538
1539 /* If we reached here then it looks like a re-stripe is
1540 * happening. We have determined the intermediate level
1541 * and initial raid_disks/layout and stored these in 're'.
1542 *
1543 * We need to deduce the final layout that can be atomically
1544 * converted to the end state.
1545 */
1546 switch (info->new_level) {
1547 case 0:
1548 /* We can only get to RAID0 from RAID4 or RAID5
1549 * with appropriate layout and one extra device
1550 */
1551 if (re->level != 4 && re->level != 5)
1552 return "Cannot covert to RAID0 from this level";
1553
1554 switch (re->level) {
1555 case 4:
1556 re->before.layout = 0;
1557 re->after.layout = 0;
1558 break;
1559 case 5:
1560 re->after.layout = ALGORITHM_PARITY_N;
1561 break;
1562 }
1563 break;
1564
1565 case 4:
1566 /* We can only get to RAID4 from RAID5 */
1567 if (re->level != 4 && re->level != 5)
1568 return "Cannot convert to RAID4 from this level";
1569
1570 switch (re->level) {
1571 case 4:
1572 re->after.layout = 0;
1573 break;
1574 case 5:
1575 re->after.layout = ALGORITHM_PARITY_N;
1576 break;
1577 }
1578 break;
1579
1580 case 5:
1581 /* We get to RAID5 from RAID5 or RAID6 */
1582 if (re->level != 5 && re->level != 6)
1583 return "Cannot convert to RAID5 from this level";
1584
1585 switch (re->level) {
1586 case 5:
1587 if (info->new_layout == UnSet)
1588 re->after.layout = re->before.layout;
1589 else
1590 re->after.layout = info->new_layout;
1591 break;
1592 case 6:
1593 if (info->new_layout == UnSet)
1594 info->new_layout = re->before.layout;
1595
1596 /* after.layout needs to be raid6 version of new_layout */
1597 if (info->new_layout == ALGORITHM_PARITY_N)
1598 re->after.layout = ALGORITHM_PARITY_N;
1599 else {
1600 char layout[40];
1601 char *ls = map_num(r5layout, info->new_layout);
1602 int l;
1603 if (ls) {
1604 /* Current RAID6 layout has a RAID5
1605 * equivalent - good
1606 */
1607 strcat(strcpy(layout, ls), "-6");
1608 l = map_name(r6layout, layout);
1609 if (l == UnSet)
1610 return "Cannot find RAID6 layout to convert to";
1611 } else {
1612 /* Current RAID6 has no equivalent.
1613 * If it is already a '-6' layout we
1614 * can leave it unchanged, else we must
1615 * fail
1616 */
1617 ls = map_num(r6layout, info->new_layout);
1618 if (!ls ||
1619 strcmp(ls+strlen(ls)-2, "-6") != 0)
1620 return "Please specify new layout";
1621 l = info->new_layout;
1622 }
1623 re->after.layout = l;
1624 }
1625 }
1626 break;
1627
1628 case 6:
1629 /* We must already be at level 6 */
1630 if (re->level != 6)
1631 return "Impossible level change";
1632 if (info->new_layout == UnSet)
1633 re->after.layout = info->array.layout;
1634 else
1635 re->after.layout = info->new_layout;
1636 break;
1637 default:
1638 return "Impossible level change requested";
1639 }
1640 if (info->delta_disks == UnSet)
1641 info->delta_disks = delta_parity;
1642
1643 re->after.data_disks =
1644 (re->before.data_disks + info->delta_disks - delta_parity);
1645
1646 switch (re->level) {
1647 case 6:
1648 re->parity = 2;
1649 break;
1650 case 4:
1651 case 5:
1652 re->parity = 1;
1653 break;
1654 default:
1655 re->parity = 0;
1656 break;
1657 }
1658 /* So we have a restripe operation, we need to calculate the number
1659 * of blocks per reshape operation.
1660 */
1661 re->new_size = info->component_size * re->before.data_disks;
1662 if (info->new_chunk == 0)
1663 info->new_chunk = info->array.chunk_size;
1664 if (re->after.data_disks == re->before.data_disks &&
1665 re->after.layout == re->before.layout &&
1666 info->new_chunk == info->array.chunk_size) {
1667 /* Nothing to change, can change level immediately. */
1668 re->level = info->new_level;
1669 re->backup_blocks = 0;
1670 return NULL;
1671 }
1672 if (re->after.data_disks == 1 && re->before.data_disks == 1) {
1673 /* chunk and layout changes make no difference */
1674 re->level = info->new_level;
1675 re->backup_blocks = 0;
1676 return NULL;
1677 }
1678
1679 if (re->after.data_disks == re->before.data_disks &&
1680 get_linux_version() < 2006032)
1681 return "in-place reshape is not safe before 2.6.32 - sorry.";
1682
1683 if (re->after.data_disks < re->before.data_disks &&
1684 get_linux_version() < 2006030)
1685 return "reshape to fewer devices is not supported before 2.6.30 - sorry.";
1686
1687 re->backup_blocks = compute_backup_blocks(
1688 info->new_chunk, info->array.chunk_size,
1689 re->after.data_disks,
1690 re->before.data_disks);
1691 re->min_offset_change = re->backup_blocks / re->before.data_disks;
1692
1693 re->new_size = info->component_size * re->after.data_disks;
1694 return NULL;
1695 }
1696
1697 static int set_array_size(struct supertype *st, struct mdinfo *sra,
1698 char *text_version)
1699 {
1700 struct mdinfo *info;
1701 char *subarray;
1702 int ret_val = -1;
1703
1704 if ((st == NULL) || (sra == NULL))
1705 return ret_val;
1706
1707 if (text_version == NULL)
1708 text_version = sra->text_version;
1709 subarray = strchr(text_version + 1, '/')+1;
1710 info = st->ss->container_content(st, subarray);
1711 if (info) {
1712 unsigned long long current_size = 0;
1713 unsigned long long new_size =
1714 info->custom_array_size/2;
1715
1716 if (sysfs_get_ll(sra, NULL, "array_size", &current_size) == 0 &&
1717 new_size > current_size) {
1718 if (sysfs_set_num(sra, NULL, "array_size", new_size)
1719 < 0)
1720 dprintf("Error: Cannot set array size");
1721 else {
1722 ret_val = 0;
1723 dprintf("Array size changed");
1724 }
1725 dprintf_cont(" from %llu to %llu.\n",
1726 current_size, new_size);
1727 }
1728 sysfs_free(info);
1729 } else
1730 dprintf("Error: set_array_size(): info pointer in NULL\n");
1731
1732 return ret_val;
1733 }
1734
1735 static int reshape_array(char *container, int fd, char *devname,
1736 struct supertype *st, struct mdinfo *info,
1737 int force, struct mddev_dev *devlist,
1738 unsigned long long data_offset,
1739 char *backup_file, int verbose, int forked,
1740 int restart, int freeze_reshape);
1741 static int reshape_container(char *container, char *devname,
1742 int mdfd,
1743 struct supertype *st,
1744 struct mdinfo *info,
1745 int force,
1746 char *backup_file, int verbose,
1747 int forked, int restart, int freeze_reshape);
1748
1749 int Grow_reshape(char *devname, int fd,
1750 struct mddev_dev *devlist,
1751 unsigned long long data_offset,
1752 struct context *c, struct shape *s)
1753 {
1754 /* Make some changes in the shape of an array.
1755 * The kernel must support the change.
1756 *
1757 * There are three different changes. Each can trigger
1758 * a resync or recovery so we freeze that until we have
1759 * requested everything (if kernel supports freezing - 2.6.30).
1760 * The steps are:
1761 * - change size (i.e. component_size)
1762 * - change level
1763 * - change layout/chunksize/ndisks
1764 *
1765 * The last can require a reshape. It is different on different
1766 * levels so we need to check the level before actioning it.
1767 * Some times the level change needs to be requested after the
1768 * reshape (e.g. raid6->raid5, raid5->raid0)
1769 *
1770 */
1771 struct mdu_array_info_s array;
1772 int rv = 0;
1773 struct supertype *st;
1774 char *subarray = NULL;
1775
1776 int frozen;
1777 int changed = 0;
1778 char *container = NULL;
1779 int cfd = -1;
1780
1781 struct mddev_dev *dv;
1782 int added_disks;
1783
1784 struct mdinfo info;
1785 struct mdinfo *sra;
1786
1787 if (md_get_array_info(fd, &array) < 0) {
1788 pr_err("%s is not an active md array - aborting\n",
1789 devname);
1790 return 1;
1791 }
1792 if (data_offset != INVALID_SECTORS && array.level != 10 &&
1793 (array.level < 4 || array.level > 6)) {
1794 pr_err("--grow --data-offset not yet supported\n");
1795 return 1;
1796 }
1797
1798 if (s->size > 0 &&
1799 (s->chunk || s->level!= UnSet || s->layout_str || s->raiddisks)) {
1800 pr_err("cannot change component size at the same time as other changes.\n"
1801 " Change size first, then check data is intact before making other changes.\n");
1802 return 1;
1803 }
1804
1805 if (s->raiddisks && s->raiddisks < array.raid_disks &&
1806 array.level > 1 && get_linux_version() < 2006032 &&
1807 !check_env("MDADM_FORCE_FEWER")) {
1808 pr_err("reducing the number of devices is not safe before Linux 2.6.32\n"
1809 " Please use a newer kernel\n");
1810 return 1;
1811 }
1812
1813 st = super_by_fd(fd, &subarray);
1814 if (!st) {
1815 pr_err("Unable to determine metadata format for %s\n", devname);
1816 return 1;
1817 }
1818 if (s->raiddisks > st->max_devs) {
1819 pr_err("Cannot increase raid-disks on this array beyond %d\n", st->max_devs);
1820 return 1;
1821 }
1822 if (s->level == 0 &&
1823 (array.state & (1<<MD_SB_BITMAP_PRESENT)) &&
1824 !(array.state & (1<<MD_SB_CLUSTERED))) {
1825 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
1826 if (md_set_array_info(fd, &array)!= 0) {
1827 pr_err("failed to remove internal bitmap.\n");
1828 return 1;
1829 }
1830 }
1831
1832 /* in the external case we need to check that the requested reshape is
1833 * supported, and perform an initial check that the container holds the
1834 * pre-requisite spare devices (mdmon owns final validation)
1835 */
1836 if (st->ss->external) {
1837 int retval;
1838
1839 if (subarray) {
1840 container = st->container_devnm;
1841 cfd = open_dev_excl(st->container_devnm);
1842 } else {
1843 container = st->devnm;
1844 close(fd);
1845 cfd = open_dev_excl(st->devnm);
1846 fd = cfd;
1847 }
1848 if (cfd < 0) {
1849 pr_err("Unable to open container for %s\n",
1850 devname);
1851 free(subarray);
1852 return 1;
1853 }
1854
1855 retval = st->ss->load_container(st, cfd, NULL);
1856
1857 if (retval) {
1858 pr_err("Cannot read superblock for %s\n",
1859 devname);
1860 free(subarray);
1861 return 1;
1862 }
1863
1864 /* check if operation is supported for metadata handler */
1865 if (st->ss->container_content) {
1866 struct mdinfo *cc = NULL;
1867 struct mdinfo *content = NULL;
1868
1869 cc = st->ss->container_content(st, subarray);
1870 for (content = cc; content ; content = content->next) {
1871 int allow_reshape = 1;
1872
1873 /* check if reshape is allowed based on metadata
1874 * indications stored in content.array.status
1875 */
1876 if (content->array.state &
1877 (1 << MD_SB_BLOCK_VOLUME))
1878 allow_reshape = 0;
1879 if (content->array.state &
1880 (1 << MD_SB_BLOCK_CONTAINER_RESHAPE))
1881 allow_reshape = 0;
1882 if (!allow_reshape) {
1883 pr_err("cannot reshape arrays in container with unsupported metadata: %s(%s)\n",
1884 devname, container);
1885 sysfs_free(cc);
1886 free(subarray);
1887 return 1;
1888 }
1889 }
1890 sysfs_free(cc);
1891 }
1892 if (mdmon_running(container))
1893 st->update_tail = &st->updates;
1894 }
1895
1896 added_disks = 0;
1897 for (dv = devlist; dv; dv = dv->next)
1898 added_disks++;
1899 if (s->raiddisks > array.raid_disks &&
1900 array.spare_disks + added_disks < (s->raiddisks - array.raid_disks) &&
1901 !c->force) {
1902 pr_err("Need %d spare%s to avoid degraded array, and only have %d.\n"
1903 " Use --force to over-ride this check.\n",
1904 s->raiddisks - array.raid_disks,
1905 s->raiddisks - array.raid_disks == 1 ? "" : "s",
1906 array.spare_disks + added_disks);
1907 return 1;
1908 }
1909
1910 sra = sysfs_read(fd, NULL, GET_LEVEL | GET_DISKS | GET_DEVS |
1911 GET_STATE | GET_VERSION);
1912 if (sra) {
1913 if (st->ss->external && subarray == NULL) {
1914 array.level = LEVEL_CONTAINER;
1915 sra->array.level = LEVEL_CONTAINER;
1916 }
1917 } else {
1918 pr_err("failed to read sysfs parameters for %s\n",
1919 devname);
1920 return 1;
1921 }
1922 frozen = freeze(st);
1923 if (frozen < -1) {
1924 /* freeze() already spewed the reason */
1925 sysfs_free(sra);
1926 return 1;
1927 } else if (frozen < 0) {
1928 pr_err("%s is performing resync/recovery and cannot be reshaped\n", devname);
1929 sysfs_free(sra);
1930 return 1;
1931 }
1932
1933 /* ========= set size =============== */
1934 if (s->size > 0 &&
1935 (s->size == MAX_SIZE || s->size != (unsigned)array.size)) {
1936 unsigned long long orig_size = get_component_size(fd)/2;
1937 unsigned long long min_csize;
1938 struct mdinfo *mdi;
1939 int raid0_takeover = 0;
1940
1941 if (orig_size == 0)
1942 orig_size = (unsigned) array.size;
1943
1944 if (orig_size == 0) {
1945 pr_err("Cannot set device size in this type of array.\n");
1946 rv = 1;
1947 goto release;
1948 }
1949
1950 if (reshape_super(st, s->size, UnSet, UnSet, 0, 0, UnSet, NULL,
1951 devname, APPLY_METADATA_CHANGES,
1952 c->verbose > 0)) {
1953 rv = 1;
1954 goto release;
1955 }
1956 sync_metadata(st);
1957 if (st->ss->external) {
1958 /* metadata can have size limitation
1959 * update size value according to metadata information
1960 */
1961 struct mdinfo *sizeinfo =
1962 st->ss->container_content(st, subarray);
1963 if (sizeinfo) {
1964 unsigned long long new_size =
1965 sizeinfo->custom_array_size/2;
1966 int data_disks = get_data_disks(
1967 sizeinfo->array.level,
1968 sizeinfo->array.layout,
1969 sizeinfo->array.raid_disks);
1970 new_size /= data_disks;
1971 dprintf("Metadata size correction from %llu to %llu (%llu)\n",
1972 orig_size, new_size,
1973 new_size * data_disks);
1974 s->size = new_size;
1975 sysfs_free(sizeinfo);
1976 }
1977 }
1978
1979 /* Update the size of each member device in case
1980 * they have been resized. This will never reduce
1981 * below the current used-size. The "size" attribute
1982 * understands '0' to mean 'max'.
1983 */
1984 min_csize = 0;
1985 for (mdi = sra->devs; mdi; mdi = mdi->next) {
1986 if (array.not_persistent == 0 &&
1987 array.major_version == 0 &&
1988 get_linux_version() < 3001000) {
1989 /* Dangerous to allow size to exceed 2TB */
1990 unsigned long long csize;
1991 if (sysfs_get_ll(sra, mdi, "size", &csize) == 0) {
1992 if (csize >= 2ULL*1024*1024*1024)
1993 csize = 2ULL*1024*1024*1024;
1994 if ((min_csize == 0 || (min_csize
1995 > csize)))
1996 min_csize = csize;
1997 }
1998 }
1999 }
2000 if (min_csize && s->size > min_csize) {
2001 pr_err("Cannot safely make this array use more than 2TB per device on this kernel.\n");
2002 rv = 1;
2003 goto size_change_error;
2004 }
2005 if (min_csize && s->size == MAX_SIZE) {
2006 /* Don't let the kernel choose a size - it will get
2007 * it wrong
2008 */
2009 pr_err("Limited v0.90 array to 2TB per device\n");
2010 s->size = min_csize;
2011 }
2012 if (st->ss->external) {
2013 if (sra->array.level == 0) {
2014 rv = sysfs_set_str(sra, NULL, "level",
2015 "raid5");
2016 if (!rv) {
2017 raid0_takeover = 1;
2018 /* get array parameters after takeover
2019 * to change one parameter at time only
2020 */
2021 rv = md_get_array_info(fd, &array);
2022 }
2023 }
2024 /* make sure mdmon is
2025 * aware of the new level */
2026 if (!mdmon_running(st->container_devnm))
2027 start_mdmon(st->container_devnm);
2028 ping_monitor(container);
2029 if (mdmon_running(st->container_devnm) &&
2030 st->update_tail == NULL)
2031 st->update_tail = &st->updates;
2032 }
2033
2034 if (s->size == MAX_SIZE)
2035 s->size = 0;
2036 array.size = s->size;
2037 if (s->size & ~INT32_MAX) {
2038 /* got truncated to 32bit, write to
2039 * component_size instead
2040 */
2041 if (sra)
2042 rv = sysfs_set_num(sra, NULL,
2043 "component_size", s->size);
2044 else
2045 rv = -1;
2046 } else {
2047 rv = md_set_array_info(fd, &array);
2048
2049 /* manage array size when it is managed externally
2050 */
2051 if ((rv == 0) && st->ss->external)
2052 rv = set_array_size(st, sra, sra->text_version);
2053 }
2054
2055 if (raid0_takeover) {
2056 /* do not recync non-existing parity,
2057 * we will drop it anyway
2058 */
2059 sysfs_set_str(sra, NULL, "sync_action", "frozen");
2060 /* go back to raid0, drop parity disk
2061 */
2062 sysfs_set_str(sra, NULL, "level", "raid0");
2063 md_get_array_info(fd, &array);
2064 }
2065
2066 size_change_error:
2067 if (rv != 0) {
2068 int err = errno;
2069
2070 /* restore metadata */
2071 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
2072 UnSet, NULL, devname,
2073 ROLLBACK_METADATA_CHANGES,
2074 c->verbose) == 0)
2075 sync_metadata(st);
2076 pr_err("Cannot set device size for %s: %s\n",
2077 devname, strerror(err));
2078 if (err == EBUSY &&
2079 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2080 cont_err("Bitmap must be removed before size can be changed\n");
2081 rv = 1;
2082 goto release;
2083 }
2084 if (s->assume_clean) {
2085 /* This will fail on kernels older than 3.0 unless
2086 * a backport has been arranged.
2087 */
2088 if (sra == NULL ||
2089 sysfs_set_str(sra, NULL, "resync_start", "none") < 0)
2090 pr_err("--assume-clean not supported with --grow on this kernel\n");
2091 }
2092 md_get_array_info(fd, &array);
2093 s->size = get_component_size(fd)/2;
2094 if (s->size == 0)
2095 s->size = array.size;
2096 if (c->verbose >= 0) {
2097 if (s->size == orig_size)
2098 pr_err("component size of %s unchanged at %lluK\n",
2099 devname, s->size);
2100 else
2101 pr_err("component size of %s has been set to %lluK\n",
2102 devname, s->size);
2103 }
2104 changed = 1;
2105 } else if (array.level != LEVEL_CONTAINER) {
2106 s->size = get_component_size(fd)/2;
2107 if (s->size == 0)
2108 s->size = array.size;
2109 }
2110
2111 /* See if there is anything else to do */
2112 if ((s->level == UnSet || s->level == array.level) &&
2113 (s->layout_str == NULL) &&
2114 (s->chunk == 0 || s->chunk == array.chunk_size) &&
2115 data_offset == INVALID_SECTORS &&
2116 (s->raiddisks == 0 || s->raiddisks == array.raid_disks)) {
2117 /* Nothing more to do */
2118 if (!changed && c->verbose >= 0)
2119 pr_err("%s: no change requested\n",
2120 devname);
2121 goto release;
2122 }
2123
2124 /* ========= check for Raid10/Raid1 -> Raid0 conversion ===============
2125 * current implementation assumes that following conditions must be met:
2126 * - RAID10:
2127 * - far_copies == 1
2128 * - near_copies == 2
2129 */
2130 if ((s->level == 0 && array.level == 10 && sra &&
2131 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) ||
2132 (s->level == 0 && array.level == 1 && sra)) {
2133 int err;
2134 err = remove_disks_for_takeover(st, sra, array.layout);
2135 if (err) {
2136 dprintf("Array cannot be reshaped\n");
2137 if (cfd > -1)
2138 close(cfd);
2139 rv = 1;
2140 goto release;
2141 }
2142 /* Make sure mdmon has seen the device removal
2143 * and updated metadata before we continue with
2144 * level change
2145 */
2146 if (container)
2147 ping_monitor(container);
2148 }
2149
2150 memset(&info, 0, sizeof(info));
2151 info.array = array;
2152 sysfs_init(&info, fd, NULL);
2153 strcpy(info.text_version, sra->text_version);
2154 info.component_size = s->size*2;
2155 info.new_level = s->level;
2156 info.new_chunk = s->chunk * 1024;
2157 if (info.array.level == LEVEL_CONTAINER) {
2158 info.delta_disks = UnSet;
2159 info.array.raid_disks = s->raiddisks;
2160 } else if (s->raiddisks)
2161 info.delta_disks = s->raiddisks - info.array.raid_disks;
2162 else
2163 info.delta_disks = UnSet;
2164 if (s->layout_str == NULL) {
2165 info.new_layout = UnSet;
2166 if (info.array.level == 6 &&
2167 (info.new_level == 6 || info.new_level == UnSet) &&
2168 info.array.layout >= 16) {
2169 pr_err("%s has a non-standard layout. If you wish to preserve this\n", devname);
2170 cont_err("during the reshape, please specify --layout=preserve\n");
2171 cont_err("If you want to change it, specify a layout or use --layout=normalise\n");
2172 rv = 1;
2173 goto release;
2174 }
2175 } else if (strcmp(s->layout_str, "normalise") == 0 ||
2176 strcmp(s->layout_str, "normalize") == 0) {
2177 /* If we have a -6 RAID6 layout, remove the '-6'. */
2178 info.new_layout = UnSet;
2179 if (info.array.level == 6 && info.new_level == UnSet) {
2180 char l[40], *h;
2181 strcpy(l, map_num(r6layout, info.array.layout));
2182 h = strrchr(l, '-');
2183 if (h && strcmp(h, "-6") == 0) {
2184 *h = 0;
2185 info.new_layout = map_name(r6layout, l);
2186 }
2187 } else {
2188 pr_err("%s is only meaningful when reshaping a RAID6 array.\n", s->layout_str);
2189 rv = 1;
2190 goto release;
2191 }
2192 } else if (strcmp(s->layout_str, "preserve") == 0) {
2193 /* This means that a non-standard RAID6 layout
2194 * is OK.
2195 * In particular:
2196 * - When reshape a RAID6 (e.g. adding a device)
2197 * which is in a non-standard layout, it is OK
2198 * to preserve that layout.
2199 * - When converting a RAID5 to RAID6, leave it in
2200 * the XXX-6 layout, don't re-layout.
2201 */
2202 if (info.array.level == 6 && info.new_level == UnSet)
2203 info.new_layout = info.array.layout;
2204 else if (info.array.level == 5 && info.new_level == 6) {
2205 char l[40];
2206 strcpy(l, map_num(r5layout, info.array.layout));
2207 strcat(l, "-6");
2208 info.new_layout = map_name(r6layout, l);
2209 } else {
2210 pr_err("%s in only meaningful when reshaping to RAID6\n", s->layout_str);
2211 rv = 1;
2212 goto release;
2213 }
2214 } else {
2215 int l = info.new_level;
2216 if (l == UnSet)
2217 l = info.array.level;
2218 switch (l) {
2219 case 5:
2220 info.new_layout = map_name(r5layout, s->layout_str);
2221 break;
2222 case 6:
2223 info.new_layout = map_name(r6layout, s->layout_str);
2224 break;
2225 case 10:
2226 info.new_layout = parse_layout_10(s->layout_str);
2227 break;
2228 case LEVEL_FAULTY:
2229 info.new_layout = parse_layout_faulty(s->layout_str);
2230 break;
2231 default:
2232 pr_err("layout not meaningful with this level\n");
2233 rv = 1;
2234 goto release;
2235 }
2236 if (info.new_layout == UnSet) {
2237 pr_err("layout %s not understood for this level\n",
2238 s->layout_str);
2239 rv = 1;
2240 goto release;
2241 }
2242 }
2243
2244 if (array.level == LEVEL_FAULTY) {
2245 if (s->level != UnSet && s->level != array.level) {
2246 pr_err("cannot change level of Faulty device\n");
2247 rv =1 ;
2248 }
2249 if (s->chunk) {
2250 pr_err("cannot set chunksize of Faulty device\n");
2251 rv =1 ;
2252 }
2253 if (s->raiddisks && s->raiddisks != 1) {
2254 pr_err("cannot set raid_disks of Faulty device\n");
2255 rv =1 ;
2256 }
2257 if (s->layout_str) {
2258 if (md_get_array_info(fd, &array) != 0) {
2259 dprintf("Cannot get array information.\n");
2260 goto release;
2261 }
2262 array.layout = info.new_layout;
2263 if (md_set_array_info(fd, &array) != 0) {
2264 pr_err("failed to set new layout\n");
2265 rv = 1;
2266 } else if (c->verbose >= 0)
2267 printf("layout for %s set to %d\n",
2268 devname, array.layout);
2269 }
2270 } else if (array.level == LEVEL_CONTAINER) {
2271 /* This change is to be applied to every array in the
2272 * container. This is only needed when the metadata imposes
2273 * restraints of the various arrays in the container.
2274 * Currently we only know that IMSM requires all arrays
2275 * to have the same number of devices so changing the
2276 * number of devices (On-Line Capacity Expansion) must be
2277 * performed at the level of the container
2278 */
2279 if (fd > 0) {
2280 close(fd);
2281 fd = -1;
2282 }
2283 rv = reshape_container(container, devname, -1, st, &info,
2284 c->force, c->backup_file, c->verbose, 0, 0, 0);
2285 frozen = 0;
2286 } else {
2287 /* get spare devices from external metadata
2288 */
2289 if (st->ss->external) {
2290 struct mdinfo *info2;
2291
2292 info2 = st->ss->container_content(st, subarray);
2293 if (info2) {
2294 info.array.spare_disks =
2295 info2->array.spare_disks;
2296 sysfs_free(info2);
2297 }
2298 }
2299
2300 /* Impose these changes on a single array. First
2301 * check that the metadata is OK with the change. */
2302
2303 if (reshape_super(st, 0, info.new_level,
2304 info.new_layout, info.new_chunk,
2305 info.array.raid_disks, info.delta_disks,
2306 c->backup_file, devname, APPLY_METADATA_CHANGES,
2307 c->verbose)) {
2308 rv = 1;
2309 goto release;
2310 }
2311 sync_metadata(st);
2312 rv = reshape_array(container, fd, devname, st, &info, c->force,
2313 devlist, data_offset, c->backup_file, c->verbose,
2314 0, 0, 0);
2315 frozen = 0;
2316 }
2317 release:
2318 sysfs_free(sra);
2319 if (frozen > 0)
2320 unfreeze(st);
2321 return rv;
2322 }
2323
2324 /* verify_reshape_position()
2325 * Function checks if reshape position in metadata is not farther
2326 * than position in md.
2327 * Return value:
2328 * 0 : not valid sysfs entry
2329 * it can be caused by not started reshape, it should be started
2330 * by reshape array or raid0 array is before takeover
2331 * -1 : error, reshape position is obviously wrong
2332 * 1 : success, reshape progress correct or updated
2333 */
2334 static int verify_reshape_position(struct mdinfo *info, int level)
2335 {
2336 int ret_val = 0;
2337 char buf[40];
2338 int rv;
2339
2340 /* read sync_max, failure can mean raid0 array */
2341 rv = sysfs_get_str(info, NULL, "sync_max", buf, 40);
2342
2343 if (rv > 0) {
2344 char *ep;
2345 unsigned long long position = strtoull(buf, &ep, 0);
2346
2347 dprintf("Read sync_max sysfs entry is: %s\n", buf);
2348 if (!(ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))) {
2349 position *= get_data_disks(level,
2350 info->new_layout,
2351 info->array.raid_disks);
2352 if (info->reshape_progress < position) {
2353 dprintf("Corrected reshape progress (%llu) to md position (%llu)\n",
2354 info->reshape_progress, position);
2355 info->reshape_progress = position;
2356 ret_val = 1;
2357 } else if (info->reshape_progress > position) {
2358 pr_err("Fatal error: array reshape was not properly frozen (expected reshape position is %llu, but reshape progress is %llu.\n",
2359 position, info->reshape_progress);
2360 ret_val = -1;
2361 } else {
2362 dprintf("Reshape position in md and metadata are the same;");
2363 ret_val = 1;
2364 }
2365 }
2366 } else if (rv == 0) {
2367 /* for valid sysfs entry, 0-length content
2368 * should be indicated as error
2369 */
2370 ret_val = -1;
2371 }
2372
2373 return ret_val;
2374 }
2375
2376 static unsigned long long choose_offset(unsigned long long lo,
2377 unsigned long long hi,
2378 unsigned long long min,
2379 unsigned long long max)
2380 {
2381 /* Choose a new offset between hi and lo.
2382 * It must be between min and max, but
2383 * we would prefer something near the middle of hi/lo, and also
2384 * prefer to be aligned to a big power of 2.
2385 *
2386 * So we start with the middle, then for each bit,
2387 * starting at '1' and increasing, if it is set, we either
2388 * add it or subtract it if possible, preferring the option
2389 * which is furthest from the boundary.
2390 *
2391 * We stop once we get a 1MB alignment. As units are in sectors,
2392 * 1MB = 2*1024 sectors.
2393 */
2394 unsigned long long choice = (lo + hi) / 2;
2395 unsigned long long bit = 1;
2396
2397 for (bit = 1; bit < 2*1024; bit = bit << 1) {
2398 unsigned long long bigger, smaller;
2399 if (! (bit & choice))
2400 continue;
2401 bigger = choice + bit;
2402 smaller = choice - bit;
2403 if (bigger > max && smaller < min)
2404 break;
2405 if (bigger > max)
2406 choice = smaller;
2407 else if (smaller < min)
2408 choice = bigger;
2409 else if (hi - bigger > smaller - lo)
2410 choice = bigger;
2411 else
2412 choice = smaller;
2413 }
2414 return choice;
2415 }
2416
2417 static int set_new_data_offset(struct mdinfo *sra, struct supertype *st,
2418 char *devname, int delta_disks,
2419 unsigned long long data_offset,
2420 unsigned long long min,
2421 int can_fallback)
2422 {
2423 struct mdinfo *sd;
2424 int dir = 0;
2425 int err = 0;
2426 unsigned long long before, after;
2427
2428 /* Need to find min space before and after so same is used
2429 * on all devices
2430 */
2431 before = UINT64_MAX;
2432 after = UINT64_MAX;
2433 for (sd = sra->devs; sd; sd = sd->next) {
2434 char *dn;
2435 int dfd;
2436 int rv;
2437 struct supertype *st2;
2438 struct mdinfo info2;
2439
2440 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2441 continue;
2442 dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2443 dfd = dev_open(dn, O_RDONLY);
2444 if (dfd < 0) {
2445 pr_err("%s: cannot open component %s\n",
2446 devname, dn ? dn : "-unknown-");
2447 goto release;
2448 }
2449 st2 = dup_super(st);
2450 rv = st2->ss->load_super(st2,dfd, NULL);
2451 close(dfd);
2452 if (rv) {
2453 free(st2);
2454 pr_err("%s: cannot get superblock from %s\n",
2455 devname, dn);
2456 goto release;
2457 }
2458 st2->ss->getinfo_super(st2, &info2, NULL);
2459 st2->ss->free_super(st2);
2460 free(st2);
2461 if (info2.space_before == 0 &&
2462 info2.space_after == 0) {
2463 /* Metadata doesn't support data_offset changes */
2464 if (!can_fallback)
2465 pr_err("%s: Metadata version doesn't support data_offset changes\n",
2466 devname);
2467 goto fallback;
2468 }
2469 if (before > info2.space_before)
2470 before = info2.space_before;
2471 if (after > info2.space_after)
2472 after = info2.space_after;
2473
2474 if (data_offset != INVALID_SECTORS) {
2475 if (dir == 0) {
2476 if (info2.data_offset == data_offset) {
2477 pr_err("%s: already has that data_offset\n",
2478 dn);
2479 goto release;
2480 }
2481 if (data_offset < info2.data_offset)
2482 dir = -1;
2483 else
2484 dir = 1;
2485 } else if ((data_offset <= info2.data_offset && dir == 1) ||
2486 (data_offset >= info2.data_offset && dir == -1)) {
2487 pr_err("%s: differing data offsets on devices make this --data-offset setting impossible\n",
2488 dn);
2489 goto release;
2490 }
2491 }
2492 }
2493 if (before == UINT64_MAX)
2494 /* impossible really, there must be no devices */
2495 return 1;
2496
2497 for (sd = sra->devs; sd; sd = sd->next) {
2498 char *dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2499 unsigned long long new_data_offset;
2500
2501 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2502 continue;
2503 if (delta_disks < 0) {
2504 /* Don't need any space as array is shrinking
2505 * just move data_offset up by min
2506 */
2507 if (data_offset == INVALID_SECTORS)
2508 new_data_offset = sd->data_offset + min;
2509 else {
2510 if (data_offset < sd->data_offset + min) {
2511 pr_err("--data-offset too small for %s\n",
2512 dn);
2513 goto release;
2514 }
2515 new_data_offset = data_offset;
2516 }
2517 } else if (delta_disks > 0) {
2518 /* need space before */
2519 if (before < min) {
2520 if (can_fallback)
2521 goto fallback;
2522 pr_err("Insufficient head-space for reshape on %s\n",
2523 dn);
2524 goto release;
2525 }
2526 if (data_offset == INVALID_SECTORS)
2527 new_data_offset = sd->data_offset - min;
2528 else {
2529 if (data_offset > sd->data_offset - min) {
2530 pr_err("--data-offset too large for %s\n",
2531 dn);
2532 goto release;
2533 }
2534 new_data_offset = data_offset;
2535 }
2536 } else {
2537 if (dir == 0) {
2538 /* can move up or down. If 'data_offset'
2539 * was set we would have already decided,
2540 * so just choose direction with most space.
2541 */
2542 if (before > after)
2543 dir = -1;
2544 else
2545 dir = 1;
2546 }
2547 sysfs_set_str(sra, NULL, "reshape_direction",
2548 dir == 1 ? "backwards" : "forwards");
2549 if (dir > 0) {
2550 /* Increase data offset */
2551 if (after < min) {
2552 if (can_fallback)
2553 goto fallback;
2554 pr_err("Insufficient tail-space for reshape on %s\n",
2555 dn);
2556 goto release;
2557 }
2558 if (data_offset != INVALID_SECTORS &&
2559 data_offset < sd->data_offset + min) {
2560 pr_err("--data-offset too small on %s\n",
2561 dn);
2562 goto release;
2563 }
2564 if (data_offset != INVALID_SECTORS)
2565 new_data_offset = data_offset;
2566 else
2567 new_data_offset = choose_offset(sd->data_offset,
2568 sd->data_offset + after,
2569 sd->data_offset + min,
2570 sd->data_offset + after);
2571 } else {
2572 /* Decrease data offset */
2573 if (before < min) {
2574 if (can_fallback)
2575 goto fallback;
2576 pr_err("insufficient head-room on %s\n",
2577 dn);
2578 goto release;
2579 }
2580 if (data_offset != INVALID_SECTORS &&
2581 data_offset < sd->data_offset - min) {
2582 pr_err("--data-offset too small on %s\n",
2583 dn);
2584 goto release;
2585 }
2586 if (data_offset != INVALID_SECTORS)
2587 new_data_offset = data_offset;
2588 else
2589 new_data_offset = choose_offset(sd->data_offset - before,
2590 sd->data_offset,
2591 sd->data_offset - before,
2592 sd->data_offset - min);
2593 }
2594 }
2595 err = sysfs_set_num(sra, sd, "new_offset", new_data_offset);
2596 if (err < 0 && errno == E2BIG) {
2597 /* try again after increasing data size to max */
2598 err = sysfs_set_num(sra, sd, "size", 0);
2599 if (err < 0 && errno == EINVAL &&
2600 !(sd->disk.state & (1<<MD_DISK_SYNC))) {
2601 /* some kernels have a bug where you cannot
2602 * use '0' on spare devices. */
2603 sysfs_set_num(sra, sd, "size",
2604 (sra->component_size + after)/2);
2605 }
2606 err = sysfs_set_num(sra, sd, "new_offset",
2607 new_data_offset);
2608 }
2609 if (err < 0) {
2610 if (errno == E2BIG && data_offset != INVALID_SECTORS) {
2611 pr_err("data-offset is too big for %s\n",
2612 dn);
2613 goto release;
2614 }
2615 if (sd == sra->devs &&
2616 (errno == ENOENT || errno == E2BIG))
2617 /* Early kernel, no 'new_offset' file,
2618 * or kernel doesn't like us.
2619 * For RAID5/6 this is not fatal
2620 */
2621 return 1;
2622 pr_err("Cannot set new_offset for %s\n",
2623 dn);
2624 break;
2625 }
2626 }
2627 return err;
2628 release:
2629 return -1;
2630 fallback:
2631 /* Just use a backup file */
2632 return 1;
2633 }
2634
2635 static int raid10_reshape(char *container, int fd, char *devname,
2636 struct supertype *st, struct mdinfo *info,
2637 struct reshape *reshape,
2638 unsigned long long data_offset,
2639 int force, int verbose)
2640 {
2641 /* Changing raid_disks, layout, chunksize or possibly
2642 * just data_offset for a RAID10.
2643 * We must always change data_offset. We change by at least
2644 * ->min_offset_change which is the largest of the old and new
2645 * chunk sizes.
2646 * If raid_disks is increasing, then data_offset must decrease
2647 * by at least this copy size.
2648 * If raid_disks is unchanged, data_offset must increase or
2649 * decrease by at least min_offset_change but preferably by much more.
2650 * We choose half of the available space.
2651 * If raid_disks is decreasing, data_offset must increase by
2652 * at least min_offset_change. To allow of this, component_size
2653 * must be decreased by the same amount.
2654 *
2655 * So we calculate the required minimum and direction, possibly
2656 * reduce the component_size, then iterate through the devices
2657 * and set the new_data_offset.
2658 * If that all works, we set chunk_size, layout, raid_disks, and start
2659 * 'reshape'
2660 */
2661 struct mdinfo *sra;
2662 unsigned long long min;
2663 int err = 0;
2664
2665 sra = sysfs_read(fd, NULL,
2666 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK
2667 );
2668 if (!sra) {
2669 pr_err("%s: Cannot get array details from sysfs\n",
2670 devname);
2671 goto release;
2672 }
2673 min = reshape->min_offset_change;
2674
2675 if (info->delta_disks)
2676 sysfs_set_str(sra, NULL, "reshape_direction",
2677 info->delta_disks < 0 ? "backwards" : "forwards");
2678 if (info->delta_disks < 0 &&
2679 info->space_after < min) {
2680 int rv = sysfs_set_num(sra, NULL, "component_size",
2681 (sra->component_size -
2682 min)/2);
2683 if (rv) {
2684 pr_err("cannot reduce component size\n");
2685 goto release;
2686 }
2687 }
2688 err = set_new_data_offset(sra, st, devname, info->delta_disks, data_offset,
2689 min, 0);
2690 if (err == 1) {
2691 pr_err("Cannot set new_data_offset: RAID10 reshape not\n");
2692 cont_err("supported on this kernel\n");
2693 err = -1;
2694 }
2695 if (err < 0)
2696 goto release;
2697
2698 if (!err && sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2699 err = errno;
2700 if (!err && sysfs_set_num(sra, NULL, "layout", reshape->after.layout) < 0)
2701 err = errno;
2702 if (!err && sysfs_set_num(sra, NULL, "raid_disks",
2703 info->array.raid_disks + info->delta_disks) < 0)
2704 err = errno;
2705 if (!err && sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0)
2706 err = errno;
2707 if (err) {
2708 pr_err("Cannot set array shape for %s\n",
2709 devname);
2710 if (err == EBUSY &&
2711 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
2712 cont_err(" Bitmap must be removed before shape can be changed\n");
2713 goto release;
2714 }
2715 sysfs_free(sra);
2716 return 0;
2717 release:
2718 sysfs_free(sra);
2719 return 1;
2720 }
2721
2722 static void get_space_after(int fd, struct supertype *st, struct mdinfo *info)
2723 {
2724 struct mdinfo *sra, *sd;
2725 /* Initialisation to silence compiler warning */
2726 unsigned long long min_space_before = 0, min_space_after = 0;
2727 int first = 1;
2728
2729 sra = sysfs_read(fd, NULL, GET_DEVS);
2730 if (!sra)
2731 return;
2732 for (sd = sra->devs; sd; sd = sd->next) {
2733 char *dn;
2734 int dfd;
2735 struct supertype *st2;
2736 struct mdinfo info2;
2737
2738 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2739 continue;
2740 dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2741 dfd = dev_open(dn, O_RDONLY);
2742 if (dfd < 0)
2743 break;
2744 st2 = dup_super(st);
2745 if (st2->ss->load_super(st2,dfd, NULL)) {
2746 close(dfd);
2747 free(st2);
2748 break;
2749 }
2750 close(dfd);
2751 st2->ss->getinfo_super(st2, &info2, NULL);
2752 st2->ss->free_super(st2);
2753 free(st2);
2754 if (first ||
2755 min_space_before > info2.space_before)
2756 min_space_before = info2.space_before;
2757 if (first ||
2758 min_space_after > info2.space_after)
2759 min_space_after = info2.space_after;
2760 first = 0;
2761 }
2762 if (sd == NULL && !first) {
2763 info->space_after = min_space_after;
2764 info->space_before = min_space_before;
2765 }
2766 sysfs_free(sra);
2767 }
2768
2769 static void update_cache_size(char *container, struct mdinfo *sra,
2770 struct mdinfo *info,
2771 int disks, unsigned long long blocks)
2772 {
2773 /* Check that the internal stripe cache is
2774 * large enough, or it won't work.
2775 * It must hold at least 4 stripes of the larger
2776 * chunk size
2777 */
2778 unsigned long cache;
2779 cache = max(info->array.chunk_size, info->new_chunk);
2780 cache *= 4; /* 4 stripes minimum */
2781 cache /= 512; /* convert to sectors */
2782 /* make sure there is room for 'blocks' with a bit to spare */
2783 if (cache < 16 + blocks / disks)
2784 cache = 16 + blocks / disks;
2785 cache /= (4096/512); /* Convert from sectors to pages */
2786
2787 if (sra->cache_size < cache)
2788 subarray_set_num(container, sra, "stripe_cache_size",
2789 cache+1);
2790 }
2791
2792 static int impose_reshape(struct mdinfo *sra,
2793 struct mdinfo *info,
2794 struct supertype *st,
2795 int fd,
2796 int restart,
2797 char *devname, char *container,
2798 struct reshape *reshape)
2799 {
2800 struct mdu_array_info_s array;
2801
2802 sra->new_chunk = info->new_chunk;
2803
2804 if (restart) {
2805 /* for external metadata checkpoint saved by mdmon can be lost
2806 * or missed /due to e.g. crash/. Check if md is not during
2807 * restart farther than metadata points to.
2808 * If so, this means metadata information is obsolete.
2809 */
2810 if (st->ss->external)
2811 verify_reshape_position(info, reshape->level);
2812 sra->reshape_progress = info->reshape_progress;
2813 } else {
2814 sra->reshape_progress = 0;
2815 if (reshape->after.data_disks < reshape->before.data_disks)
2816 /* start from the end of the new array */
2817 sra->reshape_progress = (sra->component_size
2818 * reshape->after.data_disks);
2819 }
2820
2821 md_get_array_info(fd, &array);
2822 if (info->array.chunk_size == info->new_chunk &&
2823 reshape->before.layout == reshape->after.layout &&
2824 st->ss->external == 0) {
2825 /* use SET_ARRAY_INFO but only if reshape hasn't started */
2826 array.raid_disks = reshape->after.data_disks + reshape->parity;
2827 if (!restart && md_set_array_info(fd, &array) != 0) {
2828 int err = errno;
2829
2830 pr_err("Cannot set device shape for %s: %s\n",
2831 devname, strerror(errno));
2832
2833 if (err == EBUSY &&
2834 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2835 cont_err("Bitmap must be removed before shape can be changed\n");
2836
2837 goto release;
2838 }
2839 } else if (!restart) {
2840 /* set them all just in case some old 'new_*' value
2841 * persists from some earlier problem.
2842 */
2843 int err = 0;
2844 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2845 err = errno;
2846 if (!err && sysfs_set_num(sra, NULL, "layout",
2847 reshape->after.layout) < 0)
2848 err = errno;
2849 if (!err && subarray_set_num(container, sra, "raid_disks",
2850 reshape->after.data_disks +
2851 reshape->parity) < 0)
2852 err = errno;
2853 if (err) {
2854 pr_err("Cannot set device shape for %s\n",
2855 devname);
2856
2857 if (err == EBUSY &&
2858 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2859 cont_err("Bitmap must be removed before shape can be changed\n");
2860 goto release;
2861 }
2862 }
2863 return 0;
2864 release:
2865 return -1;
2866 }
2867
2868 static int impose_level(int fd, int level, char *devname, int verbose)
2869 {
2870 char *c;
2871 struct mdu_array_info_s array;
2872 struct mdinfo info;
2873 sysfs_init(&info, fd, NULL);
2874
2875 md_get_array_info(fd, &array);
2876 if (level == 0 &&
2877 (array.level >= 4 && array.level <= 6)) {
2878 /* To convert to RAID0 we need to fail and
2879 * remove any non-data devices. */
2880 int found = 0;
2881 int d;
2882 int data_disks = array.raid_disks - 1;
2883 if (array.level == 6)
2884 data_disks -= 1;
2885 if (array.level == 5 &&
2886 array.layout != ALGORITHM_PARITY_N)
2887 return -1;
2888 if (array.level == 6 &&
2889 array.layout != ALGORITHM_PARITY_N_6)
2890 return -1;
2891 sysfs_set_str(&info, NULL,"sync_action", "idle");
2892 /* First remove any spares so no recovery starts */
2893 for (d = 0, found = 0;
2894 d < MAX_DISKS && found < array.nr_disks;
2895 d++) {
2896 mdu_disk_info_t disk;
2897 disk.number = d;
2898 if (md_get_disk_info(fd, &disk) < 0)
2899 continue;
2900 if (disk.major == 0 && disk.minor == 0)
2901 continue;
2902 found++;
2903 if ((disk.state & (1 << MD_DISK_ACTIVE))
2904 && disk.raid_disk < data_disks)
2905 /* keep this */
2906 continue;
2907 ioctl(fd, HOT_REMOVE_DISK,
2908 makedev(disk.major, disk.minor));
2909 }
2910 /* Now fail anything left */
2911 md_get_array_info(fd, &array);
2912 for (d = 0, found = 0;
2913 d < MAX_DISKS && found < array.nr_disks;
2914 d++) {
2915 mdu_disk_info_t disk;
2916 disk.number = d;
2917 if (md_get_disk_info(fd, &disk) < 0)
2918 continue;
2919 if (disk.major == 0 && disk.minor == 0)
2920 continue;
2921 found++;
2922 if ((disk.state & (1 << MD_DISK_ACTIVE))
2923 && disk.raid_disk < data_disks)
2924 /* keep this */
2925 continue;
2926 ioctl(fd, SET_DISK_FAULTY,
2927 makedev(disk.major, disk.minor));
2928 hot_remove_disk(fd, makedev(disk.major, disk.minor), 1);
2929 }
2930 }
2931 c = map_num(pers, level);
2932 if (c) {
2933 int err = sysfs_set_str(&info, NULL, "level", c);
2934 if (err) {
2935 err = errno;
2936 pr_err("%s: could not set level to %s\n",
2937 devname, c);
2938 if (err == EBUSY &&
2939 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2940 cont_err("Bitmap must be removed before level can be changed\n");
2941 return err;
2942 }
2943 if (verbose >= 0)
2944 pr_err("level of %s changed to %s\n",
2945 devname, c);
2946 }
2947 return 0;
2948 }
2949
2950 int sigterm = 0;
2951 static void catch_term(int sig)
2952 {
2953 sigterm = 1;
2954 }
2955
2956 static int continue_via_systemd(char *devnm)
2957 {
2958 int skipped, i, pid, status;
2959 char pathbuf[1024];
2960 /* In a systemd/udev world, it is best to get systemd to
2961 * run "mdadm --grow --continue" rather than running in the
2962 * background.
2963 */
2964 switch(fork()) {
2965 case 0:
2966 /* FIXME yuk. CLOSE_EXEC?? */
2967 skipped = 0;
2968 for (i = 3; skipped < 20; i++)
2969 if (close(i) < 0)
2970 skipped++;
2971 else
2972 skipped = 0;
2973
2974 /* Don't want to see error messages from
2975 * systemctl. If the service doesn't exist,
2976 * we fork ourselves.
2977 */
2978 close(2);
2979 open("/dev/null", O_WRONLY);
2980 snprintf(pathbuf, sizeof(pathbuf), "mdadm-grow-continue@%s.service",
2981 devnm);
2982 status = execl("/usr/bin/systemctl", "systemctl",
2983 "start",
2984 pathbuf, NULL);
2985 status = execl("/bin/systemctl", "systemctl", "start",
2986 pathbuf, NULL);
2987 exit(1);
2988 case -1: /* Just do it ourselves. */
2989 break;
2990 default: /* parent - good */
2991 pid = wait(&status);
2992 if (pid >= 0 && status == 0)
2993 return 1;
2994 }
2995 return 0;
2996 }
2997
2998 static int reshape_array(char *container, int fd, char *devname,
2999 struct supertype *st, struct mdinfo *info,
3000 int force, struct mddev_dev *devlist,
3001 unsigned long long data_offset,
3002 char *backup_file, int verbose, int forked,
3003 int restart, int freeze_reshape)
3004 {
3005 struct reshape reshape;
3006 int spares_needed;
3007 char *msg;
3008 int orig_level = UnSet;
3009 int odisks;
3010 int delayed;
3011
3012 struct mdu_array_info_s array;
3013 char *c;
3014
3015 struct mddev_dev *dv;
3016 int added_disks;
3017
3018 int *fdlist = NULL;
3019 unsigned long long *offsets = NULL;
3020 int d;
3021 int nrdisks;
3022 int err;
3023 unsigned long blocks;
3024 unsigned long long array_size;
3025 int done;
3026 struct mdinfo *sra = NULL;
3027 char buf[20];
3028
3029 /* when reshaping a RAID0, the component_size might be zero.
3030 * So try to fix that up.
3031 */
3032 if (md_get_array_info(fd, &array) != 0) {
3033 dprintf("Cannot get array information.\n");
3034 goto release;
3035 }
3036 if (array.level == 0 && info->component_size == 0) {
3037 get_dev_size(fd, NULL, &array_size);
3038 info->component_size = array_size / array.raid_disks;
3039 }
3040
3041 if (array.level == 10)
3042 /* Need space_after info */
3043 get_space_after(fd, st, info);
3044
3045 if (info->reshape_active) {
3046 int new_level = info->new_level;
3047 info->new_level = UnSet;
3048 if (info->delta_disks > 0)
3049 info->array.raid_disks -= info->delta_disks;
3050 msg = analyse_change(devname, info, &reshape);
3051 info->new_level = new_level;
3052 if (info->delta_disks > 0)
3053 info->array.raid_disks += info->delta_disks;
3054 if (!restart)
3055 /* Make sure the array isn't read-only */
3056 ioctl(fd, RESTART_ARRAY_RW, 0);
3057 } else
3058 msg = analyse_change(devname, info, &reshape);
3059 if (msg) {
3060 /* if msg == "", error has already been printed */
3061 if (msg[0])
3062 pr_err("%s\n", msg);
3063 goto release;
3064 }
3065 if (restart &&
3066 (reshape.level != info->array.level ||
3067 reshape.before.layout != info->array.layout ||
3068 reshape.before.data_disks + reshape.parity
3069 != info->array.raid_disks - max(0, info->delta_disks))) {
3070 pr_err("reshape info is not in native format - cannot continue.\n");
3071 goto release;
3072 }
3073
3074 if (st->ss->external && restart && (info->reshape_progress == 0) &&
3075 !((sysfs_get_str(info, NULL, "sync_action", buf, sizeof(buf)) > 0) &&
3076 (strncmp(buf, "reshape", 7) == 0))) {
3077 /* When reshape is restarted from '0', very begin of array
3078 * it is possible that for external metadata reshape and array
3079 * configuration doesn't happen.
3080 * Check if md has the same opinion, and reshape is restarted
3081 * from 0. If so, this is regular reshape start after reshape
3082 * switch in metadata to next array only.
3083 */
3084 if ((verify_reshape_position(info, reshape.level) >= 0) &&
3085 (info->reshape_progress == 0))
3086 restart = 0;
3087 }
3088 if (restart) {
3089 /* reshape already started. just skip to monitoring the reshape */
3090 if (reshape.backup_blocks == 0)
3091 return 0;
3092 if (restart & RESHAPE_NO_BACKUP)
3093 return 0;
3094
3095 /* Need 'sra' down at 'started:' */
3096 sra = sysfs_read(fd, NULL,
3097 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
3098 GET_CACHE);
3099 if (!sra) {
3100 pr_err("%s: Cannot get array details from sysfs\n",
3101 devname);
3102 goto release;
3103 }
3104
3105 if (!backup_file)
3106 backup_file = locate_backup(sra->sys_name);
3107
3108 goto started;
3109 }
3110 /* The container is frozen but the array may not be.
3111 * So freeze the array so spares don't get put to the wrong use
3112 * FIXME there should probably be a cleaner separation between
3113 * freeze_array and freeze_container.
3114 */
3115 sysfs_freeze_array(info);
3116 /* Check we have enough spares to not be degraded */
3117 added_disks = 0;
3118 for (dv = devlist; dv ; dv=dv->next)
3119 added_disks++;
3120 spares_needed = max(reshape.before.data_disks,
3121 reshape.after.data_disks)
3122 + reshape.parity - array.raid_disks;
3123
3124 if (!force &&
3125 info->new_level > 1 && info->array.level > 1 &&
3126 spares_needed > info->array.spare_disks + added_disks) {
3127 pr_err("Need %d spare%s to avoid degraded array, and only have %d.\n"
3128 " Use --force to over-ride this check.\n",
3129 spares_needed,
3130 spares_needed == 1 ? "" : "s",
3131 info->array.spare_disks + added_disks);
3132 goto release;
3133 }
3134 /* Check we have enough spares to not fail */
3135 spares_needed = max(reshape.before.data_disks,
3136 reshape.after.data_disks)
3137 - array.raid_disks;
3138 if ((info->new_level > 1 || info->new_level == 0) &&
3139 spares_needed > info->array.spare_disks +added_disks) {
3140 pr_err("Need %d spare%s to create working array, and only have %d.\n",
3141 spares_needed,
3142 spares_needed == 1 ? "" : "s",
3143 info->array.spare_disks + added_disks);
3144 goto release;
3145 }
3146
3147 if (reshape.level != array.level) {
3148 int err = impose_level(fd, reshape.level, devname, verbose);
3149 if (err)
3150 goto release;
3151 info->new_layout = UnSet; /* after level change,
3152 * layout is meaningless */
3153 orig_level = array.level;
3154 sysfs_freeze_array(info);
3155
3156 if (reshape.level > 0 && st->ss->external) {
3157 /* make sure mdmon is aware of the new level */
3158 if (mdmon_running(container))
3159 flush_mdmon(container);
3160
3161 if (!mdmon_running(container))
3162 start_mdmon(container);
3163 ping_monitor(container);
3164 if (mdmon_running(container) &&
3165 st->update_tail == NULL)
3166 st->update_tail = &st->updates;
3167 }
3168 }
3169 /* ->reshape_super might have chosen some spares from the
3170 * container that it wants to be part of the new array.
3171 * We can collect them with ->container_content and give
3172 * them to the kernel.
3173 */
3174 if (st->ss->reshape_super && st->ss->container_content) {
3175 char *subarray = strchr(info->text_version+1, '/')+1;
3176 struct mdinfo *info2 =
3177 st->ss->container_content(st, subarray);
3178 struct mdinfo *d;
3179
3180 if (info2) {
3181 sysfs_init(info2, fd, st->devnm);
3182 /* When increasing number of devices, we need to set
3183 * new raid_disks before adding these, or they might
3184 * be rejected.
3185 */
3186 if (reshape.backup_blocks &&
3187 reshape.after.data_disks > reshape.before.data_disks)
3188 subarray_set_num(container, info2, "raid_disks",
3189 reshape.after.data_disks +
3190 reshape.parity);
3191 for (d = info2->devs; d; d = d->next) {
3192 if (d->disk.state == 0 &&
3193 d->disk.raid_disk >= 0) {
3194 /* This is a spare that wants to
3195 * be part of the array.
3196 */
3197 add_disk(fd, st, info2, d);
3198 }
3199 }
3200 sysfs_free(info2);
3201 }
3202 }
3203 /* We might have been given some devices to add to the
3204 * array. Now that the array has been changed to the right
3205 * level and frozen, we can safely add them.
3206 */
3207 if (devlist) {
3208 if (Manage_subdevs(devname, fd, devlist, verbose,
3209 0, NULL, 0))
3210 goto release;
3211 }
3212
3213 if (reshape.backup_blocks == 0 && data_offset != INVALID_SECTORS)
3214 reshape.backup_blocks = reshape.before.data_disks * info->array.chunk_size/512;
3215 if (reshape.backup_blocks == 0) {
3216 /* No restriping needed, but we might need to impose
3217 * some more changes: layout, raid_disks, chunk_size
3218 */
3219 /* read current array info */
3220 if (md_get_array_info(fd, &array) != 0) {
3221 dprintf("Cannot get array information.\n");
3222 goto release;
3223 }
3224 /* compare current array info with new values and if
3225 * it is different update them to new */
3226 if (info->new_layout != UnSet &&
3227 info->new_layout != array.layout) {
3228 array.layout = info->new_layout;
3229 if (md_set_array_info(fd, &array) != 0) {
3230 pr_err("failed to set new layout\n");
3231 goto release;
3232 } else if (verbose >= 0)
3233 printf("layout for %s set to %d\n",
3234 devname, array.layout);
3235 }
3236 if (info->delta_disks != UnSet &&
3237 info->delta_disks != 0 &&
3238 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
3239 array.raid_disks += info->delta_disks;
3240 if (md_set_array_info(fd, &array) != 0) {
3241 pr_err("failed to set raid disks\n");
3242 goto release;
3243 } else if (verbose >= 0) {
3244 printf("raid_disks for %s set to %d\n",
3245 devname, array.raid_disks);
3246 }
3247 }
3248 if (info->new_chunk != 0 &&
3249 info->new_chunk != array.chunk_size) {
3250 if (sysfs_set_num(info, NULL,
3251 "chunk_size", info->new_chunk) != 0) {
3252 pr_err("failed to set chunk size\n");
3253 goto release;
3254 } else if (verbose >= 0)
3255 printf("chunk size for %s set to %d\n",
3256 devname, array.chunk_size);
3257 }
3258 unfreeze(st);
3259 return 0;
3260 }
3261
3262 /*
3263 * There are three possibilities.
3264 * 1/ The array will shrink.
3265 * We need to ensure the reshape will pause before reaching
3266 * the 'critical section'. We also need to fork and wait for
3267 * that to happen. When it does we
3268 * suspend/backup/complete/unfreeze
3269 *
3270 * 2/ The array will not change size.
3271 * This requires that we keep a backup of a sliding window
3272 * so that we can restore data after a crash. So we need
3273 * to fork and monitor progress.
3274 * In future we will allow the data_offset to change, so
3275 * a sliding backup becomes unnecessary.
3276 *
3277 * 3/ The array will grow. This is relatively easy.
3278 * However the kernel's restripe routines will cheerfully
3279 * overwrite some early data before it is safe. So we
3280 * need to make a backup of the early parts of the array
3281 * and be ready to restore it if rebuild aborts very early.
3282 * For externally managed metadata, we still need a forked
3283 * child to monitor the reshape and suspend IO over the region
3284 * that is being reshaped.
3285 *
3286 * We backup data by writing it to one spare, or to a
3287 * file which was given on command line.
3288 *
3289 * In each case, we first make sure that storage is available
3290 * for the required backup.
3291 * Then we:
3292 * - request the shape change.
3293 * - fork to handle backup etc.
3294 */
3295 /* Check that we can hold all the data */
3296 get_dev_size(fd, NULL, &array_size);
3297 if (reshape.new_size < (array_size/512)) {
3298 pr_err("this change will reduce the size of the array.\n"
3299 " use --grow --array-size first to truncate array.\n"
3300 " e.g. mdadm --grow %s --array-size %llu\n",
3301 devname, reshape.new_size/2);
3302 goto release;
3303 }
3304
3305 if (array.level == 10) {
3306 /* Reshaping RAID10 does not require any data backup by
3307 * user-space. Instead it requires that the data_offset
3308 * is changed to avoid the need for backup.
3309 * So this is handled very separately
3310 */
3311 if (restart)
3312 /* Nothing to do. */
3313 return 0;
3314 return raid10_reshape(container, fd, devname, st, info,
3315 &reshape, data_offset,
3316 force, verbose);
3317 }
3318 sra = sysfs_read(fd, NULL,
3319 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
3320 GET_CACHE);
3321 if (!sra) {
3322 pr_err("%s: Cannot get array details from sysfs\n",
3323 devname);
3324 goto release;
3325 }
3326
3327 if (!backup_file)
3328 switch(set_new_data_offset(sra, st, devname,
3329 reshape.after.data_disks - reshape.before.data_disks,
3330 data_offset,
3331 reshape.min_offset_change, 1)) {
3332 case -1:
3333 goto release;
3334 case 0:
3335 /* Updated data_offset, so it's easy now */
3336 update_cache_size(container, sra, info,
3337 min(reshape.before.data_disks,
3338 reshape.after.data_disks),
3339 reshape.backup_blocks);
3340
3341 /* Right, everything seems fine. Let's kick things off.
3342 */
3343 sync_metadata(st);
3344
3345 if (impose_reshape(sra, info, st, fd, restart,
3346 devname, container, &reshape) < 0)
3347 goto release;
3348 if (sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0) {
3349 struct mdinfo *sd;
3350 if (errno != EINVAL) {
3351 pr_err("Failed to initiate reshape!\n");
3352 goto release;
3353 }
3354 /* revert data_offset and try the old way */
3355 for (sd = sra->devs; sd; sd = sd->next) {
3356 sysfs_set_num(sra, sd, "new_offset",
3357 sd->data_offset);
3358 sysfs_set_str(sra, NULL, "reshape_direction",
3359 "forwards");
3360 }
3361 break;
3362 }
3363 if (info->new_level == reshape.level)
3364 return 0;
3365 /* need to adjust level when reshape completes */
3366 switch(fork()) {
3367 case -1: /* ignore error, but don't wait */
3368 return 0;
3369 default: /* parent */
3370 return 0;
3371 case 0:
3372 map_fork();
3373 break;
3374 }
3375 close(fd);
3376 wait_reshape(sra);
3377 fd = open_dev(sra->sys_name);
3378 if (fd >= 0)
3379 impose_level(fd, info->new_level, devname, verbose);
3380 return 0;
3381 case 1: /* Couldn't set data_offset, try the old way */
3382 if (data_offset != INVALID_SECTORS) {
3383 pr_err("Cannot update data_offset on this array\n");
3384 goto release;
3385 }
3386 break;
3387 }
3388
3389 started:
3390 /* Decide how many blocks (sectors) for a reshape
3391 * unit. The number we have so far is just a minimum
3392 */
3393 blocks = reshape.backup_blocks;
3394 if (reshape.before.data_disks ==
3395 reshape.after.data_disks) {
3396 /* Make 'blocks' bigger for better throughput, but
3397 * not so big that we reject it below.
3398 * Try for 16 megabytes
3399 */
3400 while (blocks * 32 < sra->component_size &&
3401 blocks < 16*1024*2)
3402 blocks *= 2;
3403 } else
3404 pr_err("Need to backup %luK of critical section..\n", blocks/2);
3405
3406 if (blocks >= sra->component_size/2) {
3407 pr_err("%s: Something wrong - reshape aborted\n",
3408 devname);
3409 goto release;
3410 }
3411
3412 /* Now we need to open all these devices so we can read/write.
3413 */
3414 nrdisks = max(reshape.before.data_disks,
3415 reshape.after.data_disks) + reshape.parity
3416 + sra->array.spare_disks;
3417 fdlist = xcalloc((1+nrdisks), sizeof(int));
3418 offsets = xcalloc((1+nrdisks), sizeof(offsets[0]));
3419
3420 odisks = reshape.before.data_disks + reshape.parity;
3421 d = reshape_prepare_fdlist(devname, sra, odisks,
3422 nrdisks, blocks, backup_file,
3423 fdlist, offsets);
3424 if (d < odisks) {
3425 goto release;
3426 }
3427 if ((st->ss->manage_reshape == NULL) ||
3428 (st->ss->recover_backup == NULL)) {
3429 if (backup_file == NULL) {
3430 if (reshape.after.data_disks <=
3431 reshape.before.data_disks) {
3432 pr_err("%s: Cannot grow - need backup-file\n",
3433 devname);
3434 pr_err(" Please provide one with \"--backup=...\"\n");
3435 goto release;
3436 } else if (d == odisks) {
3437 pr_err("%s: Cannot grow - need a spare or backup-file to backup critical section\n", devname);
3438 goto release;
3439 }
3440 } else {
3441 if (!reshape_open_backup_file(backup_file, fd, devname,
3442 (signed)blocks,
3443 fdlist+d, offsets+d,
3444 sra->sys_name,
3445 restart)) {
3446 goto release;
3447 }
3448 d++;
3449 }
3450 }
3451
3452 update_cache_size(container, sra, info,
3453 min(reshape.before.data_disks, reshape.after.data_disks),
3454 blocks);
3455
3456 /* Right, everything seems fine. Let's kick things off.
3457 * If only changing raid_disks, use ioctl, else use
3458 * sysfs.
3459 */
3460 sync_metadata(st);
3461
3462 if (impose_reshape(sra, info, st, fd, restart,
3463 devname, container, &reshape) < 0)
3464 goto release;
3465
3466 err = start_reshape(sra, restart, reshape.before.data_disks,
3467 reshape.after.data_disks);
3468 if (err) {
3469 pr_err("Cannot %s reshape for %s\n",
3470 restart ? "continue" : "start",
3471 devname);
3472 goto release;
3473 }
3474 if (restart)
3475 sysfs_set_str(sra, NULL, "array_state", "active");
3476 if (freeze_reshape) {
3477 free(fdlist);
3478 free(offsets);
3479 sysfs_free(sra);
3480 pr_err("Reshape has to be continued from location %llu when root filesystem has been mounted.\n",
3481 sra->reshape_progress);
3482 return 1;
3483 }
3484
3485 if (!forked && !check_env("MDADM_NO_SYSTEMCTL"))
3486 if (continue_via_systemd(container ?: sra->sys_name)) {
3487 free(fdlist);
3488 free(offsets);
3489 sysfs_free(sra);
3490 return 0;
3491 }
3492
3493 /* Now we just need to kick off the reshape and watch, while
3494 * handling backups of the data...
3495 * This is all done by a forked background process.
3496 */
3497 switch(forked ? 0 : fork()) {
3498 case -1:
3499 pr_err("Cannot run child to monitor reshape: %s\n",
3500 strerror(errno));
3501 abort_reshape(sra);
3502 goto release;
3503 default:
3504 free(fdlist);
3505 free(offsets);
3506 sysfs_free(sra);
3507 return 0;
3508 case 0:
3509 map_fork();
3510 break;
3511 }
3512
3513 /* If another array on the same devices is busy, the
3514 * reshape will wait for them. This would mean that
3515 * the first section that we suspend will stay suspended
3516 * for a long time. So check on that possibility
3517 * by looking for "DELAYED" in /proc/mdstat, and if found,
3518 * wait a while
3519 */
3520 do {
3521 struct mdstat_ent *mds, *m;
3522 delayed = 0;
3523 mds = mdstat_read(1, 0);
3524 for (m = mds; m; m = m->next)
3525 if (strcmp(m->devnm, sra->sys_name) == 0) {
3526 if (m->resync &&
3527 m->percent == RESYNC_DELAYED)
3528 delayed = 1;
3529 if (m->resync == 0)
3530 /* Haven't started the reshape thread
3531 * yet, wait a bit
3532 */
3533 delayed = 2;
3534 break;
3535 }
3536 free_mdstat(mds);
3537 if (delayed == 1 && get_linux_version() < 3007000) {
3538 pr_err("Reshape is delayed, but cannot wait carefully with this kernel.\n"
3539 " You might experience problems until other reshapes complete.\n");
3540 delayed = 0;
3541 }
3542 if (delayed)
3543 mdstat_wait(30 - (delayed-1) * 25);
3544 } while (delayed);
3545 mdstat_close();
3546 close(fd);
3547 if (check_env("MDADM_GROW_VERIFY"))
3548 fd = open(devname, O_RDONLY | O_DIRECT);
3549 else
3550 fd = -1;
3551 mlockall(MCL_FUTURE);
3552
3553 signal(SIGTERM, catch_term);
3554
3555 if (st->ss->external) {
3556 /* metadata handler takes it from here */
3557 done = st->ss->manage_reshape(
3558 fd, sra, &reshape, st, blocks,
3559 fdlist, offsets,
3560 d - odisks, fdlist+odisks,
3561 offsets+odisks);
3562 } else
3563 done = child_monitor(
3564 fd, sra, &reshape, st, blocks,
3565 fdlist, offsets,
3566 d - odisks, fdlist+odisks,
3567 offsets+odisks);
3568
3569 free(fdlist);
3570 free(offsets);
3571
3572 if (backup_file && done) {
3573 char *bul;
3574 bul = make_backup(sra->sys_name);
3575 if (bul) {
3576 char buf[1024];
3577 int l = readlink(bul, buf, sizeof(buf) - 1);
3578 if (l > 0) {
3579 buf[l]=0;
3580 unlink(buf);
3581 }
3582 unlink(bul);
3583 free(bul);
3584 }
3585 unlink(backup_file);
3586 }
3587 if (!done) {
3588 abort_reshape(sra);
3589 goto out;
3590 }
3591
3592 if (!st->ss->external &&
3593 !(reshape.before.data_disks != reshape.after.data_disks
3594 && info->custom_array_size) &&
3595 info->new_level == reshape.level &&
3596 !forked) {
3597 /* no need to wait for the reshape to finish as
3598 * there is nothing more to do.
3599 */
3600 sysfs_free(sra);
3601 exit(0);
3602 }
3603 wait_reshape(sra);
3604
3605 if (st->ss->external) {
3606 /* Re-load the metadata as much could have changed */
3607 int cfd = open_dev(st->container_devnm);
3608 if (cfd >= 0) {
3609 flush_mdmon(container);
3610 st->ss->free_super(st);
3611 st->ss->load_container(st, cfd, container);
3612 close(cfd);
3613 }
3614 }
3615
3616 /* set new array size if required customer_array_size is used
3617 * by this metadata.
3618 */
3619 if (reshape.before.data_disks !=
3620 reshape.after.data_disks &&
3621 info->custom_array_size)
3622 set_array_size(st, info, info->text_version);
3623
3624 if (info->new_level != reshape.level) {
3625 if (fd < 0)
3626 fd = open(devname, O_RDONLY);
3627 impose_level(fd, info->new_level, devname, verbose);
3628 close(fd);
3629 if (info->new_level == 0)
3630 st->update_tail = NULL;
3631 }
3632 out:
3633 sysfs_free(sra);
3634 if (forked)
3635 return 0;
3636 unfreeze(st);
3637 exit(0);
3638
3639 release:
3640 free(fdlist);
3641 free(offsets);
3642 if (orig_level != UnSet && sra) {
3643 c = map_num(pers, orig_level);
3644 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
3645 pr_err("aborting level change\n");
3646 }
3647 sysfs_free(sra);
3648 if (!forked)
3649 unfreeze(st);
3650 return 1;
3651 }
3652
3653 /* mdfd handle is passed to be closed in child process (after fork).
3654 */
3655 int reshape_container(char *container, char *devname,
3656 int mdfd,
3657 struct supertype *st,
3658 struct mdinfo *info,
3659 int force,
3660 char *backup_file, int verbose,
3661 int forked, int restart, int freeze_reshape)
3662 {
3663 struct mdinfo *cc = NULL;
3664 int rv = restart;
3665 char last_devnm[32] = "";
3666
3667 /* component_size is not meaningful for a container,
3668 * so pass '0' meaning 'no change'
3669 */
3670 if (!restart &&
3671 reshape_super(st, 0, info->new_level,
3672 info->new_layout, info->new_chunk,
3673 info->array.raid_disks, info->delta_disks,
3674 backup_file, devname, APPLY_METADATA_CHANGES,
3675 verbose)) {
3676 unfreeze(st);
3677 return 1;
3678 }
3679
3680 sync_metadata(st);
3681
3682 /* ping monitor to be sure that update is on disk
3683 */
3684 ping_monitor(container);
3685
3686 if (!forked && !freeze_reshape && !check_env("MDADM_NO_SYSTEMCTL"))
3687 if (continue_via_systemd(container))
3688 return 0;
3689
3690 switch (forked ? 0 : fork()) {
3691 case -1: /* error */
3692 perror("Cannot fork to complete reshape\n");
3693 unfreeze(st);
3694 return 1;
3695 default: /* parent */
3696 if (!freeze_reshape)
3697 printf("%s: multi-array reshape continues in background\n", Name);
3698 return 0;
3699 case 0: /* child */
3700 map_fork();
3701 break;
3702 }
3703
3704 /* close unused handle in child process
3705 */
3706 if (mdfd > -1)
3707 close(mdfd);
3708
3709 while(1) {
3710 /* For each member array with reshape_active,
3711 * we need to perform the reshape.
3712 * We pick the first array that needs reshaping and
3713 * reshape it. reshape_array() will re-read the metadata
3714 * so the next time through a different array should be
3715 * ready for reshape.
3716 * It is possible that the 'different' array will not
3717 * be assembled yet. In that case we simple exit.
3718 * When it is assembled, the mdadm which assembles it
3719 * will take over the reshape.
3720 */
3721 struct mdinfo *content;
3722 int fd;
3723 struct mdstat_ent *mdstat;
3724 char *adev;
3725 dev_t devid;
3726
3727 sysfs_free(cc);
3728
3729 cc = st->ss->container_content(st, NULL);
3730
3731 for (content = cc; content ; content = content->next) {
3732 char *subarray;
3733 if (!content->reshape_active)
3734 continue;
3735
3736 subarray = strchr(content->text_version+1, '/')+1;
3737 mdstat = mdstat_by_subdev(subarray, container);
3738 if (!mdstat)
3739 continue;
3740 if (mdstat->active == 0) {
3741 pr_err("Skipping inactive array %s.\n",
3742 mdstat->devnm);
3743 free_mdstat(mdstat);
3744 mdstat = NULL;
3745 continue;
3746 }
3747 break;
3748 }
3749 if (!content)
3750 break;
3751
3752 devid = devnm2devid(mdstat->devnm);
3753 adev = map_dev(major(devid), minor(devid), 0);
3754 if (!adev)
3755 adev = content->text_version;
3756
3757 fd = open_dev(mdstat->devnm);
3758 if (fd < 0) {
3759 pr_err("Device %s cannot be opened for reshape.\n", adev);
3760 break;
3761 }
3762
3763 if (strcmp(last_devnm, mdstat->devnm) == 0) {
3764 /* Do not allow for multiple reshape_array() calls for
3765 * the same array.
3766 * It can happen when reshape_array() returns without
3767 * error, when reshape is not finished (wrong reshape
3768 * starting/continuation conditions). Mdmon doesn't
3769 * switch to next array in container and reentry
3770 * conditions for the same array occur.
3771 * This is possibly interim until the behaviour of
3772 * reshape_array is resolved().
3773 */
3774 printf("%s: Multiple reshape execution detected for device %s.\n", Name, adev);
3775 close(fd);
3776 break;
3777 }
3778 strcpy(last_devnm, mdstat->devnm);
3779
3780 sysfs_init(content, fd, mdstat->devnm);
3781
3782 if (mdmon_running(container))
3783 flush_mdmon(container);
3784
3785 rv = reshape_array(container, fd, adev, st,
3786 content, force, NULL, INVALID_SECTORS,
3787 backup_file, verbose, 1, restart,
3788 freeze_reshape);
3789 close(fd);
3790
3791 if (freeze_reshape) {
3792 sysfs_free(cc);
3793 exit(0);
3794 }
3795
3796 restart = 0;
3797 if (rv)
3798 break;
3799
3800 if (mdmon_running(container))
3801 flush_mdmon(container);
3802 }
3803 if (!rv)
3804 unfreeze(st);
3805 sysfs_free(cc);
3806 exit(0);
3807 }
3808
3809 /*
3810 * We run a child process in the background which performs the following
3811 * steps:
3812 * - wait for resync to reach a certain point
3813 * - suspend io to the following section
3814 * - backup that section
3815 * - allow resync to proceed further
3816 * - resume io
3817 * - discard the backup.
3818 *
3819 * When are combined in slightly different ways in the three cases.
3820 * Grow:
3821 * - suspend/backup/allow/wait/resume/discard
3822 * Shrink:
3823 * - allow/wait/suspend/backup/allow/wait/resume/discard
3824 * same-size:
3825 * - wait/resume/discard/suspend/backup/allow
3826 *
3827 * suspend/backup/allow always come together
3828 * wait/resume/discard do too.
3829 * For the same-size case we have two backups to improve flow.
3830 *
3831 */
3832
3833 int progress_reshape(struct mdinfo *info, struct reshape *reshape,
3834 unsigned long long backup_point,
3835 unsigned long long wait_point,
3836 unsigned long long *suspend_point,
3837 unsigned long long *reshape_completed, int *frozen)
3838 {
3839 /* This function is called repeatedly by the reshape manager.
3840 * It determines how much progress can safely be made and allows
3841 * that progress.
3842 * - 'info' identifies the array and particularly records in
3843 * ->reshape_progress the metadata's knowledge of progress
3844 * This is a sector offset from the start of the array
3845 * of the next array block to be relocated. This number
3846 * may increase from 0 or decrease from array_size, depending
3847 * on the type of reshape that is happening.
3848 * Note that in contrast, 'sync_completed' is a block count of the
3849 * reshape so far. It gives the distance between the start point
3850 * (head or tail of device) and the next place that data will be
3851 * written. It always increases.
3852 * - 'reshape' is the structure created by analyse_change
3853 * - 'backup_point' shows how much the metadata manager has backed-up
3854 * data. For reshapes with increasing progress, it is the next address
3855 * to be backed up, previous addresses have been backed-up. For
3856 * decreasing progress, it is the earliest address that has been
3857 * backed up - later address are also backed up.
3858 * So addresses between reshape_progress and backup_point are
3859 * backed up providing those are in the 'correct' order.
3860 * - 'wait_point' is an array address. When reshape_completed
3861 * passes this point, progress_reshape should return. It might
3862 * return earlier if it determines that ->reshape_progress needs
3863 * to be updated or further backup is needed.
3864 * - suspend_point is maintained by progress_reshape and the caller
3865 * should not touch it except to initialise to zero.
3866 * It is an array address and it only increases in 2.6.37 and earlier.
3867 * This makes it difficult to handle reducing reshapes with
3868 * external metadata.
3869 * However: it is similar to backup_point in that it records the
3870 * other end of a suspended region from reshape_progress.
3871 * it is moved to extend the region that is safe to backup and/or
3872 * reshape
3873 * - reshape_completed is read from sysfs and returned. The caller
3874 * should copy this into ->reshape_progress when it has reason to
3875 * believe that the metadata knows this, and any backup outside this
3876 * has been erased.
3877 *
3878 * Return value is:
3879 * 1 if more data from backup_point - but only as far as suspend_point,
3880 * should be backed up
3881 * 0 if things are progressing smoothly
3882 * -1 if the reshape is finished because it is all done,
3883 * -2 if the reshape is finished due to an error.
3884 */
3885
3886 int advancing = (reshape->after.data_disks
3887 >= reshape->before.data_disks);
3888 unsigned long long need_backup; /* All data between start of array and
3889 * here will at some point need to
3890 * be backed up.
3891 */
3892 unsigned long long read_offset, write_offset;
3893 unsigned long long write_range;
3894 unsigned long long max_progress, target, completed;
3895 unsigned long long array_size = (info->component_size
3896 * reshape->before.data_disks);
3897 int fd;
3898 char buf[20];
3899
3900 /* First, we unsuspend any region that is now known to be safe.
3901 * If suspend_point is on the 'wrong' side of reshape_progress, then
3902 * we don't have or need suspension at the moment. This is true for
3903 * native metadata when we don't need to back-up.
3904 */
3905 if (advancing) {
3906 if (info->reshape_progress <= *suspend_point)
3907 sysfs_set_num(info, NULL, "suspend_lo",
3908 info->reshape_progress);
3909 } else {
3910 /* Note: this won't work in 2.6.37 and before.
3911 * Something somewhere should make sure we don't need it!
3912 */
3913 if (info->reshape_progress >= *suspend_point)
3914 sysfs_set_num(info, NULL, "suspend_hi",
3915 info->reshape_progress);
3916 }
3917
3918 /* Now work out how far it is safe to progress.
3919 * If the read_offset for ->reshape_progress is less than
3920 * 'blocks' beyond the write_offset, we can only progress as far
3921 * as a backup.
3922 * Otherwise we can progress until the write_offset for the new location
3923 * reaches (within 'blocks' of) the read_offset at the current location.
3924 * However that region must be suspended unless we are using native
3925 * metadata.
3926 * If we need to suspend more, we limit it to 128M per device, which is
3927 * rather arbitrary and should be some time-based calculation.
3928 */
3929 read_offset = info->reshape_progress / reshape->before.data_disks;
3930 write_offset = info->reshape_progress / reshape->after.data_disks;
3931 write_range = info->new_chunk/512;
3932 if (reshape->before.data_disks == reshape->after.data_disks)
3933 need_backup = array_size;
3934 else
3935 need_backup = reshape->backup_blocks;
3936 if (advancing) {
3937 if (read_offset < write_offset + write_range)
3938 max_progress = backup_point;
3939 else
3940 max_progress =
3941 read_offset *
3942 reshape->after.data_disks;
3943 } else {
3944 if (read_offset > write_offset - write_range)
3945 /* Can only progress as far as has been backed up,
3946 * which must be suspended */
3947 max_progress = backup_point;
3948 else if (info->reshape_progress <= need_backup)
3949 max_progress = backup_point;
3950 else {
3951 if (info->array.major_version >= 0)
3952 /* Can progress until backup is needed */
3953 max_progress = need_backup;
3954 else {
3955 /* Can progress until metadata update is required */
3956 max_progress =
3957 read_offset *
3958 reshape->after.data_disks;
3959 /* but data must be suspended */
3960 if (max_progress < *suspend_point)
3961 max_progress = *suspend_point;
3962 }
3963 }
3964 }
3965
3966 /* We know it is safe to progress to 'max_progress' providing
3967 * it is suspended or we are using native metadata.
3968 * Consider extending suspend_point 128M per device if it
3969 * is less than 64M per device beyond reshape_progress.
3970 * But always do a multiple of 'blocks'
3971 * FIXME this is too big - it takes to long to complete
3972 * this much.
3973 */
3974 target = 64*1024*2 * min(reshape->before.data_disks,
3975 reshape->after.data_disks);
3976 target /= reshape->backup_blocks;
3977 if (target < 2)
3978 target = 2;
3979 target *= reshape->backup_blocks;
3980
3981 /* For externally managed metadata we always need to suspend IO to
3982 * the area being reshaped so we regularly push suspend_point forward.
3983 * For native metadata we only need the suspend if we are going to do
3984 * a backup.
3985 */
3986 if (advancing) {
3987 if ((need_backup > info->reshape_progress
3988 || info->array.major_version < 0) &&
3989 *suspend_point < info->reshape_progress + target) {
3990 if (need_backup < *suspend_point + 2 * target)
3991 *suspend_point = need_backup;
3992 else if (*suspend_point + 2 * target < array_size)
3993 *suspend_point += 2 * target;
3994 else
3995 *suspend_point = array_size;
3996 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
3997 if (max_progress > *suspend_point)
3998 max_progress = *suspend_point;
3999 }
4000 } else {
4001 if (info->array.major_version >= 0) {
4002 /* Only need to suspend when about to backup */
4003 if (info->reshape_progress < need_backup * 2 &&
4004 *suspend_point > 0) {
4005 *suspend_point = 0;
4006 sysfs_set_num(info, NULL, "suspend_lo", 0);
4007 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
4008 }
4009 } else {
4010 /* Need to suspend continually */
4011 if (info->reshape_progress < *suspend_point)
4012 *suspend_point = info->reshape_progress;
4013 if (*suspend_point + target < info->reshape_progress)
4014 /* No need to move suspend region yet */;
4015 else {
4016 if (*suspend_point >= 2 * target)
4017 *suspend_point -= 2 * target;
4018 else
4019 *suspend_point = 0;
4020 sysfs_set_num(info, NULL, "suspend_lo",
4021 *suspend_point);
4022 }
4023 if (max_progress < *suspend_point)
4024 max_progress = *suspend_point;
4025 }
4026 }
4027
4028 /* now set sync_max to allow that progress. sync_max, like
4029 * sync_completed is a count of sectors written per device, so
4030 * we find the difference between max_progress and the start point,
4031 * and divide that by after.data_disks to get a sync_max
4032 * number.
4033 * At the same time we convert wait_point to a similar number
4034 * for comparing against sync_completed.
4035 */
4036 /* scale down max_progress to per_disk */
4037 max_progress /= reshape->after.data_disks;
4038 /* Round to chunk size as some kernels give an erroneously high number */
4039 max_progress /= info->new_chunk/512;
4040 max_progress *= info->new_chunk/512;
4041 /* And round to old chunk size as the kernel wants that */
4042 max_progress /= info->array.chunk_size/512;
4043 max_progress *= info->array.chunk_size/512;
4044 /* Limit progress to the whole device */
4045 if (max_progress > info->component_size)
4046 max_progress = info->component_size;
4047 wait_point /= reshape->after.data_disks;
4048 if (!advancing) {
4049 /* switch from 'device offset' to 'processed block count' */
4050 max_progress = info->component_size - max_progress;
4051 wait_point = info->component_size - wait_point;
4052 }
4053
4054 if (!*frozen)
4055 sysfs_set_num(info, NULL, "sync_max", max_progress);
4056
4057 /* Now wait. If we have already reached the point that we were
4058 * asked to wait to, don't wait at all, else wait for any change.
4059 * We need to select on 'sync_completed' as that is the place that
4060 * notifications happen, but we are really interested in
4061 * 'reshape_position'
4062 */
4063 fd = sysfs_get_fd(info, NULL, "sync_completed");
4064 if (fd < 0)
4065 goto check_progress;
4066
4067 if (sysfs_fd_get_ll(fd, &completed) < 0)
4068 goto check_progress;
4069
4070 while (completed < max_progress && completed < wait_point) {
4071 /* Check that sync_action is still 'reshape' to avoid
4072 * waiting forever on a dead array
4073 */
4074 char action[20];
4075 if (sysfs_get_str(info, NULL, "sync_action",
4076 action, 20) <= 0 ||
4077 strncmp(action, "reshape", 7) != 0)
4078 break;
4079 /* Some kernels reset 'sync_completed' to zero
4080 * before setting 'sync_action' to 'idle'.
4081 * So we need these extra tests.
4082 */
4083 if (completed == 0 && advancing
4084 && strncmp(action, "idle", 4) == 0
4085 && info->reshape_progress > 0)
4086 break;
4087 if (completed == 0 && !advancing
4088 && strncmp(action, "idle", 4) == 0
4089 && info->reshape_progress < (info->component_size
4090 * reshape->after.data_disks))
4091 break;
4092 sysfs_wait(fd, NULL);
4093 if (sysfs_fd_get_ll(fd, &completed) < 0)
4094 goto check_progress;
4095 }
4096 /* Some kernels reset 'sync_completed' to zero,
4097 * we need to have real point we are in md.
4098 * So in that case, read 'reshape_position' from sysfs.
4099 */
4100 if (completed == 0) {
4101 unsigned long long reshapep;
4102 char action[20];
4103 if (sysfs_get_str(info, NULL, "sync_action",
4104 action, 20) > 0 &&
4105 strncmp(action, "idle", 4) == 0 &&
4106 sysfs_get_ll(info, NULL,
4107 "reshape_position", &reshapep) == 0)
4108 *reshape_completed = reshapep;
4109 } else {
4110 /* some kernels can give an incorrectly high
4111 * 'completed' number, so round down */
4112 completed /= (info->new_chunk/512);
4113 completed *= (info->new_chunk/512);
4114 /* Convert 'completed' back in to a 'progress' number */
4115 completed *= reshape->after.data_disks;
4116 if (!advancing)
4117 completed = (info->component_size
4118 * reshape->after.data_disks
4119 - completed);
4120 *reshape_completed = completed;
4121 }
4122
4123 close(fd);
4124
4125 /* We return the need_backup flag. Caller will decide
4126 * how much - a multiple of ->backup_blocks up to *suspend_point
4127 */
4128 if (advancing)
4129 return need_backup > info->reshape_progress;
4130 else
4131 return need_backup >= info->reshape_progress;
4132
4133 check_progress:
4134 /* if we couldn't read a number from sync_completed, then
4135 * either the reshape did complete, or it aborted.
4136 * We can tell which by checking for 'none' in reshape_position.
4137 * If it did abort, then it might immediately restart if it
4138 * it was just a device failure that leaves us degraded but
4139 * functioning.
4140 */
4141 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
4142 || strncmp(buf, "none", 4) != 0) {
4143 /* The abort might only be temporary. Wait up to 10
4144 * seconds for fd to contain a valid number again.
4145 */
4146 int wait = 10000;
4147 int rv = -2;
4148 unsigned long long new_sync_max;
4149 while (fd >= 0 && rv < 0 && wait > 0) {
4150 if (sysfs_wait(fd, &wait) != 1)
4151 break;
4152 switch (sysfs_fd_get_ll(fd, &completed)) {
4153 case 0:
4154 /* all good again */
4155 rv = 1;
4156 /* If "sync_max" is no longer max_progress
4157 * we need to freeze things
4158 */
4159 sysfs_get_ll(info, NULL, "sync_max", &new_sync_max);
4160 *frozen = (new_sync_max != max_progress);
4161 break;
4162 case -2: /* read error - abort */
4163 wait = 0;
4164 break;
4165 }
4166 }
4167 if (fd >= 0)
4168 close(fd);
4169 return rv; /* abort */
4170 } else {
4171 /* Maybe racing with array shutdown - check state */
4172 if (fd >= 0)
4173 close(fd);
4174 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
4175 || strncmp(buf, "inactive", 8) == 0
4176 || strncmp(buf, "clear",5) == 0)
4177 return -2; /* abort */
4178 return -1; /* complete */
4179 }
4180 }
4181
4182 /* FIXME return status is never checked */
4183 static int grow_backup(struct mdinfo *sra,
4184 unsigned long long offset, /* per device */
4185 unsigned long stripes, /* per device, in old chunks */
4186 int *sources, unsigned long long *offsets,
4187 int disks, int chunk, int level, int layout,
4188 int dests, int *destfd, unsigned long long *destoffsets,
4189 int part, int *degraded,
4190 char *buf)
4191 {
4192 /* Backup 'blocks' sectors at 'offset' on each device of the array,
4193 * to storage 'destfd' (offset 'destoffsets'), after first
4194 * suspending IO. Then allow resync to continue
4195 * over the suspended section.
4196 * Use part 'part' of the backup-super-block.
4197 */
4198 int odata = disks;
4199 int rv = 0;
4200 int i;
4201 unsigned long long ll;
4202 int new_degraded;
4203 //printf("offset %llu\n", offset);
4204 if (level >= 4)
4205 odata--;
4206 if (level == 6)
4207 odata--;
4208
4209 /* Check that array hasn't become degraded, else we might backup the wrong data */
4210 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
4211 return -1; /* FIXME this error is ignored */
4212 new_degraded = (int)ll;
4213 if (new_degraded != *degraded) {
4214 /* check each device to ensure it is still working */
4215 struct mdinfo *sd;
4216 for (sd = sra->devs ; sd ; sd = sd->next) {
4217 if (sd->disk.state & (1<<MD_DISK_FAULTY))
4218 continue;
4219 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
4220 char sbuf[100];
4221
4222 if (sysfs_get_str(sra, sd, "state",
4223 sbuf, sizeof(sbuf)) < 0 ||
4224 strstr(sbuf, "faulty") ||
4225 strstr(sbuf, "in_sync") == NULL) {
4226 /* this device is dead */
4227 sd->disk.state = (1<<MD_DISK_FAULTY);
4228 if (sd->disk.raid_disk >= 0 &&
4229 sources[sd->disk.raid_disk] >= 0) {
4230 close(sources[sd->disk.raid_disk]);
4231 sources[sd->disk.raid_disk] = -1;
4232 }
4233 }
4234 }
4235 }
4236 *degraded = new_degraded;
4237 }
4238 if (part) {
4239 bsb.arraystart2 = __cpu_to_le64(offset * odata);
4240 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
4241 } else {
4242 bsb.arraystart = __cpu_to_le64(offset * odata);
4243 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
4244 }
4245 if (part)
4246 bsb.magic[15] = '2';
4247 for (i = 0; i < dests; i++)
4248 if (part)
4249 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
4250 else
4251 lseek64(destfd[i], destoffsets[i], 0);
4252
4253 rv = save_stripes(sources, offsets,
4254 disks, chunk, level, layout,
4255 dests, destfd,
4256 offset*512*odata, stripes * chunk * odata,
4257 buf);
4258
4259 if (rv)
4260 return rv;
4261 bsb.mtime = __cpu_to_le64(time(0));
4262 for (i = 0; i < dests; i++) {
4263 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
4264
4265 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
4266 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
4267 bsb.sb_csum2 = bsb_csum((char*)&bsb,
4268 ((char*)&bsb.sb_csum2)-((char*)&bsb));
4269
4270 rv = -1;
4271 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
4272 != destoffsets[i] - 4096)
4273 break;
4274 if (write(destfd[i], &bsb, 512) != 512)
4275 break;
4276 if (destoffsets[i] > 4096) {
4277 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
4278 destoffsets[i]+stripes*chunk*odata)
4279 break;
4280 if (write(destfd[i], &bsb, 512) != 512)
4281 break;
4282 }
4283 fsync(destfd[i]);
4284 rv = 0;
4285 }
4286
4287 return rv;
4288 }
4289
4290 /* in 2.6.30, the value reported by sync_completed can be
4291 * less that it should be by one stripe.
4292 * This only happens when reshape hits sync_max and pauses.
4293 * So allow wait_backup to either extent sync_max further
4294 * than strictly necessary, or return before the
4295 * sync has got quite as far as we would really like.
4296 * This is what 'blocks2' is for.
4297 * The various caller give appropriate values so that
4298 * every works.
4299 */
4300 /* FIXME return value is often ignored */
4301 static int forget_backup(int dests, int *destfd,
4302 unsigned long long *destoffsets,
4303 int part)
4304 {
4305 /*
4306 * Erase backup 'part' (which is 0 or 1)
4307 */
4308 int i;
4309 int rv;
4310
4311 if (part) {
4312 bsb.arraystart2 = __cpu_to_le64(0);
4313 bsb.length2 = __cpu_to_le64(0);
4314 } else {
4315 bsb.arraystart = __cpu_to_le64(0);
4316 bsb.length = __cpu_to_le64(0);
4317 }
4318 bsb.mtime = __cpu_to_le64(time(0));
4319 rv = 0;
4320 for (i = 0; i < dests; i++) {
4321 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
4322 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
4323 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
4324 bsb.sb_csum2 = bsb_csum((char*)&bsb,
4325 ((char*)&bsb.sb_csum2)-((char*)&bsb));
4326 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
4327 destoffsets[i]-4096)
4328 rv = -1;
4329 if (rv == 0 &&
4330 write(destfd[i], &bsb, 512) != 512)
4331 rv = -1;
4332 fsync(destfd[i]);
4333 }
4334 return rv;
4335 }
4336
4337 static void fail(char *msg)
4338 {
4339 int rv;
4340 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
4341 rv |= (write(2, "\n", 1) != 1);
4342 exit(rv ? 1 : 2);
4343 }
4344
4345 static char *abuf, *bbuf;
4346 static unsigned long long abuflen;
4347 static void validate(int afd, int bfd, unsigned long long offset)
4348 {
4349 /* check that the data in the backup against the array.
4350 * This is only used for regression testing and should not
4351 * be used while the array is active
4352 */
4353 if (afd < 0)
4354 return;
4355 lseek64(bfd, offset - 4096, 0);
4356 if (read(bfd, &bsb2, 512) != 512)
4357 fail("cannot read bsb");
4358 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
4359 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
4360 fail("first csum bad");
4361 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
4362 fail("magic is bad");
4363 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
4364 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
4365 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
4366 fail("second csum bad");
4367
4368 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
4369 fail("devstart is wrong");
4370
4371 if (bsb2.length) {
4372 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
4373
4374 if (abuflen < len) {
4375 free(abuf);
4376 free(bbuf);
4377 abuflen = len;
4378 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
4379 posix_memalign((void**)&bbuf, 4096, abuflen)) {
4380 abuflen = 0;
4381 /* just stop validating on mem-alloc failure */
4382 return;
4383 }
4384 }
4385
4386 lseek64(bfd, offset, 0);
4387 if ((unsigned long long)read(bfd, bbuf, len) != len) {
4388 //printf("len %llu\n", len);
4389 fail("read first backup failed");
4390 }
4391 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
4392 if ((unsigned long long)read(afd, abuf, len) != len)
4393 fail("read first from array failed");
4394 if (memcmp(bbuf, abuf, len) != 0) {
4395 #if 0
4396 int i;
4397 printf("offset=%llu len=%llu\n",
4398 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
4399 for (i=0; i<len; i++)
4400 if (bbuf[i] != abuf[i]) {
4401 printf("first diff byte %d\n", i);
4402 break;
4403 }
4404 #endif
4405 fail("data1 compare failed");
4406 }
4407 }
4408 if (bsb2.length2) {
4409 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
4410
4411 if (abuflen < len) {
4412 free(abuf);
4413 free(bbuf);
4414 abuflen = len;
4415 abuf = xmalloc(abuflen);
4416 bbuf = xmalloc(abuflen);
4417 }
4418
4419 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
4420 if ((unsigned long long)read(bfd, bbuf, len) != len)
4421 fail("read second backup failed");
4422 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
4423 if ((unsigned long long)read(afd, abuf, len) != len)
4424 fail("read second from array failed");
4425 if (memcmp(bbuf, abuf, len) != 0)
4426 fail("data2 compare failed");
4427 }
4428 }
4429
4430 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
4431 struct supertype *st, unsigned long blocks,
4432 int *fds, unsigned long long *offsets,
4433 int dests, int *destfd, unsigned long long *destoffsets)
4434 {
4435 /* Monitor a reshape where backup is being performed using
4436 * 'native' mechanism - either to a backup file, or
4437 * to some space in a spare.
4438 */
4439 char *buf;
4440 int degraded = -1;
4441 unsigned long long speed;
4442 unsigned long long suspend_point, array_size;
4443 unsigned long long backup_point, wait_point;
4444 unsigned long long reshape_completed;
4445 int done = 0;
4446 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
4447 int part = 0; /* The next part of the backup area to fill. It may already
4448 * be full, so we need to check */
4449 int level = reshape->level;
4450 int layout = reshape->before.layout;
4451 int data = reshape->before.data_disks;
4452 int disks = reshape->before.data_disks + reshape->parity;
4453 int chunk = sra->array.chunk_size;
4454 struct mdinfo *sd;
4455 unsigned long stripes;
4456 int uuid[4];
4457 int frozen = 0;
4458
4459 /* set up the backup-super-block. This requires the
4460 * uuid from the array.
4461 */
4462 /* Find a superblock */
4463 for (sd = sra->devs; sd; sd = sd->next) {
4464 char *dn;
4465 int devfd;
4466 int ok;
4467 if (sd->disk.state & (1<<MD_DISK_FAULTY))
4468 continue;
4469 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
4470 devfd = dev_open(dn, O_RDONLY);
4471 if (devfd < 0)
4472 continue;
4473 ok = st->ss->load_super(st, devfd, NULL);
4474 close(devfd);
4475 if (ok == 0)
4476 break;
4477 }
4478 if (!sd) {
4479 pr_err("Cannot find a superblock\n");
4480 return 0;
4481 }
4482
4483 memset(&bsb, 0, 512);
4484 memcpy(bsb.magic, "md_backup_data-1", 16);
4485 st->ss->uuid_from_super(st, uuid);
4486 memcpy(bsb.set_uuid, uuid, 16);
4487 bsb.mtime = __cpu_to_le64(time(0));
4488 bsb.devstart2 = blocks;
4489
4490 stripes = blocks / (sra->array.chunk_size/512) /
4491 reshape->before.data_disks;
4492
4493 if (posix_memalign((void**)&buf, 4096, disks * chunk))
4494 /* Don't start the 'reshape' */
4495 return 0;
4496 if (reshape->before.data_disks == reshape->after.data_disks) {
4497 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
4498 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
4499 }
4500
4501 if (increasing) {
4502 array_size = sra->component_size * reshape->after.data_disks;
4503 backup_point = sra->reshape_progress;
4504 suspend_point = 0;
4505 } else {
4506 array_size = sra->component_size * reshape->before.data_disks;
4507 backup_point = reshape->backup_blocks;
4508 suspend_point = array_size;
4509 }
4510
4511 while (!done) {
4512 int rv;
4513
4514 /* Want to return as soon the oldest backup slot can
4515 * be released as that allows us to start backing up
4516 * some more, providing suspend_point has been
4517 * advanced, which it should have.
4518 */
4519 if (increasing) {
4520 wait_point = array_size;
4521 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4522 wait_point = (__le64_to_cpu(bsb.arraystart) +
4523 __le64_to_cpu(bsb.length));
4524 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4525 wait_point = (__le64_to_cpu(bsb.arraystart2) +
4526 __le64_to_cpu(bsb.length2));
4527 } else {
4528 wait_point = 0;
4529 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4530 wait_point = __le64_to_cpu(bsb.arraystart);
4531 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4532 wait_point = __le64_to_cpu(bsb.arraystart2);
4533 }
4534
4535 reshape_completed = sra->reshape_progress;
4536 rv = progress_reshape(sra, reshape,
4537 backup_point, wait_point,
4538 &suspend_point, &reshape_completed,
4539 &frozen);
4540 /* external metadata would need to ping_monitor here */
4541 sra->reshape_progress = reshape_completed;
4542
4543 /* Clear any backup region that is before 'here' */
4544 if (increasing) {
4545 if (__le64_to_cpu(bsb.length) > 0 &&
4546 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
4547 __le64_to_cpu(bsb.length)))
4548 forget_backup(dests, destfd,
4549 destoffsets, 0);
4550 if (__le64_to_cpu(bsb.length2) > 0 &&
4551 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
4552 __le64_to_cpu(bsb.length2)))
4553 forget_backup(dests, destfd,
4554 destoffsets, 1);
4555 } else {
4556 if (__le64_to_cpu(bsb.length) > 0 &&
4557 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
4558 forget_backup(dests, destfd,
4559 destoffsets, 0);
4560 if (__le64_to_cpu(bsb.length2) > 0 &&
4561 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
4562 forget_backup(dests, destfd,
4563 destoffsets, 1);
4564 }
4565 if (sigterm)
4566 rv = -2;
4567 if (rv < 0) {
4568 if (rv == -1)
4569 done = 1;
4570 break;
4571 }
4572 if (rv == 0 && increasing && !st->ss->external) {
4573 /* No longer need to monitor this reshape */
4574 sysfs_set_str(sra, NULL, "sync_max", "max");
4575 done = 1;
4576 break;
4577 }
4578
4579 while (rv) {
4580 unsigned long long offset;
4581 unsigned long actual_stripes;
4582 /* Need to backup some data.
4583 * If 'part' is not used and the desired
4584 * backup size is suspended, do a backup,
4585 * then consider the next part.
4586 */
4587 /* Check that 'part' is unused */
4588 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
4589 break;
4590 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
4591 break;
4592
4593 offset = backup_point / data;
4594 actual_stripes = stripes;
4595 if (increasing) {
4596 if (offset + actual_stripes * (chunk/512) >
4597 sra->component_size)
4598 actual_stripes = ((sra->component_size - offset)
4599 / (chunk/512));
4600 if (offset + actual_stripes * (chunk/512) >
4601 suspend_point/data)
4602 break;
4603 } else {
4604 if (offset < actual_stripes * (chunk/512))
4605 actual_stripes = offset / (chunk/512);
4606 offset -= actual_stripes * (chunk/512);
4607 if (offset < suspend_point/data)
4608 break;
4609 }
4610 if (actual_stripes == 0)
4611 break;
4612 grow_backup(sra, offset, actual_stripes,
4613 fds, offsets,
4614 disks, chunk, level, layout,
4615 dests, destfd, destoffsets,
4616 part, &degraded, buf);
4617 validate(afd, destfd[0], destoffsets[0]);
4618 /* record where 'part' is up to */
4619 part = !part;
4620 if (increasing)
4621 backup_point += actual_stripes * (chunk/512) * data;
4622 else
4623 backup_point -= actual_stripes * (chunk/512) * data;
4624 }
4625 }
4626
4627 /* FIXME maybe call progress_reshape one more time instead */
4628 /* remove any remaining suspension */
4629 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
4630 sysfs_set_num(sra, NULL, "suspend_hi", 0);
4631 sysfs_set_num(sra, NULL, "suspend_lo", 0);
4632 sysfs_set_num(sra, NULL, "sync_min", 0);
4633
4634 if (reshape->before.data_disks == reshape->after.data_disks)
4635 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
4636 free(buf);
4637 return done;
4638 }
4639
4640 /*
4641 * If any spare contains md_back_data-1 which is recent wrt mtime,
4642 * write that data into the array and update the super blocks with
4643 * the new reshape_progress
4644 */
4645 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
4646 char *backup_file, int verbose)
4647 {
4648 int i, j;
4649 int old_disks;
4650 unsigned long long *offsets;
4651 unsigned long long nstripe, ostripe;
4652 int ndata, odata;
4653
4654 odata = info->array.raid_disks - info->delta_disks - 1;
4655 if (info->array.level == 6) odata--; /* number of data disks */
4656 ndata = info->array.raid_disks - 1;
4657 if (info->new_level == 6) ndata--;
4658
4659 old_disks = info->array.raid_disks - info->delta_disks;
4660
4661 if (info->delta_disks <= 0)
4662 /* Didn't grow, so the backup file must have
4663 * been used
4664 */
4665 old_disks = cnt;
4666 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
4667 struct mdinfo dinfo;
4668 int fd;
4669 int bsbsize;
4670 char *devname, namebuf[20];
4671 unsigned long long lo, hi;
4672
4673 /* This was a spare and may have some saved data on it.
4674 * Load the superblock, find and load the
4675 * backup_super_block.
4676 * If either fail, go on to next device.
4677 * If the backup contains no new info, just return
4678 * else restore data and update all superblocks
4679 */
4680 if (i == old_disks-1) {
4681 fd = open(backup_file, O_RDONLY);
4682 if (fd<0) {
4683 pr_err("backup file %s inaccessible: %s\n",
4684 backup_file, strerror(errno));
4685 continue;
4686 }
4687 devname = backup_file;
4688 } else {
4689 fd = fdlist[i];
4690 if (fd < 0)
4691 continue;
4692 if (st->ss->load_super(st, fd, NULL))
4693 continue;
4694
4695 st->ss->getinfo_super(st, &dinfo, NULL);
4696 st->ss->free_super(st);
4697
4698 if (lseek64(fd,
4699 (dinfo.data_offset + dinfo.component_size - 8) <<9,
4700 0) < 0) {
4701 pr_err("Cannot seek on device %d\n", i);
4702 continue; /* Cannot seek */
4703 }
4704 sprintf(namebuf, "device-%d", i);
4705 devname = namebuf;
4706 }
4707 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
4708 if (verbose)
4709 pr_err("Cannot read from %s\n", devname);
4710 continue; /* Cannot read */
4711 }
4712 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
4713 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
4714 if (verbose)
4715 pr_err("No backup metadata on %s\n", devname);
4716 continue;
4717 }
4718 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
4719 if (verbose)
4720 pr_err("Bad backup-metadata checksum on %s\n", devname);
4721 continue; /* bad checksum */
4722 }
4723 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
4724 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
4725 if (verbose)
4726 pr_err("Bad backup-metadata checksum2 on %s\n", devname);
4727 continue; /* Bad second checksum */
4728 }
4729 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
4730 if (verbose)
4731 pr_err("Wrong uuid on backup-metadata on %s\n", devname);
4732 continue; /* Wrong uuid */
4733 }
4734
4735 /* array utime and backup-mtime should be updated at much the same time, but it seems that
4736 * sometimes they aren't... So allow considerable flexability in matching, and allow
4737 * this test to be overridden by an environment variable.
4738 */
4739 if(time_after(info->array.utime, (unsigned int)__le64_to_cpu(bsb.mtime) + 2*60*60) ||
4740 time_before(info->array.utime, (unsigned int)__le64_to_cpu(bsb.mtime) - 10*60)) {
4741 if (check_env("MDADM_GROW_ALLOW_OLD")) {
4742 pr_err("accepting backup with timestamp %lu for array with timestamp %lu\n",
4743 (unsigned long)__le64_to_cpu(bsb.mtime),
4744 (unsigned long)info->array.utime);
4745 } else {
4746 pr_err("too-old timestamp on backup-metadata on %s\n", devname);
4747 pr_err("If you think it is should be safe, try 'export MDADM_GROW_ALLOW_OLD=1'\n");
4748 continue; /* time stamp is too bad */
4749 }
4750 }
4751
4752 if (bsb.magic[15] == '1') {
4753 if (bsb.length == 0)
4754 continue;
4755 if (info->delta_disks >= 0) {
4756 /* reshape_progress is increasing */
4757 if (__le64_to_cpu(bsb.arraystart)
4758 + __le64_to_cpu(bsb.length)
4759 < info->reshape_progress) {
4760 nonew:
4761 if (verbose)
4762 pr_err("backup-metadata found on %s but is not needed\n", devname);
4763 continue; /* No new data here */
4764 }
4765 } else {
4766 /* reshape_progress is decreasing */
4767 if (__le64_to_cpu(bsb.arraystart) >=
4768 info->reshape_progress)
4769 goto nonew; /* No new data here */
4770 }
4771 } else {
4772 if (bsb.length == 0 && bsb.length2 == 0)
4773 continue;
4774 if (info->delta_disks >= 0) {
4775 /* reshape_progress is increasing */
4776 if ((__le64_to_cpu(bsb.arraystart)
4777 + __le64_to_cpu(bsb.length)
4778 < info->reshape_progress)
4779 &&
4780 (__le64_to_cpu(bsb.arraystart2)
4781 + __le64_to_cpu(bsb.length2)
4782 < info->reshape_progress))
4783 goto nonew; /* No new data here */
4784 } else {
4785 /* reshape_progress is decreasing */
4786 if (__le64_to_cpu(bsb.arraystart) >=
4787 info->reshape_progress &&
4788 __le64_to_cpu(bsb.arraystart2) >=
4789 info->reshape_progress)
4790 goto nonew; /* No new data here */
4791 }
4792 }
4793 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
4794 second_fail:
4795 if (verbose)
4796 pr_err("Failed to verify secondary backup-metadata block on %s\n",
4797 devname);
4798 continue; /* Cannot seek */
4799 }
4800 /* There should be a duplicate backup superblock 4k before here */
4801 if (lseek64(fd, -4096, 1) < 0 ||
4802 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
4803 goto second_fail; /* Cannot find leading superblock */
4804 if (bsb.magic[15] == '1')
4805 bsbsize = offsetof(struct mdp_backup_super, pad1);
4806 else
4807 bsbsize = offsetof(struct mdp_backup_super, pad);
4808 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
4809 goto second_fail; /* Cannot find leading superblock */
4810
4811 /* Now need the data offsets for all devices. */
4812 offsets = xmalloc(sizeof(*offsets)*info->array.raid_disks);
4813 for(j=0; j<info->array.raid_disks; j++) {
4814 if (fdlist[j] < 0)
4815 continue;
4816 if (st->ss->load_super(st, fdlist[j], NULL))
4817 /* FIXME should be this be an error */
4818 continue;
4819 st->ss->getinfo_super(st, &dinfo, NULL);
4820 st->ss->free_super(st);
4821 offsets[j] = dinfo.data_offset * 512;
4822 }
4823 printf("%s: restoring critical section\n", Name);
4824
4825 if (restore_stripes(fdlist, offsets,
4826 info->array.raid_disks,
4827 info->new_chunk,
4828 info->new_level,
4829 info->new_layout,
4830 fd, __le64_to_cpu(bsb.devstart)*512,
4831 __le64_to_cpu(bsb.arraystart)*512,
4832 __le64_to_cpu(bsb.length)*512, NULL)) {
4833 /* didn't succeed, so giveup */
4834 if (verbose)
4835 pr_err("Error restoring backup from %s\n",
4836 devname);
4837 free(offsets);
4838 return 1;
4839 }
4840
4841 if (bsb.magic[15] == '2' &&
4842 restore_stripes(fdlist, offsets,
4843 info->array.raid_disks,
4844 info->new_chunk,
4845 info->new_level,
4846 info->new_layout,
4847 fd, __le64_to_cpu(bsb.devstart)*512 +
4848 __le64_to_cpu(bsb.devstart2)*512,
4849 __le64_to_cpu(bsb.arraystart2)*512,
4850 __le64_to_cpu(bsb.length2)*512, NULL)) {
4851 /* didn't succeed, so giveup */
4852 if (verbose)
4853 pr_err("Error restoring second backup from %s\n",
4854 devname);
4855 free(offsets);
4856 return 1;
4857 }
4858
4859 free(offsets);
4860
4861 /* Ok, so the data is restored. Let's update those superblocks. */
4862
4863 lo = hi = 0;
4864 if (bsb.length) {
4865 lo = __le64_to_cpu(bsb.arraystart);
4866 hi = lo + __le64_to_cpu(bsb.length);
4867 }
4868 if (bsb.magic[15] == '2' && bsb.length2) {
4869 unsigned long long lo1, hi1;
4870 lo1 = __le64_to_cpu(bsb.arraystart2);
4871 hi1 = lo1 + __le64_to_cpu(bsb.length2);
4872 if (lo == hi) {
4873 lo = lo1;
4874 hi = hi1;
4875 } else if (lo < lo1)
4876 hi = hi1;
4877 else
4878 lo = lo1;
4879 }
4880 if (lo < hi &&
4881 (info->reshape_progress < lo ||
4882 info->reshape_progress > hi))
4883 /* backup does not affect reshape_progress*/ ;
4884 else if (info->delta_disks >= 0) {
4885 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
4886 __le64_to_cpu(bsb.length);
4887 if (bsb.magic[15] == '2') {
4888 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
4889 __le64_to_cpu(bsb.length2);
4890 if (p2 > info->reshape_progress)
4891 info->reshape_progress = p2;
4892 }
4893 } else {
4894 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
4895 if (bsb.magic[15] == '2') {
4896 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
4897 if (p2 < info->reshape_progress)
4898 info->reshape_progress = p2;
4899 }
4900 }
4901 for (j=0; j<info->array.raid_disks; j++) {
4902 if (fdlist[j] < 0)
4903 continue;
4904 if (st->ss->load_super(st, fdlist[j], NULL))
4905 continue;
4906 st->ss->getinfo_super(st, &dinfo, NULL);
4907 dinfo.reshape_progress = info->reshape_progress;
4908 st->ss->update_super(st, &dinfo,
4909 "_reshape_progress",
4910 NULL,0, 0, NULL);
4911 st->ss->store_super(st, fdlist[j]);
4912 st->ss->free_super(st);
4913 }
4914 return 0;
4915 }
4916 /* Didn't find any backup data, try to see if any
4917 * was needed.
4918 */
4919 if (info->delta_disks < 0) {
4920 /* When shrinking, the critical section is at the end.
4921 * So see if we are before the critical section.
4922 */
4923 unsigned long long first_block;
4924 nstripe = ostripe = 0;
4925 first_block = 0;
4926 while (ostripe >= nstripe) {
4927 ostripe += info->array.chunk_size / 512;
4928 first_block = ostripe * odata;
4929 nstripe = first_block / ndata / (info->new_chunk/512) *
4930 (info->new_chunk/512);
4931 }
4932
4933 if (info->reshape_progress >= first_block)
4934 return 0;
4935 }
4936 if (info->delta_disks > 0) {
4937 /* See if we are beyond the critical section. */
4938 unsigned long long last_block;
4939 nstripe = ostripe = 0;
4940 last_block = 0;
4941 while (nstripe >= ostripe) {
4942 nstripe += info->new_chunk / 512;
4943 last_block = nstripe * ndata;
4944 ostripe = last_block / odata / (info->array.chunk_size/512) *
4945 (info->array.chunk_size/512);
4946 }
4947
4948 if (info->reshape_progress >= last_block)
4949 return 0;
4950 }
4951 /* needed to recover critical section! */
4952 if (verbose)
4953 pr_err("Failed to find backup of critical section\n");
4954 return 1;
4955 }
4956
4957 int Grow_continue_command(char *devname, int fd,
4958 char *backup_file, int verbose)
4959 {
4960 int ret_val = 0;
4961 struct supertype *st = NULL;
4962 struct mdinfo *content = NULL;
4963 struct mdinfo array;
4964 char *subarray = NULL;
4965 struct mdinfo *cc = NULL;
4966 struct mdstat_ent *mdstat = NULL;
4967 int cfd = -1;
4968 int fd2;
4969
4970 dprintf("Grow continue from command line called for %s\n",
4971 devname);
4972
4973 st = super_by_fd(fd, &subarray);
4974 if (!st || !st->ss) {
4975 pr_err("Unable to determine metadata format for %s\n",
4976 devname);
4977 return 1;
4978 }
4979 dprintf("Grow continue is run for ");
4980 if (st->ss->external == 0) {
4981 int d;
4982 int cnt = 5;
4983 dprintf_cont("native array (%s)\n", devname);
4984 if (md_get_array_info(fd, &array.array) < 0) {
4985 pr_err("%s is not an active md array - aborting\n",
4986 devname);
4987 ret_val = 1;
4988 goto Grow_continue_command_exit;
4989 }
4990 content = &array;
4991 /* Need to load a superblock.
4992 * FIXME we should really get what we need from
4993 * sysfs
4994 */
4995 do {
4996 for (d = 0; d < MAX_DISKS; d++) {
4997 mdu_disk_info_t disk;
4998 char *dv;
4999 int err;
5000 disk.number = d;
5001 if (md_get_disk_info(fd, &disk) < 0)
5002 continue;
5003 if (disk.major == 0 && disk.minor == 0)
5004 continue;
5005 if ((disk.state & (1 << MD_DISK_ACTIVE)) == 0)
5006 continue;
5007 dv = map_dev(disk.major, disk.minor, 1);
5008 if (!dv)
5009 continue;
5010 fd2 = dev_open(dv, O_RDONLY);
5011 if (fd2 < 0)
5012 continue;
5013 err = st->ss->load_super(st, fd2, NULL);
5014 close(fd2);
5015 if (err)
5016 continue;
5017 break;
5018 }
5019 if (d == MAX_DISKS) {
5020 pr_err("Unable to load metadata for %s\n",
5021 devname);
5022 ret_val = 1;
5023 goto Grow_continue_command_exit;
5024 }
5025 st->ss->getinfo_super(st, content, NULL);
5026 if (!content->reshape_active)
5027 sleep(3);
5028 else
5029 break;
5030 } while (cnt-- > 0);
5031 } else {
5032 char *container;
5033
5034 if (subarray) {
5035 dprintf_cont("subarray (%s)\n", subarray);
5036 container = st->container_devnm;
5037 cfd = open_dev_excl(st->container_devnm);
5038 } else {
5039 container = st->devnm;
5040 close(fd);
5041 cfd = open_dev_excl(st->devnm);
5042 dprintf_cont("container (%s)\n", container);
5043 fd = cfd;
5044 }
5045 if (cfd < 0) {
5046 pr_err("Unable to open container for %s\n", devname);
5047 ret_val = 1;
5048 goto Grow_continue_command_exit;
5049 }
5050
5051 /* find in container array under reshape
5052 */
5053 ret_val = st->ss->load_container(st, cfd, NULL);
5054 if (ret_val) {
5055 pr_err("Cannot read superblock for %s\n",
5056 devname);
5057 ret_val = 1;
5058 goto Grow_continue_command_exit;
5059 }
5060
5061 cc = st->ss->container_content(st, subarray);
5062 for (content = cc; content ; content = content->next) {
5063 char *array;
5064 int allow_reshape = 1;
5065
5066 if (content->reshape_active == 0)
5067 continue;
5068 /* The decision about array or container wide
5069 * reshape is taken in Grow_continue based
5070 * content->reshape_active state, therefore we
5071 * need to check_reshape based on
5072 * reshape_active and subarray name
5073 */
5074 if (content->array.state & (1<<MD_SB_BLOCK_VOLUME))
5075 allow_reshape = 0;
5076 if (content->reshape_active == CONTAINER_RESHAPE &&
5077 (content->array.state
5078 & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE)))
5079 allow_reshape = 0;
5080
5081 if (!allow_reshape) {
5082 pr_err("cannot continue reshape of an array in container with unsupported metadata: %s(%s)\n",
5083 devname, container);
5084 ret_val = 1;
5085 goto Grow_continue_command_exit;
5086 }
5087
5088 array = strchr(content->text_version+1, '/')+1;
5089 mdstat = mdstat_by_subdev(array, container);
5090 if (!mdstat)
5091 continue;
5092 if (mdstat->active == 0) {
5093 pr_err("Skipping inactive array %s.\n",
5094 mdstat->devnm);
5095 free_mdstat(mdstat);
5096 mdstat = NULL;
5097 continue;
5098 }
5099 break;
5100 }
5101 if (!content) {
5102 pr_err("Unable to determine reshaped array for %s\n", devname);
5103 ret_val = 1;
5104 goto Grow_continue_command_exit;
5105 }
5106 fd2 = open_dev(mdstat->devnm);
5107 if (fd2 < 0) {
5108 pr_err("cannot open (%s)\n", mdstat->devnm);
5109 ret_val = 1;
5110 goto Grow_continue_command_exit;
5111 }
5112
5113 sysfs_init(content, fd2, mdstat->devnm);
5114
5115 close(fd2);
5116
5117 /* start mdmon in case it is not running
5118 */
5119 if (!mdmon_running(container))
5120 start_mdmon(container);
5121 ping_monitor(container);
5122
5123 if (mdmon_running(container))
5124 st->update_tail = &st->updates;
5125 else {
5126 pr_err("No mdmon found. Grow cannot continue.\n");
5127 ret_val = 1;
5128 goto Grow_continue_command_exit;
5129 }
5130 }
5131
5132 /* verify that array under reshape is started from
5133 * correct position
5134 */
5135 if (verify_reshape_position(content, content->array.level) < 0) {
5136 ret_val = 1;
5137 goto Grow_continue_command_exit;
5138 }
5139
5140 /* continue reshape
5141 */
5142 ret_val = Grow_continue(fd, st, content, backup_file, 1, 0);
5143
5144 Grow_continue_command_exit:
5145 if (cfd > -1)
5146 close(cfd);
5147 st->ss->free_super(st);
5148 free_mdstat(mdstat);
5149 sysfs_free(cc);
5150 free(subarray);
5151
5152 return ret_val;
5153 }
5154
5155 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
5156 char *backup_file, int forked, int freeze_reshape)
5157 {
5158 int ret_val = 2;
5159
5160 if (!info->reshape_active)
5161 return ret_val;
5162
5163 if (st->ss->external) {
5164 int cfd = open_dev(st->container_devnm);
5165
5166 if (cfd < 0)
5167 return 1;
5168
5169 st->ss->load_container(st, cfd, st->container_devnm);
5170 close(cfd);
5171 ret_val = reshape_container(st->container_devnm, NULL, mdfd,
5172 st, info, 0, backup_file,
5173 0, forked,
5174 1 | info->reshape_active,
5175 freeze_reshape);
5176 } else
5177 ret_val = reshape_array(NULL, mdfd, "array", st, info, 1,
5178 NULL, INVALID_SECTORS,
5179 backup_file, 0, forked,
5180 1 | info->reshape_active,
5181 freeze_reshape);
5182
5183 return ret_val;
5184 }
5185
5186 char *make_backup(char *name)
5187 {
5188 char *base = "backup_file-";
5189 int len;
5190 char *fname;
5191
5192 len = strlen(MAP_DIR) + 1 + strlen(base) + strlen(name)+1;
5193 fname = xmalloc(len);
5194 sprintf(fname, "%s/%s%s", MAP_DIR, base, name);
5195 return fname;
5196 }
5197
5198 char *locate_backup(char *name)
5199 {
5200 char *fl = make_backup(name);
5201 struct stat stb;
5202
5203 if (stat(fl, &stb) == 0 &&
5204 S_ISREG(stb.st_mode))
5205 return fl;
5206
5207 free(fl);
5208 return NULL;
5209 }