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