]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
Grow: restore ability to configure 'faulty' arrays via mdadm.
[thirdparty/mdadm.git] / Grow.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 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
28 #if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
29 #error no endian defined
30 #endif
31 #include "md_u.h"
32 #include "md_p.h"
33
34 #ifndef offsetof
35 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
36 #endif
37
38 int Grow_Add_device(char *devname, int fd, char *newdev)
39 {
40 /* Add a device to an active array.
41 * Currently, just extend a linear array.
42 * This requires writing a new superblock on the
43 * new device, calling the kernel to add the device,
44 * and if that succeeds, update the superblock on
45 * all other devices.
46 * This means that we need to *find* all other devices.
47 */
48 struct mdinfo info;
49
50 struct stat stb;
51 int nfd, fd2;
52 int d, nd;
53 struct supertype *st = NULL;
54 char *subarray = NULL;
55
56 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
57 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
58 return 1;
59 }
60
61 if (info.array.level != -1) {
62 fprintf(stderr, Name ": can only add devices to linear arrays\n");
63 return 1;
64 }
65
66 st = super_by_fd(fd, &subarray);
67 if (!st) {
68 fprintf(stderr, Name ": cannot handle arrays with superblock version %d\n", info.array.major_version);
69 return 1;
70 }
71
72 if (subarray) {
73 fprintf(stderr, Name ": Cannot grow linear sub-arrays yet\n");
74 free(subarray);
75 free(st);
76 }
77
78 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
79 if (nfd < 0) {
80 fprintf(stderr, Name ": cannot open %s\n", newdev);
81 free(st);
82 return 1;
83 }
84 fstat(nfd, &stb);
85 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
86 fprintf(stderr, Name ": %s is not a block device!\n", newdev);
87 close(nfd);
88 free(st);
89 return 1;
90 }
91 /* now check out all the devices and make sure we can read the superblock */
92 for (d=0 ; d < info.array.raid_disks ; d++) {
93 mdu_disk_info_t disk;
94 char *dv;
95
96 st->ss->free_super(st);
97
98 disk.number = d;
99 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
100 fprintf(stderr, Name ": cannot get device detail for device %d\n",
101 d);
102 close(nfd);
103 free(st);
104 return 1;
105 }
106 dv = map_dev(disk.major, disk.minor, 1);
107 if (!dv) {
108 fprintf(stderr, Name ": cannot find device file for device %d\n",
109 d);
110 close(nfd);
111 free(st);
112 return 1;
113 }
114 fd2 = dev_open(dv, O_RDWR);
115 if (!fd2) {
116 fprintf(stderr, Name ": cannot open device file %s\n", dv);
117 close(nfd);
118 free(st);
119 return 1;
120 }
121
122 if (st->ss->load_super(st, fd2, NULL)) {
123 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
124 close(nfd);
125 close(fd2);
126 free(st);
127 return 1;
128 }
129 close(fd2);
130 }
131 /* Ok, looks good. Lets update the superblock and write it out to
132 * newdev.
133 */
134
135 info.disk.number = d;
136 info.disk.major = major(stb.st_rdev);
137 info.disk.minor = minor(stb.st_rdev);
138 info.disk.raid_disk = d;
139 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
140 st->ss->update_super(st, &info, "linear-grow-new", newdev,
141 0, 0, NULL);
142
143 if (st->ss->store_super(st, nfd)) {
144 fprintf(stderr, Name ": Cannot store new superblock on %s\n",
145 newdev);
146 close(nfd);
147 return 1;
148 }
149 close(nfd);
150
151 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
152 fprintf(stderr, Name ": Cannot add new disk to this array\n");
153 return 1;
154 }
155 /* Well, that seems to have worked.
156 * Now go through and update all superblocks
157 */
158
159 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
160 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
161 return 1;
162 }
163
164 nd = d;
165 for (d=0 ; d < info.array.raid_disks ; d++) {
166 mdu_disk_info_t disk;
167 char *dv;
168
169 disk.number = d;
170 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
171 fprintf(stderr, Name ": cannot get device detail for device %d\n",
172 d);
173 return 1;
174 }
175 dv = map_dev(disk.major, disk.minor, 1);
176 if (!dv) {
177 fprintf(stderr, Name ": cannot find device file for device %d\n",
178 d);
179 return 1;
180 }
181 fd2 = dev_open(dv, O_RDWR);
182 if (fd2 < 0) {
183 fprintf(stderr, Name ": cannot open device file %s\n", dv);
184 return 1;
185 }
186 if (st->ss->load_super(st, fd2, NULL)) {
187 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
188 close(fd);
189 return 1;
190 }
191 info.array.raid_disks = nd+1;
192 info.array.nr_disks = nd+1;
193 info.array.active_disks = nd+1;
194 info.array.working_disks = nd+1;
195
196 st->ss->update_super(st, &info, "linear-grow-update", dv,
197 0, 0, NULL);
198
199 if (st->ss->store_super(st, fd2)) {
200 fprintf(stderr, Name ": Cannot store new superblock on %s\n", dv);
201 close(fd2);
202 return 1;
203 }
204 close(fd2);
205 }
206
207 return 0;
208 }
209
210 int Grow_addbitmap(char *devname, int fd, char *file, int chunk, int delay, int write_behind, int force)
211 {
212 /*
213 * First check that array doesn't have a bitmap
214 * Then create the bitmap
215 * Then add it
216 *
217 * For internal bitmaps, we need to check the version,
218 * find all the active devices, and write the bitmap block
219 * to all devices
220 */
221 mdu_bitmap_file_t bmf;
222 mdu_array_info_t array;
223 struct supertype *st;
224 char *subarray = NULL;
225 int major = BITMAP_MAJOR_HI;
226 int vers = md_get_version(fd);
227 unsigned long long bitmapsize, array_size;
228
229 if (vers < 9003) {
230 major = BITMAP_MAJOR_HOSTENDIAN;
231 fprintf(stderr, Name ": Warning - bitmaps created on this kernel"
232 " are not portable\n"
233 " between different architectures. Consider upgrading"
234 " the Linux kernel.\n");
235 }
236
237 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
238 if (errno == ENOMEM)
239 fprintf(stderr, Name ": Memory allocation failure.\n");
240 else
241 fprintf(stderr, Name ": bitmaps not supported by this kernel.\n");
242 return 1;
243 }
244 if (bmf.pathname[0]) {
245 if (strcmp(file,"none")==0) {
246 if (ioctl(fd, SET_BITMAP_FILE, -1)!= 0) {
247 fprintf(stderr, Name ": failed to remove bitmap %s\n",
248 bmf.pathname);
249 return 1;
250 }
251 return 0;
252 }
253 fprintf(stderr, Name ": %s already has a bitmap (%s)\n",
254 devname, bmf.pathname);
255 return 1;
256 }
257 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
258 fprintf(stderr, Name ": cannot get array status for %s\n", devname);
259 return 1;
260 }
261 if (array.state & (1<<MD_SB_BITMAP_PRESENT)) {
262 if (strcmp(file, "none")==0) {
263 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
264 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
265 fprintf(stderr, Name ": failed to remove internal bitmap.\n");
266 return 1;
267 }
268 return 0;
269 }
270 fprintf(stderr, Name ": Internal bitmap already present on %s\n",
271 devname);
272 return 1;
273 }
274
275 if (strcmp(file, "none") == 0) {
276 fprintf(stderr, Name ": no bitmap found on %s\n", devname);
277 return 1;
278 }
279 if (array.level <= 0) {
280 fprintf(stderr, Name ": Bitmaps not meaningful with level %s\n",
281 map_num(pers, array.level)?:"of this array");
282 return 1;
283 }
284 bitmapsize = array.size;
285 bitmapsize <<= 1;
286 if (get_dev_size(fd, NULL, &array_size) &&
287 array_size > (0x7fffffffULL<<9)) {
288 /* Array is big enough that we cannot trust array.size
289 * try other approaches
290 */
291 bitmapsize = get_component_size(fd);
292 }
293 if (bitmapsize == 0) {
294 fprintf(stderr, Name ": Cannot reliably determine size of array to create bitmap - sorry.\n");
295 return 1;
296 }
297
298 if (array.level == 10) {
299 int ncopies = (array.layout&255)*((array.layout>>8)&255);
300 bitmapsize = bitmapsize * array.raid_disks / ncopies;
301 }
302
303 st = super_by_fd(fd, &subarray);
304 if (!st) {
305 fprintf(stderr, Name ": Cannot understand version %d.%d\n",
306 array.major_version, array.minor_version);
307 return 1;
308 }
309 if (subarray) {
310 fprintf(stderr, Name ": Cannot add bitmaps to sub-arrays yet\n");
311 free(subarray);
312 free(st);
313 return 1;
314 }
315 if (strcmp(file, "internal") == 0) {
316 int d;
317 if (st->ss->add_internal_bitmap == NULL) {
318 fprintf(stderr, Name ": Internal bitmaps not supported "
319 "with %s metadata\n", st->ss->name);
320 return 1;
321 }
322 for (d=0; d< st->max_devs; d++) {
323 mdu_disk_info_t disk;
324 char *dv;
325 disk.number = d;
326 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
327 continue;
328 if (disk.major == 0 &&
329 disk.minor == 0)
330 continue;
331 if ((disk.state & (1<<MD_DISK_SYNC))==0)
332 continue;
333 dv = map_dev(disk.major, disk.minor, 1);
334 if (dv) {
335 int fd2 = dev_open(dv, O_RDWR);
336 if (fd2 < 0)
337 continue;
338 if (st->ss->load_super(st, fd2, NULL)==0) {
339 if (st->ss->add_internal_bitmap(
340 st,
341 &chunk, delay, write_behind,
342 bitmapsize, 0, major)
343 )
344 st->ss->write_bitmap(st, fd2);
345 else {
346 fprintf(stderr, Name ": failed to create internal bitmap - chunksize problem.\n");
347 close(fd2);
348 return 1;
349 }
350 }
351 close(fd2);
352 }
353 }
354 array.state |= (1<<MD_SB_BITMAP_PRESENT);
355 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
356 if (errno == EBUSY)
357 fprintf(stderr, Name
358 ": Cannot add bitmap while array is"
359 " resyncing or reshaping etc.\n");
360 fprintf(stderr, Name ": failed to set internal bitmap.\n");
361 return 1;
362 }
363 } else {
364 int uuid[4];
365 int bitmap_fd;
366 int d;
367 int max_devs = st->max_devs;
368
369 /* try to load a superblock */
370 for (d=0; d<max_devs; d++) {
371 mdu_disk_info_t disk;
372 char *dv;
373 int fd2;
374 disk.number = d;
375 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
376 continue;
377 if ((disk.major==0 && disk.minor==0) ||
378 (disk.state & (1<<MD_DISK_REMOVED)))
379 continue;
380 dv = map_dev(disk.major, disk.minor, 1);
381 if (!dv) continue;
382 fd2 = dev_open(dv, O_RDONLY);
383 if (fd2 >= 0 &&
384 st->ss->load_super(st, fd2, NULL) == 0) {
385 close(fd2);
386 st->ss->uuid_from_super(st, uuid);
387 break;
388 }
389 close(fd2);
390 }
391 if (d == max_devs) {
392 fprintf(stderr, Name ": cannot find UUID for array!\n");
393 return 1;
394 }
395 if (CreateBitmap(file, force, (char*)uuid, chunk,
396 delay, write_behind, bitmapsize, major)) {
397 return 1;
398 }
399 bitmap_fd = open(file, O_RDWR);
400 if (bitmap_fd < 0) {
401 fprintf(stderr, Name ": weird: %s cannot be opened\n",
402 file);
403 return 1;
404 }
405 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
406 int err = errno;
407 if (errno == EBUSY)
408 fprintf(stderr, Name
409 ": Cannot add bitmap while array is"
410 " resyncing or reshaping etc.\n");
411 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
412 devname, strerror(err));
413 return 1;
414 }
415 }
416
417 return 0;
418 }
419
420
421 /*
422 * When reshaping an array we might need to backup some data.
423 * This is written to all spares with a 'super_block' describing it.
424 * The superblock goes 4K from the end of the used space on the
425 * device.
426 * It if written after the backup is complete.
427 * It has the following structure.
428 */
429
430 static struct mdp_backup_super {
431 char magic[16]; /* md_backup_data-1 or -2 */
432 __u8 set_uuid[16];
433 __u64 mtime;
434 /* start/sizes in 512byte sectors */
435 __u64 devstart; /* address on backup device/file of data */
436 __u64 arraystart;
437 __u64 length;
438 __u32 sb_csum; /* csum of preceeding bytes. */
439 __u32 pad1;
440 __u64 devstart2; /* offset in to data of second section */
441 __u64 arraystart2;
442 __u64 length2;
443 __u32 sb_csum2; /* csum of preceeding bytes. */
444 __u8 pad[512-68-32];
445 } __attribute__((aligned(512))) bsb, bsb2;
446
447 static __u32 bsb_csum(char *buf, int len)
448 {
449 int i;
450 int csum = 0;
451 for (i=0; i<len; i++)
452 csum = (csum<<3) + buf[0];
453 return __cpu_to_le32(csum);
454 }
455
456 static int check_idle(struct supertype *st)
457 {
458 /* Check that all member arrays for this container, or the
459 * container of this array, are idle
460 */
461 int container_dev = (st->container_dev != NoMdDev
462 ? st->container_dev : st->devnum);
463 char container[40];
464 struct mdstat_ent *ent, *e;
465 int is_idle = 1;
466
467 fmt_devname(container, container_dev);
468 ent = mdstat_read(0, 0);
469 for (e = ent ; e; e = e->next) {
470 if (!is_container_member(e, container))
471 continue;
472 if (e->percent >= 0) {
473 is_idle = 0;
474 break;
475 }
476 }
477 free_mdstat(ent);
478 return is_idle;
479 }
480
481 static int freeze_container(struct supertype *st)
482 {
483 int container_dev = (st->container_dev != NoMdDev
484 ? st->container_dev : st->devnum);
485 char container[40];
486
487 if (!check_idle(st))
488 return -1;
489
490 fmt_devname(container, container_dev);
491
492 if (block_monitor(container, 1)) {
493 fprintf(stderr, Name ": failed to freeze container\n");
494 return -2;
495 }
496
497 return 1;
498 }
499
500 static void unfreeze_container(struct supertype *st)
501 {
502 int container_dev = (st->container_dev != NoMdDev
503 ? st->container_dev : st->devnum);
504 char container[40];
505
506 fmt_devname(container, container_dev);
507
508 unblock_monitor(container, 1);
509 }
510
511 static int freeze(struct supertype *st)
512 {
513 /* Try to freeze resync/rebuild on this array/container.
514 * Return -1 if the array is busy,
515 * return -2 container cannot be frozen,
516 * return 0 if this kernel doesn't support 'frozen'
517 * return 1 if it worked.
518 */
519 if (st->ss->external)
520 return freeze_container(st);
521 else {
522 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
523 int err;
524
525 if (!sra)
526 return -1;
527 err = sysfs_freeze_array(sra);
528 sysfs_free(sra);
529 return err;
530 }
531 }
532
533 static void unfreeze(struct supertype *st)
534 {
535 if (st->ss->external)
536 return unfreeze_container(st);
537 else {
538 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
539
540 if (sra)
541 sysfs_set_str(sra, NULL, "sync_action", "idle");
542 else
543 fprintf(stderr, Name ": failed to unfreeze array\n");
544 sysfs_free(sra);
545 }
546 }
547
548 static void wait_reshape(struct mdinfo *sra)
549 {
550 int fd = sysfs_get_fd(sra, NULL, "sync_action");
551 char action[20];
552
553 if (fd < 0)
554 return;
555
556 while (sysfs_fd_get_str(fd, action, 20) > 0 &&
557 strncmp(action, "reshape", 7) == 0) {
558 fd_set rfds;
559 FD_ZERO(&rfds);
560 FD_SET(fd, &rfds);
561 select(fd+1, NULL, NULL, &rfds, NULL);
562 }
563 close(fd);
564 }
565
566 static int reshape_super(struct supertype *st, long long size, int level,
567 int layout, int chunksize, int raid_disks,
568 int delta_disks, char *backup_file, char *dev,
569 int verbose)
570 {
571 /* nothing extra to check in the native case */
572 if (!st->ss->external)
573 return 0;
574 if (!st->ss->reshape_super ||
575 !st->ss->manage_reshape) {
576 fprintf(stderr, Name ": %s metadata does not support reshape\n",
577 st->ss->name);
578 return 1;
579 }
580
581 return st->ss->reshape_super(st, size, level, layout, chunksize,
582 raid_disks, delta_disks, backup_file, dev,
583 verbose);
584 }
585
586 static void sync_metadata(struct supertype *st)
587 {
588 if (st->ss->external) {
589 if (st->update_tail) {
590 flush_metadata_updates(st);
591 st->update_tail = &st->updates;
592 } else
593 st->ss->sync_metadata(st);
594 }
595 }
596
597 static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
598 {
599 /* when dealing with external metadata subarrays we need to be
600 * prepared to handle EAGAIN. The kernel may need to wait for
601 * mdmon to mark the array active so the kernel can handle
602 * allocations/writeback when preparing the reshape action
603 * (md_allow_write()). We temporarily disable safe_mode_delay
604 * to close a race with the array_state going clean before the
605 * next write to raid_disks / stripe_cache_size
606 */
607 char safe[50];
608 int rc;
609
610 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
611 if (!container ||
612 (strcmp(name, "raid_disks") != 0 &&
613 strcmp(name, "stripe_cache_size") != 0))
614 return sysfs_set_num(sra, NULL, name, n);
615
616 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
617 if (rc <= 0)
618 return -1;
619 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
620 rc = sysfs_set_num(sra, NULL, name, n);
621 if (rc < 0 && errno == EAGAIN) {
622 ping_monitor(container);
623 /* if we get EAGAIN here then the monitor is not active
624 * so stop trying
625 */
626 rc = sysfs_set_num(sra, NULL, name, n);
627 }
628 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
629 return rc;
630 }
631
632 int start_reshape(struct mdinfo *sra, int already_running)
633 {
634 int err;
635 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
636 err = sysfs_set_num(sra, NULL, "suspend_hi", 0);
637 err = err ?: sysfs_set_num(sra, NULL, "suspend_lo", 0);
638 if (!already_running)
639 sysfs_set_num(sra, NULL, "sync_min", 0);
640 err = err ?: sysfs_set_num(sra, NULL, "sync_max", 0);
641 if (!already_running)
642 err = err ?: sysfs_set_str(sra, NULL, "sync_action", "reshape");
643
644 return err;
645 }
646
647 void abort_reshape(struct mdinfo *sra)
648 {
649 sysfs_set_str(sra, NULL, "sync_action", "idle");
650 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
651 sysfs_set_num(sra, NULL, "suspend_hi", 0);
652 sysfs_set_num(sra, NULL, "suspend_lo", 0);
653 sysfs_set_num(sra, NULL, "sync_min", 0);
654 sysfs_set_str(sra, NULL, "sync_max", "max");
655 }
656
657 int remove_disks_for_takeover(struct supertype *st,
658 struct mdinfo *sra,
659 int layout)
660 {
661 int nr_of_copies;
662 struct mdinfo *remaining;
663 int slot;
664
665 if (sra->array.level == 10)
666 nr_of_copies = layout & 0xff;
667 else if (sra->array.level == 1)
668 nr_of_copies = sra->array.raid_disks;
669 else
670 return 1;
671
672 remaining = sra->devs;
673 sra->devs = NULL;
674 /* for each 'copy', select one device and remove from the list. */
675 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
676 struct mdinfo **diskp;
677 int found = 0;
678
679 /* Find a working device to keep */
680 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
681 struct mdinfo *disk = *diskp;
682
683 if (disk->disk.raid_disk < slot)
684 continue;
685 if (disk->disk.raid_disk >= slot + nr_of_copies)
686 continue;
687 if (disk->disk.state & (1<<MD_DISK_REMOVED))
688 continue;
689 if (disk->disk.state & (1<<MD_DISK_FAULTY))
690 continue;
691 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
692 continue;
693
694 /* We have found a good disk to use! */
695 *diskp = disk->next;
696 disk->next = sra->devs;
697 sra->devs = disk;
698 found = 1;
699 break;
700 }
701 if (!found)
702 break;
703 }
704
705 if (slot < sra->array.raid_disks) {
706 /* didn't find all slots */
707 struct mdinfo **e;
708 e = &remaining;
709 while (*e)
710 e = &(*e)->next;
711 *e = sra->devs;
712 sra->devs = remaining;
713 return 1;
714 }
715
716 /* Remove all 'remaining' devices from the array */
717 while (remaining) {
718 struct mdinfo *sd = remaining;
719 remaining = sd->next;
720
721 sysfs_set_str(sra, sd, "state", "faulty");
722 sysfs_set_str(sra, sd, "slot", "none");
723 /* for external metadata disks should be removed in mdmon */
724 if (!st->ss->external)
725 sysfs_set_str(sra, sd, "state", "remove");
726 sd->disk.state |= (1<<MD_DISK_REMOVED);
727 sd->disk.state &= ~(1<<MD_DISK_SYNC);
728 sd->next = sra->devs;
729 sra->devs = sd;
730 }
731 return 0;
732 }
733
734 void reshape_free_fdlist(int *fdlist,
735 unsigned long long *offsets,
736 int size)
737 {
738 int i;
739
740 for (i = 0; i < size; i++)
741 if (fdlist[i] >= 0)
742 close(fdlist[i]);
743
744 free(fdlist);
745 free(offsets);
746 }
747
748 int reshape_prepare_fdlist(char *devname,
749 struct mdinfo *sra,
750 int raid_disks,
751 int nrdisks,
752 unsigned long blocks,
753 char *backup_file,
754 int *fdlist,
755 unsigned long long *offsets)
756 {
757 int d = 0;
758 struct mdinfo *sd;
759
760 for (d = 0; d <= nrdisks; d++)
761 fdlist[d] = -1;
762 d = raid_disks;
763 for (sd = sra->devs; sd; sd = sd->next) {
764 if (sd->disk.state & (1<<MD_DISK_FAULTY))
765 continue;
766 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
767 char *dn = map_dev(sd->disk.major,
768 sd->disk.minor, 1);
769 fdlist[sd->disk.raid_disk]
770 = dev_open(dn, O_RDONLY);
771 offsets[sd->disk.raid_disk] = sd->data_offset*512;
772 if (fdlist[sd->disk.raid_disk] < 0) {
773 fprintf(stderr,
774 Name ": %s: cannot open component %s\n",
775 devname, dn ? dn : "-unknown-");
776 d = -1;
777 goto release;
778 }
779 } else if (backup_file == NULL) {
780 /* spare */
781 char *dn = map_dev(sd->disk.major,
782 sd->disk.minor, 1);
783 fdlist[d] = dev_open(dn, O_RDWR);
784 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
785 if (fdlist[d] < 0) {
786 fprintf(stderr, Name ": %s: cannot open component %s\n",
787 devname, dn ? dn : "-unknown-");
788 d = -1;
789 goto release;
790 }
791 d++;
792 }
793 }
794 release:
795 return d;
796 }
797
798 int reshape_open_backup_file(char *backup_file,
799 int fd,
800 char *devname,
801 long blocks,
802 int *fdlist,
803 unsigned long long *offsets,
804 int restart)
805 {
806 /* Return 1 on success, 0 on any form of failure */
807 /* need to check backup file is large enough */
808 char buf[512];
809 struct stat stb;
810 unsigned int dev;
811 int i;
812
813 *fdlist = open(backup_file, O_RDWR|O_CREAT|(restart ? O_TRUNC : O_EXCL),
814 S_IRUSR | S_IWUSR);
815 *offsets = 8 * 512;
816 if (*fdlist < 0) {
817 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
818 devname, backup_file, strerror(errno));
819 return 0;
820 }
821 /* Guard against backup file being on array device.
822 * If array is partitioned or if LVM etc is in the
823 * way this will not notice, but it is better than
824 * nothing.
825 */
826 fstat(*fdlist, &stb);
827 dev = stb.st_dev;
828 fstat(fd, &stb);
829 if (stb.st_rdev == dev) {
830 fprintf(stderr, Name ": backup file must NOT be"
831 " on the array being reshaped.\n");
832 close(*fdlist);
833 return 0;
834 }
835
836 memset(buf, 0, 512);
837 for (i=0; i < blocks + 8 ; i++) {
838 if (write(*fdlist, buf, 512) != 512) {
839 fprintf(stderr, Name ": %s: cannot create"
840 " backup file %s: %s\n",
841 devname, backup_file, strerror(errno));
842 return 0;
843 }
844 }
845 if (fsync(*fdlist) != 0) {
846 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
847 devname, backup_file, strerror(errno));
848 return 0;
849 }
850
851 return 1;
852 }
853
854 unsigned long compute_backup_blocks(int nchunk, int ochunk,
855 unsigned int ndata, unsigned int odata)
856 {
857 unsigned long a, b, blocks;
858 /* So how much do we need to backup.
859 * We need an amount of data which is both a whole number of
860 * old stripes and a whole number of new stripes.
861 * So LCM for (chunksize*datadisks).
862 */
863 a = (ochunk/512) * odata;
864 b = (nchunk/512) * ndata;
865 /* Find GCD */
866 while (a != b) {
867 if (a < b)
868 b -= a;
869 if (b < a)
870 a -= b;
871 }
872 /* LCM == product / GCD */
873 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
874
875 return blocks;
876 }
877
878 char *analyse_change(struct mdinfo *info, struct reshape *re)
879 {
880 /* Based on the current array state in info->array and
881 * the changes in info->new_* etc, determine:
882 * - whether the change is possible
883 * - Intermediate level/raid_disks/layout
884 * - whether a restriping reshape is needed
885 * - number of sectors in minimum change unit. This
886 * will cover a whole number of stripes in 'before' and
887 * 'after'.
888 *
889 * Return message if the change should be rejected
890 * NULL if the change can be achieved
891 *
892 * This can be called as part of starting a reshape, or
893 * when assembling an array that is undergoing reshape.
894 */
895 int new_disks;
896 /* delta_parity records change in number of devices
897 * caused by level change
898 */
899 int delta_parity = 0;
900
901 /* If a new level not explicitly given, we assume no-change */
902 if (info->new_level == UnSet)
903 info->new_level = info->array.level;
904
905 if (info->new_chunk)
906 switch (info->new_level) {
907 case 0:
908 case 4:
909 case 5:
910 case 6:
911 case 10:
912 /* chunk size is meaningful, must divide component_size
913 * evenly
914 */
915 if (info->component_size % (info->new_chunk/512))
916 return "New chunk size does not"
917 " divide component size";
918 break;
919 default:
920 return "chunk size not meaningful for this level";
921 }
922 else
923 info->new_chunk = info->array.chunk_size;
924
925 switch (info->array.level) {
926 case 1:
927 /* RAID1 can convert to RAID1 with different disks, or
928 * raid5 with 2 disks, or
929 * raid0 with 1 disk
930 */
931 if (info->new_level == 0) {
932 if (info->delta_disks != UnSet &&
933 info->delta_disks != 0)
934 return "Cannot change number of disks "
935 "with RAID1->RAID0 conversion";
936 re->level = 0;
937 re->before.data_disks = 1;
938 re->after.data_disks = 1;
939 re->before.layout = 0;
940 re->backup_blocks = 0;
941 re->parity = 0;
942 return NULL;
943 }
944 if (info->new_level == 1) {
945 if (info->delta_disks == UnSet)
946 /* Don't know what to do */
947 return "no change requested for Growing RAID1";
948 re->level = 1;
949 re->backup_blocks = 0;
950 re->parity = 0;
951 return NULL;
952 }
953 if (info->array.raid_disks == 2 &&
954 info->new_level == 5) {
955
956 re->level = 5;
957 re->before.data_disks = 1;
958 if (info->delta_disks != UnSet &&
959 info->delta_disks != 0)
960 re->after.data_disks = 1 + info->delta_disks;
961 else
962 re->after.data_disks = 1;
963 if (re->after.data_disks < 1)
964 return "Number of disks too small for RAID5";
965
966 re->before.layout = ALGORITHM_LEFT_SYMMETRIC;
967 info->array.chunk_size = 65536;
968 break;
969 }
970 /* Could do some multi-stage conversions, but leave that to
971 * later.
972 */
973 return "Impossibly level change request for RAID1";
974
975 case 10:
976 /* RAID10 can only be converted from near mode to
977 * RAID0 by removing some devices
978 */
979 if ((info->array.layout & ~0xff) != 0x100)
980 return "Cannot Grow RAID10 with far/offset layout";
981 /* number of devices must be multiple of number of copies */
982 if (info->array.raid_disks % (info->array.layout & 0xff))
983 return "RAID10 layout too complex for Grow operation";
984
985 if (info->new_level != 0)
986 return "RAID10 can only be changed to RAID0";
987 new_disks = (info->array.raid_disks
988 / (info->array.layout & 0xff));
989 if (info->delta_disks == UnSet)
990 info->delta_disks = (new_disks
991 - info->array.raid_disks);
992
993 if (info->delta_disks != new_disks - info->array.raid_disks)
994 return "New number of raid-devices impossible for RAID10";
995 if (info->new_chunk &&
996 info->new_chunk != info->array.chunk_size)
997 return "Cannot change chunk-size with RAID10 Grow";
998
999 /* looks good */
1000 re->level = 0;
1001 re->parity = 0;
1002 re->before.data_disks = new_disks;
1003 re->after.data_disks = re->before.data_disks;
1004 re->before.layout = 0;
1005 re->backup_blocks = 0;
1006 return NULL;
1007
1008 case 0:
1009 /* RAID0 can be converted to RAID10, or to RAID456 */
1010 if (info->new_level == 10) {
1011 if (info->new_layout == UnSet && info->delta_disks == UnSet) {
1012 /* Assume near=2 layout */
1013 info->new_layout = 0x102;
1014 info->delta_disks = info->array.raid_disks;
1015 }
1016 if (info->new_layout == UnSet) {
1017 int copies = 1 + (info->delta_disks
1018 / info->array.raid_disks);
1019 if (info->array.raid_disks * (copies-1)
1020 != info->delta_disks)
1021 return "Impossible number of devices"
1022 " for RAID0->RAID10";
1023 info->new_layout = 0x100 + copies;
1024 }
1025 if (info->delta_disks == UnSet) {
1026 int copies = info->new_layout & 0xff;
1027 if (info->new_layout != 0x100 + copies)
1028 return "New layout impossible"
1029 " for RAID0->RAID10";;
1030 info->delta_disks = (copies - 1) *
1031 info->array.raid_disks;
1032 }
1033 if (info->new_chunk &&
1034 info->new_chunk != info->array.chunk_size)
1035 return "Cannot change chunk-size with RAID0->RAID10";
1036 /* looks good */
1037 re->level = 10;
1038 re->parity = 0;
1039 re->before.data_disks = (info->array.raid_disks +
1040 info->delta_disks);
1041 re->after.data_disks = re->before.data_disks;
1042 re->before.layout = info->new_layout;
1043 re->backup_blocks = 0;
1044 return NULL;
1045 }
1046
1047 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1048 * a raid4 style layout of the final level.
1049 */
1050 switch (info->new_level) {
1051 case 4:
1052 delta_parity = 1;
1053 case 0:
1054 re->level = 4;
1055 re->before.layout = 0;
1056 break;
1057 case 5:
1058 delta_parity = 1;
1059 re->level = 5;
1060 re->before.layout = ALGORITHM_PARITY_N;
1061 break;
1062 case 6:
1063 delta_parity = 2;
1064 re->level = 6;
1065 re->before.layout = ALGORITHM_PARITY_N;
1066 break;
1067 default:
1068 return "Impossible level change requested";
1069 }
1070 re->before.data_disks = info->array.raid_disks;
1071 /* determining 'after' layout happens outside this 'switch' */
1072 break;
1073
1074 case 4:
1075 info->array.layout = ALGORITHM_PARITY_N;
1076 case 5:
1077 switch (info->new_level) {
1078 case 0:
1079 delta_parity = -1;
1080 case 4:
1081 re->level = info->array.level;
1082 re->before.data_disks = info->array.raid_disks - 1;
1083 re->before.layout = info->array.layout;
1084 break;
1085 case 5:
1086 re->level = 5;
1087 re->before.data_disks = info->array.raid_disks - 1;
1088 re->before.layout = info->array.layout;
1089 break;
1090 case 6:
1091 delta_parity = 1;
1092 re->level = 6;
1093 re->before.data_disks = info->array.raid_disks - 1;
1094 switch (info->array.layout) {
1095 case ALGORITHM_LEFT_ASYMMETRIC:
1096 re->before.layout = ALGORITHM_LEFT_ASYMMETRIC_6;
1097 break;
1098 case ALGORITHM_RIGHT_ASYMMETRIC:
1099 re->before.layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
1100 break;
1101 case ALGORITHM_LEFT_SYMMETRIC:
1102 re->before.layout = ALGORITHM_LEFT_SYMMETRIC_6;
1103 break;
1104 case ALGORITHM_RIGHT_SYMMETRIC:
1105 re->before.layout = ALGORITHM_RIGHT_SYMMETRIC_6;
1106 break;
1107 case ALGORITHM_PARITY_0:
1108 re->before.layout = ALGORITHM_PARITY_0_6;
1109 break;
1110 case ALGORITHM_PARITY_N:
1111 re->before.layout = ALGORITHM_PARITY_N_6;
1112 break;
1113 default:
1114 return "Cannot convert an array with this layout";
1115 }
1116 break;
1117 case 1:
1118 if (info->array.raid_disks != 2)
1119 return "Can only convert a 2-device array to RAID1";
1120 if (info->delta_disks != UnSet &&
1121 info->delta_disks != 0)
1122 return "Cannot set raid_disk when "
1123 "converting RAID5->RAID1";
1124 re->level = 1;
1125 break;
1126 default:
1127 return "Impossible level change requested";
1128 }
1129 break;
1130 case 6:
1131 switch (info->new_level) {
1132 case 4:
1133 case 5:
1134 delta_parity = -1;
1135 case 6:
1136 re->level = 6;
1137 re->before.data_disks = info->array.raid_disks - 2;
1138 re->before.layout = info->array.layout;
1139 break;
1140 default:
1141 return "Impossible level change requested";
1142 }
1143 break;
1144 }
1145
1146 /* If we reached here then it looks like a re-stripe is
1147 * happening. We have determined the intermediate level
1148 * and initial raid_disks/layout and stored these in 're'.
1149 *
1150 * We need to deduce the final layout that can be atomically
1151 * converted to the end state.
1152 */
1153 switch (info->new_level) {
1154 case 0:
1155 /* We can only get to RAID0 from RAID4 or RAID5
1156 * with appropriate layout and one extra device
1157 */
1158 if (re->level != 4 && re->level != 5)
1159 return "Cannot covert to RAID0 from this level";
1160
1161 switch (re->level) {
1162 case 4:
1163 re->after.layout = 0 ; break;
1164 case 5:
1165 re->after.layout = ALGORITHM_PARITY_N; break;
1166 }
1167 break;
1168
1169 case 4:
1170 /* We can only get to RAID4 from RAID5 */
1171 if (re->level != 4 && re->level != 5)
1172 return "Cannot convert to RAID4 from this level";
1173
1174 switch (re->level) {
1175 case 4:
1176 re->after.layout = 0 ; break;
1177 case 5:
1178 re->after.layout = ALGORITHM_PARITY_N; break;
1179 }
1180 break;
1181
1182 case 5:
1183 /* We get to RAID5 for RAID5 or RAID6 */
1184 if (re->level != 5 && re->level != 6)
1185 return "Cannot convert to RAID5 from this level";
1186
1187 switch (re->level) {
1188 case 5:
1189 if (info->new_layout == UnSet)
1190 re->after.layout = re->before.layout;
1191 else
1192 re->after.layout = info->new_layout;
1193 break;
1194 case 6:
1195 if (info->new_layout == UnSet)
1196 info->new_layout = re->before.layout;
1197
1198 /* after.layout needs to be raid6 version of new_layout */
1199 if (info->new_layout == ALGORITHM_PARITY_N)
1200 re->after.layout = ALGORITHM_PARITY_N;
1201 else {
1202 char layout[40];
1203 char *ls = map_num(r5layout, info->new_layout);
1204 int l;
1205 strcat(strcpy(layout, ls), "-6");
1206 l = map_name(r6layout, layout);
1207 if (l == UnSet)
1208 return "Cannot find RAID6 layout"
1209 " to convert to";
1210 re->after.layout = l;
1211 }
1212 }
1213 break;
1214
1215 case 6:
1216 /* We must already be at level 6 */
1217 if (re->level != 6)
1218 return "Impossible level change";
1219 if (info->new_layout == UnSet)
1220 re->after.layout = info->array.layout;
1221 else
1222 re->after.layout = info->new_layout;
1223 break;
1224 default:
1225 return "Impossible level change requested";
1226 }
1227 if (info->delta_disks == UnSet)
1228 info->delta_disks = delta_parity;
1229
1230 re->after.data_disks = (re->before.data_disks
1231 + info->delta_disks
1232 - delta_parity);
1233 switch (re->level) {
1234 case 6: re->parity = 2; break;
1235 case 4:
1236 case 5: re->parity = 1; break;
1237 default: re->parity = 0; break;
1238 }
1239 /* So we have a restripe operation, we need to calculate the number
1240 * of blocks per reshape operation.
1241 */
1242 if (info->new_chunk == 0)
1243 info->new_chunk = info->array.chunk_size;
1244 if (re->after.data_disks == re->before.data_disks &&
1245 re->after.layout == re->before.layout &&
1246 info->new_chunk == info->array.chunk_size) {
1247 /* Nothing to change */
1248 re->backup_blocks = 0;
1249 return NULL;
1250 }
1251 if (re->after.data_disks == 1 && re->before.data_disks == 1) {
1252 /* chunk and layout changes make no difference */
1253 re->backup_blocks = 0;
1254 return NULL;
1255 }
1256
1257 if (re->after.data_disks == re->before.data_disks &&
1258 get_linux_version() < 2006032)
1259 return "in-place reshape is not safe before 2.6.32 - sorry.";
1260
1261 if (re->after.data_disks < re->before.data_disks &&
1262 get_linux_version() < 2006030)
1263 return "reshape to fewer devices is not supported before 2.6.32 - sorry.";
1264
1265 re->backup_blocks = compute_backup_blocks(
1266 info->new_chunk, info->array.chunk_size,
1267 re->after.data_disks,
1268 re->before.data_disks);
1269
1270 re->new_size = info->component_size * re->after.data_disks;
1271 return NULL;
1272 }
1273
1274 static int reshape_array(char *container, int fd, char *devname,
1275 struct supertype *st, struct mdinfo *info,
1276 int force, struct mddev_dev *devlist,
1277 char *backup_file, int quiet, int forked,
1278 int restart);
1279 static int reshape_container(char *container, char *devname,
1280 struct supertype *st,
1281 struct mdinfo *info,
1282 int force,
1283 char *backup_file,
1284 int quiet, int restart);
1285
1286 int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
1287 long long size,
1288 int level, char *layout_str, int chunksize, int raid_disks,
1289 struct mddev_dev *devlist,
1290 int force)
1291 {
1292 /* Make some changes in the shape of an array.
1293 * The kernel must support the change.
1294 *
1295 * There are three different changes. Each can trigger
1296 * a resync or recovery so we freeze that until we have
1297 * requested everything (if kernel supports freezing - 2.6.30).
1298 * The steps are:
1299 * - change size (i.e. component_size)
1300 * - change level
1301 * - change layout/chunksize/ndisks
1302 *
1303 * The last can require a reshape. It is different on different
1304 * levels so we need to check the level before actioning it.
1305 * Some times the level change needs to be requested after the
1306 * reshape (e.g. raid6->raid5, raid5->raid0)
1307 *
1308 */
1309 struct mdu_array_info_s array;
1310 int rv = 0;
1311 struct supertype *st;
1312 char *subarray = NULL;
1313
1314 int frozen;
1315 int changed = 0;
1316 char *container = NULL;
1317 char container_buf[20];
1318 int cfd = -1;
1319
1320 struct mddev_dev *dv;
1321 int added_disks;
1322
1323 struct mdinfo info;
1324 struct mdinfo *sra;
1325
1326 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1327 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
1328 devname);
1329 return 1;
1330 }
1331
1332 if (size >= 0 &&
1333 (chunksize || level!= UnSet || layout_str || raid_disks)) {
1334 fprintf(stderr, Name ": cannot change component size at the same time "
1335 "as other changes.\n"
1336 " Change size first, then check data is intact before "
1337 "making other changes.\n");
1338 return 1;
1339 }
1340
1341 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
1342 get_linux_version() < 2006032 &&
1343 !check_env("MDADM_FORCE_FEWER")) {
1344 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
1345 " Please use a newer kernel\n");
1346 return 1;
1347 }
1348
1349 st = super_by_fd(fd, &subarray);
1350 if (!st) {
1351 fprintf(stderr, Name ": Unable to determine metadata format for %s\n", devname);
1352 return 1;
1353 }
1354 if (raid_disks > st->max_devs) {
1355 fprintf(stderr, Name ": Cannot increase raid-disks on this array"
1356 " beyond %d\n", st->max_devs);
1357 return 1;
1358 }
1359
1360 /* in the external case we need to check that the requested reshape is
1361 * supported, and perform an initial check that the container holds the
1362 * pre-requisite spare devices (mdmon owns final validation)
1363 */
1364 if (st->ss->external) {
1365 int container_dev;
1366 int rv;
1367
1368 if (subarray) {
1369 container_dev = st->container_dev;
1370 cfd = open_dev_excl(st->container_dev);
1371 } else {
1372 container_dev = st->devnum;
1373 close(fd);
1374 cfd = open_dev_excl(st->devnum);
1375 fd = cfd;
1376 }
1377 if (cfd < 0) {
1378 fprintf(stderr, Name ": Unable to open container for %s\n",
1379 devname);
1380 free(subarray);
1381 return 1;
1382 }
1383
1384 fmt_devname(container_buf, container_dev);
1385 container = container_buf;
1386
1387 rv = st->ss->load_container(st, cfd, NULL);
1388
1389 if (rv) {
1390 fprintf(stderr, Name ": Cannot read superblock for %s\n",
1391 devname);
1392 free(subarray);
1393 return 1;
1394 }
1395
1396 if (mdmon_running(container_dev))
1397 st->update_tail = &st->updates;
1398 }
1399
1400 added_disks = 0;
1401 for (dv = devlist; dv; dv = dv->next)
1402 added_disks++;
1403 if (raid_disks > array.raid_disks &&
1404 array.spare_disks +added_disks < (raid_disks - array.raid_disks) &&
1405 !force) {
1406 fprintf(stderr,
1407 Name ": Need %d spare%s to avoid degraded array,"
1408 " and only have %d.\n"
1409 " Use --force to over-ride this check.\n",
1410 raid_disks - array.raid_disks,
1411 raid_disks - array.raid_disks == 1 ? "" : "s",
1412 array.spare_disks + added_disks);
1413 return 1;
1414 }
1415
1416 sra = sysfs_read(fd, 0, GET_LEVEL | GET_DISKS | GET_DEVS
1417 | GET_STATE | GET_VERSION);
1418 if (sra) {
1419 if (st->ss->external && subarray == NULL) {
1420 array.level = LEVEL_CONTAINER;
1421 sra->array.level = LEVEL_CONTAINER;
1422 }
1423 } else {
1424 fprintf(stderr, Name ": failed to read sysfs parameters for %s\n",
1425 devname);
1426 return 1;
1427 }
1428 frozen = freeze(st);
1429 if (frozen < -1) {
1430 /* freeze() already spewed the reason */
1431 return 1;
1432 } else if (frozen < 0) {
1433 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
1434 " be reshaped\n", devname);
1435 return 1;
1436 }
1437
1438 /* ========= set size =============== */
1439 if (size >= 0 && (size == 0 || size != array.size)) {
1440 long long orig_size = get_component_size(fd)/2;
1441 struct mdinfo *mdi;
1442
1443 if (orig_size == 0)
1444 orig_size = array.size;
1445
1446 if (reshape_super(st, size, UnSet, UnSet, 0, 0, UnSet, NULL,
1447 devname, !quiet)) {
1448 rv = 1;
1449 goto release;
1450 }
1451 sync_metadata(st);
1452
1453 /* Update the size of each member device in case
1454 * they have been resized. This will never reduce
1455 * below the current used-size. The "size" attribute
1456 * understand '0' to mean 'max'.
1457 */
1458 for (mdi = sra->devs; mdi; mdi = mdi->next)
1459 sysfs_set_num(sra, mdi, "size", size);
1460
1461 array.size = size;
1462 if (array.size != size) {
1463 /* got truncated to 32bit, write to
1464 * component_size instead
1465 */
1466 if (sra)
1467 rv = sysfs_set_num(sra, NULL,
1468 "component_size", size);
1469 else
1470 rv = -1;
1471 } else
1472 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1473 if (rv != 0) {
1474 int err = errno;
1475
1476 /* restore metadata */
1477 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
1478 UnSet, NULL, devname, !quiet) == 0)
1479 sync_metadata(st);
1480 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
1481 devname, strerror(err));
1482 if (err == EBUSY &&
1483 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1484 fprintf(stderr, " Bitmap must be removed before size can be changed\n");
1485 rv = 1;
1486 goto release;
1487 }
1488 ioctl(fd, GET_ARRAY_INFO, &array);
1489 size = get_component_size(fd)/2;
1490 if (size == 0)
1491 size = array.size;
1492 if (!quiet) {
1493 if (size == orig_size)
1494 fprintf(stderr, Name ": component size of %s "
1495 "unchanged at %lluK\n",
1496 devname, size);
1497 else
1498 fprintf(stderr, Name ": component size of %s "
1499 "has been set to %lluK\n",
1500 devname, size);
1501 }
1502 changed = 1;
1503 } else if (array.level != LEVEL_CONTAINER) {
1504 size = get_component_size(fd)/2;
1505 if (size == 0)
1506 size = array.size;
1507 }
1508
1509 /* See if there is anything else to do */
1510 if ((level == UnSet || level == array.level) &&
1511 (layout_str == NULL) &&
1512 (chunksize == 0 || chunksize == array.chunk_size) &&
1513 (raid_disks == 0 || raid_disks == array.raid_disks)) {
1514 /* Nothing more to do */
1515 if (!changed && !quiet)
1516 fprintf(stderr, Name ": %s: no change requested\n",
1517 devname);
1518 goto release;
1519 }
1520
1521 /* ========= check for Raid10/Raid1 -> Raid0 conversion ===============
1522 * current implementation assumes that following conditions must be met:
1523 * - RAID10:
1524 * - far_copies == 1
1525 * - near_copies == 2
1526 */
1527 if ((level == 0 && array.level == 10 && sra &&
1528 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) ||
1529 (level == 0 && array.level == 1 && sra)) {
1530 int err;
1531 err = remove_disks_for_takeover(st, sra, array.layout);
1532 if (err) {
1533 dprintf(Name": Array cannot be reshaped\n");
1534 if (cfd > -1)
1535 close(cfd);
1536 rv = 1;
1537 goto release;
1538 }
1539 /* FIXME this is added with no justification - why is it here */
1540 ping_monitor(container);
1541 }
1542
1543 memset(&info, 0, sizeof(info));
1544 info.array = array;
1545 sysfs_init(&info, fd, NoMdDev);
1546 strcpy(info.text_version, sra->text_version);
1547 info.component_size = size*2;
1548 info.new_level = level;
1549 info.new_chunk = chunksize * 1024;
1550 if (info.array.level == LEVEL_CONTAINER) {
1551 info.delta_disks = UnSet;
1552 info.array.raid_disks = raid_disks;
1553 } else if (raid_disks)
1554 info.delta_disks = raid_disks - info.array.raid_disks;
1555 else
1556 info.delta_disks = UnSet;
1557 if (layout_str == NULL) {
1558 info.new_layout = UnSet;
1559 if (info.array.level == 6 &&
1560 (info.new_level == 6 || info.new_level == UnSet) &&
1561 info.array.layout >= 16) {
1562 fprintf(stderr, Name
1563 ": %s has a non-standard layout. If you"
1564 " wish to preserve this\n"
1565 " during the reshape, please specify"
1566 " --layout=preserve\n"
1567 " If you want to change it, specify a"
1568 " layout or use --layout=normalise\n",
1569 devname);
1570 rv = 1;
1571 goto release;
1572 }
1573 } else if (strcmp(layout_str, "normalise") == 0 ||
1574 strcmp(layout_str, "normalize") == 0) {
1575 /* If we have a -6 RAID6 layout, remove the '-6'. */
1576 info.new_layout = UnSet;
1577 if (info.array.level == 6 && info.new_level == UnSet) {
1578 char l[40], *h;
1579 strcpy(l, map_num(r6layout, info.array.layout));
1580 h = strrchr(l, '-');
1581 if (h && strcmp(h, "-6") == 0) {
1582 *h = 0;
1583 info.new_layout = map_name(r6layout, l);
1584 }
1585 }
1586 } else if (strcmp(layout_str, "preserve") == 0) {
1587 info.new_layout = UnSet;
1588 } else {
1589 int l = info.new_level;
1590 if (l == UnSet)
1591 l = info.array.level;
1592 switch (l) {
1593 case 5:
1594 info.new_layout = map_name(r5layout, layout_str);
1595 break;
1596 case 6:
1597 info.new_layout = map_name(r6layout, layout_str);
1598 break;
1599 case 10:
1600 info.new_layout = parse_layout_10(layout_str);
1601 break;
1602 case LEVEL_FAULTY:
1603 info.new_layout = parse_layout_faulty(layout_str);
1604 break;
1605 default:
1606 fprintf(stderr, Name ": layout not meaningful"
1607 " with this level\n");
1608 rv = 1;
1609 goto release;
1610 }
1611 if (info.new_layout == UnSet) {
1612 fprintf(stderr, Name ": layout %s not understood"
1613 " for this level\n",
1614 layout_str);
1615 rv = 1;
1616 goto release;
1617 }
1618 }
1619
1620 if (array.level == LEVEL_FAULTY) {
1621 if (level != UnSet && level != array.level) {
1622 fprintf(stderr, Name ": cannot change level of Faulty device\n");
1623 rv =1 ;
1624 }
1625 if (chunksize) {
1626 fprintf(stderr, Name ": cannot set chunksize of Faulty device\n");
1627 rv =1 ;
1628 }
1629 if (raid_disks && raid_disks != 1) {
1630 fprintf(stderr, Name ": cannot set raid_disks of Faulty device\n");
1631 rv =1 ;
1632 }
1633 if (layout_str) {
1634 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1635 dprintf("Cannot get array information.\n");
1636 goto release;
1637 }
1638 array.layout = info.new_layout;
1639 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1640 fprintf(stderr, Name ": failed to set new layout\n");
1641 rv = 1;
1642 } else if (!quiet)
1643 printf("layout for %s set to %d\n",
1644 devname, array.layout);
1645 }
1646 } else if (array.level == LEVEL_CONTAINER) {
1647 /* This change is to be applied to every array in the
1648 * container. This is only needed when the metadata imposes
1649 * restraints of the various arrays in the container.
1650 * Currently we only know that IMSM requires all arrays
1651 * to have the same number of devices so changing the
1652 * number of devices (On-Line Capacity Expansion) must be
1653 * performed at the level of the container
1654 */
1655 rv = reshape_container(container, devname, st, &info,
1656 force, backup_file, quiet, 0);
1657 frozen = 0;
1658 } else {
1659 /* get spare devices from external metadata
1660 */
1661 if (st->ss->external) {
1662 struct mdinfo *info2;
1663
1664 info2 = st->ss->container_content(st, subarray);
1665 if (info2) {
1666 info.array.spare_disks =
1667 info2->array.spare_disks;
1668 sysfs_free(info2);
1669 }
1670 }
1671
1672 /* Impose these changes on a single array. First
1673 * check that the metadata is OK with the change. */
1674
1675 if (reshape_super(st, info.component_size, info.new_level,
1676 info.new_layout, info.new_chunk,
1677 info.array.raid_disks, info.delta_disks,
1678 backup_file, devname, quiet)) {
1679 rv = 1;
1680 goto release;
1681 }
1682 sync_metadata(st);
1683 rv = reshape_array(container, fd, devname, st, &info, force,
1684 devlist, backup_file, quiet, 0, 0);
1685 frozen = 0;
1686 }
1687 release:
1688 if (frozen > 0)
1689 unfreeze(st);
1690 return rv;
1691 }
1692
1693 static int reshape_array(char *container, int fd, char *devname,
1694 struct supertype *st, struct mdinfo *info,
1695 int force, struct mddev_dev *devlist,
1696 char *backup_file, int quiet, int forked,
1697 int restart)
1698 {
1699 struct reshape reshape;
1700 int spares_needed;
1701 char *msg;
1702 int orig_level = UnSet;
1703 int disks, odisks;
1704
1705 struct mdu_array_info_s array;
1706 char *c;
1707
1708 struct mddev_dev *dv;
1709 int added_disks;
1710
1711 int *fdlist;
1712 unsigned long long *offsets;
1713 int d;
1714 int nrdisks;
1715 int err;
1716 unsigned long blocks;
1717 unsigned long cache;
1718 unsigned long long array_size;
1719 int done;
1720 struct mdinfo *sra = NULL;
1721
1722 /* when reshaping a RAID0, the component_size might be zero.
1723 * So try to fix that up.
1724 */
1725 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1726 dprintf("Cannot get array information.\n");
1727 goto release;
1728 }
1729 if (array.level == 0 && info->component_size == 0) {
1730 get_dev_size(fd, NULL, &array_size);
1731 info->component_size = array_size / array.raid_disks;
1732 }
1733
1734 if (info->reshape_active) {
1735 int new_level = info->new_level;
1736 info->new_level = UnSet;
1737 info->array.raid_disks -= info->delta_disks;
1738 msg = analyse_change(info, &reshape);
1739 info->new_level = new_level;
1740 info->array.raid_disks += info->delta_disks;
1741 if (!restart)
1742 /* Make sure the array isn't read-only */
1743 ioctl(fd, RESTART_ARRAY_RW, 0);
1744 } else
1745 msg = analyse_change(info, &reshape);
1746 if (msg) {
1747 fprintf(stderr, Name ": %s\n", msg);
1748 goto release;
1749 }
1750 if (restart &&
1751 (reshape.level != info->array.level ||
1752 reshape.before.layout != info->array.layout ||
1753 reshape.before.data_disks + reshape.parity
1754 != info->array.raid_disks - info->delta_disks)) {
1755 fprintf(stderr, Name ": reshape info is not in native format -"
1756 " cannot continue.\n");
1757 goto release;
1758 }
1759
1760 if (restart) {
1761 /* reshape already started. just skip to monitoring the reshape */
1762 if (reshape.backup_blocks == 0)
1763 return 0;
1764 goto started;
1765 }
1766 /* The container is frozen but the array may not be.
1767 * So freeze the array so spares don't get put to the wrong use
1768 * FIXME there should probably be a cleaner separation between
1769 * freeze_array and freeze_container.
1770 */
1771 sysfs_freeze_array(info);
1772 /* Check we have enough spares to not be degraded */
1773 added_disks = 0;
1774 for (dv = devlist; dv ; dv=dv->next)
1775 added_disks++;
1776 spares_needed = max(reshape.before.data_disks,
1777 reshape.after.data_disks)
1778 + reshape.parity - array.raid_disks;
1779
1780 if (!force &&
1781 info->new_level > 1 && info->array.level > 1 &&
1782 spares_needed > info->array.spare_disks + added_disks) {
1783 fprintf(stderr,
1784 Name ": Need %d spare%s to avoid degraded array,"
1785 " and only have %d.\n"
1786 " Use --force to over-ride this check.\n",
1787 spares_needed,
1788 spares_needed == 1 ? "" : "s",
1789 info->array.spare_disks + added_disks);
1790 goto release;
1791 }
1792 /* Check we have enough spares to not fail */
1793 spares_needed = max(reshape.before.data_disks,
1794 reshape.after.data_disks)
1795 - array.raid_disks;
1796 if ((info->new_level > 1 || info->new_level == 0) &&
1797 spares_needed > info->array.spare_disks +added_disks) {
1798 fprintf(stderr,
1799 Name ": Need %d spare%s to create working array,"
1800 " and only have %d.\n",
1801 spares_needed,
1802 spares_needed == 1 ? "" : "s",
1803 info->array.spare_disks + added_disks);
1804 goto release;
1805 }
1806
1807 if (reshape.level != array.level) {
1808 char *c = map_num(pers, reshape.level);
1809 int err;
1810 if (c == NULL)
1811 goto release;
1812
1813 err = sysfs_set_str(info, NULL, "level", c);
1814 if (err) {
1815 err = errno;
1816 fprintf(stderr, Name ": %s: could not set level to %s\n",
1817 devname, c);
1818 if (err == EBUSY &&
1819 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
1820 fprintf(stderr, " Bitmap must be removed"
1821 " before level can be changed\n");
1822 goto release;
1823 }
1824 if (!quiet)
1825 fprintf(stderr, Name ": level of %s changed to %s\n",
1826 devname, c);
1827 orig_level = array.level;
1828 sysfs_freeze_array(info);
1829
1830 if (reshape.level > 0 && st->ss->external) {
1831 /* make sure mdmon is aware of the new level */
1832 if (!mdmon_running(st->container_dev))
1833 start_mdmon(st->container_dev);
1834 ping_monitor(container);
1835 }
1836 }
1837 /* ->reshape_super might have chosen some spares from the
1838 * container that it wants to be part of the new array.
1839 * We can collect them with ->container_content and give
1840 * them to the kernel.
1841 */
1842 if (st->ss->reshape_super && st->ss->container_content) {
1843 char *subarray = strchr(info->text_version+1, '/')+1;
1844 struct mdinfo *info2 =
1845 st->ss->container_content(st, subarray);
1846 struct mdinfo *d;
1847
1848 if (info2) {
1849 sysfs_init(info2, fd, st->devnum);
1850 /* When increasing number of devices, we need to set
1851 * new raid_disks before adding these, or they might
1852 * be rejected.
1853 */
1854 if (reshape.backup_blocks &&
1855 reshape.after.data_disks > reshape.before.data_disks)
1856 subarray_set_num(container, info2, "raid_disks",
1857 reshape.after.data_disks +
1858 reshape.parity);
1859 for (d = info2->devs; d; d = d->next) {
1860 if (d->disk.state == 0 &&
1861 d->disk.raid_disk >= 0) {
1862 /* This is a spare that wants to
1863 * be part of the array.
1864 */
1865 add_disk(fd, st, info2, d);
1866 }
1867 }
1868 sysfs_free(info2);
1869 }
1870 }
1871 /* We might have been given some devices to add to the
1872 * array. Now that the array has been changed to the right
1873 * level and frozen, we can safely add them.
1874 */
1875 if (devlist)
1876 Manage_subdevs(devname, fd, devlist, !quiet,
1877 0,NULL);
1878
1879 if (reshape.backup_blocks == 0) {
1880 /* No restriping needed, but we might need to impose
1881 * some more changes: layout, raid_disks, chunk_size
1882 */
1883 /* read current array info */
1884 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1885 dprintf("Cannot get array information.\n");
1886 goto release;
1887 }
1888 /* compare current array info with new values and if
1889 * it is different update them to new */
1890 if (info->new_layout != UnSet &&
1891 info->new_layout != array.layout) {
1892 array.layout = info->new_layout;
1893 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1894 fprintf(stderr, Name ": failed to set new layout\n");
1895 goto release;
1896 } else if (!quiet)
1897 printf("layout for %s set to %d\n",
1898 devname, array.layout);
1899 }
1900 if (info->delta_disks != UnSet &&
1901 info->delta_disks != 0 &&
1902 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
1903 array.raid_disks += info->delta_disks;
1904 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1905 fprintf(stderr, Name ": failed to set raid disks\n");
1906 goto release;
1907 } else if (!quiet) {
1908 printf("raid_disks for %s set to %d\n",
1909 devname, array.raid_disks);
1910 }
1911 }
1912 if (info->new_chunk != 0 &&
1913 info->new_chunk != array.chunk_size) {
1914 if (sysfs_set_num(info, NULL,
1915 "chunk_size", info->new_chunk) != 0) {
1916 fprintf(stderr, Name ": failed to set chunk size\n");
1917 goto release;
1918 } else if (!quiet)
1919 printf("chunk size for %s set to %d\n",
1920 devname, array.chunk_size);
1921 }
1922 unfreeze(st);
1923 return 0;
1924 }
1925
1926 /*
1927 * There are three possibilities.
1928 * 1/ The array will shrink.
1929 * We need to ensure the reshape will pause before reaching
1930 * the 'critical section'. We also need to fork and wait for
1931 * that to happen. When it does we
1932 * suspend/backup/complete/unfreeze
1933 *
1934 * 2/ The array will not change size.
1935 * This requires that we keep a backup of a sliding window
1936 * so that we can restore data after a crash. So we need
1937 * to fork and monitor progress.
1938 * In future we will allow the data_offset to change, so
1939 * a sliding backup becomes unnecessary.
1940 *
1941 * 3/ The array will grow. This is relatively easy.
1942 * However the kernel's restripe routines will cheerfully
1943 * overwrite some early data before it is safe. So we
1944 * need to make a backup of the early parts of the array
1945 * and be ready to restore it if rebuild aborts very early.
1946 * For externally managed metadata, we still need a forked
1947 * child to monitor the reshape and suspend IO over the region
1948 * that is being reshaped.
1949 *
1950 * We backup data by writing it to one spare, or to a
1951 * file which was given on command line.
1952 *
1953 * In each case, we first make sure that storage is available
1954 * for the required backup.
1955 * Then we:
1956 * - request the shape change.
1957 * - fork to handle backup etc.
1958 */
1959 started:
1960 /* Check that we can hold all the data */
1961 get_dev_size(fd, NULL, &array_size);
1962 if (reshape.new_size < (array_size/512)) {
1963 fprintf(stderr,
1964 Name ": this change will reduce the size of the array.\n"
1965 " use --grow --array-size first to truncate array.\n"
1966 " e.g. mdadm --grow %s --array-size %llu\n",
1967 devname, reshape.new_size/2);
1968 goto release;
1969 }
1970
1971 sra = sysfs_read(fd, 0,
1972 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
1973 GET_CACHE);
1974 if (!sra) {
1975 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
1976 devname);
1977 goto release;
1978 }
1979
1980 /* Decide how many blocks (sectors) for a reshape
1981 * unit. The number we have so far is just a minimum
1982 */
1983 blocks = reshape.backup_blocks;
1984 if (reshape.before.data_disks ==
1985 reshape.after.data_disks) {
1986 /* Make 'blocks' bigger for better throughput, but
1987 * not so big that we reject it below.
1988 * Try for 16 megabytes
1989 */
1990 while (blocks * 32 < sra->component_size &&
1991 blocks < 16*1024*2)
1992 blocks *= 2;
1993 } else
1994 fprintf(stderr, Name ": Need to backup %luK of critical "
1995 "section..\n", blocks/2);
1996
1997 if (blocks >= sra->component_size/2) {
1998 fprintf(stderr, Name ": %s: Something wrong"
1999 " - reshape aborted\n",
2000 devname);
2001 goto release;
2002 }
2003
2004 /* Now we need to open all these devices so we can read/write.
2005 */
2006 nrdisks = max(reshape.before.data_disks,
2007 reshape.after.data_disks) + reshape.parity
2008 + sra->array.spare_disks;
2009 fdlist = malloc((1+nrdisks) * sizeof(int));
2010 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
2011 if (!fdlist || !offsets) {
2012 fprintf(stderr, Name ": malloc failed: grow aborted\n");
2013 goto release;
2014 }
2015
2016 odisks = reshape.before.data_disks + reshape.parity;
2017 d = reshape_prepare_fdlist(devname, sra, odisks,
2018 nrdisks, blocks, backup_file,
2019 fdlist, offsets);
2020 if (d < 0) {
2021 goto release;
2022 }
2023 if (backup_file == NULL) {
2024 if (reshape.after.data_disks <= reshape.before.data_disks) {
2025 fprintf(stderr,
2026 Name ": %s: Cannot grow - need backup-file\n",
2027 devname);
2028 goto release;
2029 } else if (sra->array.spare_disks == 0) {
2030 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
2031 "backup-file to backup critical section\n",
2032 devname);
2033 goto release;
2034 }
2035 } else {
2036 if (!reshape_open_backup_file(backup_file, fd, devname,
2037 (signed)blocks,
2038 fdlist+d, offsets+d, restart)) {
2039 goto release;
2040 }
2041 d++;
2042 }
2043
2044 /* lastly, check that the internal stripe cache is
2045 * large enough, or it won't work.
2046 * It must hold at least 4 stripes of the larger
2047 * chunk size
2048 */
2049 cache = max(info->array.chunk_size, info->new_chunk);
2050 cache *= 4; /* 4 stripes minimum */
2051 cache /= 512; /* convert to sectors */
2052 disks = min(reshape.before.data_disks, reshape.after.data_disks);
2053 /* make sure there is room for 'blocks' with a bit to spare */
2054 if (cache < 16 + blocks / disks)
2055 cache = 16 + blocks / disks;
2056 cache /= (4096/512); /* Covert from sectors to pages */
2057
2058 if (sra->cache_size < cache)
2059 subarray_set_num(container, sra, "stripe_cache_size",
2060 cache+1);
2061
2062 /* Right, everything seems fine. Let's kick things off.
2063 * If only changing raid_disks, use ioctl, else use
2064 * sysfs.
2065 */
2066 sync_metadata(st);
2067
2068 sra->new_chunk = info->new_chunk;
2069
2070 if (restart)
2071 sra->reshape_progress = info->reshape_progress;
2072 else {
2073 sra->reshape_progress = 0;
2074 if (reshape.after.data_disks < reshape.before.data_disks)
2075 /* start from the end of the new array */
2076 sra->reshape_progress = (sra->component_size
2077 * reshape.after.data_disks);
2078 }
2079
2080 if (info->array.chunk_size == info->new_chunk &&
2081 reshape.before.layout == reshape.after.layout &&
2082 st->ss->external == 0) {
2083 /* use SET_ARRAY_INFO but only if reshape hasn't started */
2084 ioctl(fd, GET_ARRAY_INFO, &array);
2085 array.raid_disks = reshape.after.data_disks + reshape.parity;
2086 if (!restart &&
2087 ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2088 int err = errno;
2089
2090 fprintf(stderr,
2091 Name ": Cannot set device shape for %s: %s\n",
2092 devname, strerror(errno));
2093
2094 if (err == EBUSY &&
2095 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2096 fprintf(stderr,
2097 " Bitmap must be removed before"
2098 " shape can be changed\n");
2099
2100 goto release;
2101 }
2102 } else if (!restart) {
2103 /* set them all just in case some old 'new_*' value
2104 * persists from some earlier problem.
2105 */
2106 int err = 0;
2107 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2108 err = errno;
2109 if (!err && sysfs_set_num(sra, NULL, "layout",
2110 reshape.after.layout) < 0)
2111 err = errno;
2112 if (!err && subarray_set_num(container, sra, "raid_disks",
2113 reshape.after.data_disks +
2114 reshape.parity) < 0)
2115 err = errno;
2116 if (err) {
2117 fprintf(stderr, Name ": Cannot set device shape for %s\n",
2118 devname);
2119
2120 if (err == EBUSY &&
2121 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2122 fprintf(stderr,
2123 " Bitmap must be removed before"
2124 " shape can be changed\n");
2125 goto release;
2126 }
2127 }
2128
2129 err = start_reshape(sra, restart);
2130 if (err) {
2131 fprintf(stderr,
2132 Name ": Cannot %s reshape for %s\n",
2133 restart ? "continue" : "start",
2134 devname);
2135 goto release;
2136 }
2137 if (restart)
2138 sysfs_set_str(sra, NULL, "array_state", "active");
2139
2140 /* Now we just need to kick off the reshape and watch, while
2141 * handling backups of the data...
2142 * This is all done by a forked background process.
2143 */
2144 switch(forked ? 0 : fork()) {
2145 case -1:
2146 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
2147 strerror(errno));
2148 abort_reshape(sra);
2149 goto release;
2150 default:
2151 return 0;
2152 case 0:
2153 break;
2154 }
2155
2156 close(fd);
2157 if (check_env("MDADM_GROW_VERIFY"))
2158 fd = open(devname, O_RDONLY | O_DIRECT);
2159 else
2160 fd = -1;
2161 mlockall(MCL_FUTURE);
2162
2163 if (st->ss->external) {
2164 /* metadata handler takes it from here */
2165 done = st->ss->manage_reshape(
2166 fd, sra, &reshape, st, blocks,
2167 fdlist, offsets,
2168 d - odisks, fdlist+odisks,
2169 offsets+odisks);
2170 } else
2171 done = child_monitor(
2172 fd, sra, &reshape, st, blocks,
2173 fdlist, offsets,
2174 d - odisks, fdlist+odisks,
2175 offsets+odisks);
2176
2177 if (backup_file && done)
2178 unlink(backup_file);
2179 if (!done) {
2180 abort_reshape(sra);
2181 goto out;
2182 }
2183
2184 if (!st->ss->external &&
2185 !(reshape.before.data_disks != reshape.after.data_disks
2186 && info->custom_array_size) &&
2187 info->new_level == reshape.level &&
2188 !forked) {
2189 /* no need to wait for the reshape to finish as
2190 * there is nothing more to do.
2191 */
2192 exit(0);
2193 }
2194 wait_reshape(sra);
2195
2196 if (st->ss->external) {
2197 /* Re-load the metadata as much could have changed */
2198 int cfd = open_dev(st->container_dev);
2199 if (cfd >= 0) {
2200 ping_monitor(container);
2201 st->ss->free_super(st);
2202 st->ss->load_container(st, cfd, container);
2203 close(cfd);
2204 }
2205 }
2206
2207 /* set new array size if required customer_array_size is used
2208 * by this metadata.
2209 */
2210 if (reshape.before.data_disks !=
2211 reshape.after.data_disks &&
2212 info->custom_array_size) {
2213 struct mdinfo *info2;
2214 char *subarray = strchr(info->text_version+1, '/')+1;
2215
2216 info2 = st->ss->container_content(st, subarray);
2217 if (info2) {
2218 unsigned long long current_size = 0;
2219 unsigned long long new_size =
2220 info2->custom_array_size/2;
2221
2222 if (sysfs_get_ll(sra,
2223 NULL,
2224 "array_size",
2225 &current_size) == 0 &&
2226 new_size > current_size) {
2227 if (sysfs_set_num(sra, NULL,
2228 "array_size", new_size)
2229 < 0)
2230 dprintf("Error: Cannot"
2231 " set array size");
2232 else
2233 dprintf("Array size "
2234 "changed");
2235 dprintf(" from %llu to %llu.\n",
2236 current_size, new_size);
2237 }
2238 sysfs_free(info2);
2239 }
2240 }
2241
2242 if (info->new_level != reshape.level) {
2243
2244 c = map_num(pers, info->new_level);
2245 if (c) {
2246 err = sysfs_set_str(sra, NULL, "level", c);
2247 if (err)
2248 fprintf(stderr, Name\
2249 ": %s: could not set level "
2250 "to %s\n", devname, c);
2251 }
2252 }
2253 out:
2254 if (forked)
2255 return 0;
2256 unfreeze(st);
2257 exit(0);
2258
2259 release:
2260 if (orig_level != UnSet && sra) {
2261 c = map_num(pers, orig_level);
2262 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
2263 fprintf(stderr, Name ": aborting level change\n");
2264 }
2265 if (!forked)
2266 unfreeze(st);
2267 return 1;
2268 }
2269
2270 int reshape_container(char *container, char *devname,
2271 struct supertype *st,
2272 struct mdinfo *info,
2273 int force,
2274 char *backup_file,
2275 int quiet, int restart)
2276 {
2277 struct mdinfo *cc = NULL;
2278 int rv = restart;
2279
2280 /* component_size is not meaningful for a container,
2281 * so pass '-1' meaning 'no change'
2282 */
2283 if (!restart &&
2284 reshape_super(st, -1, info->new_level,
2285 info->new_layout, info->new_chunk,
2286 info->array.raid_disks, info->delta_disks,
2287 backup_file, devname, quiet)) {
2288 unfreeze(st);
2289 return 1;
2290 }
2291
2292 sync_metadata(st);
2293
2294 /* ping monitor to be sure that update is on disk
2295 */
2296 ping_monitor(container);
2297
2298 switch (fork()) {
2299 case -1: /* error */
2300 perror("Cannot fork to complete reshape\n");
2301 unfreeze(st);
2302 return 1;
2303 default: /* parent */
2304 printf(Name ": multi-array reshape continues in background\n");
2305 return 0;
2306 case 0: /* child */
2307 break;
2308 }
2309
2310 while(1) {
2311 /* For each member array with reshape_active,
2312 * we need to perform the reshape.
2313 * We pick the first array that needs reshaping and
2314 * reshape it. reshape_array() will re-read the metadata
2315 * so the next time through a different array should be
2316 * ready for reshape.
2317 * It is possible that the 'different' array will not
2318 * be assembled yet. In that case we simple exit.
2319 * When it is assembled, the mdadm which assembles it
2320 * will take over the reshape.
2321 */
2322 struct mdinfo *content;
2323 int fd;
2324 struct mdstat_ent *mdstat;
2325 char *adev;
2326
2327 sysfs_free(cc);
2328
2329 cc = st->ss->container_content(st, NULL);
2330
2331 for (content = cc; content ; content = content->next) {
2332 char *subarray;
2333 if (!content->reshape_active)
2334 continue;
2335
2336 subarray = strchr(content->text_version+1, '/')+1;
2337 mdstat = mdstat_by_subdev(subarray,
2338 devname2devnum(container));
2339 if (!mdstat)
2340 continue;
2341 break;
2342 }
2343 if (!content)
2344 break;
2345
2346 fd = open_dev(mdstat->devnum);
2347 if (fd < 0)
2348 break;
2349 adev = map_dev(dev2major(mdstat->devnum),
2350 dev2minor(mdstat->devnum),
2351 0);
2352 if (!adev)
2353 adev = content->text_version;
2354
2355 sysfs_init(content, fd, mdstat->devnum);
2356
2357 rv = reshape_array(container, fd, adev, st,
2358 content, force, NULL,
2359 backup_file, quiet, 1, restart);
2360 close(fd);
2361 restart = 0;
2362 if (rv)
2363 break;
2364 }
2365 if (!rv)
2366 unfreeze(st);
2367 sysfs_free(cc);
2368 exit(0);
2369 }
2370
2371 /*
2372 * We run a child process in the background which performs the following
2373 * steps:
2374 * - wait for resync to reach a certain point
2375 * - suspend io to the following section
2376 * - backup that section
2377 * - allow resync to proceed further
2378 * - resume io
2379 * - discard the backup.
2380 *
2381 * When are combined in slightly different ways in the three cases.
2382 * Grow:
2383 * - suspend/backup/allow/wait/resume/discard
2384 * Shrink:
2385 * - allow/wait/suspend/backup/allow/wait/resume/discard
2386 * same-size:
2387 * - wait/resume/discard/suspend/backup/allow
2388 *
2389 * suspend/backup/allow always come together
2390 * wait/resume/discard do too.
2391 * For the same-size case we have two backups to improve flow.
2392 *
2393 */
2394
2395 int progress_reshape(struct mdinfo *info, struct reshape *reshape,
2396 unsigned long long backup_point,
2397 unsigned long long wait_point,
2398 unsigned long long *suspend_point,
2399 unsigned long long *reshape_completed)
2400 {
2401 /* This function is called repeatedly by the reshape manager.
2402 * It determines how much progress can safely be made and allows
2403 * that progress.
2404 * - 'info' identifies the array and particularly records in
2405 * ->reshape_progress the metadata's knowledge of progress
2406 * This is a sector offset from the start of the array
2407 * of the next array block to be relocated. This number
2408 * may increase from 0 or decrease from array_size, depending
2409 * on the type of reshape that is happening.
2410 * Note that in contrast, 'sync_completed' is a block count of the
2411 * reshape so far. It gives the distance between the start point
2412 * (head or tail of device) and the next place that data will be
2413 * written. It always increases.
2414 * - 'reshape' is the structure created by analyse_change
2415 * - 'backup_point' shows how much the metadata manager has backed-up
2416 * data. For reshapes with increasing progress, it is the next address
2417 * to be backed up, previous addresses have been backed-up. For
2418 * decreasing progress, it is the earliest address that has been
2419 * backed up - later address are also backed up.
2420 * So addresses between reshape_progress and backup_point are
2421 * backed up providing those are in the 'correct' order.
2422 * - 'wait_point' is an array address. When reshape_completed
2423 * passes this point, progress_reshape should return. It might
2424 * return earlier if it determines that ->reshape_progress needs
2425 * to be updated or further backup is needed.
2426 * - suspend_point is maintained by progress_reshape and the caller
2427 * should not touch it except to initialise to zero.
2428 * It is an array address and it only increases in 2.6.37 and earlier.
2429 * This makes it difficult to handle reducing reshapes with
2430 * external metadata.
2431 * However: it is similar to backup_point in that it records the
2432 * other end of a suspended region from reshape_progress.
2433 * it is moved to extend the region that is safe to backup and/or
2434 * reshape
2435 * - reshape_completed is read from sysfs and returned. The caller
2436 * should copy this into ->reshape_progress when it has reason to
2437 * believe that the metadata knows this, and any backup outside this
2438 * has been erased.
2439 *
2440 * Return value is:
2441 * 1 if more data from backup_point - but only as far as suspend_point,
2442 * should be backed up
2443 * 0 if things are progressing smoothly
2444 * -1 if the reshape is finished because it is all done,
2445 * -2 if the reshape is finished due to an error.
2446 */
2447
2448 int advancing = (reshape->after.data_disks
2449 >= reshape->before.data_disks);
2450 unsigned long long need_backup; /* All data between start of array and
2451 * here will at some point need to
2452 * be backed up.
2453 */
2454 unsigned long long read_offset, write_offset;
2455 unsigned long long write_range;
2456 unsigned long long max_progress, target, completed;
2457 unsigned long long array_size = (info->component_size
2458 * reshape->before.data_disks);
2459 int fd;
2460 char buf[20];
2461
2462 /* First, we unsuspend any region that is now known to be safe.
2463 * If suspend_point is on the 'wrong' side of reshape_progress, then
2464 * we don't have or need suspension at the moment. This is true for
2465 * native metadata when we don't need to back-up.
2466 */
2467 if (advancing) {
2468 if (info->reshape_progress <= *suspend_point)
2469 sysfs_set_num(info, NULL, "suspend_lo",
2470 info->reshape_progress);
2471 } else {
2472 /* Note: this won't work in 2.6.37 and before.
2473 * Something somewhere should make sure we don't need it!
2474 */
2475 if (info->reshape_progress >= *suspend_point)
2476 sysfs_set_num(info, NULL, "suspend_hi",
2477 info->reshape_progress);
2478 }
2479
2480 /* Now work out how far it is safe to progress.
2481 * If the read_offset for ->reshape_progress is less than
2482 * 'blocks' beyond the write_offset, we can only progress as far
2483 * as a backup.
2484 * Otherwise we can progress until the write_offset for the new location
2485 * reaches (within 'blocks' of) the read_offset at the current location.
2486 * However that region must be suspended unless we are using native
2487 * metadata.
2488 * If we need to suspend more, we limit it to 128M per device, which is
2489 * rather arbitrary and should be some time-based calculation.
2490 */
2491 read_offset = info->reshape_progress / reshape->before.data_disks;
2492 write_offset = info->reshape_progress / reshape->after.data_disks;
2493 write_range = info->new_chunk/512;
2494 if (reshape->before.data_disks == reshape->after.data_disks)
2495 need_backup = array_size;
2496 else
2497 need_backup = reshape->backup_blocks;
2498 if (advancing) {
2499 if (read_offset < write_offset + write_range)
2500 max_progress = backup_point;
2501 else
2502 max_progress =
2503 read_offset *
2504 reshape->after.data_disks;
2505 } else {
2506 if (read_offset > write_offset - write_range)
2507 /* Can only progress as far as has been backed up,
2508 * which must be suspended */
2509 max_progress = backup_point;
2510 else if (info->reshape_progress <= need_backup)
2511 max_progress = backup_point;
2512 else {
2513 if (info->array.major_version >= 0)
2514 /* Can progress until backup is needed */
2515 max_progress = need_backup;
2516 else {
2517 /* Can progress until metadata update is required */
2518 max_progress =
2519 read_offset *
2520 reshape->after.data_disks;
2521 /* but data must be suspended */
2522 if (max_progress < *suspend_point)
2523 max_progress = *suspend_point;
2524 }
2525 }
2526 }
2527
2528 /* We know it is safe to progress to 'max_progress' providing
2529 * it is suspended or we are using native metadata.
2530 * Consider extending suspend_point 128M per device if it
2531 * is less than 64M per device beyond reshape_progress.
2532 * But always do a multiple of 'blocks'
2533 * FIXME this is too big - it takes to long to complete
2534 * this much.
2535 */
2536 target = 64*1024*2 * min(reshape->before.data_disks,
2537 reshape->after.data_disks);
2538 target /= reshape->backup_blocks;
2539 if (target < 2)
2540 target = 2;
2541 target *= reshape->backup_blocks;
2542
2543 /* For externally managed metadata we always need to suspend IO to
2544 * the area being reshaped so we regularly push suspend_point forward.
2545 * For native metadata we only need the suspend if we are going to do
2546 * a backup.
2547 */
2548 if (advancing) {
2549 if ((need_backup > info->reshape_progress
2550 || info->array.major_version < 0) &&
2551 *suspend_point < info->reshape_progress + target) {
2552 if (need_backup < *suspend_point + 2 * target)
2553 *suspend_point = need_backup;
2554 else if (*suspend_point + 2 * target < array_size)
2555 *suspend_point += 2 * target;
2556 else
2557 *suspend_point = array_size;
2558 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
2559 if (max_progress > *suspend_point)
2560 max_progress = *suspend_point;
2561 }
2562 } else {
2563 if (info->array.major_version >= 0) {
2564 /* Only need to suspend when about to backup */
2565 if (info->reshape_progress < need_backup * 2 &&
2566 *suspend_point > 0) {
2567 *suspend_point = 0;
2568 sysfs_set_num(info, NULL, "suspend_lo", 0);
2569 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
2570 }
2571 } else {
2572 /* Need to suspend continually */
2573 if (info->reshape_progress < *suspend_point)
2574 *suspend_point = info->reshape_progress;
2575 if (*suspend_point + target < info->reshape_progress)
2576 /* No need to move suspend region yet */;
2577 else {
2578 if (*suspend_point >= 2 * target)
2579 *suspend_point -= 2 * target;
2580 else
2581 *suspend_point = 0;
2582 sysfs_set_num(info, NULL, "suspend_lo",
2583 *suspend_point);
2584 }
2585 if (max_progress < *suspend_point)
2586 max_progress = *suspend_point;
2587 }
2588 }
2589
2590 /* now set sync_max to allow that progress. sync_max, like
2591 * sync_completed is a count of sectors written per device, so
2592 * we find the difference between max_progress and the start point,
2593 * and divide that by after.data_disks to get a sync_max
2594 * number.
2595 * At the same time we convert wait_point to a similar number
2596 * for comparing against sync_completed.
2597 */
2598 /* scale down max_progress to per_disk */
2599 max_progress /= reshape->after.data_disks;
2600 /* Round to chunk size as some kernels give an erroneously high number */
2601 max_progress /= info->new_chunk/512;
2602 max_progress *= info->new_chunk/512;
2603 /* And round to old chunk size as the kernel wants that */
2604 max_progress /= info->array.chunk_size/512;
2605 max_progress *= info->array.chunk_size/512;
2606 /* Limit progress to the whole device */
2607 if (max_progress > info->component_size)
2608 max_progress = info->component_size;
2609 wait_point /= reshape->after.data_disks;
2610 if (!advancing) {
2611 /* switch from 'device offset' to 'processed block count' */
2612 max_progress = info->component_size - max_progress;
2613 wait_point = info->component_size - wait_point;
2614 }
2615
2616 sysfs_set_num(info, NULL, "sync_max", max_progress);
2617
2618 /* Now wait. If we have already reached the point that we were
2619 * asked to wait to, don't wait at all, else wait for any change.
2620 * We need to select on 'sync_completed' as that is the place that
2621 * notifications happen, but we are really interested in
2622 * 'reshape_position'
2623 */
2624 fd = sysfs_get_fd(info, NULL, "sync_completed");
2625 if (fd < 0)
2626 goto check_progress;
2627
2628 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2629 close(fd);
2630 goto check_progress;
2631 }
2632 while (completed < max_progress && completed < wait_point) {
2633 /* Check that sync_action is still 'reshape' to avoid
2634 * waiting forever on a dead array
2635 */
2636 char action[20];
2637 fd_set rfds;
2638 if (sysfs_get_str(info, NULL, "sync_action",
2639 action, 20) <= 0 ||
2640 strncmp(action, "reshape", 7) != 0)
2641 break;
2642 /* Some kernels reset 'sync_completed' to zero
2643 * before setting 'sync_action' to 'idle'.
2644 * So we need these extra tests.
2645 */
2646 if (completed == 0 && advancing
2647 && info->reshape_progress > 0)
2648 break;
2649 if (completed == 0 && !advancing
2650 && info->reshape_progress < (info->component_size
2651 * reshape->after.data_disks))
2652 break;
2653 FD_ZERO(&rfds);
2654 FD_SET(fd, &rfds);
2655 select(fd+1, NULL, NULL, &rfds, NULL);
2656 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2657 close(fd);
2658 goto check_progress;
2659 }
2660 }
2661 /* Some kernels reset 'sync_completed' to zero,
2662 * we need to have real point we are in md
2663 */
2664 if (completed == 0)
2665 completed = max_progress;
2666
2667 /* some kernels can give an incorrectly high 'completed' number */
2668 completed /= (info->new_chunk/512);
2669 completed *= (info->new_chunk/512);
2670 /* Convert 'completed' back in to a 'progress' number */
2671 completed *= reshape->after.data_disks;
2672 if (!advancing) {
2673 completed = info->component_size * reshape->after.data_disks
2674 - completed;
2675 }
2676 *reshape_completed = completed;
2677
2678 close(fd);
2679
2680 /* We return the need_backup flag. Caller will decide
2681 * how much - a multiple of ->backup_blocks up to *suspend_point
2682 */
2683 if (advancing)
2684 return need_backup > info->reshape_progress;
2685 else
2686 return need_backup >= info->reshape_progress;
2687
2688 check_progress:
2689 /* if we couldn't read a number from sync_completed, then
2690 * either the reshape did complete, or it aborted.
2691 * We can tell which by checking for 'none' in reshape_position.
2692 */
2693 strcpy(buf, "hi");
2694 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
2695 || strncmp(buf, "none", 4) != 0)
2696 return -2; /* abort */
2697 else {
2698 /* Maybe racing with array shutdown - check state */
2699 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
2700 || strncmp(buf, "inactive", 8) == 0
2701 || strncmp(buf, "clear",5) == 0)
2702 return -2; /* abort */
2703 return -1; /* complete */
2704 }
2705 }
2706
2707
2708 /* FIXME return status is never checked */
2709 static int grow_backup(struct mdinfo *sra,
2710 unsigned long long offset, /* per device */
2711 unsigned long stripes, /* per device, in old chunks */
2712 int *sources, unsigned long long *offsets,
2713 int disks, int chunk, int level, int layout,
2714 int dests, int *destfd, unsigned long long *destoffsets,
2715 int part, int *degraded,
2716 char *buf)
2717 {
2718 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2719 * to storage 'destfd' (offset 'destoffsets'), after first
2720 * suspending IO. Then allow resync to continue
2721 * over the suspended section.
2722 * Use part 'part' of the backup-super-block.
2723 */
2724 int odata = disks;
2725 int rv = 0;
2726 int i;
2727 unsigned long long ll;
2728 int new_degraded;
2729 //printf("offset %llu\n", offset);
2730 if (level >= 4)
2731 odata--;
2732 if (level == 6)
2733 odata--;
2734
2735 /* Check that array hasn't become degraded, else we might backup the wrong data */
2736 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
2737 return -1; /* FIXME this error is ignored */
2738 new_degraded = (int)ll;
2739 if (new_degraded != *degraded) {
2740 /* check each device to ensure it is still working */
2741 struct mdinfo *sd;
2742 for (sd = sra->devs ; sd ; sd = sd->next) {
2743 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2744 continue;
2745 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2746 char sbuf[20];
2747 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
2748 strstr(sbuf, "faulty") ||
2749 strstr(sbuf, "in_sync") == NULL) {
2750 /* this device is dead */
2751 sd->disk.state = (1<<MD_DISK_FAULTY);
2752 if (sd->disk.raid_disk >= 0 &&
2753 sources[sd->disk.raid_disk] >= 0) {
2754 close(sources[sd->disk.raid_disk]);
2755 sources[sd->disk.raid_disk] = -1;
2756 }
2757 }
2758 }
2759 }
2760 *degraded = new_degraded;
2761 }
2762 if (part) {
2763 bsb.arraystart2 = __cpu_to_le64(offset * odata);
2764 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
2765 } else {
2766 bsb.arraystart = __cpu_to_le64(offset * odata);
2767 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
2768 }
2769 if (part)
2770 bsb.magic[15] = '2';
2771 for (i = 0; i < dests; i++)
2772 if (part)
2773 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
2774 else
2775 lseek64(destfd[i], destoffsets[i], 0);
2776
2777 rv = save_stripes(sources, offsets,
2778 disks, chunk, level, layout,
2779 dests, destfd,
2780 offset*512*odata, stripes * chunk * odata,
2781 buf);
2782
2783 if (rv)
2784 return rv;
2785 bsb.mtime = __cpu_to_le64(time(0));
2786 for (i = 0; i < dests; i++) {
2787 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2788
2789 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2790 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2791 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2792 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2793
2794 rv = -1;
2795 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
2796 != destoffsets[i] - 4096)
2797 break;
2798 if (write(destfd[i], &bsb, 512) != 512)
2799 break;
2800 if (destoffsets[i] > 4096) {
2801 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
2802 destoffsets[i]+stripes*chunk*odata)
2803 break;
2804 if (write(destfd[i], &bsb, 512) != 512)
2805 break;
2806 }
2807 fsync(destfd[i]);
2808 rv = 0;
2809 }
2810
2811 return rv;
2812 }
2813
2814 /* in 2.6.30, the value reported by sync_completed can be
2815 * less that it should be by one stripe.
2816 * This only happens when reshape hits sync_max and pauses.
2817 * So allow wait_backup to either extent sync_max further
2818 * than strictly necessary, or return before the
2819 * sync has got quite as far as we would really like.
2820 * This is what 'blocks2' is for.
2821 * The various caller give appropriate values so that
2822 * every works.
2823 */
2824 /* FIXME return value is often ignored */
2825 static int forget_backup(
2826 int dests, int *destfd, unsigned long long *destoffsets,
2827 int part)
2828 {
2829 /*
2830 * Erase backup 'part' (which is 0 or 1)
2831 */
2832 int i;
2833 int rv;
2834
2835 if (part) {
2836 bsb.arraystart2 = __cpu_to_le64(0);
2837 bsb.length2 = __cpu_to_le64(0);
2838 } else {
2839 bsb.arraystart = __cpu_to_le64(0);
2840 bsb.length = __cpu_to_le64(0);
2841 }
2842 bsb.mtime = __cpu_to_le64(time(0));
2843 rv = 0;
2844 for (i = 0; i < dests; i++) {
2845 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2846 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2847 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2848 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2849 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2850 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
2851 destoffsets[i]-4096)
2852 rv = -1;
2853 if (rv == 0 &&
2854 write(destfd[i], &bsb, 512) != 512)
2855 rv = -1;
2856 fsync(destfd[i]);
2857 }
2858 return rv;
2859 }
2860
2861 static void fail(char *msg)
2862 {
2863 int rv;
2864 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
2865 rv |= (write(2, "\n", 1) != 1);
2866 exit(rv ? 1 : 2);
2867 }
2868
2869 static char *abuf, *bbuf;
2870 static unsigned long long abuflen;
2871 static void validate(int afd, int bfd, unsigned long long offset)
2872 {
2873 /* check that the data in the backup against the array.
2874 * This is only used for regression testing and should not
2875 * be used while the array is active
2876 */
2877 if (afd < 0)
2878 return;
2879 lseek64(bfd, offset - 4096, 0);
2880 if (read(bfd, &bsb2, 512) != 512)
2881 fail("cannot read bsb");
2882 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
2883 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
2884 fail("first csum bad");
2885 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
2886 fail("magic is bad");
2887 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
2888 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
2889 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
2890 fail("second csum bad");
2891
2892 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
2893 fail("devstart is wrong");
2894
2895 if (bsb2.length) {
2896 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
2897
2898 if (abuflen < len) {
2899 free(abuf);
2900 free(bbuf);
2901 abuflen = len;
2902 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
2903 posix_memalign((void**)&bbuf, 4096, abuflen)) {
2904 abuflen = 0;
2905 /* just stop validating on mem-alloc failure */
2906 return;
2907 }
2908 }
2909
2910 lseek64(bfd, offset, 0);
2911 if ((unsigned long long)read(bfd, bbuf, len) != len) {
2912 //printf("len %llu\n", len);
2913 fail("read first backup failed");
2914 }
2915 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
2916 if ((unsigned long long)read(afd, abuf, len) != len)
2917 fail("read first from array failed");
2918 if (memcmp(bbuf, abuf, len) != 0) {
2919 #if 0
2920 int i;
2921 printf("offset=%llu len=%llu\n",
2922 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
2923 for (i=0; i<len; i++)
2924 if (bbuf[i] != abuf[i]) {
2925 printf("first diff byte %d\n", i);
2926 break;
2927 }
2928 #endif
2929 fail("data1 compare failed");
2930 }
2931 }
2932 if (bsb2.length2) {
2933 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
2934
2935 if (abuflen < len) {
2936 free(abuf);
2937 free(bbuf);
2938 abuflen = len;
2939 abuf = malloc(abuflen);
2940 bbuf = malloc(abuflen);
2941 }
2942
2943 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
2944 if ((unsigned long long)read(bfd, bbuf, len) != len)
2945 fail("read second backup failed");
2946 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
2947 if ((unsigned long long)read(afd, abuf, len) != len)
2948 fail("read second from array failed");
2949 if (memcmp(bbuf, abuf, len) != 0)
2950 fail("data2 compare failed");
2951 }
2952 }
2953
2954 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
2955 struct supertype *st, unsigned long blocks,
2956 int *fds, unsigned long long *offsets,
2957 int dests, int *destfd, unsigned long long *destoffsets)
2958 {
2959 /* Monitor a reshape where backup is being performed using
2960 * 'native' mechanism - either to a backup file, or
2961 * to some space in a spare.
2962 */
2963 char *buf;
2964 int degraded = -1;
2965 unsigned long long speed;
2966 unsigned long long suspend_point, array_size;
2967 unsigned long long backup_point, wait_point;
2968 unsigned long long reshape_completed;
2969 int done = 0;
2970 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
2971 int part = 0; /* The next part of the backup area to fill. It may already
2972 * be full, so we need to check */
2973 int level = reshape->level;
2974 int layout = reshape->before.layout;
2975 int data = reshape->before.data_disks;
2976 int disks = reshape->before.data_disks + reshape->parity;
2977 int chunk = sra->array.chunk_size;
2978 struct mdinfo *sd;
2979 unsigned long stripes;
2980
2981 /* set up the backup-super-block. This requires the
2982 * uuid from the array.
2983 */
2984 /* Find a superblock */
2985 for (sd = sra->devs; sd; sd = sd->next) {
2986 char *dn;
2987 int devfd;
2988 int ok;
2989 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2990 continue;
2991 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
2992 devfd = dev_open(dn, O_RDONLY);
2993 if (devfd < 0)
2994 continue;
2995 ok = st->ss->load_super(st, devfd, NULL);
2996 close(devfd);
2997 if (ok == 0)
2998 break;
2999 }
3000 if (!sd) {
3001 fprintf(stderr, Name ": Cannot find a superblock\n");
3002 return 0;
3003 }
3004
3005 memset(&bsb, 0, 512);
3006 memcpy(bsb.magic, "md_backup_data-1", 16);
3007 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
3008 bsb.mtime = __cpu_to_le64(time(0));
3009 bsb.devstart2 = blocks;
3010
3011 stripes = blocks / (sra->array.chunk_size/512) /
3012 reshape->before.data_disks;
3013
3014 if (posix_memalign((void**)&buf, 4096, disks * chunk))
3015 /* Don't start the 'reshape' */
3016 return 0;
3017 if (reshape->before.data_disks == reshape->after.data_disks) {
3018 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
3019 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
3020 }
3021
3022 if (increasing) {
3023 array_size = sra->component_size * reshape->after.data_disks;
3024 backup_point = sra->reshape_progress;
3025 suspend_point = 0;
3026 } else {
3027 array_size = sra->component_size * reshape->before.data_disks;
3028 backup_point = reshape->backup_blocks;
3029 suspend_point = array_size;
3030 }
3031
3032 while (!done) {
3033 int rv;
3034
3035 /* Want to return as soon the oldest backup slot can
3036 * be released as that allows us to start backing up
3037 * some more, providing suspend_point has been
3038 * advanced, which it should have.
3039 */
3040 if (increasing) {
3041 wait_point = array_size;
3042 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
3043 wait_point = (__le64_to_cpu(bsb.arraystart) +
3044 __le64_to_cpu(bsb.length));
3045 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
3046 wait_point = (__le64_to_cpu(bsb.arraystart2) +
3047 __le64_to_cpu(bsb.length2));
3048 } else {
3049 wait_point = 0;
3050 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
3051 wait_point = __le64_to_cpu(bsb.arraystart);
3052 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
3053 wait_point = __le64_to_cpu(bsb.arraystart2);
3054 }
3055
3056 rv = progress_reshape(sra, reshape,
3057 backup_point, wait_point,
3058 &suspend_point, &reshape_completed);
3059 /* external metadata would need to ping_monitor here */
3060 sra->reshape_progress = reshape_completed;
3061
3062 /* Clear any backup region that is before 'here' */
3063 if (increasing) {
3064 if (__le64_to_cpu(bsb.length) > 0 &&
3065 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
3066 __le64_to_cpu(bsb.length)))
3067 forget_backup(dests, destfd,
3068 destoffsets, 0);
3069 if (__le64_to_cpu(bsb.length2) > 0 &&
3070 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
3071 __le64_to_cpu(bsb.length2)))
3072 forget_backup(dests, destfd,
3073 destoffsets, 1);
3074 } else {
3075 if (__le64_to_cpu(bsb.length) > 0 &&
3076 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
3077 forget_backup(dests, destfd,
3078 destoffsets, 0);
3079 if (__le64_to_cpu(bsb.length2) > 0 &&
3080 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
3081 forget_backup(dests, destfd,
3082 destoffsets, 1);
3083 }
3084
3085 if (rv < 0) {
3086 if (rv == -1)
3087 done = 1;
3088 break;
3089 }
3090 if (rv == 0 && increasing && !st->ss->external) {
3091 /* No longer need to monitor this reshape */
3092 done = 1;
3093 break;
3094 }
3095
3096 while (rv) {
3097 unsigned long long offset;
3098 unsigned long actual_stripes;
3099 /* Need to backup some data.
3100 * If 'part' is not used and the desired
3101 * backup size is suspended, do a backup,
3102 * then consider the next part.
3103 */
3104 /* Check that 'part' is unused */
3105 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
3106 break;
3107 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
3108 break;
3109
3110 offset = backup_point / data;
3111 actual_stripes = stripes;
3112 if (increasing) {
3113 if (offset + actual_stripes * (chunk/512) >
3114 sra->component_size)
3115 actual_stripes = ((sra->component_size - offset)
3116 / (chunk/512));
3117 if (offset + actual_stripes * (chunk/512) >
3118 suspend_point/data)
3119 break;
3120 } else {
3121 if (offset < actual_stripes * (chunk/512))
3122 actual_stripes = offset / (chunk/512);
3123 offset -= actual_stripes * (chunk/512);
3124 if (offset < suspend_point/data)
3125 break;
3126 }
3127 if (actual_stripes == 0)
3128 break;
3129 grow_backup(sra, offset, actual_stripes,
3130 fds, offsets,
3131 disks, chunk, level, layout,
3132 dests, destfd, destoffsets,
3133 part, &degraded, buf);
3134 validate(afd, destfd[0], destoffsets[0]);
3135 /* record where 'part' is up to */
3136 part = !part;
3137 if (increasing)
3138 backup_point += actual_stripes * (chunk/512) * data;
3139 else
3140 backup_point -= actual_stripes * (chunk/512) * data;
3141 }
3142 }
3143
3144 /* FIXME maybe call progress_reshape one more time instead */
3145 abort_reshape(sra); /* remove any remaining suspension */
3146 if (reshape->before.data_disks == reshape->after.data_disks)
3147 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
3148 free(buf);
3149 return done;
3150 }
3151
3152 /*
3153 * If any spare contains md_back_data-1 which is recent wrt mtime,
3154 * write that data into the array and update the super blocks with
3155 * the new reshape_progress
3156 */
3157 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
3158 char *backup_file, int verbose)
3159 {
3160 int i, j;
3161 int old_disks;
3162 unsigned long long *offsets;
3163 unsigned long long nstripe, ostripe;
3164 int ndata, odata;
3165
3166 odata = info->array.raid_disks - info->delta_disks - 1;
3167 if (info->array.level == 6) odata--; /* number of data disks */
3168 ndata = info->array.raid_disks - 1;
3169 if (info->new_level == 6) ndata--;
3170
3171 old_disks = info->array.raid_disks - info->delta_disks;
3172
3173 if (info->delta_disks <= 0)
3174 /* Didn't grow, so the backup file must have
3175 * been used
3176 */
3177 old_disks = cnt;
3178 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
3179 struct mdinfo dinfo;
3180 int fd;
3181 int bsbsize;
3182 char *devname, namebuf[20];
3183 unsigned long long lo, hi;
3184
3185 /* This was a spare and may have some saved data on it.
3186 * Load the superblock, find and load the
3187 * backup_super_block.
3188 * If either fail, go on to next device.
3189 * If the backup contains no new info, just return
3190 * else restore data and update all superblocks
3191 */
3192 if (i == old_disks-1) {
3193 fd = open(backup_file, O_RDONLY);
3194 if (fd<0) {
3195 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
3196 backup_file, strerror(errno));
3197 continue;
3198 }
3199 devname = backup_file;
3200 } else {
3201 fd = fdlist[i];
3202 if (fd < 0)
3203 continue;
3204 if (st->ss->load_super(st, fd, NULL))
3205 continue;
3206
3207 st->ss->getinfo_super(st, &dinfo, NULL);
3208 st->ss->free_super(st);
3209
3210 if (lseek64(fd,
3211 (dinfo.data_offset + dinfo.component_size - 8) <<9,
3212 0) < 0) {
3213 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
3214 continue; /* Cannot seek */
3215 }
3216 sprintf(namebuf, "device-%d", i);
3217 devname = namebuf;
3218 }
3219 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
3220 if (verbose)
3221 fprintf(stderr, Name ": Cannot read from %s\n", devname);
3222 continue; /* Cannot read */
3223 }
3224 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
3225 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
3226 if (verbose)
3227 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
3228 continue;
3229 }
3230 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
3231 if (verbose)
3232 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
3233 continue; /* bad checksum */
3234 }
3235 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
3236 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
3237 if (verbose)
3238 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
3239 continue; /* Bad second checksum */
3240 }
3241 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
3242 if (verbose)
3243 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
3244 continue; /* Wrong uuid */
3245 }
3246
3247 /* array utime and backup-mtime should be updated at much the same time, but it seems that
3248 * sometimes they aren't... So allow considerable flexability in matching, and allow
3249 * this test to be overridden by an environment variable.
3250 */
3251 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
3252 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
3253 if (check_env("MDADM_GROW_ALLOW_OLD")) {
3254 fprintf(stderr, Name ": accepting backup with timestamp %lu "
3255 "for array with timestamp %lu\n",
3256 (unsigned long)__le64_to_cpu(bsb.mtime),
3257 (unsigned long)info->array.utime);
3258 } else {
3259 if (verbose)
3260 fprintf(stderr, Name ": too-old timestamp on "
3261 "backup-metadata on %s\n", devname);
3262 continue; /* time stamp is too bad */
3263 }
3264 }
3265
3266 if (bsb.magic[15] == '1') {
3267 if (bsb.length == 0)
3268 continue;
3269 if (info->delta_disks >= 0) {
3270 /* reshape_progress is increasing */
3271 if (__le64_to_cpu(bsb.arraystart)
3272 + __le64_to_cpu(bsb.length)
3273 < info->reshape_progress) {
3274 nonew:
3275 if (verbose)
3276 fprintf(stderr, Name
3277 ": backup-metadata found on %s but is not needed\n", devname);
3278 continue; /* No new data here */
3279 }
3280 } else {
3281 /* reshape_progress is decreasing */
3282 if (__le64_to_cpu(bsb.arraystart) >=
3283 info->reshape_progress)
3284 goto nonew; /* No new data here */
3285 }
3286 } else {
3287 if (bsb.length == 0 && bsb.length2 == 0)
3288 continue;
3289 if (info->delta_disks >= 0) {
3290 /* reshape_progress is increasing */
3291 if ((__le64_to_cpu(bsb.arraystart)
3292 + __le64_to_cpu(bsb.length)
3293 < info->reshape_progress)
3294 &&
3295 (__le64_to_cpu(bsb.arraystart2)
3296 + __le64_to_cpu(bsb.length2)
3297 < info->reshape_progress))
3298 goto nonew; /* No new data here */
3299 } else {
3300 /* reshape_progress is decreasing */
3301 if (__le64_to_cpu(bsb.arraystart) >=
3302 info->reshape_progress &&
3303 __le64_to_cpu(bsb.arraystart2) >=
3304 info->reshape_progress)
3305 goto nonew; /* No new data here */
3306 }
3307 }
3308 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
3309 second_fail:
3310 if (verbose)
3311 fprintf(stderr, Name
3312 ": Failed to verify secondary backup-metadata block on %s\n",
3313 devname);
3314 continue; /* Cannot seek */
3315 }
3316 /* There should be a duplicate backup superblock 4k before here */
3317 if (lseek64(fd, -4096, 1) < 0 ||
3318 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
3319 goto second_fail; /* Cannot find leading superblock */
3320 if (bsb.magic[15] == '1')
3321 bsbsize = offsetof(struct mdp_backup_super, pad1);
3322 else
3323 bsbsize = offsetof(struct mdp_backup_super, pad);
3324 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
3325 goto second_fail; /* Cannot find leading superblock */
3326
3327 /* Now need the data offsets for all devices. */
3328 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
3329 for(j=0; j<info->array.raid_disks; j++) {
3330 if (fdlist[j] < 0)
3331 continue;
3332 if (st->ss->load_super(st, fdlist[j], NULL))
3333 /* FIXME should be this be an error */
3334 continue;
3335 st->ss->getinfo_super(st, &dinfo, NULL);
3336 st->ss->free_super(st);
3337 offsets[j] = dinfo.data_offset * 512;
3338 }
3339 printf(Name ": restoring critical section\n");
3340
3341 if (restore_stripes(fdlist, offsets,
3342 info->array.raid_disks,
3343 info->new_chunk,
3344 info->new_level,
3345 info->new_layout,
3346 fd, __le64_to_cpu(bsb.devstart)*512,
3347 __le64_to_cpu(bsb.arraystart)*512,
3348 __le64_to_cpu(bsb.length)*512)) {
3349 /* didn't succeed, so giveup */
3350 if (verbose)
3351 fprintf(stderr, Name ": Error restoring backup from %s\n",
3352 devname);
3353 return 1;
3354 }
3355
3356 if (bsb.magic[15] == '2' &&
3357 restore_stripes(fdlist, offsets,
3358 info->array.raid_disks,
3359 info->new_chunk,
3360 info->new_level,
3361 info->new_layout,
3362 fd, __le64_to_cpu(bsb.devstart)*512 +
3363 __le64_to_cpu(bsb.devstart2)*512,
3364 __le64_to_cpu(bsb.arraystart2)*512,
3365 __le64_to_cpu(bsb.length2)*512)) {
3366 /* didn't succeed, so giveup */
3367 if (verbose)
3368 fprintf(stderr, Name ": Error restoring second backup from %s\n",
3369 devname);
3370 return 1;
3371 }
3372
3373
3374 /* Ok, so the data is restored. Let's update those superblocks. */
3375
3376 lo = hi = 0;
3377 if (bsb.length) {
3378 lo = __le64_to_cpu(bsb.arraystart);
3379 hi = lo + __le64_to_cpu(bsb.length);
3380 }
3381 if (bsb.magic[15] == '2' && bsb.length2) {
3382 unsigned long long lo1, hi1;
3383 lo1 = __le64_to_cpu(bsb.arraystart2);
3384 hi1 = lo1 + __le64_to_cpu(bsb.length2);
3385 if (lo == hi) {
3386 lo = lo1;
3387 hi = hi1;
3388 } else if (lo < lo1)
3389 hi = hi1;
3390 else
3391 lo = lo1;
3392 }
3393 if (lo < hi &&
3394 (info->reshape_progress < lo ||
3395 info->reshape_progress > hi))
3396 /* backup does not affect reshape_progress*/ ;
3397 else if (info->delta_disks >= 0) {
3398 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
3399 __le64_to_cpu(bsb.length);
3400 if (bsb.magic[15] == '2') {
3401 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
3402 __le64_to_cpu(bsb.length2);
3403 if (p2 > info->reshape_progress)
3404 info->reshape_progress = p2;
3405 }
3406 } else {
3407 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
3408 if (bsb.magic[15] == '2') {
3409 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
3410 if (p2 < info->reshape_progress)
3411 info->reshape_progress = p2;
3412 }
3413 }
3414 for (j=0; j<info->array.raid_disks; j++) {
3415 if (fdlist[j] < 0) continue;
3416 if (st->ss->load_super(st, fdlist[j], NULL))
3417 continue;
3418 st->ss->getinfo_super(st, &dinfo, NULL);
3419 dinfo.reshape_progress = info->reshape_progress;
3420 st->ss->update_super(st, &dinfo,
3421 "_reshape_progress",
3422 NULL,0, 0, NULL);
3423 st->ss->store_super(st, fdlist[j]);
3424 st->ss->free_super(st);
3425 }
3426 return 0;
3427 }
3428 /* Didn't find any backup data, try to see if any
3429 * was needed.
3430 */
3431 if (info->delta_disks < 0) {
3432 /* When shrinking, the critical section is at the end.
3433 * So see if we are before the critical section.
3434 */
3435 unsigned long long first_block;
3436 nstripe = ostripe = 0;
3437 first_block = 0;
3438 while (ostripe >= nstripe) {
3439 ostripe += info->array.chunk_size / 512;
3440 first_block = ostripe * odata;
3441 nstripe = first_block / ndata / (info->new_chunk/512) *
3442 (info->new_chunk/512);
3443 }
3444
3445 if (info->reshape_progress >= first_block)
3446 return 0;
3447 }
3448 if (info->delta_disks > 0) {
3449 /* See if we are beyond the critical section. */
3450 unsigned long long last_block;
3451 nstripe = ostripe = 0;
3452 last_block = 0;
3453 while (nstripe >= ostripe) {
3454 nstripe += info->new_chunk / 512;
3455 last_block = nstripe * ndata;
3456 ostripe = last_block / odata / (info->array.chunk_size/512) *
3457 (info->array.chunk_size/512);
3458 }
3459
3460 if (info->reshape_progress >= last_block)
3461 return 0;
3462 }
3463 /* needed to recover critical section! */
3464 if (verbose)
3465 fprintf(stderr, Name ": Failed to find backup of critical section\n");
3466 return 1;
3467 }
3468
3469 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
3470 char *backup_file)
3471 {
3472 char buf[40];
3473 char *container = NULL;
3474 int err;
3475
3476 err = sysfs_set_str(info, NULL, "array_state", "readonly");
3477 if (err)
3478 return err;
3479 if (st->ss->external) {
3480 fmt_devname(buf, st->container_dev);
3481 container = buf;
3482 freeze(st);
3483
3484 if (!mdmon_running(st->container_dev))
3485 start_mdmon(st->container_dev);
3486 ping_monitor_by_id(st->container_dev);
3487
3488
3489 if (info->reshape_active == 2) {
3490 int cfd = open_dev(st->container_dev);
3491 if (cfd < 0)
3492 return 1;
3493 st->ss->load_container(st, cfd, container);
3494 close(cfd);
3495 return reshape_container(container, NULL,
3496 st, info, 0, backup_file,
3497 0, 1);
3498 }
3499 }
3500 return reshape_array(container, mdfd, "array", st, info, 1,
3501 NULL, backup_file, 0, 0, 1);
3502 }