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