]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Grow: handle array going degraded during reshape.
[thirdparty/mdadm.git] / Grow.c
CommitLineData
e5329c37
NB
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
e736b623 4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
e5329c37
NB
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
e736b623 22 * Email: <neilb@suse.de>
e5329c37
NB
23 */
24#include "mdadm.h"
25#include "dlink.h"
7236ee7a 26#include <sys/mman.h>
e5329c37
NB
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
e9e43ec3
N
34#ifndef offsetof
35#define offsetof(t,f) ((size_t)&(((t*)0)->f))
36#endif
37
e5329c37
NB
38int 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 */
4b1ac34b
NB
48 struct mdinfo info;
49
e5329c37
NB
50 struct stat stb;
51 int nfd, fd2;
52 int d, nd;
82d9eba6 53 struct supertype *st = NULL;
aba69144 54
e5329c37 55
4b1ac34b 56 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
57 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
58 return 1;
59 }
60
1686dc25 61 st = super_by_fd(fd);
82d9eba6 62 if (!st) {
f9ce90ba
NB
63 fprintf(stderr, Name ": cannot handle arrays with superblock version %d\n", info.array.major_version);
64 return 1;
65 }
66
4b1ac34b 67 if (info.array.level != -1) {
e5329c37
NB
68 fprintf(stderr, Name ": can only add devices to linear arrays\n");
69 return 1;
70 }
71
6416d527 72 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
e5329c37
NB
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 */
4b1ac34b 84 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
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 }
16c6fa80 94 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
95 if (!dv) {
96 fprintf(stderr, Name ": cannot find device file for device %d\n",
97 d);
98 return 1;
99 }
16c6fa80 100 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
101 if (!fd2) {
102 fprintf(stderr, Name ": cannot open device file %s\n", dv);
103 return 1;
104 }
3da92f27
NB
105 st->ss->free_super(st);
106
107 if (st->ss->load_super(st, fd2, NULL)) {
e5329c37
NB
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 */
aba69144 117
4b1ac34b
NB
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);
3da92f27 123 st->ss->update_super(st, &info, "linear-grow-new", newdev,
f752781f 124 0, 0, NULL);
e5329c37 125
3da92f27 126 if (st->ss->store_super(st, nfd)) {
f752781f
NB
127 fprintf(stderr, Name ": Cannot store new superblock on %s\n",
128 newdev);
e5329c37
NB
129 close(nfd);
130 return 1;
131 }
e5329c37 132 close(nfd);
4b1ac34b
NB
133
134 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
e5329c37
NB
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
4b1ac34b 142 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
143 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
144 return 1;
145 }
146
147 nd = d;
4b1ac34b 148 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
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 }
16c6fa80 158 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
159 if (!dv) {
160 fprintf(stderr, Name ": cannot find device file for device %d\n",
161 d);
162 return 1;
163 }
16c6fa80 164 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
165 if (fd2 < 0) {
166 fprintf(stderr, Name ": cannot open device file %s\n", dv);
167 return 1;
168 }
3da92f27 169 if (st->ss->load_super(st, fd2, NULL)) {
e5329c37
NB
170 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
171 close(fd);
172 return 1;
173 }
4b1ac34b
NB
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;
f752781f 178
3da92f27 179 st->ss->update_super(st, &info, "linear-grow-update", dv,
f752781f 180 0, 0, NULL);
aba69144 181
3da92f27 182 if (st->ss->store_super(st, fd2)) {
e5329c37
NB
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}
f5e166fe 192
8fac0577 193int Grow_addbitmap(char *devname, int fd, char *file, int chunk, int delay, int write_behind, int force)
f5e166fe
NB
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;
dcec9ee5
NB
207 int major = BITMAP_MAJOR_HI;
208 int vers = md_get_version(fd);
8fac0577 209 unsigned long long bitmapsize, array_size;
dcec9ee5
NB
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 }
f5e166fe
NB
218
219 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
353632d9 220 if (errno == ENOMEM)
f5e166fe
NB
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]) {
fe80f49b
NB
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 }
f5e166fe
NB
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)) {
fe80f49b
NB
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 }
f5e166fe
NB
252 fprintf(stderr, Name ": Internal bitmap already present on %s\n",
253 devname);
254 return 1;
255 }
5b28bd56
NB
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 }
8fac0577
NB
261 bitmapsize = array.size;
262 bitmapsize <<= 1;
beae1dfe 263 if (get_dev_size(fd, NULL, &array_size) &&
8fac0577
NB
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 }
8fac0577
NB
270 if (bitmapsize == 0) {
271 fprintf(stderr, Name ": Cannot reliably determine size of array to create bitmap - sorry.\n");
272 return 1;
273 }
274
f9c25f1d 275 if (array.level == 10) {
8686f3ed 276 int ncopies = (array.layout&255)*((array.layout>>8)&255);
f9c25f1d
NB
277 bitmapsize = bitmapsize * array.raid_disks / ncopies;
278 }
279
1686dc25 280 st = super_by_fd(fd);
f5e166fe
NB
281 if (!st) {
282 fprintf(stderr, Name ": Cannot understand version %d.%d\n",
283 array.major_version, array.minor_version);
284 return 1;
285 }
fe80f49b
NB
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) {
f5e166fe 290 int d;
ea329559 291 for (d=0; d< st->max_devs; d++) {
f5e166fe
NB
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;
16c6fa80 302 dv = map_dev(disk.major, disk.minor, 1);
f5e166fe 303 if (dv) {
16c6fa80 304 int fd2 = dev_open(dv, O_RDWR);
f5e166fe
NB
305 if (fd2 < 0)
306 continue;
3da92f27 307 if (st->ss->load_super(st, fd2, NULL)==0) {
199171a2 308 if (st->ss->add_internal_bitmap(
3da92f27 309 st,
199171a2
NB
310 &chunk, delay, write_behind,
311 bitmapsize, 0, major)
312 )
3da92f27 313 st->ss->write_bitmap(st, fd2);
21e92547
NB
314 else {
315 fprintf(stderr, Name ": failed to create internal bitmap - chunksize problem.\n");
316 close(fd2);
317 return 1;
318 }
f5e166fe
NB
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 }
fe80f49b
NB
328 } else {
329 int uuid[4];
330 int bitmap_fd;
331 int d;
332 int max_devs = st->max_devs;
fe80f49b
NB
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;
16c6fa80 345 dv = map_dev(disk.major, disk.minor, 1);
fe80f49b 346 if (!dv) continue;
16c6fa80 347 fd2 = dev_open(dv, O_RDONLY);
fe80f49b 348 if (fd2 >= 0 &&
3da92f27 349 st->ss->load_super(st, fd2, NULL) == 0) {
fe80f49b 350 close(fd2);
3da92f27 351 st->ss->uuid_from_super(st, uuid);
fe80f49b
NB
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 }
8fac0577 360 if (CreateBitmap(file, force, (char*)uuid, chunk,
f9c25f1d 361 delay, write_behind, bitmapsize, major)) {
fe80f49b
NB
362 return 1;
363 }
364 bitmap_fd = open(file, O_RDWR);
365 if (bitmap_fd < 0) {
8fac0577 366 fprintf(stderr, Name ": weird: %s cannot be opened\n",
fe80f49b
NB
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 }
f5e166fe
NB
376
377 return 0;
378}
379
e86c9dd6
NB
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
5fdf37e3 390static struct mdp_backup_super {
7236ee7a 391 char magic[16]; /* md_backup_data-1 or -2 */
e86c9dd6
NB
392 __u8 set_uuid[16];
393 __u64 mtime;
394 /* start/sizes in 512byte sectors */
7236ee7a 395 __u64 devstart; /* address on backup device/file of data */
e86c9dd6
NB
396 __u64 arraystart;
397 __u64 length;
398 __u32 sb_csum; /* csum of preceeding bytes. */
7236ee7a
N
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];
5fdf37e3 405} __attribute__((aligned(512))) bsb, bsb2;
e86c9dd6
NB
406
407int 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
7236ee7a
N
416static 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);
420static 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);
424static int child_same_size(int afd, struct mdinfo *sra, unsigned long blocks,
425 int *fds, unsigned long long *offsets,
e9e43ec3 426 unsigned long long start,
7236ee7a
N
427 int disks, int chunk, int level, int layout, int data,
428 int dests, int *destfd, unsigned long long *destoffsets);
429
430int 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
448void 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
455void 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
06b0d786 474int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
e86c9dd6 475 long long size,
19678e53 476 int level, char *layout_str, int chunksize, int raid_disks)
e86c9dd6
NB
477{
478 /* Make some changes in the shape of an array.
479 * The kernel must support the change.
7236ee7a
N
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 *
e86c9dd6 494 */
7236ee7a 495 struct mdu_array_info_s array, orig;
e86c9dd6 496 char *c;
7236ee7a 497 int rv = 0;
e86c9dd6
NB
498 struct supertype *st;
499
e86c9dd6
NB
500 int nchunk, ochunk;
501 int nlayout, olayout;
502 int ndisks, odisks;
503 int ndata, odata;
7236ee7a
N
504 int orig_level = UnSet;
505 char alt_layout[40];
e86c9dd6
NB
506 int *fdlist;
507 unsigned long long *offsets;
7236ee7a 508 int d, i;
e86c9dd6
NB
509 int nrdisks;
510 int err;
7236ee7a
N
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;
e86c9dd6 517
7e0f6979 518 struct mdinfo *sra;
06c7f68e 519 struct mdinfo *sd;
e86c9dd6
NB
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 }
24d40069
N
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 }
7236ee7a
N
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)
24d40069 638 /* The final raid6->raid5 conversion
7236ee7a
N
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
e86c9dd6
NB
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);
7236ee7a
N
734 rv = 1;
735 break;
e86c9dd6
NB
736
737 case LEVEL_FAULTY: /* only 'layout' change is permitted */
738
e86c9dd6
NB
739 if (chunksize || raid_disks) {
740 fprintf(stderr, Name ": %s: Cannot change chunksize or disks of a 'faulty' array\n",
741 devname);
7236ee7a
N
742 rv = 1;
743 break;
e86c9dd6 744 }
19678e53 745 if (layout_str == NULL)
7236ee7a 746 break; /* nothing to do.... */
e86c9dd6 747
19678e53
N
748 array.layout = parse_layout_faulty(layout_str);
749 if (array.layout < 0) {
7236ee7a 750 int rv;
19678e53
N
751 fprintf(stderr, Name ": %s: layout %s not understood for 'faulty' array\n",
752 devname, layout_str);
7236ee7a
N
753 rv = 1;
754 break;
19678e53 755 }
e86c9dd6
NB
756 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
757 fprintf(stderr, Name ": Cannot set layout for %s: %s\n",
758 devname, strerror(errno));
7236ee7a
N
759 rv = 1;
760 } else if (!quiet)
e86c9dd6 761 printf("layout for %s set to %d\n", devname, array.layout);
7236ee7a 762 break;
e86c9dd6 763
7236ee7a 764 case 1: /* only raid_disks can each be changed. */
e86c9dd6 765
19678e53 766 if (chunksize || layout_str != NULL) {
7236ee7a 767 fprintf(stderr, Name ": %s: Cannot change chunk size or layout for a RAID1 array.\n",
e86c9dd6 768 devname);
7236ee7a
N
769 rv = 1;
770 break;
e86c9dd6 771 }
9860f271 772 if (raid_disks > 0) {
e86c9dd6 773 array.raid_disks = raid_disks;
9860f271
NB
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));
7236ee7a 777 rv = 1;
9860f271 778 }
e86c9dd6 779 }
7236ee7a 780 break;
e86c9dd6
NB
781
782 case 4:
783 case 5:
784 case 6:
1686dc25 785
7236ee7a
N
786 /*
787 * layout/chunksize/raid_disks can be changed
e86c9dd6 788 * though the kernel may not support it all.
e86c9dd6 789 */
7236ee7a
N
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.
e86c9dd6
NB
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 *
7236ee7a
N
811 * We backup data by writing it to one spare, or to a
812 * file which was given on command line.
e86c9dd6 813 *
7236ee7a 814 * [FOLLOWING IS OLD AND PARTLY WRONG]
e86c9dd6
NB
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 *
7236ee7a
N
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.
e86c9dd6 829 */
e86c9dd6
NB
830 nchunk = ochunk = array.chunk_size;
831 nlayout = olayout = array.layout;
832 ndisks = odisks = array.raid_disks;
833
7236ee7a
N
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 }
19678e53 843 if (layout_str != NULL)
7236ee7a 844 switch(array.level) {
19678e53
N
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 }
e86c9dd6
NB
865 if (raid_disks) ndisks = raid_disks;
866
867 odata = odisks-1;
e86c9dd6 868 ndata = ndisks-1;
7236ee7a
N
869 if (array.level == 6) {
870 odata--; /* number of data disks */
871 ndata--;
e86c9dd6 872 }
7236ee7a
N
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;
e86c9dd6 884 }
7236ee7a
N
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).
e86c9dd6 890 */
7236ee7a
N
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;
e86c9dd6 899 }
7236ee7a
N
900 /* LCM == product / GCD */
901 blocks = ochunk/512 * nchunk/512 * odata * ndata / a;
902
eba71529
N
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
7236ee7a
N
910 fprintf(stderr, Name ": Need to backup %luK of critical "
911 "section..\n", blocks/2);
e86c9dd6 912
7236ee7a 913 sysfs_free(sra);
e86c9dd6 914 sra = sysfs_read(fd, 0,
758d3a8e
NB
915 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
916 GET_CACHE);
e86c9dd6
NB
917 if (!sra) {
918 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
919 devname);
7236ee7a
N
920 rv = 1;
921 break;
e86c9dd6
NB
922 }
923
7236ee7a 924 if (blocks >= sra->component_size/2) {
e86c9dd6
NB
925 fprintf(stderr, Name ": %s: Something wrong - reshape aborted\n",
926 devname);
7236ee7a
N
927 rv = 1;
928 break;
353632d9 929 }
7e0f6979 930 nrdisks = array.nr_disks + sra->array.spare_disks;
e86c9dd6
NB
931 /* Now we need to open all these devices so we can read/write.
932 */
06b0d786
NB
933 fdlist = malloc((1+nrdisks) * sizeof(int));
934 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
e86c9dd6
NB
935 if (!fdlist || !offsets) {
936 fprintf(stderr, Name ": malloc failed: grow aborted\n");
7236ee7a
N
937 rv = 1;
938 break;
e86c9dd6 939 }
06b0d786 940 for (d=0; d <= nrdisks; d++)
e86c9dd6
NB
941 fdlist[d] = -1;
942 d = array.raid_disks;
943 for (sd = sra->devs; sd; sd=sd->next) {
06c7f68e 944 if (sd->disk.state & (1<<MD_DISK_FAULTY))
e86c9dd6 945 continue;
06c7f68e
NB
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);
7236ee7a 951 offsets[sd->disk.raid_disk] = sd->data_offset*512;
06c7f68e 952 if (fdlist[sd->disk.raid_disk] < 0) {
e86c9dd6 953 fprintf(stderr, Name ": %s: cannot open component %s\n",
e81cdd9f 954 devname, dn?dn:"-unknown-");
7236ee7a
N
955 rv = 1;
956 goto release;
e86c9dd6 957 }
7236ee7a 958 } else if (backup_file == NULL) {
e86c9dd6 959 /* spare */
06c7f68e
NB
960 char *dn = map_dev(sd->disk.major,
961 sd->disk.minor, 1);
16c6fa80 962 fdlist[d] = dev_open(dn, O_RDWR);
7236ee7a 963 offsets[d] = (sra->component_size - blocks - 8)*512;
e86c9dd6
NB
964 if (fdlist[d]<0) {
965 fprintf(stderr, Name ": %s: cannot open component %s\n",
e81cdd9f 966 devname, dn?dn:"-unknown");
7236ee7a
N
967 rv = 1;
968 goto release;
e86c9dd6
NB
969 }
970 d++;
971 }
972 }
7236ee7a
N
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;
e86c9dd6 991 }
7236ee7a
N
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;
06b0d786
NB
998 if (fdlist[d] < 0) {
999 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1000 devname, backup_file, strerror(errno));
7236ee7a
N
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;
06b0d786 1018 }
06b0d786 1019 d++;
06b0d786 1020 }
7236ee7a
N
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 }
e86c9dd6
NB
1064 }
1065
7236ee7a
N
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 */
e86c9dd6 1075 /* Find a superblock */
7236ee7a
N
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) {
e86c9dd6
NB
1092 fprintf(stderr, Name ": %s: Cannot find a superblock\n",
1093 devname);
7236ee7a
N
1094 rv = 1;
1095 break;
e86c9dd6
NB
1096 }
1097
7236ee7a 1098 memset(&bsb, 0, 512);
2efedc7b 1099 memcpy(bsb.magic, "md_backup_data-1", 16);
3da92f27 1100 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2efedc7b 1101 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
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.
2efedc7b 1107 */
7236ee7a
N
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,
e9e43ec3 1130 0,
7236ee7a
N
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
758d3a8e 1139 */
7236ee7a
N
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);
758d3a8e 1151 }
7236ee7a
N
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;
e86c9dd6 1162 }
7236ee7a 1163 break;
e86c9dd6 1164
7236ee7a 1165 }
e86c9dd6 1166
7236ee7a
N
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}
e86c9dd6 1177
7236ee7a
N
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 */
e86c9dd6 1201
7236ee7a
N
1202int 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,
d4445387 1208 int part, int *degraded,
7236ee7a
N
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;
d4445387 1220 unsigned long long new_degraded;
7236ee7a
N
1221 //printf("offset %llu\n", offset);
1222 if (level >= 4)
1223 odata--;
1224 if (level == 6)
1225 odata--;
1226 sysfs_set_num(sra, NULL, "suspend_hi", (offset + stripes * chunk/512) * odata);
d4445387
N
1227 /* Check that array hasn't become degraded, else we might backup the wrong data */
1228 sysfs_get_ll(sra, NULL, "degraded", &new_degraded);
1229 if (new_degraded != *degraded) {
1230 /* check each device to ensure it is still working */
1231 struct mdinfo *sd;
1232 for (sd = sra->devs ; sd ; sd = sd->next) {
1233 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1234 continue;
1235 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1236 char sbuf[20];
1237 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
1238 strstr(sbuf, "faulty") ||
1239 strstr(sbuf, "in_sync") == NULL) {
1240 /* this device is dead */
1241 sd->disk.state = (1<<MD_DISK_FAULTY);
1242 if (sd->disk.raid_disk >= 0 &&
1243 sources[sd->disk.raid_disk] >= 0) {
1244 close(sources[sd->disk.raid_disk]);
1245 sources[sd->disk.raid_disk] = -1;
1246 }
1247 }
1248 }
1249 }
1250 *degraded = new_degraded;
1251 }
7236ee7a
N
1252 if (part) {
1253 bsb.arraystart2 = __cpu_to_le64(offset * odata);
1254 bsb.length2 = __cpu_to_le64(stripes * chunk/512 * odata);
1255 } else {
1256 bsb.arraystart = __cpu_to_le64(offset * odata);
1257 bsb.length = __cpu_to_le64(stripes * chunk/512 * odata);
1258 }
1259 if (part)
1260 bsb.magic[15] = '2';
1261 for (i = 0; i < dests; i++)
1262 if (part)
1263 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
1264 else
1265 lseek64(destfd[i], destoffsets[i], 0);
1266
1267 rv = save_stripes(sources, offsets,
1268 disks, chunk, level, layout,
1269 dests, destfd,
1270 offset*512*odata, stripes * chunk * odata,
1271 buf);
1272
1273 if (rv)
1274 return rv;
97396422 1275 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1276 for (i = 0; i < dests; i++) {
1277 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1278
1279 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1280 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1281 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1282 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1283
1284 lseek64(destfd[i], destoffsets[i] - 4096, 0);
1285 write(destfd[i], &bsb, 512);
1286 fsync(destfd[i]);
1287 }
2efedc7b 1288
7236ee7a
N
1289 return 0;
1290}
1291
1292/* in 2.6.30, the value reported by sync_completed can be
1293 * less that it should be by one stripe.
1294 * This only happens when reshape hits sync_max and pauses.
1295 * So allow wait_backup to either extent sync_max further
1296 * than strictly necessary, or return before the
1297 * sync has got quite as far as we would really like.
1298 * This is what 'blocks2' is for.
1299 * The various caller give appropriate values so that
1300 * every works.
1301 */
1302int wait_backup(struct mdinfo *sra,
1303 unsigned long long offset, /* per device */
1304 unsigned long long blocks, /* per device */
1305 unsigned long long blocks2, /* per device - hack */
1306 int dests, int *destfd, unsigned long long *destoffsets,
1307 int part)
1308{
1309 /* Wait for resync to pass the section that was backed up
1310 * then erase the backup and allow IO
1311 */
1312 int fd = sysfs_get_fd(sra, NULL, "sync_completed");
1313 unsigned long long completed;
1314 int i;
1315
1316 if (fd < 0)
1317 return -1;
1318 sysfs_set_num(sra, NULL, "sync_max", offset + blocks + blocks2);
1319 if (offset == 0)
1320 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1321 do {
1322 char action[20];
1323 fd_set rfds;
1324 FD_ZERO(&rfds);
1325 FD_SET(fd, &rfds);
1326 select(fd+1, NULL, NULL, &rfds, NULL);
1327 if (sysfs_fd_get_ll(fd, &completed) < 0) {
1328 close(fd);
1329 return -1;
e86c9dd6 1330 }
7236ee7a
N
1331 if (sysfs_get_str(sra, NULL, "sync_action",
1332 action, 20) > 0 &&
1333 strncmp(action, "reshape", 7) != 0)
1334 break;
1335 } while (completed < offset + blocks);
1336 close(fd);
1337
1338 if (part) {
1339 bsb.arraystart2 = __cpu_to_le64(0);
1340 bsb.length2 = __cpu_to_le64(0);
1341 } else {
1342 bsb.arraystart = __cpu_to_le64(0);
1343 bsb.length = __cpu_to_le64(0);
1344 }
97396422 1345 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1346 for (i = 0; i < dests; i++) {
1347 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1348 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1349 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1350 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1351 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1352 lseek64(destfd[i], destoffsets[i]-4096, 0);
1353 write(destfd[i], &bsb, 512);
1354 fsync(destfd[i]);
1355 }
1356 return 0;
1357}
e86c9dd6 1358
7236ee7a
N
1359static void fail(char *msg)
1360{
1361 write(2, msg, strlen(msg));
1362 write(2, "\n", 1);
1363 exit(1);
1364}
1365
1366static char *abuf, *bbuf;
1367static int abuflen;
1368static void validate(int afd, int bfd, unsigned long long offset)
1369{
1370 /* check that the data in the backup against the array.
1371 * This is only used for regression testing and should not
1372 * be used while the array is active
1373 */
7236ee7a
N
1374 if (afd < 0)
1375 return;
1376 lseek64(bfd, offset - 4096, 0);
1377 if (read(bfd, &bsb2, 512) != 512)
1378 fail("cannot read bsb");
1379 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
1380 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
1381 fail("first csum bad");
1382 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
1383 fail("magic is bad");
1384 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
1385 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
1386 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
1387 fail("second csum bad");
1388
1389 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
1390 fail("devstart is wrong");
1391
1392 if (bsb2.length) {
1393 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
1394
1395 if (abuflen < len) {
1396 free(abuf);
1397 free(bbuf);
1398 abuflen = len;
1399 posix_memalign((void**)&abuf, 4096, abuflen);
1400 posix_memalign((void**)&bbuf, 4096, abuflen);
e86c9dd6 1401 }
48924014 1402
7236ee7a
N
1403 lseek64(bfd, offset, 0);
1404 if (read(bfd, bbuf, len) != len) {
1405 printf("len %llu\n", len);
1406 fail("read first backup failed");
1407 }
1408 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
1409 if (read(afd, abuf, len) != len)
1410 fail("read first from array failed");
1411 if (memcmp(bbuf, abuf, len) != 0) {
1412 int i;
1413 printf("offset=%llu len=%llu\n",
1414 __le64_to_cpu(bsb2.arraystart)*512, len);
1415 for (i=0; i<len; i++)
1416 if (bbuf[i] != abuf[i]) {
1417 printf("first diff byte %d\n", i);
93ecfa01 1418 break;
7236ee7a
N
1419 }
1420 fail("data1 compare failed");
e86c9dd6 1421 }
7236ee7a
N
1422 }
1423 if (bsb2.length2) {
1424 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
1425
1426 if (abuflen < len) {
1427 free(abuf);
1428 free(bbuf);
1429 abuflen = len;
1430 abuf = malloc(abuflen);
1431 bbuf = malloc(abuflen);
e86c9dd6
NB
1432 }
1433
7236ee7a
N
1434 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
1435 if (read(bfd, bbuf, len) != len)
1436 fail("read second backup failed");
1437 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
1438 if (read(afd, abuf, len) != len)
1439 fail("read second from array failed");
1440 if (memcmp(bbuf, abuf, len) != 0)
1441 fail("data2 compare failed");
e86c9dd6 1442 }
7236ee7a 1443}
e86c9dd6 1444
7236ee7a
N
1445static int child_grow(int afd, struct mdinfo *sra, unsigned long stripes,
1446 int *fds, unsigned long long *offsets,
1447 int disks, int chunk, int level, int layout, int data,
1448 int dests, int *destfd, unsigned long long *destoffsets)
1449{
1450 char *buf;
d4445387 1451 int degraded = 0;
e86c9dd6 1452
7236ee7a
N
1453 posix_memalign((void**)&buf, 4096, disks * chunk);
1454 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1455 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1456 grow_backup(sra, 0, stripes,
1457 fds, offsets, disks, chunk, level, layout,
1458 dests, destfd, destoffsets,
d4445387 1459 0, &degraded, buf);
7236ee7a 1460 validate(afd, destfd[0], destoffsets[0]);
725cac4c
N
1461 wait_backup(sra, 0, stripes * chunk / 512, stripes * chunk / 512,
1462 dests, destfd, destoffsets,
1463 0);
7236ee7a
N
1464 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1465 free(buf);
1466 /* FIXME this should probably be numeric */
1467 sysfs_set_str(sra, NULL, "sync_max", "max");
e86c9dd6 1468 return 1;
7236ee7a 1469}
e86c9dd6 1470
7236ee7a
N
1471static int child_shrink(int afd, struct mdinfo *sra, unsigned long stripes,
1472 int *fds, unsigned long long *offsets,
1473 int disks, int chunk, int level, int layout, int data,
1474 int dests, int *destfd, unsigned long long *destoffsets)
1475{
1476 char *buf;
1477 unsigned long long start;
1478 int rv;
d4445387 1479 int degraded = 0;
7236ee7a
N
1480
1481 posix_memalign((void**)&buf, 4096, disks * chunk);
1482 start = sra->component_size - stripes * chunk/512;
1483 sysfs_set_num(sra, NULL, "sync_max", start);
1484 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1485 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1486 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1487 rv = wait_backup(sra, 0, start - stripes * chunk/512, stripes * chunk/512,
1488 dests, destfd, destoffsets, 0);
1489 if (rv < 0)
1490 return 0;
1491 grow_backup(sra, 0, stripes,
1492 fds, offsets,
1493 disks, chunk, level, layout,
1494 dests, destfd, destoffsets,
d4445387 1495 0, &degraded, buf);
7236ee7a 1496 validate(afd, destfd[0], destoffsets[0]);
725cac4c
N
1497 wait_backup(sra, start, stripes*chunk/512, 0,
1498 dests, destfd, destoffsets, 0);
7236ee7a
N
1499 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1500 free(buf);
1501 /* FIXME this should probably be numeric */
1502 sysfs_set_str(sra, NULL, "sync_max", "max");
1503 return 1;
1504}
1505
1506static int child_same_size(int afd, struct mdinfo *sra, unsigned long stripes,
1507 int *fds, unsigned long long *offsets,
e9e43ec3 1508 unsigned long long start,
7236ee7a
N
1509 int disks, int chunk, int level, int layout, int data,
1510 int dests, int *destfd, unsigned long long *destoffsets)
1511{
e9e43ec3 1512 unsigned long long size;
7236ee7a
N
1513 unsigned long tailstripes = stripes;
1514 int part;
1515 char *buf;
1516 unsigned long long speed;
d4445387 1517 int degraded = 0;
7236ee7a
N
1518
1519
1520 posix_memalign((void**)&buf, 4096, disks * chunk);
1521
1522 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1523 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1524
1525 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
1526 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
1527
e9e43ec3 1528 grow_backup(sra, start, stripes,
7236ee7a
N
1529 fds, offsets,
1530 disks, chunk, level, layout,
1531 dests, destfd, destoffsets,
d4445387 1532 0, &degraded, buf);
e9e43ec3 1533 grow_backup(sra, (start + stripes) * chunk/512, stripes,
7236ee7a
N
1534 fds, offsets,
1535 disks, chunk, level, layout,
1536 dests, destfd, destoffsets,
d4445387 1537 1, &degraded, buf);
7236ee7a
N
1538 validate(afd, destfd[0], destoffsets[0]);
1539 part = 0;
e9e43ec3 1540 start += stripes * 2; /* where to read next */
7236ee7a
N
1541 size = sra->component_size / (chunk/512);
1542 while (start < size) {
1543 if (wait_backup(sra, (start-stripes*2)*chunk/512,
1544 stripes*chunk/512, 0,
1545 dests, destfd, destoffsets,
1546 part) < 0)
1547 return 0;
1548 sysfs_set_num(sra, NULL, "suspend_lo", start*chunk/512 * data);
1549 if (start + stripes > size)
1550 tailstripes = (size - start);
1551
1552 grow_backup(sra, start*chunk/512, tailstripes,
1553 fds, offsets,
1554 disks, chunk, level, layout,
1555 dests, destfd, destoffsets,
d4445387 1556 part, &degraded, buf);
7236ee7a
N
1557 start += stripes;
1558 part = 1 - part;
1559 validate(afd, destfd[0], destoffsets[0]);
1560 }
1561 if (wait_backup(sra, (start-stripes*2) * chunk/512, stripes * chunk/512, 0,
1562 dests, destfd, destoffsets,
1563 part) < 0)
1564 return 0;
1565 sysfs_set_num(sra, NULL, "suspend_lo", ((start-stripes)*chunk/512) * data);
725cac4c
N
1566 wait_backup(sra, (start-stripes) * chunk/512, tailstripes * chunk/512, 0,
1567 dests, destfd, destoffsets,
1568 1-part);
7236ee7a
N
1569 sysfs_set_num(sra, NULL, "suspend_lo", (size*chunk/512) * data);
1570 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
1571 free(buf);
1572 return 1;
e86c9dd6 1573}
353632d9
NB
1574
1575/*
1576 * If any spare contains md_back_data-1 which is recent wrt mtime,
1577 * write that data into the array and update the super blocks with
1578 * the new reshape_progress
1579 */
ea0ebe96
N
1580int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
1581 char *backup_file, int verbose)
353632d9
NB
1582{
1583 int i, j;
1584 int old_disks;
353632d9 1585 unsigned long long *offsets;
82f2d6ab 1586 unsigned long long nstripe, ostripe;
6e9eac4f 1587 int ndata, odata;
353632d9 1588
e9e43ec3
N
1589 if (info->new_level != info->array.level)
1590 return 1; /* Cannot handle level changes (they are instantaneous) */
1591
1592 odata = info->array.raid_disks - info->delta_disks - 1;
1593 if (info->array.level == 6) odata--; /* number of data disks */
1594 ndata = info->array.raid_disks - 1;
1595 if (info->new_level == 6) ndata--;
353632d9
NB
1596
1597 old_disks = info->array.raid_disks - info->delta_disks;
1598
e9e43ec3
N
1599 if (info->delta_disks <= 0)
1600 /* Didn't grow, so the backup file must have
1601 * been used
1602 */
1603 old_disks = cnt;
06b0d786 1604 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 1605 struct mdinfo dinfo;
2efedc7b 1606 char buf[4096];
06b0d786 1607 int fd;
e9e43ec3 1608 int bsbsize;
ea0ebe96 1609 char *devname, namebuf[20];
353632d9
NB
1610
1611 /* This was a spare and may have some saved data on it.
1612 * Load the superblock, find and load the
1613 * backup_super_block.
1614 * If either fail, go on to next device.
1615 * If the backup contains no new info, just return
206c5eae 1616 * else restore data and update all superblocks
353632d9 1617 */
06b0d786
NB
1618 if (i == old_disks-1) {
1619 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
1620 if (fd<0) {
1621 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
1622 backup_file, strerror(errno));
06b0d786 1623 continue;
e9e43ec3 1624 }
ea0ebe96 1625 devname = backup_file;
06b0d786
NB
1626 } else {
1627 fd = fdlist[i];
1628 if (fd < 0)
1629 continue;
3da92f27 1630 if (st->ss->load_super(st, fd, NULL))
06b0d786 1631 continue;
353632d9 1632
3da92f27
NB
1633 st->ss->getinfo_super(st, &dinfo);
1634 st->ss->free_super(st);
1635
06b0d786
NB
1636 if (lseek64(fd,
1637 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
1638 0) < 0) {
1639 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 1640 continue; /* Cannot seek */
ea0ebe96
N
1641 }
1642 sprintf(namebuf, "device-%d", i);
1643 devname = namebuf;
06b0d786 1644 }
ea0ebe96
N
1645 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
1646 if (verbose)
1647 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 1648 continue; /* Cannot read */
ea0ebe96 1649 }
e9e43ec3 1650 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
1651 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
1652 if (verbose)
1653 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 1654 continue;
ea0ebe96
N
1655 }
1656 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
1657 if (verbose)
1658 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 1659 continue; /* bad checksum */
ea0ebe96 1660 }
e9e43ec3 1661 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
1662 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
1663 if (verbose)
1664 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 1665 continue; /* Bad second checksum */
ea0ebe96
N
1666 }
1667 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
1668 if (verbose)
1669 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 1670 continue; /* Wrong uuid */
ea0ebe96 1671 }
353632d9 1672
97396422
N
1673 if (info->array.utime > __le64_to_cpu(bsb.mtime) + 10*60 ||
1674 info->array.utime < __le64_to_cpu(bsb.mtime) - 10*60) {
ea0ebe96
N
1675 if (verbose)
1676 fprintf(stderr, Name ": too-old timestamp on backup-metadata on %s\n", devname);
353632d9 1677 continue; /* time stamp is too bad */
ea0ebe96 1678 }
353632d9 1679
e9e43ec3
N
1680 if (bsb.magic[15] == '1') {
1681 if (info->delta_disks >= 0) {
1682 /* reshape_progress is increasing */
1683 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
ea0ebe96
N
1684 info->reshape_progress) {
1685 nonew:
1686 if (verbose)
1687 fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
e9e43ec3 1688 continue; /* No new data here */
ea0ebe96 1689 }
e9e43ec3
N
1690 } else {
1691 /* reshape_progress is decreasing */
1692 if (__le64_to_cpu(bsb.arraystart) >=
1693 info->reshape_progress)
ea0ebe96 1694 goto nonew; /* No new data here */
e9e43ec3
N
1695 }
1696 } else {
1697 if (info->delta_disks >= 0) {
1698 /* reshape_progress is increasing */
1699 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
1700 info->reshape_progress &&
1701 __le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
1702 info->reshape_progress)
ea0ebe96 1703 goto nonew; /* No new data here */
e9e43ec3
N
1704 } else {
1705 /* reshape_progress is decreasing */
1706 if (__le64_to_cpu(bsb.arraystart) >=
1707 info->reshape_progress &&
1708 __le64_to_cpu(bsb.arraystart2) >=
1709 info->reshape_progress)
ea0ebe96 1710 goto nonew; /* No new data here */
e9e43ec3
N
1711 }
1712 }
ea0ebe96
N
1713 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
1714 second_fail:
1715 if (verbose)
1716 fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
1717 devname);
353632d9 1718 continue; /* Cannot seek */
ea0ebe96 1719 }
2efedc7b 1720 /* There should be a duplicate backup superblock 4k before here */
06b0d786 1721 if (lseek64(fd, -4096, 1) < 0 ||
e9e43ec3 1722 read(fd, buf, 4096) != 4096)
ea0ebe96 1723 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
1724 if (bsb.magic[15] == '1')
1725 bsbsize = offsetof(struct mdp_backup_super, pad1);
1726 else
1727 bsbsize = offsetof(struct mdp_backup_super, pad);
1728 if (memcmp(buf, &bsb, bsbsize) != 0)
ea0ebe96 1729 goto second_fail; /* Cannot find leading superblock */
2efedc7b 1730
353632d9
NB
1731 /* Now need the data offsets for all devices. */
1732 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
1733 for(j=0; j<info->array.raid_disks; j++) {
1734 if (fdlist[j] < 0)
1735 continue;
3da92f27 1736 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
1737 /* FIXME should be this be an error */
1738 continue;
3da92f27
NB
1739 st->ss->getinfo_super(st, &dinfo);
1740 st->ss->free_super(st);
353632d9
NB
1741 offsets[j] = dinfo.data_offset;
1742 }
1743 printf(Name ": restoring critical section\n");
1744
1745 if (restore_stripes(fdlist, offsets,
1746 info->array.raid_disks,
1747 info->new_chunk,
1748 info->new_level,
1749 info->new_layout,
06b0d786 1750 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 1751 __le64_to_cpu(bsb.arraystart)*512,
e9e43ec3
N
1752 __le64_to_cpu(bsb.length)*512)) {
1753 /* didn't succeed, so giveup */
ea0ebe96
N
1754 if (verbose)
1755 fprintf(stderr, Name ": Error restoring backup from %s\n",
1756 devname);
e9e43ec3
N
1757 return 1;
1758 }
1759
1760 if (bsb.magic[15] == '2' &&
1761 restore_stripes(fdlist, offsets,
1762 info->array.raid_disks,
1763 info->new_chunk,
1764 info->new_level,
1765 info->new_layout,
1766 fd, __le64_to_cpu(bsb.devstart)*512 +
1767 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 1768 __le64_to_cpu(bsb.arraystart2)*512,
e9e43ec3 1769 __le64_to_cpu(bsb.length2)*512)) {
353632d9 1770 /* didn't succeed, so giveup */
ea0ebe96
N
1771 if (verbose)
1772 fprintf(stderr, Name ": Error restoring second backup from %s\n",
1773 devname);
2295250a 1774 return 1;
353632d9
NB
1775 }
1776
e9e43ec3 1777
353632d9
NB
1778 /* Ok, so the data is restored. Let's update those superblocks. */
1779
e9e43ec3
N
1780 if (info->delta_disks >= 0) {
1781 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
1782 __le64_to_cpu(bsb.length);
1783 if (bsb.magic[15] == '2') {
1784 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
1785 __le64_to_cpu(bsb.length2);
1786 if (p2 > info->reshape_progress)
1787 info->reshape_progress = p2;
1788 }
1789 } else {
1790 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
1791 if (bsb.magic[15] == '2') {
1792 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
1793 if (p2 < info->reshape_progress)
1794 info->reshape_progress = p2;
1795 }
1796 }
353632d9
NB
1797 for (j=0; j<info->array.raid_disks; j++) {
1798 if (fdlist[j] < 0) continue;
3da92f27 1799 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 1800 continue;
3da92f27 1801 st->ss->getinfo_super(st, &dinfo);
e9e43ec3 1802 dinfo.reshape_progress = info->reshape_progress;
3da92f27 1803 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
1804 "_reshape_progress",
1805 NULL,0, 0, NULL);
3da92f27
NB
1806 st->ss->store_super(st, fdlist[j]);
1807 st->ss->free_super(st);
353632d9 1808 }
353632d9
NB
1809 return 0;
1810 }
6e9eac4f
NB
1811 /* Didn't find any backup data, try to see if any
1812 * was needed.
1813 */
82f2d6ab
N
1814 if (info->delta_disks < 0) {
1815 /* When shrinking, the critical section is at the end.
1816 * So see if we are before the critical section.
1817 */
1818 unsigned long long first_block;
1819 nstripe = ostripe = 0;
1820 first_block = 0;
1821 while (ostripe >= nstripe) {
1822 ostripe += info->array.chunk_size / 512;
1823 first_block = ostripe * odata;
1824 nstripe = first_block / ndata / (info->new_chunk/512) *
1825 (info->new_chunk/512);
1826 }
1827
1828 if (info->reshape_progress >= first_block)
1829 return 0;
6e9eac4f 1830 }
82f2d6ab
N
1831 if (info->delta_disks > 0) {
1832 /* See if we are beyond the critical section. */
1833 unsigned long long last_block;
1834 nstripe = ostripe = 0;
1835 last_block = 0;
1836 while (nstripe >= ostripe) {
1837 nstripe += info->new_chunk / 512;
1838 last_block = nstripe * ndata;
1839 ostripe = last_block / odata / (info->array.chunk_size/512) *
1840 (info->array.chunk_size/512);
1841 }
6e9eac4f 1842
82f2d6ab
N
1843 if (info->reshape_progress >= last_block)
1844 return 0;
1845 }
6e9eac4f 1846 /* needed to recover critical section! */
ea0ebe96
N
1847 if (verbose)
1848 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 1849 return 1;
353632d9 1850}
e9e43ec3
N
1851
1852int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
1853 char *backup_file)
1854{
1855 /* Array is assembled and ready to be started, but
1856 * monitoring is probably required.
1857 * So:
1858 * - start read-only
1859 * - set upper bound for resync
1860 * - initialise the 'suspend' boundaries
1861 * - switch to read-write
1862 * - fork and continue monitoring
1863 */
1864 int err;
1865 int backup_list[1];
1866 unsigned long long backup_offsets[1];
1867 int odisks, ndisks, ochunk, nchunk,odata,ndata;
1868 unsigned long a,b,blocks,stripes;
1869 int backup_fd;
1870 int *fds;
1871 unsigned long long *offsets;
1872 int d;
1873 struct mdinfo *sra, *sd;
1874 int rv;
1875 int done = 0;
1876
1877 err = sysfs_set_str(info, NULL, "array_state", "readonly");
1878 if (err)
1879 return err;
1880
1881 /* make sure reshape doesn't progress until we are ready */
1882 sysfs_set_str(info, NULL, "sync_max", "0");
1883 sysfs_set_str(info, NULL, "array_state", "active"); /* FIXME or clean */
1884
1885 /* ndisks is not growing, so raid_disks is old and +delta is new */
1886 odisks = info->array.raid_disks;
1887 ndisks = odisks + info->delta_disks;
1888 odata = odisks - 1;
1889 ndata = ndisks - 1;
1890 if (info->array.level == 6) {
1891 odata--;
1892 ndata--;
1893 }
1894 ochunk = info->array.chunk_size;
1895 nchunk = info->new_chunk;
1896
1897
1898 a = ochunk/512 * odata;
1899 b = nchunk/512 * ndata;
1900 /* Find GCD */
1901 while (a != b) {
1902 if (a < b)
1903 b -= a;
1904 if (b < a)
1905 a -= b;
1906 }
1907 /* LCM == product / GCD */
1908 blocks = ochunk/512 * nchunk/512 * odata * ndata / a;
1909
1910 if (ndata == odata)
1911 blocks *= 16;
1912 stripes = blocks / (info->array.chunk_size/512) / odata;
1913
1914
1915 memset(&bsb, 0, 512);
1916 memcpy(bsb.magic, "md_backup_data-1", 16);
1917 memcpy(&bsb.set_uuid, info->uuid, 16);
1918 bsb.mtime = __cpu_to_le64(time(0));
1919 bsb.devstart2 = blocks;
1920
1921 backup_fd = open(backup_file, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR);
1922 backup_list[0] = backup_fd;
1923 backup_offsets[0] = 8 * 512;
1924 fds = malloc(odisks * sizeof(fds[0]));
1925 offsets = malloc(odisks * sizeof(offsets[0]));
1926 for (d=0; d<odisks; d++)
1927 fds[d] = -1;
1928
1929 sra = sysfs_read(-1, devname2devnum(info->sys_name),
1930 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
1931 GET_CACHE);
1932
1933 for (sd = sra->devs; sd; sd = sd->next) {
1934 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1935 continue;
1936 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1937 char *dn = map_dev(sd->disk.major,
1938 sd->disk.minor, 1);
1939 fds[sd->disk.raid_disk]
1940 = dev_open(dn, O_RDONLY);
1941 offsets[sd->disk.raid_disk] = sd->data_offset*512;
1942 if (fds[sd->disk.raid_disk] < 0) {
1943 fprintf(stderr, Name ": %s: cannot open component %s\n",
1944 info->sys_name, dn?dn:"-unknown-");
1945 rv = 1;
1946 goto release;
1947 }
1948 free(dn);
1949 }
1950 }
1951
1952 switch(fork()) {
1953 case 0:
1954 close(mdfd);
1955 mlockall(MCL_FUTURE);
1956 if (info->delta_disks < 0)
1957 done = child_shrink(-1, info, stripes,
1958 fds, offsets,
1959 info->array.raid_disks,
1960 info->array.chunk_size,
1961 info->array.level, info->array.layout,
1962 odata,
1963 1, backup_list, backup_offsets);
1964 else if (info->delta_disks == 0) {
1965 /* The 'start' is a per-device stripe number.
1966 * reshape_progress is a per-array sector number.
1967 * So divide by ndata * chunk_size
1968 */
1969 unsigned long long start = info->reshape_progress / ndata;
1970 start /= (info->array.chunk_size/512);
1971 done = child_same_size(-1, info, stripes,
1972 fds, offsets,
1973 start,
1974 info->array.raid_disks,
1975 info->array.chunk_size,
1976 info->array.level, info->array.layout,
1977 odata,
1978 1, backup_list, backup_offsets);
1979 }
1980 if (backup_file && done)
1981 unlink(backup_file);
1982 /* FIXME should I intuit a level change */
1983 exit(0);
1984 case -1:
1985 fprintf(stderr, Name ": Cannot run child to continue monitoring reshape: %s\n",
1986 strerror(errno));
1987 return 1;
1988 default:
1989 break;
1990 }
1991release:
1992 return 0;
1993}
1994
1995