]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
Fix up analysis of reshape from RAID1 to RAID5.
[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 char *backup_file, char *dev, int verbose)
569 {
570 /* nothing extra to check in the native case */
571 if (!st->ss->external)
572 return 0;
573 if (!st->ss->reshape_super ||
574 !st->ss->manage_reshape) {
575 fprintf(stderr, Name ": %s metadata does not support reshape\n",
576 st->ss->name);
577 return 1;
578 }
579
580 return st->ss->reshape_super(st, size, level, layout, chunksize,
581 raid_disks, backup_file, dev, verbose);
582 }
583
584 static void sync_metadata(struct supertype *st)
585 {
586 if (st->ss->external) {
587 if (st->update_tail) {
588 flush_metadata_updates(st);
589 st->update_tail = &st->updates;
590 } else
591 st->ss->sync_metadata(st);
592 }
593 }
594
595 static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
596 {
597 /* when dealing with external metadata subarrays we need to be
598 * prepared to handle EAGAIN. The kernel may need to wait for
599 * mdmon to mark the array active so the kernel can handle
600 * allocations/writeback when preparing the reshape action
601 * (md_allow_write()). We temporarily disable safe_mode_delay
602 * to close a race with the array_state going clean before the
603 * next write to raid_disks / stripe_cache_size
604 */
605 char safe[50];
606 int rc;
607
608 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
609 if (!container ||
610 (strcmp(name, "raid_disks") != 0 &&
611 strcmp(name, "stripe_cache_size") != 0))
612 return sysfs_set_num(sra, NULL, name, n);
613
614 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
615 if (rc <= 0)
616 return -1;
617 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
618 rc = sysfs_set_num(sra, NULL, name, n);
619 if (rc < 0 && errno == EAGAIN) {
620 ping_monitor(container);
621 /* if we get EAGAIN here then the monitor is not active
622 * so stop trying
623 */
624 rc = sysfs_set_num(sra, NULL, name, n);
625 }
626 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
627 return rc;
628 }
629
630 int start_reshape(struct mdinfo *sra)
631 {
632 int err;
633 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
634 err = sysfs_set_num(sra, NULL, "suspend_hi", 0);
635 err = err ?: sysfs_set_num(sra, NULL, "suspend_lo", 0);
636 /* Setting sync_min can fail if the recovery is already 'running',
637 * which can happen when restarting an array which is reshaping.
638 * So don't worry about errors here */
639 sysfs_set_num(sra, NULL, "sync_min", 0);
640 err = err ?: sysfs_set_num(sra, NULL, "sync_max", 0);
641 err = err ?: sysfs_set_str(sra, NULL, "sync_action", "reshape");
642
643 return err;
644 }
645
646 void abort_reshape(struct mdinfo *sra)
647 {
648 sysfs_set_str(sra, NULL, "sync_action", "idle");
649 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
650 sysfs_set_num(sra, NULL, "suspend_hi", 0);
651 sysfs_set_num(sra, NULL, "suspend_lo", 0);
652 sysfs_set_num(sra, NULL, "sync_min", 0);
653 sysfs_set_str(sra, NULL, "sync_max", "max");
654 }
655
656 int remove_disks_on_raid10_to_raid0_takeover(struct supertype *st,
657 struct mdinfo *sra,
658 int layout)
659 {
660 int nr_of_copies;
661 struct mdinfo *remaining;
662 int slot;
663
664 nr_of_copies = layout & 0xff;
665
666 remaining = sra->devs;
667 sra->devs = NULL;
668 /* for each 'copy', select one device and remove from the list. */
669 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
670 struct mdinfo **diskp;
671 int found = 0;
672
673 /* Find a working device to keep */
674 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
675 struct mdinfo *disk = *diskp;
676
677 if (disk->disk.raid_disk < slot)
678 continue;
679 if (disk->disk.raid_disk >= slot + nr_of_copies)
680 continue;
681 if (disk->disk.state & (1<<MD_DISK_REMOVED))
682 continue;
683 if (disk->disk.state & (1<<MD_DISK_FAULTY))
684 continue;
685 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
686 continue;
687
688 /* We have found a good disk to use! */
689 *diskp = disk->next;
690 disk->next = sra->devs;
691 sra->devs = disk;
692 found = 1;
693 break;
694 }
695 if (!found)
696 break;
697 }
698
699 if (slot < sra->array.raid_disks) {
700 /* didn't find all slots */
701 struct mdinfo **e;
702 e = &remaining;
703 while (*e)
704 e = &(*e)->next;
705 *e = sra->devs;
706 sra->devs = remaining;
707 return 1;
708 }
709
710 /* Remove all 'remaining' devices from the array */
711 while (remaining) {
712 struct mdinfo *sd = remaining;
713 remaining = sd->next;
714
715 sysfs_set_str(sra, sd, "state", "faulty");
716 sysfs_set_str(sra, sd, "slot", "none");
717 sysfs_set_str(sra, sd, "state", "remove");
718 sd->disk.state |= (1<<MD_DISK_REMOVED);
719 sd->disk.state &= ~(1<<MD_DISK_SYNC);
720 sd->next = sra->devs;
721 sra->devs = sd;
722 }
723 return 0;
724 }
725
726 void reshape_free_fdlist(int *fdlist,
727 unsigned long long *offsets,
728 int size)
729 {
730 int i;
731
732 for (i = 0; i < size; i++)
733 if (fdlist[i] >= 0)
734 close(fdlist[i]);
735
736 free(fdlist);
737 free(offsets);
738 }
739
740 int reshape_prepare_fdlist(char *devname,
741 struct mdinfo *sra,
742 int raid_disks,
743 int nrdisks,
744 unsigned long blocks,
745 char *backup_file,
746 int *fdlist,
747 unsigned long long *offsets)
748 {
749 int d = 0;
750 struct mdinfo *sd;
751
752 for (d = 0; d <= nrdisks; d++)
753 fdlist[d] = -1;
754 d = raid_disks;
755 for (sd = sra->devs; sd; sd = sd->next) {
756 if (sd->disk.state & (1<<MD_DISK_FAULTY))
757 continue;
758 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
759 char *dn = map_dev(sd->disk.major,
760 sd->disk.minor, 1);
761 fdlist[sd->disk.raid_disk]
762 = dev_open(dn, O_RDONLY);
763 offsets[sd->disk.raid_disk] = sd->data_offset*512;
764 if (fdlist[sd->disk.raid_disk] < 0) {
765 fprintf(stderr,
766 Name ": %s: cannot open component %s\n",
767 devname, dn ? dn : "-unknown-");
768 d = -1;
769 goto release;
770 }
771 } else if (backup_file == NULL) {
772 /* spare */
773 char *dn = map_dev(sd->disk.major,
774 sd->disk.minor, 1);
775 fdlist[d] = dev_open(dn, O_RDWR);
776 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
777 if (fdlist[d] < 0) {
778 fprintf(stderr, Name ": %s: cannot open component %s\n",
779 devname, dn ? dn : "-unknown-");
780 d = -1;
781 goto release;
782 }
783 d++;
784 }
785 }
786 release:
787 return d;
788 }
789
790 int reshape_open_backup_file(char *backup_file,
791 int fd,
792 char *devname,
793 long blocks,
794 int *fdlist,
795 unsigned long long *offsets,
796 int restart)
797 {
798 /* Return 1 on success, 0 on any form of failure */
799 /* need to check backup file is large enough */
800 char buf[512];
801 struct stat stb;
802 unsigned int dev;
803 int i;
804
805 *fdlist = open(backup_file, O_RDWR|O_CREAT|(restart ? O_TRUNC : O_EXCL),
806 S_IRUSR | S_IWUSR);
807 *offsets = 8 * 512;
808 if (*fdlist < 0) {
809 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
810 devname, backup_file, strerror(errno));
811 return 0;
812 }
813 /* Guard against backup file being on array device.
814 * If array is partitioned or if LVM etc is in the
815 * way this will not notice, but it is better than
816 * nothing.
817 */
818 fstat(*fdlist, &stb);
819 dev = stb.st_dev;
820 fstat(fd, &stb);
821 if (stb.st_rdev == dev) {
822 fprintf(stderr, Name ": backup file must NOT be"
823 " on the array being reshaped.\n");
824 close(*fdlist);
825 return 0;
826 }
827
828 memset(buf, 0, 512);
829 for (i=0; i < blocks + 1 ; i++) {
830 if (write(*fdlist, buf, 512) != 512) {
831 fprintf(stderr, Name ": %s: cannot create"
832 " backup file %s: %s\n",
833 devname, backup_file, strerror(errno));
834 return 0;
835 }
836 }
837 if (fsync(*fdlist) != 0) {
838 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
839 devname, backup_file, strerror(errno));
840 return 0;
841 }
842
843 return 1;
844 }
845
846 unsigned long compute_backup_blocks(int nchunk, int ochunk,
847 unsigned int ndata, unsigned int odata)
848 {
849 unsigned long a, b, blocks;
850 /* So how much do we need to backup.
851 * We need an amount of data which is both a whole number of
852 * old stripes and a whole number of new stripes.
853 * So LCM for (chunksize*datadisks).
854 */
855 a = (ochunk/512) * odata;
856 b = (nchunk/512) * ndata;
857 /* Find GCD */
858 while (a != b) {
859 if (a < b)
860 b -= a;
861 if (b < a)
862 a -= b;
863 }
864 /* LCM == product / GCD */
865 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
866
867 return blocks;
868 }
869
870 char *analyse_change(struct mdinfo *info, struct reshape *re)
871 {
872 /* Based on the current array state in info->array and
873 * the changes in info->new_* etc, determine:
874 * - whether the change is possible
875 * - Intermediate level/raid_disks/layout
876 * - whether a restriping reshape is needed
877 * - number of sectors in minimum change unit. This
878 * will cover a whole number of stripes in 'before' and
879 * 'after'.
880 *
881 * Return message if the change should be rejected
882 * NULL if the change can be achieved
883 *
884 * This can be called as part of starting a reshape, or
885 * when assembling an array that is undergoing reshape.
886 */
887 int new_disks;
888
889 /* If a new level not explicitly given, we assume no-change */
890 if (info->new_level == UnSet)
891 info->new_level = info->array.level;
892
893 if (info->new_chunk)
894 switch (info->new_level) {
895 case 0:
896 case 4:
897 case 5:
898 case 6:
899 case 10:
900 /* chunk size is meaningful, must divide component_size
901 * evenly
902 */
903 if (info->component_size % (info->new_chunk/512))
904 return "New chunk size does not"
905 " divide component size";
906 break;
907 default:
908 return "chunk size not meaningful for this level";
909 }
910 else
911 info->new_chunk = info->array.chunk_size;
912
913 switch (info->array.level) {
914 case 1:
915 /* RAID1 can convert to RAID1 with different disks, or
916 * raid5 with 2 disks
917 */
918 if (info->new_level == 1) {
919 if (info->delta_disks == UnSet)
920 /* Don't know what to do */
921 return "no change requested for Growing RAID1";
922 re->level = 1;
923 re->before.data_disks = (info->array.raid_disks +
924 info->delta_disks);
925 re->before.layout = 0;
926 re->backup_blocks = 0;
927 re->parity = 0;
928 return NULL;
929 }
930 if (info->array.raid_disks == 2 &&
931 info->new_level == 5) {
932 re->level = 5;
933 re->before.data_disks = 1;
934 re->before.layout = ALGORITHM_LEFT_SYMMETRIC;
935 info->array.chunk_size = 65536;
936 break;
937 }
938 /* Could do some multi-stage conversions, but leave that to
939 * later.
940 */
941 return "Impossibly level change request for RAID1";
942
943 case 10:
944 /* RAID10 can only be converted from near mode to
945 * RAID0 by removing some devices
946 */
947 if ((info->array.layout & ~0xff) != 0x100)
948 return "Cannot Grow RAID10 with far/offset layout";
949 /* number of devices must be multiple of number of copies */
950 if (info->array.raid_disks % (info->array.layout & 0xff))
951 return "RAID10 layout too complex for Grow operation";
952
953 if (info->new_level != 0)
954 return "RAID10 can only be changed to RAID0";
955 new_disks = (info->array.raid_disks
956 / (info->array.layout & 0xff));
957 if (info->delta_disks == UnSet) {
958 info->delta_disks = (new_disks
959 - info->array.raid_disks);
960 }
961 if (info->delta_disks != new_disks - info->array.raid_disks)
962 return "New number of raid-devices impossible for RAID10";
963 if (info->new_chunk &&
964 info->new_chunk != info->array.chunk_size)
965 return "Cannot change chunk-size with RAID10 Grow";
966
967 /* looks good */
968 re->level = 0;
969 re->parity = 0;
970 re->before.data_disks = new_disks;
971 re->after.data_disks = re->before.data_disks;
972 re->before.layout = 0;
973 re->backup_blocks = 0;
974 return NULL;
975
976 case 0:
977 /* RAID0 can be converted to RAID10, or to RAID456 */
978 if (info->new_level == 10) {
979 if (info->new_layout == UnSet && info->delta_disks == UnSet) {
980 /* Assume near=2 layout */
981 info->new_layout = 0x102;
982 info->delta_disks = info->array.raid_disks;
983 }
984 if (info->new_layout == UnSet) {
985 int copies = 1 + (info->delta_disks
986 / info->array.raid_disks);
987 if (info->array.raid_disks * (copies-1)
988 != info->delta_disks)
989 return "Impossible number of devices"
990 " for RAID0->RAID10";
991 info->new_layout = 0x100 + copies;
992 }
993 if (info->delta_disks == UnSet) {
994 int copies = info->new_layout & 0xff;
995 if (info->new_layout != 0x100 + copies)
996 return "New layout impossible"
997 " for RAID0->RAID10";;
998 info->delta_disks = (copies - 1) *
999 info->array.raid_disks;
1000 }
1001 if (info->new_chunk &&
1002 info->new_chunk != info->array.chunk_size)
1003 return "Cannot change chunk-size with RAID0->RAID10";
1004 /* looks good */
1005 re->level = 10;
1006 re->parity = 0;
1007 re->before.data_disks = (info->array.raid_disks +
1008 info->delta_disks);
1009 re->after.data_disks = re->before.data_disks;
1010 re->before.layout = info->new_layout;
1011 re->backup_blocks = 0;
1012 return NULL;
1013 }
1014
1015 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1016 * a raid4 style layout of the final level.
1017 */
1018 switch (info->new_level) {
1019 case 0:
1020 case 4:
1021 re->level = 4;
1022 re->before.layout = 0;
1023 break;
1024 case 5:
1025 re->level = 5;
1026 re->before.layout = ALGORITHM_PARITY_N;
1027 break;
1028 case 6:
1029 re->level = 6;
1030 re->before.layout = ALGORITHM_PARITY_N;
1031 break;
1032 default:
1033 return "Impossible level change requested";
1034 }
1035 re->before.data_disks = info->array.raid_disks;
1036 /* determining 'after' layout happens outside this 'switch' */
1037 break;
1038
1039 case 4:
1040 info->array.layout = ALGORITHM_PARITY_N;
1041 case 5:
1042 switch (info->new_level) {
1043 case 4:
1044 re->level = info->array.level;
1045 re->before.data_disks = info->array.raid_disks - 1;
1046 re->before.layout = info->array.layout;
1047 break;
1048 case 5:
1049 re->level = 5;
1050 re->before.data_disks = info->array.raid_disks - 1;
1051 re->before.layout = info->array.layout;
1052 break;
1053 case 6:
1054 re->level = 6;
1055 re->before.data_disks = info->array.raid_disks - 1;
1056 switch (info->array.layout) {
1057 case ALGORITHM_LEFT_ASYMMETRIC:
1058 re->before.layout = ALGORITHM_LEFT_ASYMMETRIC_6;
1059 break;
1060 case ALGORITHM_RIGHT_ASYMMETRIC:
1061 re->before.layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
1062 break;
1063 case ALGORITHM_LEFT_SYMMETRIC:
1064 re->before.layout = ALGORITHM_LEFT_SYMMETRIC_6;
1065 break;
1066 case ALGORITHM_RIGHT_SYMMETRIC:
1067 re->before.layout = ALGORITHM_RIGHT_SYMMETRIC_6;
1068 break;
1069 case ALGORITHM_PARITY_0:
1070 re->before.layout = ALGORITHM_PARITY_0_6;
1071 break;
1072 case ALGORITHM_PARITY_N:
1073 re->before.layout = ALGORITHM_PARITY_N_6;
1074 break;
1075 default:
1076 return "Cannot convert an array with this layout";
1077 }
1078 break;
1079 case 1:
1080 if (info->array.raid_disks != 2)
1081 return "Can only convert a 2-device array to RAID1";
1082 re->level = 1;
1083 re->before.data_disks = 2;
1084 re->before.layout = 0;
1085 break;
1086 default:
1087 return "Impossible level change requested";
1088 }
1089 break;
1090 case 6:
1091 switch (info->new_level) {
1092 case 4:
1093 case 5:
1094 case 6:
1095 re->level = 6;
1096 re->before.data_disks = info->array.raid_disks - 2;
1097 re->before.layout = info->array.layout;
1098 break;
1099 default:
1100 return "Impossible level change requested";
1101 }
1102 break;
1103 }
1104
1105 /* If we reached here then it looks like a re-stripe is
1106 * happening. We have determined the intermediate level
1107 * and initial raid_disks/layout and stored these in 're'.
1108 *
1109 * We need to deduce the final layout that can be atomically
1110 * converted to the end state.
1111 */
1112 switch (info->new_level) {
1113 case 0:
1114 /* We can only get to RAID0 from RAID4 or RAID5
1115 * with appropriate layout and one extra device
1116 */
1117 if (re->level != 4 && re->level != 5)
1118 return "Cannot covert to RAID0 from this level";
1119 if (info->delta_disks == UnSet)
1120 re->after.data_disks = re->before.data_disks;
1121 else
1122 re->after.data_disks =
1123 info->array.raid_disks + info->delta_disks;
1124 switch (re->level) {
1125 case 4:
1126 re->after.layout = 0 ; break;
1127 case 5:
1128 re->after.layout = ALGORITHM_PARITY_N; break;
1129 }
1130 break;
1131
1132 case 4:
1133 /* We can only get to RAID4 from RAID5 */
1134 if (re->level != 4 && re->level != 5)
1135 return "Cannot convert to RAID4 from this level";
1136 if (info->delta_disks == UnSet)
1137 re->after.data_disks = re->before.data_disks;
1138 else
1139 re->after.data_disks =
1140 re->before.data_disks + info->delta_disks;
1141 switch (re->level) {
1142 case 4:
1143 re->after.layout = 0 ; break;
1144 case 5:
1145 re->after.layout = ALGORITHM_PARITY_N; break;
1146 }
1147 break;
1148
1149 case 5:
1150 /* We get to RAID5 for RAID5 or RAID6 */
1151 if (re->level != 5 && re->level != 6)
1152 return "Cannot convert to RAID5 from this level";
1153 if (info->delta_disks == UnSet)
1154 re->after.data_disks = re->before.data_disks;
1155 else if (re->level == 5)
1156 re->after.data_disks =
1157 re->before.data_disks + info->delta_disks;
1158 else
1159 re->after.data_disks =
1160 info->array.raid_disks + info->delta_disks - 1;
1161 switch (re->level) {
1162 case 5:
1163 if (info->new_layout == UnSet)
1164 re->after.layout = re->before.layout;
1165 else
1166 re->after.layout = info->new_layout;
1167 break;
1168 case 6:
1169 if (info->new_layout == UnSet)
1170 info->new_layout = re->before.layout;
1171
1172 /* after.layout needs to be raid6 version of new_layout */
1173 if (info->new_layout == ALGORITHM_PARITY_N)
1174 re->after.layout = ALGORITHM_PARITY_N;
1175 else {
1176 char layout[40];
1177 char *ls = map_num(r5layout, info->new_layout);
1178 int l;
1179 strcat(strcpy(layout, ls), "-6");
1180 l = map_name(r6layout, layout);
1181 if (l == UnSet)
1182 return "Cannot find RAID6 layout"
1183 " to convert to";
1184 re->after.layout = l;
1185 }
1186 }
1187 break;
1188
1189 case 6:
1190 /* We must already be at level 6 */
1191 if (re->level != 6)
1192 return "Impossible level change";
1193 if (info->delta_disks == UnSet)
1194 re->after.data_disks = re->before.data_disks;
1195 else
1196 re->after.data_disks = (info->array.raid_disks +
1197 info->delta_disks) - 2;
1198 if (info->new_layout == UnSet)
1199 re->after.layout = info->array.layout;
1200 else
1201 re->after.layout = info->new_layout;
1202 break;
1203 default:
1204 return "Impossible level change requested";
1205 }
1206 switch (re->level) {
1207 case 6: re->parity = 2; break;
1208 case 4:
1209 case 5: re->parity = 1; break;
1210 default: re->parity = 0; break;
1211 }
1212 /* So we have a restripe operation, we need to calculate the number
1213 * of blocks per reshape operation.
1214 */
1215 if (info->new_chunk == 0)
1216 info->new_chunk = info->array.chunk_size;
1217 if (re->after.data_disks == re->before.data_disks &&
1218 re->after.layout == re->before.layout &&
1219 info->new_chunk == info->array.chunk_size) {
1220 /* Nothing to change */
1221 re->backup_blocks = 0;
1222 return NULL;
1223 }
1224 if (re->after.data_disks == 1 && re->before.data_disks == 1) {
1225 /* chunk and layout changes make no difference */
1226 re->backup_blocks = 0;
1227 return NULL;
1228 }
1229
1230 if (re->after.data_disks == re->before.data_disks &&
1231 get_linux_version() < 2006032)
1232 return "in-place reshape is not safe before 2.6.32 - sorry.";
1233
1234 if (re->after.data_disks < re->before.data_disks &&
1235 get_linux_version() < 2006030)
1236 return "reshape to fewer devices is not supported before 2.6.32 - sorry.";
1237
1238 re->backup_blocks = compute_backup_blocks(
1239 info->new_chunk, info->array.chunk_size,
1240 re->after.data_disks,
1241 re->before.data_disks);
1242
1243 re->new_size = info->component_size * re->after.data_disks;
1244 return NULL;
1245 }
1246
1247 static int reshape_array(char *container, int fd, char *devname,
1248 struct supertype *st, struct mdinfo *info,
1249 int force, char *backup_file, int quiet, int forked,
1250 int restart);
1251 static int reshape_container(char *container, int cfd, char *devname,
1252 struct supertype *st,
1253 struct mdinfo *info,
1254 int force,
1255 char *backup_file,
1256 int quiet);
1257
1258 int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
1259 long long size,
1260 int level, char *layout_str, int chunksize, int raid_disks,
1261 int force)
1262 {
1263 /* Make some changes in the shape of an array.
1264 * The kernel must support the change.
1265 *
1266 * There are three different changes. Each can trigger
1267 * a resync or recovery so we freeze that until we have
1268 * requested everything (if kernel supports freezing - 2.6.30).
1269 * The steps are:
1270 * - change size (i.e. component_size)
1271 * - change level
1272 * - change layout/chunksize/ndisks
1273 *
1274 * The last can require a reshape. It is different on different
1275 * levels so we need to check the level before actioning it.
1276 * Some times the level change needs to be requested after the
1277 * reshape (e.g. raid6->raid5, raid5->raid0)
1278 *
1279 */
1280 struct mdu_array_info_s array;
1281 int rv = 0;
1282 struct supertype *st;
1283 char *subarray = NULL;
1284
1285 int frozen;
1286 int changed = 0;
1287 char *container = NULL;
1288 char container_buf[20];
1289 int cfd = -1;
1290
1291 struct mdinfo info;
1292 struct mdinfo *sra;
1293
1294 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1295 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
1296 devname);
1297 return 1;
1298 }
1299
1300 if (size >= 0 &&
1301 (chunksize || level!= UnSet || layout_str || raid_disks)) {
1302 fprintf(stderr, Name ": cannot change component size at the same time "
1303 "as other changes.\n"
1304 " Change size first, then check data is intact before "
1305 "making other changes.\n");
1306 return 1;
1307 }
1308
1309 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
1310 get_linux_version() < 2006032 &&
1311 !check_env("MDADM_FORCE_FEWER")) {
1312 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
1313 " Please use a newer kernel\n");
1314 return 1;
1315 }
1316
1317 st = super_by_fd(fd, &subarray);
1318 if (!st) {
1319 fprintf(stderr, Name ": Unable to determine metadata format for %s\n", devname);
1320 return 1;
1321 }
1322 if (raid_disks > st->max_devs) {
1323 fprintf(stderr, Name ": Cannot increase raid-disks on this array"
1324 " beyond %d\n", st->max_devs);
1325 return 1;
1326 }
1327
1328 /* in the external case we need to check that the requested reshape is
1329 * supported, and perform an initial check that the container holds the
1330 * pre-requisite spare devices (mdmon owns final validation)
1331 */
1332 if (st->ss->external) {
1333 int container_dev;
1334 int rv;
1335
1336 if (subarray) {
1337 container_dev = st->container_dev;
1338 cfd = open_dev_excl(st->container_dev);
1339 } else {
1340 container_dev = st->devnum;
1341 close(fd);
1342 cfd = open_dev_excl(st->devnum);
1343 fd = cfd;
1344 }
1345 if (cfd < 0) {
1346 fprintf(stderr, Name ": Unable to open container for %s\n",
1347 devname);
1348 free(subarray);
1349 return 1;
1350 }
1351
1352 fmt_devname(container_buf, container_dev);
1353 container = container_buf;
1354
1355 rv = st->ss->load_container(st, cfd, NULL);
1356
1357 if (rv) {
1358 fprintf(stderr, Name ": Cannot read superblock for %s\n",
1359 devname);
1360 free(subarray);
1361 return 1;
1362 }
1363
1364 if (mdmon_running(container_dev))
1365 st->update_tail = &st->updates;
1366 }
1367
1368 if (raid_disks > array.raid_disks &&
1369 array.spare_disks < (raid_disks - array.raid_disks) &&
1370 !force) {
1371 fprintf(stderr,
1372 Name ": Need %d spare%s to avoid degraded array,"
1373 " and only have %d.\n"
1374 " Use --force to over-ride this check.\n",
1375 raid_disks - array.raid_disks,
1376 raid_disks - array.raid_disks == 1 ? "" : "s",
1377 array.spare_disks);
1378 return 1;
1379 }
1380
1381 sra = sysfs_read(fd, 0, GET_LEVEL | GET_DISKS | GET_DEVS
1382 | GET_STATE | GET_VERSION);
1383 if (sra) {
1384 if (st->ss->external && subarray == NULL) {
1385 array.level = LEVEL_CONTAINER;
1386 sra->array.level = LEVEL_CONTAINER;
1387 }
1388 } else {
1389 fprintf(stderr, Name ": failed to read sysfs parameters for %s\n",
1390 devname);
1391 return 1;
1392 }
1393 frozen = freeze(st);
1394 if (frozen < -1) {
1395 /* freeze() already spewed the reason */
1396 return 1;
1397 } else if (frozen < 0) {
1398 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
1399 " be reshaped\n", devname);
1400 return 1;
1401 }
1402
1403 /* ========= set size =============== */
1404 if (size >= 0 && (size == 0 || size != array.size)) {
1405 long long orig_size = array.size;
1406
1407 if (reshape_super(st, size, UnSet, UnSet, 0, 0, NULL, devname, !quiet)) {
1408 rv = 1;
1409 goto release;
1410 }
1411 sync_metadata(st);
1412 array.size = size;
1413 if (array.size != size) {
1414 /* got truncated to 32bit, write to
1415 * component_size instead
1416 */
1417 if (sra)
1418 rv = sysfs_set_num(sra, NULL,
1419 "component_size", size);
1420 else
1421 rv = -1;
1422 } else
1423 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1424 if (rv != 0) {
1425 int err = errno;
1426
1427 /* restore metadata */
1428 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
1429 NULL, devname, !quiet) == 0)
1430 sync_metadata(st);
1431 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
1432 devname, strerror(err));
1433 if (err == EBUSY &&
1434 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1435 fprintf(stderr, " Bitmap must be removed before size can be changed\n");
1436 rv = 1;
1437 goto release;
1438 }
1439 ioctl(fd, GET_ARRAY_INFO, &array);
1440 size = get_component_size(fd)/2;
1441 if (size == 0)
1442 size = array.size;
1443 if (!quiet)
1444 fprintf(stderr, Name ": component size of %s has been set to %lluK\n",
1445 devname, size);
1446 changed = 1;
1447 } else if (array.level != LEVEL_CONTAINER) {
1448 size = get_component_size(fd)/2;
1449 if (size == 0)
1450 size = array.size;
1451 }
1452
1453 /* ========= check for Raid10 -> Raid0 conversion ===============
1454 * current implementation assumes that following conditions must be met:
1455 * - far_copies == 1
1456 * - near_copies == 2
1457 */
1458 if (level == 0 && array.level == 10 && sra &&
1459 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) {
1460 int err;
1461 err = remove_disks_on_raid10_to_raid0_takeover(st, sra, array.layout);
1462 if (err) {
1463 dprintf(Name": Array cannot be reshaped\n");
1464 if (cfd > -1)
1465 close(cfd);
1466 rv = 1;
1467 goto release;
1468 }
1469 }
1470
1471 info.array = array;
1472 sysfs_init(&info, fd, NoMdDev);
1473 strcpy(info.text_version, sra->text_version);
1474 info.component_size = size*2;
1475 info.new_level = level;
1476 info.new_chunk = chunksize * 1024;
1477 if (raid_disks)
1478 info.delta_disks = raid_disks - info.array.raid_disks;
1479 else
1480 info.delta_disks = UnSet;
1481 if (layout_str == NULL) {
1482 info.new_layout = UnSet;
1483 if (info.array.level == 6 &&
1484 (info.new_level == 6 || info.new_level == UnSet) &&
1485 info.array.layout >= 16) {
1486 fprintf(stderr, Name
1487 ": %s has a non-standard layout. If you"
1488 " wish to preserve this\n"
1489 " during the reshape, please specify"
1490 " --layout=preserve\n"
1491 " If you want to change it, specify a"
1492 " layout or use --layout=normalise\n",
1493 devname);
1494 rv = 1;
1495 goto release;
1496 }
1497 } else if (strcmp(layout_str, "normalise") == 0 ||
1498 strcmp(layout_str, "normalize") == 0) {
1499 /* If we have a -6 RAID6 layout, remove the '-6'. */
1500 info.new_layout = UnSet;
1501 if (info.array.level == 6 && info.new_level == UnSet) {
1502 char l[40], *h;
1503 strcpy(l, map_num(r6layout, info.array.layout));
1504 h = strrchr(l, '-');
1505 if (h && strcmp(h, "-6") == 0) {
1506 *h = 0;
1507 info.new_layout = map_name(r6layout, l);
1508 }
1509 }
1510 } else if (strcmp(layout_str, "preserve") == 0) {
1511 info.new_layout = UnSet;
1512 } else {
1513 int l = info.new_level;
1514 if (l == UnSet)
1515 l = info.array.level;
1516 switch (l) {
1517 case 5:
1518 info.new_layout = map_name(r5layout, layout_str);
1519 break;
1520 case 6:
1521 info.new_layout = map_name(r6layout, layout_str);
1522 break;
1523 case 10:
1524 info.new_layout = parse_layout_10(layout_str);
1525 break;
1526 case LEVEL_FAULTY:
1527 info.new_layout = parse_layout_faulty(layout_str);
1528 break;
1529 default:
1530 fprintf(stderr, Name ": layout not meaningful"
1531 " with this level\n");
1532 rv = 1;
1533 goto release;
1534 }
1535 if (info.new_layout == UnSet) {
1536 fprintf(stderr, Name ": layout %s not understood"
1537 " for this level\n",
1538 layout_str);
1539 rv = 1;
1540 goto release;
1541 }
1542 }
1543
1544 if (array.level == LEVEL_CONTAINER) {
1545 /* This change is to be applied to every array in the
1546 * container. This is only needed when the metadata imposes
1547 * restraints of the various arrays in the container.
1548 * Currently we only know that IMSM requires all arrays
1549 * to have the same number of devices so changing the
1550 * number of devices (On-Line Capacity Expansion) must be
1551 * performed at the level of the container
1552 */
1553 rv = reshape_container(container, fd, devname, st, &info,
1554 force, backup_file, quiet);
1555 frozen = 0;
1556 } else {
1557 /* Impose these changes on a single array. First
1558 * check that the metadata is OK with the change. */
1559
1560 if (reshape_super(st, info.component_size, info.new_level,
1561 info.new_layout, info.new_chunk,
1562 info.array.raid_disks + info.delta_disks,
1563 backup_file, devname, quiet)) {
1564 rv = 1;
1565 goto release;
1566 }
1567 sync_metadata(st);
1568 rv = reshape_array(container, fd, devname, st, &info, force,
1569 backup_file, quiet, 0, 0);
1570 frozen = 0;
1571 }
1572 release:
1573 if (frozen > 0)
1574 unfreeze(st);
1575 return rv;
1576 }
1577
1578 static int reshape_array(char *container, int fd, char *devname,
1579 struct supertype *st, struct mdinfo *info,
1580 int force,
1581 char *backup_file, int quiet, int forked,
1582 int restart)
1583 {
1584 struct reshape reshape;
1585 int spares_needed;
1586 char *msg;
1587 int orig_level = UnSet;
1588 int disks, odisks;
1589
1590 struct mdu_array_info_s array;
1591 char *c;
1592
1593 int *fdlist;
1594 unsigned long long *offsets;
1595 int d;
1596 int nrdisks;
1597 int err;
1598 unsigned long blocks;
1599 unsigned long cache;
1600 unsigned long long array_size;
1601 int done;
1602 struct mdinfo *sra = NULL;
1603
1604 msg = analyse_change(info, &reshape);
1605 if (msg) {
1606 fprintf(stderr, Name ": %s\n", msg);
1607 goto release;
1608 }
1609 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1610 dprintf("Canot get array information.\n");
1611 goto release;
1612 }
1613
1614 if (restart) {
1615 /* reshape already started. just skip to monitoring the reshape */
1616 if (reshape.backup_blocks == 0)
1617 return 0;
1618 goto started;
1619 }
1620 spares_needed = max(reshape.before.data_disks,
1621 reshape.after.data_disks)
1622 + reshape.parity - array.raid_disks;
1623
1624 if (!force &&
1625 info->new_level > 0 &&
1626 spares_needed > info->array.spare_disks) {
1627 fprintf(stderr,
1628 Name ": Need %d spare%s to avoid degraded array,"
1629 " and only have %d.\n"
1630 " Use --force to over-ride this check.\n",
1631 spares_needed,
1632 spares_needed == 1 ? "" : "s",
1633 info->array.spare_disks);
1634 goto release;
1635 }
1636
1637 if (reshape.level != info->array.level) {
1638 char *c = map_num(pers, reshape.level);
1639 int err;
1640 if (c == NULL)
1641 goto release;
1642
1643 err = sysfs_set_str(info, NULL, "level", c);
1644 if (err) {
1645 err = errno;
1646 fprintf(stderr, Name ": %s: could not set level to %s\n",
1647 devname, c);
1648 if (err == EBUSY &&
1649 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
1650 fprintf(stderr, " Bitmap must be removed"
1651 " before level can be changed\n");
1652 goto release;
1653 }
1654 if (!quiet)
1655 fprintf(stderr, Name ": level of %s changed to %s\n",
1656 devname, c);
1657 orig_level = info->array.level;
1658 }
1659
1660 if (reshape.level > 0 && st->ss->external &&
1661 !mdmon_running(st->container_dev)) {
1662 start_mdmon(st->container_dev);
1663 ping_monitor(container);
1664 }
1665
1666 /* ->reshape_super might have chosen some spares from the
1667 * container that it wants to be part of the new array.
1668 * We can collect them with ->container_content and give
1669 * them to the kernel.
1670 */
1671 if (st->ss->reshape_super && st->ss->container_content) {
1672 char *subarray = strchr(info->text_version+1, '/')+1;
1673 struct mdinfo *info2 =
1674 st->ss->container_content(st, subarray);
1675 struct mdinfo *d;
1676
1677 if (info2) {
1678 sysfs_init(info2, fd, st->devnum);
1679 for (d = info2->devs; d; d = d->next) {
1680 if (d->disk.state == 0 &&
1681 d->disk.raid_disk >= 0) {
1682 /* This is a spare that wants to
1683 * be part of the array.
1684 */
1685 add_disk(fd, st, info2, d);
1686 }
1687 }
1688 sysfs_free(info2);
1689 }
1690 }
1691
1692 if (reshape.backup_blocks == 0) {
1693 /* No restriping needed, but we might need to impose
1694 * some more changes: layout, raid_disks, chunk_size
1695 */
1696 if (info->new_layout != UnSet &&
1697 info->new_layout != info->array.layout) {
1698 info->array.layout = info->new_layout;
1699 if (ioctl(fd, SET_ARRAY_INFO, &info->array) != 0) {
1700 fprintf(stderr, Name ": failed to set new layout\n");
1701 goto release;
1702 } else if (!quiet)
1703 printf("layout for %s set to %d\n",
1704 devname, info->array.layout);
1705 }
1706 if (info->delta_disks != UnSet &&
1707 info->delta_disks != 0) {
1708 info->array.raid_disks += info->delta_disks;
1709 if (ioctl(fd, SET_ARRAY_INFO, &info->array) != 0) {
1710 fprintf(stderr, Name ": failed to set raid disks\n");
1711 goto release;
1712 } else if (!quiet)
1713 printf("raid_disks for %s set to %d\n",
1714 devname, info->array.raid_disks);
1715 }
1716 if (info->new_chunk != 0 &&
1717 info->new_chunk != info->array.chunk_size) {
1718 if (sysfs_set_num(info, NULL,
1719 "chunk_size", info->new_chunk) != 0) {
1720 fprintf(stderr, Name ": failed to set chunk size\n");
1721 goto release;
1722 } else if (!quiet)
1723 printf("chunk size for %s set to %d\n",
1724 devname, info->array.chunk_size);
1725 }
1726 unfreeze(st);
1727 return 0;
1728 }
1729
1730 /*
1731 * There are three possibilities.
1732 * 1/ The array will shrink.
1733 * We need to ensure the reshape will pause before reaching
1734 * the 'critical section'. We also need to fork and wait for
1735 * that to happen. When it does we
1736 * suspend/backup/complete/unfreeze
1737 *
1738 * 2/ The array will not change size.
1739 * This requires that we keep a backup of a sliding window
1740 * so that we can restore data after a crash. So we need
1741 * to fork and monitor progress.
1742 * In future we will allow the data_offset to change, so
1743 * a sliding backup becomes unnecessary.
1744 *
1745 * 3/ The array will grow. This is relatively easy.
1746 * However the kernel's restripe routines will cheerfully
1747 * overwrite some early data before it is safe. So we
1748 * need to make a backup of the early parts of the array
1749 * and be ready to restore it if rebuild aborts very early.
1750 * For externally managed metadata, we still need a forked
1751 * child to monitor the reshape and suspend IO over the region
1752 * that is being reshaped.
1753 *
1754 * We backup data by writing it to one spare, or to a
1755 * file which was given on command line.
1756 *
1757 * In each case, we first make sure that storage is available
1758 * for the required backup.
1759 * Then we:
1760 * - request the shape change.
1761 * - fork to handle backup etc.
1762 */
1763 started:
1764 /* Check that we can hold all the data */
1765 get_dev_size(fd, NULL, &array_size);
1766 if (reshape.new_size < (array_size/512)) {
1767 fprintf(stderr,
1768 Name ": this change will reduce the size of the array.\n"
1769 " use --grow --array-size first to truncate array.\n"
1770 " e.g. mdadm --grow %s --array-size %llu\n",
1771 devname, reshape.new_size/2);
1772 goto release;
1773 }
1774
1775 sra = sysfs_read(fd, 0,
1776 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
1777 GET_CACHE);
1778 if (!sra) {
1779 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
1780 devname);
1781 goto release;
1782 }
1783
1784 /* Decide how many blocks (sectors) for a reshape
1785 * unit. The number we have so far is just a minimum
1786 */
1787 blocks = reshape.backup_blocks;
1788 if (reshape.before.data_disks ==
1789 reshape.after.data_disks) {
1790 /* Make 'blocks' bigger for better throughput, but
1791 * not so big that we reject it below.
1792 * Try for 16 megabytes
1793 */
1794 while (blocks * 32 < sra->component_size &&
1795 blocks < 16*1024*2)
1796 blocks *= 2;
1797 } else
1798 fprintf(stderr, Name ": Need to backup %luK of critical "
1799 "section..\n", blocks/2);
1800
1801 if (blocks >= sra->component_size/2) {
1802 fprintf(stderr, Name ": %s: Something wrong"
1803 " - reshape aborted\n",
1804 devname);
1805 goto release;
1806 }
1807
1808 /* Now we need to open all these devices so we can read/write.
1809 */
1810 nrdisks = array.raid_disks + sra->array.spare_disks;
1811 fdlist = malloc((1+nrdisks) * sizeof(int));
1812 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
1813 if (!fdlist || !offsets) {
1814 fprintf(stderr, Name ": malloc failed: grow aborted\n");
1815 goto release;
1816 }
1817
1818 d = reshape_prepare_fdlist(devname, sra, array.raid_disks,
1819 nrdisks, blocks, backup_file,
1820 fdlist, offsets);
1821 if (d < 0) {
1822 goto release;
1823 }
1824 if (backup_file == NULL) {
1825 if (reshape.after.data_disks <= reshape.before.data_disks) {
1826 fprintf(stderr,
1827 Name ": %s: Cannot grow - need backup-file\n",
1828 devname);
1829 goto release;
1830 } else if (sra->array.spare_disks == 0) {
1831 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
1832 "backup-file to backup critical section\n",
1833 devname);
1834 goto release;
1835 }
1836 } else {
1837 if (!reshape_open_backup_file(backup_file, fd, devname,
1838 (signed)blocks,
1839 fdlist+d, offsets+d, restart)) {
1840 goto release;
1841 }
1842 d++;
1843 }
1844
1845 /* lastly, check that the internal stripe cache is
1846 * large enough, or it won't work.
1847 * It must hold at least 4 stripes of the larger
1848 * chunk size
1849 */
1850 cache = max(info->array.chunk_size, info->new_chunk);
1851 cache *= 4; /* 4 stripes minimum */
1852 cache /= 512; /* convert to sectors */
1853 disks = min(reshape.before.data_disks, reshape.after.data_disks);
1854 /* make sure there is room for 'blocks' with a bit to spare */
1855 if (cache < 16 + blocks / disks)
1856 cache = 16 + blocks / disks;
1857 cache /= (4096/512); /* Covert from sectors to pages */
1858
1859 if (sra->cache_size < cache)
1860 subarray_set_num(container, sra, "stripe_cache_size",
1861 cache+1);
1862
1863 /* Right, everything seems fine. Let's kick things off.
1864 * If only changing raid_disks, use ioctl, else use
1865 * sysfs.
1866 */
1867 sync_metadata(st);
1868
1869 sra->new_chunk = info->new_chunk;
1870
1871 sra->reshape_progress = 0;
1872 if (reshape.after.data_disks < reshape.before.data_disks)
1873 /* start from the end of the new array */
1874 sra->reshape_progress = (sra->component_size
1875 * reshape.after.data_disks);
1876
1877 if (info->reshape_active)
1878 sra->reshape_progress = info->reshape_progress;
1879 else if (info->array.chunk_size == info->new_chunk &&
1880 reshape.before.layout == reshape.after.layout &&
1881 st->ss->external == 0) {
1882 array.raid_disks = reshape.after.data_disks + reshape.parity;
1883 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1884 int err = errno;
1885
1886 fprintf(stderr,
1887 Name ": Cannot set device shape for %s: %s\n",
1888 devname, strerror(errno));
1889
1890 if (err == EBUSY &&
1891 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1892 fprintf(stderr,
1893 " Bitmap must be removed before"
1894 " shape can be changed\n");
1895
1896 goto release;
1897 }
1898 } else {
1899 /* set them all just in case some old 'new_*' value
1900 * persists from some earlier problem
1901 */
1902 int err = 0;
1903 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
1904 err = errno;
1905 if (!err && sysfs_set_num(sra, NULL, "layout",
1906 reshape.after.layout) < 0)
1907 err = errno;
1908 if (!err && subarray_set_num(container, sra, "raid_disks",
1909 reshape.after.data_disks +
1910 reshape.parity) < 0)
1911 err = errno;
1912 if (err) {
1913 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1914 devname);
1915
1916 if (err == EBUSY &&
1917 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1918 fprintf(stderr,
1919 " Bitmap must be removed before"
1920 " shape can be changed\n");
1921 goto release;
1922 }
1923 }
1924
1925 start_reshape(sra);
1926 if (restart)
1927 sysfs_set_str(sra, NULL, "array_state", "active");
1928
1929 /* Now we just need to kick off the reshape and watch, while
1930 * handling backups of the data...
1931 * This is all done by a forked background process.
1932 */
1933 switch(forked ? 0 : fork()) {
1934 case -1:
1935 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1936 strerror(errno));
1937 abort_reshape(sra);
1938 goto release;
1939 default:
1940 return 0;
1941 case 0:
1942 break;
1943 }
1944
1945 close(fd);
1946 if (check_env("MDADM_GROW_VERIFY"))
1947 fd = open(devname, O_RDONLY | O_DIRECT);
1948 else
1949 fd = -1;
1950 mlockall(MCL_FUTURE);
1951
1952 odisks = reshape.before.data_disks + reshape.parity;
1953
1954 if (st->ss->external) {
1955 /* metadata handler takes it from here */
1956 done = st->ss->manage_reshape(
1957 fd, sra, &reshape, st, blocks,
1958 fdlist, offsets,
1959 d - odisks, fdlist+odisks,
1960 offsets+odisks);
1961 } else
1962 done = child_monitor(
1963 fd, sra, &reshape, st, blocks,
1964 fdlist, offsets,
1965 d - odisks, fdlist+odisks,
1966 offsets+odisks);
1967
1968 if (backup_file && done)
1969 unlink(backup_file);
1970 if (!done) {
1971 abort_reshape(sra);
1972 goto out;
1973 }
1974
1975 if (!st->ss->external &&
1976 !(reshape.before.data_disks != reshape.after.data_disks
1977 && info->custom_array_size) &&
1978 info->new_level == reshape.level &&
1979 !forked) {
1980 /* no need to wait for the reshape to finish as
1981 * there is nothing more to do.
1982 */
1983 exit(0);
1984 }
1985 wait_reshape(sra);
1986
1987 if (st->ss->external) {
1988 /* Re-load the metadata as much could have changed */
1989 int cfd = open_dev(st->container_dev);
1990 if (cfd >= 0) {
1991 ping_monitor(container);
1992 st->ss->free_super(st);
1993 st->ss->load_container(st, cfd, container);
1994 close(cfd);
1995 }
1996 }
1997
1998 /* set new array size if required customer_array_size is used
1999 * by this metadata.
2000 */
2001 if (reshape.before.data_disks !=
2002 reshape.after.data_disks &&
2003 info->custom_array_size) {
2004 struct mdinfo *info2;
2005 char *subarray = strchr(info->text_version+1, '/')+1;
2006
2007 info2 = st->ss->container_content(st, subarray);
2008 if (info2) {
2009 unsigned long long current_size = 0;
2010 unsigned long long new_size =
2011 info2->custom_array_size/2;
2012
2013 if (sysfs_get_ll(sra,
2014 NULL,
2015 "array_size",
2016 &current_size) == 0 &&
2017 new_size > current_size) {
2018 if (sysfs_set_num(sra, NULL,
2019 "array_size", new_size)
2020 < 0)
2021 dprintf("Error: Cannot"
2022 " set array size");
2023 else
2024 dprintf("Array size "
2025 "changed");
2026 dprintf(" from %llu to %llu.\n",
2027 current_size, new_size);
2028 }
2029 sysfs_free(info2);
2030 }
2031 }
2032
2033 if (info->new_level != reshape.level) {
2034
2035 c = map_num(pers, info->new_level);
2036 if (c) {
2037 err = sysfs_set_str(sra, NULL, "level", c);
2038 if (err)
2039 fprintf(stderr, Name\
2040 ": %s: could not set level "
2041 "to %s\n", devname, c);
2042 }
2043 }
2044 out:
2045 if (forked)
2046 return 0;
2047 exit(0);
2048
2049 release:
2050 if (orig_level != UnSet && sra) {
2051 c = map_num(pers, orig_level);
2052 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
2053 fprintf(stderr, Name ": aborting level change\n");
2054 }
2055 if (!forked)
2056 unfreeze(st);
2057 return 1;
2058 }
2059
2060 int reshape_container(char *container, int cfd, char *devname,
2061 struct supertype *st,
2062 struct mdinfo *info,
2063 int force,
2064 char *backup_file,
2065 int quiet)
2066 {
2067 struct mdinfo *cc = NULL;
2068
2069 /* component_size is not meaningful for a container,
2070 * so pass '-1' meaning 'no change'
2071 */
2072 if (reshape_super(st, -1, info->new_level,
2073 info->new_layout, info->new_chunk,
2074 info->array.raid_disks + info->delta_disks,
2075 backup_file, devname, quiet))
2076 return 1;
2077
2078 sync_metadata(st);
2079
2080 /* ping monitor to be sure that update is on disk
2081 */
2082 ping_monitor(container);
2083
2084 switch (fork()) {
2085 case -1: /* error */
2086 perror("Cannot fork to complete reshape\n");
2087 return 1;
2088 default: /* parent */
2089 printf(Name ": multi-array reshape continues in background\n");
2090 return 0;
2091 case 0: /* child */
2092 break;
2093 }
2094
2095 while(1) {
2096 /* For each member array with reshape_active,
2097 * we need to perform the reshape.
2098 * We pick the first array that needs reshaping and
2099 * reshape it. reshape_array() will re-read the metadata
2100 * so the next time through a different array should be
2101 * ready for reshape.
2102 */
2103 struct mdinfo *content;
2104 int rv;
2105 int fd;
2106 struct mdstat_ent *mdstat;
2107 char *adev;
2108
2109 sysfs_free(cc);
2110
2111 cc = st->ss->container_content(st, NULL);
2112
2113 for (content = cc; content ; content = content->next) {
2114 char *subarray;
2115 if (!content->reshape_active)
2116 continue;
2117
2118 subarray = strchr(content->text_version+1, '/')+1;
2119 mdstat = mdstat_by_subdev(subarray,
2120 devname2devnum(container));
2121 if (!mdstat)
2122 continue;
2123 break;
2124 }
2125 if (!content)
2126 break;
2127
2128 fd = open_dev(mdstat->devnum);
2129 if (fd < 0)
2130 break;
2131 adev = map_dev(dev2major(mdstat->devnum),
2132 dev2minor(mdstat->devnum),
2133 0);
2134 if (!adev)
2135 adev = content->text_version;
2136
2137 sysfs_init(content, fd, mdstat->devnum);
2138
2139 rv = reshape_array(container, fd, adev, st,
2140 content, force,
2141 backup_file, quiet, 1, 0);
2142 close(fd);
2143 if (rv)
2144 break;
2145 }
2146 unfreeze(st);
2147 sysfs_free(cc);
2148 exit(0);
2149 }
2150
2151 /*
2152 * We run a child process in the background which performs the following
2153 * steps:
2154 * - wait for resync to reach a certain point
2155 * - suspend io to the following section
2156 * - backup that section
2157 * - allow resync to proceed further
2158 * - resume io
2159 * - discard the backup.
2160 *
2161 * When are combined in slightly different ways in the three cases.
2162 * Grow:
2163 * - suspend/backup/allow/wait/resume/discard
2164 * Shrink:
2165 * - allow/wait/suspend/backup/allow/wait/resume/discard
2166 * same-size:
2167 * - wait/resume/discard/suspend/backup/allow
2168 *
2169 * suspend/backup/allow always come together
2170 * wait/resume/discard do too.
2171 * For the same-size case we have two backups to improve flow.
2172 *
2173 */
2174
2175 int progress_reshape(struct mdinfo *info, struct reshape *reshape,
2176 unsigned long long backup_point,
2177 unsigned long long wait_point,
2178 unsigned long long *suspend_point,
2179 unsigned long long *reshape_completed)
2180 {
2181 /* This function is called repeatedly by the reshape manager.
2182 * It determines how much progress can safely be made and allows
2183 * that progress.
2184 * - 'info' identifies the array and particularly records in
2185 * ->reshape_progress the metadata's knowledge of progress
2186 * This is a sector offset from the start of the array
2187 * of the next array block to be relocated. This number
2188 * may increase from 0 or decrease from array_size, depending
2189 * on the type of reshape that is happening.
2190 * Note that in contrast, 'sync_completed' is a block count of the
2191 * reshape so far. It gives the distance between the start point
2192 * (head or tail of device) and the next place that data will be
2193 * written. It always increases.
2194 * - 'reshape' is the structure created by analyse_change
2195 * - 'backup_point' shows how much the metadata manager has backed-up
2196 * data. For reshapes with increasing progress, it is the next address
2197 * to be backed up, previous addresses have been backed-up. For
2198 * decreasing progress, it is the earliest address that has been
2199 * backed up - later address are also backed up.
2200 * So addresses between reshape_progress and backup_point are
2201 * backed up providing those are in the 'correct' order.
2202 * - 'wait_point' is an array address. When reshape_completed
2203 * passes this point, progress_reshape should return. It might
2204 * return earlier if it determines that ->reshape_progress needs
2205 * to be updated or further backup is needed.
2206 * - suspend_point is maintained by progress_reshape and the caller
2207 * should not touch it except to initialise to zero.
2208 * It is an array address and it only increases in 2.6.37 and earlier.
2209 * This makes it difficult to handle reducing reshapes with
2210 * external metadata.
2211 * However: it is similar to backup_point in that it records the
2212 * other end of a suspended region from reshape_progress.
2213 * it is moved to extend the region that is safe to backup and/or
2214 * reshape
2215 * - reshape_completed is read from sysfs and returned. The caller
2216 * should copy this into ->reshape_progress when it has reason to
2217 * believe that the metadata knows this, and any backup outside this
2218 * has been erased.
2219 *
2220 * Return value is:
2221 * 1 if more data from backup_point - but only as far as suspend_point,
2222 * should be backed up
2223 * 0 if things are progressing smoothly
2224 * -1 if the reshape is finished, either because it is all done,
2225 * or due to an error.
2226 */
2227
2228 int advancing = (reshape->after.data_disks
2229 >= reshape->before.data_disks);
2230 unsigned long long need_backup; /* All data between start of array and
2231 * here will at some point need to
2232 * be backed up.
2233 */
2234 unsigned long long read_offset, write_offset;
2235 unsigned long long write_range;
2236 unsigned long long max_progress, target, completed;
2237 unsigned long long array_size = (info->component_size
2238 * reshape->before.data_disks);
2239 int fd;
2240 char buf[20];
2241
2242 /* First, we unsuspend any region that is now known to be safe.
2243 * If suspend_point is on the 'wrong' side of reshape_progress, then
2244 * we don't have or need suspension at the moment. This is true for
2245 * native metadata when we don't need to back-up.
2246 */
2247 if (advancing) {
2248 if (info->reshape_progress <= *suspend_point)
2249 sysfs_set_num(info, NULL, "suspend_lo",
2250 info->reshape_progress);
2251 } else {
2252 /* Note: this won't work in 2.6.37 and before.
2253 * Something somewhere should make sure we don't need it!
2254 */
2255 if (info->reshape_progress >= *suspend_point)
2256 sysfs_set_num(info, NULL, "suspend_hi",
2257 info->reshape_progress);
2258 }
2259
2260 /* Now work out how far it is safe to progress.
2261 * If the read_offset for ->reshape_progress is less than
2262 * 'blocks' beyond the write_offset, we can only progress as far
2263 * as a backup.
2264 * Otherwise we can progress until the write_offset for the new location
2265 * reaches (within 'blocks' of) the read_offset at the current location.
2266 * However that region must be suspended unless we are using native
2267 * metadata.
2268 * If we need to suspend more, we limit it to 128M per device, which is
2269 * rather arbitrary and should be some time-based calculation.
2270 */
2271 read_offset = info->reshape_progress / reshape->before.data_disks;
2272 write_offset = info->reshape_progress / reshape->after.data_disks;
2273 write_range = info->new_chunk/512;
2274 if (reshape->before.data_disks == reshape->after.data_disks)
2275 need_backup = array_size;
2276 else
2277 need_backup = reshape->backup_blocks;
2278 if (advancing) {
2279 if (read_offset < write_offset + write_range)
2280 max_progress = backup_point;
2281 else
2282 max_progress =
2283 read_offset *
2284 reshape->after.data_disks;
2285 } else {
2286 if (read_offset > write_offset - write_range)
2287 /* Can only progress as far as has been backed up,
2288 * which must be suspended */
2289 max_progress = backup_point;
2290 else if (info->reshape_progress <= need_backup)
2291 max_progress = backup_point;
2292 else {
2293 if (info->array.major_version >= 0)
2294 /* Can progress until backup is needed */
2295 max_progress = need_backup;
2296 else {
2297 /* Can progress until metadata update is required */
2298 max_progress =
2299 read_offset *
2300 reshape->after.data_disks;
2301 /* but data must be suspended */
2302 if (max_progress < *suspend_point)
2303 max_progress = *suspend_point;
2304 }
2305 }
2306 }
2307
2308 /* We know it is safe to progress to 'max_progress' providing
2309 * it is suspended or we are using native metadata.
2310 * Consider extending suspend_point 128M per device if it
2311 * is less than 64M per device beyond reshape_progress.
2312 * But always do a multiple of 'blocks'
2313 * FIXME this is too big - it takes to long to complete
2314 * this much.
2315 */
2316 target = 64*1024*2 * min(reshape->before.data_disks,
2317 reshape->after.data_disks);
2318 target /= reshape->backup_blocks;
2319 if (target < 2)
2320 target = 2;
2321 target *= reshape->backup_blocks;
2322
2323 /* For externally managed metadata we always need to suspend IO to
2324 * the area being reshaped so we regularly push suspend_point forward.
2325 * For native metadata we only need the suspend if we are going to do
2326 * a backup.
2327 */
2328 if (advancing) {
2329 if ((need_backup > info->reshape_progress
2330 || info->array.major_version < 0) &&
2331 *suspend_point < info->reshape_progress + target) {
2332 if (need_backup < *suspend_point + 2 * target)
2333 *suspend_point = need_backup;
2334 else if (*suspend_point + 2 * target < array_size)
2335 *suspend_point += 2 * target;
2336 else
2337 *suspend_point = array_size;
2338 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
2339 if (max_progress > *suspend_point)
2340 max_progress = *suspend_point;
2341 }
2342 } else {
2343 if (info->array.major_version >= 0) {
2344 /* Only need to suspend when about to backup */
2345 if (info->reshape_progress < need_backup * 2 &&
2346 *suspend_point > 0) {
2347 *suspend_point = 0;
2348 sysfs_set_num(info, NULL, "suspend_lo", 0);
2349 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
2350 }
2351 } else {
2352 /* Need to suspend continually */
2353 if (info->reshape_progress < *suspend_point)
2354 *suspend_point = info->reshape_progress;
2355 if (*suspend_point + target < info->reshape_progress)
2356 /* No need to move suspend region yet */;
2357 else {
2358 if (*suspend_point >= 2 * target)
2359 *suspend_point -= 2 * target;
2360 else
2361 *suspend_point = 0;
2362 sysfs_set_num(info, NULL, "suspend_lo",
2363 *suspend_point);
2364 }
2365 if (max_progress < *suspend_point)
2366 max_progress = *suspend_point;
2367 }
2368 }
2369
2370 /* now set sync_max to allow that progress. sync_max, like
2371 * sync_completed is a count of sectors written per device, so
2372 * we find the difference between max_progress and the start point,
2373 * and divide that by after.data_disks to get a sync_max
2374 * number.
2375 * At the same time we convert wait_point to a similar number
2376 * for comparing against sync_completed.
2377 */
2378 /* scale down max_progress to per_disk */
2379 max_progress /= reshape->after.data_disks;
2380 /* Round to chunk size as some kernels give an erroneously high number */
2381 max_progress /= info->new_chunk/512;
2382 max_progress *= info->new_chunk/512;
2383 /* Limit progress to the whole device */
2384 if (max_progress > info->component_size)
2385 max_progress = info->component_size;
2386 wait_point /= reshape->after.data_disks;
2387 if (!advancing) {
2388 /* switch from 'device offset' to 'processed block count' */
2389 max_progress = info->component_size - max_progress;
2390 wait_point = info->component_size - wait_point;
2391 }
2392
2393 sysfs_set_num(info, NULL, "sync_max", max_progress);
2394
2395 /* Now wait. If we have already reached the point that we were
2396 * asked to wait to, don't wait at all, else wait for any change.
2397 * We need to select on 'sync_completed' as that is the place that
2398 * notifications happen, but we are really interested in
2399 * 'reshape_position'
2400 */
2401 fd = sysfs_get_fd(info, NULL, "sync_completed");
2402 if (fd < 0)
2403 goto check_progress;
2404
2405 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2406 close(fd);
2407 goto check_progress;
2408 }
2409 while (completed < max_progress && completed < wait_point) {
2410 /* Check that sync_action is still 'reshape' to avoid
2411 * waiting forever on a dead array
2412 */
2413 char action[20];
2414 fd_set rfds;
2415 if (sysfs_get_str(info, NULL, "sync_action",
2416 action, 20) <= 0 ||
2417 strncmp(action, "reshape", 7) != 0)
2418 break;
2419 FD_ZERO(&rfds);
2420 FD_SET(fd, &rfds);
2421 select(fd+1, NULL, NULL, &rfds, NULL);
2422 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2423 close(fd);
2424 goto check_progress;
2425 }
2426 }
2427 /* some kernels can give an incorrectly high 'completed' number */
2428 completed /= (info->new_chunk/512);
2429 completed *= (info->new_chunk/512);
2430 /* Convert 'completed' back in to a 'progress' number */
2431 completed *= reshape->after.data_disks;
2432 if (!advancing) {
2433 completed = info->component_size * reshape->after.data_disks
2434 - completed;
2435 }
2436 *reshape_completed = completed;
2437
2438 close(fd);
2439
2440 /* We return the need_backup flag. Caller will decide
2441 * how much - a multiple of ->backup_blocks up to *suspend_point
2442 */
2443 if (advancing)
2444 return need_backup > info->reshape_progress;
2445 else
2446 return need_backup >= info->reshape_progress;
2447
2448 check_progress:
2449 /* if we couldn't read a number from sync_completed, then
2450 * either the reshape did complete, or it aborted.
2451 * We can tell which by checking for 'none' in reshape_position.
2452 */
2453 strcpy(buf, "hi");
2454 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
2455 || strncmp(buf, "none", 4) != 0)
2456 return -2; /* abort */
2457 else {
2458 /* Maybe racing with array shutdown - check state */
2459 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
2460 || strncmp(buf, "inactive", 8) == 0
2461 || strncmp(buf, "clear",5) == 0)
2462 return -2; /* abort */
2463 return -1; /* complete */
2464 }
2465 }
2466
2467
2468 /* FIXME return status is never checked */
2469 static int grow_backup(struct mdinfo *sra,
2470 unsigned long long offset, /* per device */
2471 unsigned long stripes, /* per device, in old chunks */
2472 int *sources, unsigned long long *offsets,
2473 int disks, int chunk, int level, int layout,
2474 int dests, int *destfd, unsigned long long *destoffsets,
2475 int part, int *degraded,
2476 char *buf)
2477 {
2478 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2479 * to storage 'destfd' (offset 'destoffsets'), after first
2480 * suspending IO. Then allow resync to continue
2481 * over the suspended section.
2482 * Use part 'part' of the backup-super-block.
2483 */
2484 int odata = disks;
2485 int rv = 0;
2486 int i;
2487 unsigned long long ll;
2488 int new_degraded;
2489 //printf("offset %llu\n", offset);
2490 if (level >= 4)
2491 odata--;
2492 if (level == 6)
2493 odata--;
2494
2495 /* Check that array hasn't become degraded, else we might backup the wrong data */
2496 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
2497 return -1; /* FIXME this error is ignored */
2498 new_degraded = (int)ll;
2499 if (new_degraded != *degraded) {
2500 /* check each device to ensure it is still working */
2501 struct mdinfo *sd;
2502 for (sd = sra->devs ; sd ; sd = sd->next) {
2503 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2504 continue;
2505 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2506 char sbuf[20];
2507 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
2508 strstr(sbuf, "faulty") ||
2509 strstr(sbuf, "in_sync") == NULL) {
2510 /* this device is dead */
2511 sd->disk.state = (1<<MD_DISK_FAULTY);
2512 if (sd->disk.raid_disk >= 0 &&
2513 sources[sd->disk.raid_disk] >= 0) {
2514 close(sources[sd->disk.raid_disk]);
2515 sources[sd->disk.raid_disk] = -1;
2516 }
2517 }
2518 }
2519 }
2520 *degraded = new_degraded;
2521 }
2522 if (part) {
2523 bsb.arraystart2 = __cpu_to_le64(offset * odata);
2524 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
2525 } else {
2526 bsb.arraystart = __cpu_to_le64(offset * odata);
2527 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
2528 }
2529 if (part)
2530 bsb.magic[15] = '2';
2531 for (i = 0; i < dests; i++)
2532 if (part)
2533 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
2534 else
2535 lseek64(destfd[i], destoffsets[i], 0);
2536
2537 rv = save_stripes(sources, offsets,
2538 disks, chunk, level, layout,
2539 dests, destfd,
2540 offset*512*odata, stripes * chunk * odata,
2541 buf);
2542
2543 if (rv)
2544 return rv;
2545 bsb.mtime = __cpu_to_le64(time(0));
2546 for (i = 0; i < dests; i++) {
2547 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2548
2549 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2550 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2551 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2552 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2553
2554 rv = -1;
2555 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
2556 != destoffsets[i] - 4096)
2557 break;
2558 if (write(destfd[i], &bsb, 512) != 512)
2559 break;
2560 if (destoffsets[i] > 4096) {
2561 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
2562 destoffsets[i]+stripes*chunk*odata)
2563 break;
2564 if (write(destfd[i], &bsb, 512) != 512)
2565 break;
2566 }
2567 fsync(destfd[i]);
2568 rv = 0;
2569 }
2570
2571 return rv;
2572 }
2573
2574 /* in 2.6.30, the value reported by sync_completed can be
2575 * less that it should be by one stripe.
2576 * This only happens when reshape hits sync_max and pauses.
2577 * So allow wait_backup to either extent sync_max further
2578 * than strictly necessary, or return before the
2579 * sync has got quite as far as we would really like.
2580 * This is what 'blocks2' is for.
2581 * The various caller give appropriate values so that
2582 * every works.
2583 */
2584 /* FIXME return value is often ignored */
2585 static int forget_backup(
2586 int dests, int *destfd, unsigned long long *destoffsets,
2587 int part)
2588 {
2589 /*
2590 * Erase backup 'part' (which is 0 or 1)
2591 */
2592 int i;
2593 int rv;
2594
2595 if (part) {
2596 bsb.arraystart2 = __cpu_to_le64(0);
2597 bsb.length2 = __cpu_to_le64(0);
2598 } else {
2599 bsb.arraystart = __cpu_to_le64(0);
2600 bsb.length = __cpu_to_le64(0);
2601 }
2602 bsb.mtime = __cpu_to_le64(time(0));
2603 rv = 0;
2604 for (i = 0; i < dests; i++) {
2605 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2606 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2607 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2608 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2609 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2610 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
2611 destoffsets[i]-4096)
2612 rv = -1;
2613 if (rv == 0 &&
2614 write(destfd[i], &bsb, 512) != 512)
2615 rv = -1;
2616 fsync(destfd[i]);
2617 }
2618 return rv;
2619 }
2620
2621 static void fail(char *msg)
2622 {
2623 int rv;
2624 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
2625 rv |= (write(2, "\n", 1) != 1);
2626 exit(rv ? 1 : 2);
2627 }
2628
2629 static char *abuf, *bbuf;
2630 static unsigned long long abuflen;
2631 static void validate(int afd, int bfd, unsigned long long offset)
2632 {
2633 /* check that the data in the backup against the array.
2634 * This is only used for regression testing and should not
2635 * be used while the array is active
2636 */
2637 if (afd < 0)
2638 return;
2639 lseek64(bfd, offset - 4096, 0);
2640 if (read(bfd, &bsb2, 512) != 512)
2641 fail("cannot read bsb");
2642 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
2643 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
2644 fail("first csum bad");
2645 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
2646 fail("magic is bad");
2647 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
2648 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
2649 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
2650 fail("second csum bad");
2651
2652 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
2653 fail("devstart is wrong");
2654
2655 if (bsb2.length) {
2656 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
2657
2658 if (abuflen < len) {
2659 free(abuf);
2660 free(bbuf);
2661 abuflen = len;
2662 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
2663 posix_memalign((void**)&bbuf, 4096, abuflen)) {
2664 abuflen = 0;
2665 /* just stop validating on mem-alloc failure */
2666 return;
2667 }
2668 }
2669
2670 lseek64(bfd, offset, 0);
2671 if ((unsigned long long)read(bfd, bbuf, len) != len) {
2672 //printf("len %llu\n", len);
2673 fail("read first backup failed");
2674 }
2675 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
2676 if ((unsigned long long)read(afd, abuf, len) != len)
2677 fail("read first from array failed");
2678 if (memcmp(bbuf, abuf, len) != 0) {
2679 #if 0
2680 int i;
2681 printf("offset=%llu len=%llu\n",
2682 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
2683 for (i=0; i<len; i++)
2684 if (bbuf[i] != abuf[i]) {
2685 printf("first diff byte %d\n", i);
2686 break;
2687 }
2688 #endif
2689 fail("data1 compare failed");
2690 }
2691 }
2692 if (bsb2.length2) {
2693 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
2694
2695 if (abuflen < len) {
2696 free(abuf);
2697 free(bbuf);
2698 abuflen = len;
2699 abuf = malloc(abuflen);
2700 bbuf = malloc(abuflen);
2701 }
2702
2703 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
2704 if ((unsigned long long)read(bfd, bbuf, len) != len)
2705 fail("read second backup failed");
2706 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
2707 if ((unsigned long long)read(afd, abuf, len) != len)
2708 fail("read second from array failed");
2709 if (memcmp(bbuf, abuf, len) != 0)
2710 fail("data2 compare failed");
2711 }
2712 }
2713
2714 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
2715 struct supertype *st, unsigned long blocks,
2716 int *fds, unsigned long long *offsets,
2717 int dests, int *destfd, unsigned long long *destoffsets)
2718 {
2719 /* Monitor a reshape where backup is being performed using
2720 * 'native' mechanism - either to a backup file, or
2721 * to some space in a spare.
2722 */
2723 char *buf;
2724 int degraded = -1;
2725 unsigned long long speed;
2726 unsigned long long suspend_point, array_size;
2727 unsigned long long backup_point, wait_point;
2728 unsigned long long reshape_completed;
2729 int done = 0;
2730 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
2731 int part = 0; /* The next part of the backup area to fill. It may already
2732 * be full, so we need to check */
2733 int level = reshape->level;
2734 int layout = reshape->before.layout;
2735 int data = reshape->before.data_disks;
2736 int disks = reshape->before.data_disks + reshape->parity;
2737 int chunk = sra->array.chunk_size;
2738 struct mdinfo *sd;
2739 unsigned long stripes;
2740
2741 /* set up the backup-super-block. This requires the
2742 * uuid from the array.
2743 */
2744 /* Find a superblock */
2745 for (sd = sra->devs; sd; sd = sd->next) {
2746 char *dn;
2747 int devfd;
2748 int ok;
2749 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2750 continue;
2751 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
2752 devfd = dev_open(dn, O_RDONLY);
2753 if (devfd < 0)
2754 continue;
2755 ok = st->ss->load_super(st, devfd, NULL);
2756 close(devfd);
2757 if (ok >= 0)
2758 break;
2759 }
2760 if (!sd) {
2761 fprintf(stderr, Name ": Cannot find a superblock\n");
2762 return 0;
2763 }
2764
2765 memset(&bsb, 0, 512);
2766 memcpy(bsb.magic, "md_backup_data-1", 16);
2767 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2768 bsb.mtime = __cpu_to_le64(time(0));
2769 bsb.devstart2 = blocks;
2770
2771 stripes = blocks / (sra->array.chunk_size/512) /
2772 reshape->before.data_disks;
2773
2774 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2775 /* Don't start the 'reshape' */
2776 return 0;
2777 if (reshape->before.data_disks == reshape->after.data_disks) {
2778 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
2779 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
2780 }
2781
2782 if (increasing) {
2783 array_size = sra->component_size * reshape->after.data_disks;
2784 backup_point = sra->reshape_progress;
2785 suspend_point = 0;
2786 } else {
2787 array_size = sra->component_size * reshape->before.data_disks;
2788 backup_point = reshape->backup_blocks;
2789 suspend_point = array_size;
2790 }
2791
2792 while (!done) {
2793 int rv;
2794
2795 /* Want to return as soon the oldest backup slot can
2796 * be released as that allows us to start backing up
2797 * some more, providing suspend_point has been
2798 * advanced, which it should have.
2799 */
2800 if (increasing) {
2801 wait_point = array_size;
2802 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2803 wait_point = (__le64_to_cpu(bsb.arraystart) +
2804 __le64_to_cpu(bsb.length));
2805 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2806 wait_point = (__le64_to_cpu(bsb.arraystart2) +
2807 __le64_to_cpu(bsb.length2));
2808 } else {
2809 wait_point = 0;
2810 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2811 wait_point = __le64_to_cpu(bsb.arraystart);
2812 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2813 wait_point = __le64_to_cpu(bsb.arraystart2);
2814 }
2815
2816 rv = progress_reshape(sra, reshape,
2817 backup_point, wait_point,
2818 &suspend_point, &reshape_completed);
2819 /* external metadata would need to ping_monitor here */
2820 sra->reshape_progress = reshape_completed;
2821
2822 /* Clear any backup region that is before 'here' */
2823 if (increasing) {
2824 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
2825 __le64_to_cpu(bsb.length)))
2826 forget_backup(dests, destfd,
2827 destoffsets, 0);
2828 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
2829 __le64_to_cpu(bsb.length2)))
2830 forget_backup(dests, destfd,
2831 destoffsets, 1);
2832 } else {
2833 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
2834 forget_backup(dests, destfd,
2835 destoffsets, 0);
2836 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
2837 forget_backup(dests, destfd,
2838 destoffsets, 1);
2839 }
2840
2841 if (rv < 0) {
2842 if (rv == -1)
2843 done = 1;
2844 break;
2845 }
2846
2847 while (rv) {
2848 unsigned long long offset;
2849 unsigned long actual_stripes;
2850 /* Need to backup some data.
2851 * If 'part' is not used and the desired
2852 * backup size is suspended, do a backup,
2853 * then consider the next part.
2854 */
2855 /* Check that 'part' is unused */
2856 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
2857 break;
2858 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
2859 break;
2860
2861 offset = backup_point / data;
2862 actual_stripes = stripes;
2863 if (increasing) {
2864 if (offset + actual_stripes * (chunk/512) >
2865 sra->component_size)
2866 actual_stripes = ((sra->component_size - offset)
2867 / (chunk/512));
2868 if (offset + actual_stripes * (chunk/512) >
2869 suspend_point/data)
2870 break;
2871 } else {
2872 if (offset < actual_stripes * (chunk/512))
2873 actual_stripes = offset / (chunk/512);
2874 offset -= actual_stripes * (chunk/512);
2875 if (offset < suspend_point/data)
2876 break;
2877 }
2878 grow_backup(sra, offset, actual_stripes,
2879 fds, offsets,
2880 disks, chunk, level, layout,
2881 dests, destfd, destoffsets,
2882 part, &degraded, buf);
2883 validate(afd, destfd[0], destoffsets[0]);
2884 /* record where 'part' is up to */
2885 part = !part;
2886 if (increasing)
2887 backup_point += actual_stripes * (chunk/512) * data;
2888 else
2889 backup_point -= actual_stripes * (chunk/512) * data;
2890 }
2891 }
2892
2893 /* FIXME maybe call progress_reshape one more time instead */
2894 abort_reshape(sra); /* remove any remaining suspension */
2895 if (reshape->before.data_disks == reshape->after.data_disks)
2896 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
2897 free(buf);
2898 return done;
2899 }
2900
2901 /*
2902 * If any spare contains md_back_data-1 which is recent wrt mtime,
2903 * write that data into the array and update the super blocks with
2904 * the new reshape_progress
2905 */
2906 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
2907 char *backup_file, int verbose)
2908 {
2909 int i, j;
2910 int old_disks;
2911 unsigned long long *offsets;
2912 unsigned long long nstripe, ostripe;
2913 int ndata, odata;
2914
2915 if (info->new_level != info->array.level)
2916 return 1; /* Cannot handle level changes (they are instantaneous) */
2917
2918 odata = info->array.raid_disks - info->delta_disks - 1;
2919 if (info->array.level == 6) odata--; /* number of data disks */
2920 ndata = info->array.raid_disks - 1;
2921 if (info->new_level == 6) ndata--;
2922
2923 old_disks = info->array.raid_disks - info->delta_disks;
2924
2925 if (info->delta_disks <= 0)
2926 /* Didn't grow, so the backup file must have
2927 * been used
2928 */
2929 old_disks = cnt;
2930 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
2931 struct mdinfo dinfo;
2932 int fd;
2933 int bsbsize;
2934 char *devname, namebuf[20];
2935 unsigned long long lo, hi;
2936
2937 /* This was a spare and may have some saved data on it.
2938 * Load the superblock, find and load the
2939 * backup_super_block.
2940 * If either fail, go on to next device.
2941 * If the backup contains no new info, just return
2942 * else restore data and update all superblocks
2943 */
2944 if (i == old_disks-1) {
2945 fd = open(backup_file, O_RDONLY);
2946 if (fd<0) {
2947 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
2948 backup_file, strerror(errno));
2949 continue;
2950 }
2951 devname = backup_file;
2952 } else {
2953 fd = fdlist[i];
2954 if (fd < 0)
2955 continue;
2956 if (st->ss->load_super(st, fd, NULL))
2957 continue;
2958
2959 st->ss->getinfo_super(st, &dinfo, NULL);
2960 st->ss->free_super(st);
2961
2962 if (lseek64(fd,
2963 (dinfo.data_offset + dinfo.component_size - 8) <<9,
2964 0) < 0) {
2965 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
2966 continue; /* Cannot seek */
2967 }
2968 sprintf(namebuf, "device-%d", i);
2969 devname = namebuf;
2970 }
2971 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
2972 if (verbose)
2973 fprintf(stderr, Name ": Cannot read from %s\n", devname);
2974 continue; /* Cannot read */
2975 }
2976 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
2977 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
2978 if (verbose)
2979 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
2980 continue;
2981 }
2982 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
2983 if (verbose)
2984 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
2985 continue; /* bad checksum */
2986 }
2987 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
2988 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
2989 if (verbose)
2990 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
2991 continue; /* Bad second checksum */
2992 }
2993 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
2994 if (verbose)
2995 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
2996 continue; /* Wrong uuid */
2997 }
2998
2999 /* array utime and backup-mtime should be updated at much the same time, but it seems that
3000 * sometimes they aren't... So allow considerable flexability in matching, and allow
3001 * this test to be overridden by an environment variable.
3002 */
3003 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
3004 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
3005 if (check_env("MDADM_GROW_ALLOW_OLD")) {
3006 fprintf(stderr, Name ": accepting backup with timestamp %lu "
3007 "for array with timestamp %lu\n",
3008 (unsigned long)__le64_to_cpu(bsb.mtime),
3009 (unsigned long)info->array.utime);
3010 } else {
3011 if (verbose)
3012 fprintf(stderr, Name ": too-old timestamp on "
3013 "backup-metadata on %s\n", devname);
3014 continue; /* time stamp is too bad */
3015 }
3016 }
3017
3018 if (bsb.magic[15] == '1') {
3019 if (bsb.length == 0)
3020 continue;
3021 if (info->delta_disks >= 0) {
3022 /* reshape_progress is increasing */
3023 if (__le64_to_cpu(bsb.arraystart)
3024 + __le64_to_cpu(bsb.length)
3025 < info->reshape_progress) {
3026 nonew:
3027 if (verbose)
3028 fprintf(stderr, Name
3029 ": backup-metadata found on %s but is not needed\n", devname);
3030 continue; /* No new data here */
3031 }
3032 } else {
3033 /* reshape_progress is decreasing */
3034 if (__le64_to_cpu(bsb.arraystart) >=
3035 info->reshape_progress)
3036 goto nonew; /* No new data here */
3037 }
3038 } else {
3039 if (bsb.length == 0 && bsb.length2 == 0)
3040 continue;
3041 if (info->delta_disks >= 0) {
3042 /* reshape_progress is increasing */
3043 if ((__le64_to_cpu(bsb.arraystart)
3044 + __le64_to_cpu(bsb.length)
3045 < info->reshape_progress)
3046 &&
3047 (__le64_to_cpu(bsb.arraystart2)
3048 + __le64_to_cpu(bsb.length2)
3049 < info->reshape_progress))
3050 goto nonew; /* No new data here */
3051 } else {
3052 /* reshape_progress is decreasing */
3053 if (__le64_to_cpu(bsb.arraystart) >=
3054 info->reshape_progress &&
3055 __le64_to_cpu(bsb.arraystart2) >=
3056 info->reshape_progress)
3057 goto nonew; /* No new data here */
3058 }
3059 }
3060 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
3061 second_fail:
3062 if (verbose)
3063 fprintf(stderr, Name
3064 ": Failed to verify secondary backup-metadata block on %s\n",
3065 devname);
3066 continue; /* Cannot seek */
3067 }
3068 /* There should be a duplicate backup superblock 4k before here */
3069 if (lseek64(fd, -4096, 1) < 0 ||
3070 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
3071 goto second_fail; /* Cannot find leading superblock */
3072 if (bsb.magic[15] == '1')
3073 bsbsize = offsetof(struct mdp_backup_super, pad1);
3074 else
3075 bsbsize = offsetof(struct mdp_backup_super, pad);
3076 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
3077 goto second_fail; /* Cannot find leading superblock */
3078
3079 /* Now need the data offsets for all devices. */
3080 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
3081 for(j=0; j<info->array.raid_disks; j++) {
3082 if (fdlist[j] < 0)
3083 continue;
3084 if (st->ss->load_super(st, fdlist[j], NULL))
3085 /* FIXME should be this be an error */
3086 continue;
3087 st->ss->getinfo_super(st, &dinfo, NULL);
3088 st->ss->free_super(st);
3089 offsets[j] = dinfo.data_offset * 512;
3090 }
3091 printf(Name ": restoring critical section\n");
3092
3093 if (restore_stripes(fdlist, offsets,
3094 info->array.raid_disks,
3095 info->new_chunk,
3096 info->new_level,
3097 info->new_layout,
3098 fd, __le64_to_cpu(bsb.devstart)*512,
3099 __le64_to_cpu(bsb.arraystart)*512,
3100 __le64_to_cpu(bsb.length)*512)) {
3101 /* didn't succeed, so giveup */
3102 if (verbose)
3103 fprintf(stderr, Name ": Error restoring backup from %s\n",
3104 devname);
3105 return 1;
3106 }
3107
3108 if (bsb.magic[15] == '2' &&
3109 restore_stripes(fdlist, offsets,
3110 info->array.raid_disks,
3111 info->new_chunk,
3112 info->new_level,
3113 info->new_layout,
3114 fd, __le64_to_cpu(bsb.devstart)*512 +
3115 __le64_to_cpu(bsb.devstart2)*512,
3116 __le64_to_cpu(bsb.arraystart2)*512,
3117 __le64_to_cpu(bsb.length2)*512)) {
3118 /* didn't succeed, so giveup */
3119 if (verbose)
3120 fprintf(stderr, Name ": Error restoring second backup from %s\n",
3121 devname);
3122 return 1;
3123 }
3124
3125
3126 /* Ok, so the data is restored. Let's update those superblocks. */
3127
3128 lo = hi = 0;
3129 if (bsb.length) {
3130 lo = __le64_to_cpu(bsb.arraystart);
3131 hi = lo + __le64_to_cpu(bsb.length);
3132 }
3133 if (bsb.magic[15] == '2' && bsb.length2) {
3134 unsigned long long lo1, hi1;
3135 lo1 = __le64_to_cpu(bsb.arraystart2);
3136 hi1 = lo1 + __le64_to_cpu(bsb.length2);
3137 if (lo == hi) {
3138 lo = lo1;
3139 hi = hi1;
3140 } else if (lo < lo1)
3141 hi = hi1;
3142 else
3143 lo = lo1;
3144 }
3145 if (lo < hi &&
3146 (info->reshape_progress < lo ||
3147 info->reshape_progress > hi))
3148 /* backup does not affect reshape_progress*/ ;
3149 else if (info->delta_disks >= 0) {
3150 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
3151 __le64_to_cpu(bsb.length);
3152 if (bsb.magic[15] == '2') {
3153 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
3154 __le64_to_cpu(bsb.length2);
3155 if (p2 > info->reshape_progress)
3156 info->reshape_progress = p2;
3157 }
3158 } else {
3159 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
3160 if (bsb.magic[15] == '2') {
3161 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
3162 if (p2 < info->reshape_progress)
3163 info->reshape_progress = p2;
3164 }
3165 }
3166 for (j=0; j<info->array.raid_disks; j++) {
3167 if (fdlist[j] < 0) continue;
3168 if (st->ss->load_super(st, fdlist[j], NULL))
3169 continue;
3170 st->ss->getinfo_super(st, &dinfo, NULL);
3171 dinfo.reshape_progress = info->reshape_progress;
3172 st->ss->update_super(st, &dinfo,
3173 "_reshape_progress",
3174 NULL,0, 0, NULL);
3175 st->ss->store_super(st, fdlist[j]);
3176 st->ss->free_super(st);
3177 }
3178 return 0;
3179 }
3180 /* Didn't find any backup data, try to see if any
3181 * was needed.
3182 */
3183 if (info->delta_disks < 0) {
3184 /* When shrinking, the critical section is at the end.
3185 * So see if we are before the critical section.
3186 */
3187 unsigned long long first_block;
3188 nstripe = ostripe = 0;
3189 first_block = 0;
3190 while (ostripe >= nstripe) {
3191 ostripe += info->array.chunk_size / 512;
3192 first_block = ostripe * odata;
3193 nstripe = first_block / ndata / (info->new_chunk/512) *
3194 (info->new_chunk/512);
3195 }
3196
3197 if (info->reshape_progress >= first_block)
3198 return 0;
3199 }
3200 if (info->delta_disks > 0) {
3201 /* See if we are beyond the critical section. */
3202 unsigned long long last_block;
3203 nstripe = ostripe = 0;
3204 last_block = 0;
3205 while (nstripe >= ostripe) {
3206 nstripe += info->new_chunk / 512;
3207 last_block = nstripe * ndata;
3208 ostripe = last_block / odata / (info->array.chunk_size/512) *
3209 (info->array.chunk_size/512);
3210 }
3211
3212 if (info->reshape_progress >= last_block)
3213 return 0;
3214 }
3215 /* needed to recover critical section! */
3216 if (verbose)
3217 fprintf(stderr, Name ": Failed to find backup of critical section\n");
3218 return 1;
3219 }
3220
3221 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
3222 char *backup_file)
3223 {
3224 int err = sysfs_set_str(info, NULL, "array_state", "readonly");
3225 if (err)
3226 return err;
3227 return reshape_array(NULL, mdfd, "array", st, info, 1, backup_file, 0, 0, 1);
3228 }
3229
3230