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