]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
Merge branch 'master' into devel-3.1
[thirdparty/mdadm.git] / Grow.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 * Author: Neil Brown
22 * Email: <neilb@suse.de>
23 */
24 #include "mdadm.h"
25 #include "dlink.h"
26 #include <sys/mman.h>
27
28 #if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
29 #error no endian defined
30 #endif
31 #include "md_u.h"
32 #include "md_p.h"
33
34 #ifndef offsetof
35 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
36 #endif
37
38 int Grow_Add_device(char *devname, int fd, char *newdev)
39 {
40 /* Add a device to an active array.
41 * Currently, just extend a linear array.
42 * This requires writing a new superblock on the
43 * new device, calling the kernel to add the device,
44 * and if that succeeds, update the superblock on
45 * all other devices.
46 * This means that we need to *find* all other devices.
47 */
48 struct mdinfo info;
49
50 struct stat stb;
51 int nfd, fd2;
52 int d, nd;
53 struct supertype *st = NULL;
54
55
56 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
57 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
58 return 1;
59 }
60
61 st = super_by_fd(fd);
62 if (!st) {
63 fprintf(stderr, Name ": cannot handle arrays with superblock version %d\n", info.array.major_version);
64 return 1;
65 }
66
67 if (info.array.level != -1) {
68 fprintf(stderr, Name ": can only add devices to linear arrays\n");
69 return 1;
70 }
71
72 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
73 if (nfd < 0) {
74 fprintf(stderr, Name ": cannot open %s\n", newdev);
75 return 1;
76 }
77 fstat(nfd, &stb);
78 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
79 fprintf(stderr, Name ": %s is not a block device!\n", newdev);
80 close(nfd);
81 return 1;
82 }
83 /* now check out all the devices and make sure we can read the superblock */
84 for (d=0 ; d < info.array.raid_disks ; d++) {
85 mdu_disk_info_t disk;
86 char *dv;
87
88 disk.number = d;
89 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
90 fprintf(stderr, Name ": cannot get device detail for device %d\n",
91 d);
92 return 1;
93 }
94 dv = map_dev(disk.major, disk.minor, 1);
95 if (!dv) {
96 fprintf(stderr, Name ": cannot find device file for device %d\n",
97 d);
98 return 1;
99 }
100 fd2 = dev_open(dv, O_RDWR);
101 if (!fd2) {
102 fprintf(stderr, Name ": cannot open device file %s\n", dv);
103 return 1;
104 }
105 st->ss->free_super(st);
106
107 if (st->ss->load_super(st, fd2, NULL)) {
108 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
109 close(fd2);
110 return 1;
111 }
112 close(fd2);
113 }
114 /* Ok, looks good. Lets update the superblock and write it out to
115 * newdev.
116 */
117
118 info.disk.number = d;
119 info.disk.major = major(stb.st_rdev);
120 info.disk.minor = minor(stb.st_rdev);
121 info.disk.raid_disk = d;
122 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
123 st->ss->update_super(st, &info, "linear-grow-new", newdev,
124 0, 0, NULL);
125
126 if (st->ss->store_super(st, nfd)) {
127 fprintf(stderr, Name ": Cannot store new superblock on %s\n",
128 newdev);
129 close(nfd);
130 return 1;
131 }
132 close(nfd);
133
134 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
135 fprintf(stderr, Name ": Cannot add new disk to this array\n");
136 return 1;
137 }
138 /* Well, that seems to have worked.
139 * Now go through and update all superblocks
140 */
141
142 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
143 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
144 return 1;
145 }
146
147 nd = d;
148 for (d=0 ; d < info.array.raid_disks ; d++) {
149 mdu_disk_info_t disk;
150 char *dv;
151
152 disk.number = d;
153 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
154 fprintf(stderr, Name ": cannot get device detail for device %d\n",
155 d);
156 return 1;
157 }
158 dv = map_dev(disk.major, disk.minor, 1);
159 if (!dv) {
160 fprintf(stderr, Name ": cannot find device file for device %d\n",
161 d);
162 return 1;
163 }
164 fd2 = dev_open(dv, O_RDWR);
165 if (fd2 < 0) {
166 fprintf(stderr, Name ": cannot open device file %s\n", dv);
167 return 1;
168 }
169 if (st->ss->load_super(st, fd2, NULL)) {
170 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
171 close(fd);
172 return 1;
173 }
174 info.array.raid_disks = nd+1;
175 info.array.nr_disks = nd+1;
176 info.array.active_disks = nd+1;
177 info.array.working_disks = nd+1;
178
179 st->ss->update_super(st, &info, "linear-grow-update", dv,
180 0, 0, NULL);
181
182 if (st->ss->store_super(st, fd2)) {
183 fprintf(stderr, Name ": Cannot store new superblock on %s\n", dv);
184 close(fd2);
185 return 1;
186 }
187 close(fd2);
188 }
189
190 return 0;
191 }
192
193 int Grow_addbitmap(char *devname, int fd, char *file, int chunk, int delay, int write_behind, int force)
194 {
195 /*
196 * First check that array doesn't have a bitmap
197 * Then create the bitmap
198 * Then add it
199 *
200 * For internal bitmaps, we need to check the version,
201 * find all the active devices, and write the bitmap block
202 * to all devices
203 */
204 mdu_bitmap_file_t bmf;
205 mdu_array_info_t array;
206 struct supertype *st;
207 int major = BITMAP_MAJOR_HI;
208 int vers = md_get_version(fd);
209 unsigned long long bitmapsize, array_size;
210
211 if (vers < 9003) {
212 major = BITMAP_MAJOR_HOSTENDIAN;
213 #ifdef __BIG_ENDIAN
214 fprintf(stderr, Name ": Warning - bitmaps created on this kernel are not portable\n"
215 " between different architectured. Consider upgrading the Linux kernel.\n");
216 #endif
217 }
218
219 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
220 if (errno == ENOMEM)
221 fprintf(stderr, Name ": Memory allocation failure.\n");
222 else
223 fprintf(stderr, Name ": bitmaps not supported by this kernel.\n");
224 return 1;
225 }
226 if (bmf.pathname[0]) {
227 if (strcmp(file,"none")==0) {
228 if (ioctl(fd, SET_BITMAP_FILE, -1)!= 0) {
229 fprintf(stderr, Name ": failed to remove bitmap %s\n",
230 bmf.pathname);
231 return 1;
232 }
233 return 0;
234 }
235 fprintf(stderr, Name ": %s already has a bitmap (%s)\n",
236 devname, bmf.pathname);
237 return 1;
238 }
239 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
240 fprintf(stderr, Name ": cannot get array status for %s\n", devname);
241 return 1;
242 }
243 if (array.state & (1<<MD_SB_BITMAP_PRESENT)) {
244 if (strcmp(file, "none")==0) {
245 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
246 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
247 fprintf(stderr, Name ": failed to remove internal bitmap.\n");
248 return 1;
249 }
250 return 0;
251 }
252 fprintf(stderr, Name ": Internal bitmap already present on %s\n",
253 devname);
254 return 1;
255 }
256 if (array.level <= 0) {
257 fprintf(stderr, Name ": Bitmaps not meaningful with level %s\n",
258 map_num(pers, array.level)?:"of this array");
259 return 1;
260 }
261 bitmapsize = array.size;
262 bitmapsize <<= 1;
263 if (get_dev_size(fd, NULL, &array_size) &&
264 array_size > (0x7fffffffULL<<9)) {
265 /* Array is big enough that we cannot trust array.size
266 * try other approaches
267 */
268 bitmapsize = get_component_size(fd);
269 }
270 if (bitmapsize == 0) {
271 fprintf(stderr, Name ": Cannot reliably determine size of array to create bitmap - sorry.\n");
272 return 1;
273 }
274
275 if (array.level == 10) {
276 int ncopies = (array.layout&255)*((array.layout>>8)&255);
277 bitmapsize = bitmapsize * array.raid_disks / ncopies;
278 }
279
280 st = super_by_fd(fd);
281 if (!st) {
282 fprintf(stderr, Name ": Cannot understand version %d.%d\n",
283 array.major_version, array.minor_version);
284 return 1;
285 }
286 if (strcmp(file, "none") == 0) {
287 fprintf(stderr, Name ": no bitmap found on %s\n", devname);
288 return 1;
289 } else if (strcmp(file, "internal") == 0) {
290 int d;
291 for (d=0; d< st->max_devs; d++) {
292 mdu_disk_info_t disk;
293 char *dv;
294 disk.number = d;
295 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
296 continue;
297 if (disk.major == 0 &&
298 disk.minor == 0)
299 continue;
300 if ((disk.state & (1<<MD_DISK_SYNC))==0)
301 continue;
302 dv = map_dev(disk.major, disk.minor, 1);
303 if (dv) {
304 int fd2 = dev_open(dv, O_RDWR);
305 if (fd2 < 0)
306 continue;
307 if (st->ss->load_super(st, fd2, NULL)==0) {
308 if (st->ss->add_internal_bitmap(
309 st,
310 &chunk, delay, write_behind,
311 bitmapsize, 0, major)
312 )
313 st->ss->write_bitmap(st, fd2);
314 else {
315 fprintf(stderr, Name ": failed to create internal bitmap - chunksize problem.\n");
316 close(fd2);
317 return 1;
318 }
319 }
320 close(fd2);
321 }
322 }
323 array.state |= (1<<MD_SB_BITMAP_PRESENT);
324 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
325 fprintf(stderr, Name ": failed to set internal bitmap.\n");
326 return 1;
327 }
328 } else {
329 int uuid[4];
330 int bitmap_fd;
331 int d;
332 int max_devs = st->max_devs;
333
334 /* try to load a superblock */
335 for (d=0; d<max_devs; d++) {
336 mdu_disk_info_t disk;
337 char *dv;
338 int fd2;
339 disk.number = d;
340 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
341 continue;
342 if ((disk.major==0 && disk.minor==0) ||
343 (disk.state & (1<<MD_DISK_REMOVED)))
344 continue;
345 dv = map_dev(disk.major, disk.minor, 1);
346 if (!dv) continue;
347 fd2 = dev_open(dv, O_RDONLY);
348 if (fd2 >= 0 &&
349 st->ss->load_super(st, fd2, NULL) == 0) {
350 close(fd2);
351 st->ss->uuid_from_super(st, uuid);
352 break;
353 }
354 close(fd2);
355 }
356 if (d == max_devs) {
357 fprintf(stderr, Name ": cannot find UUID for array!\n");
358 return 1;
359 }
360 if (CreateBitmap(file, force, (char*)uuid, chunk,
361 delay, write_behind, bitmapsize, major)) {
362 return 1;
363 }
364 bitmap_fd = open(file, O_RDWR);
365 if (bitmap_fd < 0) {
366 fprintf(stderr, Name ": weird: %s cannot be opened\n",
367 file);
368 return 1;
369 }
370 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
371 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
372 devname, strerror(errno));
373 return 1;
374 }
375 }
376
377 return 0;
378 }
379
380
381 /*
382 * When reshaping an array we might need to backup some data.
383 * This is written to all spares with a 'super_block' describing it.
384 * The superblock goes 1K form the end of the used space on the
385 * device.
386 * It if written after the backup is complete.
387 * It has the following structure.
388 */
389
390 static struct mdp_backup_super {
391 char magic[16]; /* md_backup_data-1 or -2 */
392 __u8 set_uuid[16];
393 __u64 mtime;
394 /* start/sizes in 512byte sectors */
395 __u64 devstart; /* address on backup device/file of data */
396 __u64 arraystart;
397 __u64 length;
398 __u32 sb_csum; /* csum of preceeding bytes. */
399 __u32 pad1;
400 __u64 devstart2; /* offset in to data of second section */
401 __u64 arraystart2;
402 __u64 length2;
403 __u32 sb_csum2; /* csum of preceeding bytes. */
404 __u8 pad[512-68-32];
405 } __attribute__((aligned(512))) bsb, bsb2;
406
407 int bsb_csum(char *buf, int len)
408 {
409 int i;
410 int csum = 0;
411 for (i=0; i<len; i++)
412 csum = (csum<<3) + buf[0];
413 return __cpu_to_le32(csum);
414 }
415
416 static int child_grow(int afd, struct mdinfo *sra, unsigned long blocks,
417 int *fds, unsigned long long *offsets,
418 int disks, int chunk, int level, int layout, int data,
419 int dests, int *destfd, unsigned long long *destoffsets);
420 static int child_shrink(int afd, struct mdinfo *sra, unsigned long blocks,
421 int *fds, unsigned long long *offsets,
422 int disks, int chunk, int level, int layout, int data,
423 int dests, int *destfd, unsigned long long *destoffsets);
424 static int child_same_size(int afd, struct mdinfo *sra, unsigned long blocks,
425 int *fds, unsigned long long *offsets,
426 unsigned long long start,
427 int disks, int chunk, int level, int layout, int data,
428 int dests, int *destfd, unsigned long long *destoffsets);
429
430 int freeze_array(struct mdinfo *sra)
431 {
432 /* Try to freeze resync on this array.
433 * Return -1 if the array is busy,
434 * return 0 if this kernel doesn't support 'frozen'
435 * return 1 if it worked.
436 */
437 char buf[20];
438 if (sysfs_get_str(sra, NULL, "sync_action", buf, 20) <= 0)
439 return 0;
440 if (strcmp(buf, "idle\n") != 0 &&
441 strcmp(buf, "frozen\n") != 0)
442 return -1;
443 if (sysfs_set_str(sra, NULL, "sync_action", "frozen") < 0)
444 return 0;
445 return 1;
446 }
447
448 void unfreeze_array(struct mdinfo *sra, int frozen)
449 {
450 /* If 'frozen' is 1, unfreeze the array */
451 if (frozen > 0)
452 sysfs_set_str(sra, NULL, "sync_action", "idle");
453 }
454
455 void wait_reshape(struct mdinfo *sra)
456 {
457 int fd = sysfs_get_fd(sra, NULL, "sync_action");
458 char action[20];
459
460 do {
461 fd_set rfds;
462 FD_ZERO(&rfds);
463 FD_SET(fd, &rfds);
464 select(fd+1, NULL, NULL, &rfds, NULL);
465
466 if (sysfs_fd_get_str(fd, action, 20) < 0) {
467 close(fd);
468 return;
469 }
470 } while (strncmp(action, "reshape", 7) == 0);
471 }
472
473
474 int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
475 long long size,
476 int level, char *layout_str, int chunksize, int raid_disks)
477 {
478 /* Make some changes in the shape of an array.
479 * The kernel must support the change.
480 *
481 * There are three different changes. Each can trigger
482 * a resync or recovery so we freeze that until we have
483 * requested everything (if kernel supports freezing - 2.6.30).
484 * The steps are:
485 * - change size (i.e. component_size)
486 * - change level
487 * - change layout/chunksize/ndisks
488 *
489 * The last can require a reshape. It is different on different
490 * levels so we need to check the level before actioning it.
491 * Some times the level change needs to be requested after the
492 * reshape (e.g. raid6->raid5, raid5->raid0)
493 *
494 */
495 struct mdu_array_info_s array, orig;
496 char *c;
497 int rv = 0;
498 struct supertype *st;
499
500 int nchunk, ochunk;
501 int nlayout, olayout;
502 int ndisks, odisks;
503 int ndata, odata;
504 int orig_level = UnSet;
505 char alt_layout[40];
506 int *fdlist;
507 unsigned long long *offsets;
508 int d, i;
509 int nrdisks;
510 int err;
511 int frozen;
512 unsigned long a,b, blocks, stripes;
513 int cache;
514 unsigned long long array_size;
515 int changed = 0;
516 int done;
517
518 struct mdinfo *sra;
519 struct mdinfo *sd;
520
521 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
522 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
523 devname);
524 return 1;
525 }
526
527 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
528 get_linux_version() < 2006032 &&
529 !check_env("MDADM_FORCE_FEWER")) {
530 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
531 " Please use a newer kernel\n");
532 return 1;
533 }
534 sra = sysfs_read(fd, 0, GET_LEVEL);
535 frozen = freeze_array(sra);
536 if (frozen < 0) {
537 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
538 " be reshaped\n", devname);
539 return 1;
540 }
541
542 /* ========= set size =============== */
543 if (size >= 0 && (size == 0 || size != array.size)) {
544 array.size = size;
545 if (array.size != size) {
546 /* got truncated to 32bit, write to
547 * component_size instead
548 */
549 if (sra)
550 rv = sysfs_set_num(sra, NULL,
551 "component_size", size);
552 else
553 rv = -1;
554 } else
555 rv = ioctl(fd, SET_ARRAY_INFO, &array);
556 if (rv != 0) {
557 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
558 devname, strerror(errno));
559 rv = 1;
560 goto release;
561 }
562 ioctl(fd, GET_ARRAY_INFO, &array);
563 if (!quiet)
564 fprintf(stderr, Name ": component size of %s has been set to %dK\n",
565 devname, array.size);
566 changed = 1;
567 }
568
569 /* ======= set level =========== */
570 if (level != UnSet && level != array.level) {
571 /* Trying to change the level.
572 * We might need to change layout first and schedule a
573 * level change for later.
574 * Level changes that can happen immediately are:
575 * 0->4,5,6 1->5 4->5,6 5->1,6
576 * Level changes that need a layout change first are:
577 * 6->5,4,0 : need a -6 layout, or parity-last
578 * 5->4,0 : need parity-last
579 */
580 if ((array.level == 6 || array.level == 5) &&
581 (level == 5 || level == 4 || level == 0)) {
582 /* Don't change level yet, but choose intermediate
583 * layout
584 */
585 if (level == 5) {
586 if (layout_str == NULL)
587 switch (array.layout) {
588 case ALGORITHM_LEFT_ASYMMETRIC:
589 case ALGORITHM_LEFT_ASYMMETRIC_6:
590 case ALGORITHM_ROTATING_N_RESTART:
591 layout_str = "left-asymmetric-6";
592 break;
593 case ALGORITHM_LEFT_SYMMETRIC:
594 case ALGORITHM_LEFT_SYMMETRIC_6:
595 case ALGORITHM_ROTATING_N_CONTINUE:
596 layout_str = "left-symmetric-6";
597 break;
598 case ALGORITHM_RIGHT_ASYMMETRIC:
599 case ALGORITHM_RIGHT_ASYMMETRIC_6:
600 case ALGORITHM_ROTATING_ZERO_RESTART:
601 layout_str = "right-asymmetric-6";
602 break;
603 case ALGORITHM_RIGHT_SYMMETRIC:
604 case ALGORITHM_RIGHT_SYMMETRIC_6:
605 layout_str = "right-symmetric-6";
606 break;
607 case ALGORITHM_PARITY_0:
608 case ALGORITHM_PARITY_0_6:
609 layout_str = "parity-first-6";
610 break;
611 case ALGORITHM_PARITY_N:
612 layout_str = "parity-last";
613 break;
614 default:
615 fprintf(stderr, Name ": %s: cannot"
616 "convert layout to RAID5 equivalent\n",
617 devname);
618 rv = 1;
619 goto release;
620 }
621 else {
622 int l = map_name(r5layout, layout_str);
623 if (l == UnSet) {
624 fprintf(stderr, Name ": %s: layout '%s' not recognised\n",
625 devname, layout_str);
626 rv = 1;
627 goto release;
628 }
629 if (l != ALGORITHM_PARITY_N) {
630 /* need the -6 version */
631 char *ls = map_num(r5layout, l);
632 strcat(strcpy(alt_layout, ls),
633 "-6");
634 layout_str = alt_layout;
635 }
636 }
637 if (raid_disks)
638 /* The final raid6->raid5 conversion
639 * will reduce the number of disks,
640 * so now we need to aim higher
641 */
642 raid_disks++;
643 } else
644 layout_str = "parity-last";
645 } else {
646 c = map_num(pers, level);
647 if (c == NULL)
648 return 1;/* not possible */
649 err = sysfs_set_str(sra, NULL, "level", c);
650 if (err) {
651 fprintf(stderr, Name ": %s: could not set level to %s\n",
652 devname, c);
653 rv = 1;
654 goto release;
655 }
656 orig = array;
657 orig_level = orig.level;
658 ioctl(fd, GET_ARRAY_INFO, &array);
659 if (layout_str == NULL &&
660 orig.level == 5 && level == 6 &&
661 array.layout != orig.layout)
662 layout_str = map_num(r5layout, orig.layout);
663 if (!quiet)
664 fprintf(stderr, Name " level of %s changed to %s\n",
665 devname, c);
666 changed = 1;
667 }
668 }
669
670 /* ========= set shape (chunk_size / layout / ndisks) ============== */
671 /* Check if layout change is a no-op */
672 if (layout_str) switch(array.level) {
673 case 5:
674 if (array.layout == map_name(r5layout, layout_str))
675 layout_str = NULL;
676 break;
677 case 6:
678 if (layout_str == NULL &&
679 ((chunksize && chunksize * 1024 != array.chunk_size) ||
680 (raid_disks && raid_disks != array.raid_disks)) &&
681 array.layout >= 16) {
682 fprintf(stderr, Name
683 ": %s has a non-standard layout. If you wish to preserve this\n"
684 " during the reshape, please specify --layout=preserve\n"
685 " If you want to change it, specify a layout or use --layout=normalise\n",
686 devname);
687 rv = 1;
688 goto release;
689 }
690 if (strcmp(layout_str, "normalise") == 0 ||
691 strcmp(layout_str, "normalize") == 0) {
692 char *hyphen;
693 strcpy(alt_layout, map_num(r6layout, array.layout));
694 hyphen = strrchr(alt_layout, '-');
695 if (hyphen && strcmp(hyphen, "-6") == 0) {
696 *hyphen = 0;
697 layout_str = alt_layout;
698 }
699 }
700
701 if (array.layout == map_name(r6layout, layout_str))
702 layout_str = NULL;
703 if (layout_str && strcmp(layout_str, "preserve") == 0)
704 layout_str = NULL;
705 break;
706 }
707 if (layout_str == NULL
708 && (chunksize == 0 || chunksize*1024 == array.chunk_size)
709 && (raid_disks == 0 || raid_disks == array.raid_disks)) {
710 rv = 0;
711 if (level != UnSet && level != array.level) {
712 /* Looks like this level change doesn't need
713 * a reshape after all.
714 */
715 c = map_num(pers, level);
716 if (c) {
717 rv = sysfs_set_str(sra, NULL, "level", c);
718 if (rv)
719 fprintf(stderr, Name ": %s: could not set level to %s\n",
720 devname, c);
721 }
722 } else if (!changed && !quiet)
723 fprintf(stderr, Name ": %s: no change requested\n",
724 devname);
725 goto release;
726 }
727
728 c = map_num(pers, array.level);
729 if (c == NULL) c = "-unknown-";
730 switch(array.level) {
731 default: /* raid0, linear, multipath cannot be reconfigured */
732 fprintf(stderr, Name ": %s array %s cannot be reshaped.\n",
733 c, devname);
734 rv = 1;
735 break;
736
737 case LEVEL_FAULTY: /* only 'layout' change is permitted */
738
739 if (chunksize || raid_disks) {
740 fprintf(stderr, Name ": %s: Cannot change chunksize or disks of a 'faulty' array\n",
741 devname);
742 rv = 1;
743 break;
744 }
745 if (layout_str == NULL)
746 break; /* nothing to do.... */
747
748 array.layout = parse_layout_faulty(layout_str);
749 if (array.layout < 0) {
750 int rv;
751 fprintf(stderr, Name ": %s: layout %s not understood for 'faulty' array\n",
752 devname, layout_str);
753 rv = 1;
754 break;
755 }
756 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
757 fprintf(stderr, Name ": Cannot set layout for %s: %s\n",
758 devname, strerror(errno));
759 rv = 1;
760 } else if (!quiet)
761 printf("layout for %s set to %d\n", devname, array.layout);
762 break;
763
764 case 1: /* only raid_disks can each be changed. */
765
766 if (chunksize || layout_str != NULL) {
767 fprintf(stderr, Name ": %s: Cannot change chunk size or layout for a RAID1 array.\n",
768 devname);
769 rv = 1;
770 break;
771 }
772 if (raid_disks > 0) {
773 array.raid_disks = raid_disks;
774 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
775 fprintf(stderr, Name ": Cannot set raid-devices for %s: %s\n",
776 devname, strerror(errno));
777 rv = 1;
778 }
779 }
780 break;
781
782 case 4:
783 case 5:
784 case 6:
785
786 /*
787 * layout/chunksize/raid_disks can be changed
788 * though the kernel may not support it all.
789 */
790 st = super_by_fd(fd);
791
792 /*
793 * There are three possibilities.
794 * 1/ The array will shrink.
795 * We need to ensure the reshape will pause before reaching
796 * the 'critical section'. We also need to fork and wait for
797 * that to happen. When it does we
798 * suspend/backup/complete/unfreeze
799 *
800 * 2/ The array will not change size.
801 * This requires that we keep a backup of a sliding window
802 * so that we can restore data after a crash. So we need
803 * to fork and monitor progress.
804 *
805 * 3/ The array will grow. This is relatively easy.
806 * However the kernel's restripe routines will cheerfully
807 * overwrite some early data before it is safe. So we
808 * need to make a backup of the early parts of the array
809 * and be ready to restore it if rebuild aborts very early.
810 *
811 * We backup data by writing it to one spare, or to a
812 * file which was given on command line.
813 *
814 * [FOLLOWING IS OLD AND PARTLY WRONG]
815 * So: we enumerate the devices in the array and
816 * make sure we can open all of them.
817 * Then we freeze the early part of the array and
818 * backup to the various spares.
819 * Then we request changes and start the reshape.
820 * Monitor progress until it has passed the danger zone.
821 * and finally invalidate the copied data and unfreeze the
822 * start of the array.
823 *
824 * In each case, we first make sure that storage is available
825 * for the required backup.
826 * Then we:
827 * - request the shape change.
828 * - for to handle backup etc.
829 */
830 nchunk = ochunk = array.chunk_size;
831 nlayout = olayout = array.layout;
832 ndisks = odisks = array.raid_disks;
833
834 if (chunksize) {
835 nchunk = chunksize * 1024;
836 if (array.size % chunksize) {
837 fprintf(stderr, Name ": component size %dK is not"
838 " a multiple of chunksize %dK\n",
839 array.size, chunksize);
840 break;
841 }
842 }
843 if (layout_str != NULL)
844 switch(array.level) {
845 case 4: /* ignore layout */
846 break;
847 case 5:
848 nlayout = map_name(r5layout, layout_str);
849 if (nlayout == UnSet) {
850 fprintf(stderr, Name ": layout %s not understood for raid5.\n",
851 layout_str);
852 return 1;
853 }
854 break;
855
856 case 6:
857 nlayout = map_name(r6layout, layout_str);
858 if (nlayout == UnSet) {
859 fprintf(stderr, Name ": layout %s not understood for raid6.\n",
860 layout_str);
861 return 1;
862 }
863 break;
864 }
865 if (raid_disks) ndisks = raid_disks;
866
867 odata = odisks-1;
868 ndata = ndisks-1;
869 if (array.level == 6) {
870 odata--; /* number of data disks */
871 ndata--;
872 }
873
874 /* Check that we can hold all the data */
875 size = ndata * array.size;
876 get_dev_size(fd, NULL, &array_size);
877 if (size < (array_size/1024)) {
878 fprintf(stderr, Name ": this change will reduce the size of the array.\n"
879 " use --grow --array-size first to truncate array.\n"
880 " e.g. mdadm --grow %s --array-size %llu\n",
881 devname, size);
882 rv = 1;
883 break;
884 }
885
886 /* So how much do we need to backup.
887 * We need an amount of data which is both a whole number of
888 * old stripes and a whole number of new stripes.
889 * So LCM for (chunksize*datadisks).
890 */
891 a = ochunk/512 * odata;
892 b = nchunk/512 * ndata;
893 /* Find GCD */
894 while (a != b) {
895 if (a < b)
896 b -= a;
897 if (b < a)
898 a -= b;
899 }
900 /* LCM == product / GCD */
901 blocks = ochunk/512 * nchunk/512 * odata * ndata / a;
902
903 if (ndata == odata) {
904 /* Make 'blocks' bigger for better throughput, but
905 * not so big that we reject it below.
906 */
907 if (blocks * 32 < sra->component_size)
908 blocks *= 16;
909 } else
910 fprintf(stderr, Name ": Need to backup %luK of critical "
911 "section..\n", blocks/2);
912
913 sysfs_free(sra);
914 sra = sysfs_read(fd, 0,
915 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
916 GET_CACHE);
917 if (!sra) {
918 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
919 devname);
920 rv = 1;
921 break;
922 }
923
924 if (blocks >= sra->component_size/2) {
925 fprintf(stderr, Name ": %s: Something wrong - reshape aborted\n",
926 devname);
927 rv = 1;
928 break;
929 }
930 nrdisks = array.nr_disks + sra->array.spare_disks;
931 /* Now we need to open all these devices so we can read/write.
932 */
933 fdlist = malloc((1+nrdisks) * sizeof(int));
934 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
935 if (!fdlist || !offsets) {
936 fprintf(stderr, Name ": malloc failed: grow aborted\n");
937 rv = 1;
938 break;
939 }
940 for (d=0; d <= nrdisks; d++)
941 fdlist[d] = -1;
942 d = array.raid_disks;
943 for (sd = sra->devs; sd; sd=sd->next) {
944 if (sd->disk.state & (1<<MD_DISK_FAULTY))
945 continue;
946 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
947 char *dn = map_dev(sd->disk.major,
948 sd->disk.minor, 1);
949 fdlist[sd->disk.raid_disk]
950 = dev_open(dn, O_RDONLY);
951 offsets[sd->disk.raid_disk] = sd->data_offset*512;
952 if (fdlist[sd->disk.raid_disk] < 0) {
953 fprintf(stderr, Name ": %s: cannot open component %s\n",
954 devname, dn?dn:"-unknown-");
955 rv = 1;
956 goto release;
957 }
958 } else if (backup_file == NULL) {
959 /* spare */
960 char *dn = map_dev(sd->disk.major,
961 sd->disk.minor, 1);
962 fdlist[d] = dev_open(dn, O_RDWR);
963 offsets[d] = (sra->component_size - blocks - 8)*512;
964 if (fdlist[d]<0) {
965 fprintf(stderr, Name ": %s: cannot open component %s\n",
966 devname, dn?dn:"-unknown");
967 rv = 1;
968 goto release;
969 }
970 d++;
971 }
972 }
973 if (backup_file == NULL) {
974 if (ndata <= odata) {
975 fprintf(stderr, Name ": %s: Cannot grow - need backup-file\n",
976 devname);
977 rv = 1;
978 break;
979 } else if (sra->array.spare_disks == 0) {
980 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
981 "backup-file to backup critical section\n",
982 devname);
983 rv = 1;
984 break;
985 }
986 if (d == array.raid_disks) {
987 fprintf(stderr, Name ": %s: No spare device for backup\n",
988 devname);
989 rv = 1;
990 break;
991 }
992 } else {
993 /* need to check backup file is large enough */
994 char buf[512];
995 fdlist[d] = open(backup_file, O_RDWR|O_CREAT|O_EXCL,
996 S_IRUSR | S_IWUSR);
997 offsets[d] = 8 * 512;
998 if (fdlist[d] < 0) {
999 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1000 devname, backup_file, strerror(errno));
1001 rv = 1;
1002 break;
1003 }
1004 memset(buf, 0, 512);
1005 for (i=0; i < blocks + 1 ; i++) {
1006 if (write(fdlist[d], buf, 512) != 512) {
1007 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1008 devname, backup_file, strerror(errno));
1009 rv = 1;
1010 break;
1011 }
1012 }
1013 if (fsync(fdlist[d]) != 0) {
1014 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1015 devname, backup_file, strerror(errno));
1016 rv = 1;
1017 break;
1018 }
1019 d++;
1020 }
1021
1022 /* lastly, check that the internal stripe cache is
1023 * large enough, or it won't work.
1024 */
1025
1026 cache = (nchunk < ochunk) ? ochunk : nchunk;
1027 cache = cache * 4 / 4096;
1028 if (sra->cache_size < cache)
1029 sysfs_set_num(sra, NULL, "stripe_cache_size",
1030 cache+1);
1031 /* Right, everything seems fine. Let's kick things off.
1032 * If only changing raid_disks, use ioctl, else use
1033 * sysfs.
1034 */
1035 if (ochunk == nchunk && olayout == nlayout) {
1036 array.raid_disks = ndisks;
1037 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1038 rv = 1;
1039 fprintf(stderr, Name ": Cannot set device shape for %s: %s\n",
1040 devname, strerror(errno));
1041 if (ndisks < odisks &&
1042 get_linux_version() < 2006030)
1043 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
1044
1045 break;
1046 }
1047 } else {
1048 /* set them all just in case some old 'new_*' value
1049 * persists from some earlier problem
1050 */
1051 if (sysfs_set_num(sra, NULL, "chunk_size", nchunk) < 0)
1052 rv = 1;
1053 if (sysfs_set_num(sra, NULL, "layout", nlayout) < 0)
1054 rv = 1;
1055 if (sysfs_set_num(sra, NULL, "raid_disks", ndisks) < 0)
1056 rv = 1;
1057 if (rv) {
1058 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1059 devname);
1060 if (get_linux_version() < 2006030)
1061 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
1062 break;
1063 }
1064 }
1065
1066 if (ndisks == 2 && odisks == 2) {
1067 /* No reshape is needed in this trivial case */
1068 rv = 0;
1069 break;
1070 }
1071
1072 /* set up the backup-super-block. This requires the
1073 * uuid from the array.
1074 */
1075 /* Find a superblock */
1076 for (sd = sra->devs; sd; sd = sd->next) {
1077 char *dn;
1078 int devfd;
1079 int ok;
1080 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1081 continue;
1082 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
1083 devfd = dev_open(dn, O_RDONLY);
1084 if (devfd < 0)
1085 continue;
1086 ok = st->ss->load_super(st, devfd, NULL);
1087 close(devfd);
1088 if (ok >= 0)
1089 break;
1090 }
1091 if (!sd) {
1092 fprintf(stderr, Name ": %s: Cannot find a superblock\n",
1093 devname);
1094 rv = 1;
1095 break;
1096 }
1097
1098 memset(&bsb, 0, 512);
1099 memcpy(bsb.magic, "md_backup_data-1", 16);
1100 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
1101 bsb.mtime = __cpu_to_le64(time(0));
1102 bsb.devstart2 = blocks;
1103 stripes = blocks / (ochunk/512) / odata;
1104 /* Now we just need to kick off the reshape and watch, while
1105 * handling backups of the data...
1106 * This is all done by a forked background process.
1107 */
1108 switch(fork()) {
1109 case 0:
1110 close(fd);
1111 if (check_env("MDADM_GROW_VERIFY"))
1112 fd = open(devname, O_RDONLY | O_DIRECT);
1113 else
1114 fd = -1;
1115 mlockall(MCL_FUTURE);
1116
1117 if (odata < ndata)
1118 done = child_grow(fd, sra, stripes,
1119 fdlist, offsets,
1120 odisks, ochunk, array.level, olayout, odata,
1121 d - odisks, fdlist+odisks, offsets+odisks);
1122 else if (odata > ndata)
1123 done = child_shrink(fd, sra, stripes,
1124 fdlist, offsets,
1125 odisks, ochunk, array.level, olayout, odata,
1126 d - odisks, fdlist+odisks, offsets+odisks);
1127 else
1128 done = child_same_size(fd, sra, stripes,
1129 fdlist, offsets,
1130 0,
1131 odisks, ochunk, array.level, olayout, odata,
1132 d - odisks, fdlist+odisks, offsets+odisks);
1133 if (backup_file && done)
1134 unlink(backup_file);
1135 if (level != UnSet && level != array.level) {
1136 /* We need to wait for the reshape to finish
1137 * (which will have happened unless odata < ndata)
1138 * and then set the level
1139 */
1140
1141 c = map_num(pers, level);
1142 if (c == NULL)
1143 exit(0);/* not possible */
1144
1145 if (odata < ndata)
1146 wait_reshape(sra);
1147 err = sysfs_set_str(sra, NULL, "level", c);
1148 if (err)
1149 fprintf(stderr, Name ": %s: could not set level to %s\n",
1150 devname, c);
1151 }
1152 exit(0);
1153 case -1:
1154 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1155 strerror(errno));
1156 rv = 1;
1157 break;
1158 default:
1159 /* The child will take care of unfreezing the array */
1160 frozen = 0;
1161 break;
1162 }
1163 break;
1164
1165 }
1166
1167 release:
1168 if (rv && orig_level != UnSet && sra) {
1169 c = map_num(pers, orig_level);
1170 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
1171 fprintf(stderr, Name ": aborting level change\n");
1172 }
1173 if (sra)
1174 unfreeze_array(sra, frozen);
1175 return rv;
1176 }
1177
1178 /*
1179 * We run a child process in the background which performs the following
1180 * steps:
1181 * - wait for resync to reach a certain point
1182 * - suspend io to the following section
1183 * - backup that section
1184 * - allow resync to proceed further
1185 * - resume io
1186 * - discard the backup.
1187 *
1188 * When are combined in slightly different ways in the three cases.
1189 * Grow:
1190 * - suspend/backup/allow/wait/resume/discard
1191 * Shrink:
1192 * - allow/wait/suspend/backup/allow/wait/resume/discard
1193 * same-size:
1194 * - wait/resume/discard/suspend/backup/allow
1195 *
1196 * suspend/backup/allow always come together
1197 * wait/resume/discard do too.
1198 * For the same-size case we have two backups to improve flow.
1199 *
1200 */
1201
1202 int grow_backup(struct mdinfo *sra,
1203 unsigned long long offset, /* per device */
1204 unsigned long stripes, /* per device */
1205 int *sources, unsigned long long *offsets,
1206 int disks, int chunk, int level, int layout,
1207 int dests, int *destfd, unsigned long long *destoffsets,
1208 int part,
1209 char *buf)
1210 {
1211 /* Backup 'blocks' sectors at 'offset' on each device of the array,
1212 * to storage 'destfd' (offset 'destoffsets'), after first
1213 * suspending IO. Then allow resync to continue
1214 * over the suspended section.
1215 * Use part 'part' of the backup-super-block.
1216 */
1217 int odata = disks;
1218 int rv = 0;
1219 int i;
1220 //printf("offset %llu\n", offset);
1221 if (level >= 4)
1222 odata--;
1223 if (level == 6)
1224 odata--;
1225 sysfs_set_num(sra, NULL, "suspend_hi", (offset + stripes * chunk/512) * odata);
1226 if (part) {
1227 bsb.arraystart2 = __cpu_to_le64(offset * odata);
1228 bsb.length2 = __cpu_to_le64(stripes * chunk/512 * odata);
1229 } else {
1230 bsb.arraystart = __cpu_to_le64(offset * odata);
1231 bsb.length = __cpu_to_le64(stripes * chunk/512 * odata);
1232 }
1233 if (part)
1234 bsb.magic[15] = '2';
1235 for (i = 0; i < dests; i++)
1236 if (part)
1237 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
1238 else
1239 lseek64(destfd[i], destoffsets[i], 0);
1240
1241 rv = save_stripes(sources, offsets,
1242 disks, chunk, level, layout,
1243 dests, destfd,
1244 offset*512*odata, stripes * chunk * odata,
1245 buf);
1246
1247 if (rv)
1248 return rv;
1249 bsb.mtime = __cpu_to_le64(time(0));
1250 for (i = 0; i < dests; i++) {
1251 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1252
1253 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1254 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1255 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1256 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1257
1258 lseek64(destfd[i], destoffsets[i] - 4096, 0);
1259 write(destfd[i], &bsb, 512);
1260 fsync(destfd[i]);
1261 }
1262
1263 return 0;
1264 }
1265
1266 /* in 2.6.30, the value reported by sync_completed can be
1267 * less that it should be by one stripe.
1268 * This only happens when reshape hits sync_max and pauses.
1269 * So allow wait_backup to either extent sync_max further
1270 * than strictly necessary, or return before the
1271 * sync has got quite as far as we would really like.
1272 * This is what 'blocks2' is for.
1273 * The various caller give appropriate values so that
1274 * every works.
1275 */
1276 int wait_backup(struct mdinfo *sra,
1277 unsigned long long offset, /* per device */
1278 unsigned long long blocks, /* per device */
1279 unsigned long long blocks2, /* per device - hack */
1280 int dests, int *destfd, unsigned long long *destoffsets,
1281 int part)
1282 {
1283 /* Wait for resync to pass the section that was backed up
1284 * then erase the backup and allow IO
1285 */
1286 int fd = sysfs_get_fd(sra, NULL, "sync_completed");
1287 unsigned long long completed;
1288 int i;
1289
1290 if (fd < 0)
1291 return -1;
1292 sysfs_set_num(sra, NULL, "sync_max", offset + blocks + blocks2);
1293 if (offset == 0)
1294 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1295 do {
1296 char action[20];
1297 fd_set rfds;
1298 FD_ZERO(&rfds);
1299 FD_SET(fd, &rfds);
1300 select(fd+1, NULL, NULL, &rfds, NULL);
1301 if (sysfs_fd_get_ll(fd, &completed) < 0) {
1302 close(fd);
1303 return -1;
1304 }
1305 if (sysfs_get_str(sra, NULL, "sync_action",
1306 action, 20) > 0 &&
1307 strncmp(action, "reshape", 7) != 0)
1308 break;
1309 } while (completed < offset + blocks);
1310 close(fd);
1311
1312 if (part) {
1313 bsb.arraystart2 = __cpu_to_le64(0);
1314 bsb.length2 = __cpu_to_le64(0);
1315 } else {
1316 bsb.arraystart = __cpu_to_le64(0);
1317 bsb.length = __cpu_to_le64(0);
1318 }
1319 bsb.mtime = __cpu_to_le64(time(0));
1320 for (i = 0; i < dests; i++) {
1321 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1322 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1323 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1324 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1325 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1326 lseek64(destfd[i], destoffsets[i]-4096, 0);
1327 write(destfd[i], &bsb, 512);
1328 fsync(destfd[i]);
1329 }
1330 return 0;
1331 }
1332
1333 static void fail(char *msg)
1334 {
1335 write(2, msg, strlen(msg));
1336 write(2, "\n", 1);
1337 exit(1);
1338 }
1339
1340 static char *abuf, *bbuf;
1341 static int abuflen;
1342 static void validate(int afd, int bfd, unsigned long long offset)
1343 {
1344 /* check that the data in the backup against the array.
1345 * This is only used for regression testing and should not
1346 * be used while the array is active
1347 */
1348 if (afd < 0)
1349 return;
1350 lseek64(bfd, offset - 4096, 0);
1351 if (read(bfd, &bsb2, 512) != 512)
1352 fail("cannot read bsb");
1353 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
1354 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
1355 fail("first csum bad");
1356 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
1357 fail("magic is bad");
1358 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
1359 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
1360 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
1361 fail("second csum bad");
1362
1363 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
1364 fail("devstart is wrong");
1365
1366 if (bsb2.length) {
1367 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
1368
1369 if (abuflen < len) {
1370 free(abuf);
1371 free(bbuf);
1372 abuflen = len;
1373 posix_memalign((void**)&abuf, 4096, abuflen);
1374 posix_memalign((void**)&bbuf, 4096, abuflen);
1375 }
1376
1377 lseek64(bfd, offset, 0);
1378 if (read(bfd, bbuf, len) != len) {
1379 printf("len %llu\n", len);
1380 fail("read first backup failed");
1381 }
1382 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
1383 if (read(afd, abuf, len) != len)
1384 fail("read first from array failed");
1385 if (memcmp(bbuf, abuf, len) != 0) {
1386 int i;
1387 printf("offset=%llu len=%llu\n",
1388 __le64_to_cpu(bsb2.arraystart)*512, len);
1389 for (i=0; i<len; i++)
1390 if (bbuf[i] != abuf[i]) {
1391 printf("first diff byte %d\n", i);
1392 break;
1393 }
1394 fail("data1 compare failed");
1395 }
1396 }
1397 if (bsb2.length2) {
1398 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
1399
1400 if (abuflen < len) {
1401 free(abuf);
1402 free(bbuf);
1403 abuflen = len;
1404 abuf = malloc(abuflen);
1405 bbuf = malloc(abuflen);
1406 }
1407
1408 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
1409 if (read(bfd, bbuf, len) != len)
1410 fail("read second backup failed");
1411 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
1412 if (read(afd, abuf, len) != len)
1413 fail("read second from array failed");
1414 if (memcmp(bbuf, abuf, len) != 0)
1415 fail("data2 compare failed");
1416 }
1417 }
1418
1419 static int child_grow(int afd, struct mdinfo *sra, unsigned long stripes,
1420 int *fds, unsigned long long *offsets,
1421 int disks, int chunk, int level, int layout, int data,
1422 int dests, int *destfd, unsigned long long *destoffsets)
1423 {
1424 char *buf;
1425
1426 posix_memalign((void**)&buf, 4096, disks * chunk);
1427 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1428 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1429 grow_backup(sra, 0, stripes,
1430 fds, offsets, disks, chunk, level, layout,
1431 dests, destfd, destoffsets,
1432 0, buf);
1433 validate(afd, destfd[0], destoffsets[0]);
1434 wait_backup(sra, 0, stripes * chunk / 512, stripes * chunk / 512,
1435 dests, destfd, destoffsets,
1436 0);
1437 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1438 free(buf);
1439 /* FIXME this should probably be numeric */
1440 sysfs_set_str(sra, NULL, "sync_max", "max");
1441 return 1;
1442 }
1443
1444 static int child_shrink(int afd, struct mdinfo *sra, unsigned long stripes,
1445 int *fds, unsigned long long *offsets,
1446 int disks, int chunk, int level, int layout, int data,
1447 int dests, int *destfd, unsigned long long *destoffsets)
1448 {
1449 char *buf;
1450 unsigned long long start;
1451 int rv;
1452
1453 posix_memalign((void**)&buf, 4096, disks * chunk);
1454 start = sra->component_size - stripes * chunk/512;
1455 sysfs_set_num(sra, NULL, "sync_max", start);
1456 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1457 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1458 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1459 rv = wait_backup(sra, 0, start - stripes * chunk/512, stripes * chunk/512,
1460 dests, destfd, destoffsets, 0);
1461 if (rv < 0)
1462 return 0;
1463 grow_backup(sra, 0, stripes,
1464 fds, offsets,
1465 disks, chunk, level, layout,
1466 dests, destfd, destoffsets,
1467 0, buf);
1468 validate(afd, destfd[0], destoffsets[0]);
1469 wait_backup(sra, start, stripes*chunk/512, 0,
1470 dests, destfd, destoffsets, 0);
1471 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1472 free(buf);
1473 /* FIXME this should probably be numeric */
1474 sysfs_set_str(sra, NULL, "sync_max", "max");
1475 return 1;
1476 }
1477
1478 static int child_same_size(int afd, struct mdinfo *sra, unsigned long stripes,
1479 int *fds, unsigned long long *offsets,
1480 unsigned long long start,
1481 int disks, int chunk, int level, int layout, int data,
1482 int dests, int *destfd, unsigned long long *destoffsets)
1483 {
1484 unsigned long long size;
1485 unsigned long tailstripes = stripes;
1486 int part;
1487 char *buf;
1488 unsigned long long speed;
1489
1490
1491 posix_memalign((void**)&buf, 4096, disks * chunk);
1492
1493 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1494 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1495
1496 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
1497 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
1498
1499 grow_backup(sra, start, stripes,
1500 fds, offsets,
1501 disks, chunk, level, layout,
1502 dests, destfd, destoffsets,
1503 0, buf);
1504 grow_backup(sra, (start + stripes) * chunk/512, stripes,
1505 fds, offsets,
1506 disks, chunk, level, layout,
1507 dests, destfd, destoffsets,
1508 1, buf);
1509 validate(afd, destfd[0], destoffsets[0]);
1510 part = 0;
1511 start += stripes * 2; /* where to read next */
1512 size = sra->component_size / (chunk/512);
1513 while (start < size) {
1514 if (wait_backup(sra, (start-stripes*2)*chunk/512,
1515 stripes*chunk/512, 0,
1516 dests, destfd, destoffsets,
1517 part) < 0)
1518 return 0;
1519 sysfs_set_num(sra, NULL, "suspend_lo", start*chunk/512 * data);
1520 if (start + stripes > size)
1521 tailstripes = (size - start);
1522
1523 grow_backup(sra, start*chunk/512, tailstripes,
1524 fds, offsets,
1525 disks, chunk, level, layout,
1526 dests, destfd, destoffsets,
1527 part, buf);
1528 start += stripes;
1529 part = 1 - part;
1530 validate(afd, destfd[0], destoffsets[0]);
1531 }
1532 if (wait_backup(sra, (start-stripes*2) * chunk/512, stripes * chunk/512, 0,
1533 dests, destfd, destoffsets,
1534 part) < 0)
1535 return 0;
1536 sysfs_set_num(sra, NULL, "suspend_lo", ((start-stripes)*chunk/512) * data);
1537 wait_backup(sra, (start-stripes) * chunk/512, tailstripes * chunk/512, 0,
1538 dests, destfd, destoffsets,
1539 1-part);
1540 sysfs_set_num(sra, NULL, "suspend_lo", (size*chunk/512) * data);
1541 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
1542 free(buf);
1543 return 1;
1544 }
1545
1546 /*
1547 * If any spare contains md_back_data-1 which is recent wrt mtime,
1548 * write that data into the array and update the super blocks with
1549 * the new reshape_progress
1550 */
1551 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
1552 char *backup_file, int verbose)
1553 {
1554 int i, j;
1555 int old_disks;
1556 unsigned long long *offsets;
1557 unsigned long long nstripe, ostripe;
1558 int ndata, odata;
1559
1560 if (info->new_level != info->array.level)
1561 return 1; /* Cannot handle level changes (they are instantaneous) */
1562
1563 odata = info->array.raid_disks - info->delta_disks - 1;
1564 if (info->array.level == 6) odata--; /* number of data disks */
1565 ndata = info->array.raid_disks - 1;
1566 if (info->new_level == 6) ndata--;
1567
1568 old_disks = info->array.raid_disks - info->delta_disks;
1569
1570 if (info->delta_disks <= 0)
1571 /* Didn't grow, so the backup file must have
1572 * been used
1573 */
1574 old_disks = cnt;
1575 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
1576 struct mdinfo dinfo;
1577 char buf[4096];
1578 int fd;
1579 int bsbsize;
1580 char *devname, namebuf[20];
1581
1582 /* This was a spare and may have some saved data on it.
1583 * Load the superblock, find and load the
1584 * backup_super_block.
1585 * If either fail, go on to next device.
1586 * If the backup contains no new info, just return
1587 * else restore data and update all superblocks
1588 */
1589 if (i == old_disks-1) {
1590 fd = open(backup_file, O_RDONLY);
1591 if (fd<0) {
1592 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
1593 backup_file, strerror(errno));
1594 continue;
1595 }
1596 devname = backup_file;
1597 } else {
1598 fd = fdlist[i];
1599 if (fd < 0)
1600 continue;
1601 if (st->ss->load_super(st, fd, NULL))
1602 continue;
1603
1604 st->ss->getinfo_super(st, &dinfo);
1605 st->ss->free_super(st);
1606
1607 if (lseek64(fd,
1608 (dinfo.data_offset + dinfo.component_size - 8) <<9,
1609 0) < 0) {
1610 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
1611 continue; /* Cannot seek */
1612 }
1613 sprintf(namebuf, "device-%d", i);
1614 devname = namebuf;
1615 }
1616 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
1617 if (verbose)
1618 fprintf(stderr, Name ": Cannot read from %s\n", devname);
1619 continue; /* Cannot read */
1620 }
1621 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
1622 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
1623 if (verbose)
1624 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
1625 continue;
1626 }
1627 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
1628 if (verbose)
1629 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
1630 continue; /* bad checksum */
1631 }
1632 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
1633 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
1634 if (verbose)
1635 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
1636 continue; /* Bad second checksum */
1637 }
1638 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
1639 if (verbose)
1640 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
1641 continue; /* Wrong uuid */
1642 }
1643
1644 if (info->array.utime > __le64_to_cpu(bsb.mtime) + 10*60 ||
1645 info->array.utime < __le64_to_cpu(bsb.mtime) - 10*60) {
1646 if (verbose)
1647 fprintf(stderr, Name ": too-old timestamp on backup-metadata on %s\n", devname);
1648 continue; /* time stamp is too bad */
1649 }
1650
1651 if (bsb.magic[15] == '1') {
1652 if (info->delta_disks >= 0) {
1653 /* reshape_progress is increasing */
1654 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
1655 info->reshape_progress) {
1656 nonew:
1657 if (verbose)
1658 fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
1659 continue; /* No new data here */
1660 }
1661 } else {
1662 /* reshape_progress is decreasing */
1663 if (__le64_to_cpu(bsb.arraystart) >=
1664 info->reshape_progress)
1665 goto nonew; /* No new data here */
1666 }
1667 } else {
1668 if (info->delta_disks >= 0) {
1669 /* reshape_progress is increasing */
1670 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
1671 info->reshape_progress &&
1672 __le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
1673 info->reshape_progress)
1674 goto nonew; /* No new data here */
1675 } else {
1676 /* reshape_progress is decreasing */
1677 if (__le64_to_cpu(bsb.arraystart) >=
1678 info->reshape_progress &&
1679 __le64_to_cpu(bsb.arraystart2) >=
1680 info->reshape_progress)
1681 goto nonew; /* No new data here */
1682 }
1683 }
1684 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
1685 second_fail:
1686 if (verbose)
1687 fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
1688 devname);
1689 continue; /* Cannot seek */
1690 }
1691 /* There should be a duplicate backup superblock 4k before here */
1692 if (lseek64(fd, -4096, 1) < 0 ||
1693 read(fd, buf, 4096) != 4096)
1694 goto second_fail; /* Cannot find leading superblock */
1695 if (bsb.magic[15] == '1')
1696 bsbsize = offsetof(struct mdp_backup_super, pad1);
1697 else
1698 bsbsize = offsetof(struct mdp_backup_super, pad);
1699 if (memcmp(buf, &bsb, bsbsize) != 0)
1700 goto second_fail; /* Cannot find leading superblock */
1701
1702 /* Now need the data offsets for all devices. */
1703 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
1704 for(j=0; j<info->array.raid_disks; j++) {
1705 if (fdlist[j] < 0)
1706 continue;
1707 if (st->ss->load_super(st, fdlist[j], NULL))
1708 /* FIXME should be this be an error */
1709 continue;
1710 st->ss->getinfo_super(st, &dinfo);
1711 st->ss->free_super(st);
1712 offsets[j] = dinfo.data_offset;
1713 }
1714 printf(Name ": restoring critical section\n");
1715
1716 if (restore_stripes(fdlist, offsets,
1717 info->array.raid_disks,
1718 info->new_chunk,
1719 info->new_level,
1720 info->new_layout,
1721 fd, __le64_to_cpu(bsb.devstart)*512,
1722 __le64_to_cpu(bsb.arraystart),
1723 __le64_to_cpu(bsb.length)*512)) {
1724 /* didn't succeed, so giveup */
1725 if (verbose)
1726 fprintf(stderr, Name ": Error restoring backup from %s\n",
1727 devname);
1728 return 1;
1729 }
1730
1731 if (bsb.magic[15] == '2' &&
1732 restore_stripes(fdlist, offsets,
1733 info->array.raid_disks,
1734 info->new_chunk,
1735 info->new_level,
1736 info->new_layout,
1737 fd, __le64_to_cpu(bsb.devstart)*512 +
1738 __le64_to_cpu(bsb.devstart2)*512,
1739 __le64_to_cpu(bsb.arraystart2),
1740 __le64_to_cpu(bsb.length2)*512)) {
1741 /* didn't succeed, so giveup */
1742 if (verbose)
1743 fprintf(stderr, Name ": Error restoring second backup from %s\n",
1744 devname);
1745 return 1;
1746 }
1747
1748
1749 /* Ok, so the data is restored. Let's update those superblocks. */
1750
1751 if (info->delta_disks >= 0) {
1752 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
1753 __le64_to_cpu(bsb.length);
1754 if (bsb.magic[15] == '2') {
1755 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
1756 __le64_to_cpu(bsb.length2);
1757 if (p2 > info->reshape_progress)
1758 info->reshape_progress = p2;
1759 }
1760 } else {
1761 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
1762 if (bsb.magic[15] == '2') {
1763 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
1764 if (p2 < info->reshape_progress)
1765 info->reshape_progress = p2;
1766 }
1767 }
1768 for (j=0; j<info->array.raid_disks; j++) {
1769 if (fdlist[j] < 0) continue;
1770 if (st->ss->load_super(st, fdlist[j], NULL))
1771 continue;
1772 st->ss->getinfo_super(st, &dinfo);
1773 dinfo.reshape_progress = info->reshape_progress;
1774 st->ss->update_super(st, &dinfo,
1775 "_reshape_progress",
1776 NULL,0, 0, NULL);
1777 st->ss->store_super(st, fdlist[j]);
1778 st->ss->free_super(st);
1779 }
1780 return 0;
1781 }
1782 /* Didn't find any backup data, try to see if any
1783 * was needed.
1784 */
1785 if (info->delta_disks < 0) {
1786 /* When shrinking, the critical section is at the end.
1787 * So see if we are before the critical section.
1788 */
1789 unsigned long long first_block;
1790 nstripe = ostripe = 0;
1791 first_block = 0;
1792 while (ostripe >= nstripe) {
1793 ostripe += info->array.chunk_size / 512;
1794 first_block = ostripe * odata;
1795 nstripe = first_block / ndata / (info->new_chunk/512) *
1796 (info->new_chunk/512);
1797 }
1798
1799 if (info->reshape_progress >= first_block)
1800 return 0;
1801 }
1802 if (info->delta_disks > 0) {
1803 /* See if we are beyond the critical section. */
1804 unsigned long long last_block;
1805 nstripe = ostripe = 0;
1806 last_block = 0;
1807 while (nstripe >= ostripe) {
1808 nstripe += info->new_chunk / 512;
1809 last_block = nstripe * ndata;
1810 ostripe = last_block / odata / (info->array.chunk_size/512) *
1811 (info->array.chunk_size/512);
1812 }
1813
1814 if (info->reshape_progress >= last_block)
1815 return 0;
1816 }
1817 /* needed to recover critical section! */
1818 if (verbose)
1819 fprintf(stderr, Name ": Failed to find backup of critical section\n");
1820 return 1;
1821 }
1822
1823 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
1824 char *backup_file)
1825 {
1826 /* Array is assembled and ready to be started, but
1827 * monitoring is probably required.
1828 * So:
1829 * - start read-only
1830 * - set upper bound for resync
1831 * - initialise the 'suspend' boundaries
1832 * - switch to read-write
1833 * - fork and continue monitoring
1834 */
1835 int err;
1836 int backup_list[1];
1837 unsigned long long backup_offsets[1];
1838 int odisks, ndisks, ochunk, nchunk,odata,ndata;
1839 unsigned long a,b,blocks,stripes;
1840 int backup_fd;
1841 int *fds;
1842 unsigned long long *offsets;
1843 int d;
1844 struct mdinfo *sra, *sd;
1845 int rv;
1846 int done = 0;
1847
1848 err = sysfs_set_str(info, NULL, "array_state", "readonly");
1849 if (err)
1850 return err;
1851
1852 /* make sure reshape doesn't progress until we are ready */
1853 sysfs_set_str(info, NULL, "sync_max", "0");
1854 sysfs_set_str(info, NULL, "array_state", "active"); /* FIXME or clean */
1855
1856 /* ndisks is not growing, so raid_disks is old and +delta is new */
1857 odisks = info->array.raid_disks;
1858 ndisks = odisks + info->delta_disks;
1859 odata = odisks - 1;
1860 ndata = ndisks - 1;
1861 if (info->array.level == 6) {
1862 odata--;
1863 ndata--;
1864 }
1865 ochunk = info->array.chunk_size;
1866 nchunk = info->new_chunk;
1867
1868
1869 a = ochunk/512 * odata;
1870 b = nchunk/512 * ndata;
1871 /* Find GCD */
1872 while (a != b) {
1873 if (a < b)
1874 b -= a;
1875 if (b < a)
1876 a -= b;
1877 }
1878 /* LCM == product / GCD */
1879 blocks = ochunk/512 * nchunk/512 * odata * ndata / a;
1880
1881 if (ndata == odata)
1882 blocks *= 16;
1883 stripes = blocks / (info->array.chunk_size/512) / odata;
1884
1885
1886 memset(&bsb, 0, 512);
1887 memcpy(bsb.magic, "md_backup_data-1", 16);
1888 memcpy(&bsb.set_uuid, info->uuid, 16);
1889 bsb.mtime = __cpu_to_le64(time(0));
1890 bsb.devstart2 = blocks;
1891
1892 backup_fd = open(backup_file, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR);
1893 backup_list[0] = backup_fd;
1894 backup_offsets[0] = 8 * 512;
1895 fds = malloc(odisks * sizeof(fds[0]));
1896 offsets = malloc(odisks * sizeof(offsets[0]));
1897 for (d=0; d<odisks; d++)
1898 fds[d] = -1;
1899
1900 sra = sysfs_read(-1, devname2devnum(info->sys_name),
1901 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
1902 GET_CACHE);
1903
1904 for (sd = sra->devs; sd; sd = sd->next) {
1905 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1906 continue;
1907 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1908 char *dn = map_dev(sd->disk.major,
1909 sd->disk.minor, 1);
1910 fds[sd->disk.raid_disk]
1911 = dev_open(dn, O_RDONLY);
1912 offsets[sd->disk.raid_disk] = sd->data_offset*512;
1913 if (fds[sd->disk.raid_disk] < 0) {
1914 fprintf(stderr, Name ": %s: cannot open component %s\n",
1915 info->sys_name, dn?dn:"-unknown-");
1916 rv = 1;
1917 goto release;
1918 }
1919 free(dn);
1920 }
1921 }
1922
1923 switch(fork()) {
1924 case 0:
1925 close(mdfd);
1926 mlockall(MCL_FUTURE);
1927 if (info->delta_disks < 0)
1928 done = child_shrink(-1, info, stripes,
1929 fds, offsets,
1930 info->array.raid_disks,
1931 info->array.chunk_size,
1932 info->array.level, info->array.layout,
1933 odata,
1934 1, backup_list, backup_offsets);
1935 else if (info->delta_disks == 0) {
1936 /* The 'start' is a per-device stripe number.
1937 * reshape_progress is a per-array sector number.
1938 * So divide by ndata * chunk_size
1939 */
1940 unsigned long long start = info->reshape_progress / ndata;
1941 start /= (info->array.chunk_size/512);
1942 done = child_same_size(-1, info, stripes,
1943 fds, offsets,
1944 start,
1945 info->array.raid_disks,
1946 info->array.chunk_size,
1947 info->array.level, info->array.layout,
1948 odata,
1949 1, backup_list, backup_offsets);
1950 }
1951 if (backup_file && done)
1952 unlink(backup_file);
1953 /* FIXME should I intuit a level change */
1954 exit(0);
1955 case -1:
1956 fprintf(stderr, Name ": Cannot run child to continue monitoring reshape: %s\n",
1957 strerror(errno));
1958 return 1;
1959 default:
1960 break;
1961 }
1962 release:
1963 return 0;
1964 }
1965
1966