]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Grow: use large block count and make sure stripe cache can hold it.
[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
e380d3be
N
903 sysfs_free(sra);
904 sra = sysfs_read(fd, 0,
905 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
906 GET_CACHE);
907
eba71529
N
908 if (ndata == odata) {
909 /* Make 'blocks' bigger for better throughput, but
910 * not so big that we reject it below.
1b13faf7 911 * Try for 16 megabytes
eba71529 912 */
1b13faf7
N
913 while (blocks * 32 < sra->component_size &&
914 blocks < 16*1024*2)
915 blocks *= 2;
eba71529 916 } else
7236ee7a
N
917 fprintf(stderr, Name ": Need to backup %luK of critical "
918 "section..\n", blocks/2);
e86c9dd6 919
e86c9dd6
NB
920 if (!sra) {
921 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
922 devname);
7236ee7a
N
923 rv = 1;
924 break;
e86c9dd6
NB
925 }
926
7236ee7a 927 if (blocks >= sra->component_size/2) {
e86c9dd6
NB
928 fprintf(stderr, Name ": %s: Something wrong - reshape aborted\n",
929 devname);
7236ee7a
N
930 rv = 1;
931 break;
353632d9 932 }
7e0f6979 933 nrdisks = array.nr_disks + sra->array.spare_disks;
e86c9dd6
NB
934 /* Now we need to open all these devices so we can read/write.
935 */
06b0d786
NB
936 fdlist = malloc((1+nrdisks) * sizeof(int));
937 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
e86c9dd6
NB
938 if (!fdlist || !offsets) {
939 fprintf(stderr, Name ": malloc failed: grow aborted\n");
7236ee7a
N
940 rv = 1;
941 break;
e86c9dd6 942 }
06b0d786 943 for (d=0; d <= nrdisks; d++)
e86c9dd6
NB
944 fdlist[d] = -1;
945 d = array.raid_disks;
946 for (sd = sra->devs; sd; sd=sd->next) {
06c7f68e 947 if (sd->disk.state & (1<<MD_DISK_FAULTY))
e86c9dd6 948 continue;
06c7f68e
NB
949 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
950 char *dn = map_dev(sd->disk.major,
951 sd->disk.minor, 1);
952 fdlist[sd->disk.raid_disk]
953 = dev_open(dn, O_RDONLY);
7236ee7a 954 offsets[sd->disk.raid_disk] = sd->data_offset*512;
06c7f68e 955 if (fdlist[sd->disk.raid_disk] < 0) {
e86c9dd6 956 fprintf(stderr, Name ": %s: cannot open component %s\n",
e81cdd9f 957 devname, dn?dn:"-unknown-");
7236ee7a
N
958 rv = 1;
959 goto release;
e86c9dd6 960 }
7236ee7a 961 } else if (backup_file == NULL) {
e86c9dd6 962 /* spare */
06c7f68e
NB
963 char *dn = map_dev(sd->disk.major,
964 sd->disk.minor, 1);
16c6fa80 965 fdlist[d] = dev_open(dn, O_RDWR);
7236ee7a 966 offsets[d] = (sra->component_size - blocks - 8)*512;
e86c9dd6
NB
967 if (fdlist[d]<0) {
968 fprintf(stderr, Name ": %s: cannot open component %s\n",
e81cdd9f 969 devname, dn?dn:"-unknown");
7236ee7a
N
970 rv = 1;
971 goto release;
e86c9dd6
NB
972 }
973 d++;
974 }
975 }
7236ee7a
N
976 if (backup_file == NULL) {
977 if (ndata <= odata) {
978 fprintf(stderr, Name ": %s: Cannot grow - need backup-file\n",
979 devname);
980 rv = 1;
981 break;
982 } else if (sra->array.spare_disks == 0) {
983 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
984 "backup-file to backup critical section\n",
985 devname);
986 rv = 1;
987 break;
988 }
989 if (d == array.raid_disks) {
990 fprintf(stderr, Name ": %s: No spare device for backup\n",
991 devname);
992 rv = 1;
993 break;
e86c9dd6 994 }
7236ee7a
N
995 } else {
996 /* need to check backup file is large enough */
997 char buf[512];
998 fdlist[d] = open(backup_file, O_RDWR|O_CREAT|O_EXCL,
999 S_IRUSR | S_IWUSR);
1000 offsets[d] = 8 * 512;
06b0d786
NB
1001 if (fdlist[d] < 0) {
1002 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1003 devname, backup_file, strerror(errno));
7236ee7a
N
1004 rv = 1;
1005 break;
1006 }
1007 memset(buf, 0, 512);
1008 for (i=0; i < blocks + 1 ; i++) {
1009 if (write(fdlist[d], buf, 512) != 512) {
1010 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1011 devname, backup_file, strerror(errno));
1012 rv = 1;
1013 break;
1014 }
1015 }
1016 if (fsync(fdlist[d]) != 0) {
1017 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
1018 devname, backup_file, strerror(errno));
1019 rv = 1;
1020 break;
06b0d786 1021 }
06b0d786 1022 d++;
06b0d786 1023 }
7236ee7a
N
1024
1025 /* lastly, check that the internal stripe cache is
1026 * large enough, or it won't work.
1027 */
1028
1029 cache = (nchunk < ochunk) ? ochunk : nchunk;
1030 cache = cache * 4 / 4096;
1b13faf7
N
1031 if (cache < blocks / 8 / odisks + 16)
1032 /* Make it big enough to hold 'blocks' */
1033 cache = blocks / 8 / odisks + 16;
7236ee7a
N
1034 if (sra->cache_size < cache)
1035 sysfs_set_num(sra, NULL, "stripe_cache_size",
1036 cache+1);
1037 /* Right, everything seems fine. Let's kick things off.
1038 * If only changing raid_disks, use ioctl, else use
1039 * sysfs.
1040 */
1041 if (ochunk == nchunk && olayout == nlayout) {
1042 array.raid_disks = ndisks;
1043 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1044 rv = 1;
1045 fprintf(stderr, Name ": Cannot set device shape for %s: %s\n",
1046 devname, strerror(errno));
1047 if (ndisks < odisks &&
1048 get_linux_version() < 2006030)
1049 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
1050
1051 break;
1052 }
1053 } else {
1054 /* set them all just in case some old 'new_*' value
1055 * persists from some earlier problem
1056 */
1057 if (sysfs_set_num(sra, NULL, "chunk_size", nchunk) < 0)
1058 rv = 1;
1059 if (sysfs_set_num(sra, NULL, "layout", nlayout) < 0)
1060 rv = 1;
1061 if (sysfs_set_num(sra, NULL, "raid_disks", ndisks) < 0)
1062 rv = 1;
1063 if (rv) {
1064 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1065 devname);
1066 if (get_linux_version() < 2006030)
1067 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
1068 break;
1069 }
e86c9dd6
NB
1070 }
1071
7236ee7a
N
1072 if (ndisks == 2 && odisks == 2) {
1073 /* No reshape is needed in this trivial case */
1074 rv = 0;
1075 break;
1076 }
1077
1078 /* set up the backup-super-block. This requires the
1079 * uuid from the array.
1080 */
e86c9dd6 1081 /* Find a superblock */
7236ee7a
N
1082 for (sd = sra->devs; sd; sd = sd->next) {
1083 char *dn;
1084 int devfd;
1085 int ok;
1086 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1087 continue;
1088 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
1089 devfd = dev_open(dn, O_RDONLY);
1090 if (devfd < 0)
1091 continue;
1092 ok = st->ss->load_super(st, devfd, NULL);
1093 close(devfd);
1094 if (ok >= 0)
1095 break;
1096 }
1097 if (!sd) {
e86c9dd6
NB
1098 fprintf(stderr, Name ": %s: Cannot find a superblock\n",
1099 devname);
7236ee7a
N
1100 rv = 1;
1101 break;
e86c9dd6
NB
1102 }
1103
7236ee7a 1104 memset(&bsb, 0, 512);
2efedc7b 1105 memcpy(bsb.magic, "md_backup_data-1", 16);
3da92f27 1106 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2efedc7b 1107 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1108 bsb.devstart2 = blocks;
1109 stripes = blocks / (ochunk/512) / odata;
1110 /* Now we just need to kick off the reshape and watch, while
1111 * handling backups of the data...
1112 * This is all done by a forked background process.
2efedc7b 1113 */
7236ee7a
N
1114 switch(fork()) {
1115 case 0:
1116 close(fd);
1117 if (check_env("MDADM_GROW_VERIFY"))
1118 fd = open(devname, O_RDONLY | O_DIRECT);
1119 else
1120 fd = -1;
1121 mlockall(MCL_FUTURE);
1122
1123 if (odata < ndata)
1124 done = child_grow(fd, sra, stripes,
1125 fdlist, offsets,
1126 odisks, ochunk, array.level, olayout, odata,
1127 d - odisks, fdlist+odisks, offsets+odisks);
1128 else if (odata > ndata)
1129 done = child_shrink(fd, sra, stripes,
1130 fdlist, offsets,
1131 odisks, ochunk, array.level, olayout, odata,
1132 d - odisks, fdlist+odisks, offsets+odisks);
1133 else
1134 done = child_same_size(fd, sra, stripes,
1135 fdlist, offsets,
e9e43ec3 1136 0,
7236ee7a
N
1137 odisks, ochunk, array.level, olayout, odata,
1138 d - odisks, fdlist+odisks, offsets+odisks);
1139 if (backup_file && done)
1140 unlink(backup_file);
1141 if (level != UnSet && level != array.level) {
1142 /* We need to wait for the reshape to finish
1143 * (which will have happened unless odata < ndata)
1144 * and then set the level
758d3a8e 1145 */
7236ee7a
N
1146
1147 c = map_num(pers, level);
1148 if (c == NULL)
1149 exit(0);/* not possible */
1150
1151 if (odata < ndata)
1152 wait_reshape(sra);
1153 err = sysfs_set_str(sra, NULL, "level", c);
1154 if (err)
1155 fprintf(stderr, Name ": %s: could not set level to %s\n",
1156 devname, c);
758d3a8e 1157 }
7236ee7a
N
1158 exit(0);
1159 case -1:
1160 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1161 strerror(errno));
1162 rv = 1;
1163 break;
1164 default:
1165 /* The child will take care of unfreezing the array */
1166 frozen = 0;
1167 break;
e86c9dd6 1168 }
7236ee7a 1169 break;
e86c9dd6 1170
7236ee7a 1171 }
e86c9dd6 1172
7236ee7a
N
1173 release:
1174 if (rv && orig_level != UnSet && sra) {
1175 c = map_num(pers, orig_level);
1176 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
1177 fprintf(stderr, Name ": aborting level change\n");
1178 }
1179 if (sra)
1180 unfreeze_array(sra, frozen);
1181 return rv;
1182}
e86c9dd6 1183
7236ee7a
N
1184/*
1185 * We run a child process in the background which performs the following
1186 * steps:
1187 * - wait for resync to reach a certain point
1188 * - suspend io to the following section
1189 * - backup that section
1190 * - allow resync to proceed further
1191 * - resume io
1192 * - discard the backup.
1193 *
1194 * When are combined in slightly different ways in the three cases.
1195 * Grow:
1196 * - suspend/backup/allow/wait/resume/discard
1197 * Shrink:
1198 * - allow/wait/suspend/backup/allow/wait/resume/discard
1199 * same-size:
1200 * - wait/resume/discard/suspend/backup/allow
1201 *
1202 * suspend/backup/allow always come together
1203 * wait/resume/discard do too.
1204 * For the same-size case we have two backups to improve flow.
1205 *
1206 */
e86c9dd6 1207
7236ee7a
N
1208int grow_backup(struct mdinfo *sra,
1209 unsigned long long offset, /* per device */
1210 unsigned long stripes, /* per device */
1211 int *sources, unsigned long long *offsets,
1212 int disks, int chunk, int level, int layout,
1213 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 1214 int part, int *degraded,
7236ee7a
N
1215 char *buf)
1216{
1217 /* Backup 'blocks' sectors at 'offset' on each device of the array,
1218 * to storage 'destfd' (offset 'destoffsets'), after first
1219 * suspending IO. Then allow resync to continue
1220 * over the suspended section.
1221 * Use part 'part' of the backup-super-block.
1222 */
1223 int odata = disks;
1224 int rv = 0;
1225 int i;
d4445387 1226 unsigned long long new_degraded;
7236ee7a
N
1227 //printf("offset %llu\n", offset);
1228 if (level >= 4)
1229 odata--;
1230 if (level == 6)
1231 odata--;
1232 sysfs_set_num(sra, NULL, "suspend_hi", (offset + stripes * chunk/512) * odata);
d4445387
N
1233 /* Check that array hasn't become degraded, else we might backup the wrong data */
1234 sysfs_get_ll(sra, NULL, "degraded", &new_degraded);
1235 if (new_degraded != *degraded) {
1236 /* check each device to ensure it is still working */
1237 struct mdinfo *sd;
1238 for (sd = sra->devs ; sd ; sd = sd->next) {
1239 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1240 continue;
1241 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1242 char sbuf[20];
1243 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
1244 strstr(sbuf, "faulty") ||
1245 strstr(sbuf, "in_sync") == NULL) {
1246 /* this device is dead */
1247 sd->disk.state = (1<<MD_DISK_FAULTY);
1248 if (sd->disk.raid_disk >= 0 &&
1249 sources[sd->disk.raid_disk] >= 0) {
1250 close(sources[sd->disk.raid_disk]);
1251 sources[sd->disk.raid_disk] = -1;
1252 }
1253 }
1254 }
1255 }
1256 *degraded = new_degraded;
1257 }
7236ee7a
N
1258 if (part) {
1259 bsb.arraystart2 = __cpu_to_le64(offset * odata);
1260 bsb.length2 = __cpu_to_le64(stripes * chunk/512 * odata);
1261 } else {
1262 bsb.arraystart = __cpu_to_le64(offset * odata);
1263 bsb.length = __cpu_to_le64(stripes * chunk/512 * odata);
1264 }
1265 if (part)
1266 bsb.magic[15] = '2';
1267 for (i = 0; i < dests; i++)
1268 if (part)
1269 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
1270 else
1271 lseek64(destfd[i], destoffsets[i], 0);
1272
1273 rv = save_stripes(sources, offsets,
1274 disks, chunk, level, layout,
1275 dests, destfd,
1276 offset*512*odata, stripes * chunk * odata,
1277 buf);
1278
1279 if (rv)
1280 return rv;
97396422 1281 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1282 for (i = 0; i < dests; i++) {
1283 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1284
1285 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1286 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1287 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1288 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1289
1290 lseek64(destfd[i], destoffsets[i] - 4096, 0);
1291 write(destfd[i], &bsb, 512);
1292 fsync(destfd[i]);
1293 }
2efedc7b 1294
7236ee7a
N
1295 return 0;
1296}
1297
1298/* in 2.6.30, the value reported by sync_completed can be
1299 * less that it should be by one stripe.
1300 * This only happens when reshape hits sync_max and pauses.
1301 * So allow wait_backup to either extent sync_max further
1302 * than strictly necessary, or return before the
1303 * sync has got quite as far as we would really like.
1304 * This is what 'blocks2' is for.
1305 * The various caller give appropriate values so that
1306 * every works.
1307 */
1308int wait_backup(struct mdinfo *sra,
1309 unsigned long long offset, /* per device */
1310 unsigned long long blocks, /* per device */
1311 unsigned long long blocks2, /* per device - hack */
1312 int dests, int *destfd, unsigned long long *destoffsets,
1313 int part)
1314{
1315 /* Wait for resync to pass the section that was backed up
1316 * then erase the backup and allow IO
1317 */
1318 int fd = sysfs_get_fd(sra, NULL, "sync_completed");
1319 unsigned long long completed;
1320 int i;
1321
1322 if (fd < 0)
1323 return -1;
1324 sysfs_set_num(sra, NULL, "sync_max", offset + blocks + blocks2);
1325 if (offset == 0)
1326 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1327 do {
1328 char action[20];
1329 fd_set rfds;
1330 FD_ZERO(&rfds);
1331 FD_SET(fd, &rfds);
1332 select(fd+1, NULL, NULL, &rfds, NULL);
1333 if (sysfs_fd_get_ll(fd, &completed) < 0) {
1334 close(fd);
1335 return -1;
e86c9dd6 1336 }
7236ee7a
N
1337 if (sysfs_get_str(sra, NULL, "sync_action",
1338 action, 20) > 0 &&
1339 strncmp(action, "reshape", 7) != 0)
1340 break;
1341 } while (completed < offset + blocks);
1342 close(fd);
1343
1344 if (part) {
1345 bsb.arraystart2 = __cpu_to_le64(0);
1346 bsb.length2 = __cpu_to_le64(0);
1347 } else {
1348 bsb.arraystart = __cpu_to_le64(0);
1349 bsb.length = __cpu_to_le64(0);
1350 }
97396422 1351 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1352 for (i = 0; i < dests; i++) {
1353 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
1354 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
1355 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
1356 bsb.sb_csum2 = bsb_csum((char*)&bsb,
1357 ((char*)&bsb.sb_csum2)-((char*)&bsb));
1358 lseek64(destfd[i], destoffsets[i]-4096, 0);
1359 write(destfd[i], &bsb, 512);
1360 fsync(destfd[i]);
1361 }
1362 return 0;
1363}
e86c9dd6 1364
7236ee7a
N
1365static void fail(char *msg)
1366{
1367 write(2, msg, strlen(msg));
1368 write(2, "\n", 1);
1369 exit(1);
1370}
1371
1372static char *abuf, *bbuf;
1373static int abuflen;
1374static void validate(int afd, int bfd, unsigned long long offset)
1375{
1376 /* check that the data in the backup against the array.
1377 * This is only used for regression testing and should not
1378 * be used while the array is active
1379 */
7236ee7a
N
1380 if (afd < 0)
1381 return;
1382 lseek64(bfd, offset - 4096, 0);
1383 if (read(bfd, &bsb2, 512) != 512)
1384 fail("cannot read bsb");
1385 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
1386 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
1387 fail("first csum bad");
1388 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
1389 fail("magic is bad");
1390 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
1391 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
1392 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
1393 fail("second csum bad");
1394
1395 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
1396 fail("devstart is wrong");
1397
1398 if (bsb2.length) {
1399 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
1400
1401 if (abuflen < len) {
1402 free(abuf);
1403 free(bbuf);
1404 abuflen = len;
1405 posix_memalign((void**)&abuf, 4096, abuflen);
1406 posix_memalign((void**)&bbuf, 4096, abuflen);
e86c9dd6 1407 }
48924014 1408
7236ee7a
N
1409 lseek64(bfd, offset, 0);
1410 if (read(bfd, bbuf, len) != len) {
1411 printf("len %llu\n", len);
1412 fail("read first backup failed");
1413 }
1414 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
1415 if (read(afd, abuf, len) != len)
1416 fail("read first from array failed");
1417 if (memcmp(bbuf, abuf, len) != 0) {
1418 int i;
1419 printf("offset=%llu len=%llu\n",
1420 __le64_to_cpu(bsb2.arraystart)*512, len);
1421 for (i=0; i<len; i++)
1422 if (bbuf[i] != abuf[i]) {
1423 printf("first diff byte %d\n", i);
93ecfa01 1424 break;
7236ee7a
N
1425 }
1426 fail("data1 compare failed");
e86c9dd6 1427 }
7236ee7a
N
1428 }
1429 if (bsb2.length2) {
1430 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
1431
1432 if (abuflen < len) {
1433 free(abuf);
1434 free(bbuf);
1435 abuflen = len;
1436 abuf = malloc(abuflen);
1437 bbuf = malloc(abuflen);
e86c9dd6
NB
1438 }
1439
7236ee7a
N
1440 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
1441 if (read(bfd, bbuf, len) != len)
1442 fail("read second backup failed");
1443 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
1444 if (read(afd, abuf, len) != len)
1445 fail("read second from array failed");
1446 if (memcmp(bbuf, abuf, len) != 0)
1447 fail("data2 compare failed");
e86c9dd6 1448 }
7236ee7a 1449}
e86c9dd6 1450
7236ee7a
N
1451static int child_grow(int afd, struct mdinfo *sra, unsigned long stripes,
1452 int *fds, unsigned long long *offsets,
1453 int disks, int chunk, int level, int layout, int data,
1454 int dests, int *destfd, unsigned long long *destoffsets)
1455{
1456 char *buf;
d4445387 1457 int degraded = 0;
e86c9dd6 1458
7236ee7a
N
1459 posix_memalign((void**)&buf, 4096, disks * chunk);
1460 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1461 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1462 grow_backup(sra, 0, stripes,
1463 fds, offsets, disks, chunk, level, layout,
1464 dests, destfd, destoffsets,
d4445387 1465 0, &degraded, buf);
7236ee7a 1466 validate(afd, destfd[0], destoffsets[0]);
725cac4c
N
1467 wait_backup(sra, 0, stripes * chunk / 512, stripes * chunk / 512,
1468 dests, destfd, destoffsets,
1469 0);
7236ee7a
N
1470 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1471 free(buf);
1472 /* FIXME this should probably be numeric */
1473 sysfs_set_str(sra, NULL, "sync_max", "max");
e86c9dd6 1474 return 1;
7236ee7a 1475}
e86c9dd6 1476
7236ee7a
N
1477static int child_shrink(int afd, struct mdinfo *sra, unsigned long stripes,
1478 int *fds, unsigned long long *offsets,
1479 int disks, int chunk, int level, int layout, int data,
1480 int dests, int *destfd, unsigned long long *destoffsets)
1481{
1482 char *buf;
1483 unsigned long long start;
1484 int rv;
d4445387 1485 int degraded = 0;
7236ee7a
N
1486
1487 posix_memalign((void**)&buf, 4096, disks * chunk);
1488 start = sra->component_size - stripes * chunk/512;
1489 sysfs_set_num(sra, NULL, "sync_max", start);
1490 sysfs_set_str(sra, NULL, "sync_action", "reshape");
1491 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1492 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1493 rv = wait_backup(sra, 0, start - stripes * chunk/512, stripes * chunk/512,
1494 dests, destfd, destoffsets, 0);
1495 if (rv < 0)
1496 return 0;
1497 grow_backup(sra, 0, stripes,
1498 fds, offsets,
1499 disks, chunk, level, layout,
1500 dests, destfd, destoffsets,
d4445387 1501 0, &degraded, buf);
7236ee7a 1502 validate(afd, destfd[0], destoffsets[0]);
725cac4c
N
1503 wait_backup(sra, start, stripes*chunk/512, 0,
1504 dests, destfd, destoffsets, 0);
7236ee7a
N
1505 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * chunk/512) * data);
1506 free(buf);
1507 /* FIXME this should probably be numeric */
1508 sysfs_set_str(sra, NULL, "sync_max", "max");
1509 return 1;
1510}
1511
1512static int child_same_size(int afd, struct mdinfo *sra, unsigned long stripes,
1513 int *fds, unsigned long long *offsets,
e9e43ec3 1514 unsigned long long start,
7236ee7a
N
1515 int disks, int chunk, int level, int layout, int data,
1516 int dests, int *destfd, unsigned long long *destoffsets)
1517{
e9e43ec3 1518 unsigned long long size;
7236ee7a
N
1519 unsigned long tailstripes = stripes;
1520 int part;
1521 char *buf;
1522 unsigned long long speed;
d4445387 1523 int degraded = 0;
7236ee7a
N
1524
1525
1526 posix_memalign((void**)&buf, 4096, disks * chunk);
1527
1528 sysfs_set_num(sra, NULL, "suspend_lo", 0);
1529 sysfs_set_num(sra, NULL, "suspend_hi", 0);
1530
1531 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
1532 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
1533
e9e43ec3 1534 grow_backup(sra, start, stripes,
7236ee7a
N
1535 fds, offsets,
1536 disks, chunk, level, layout,
1537 dests, destfd, destoffsets,
d4445387 1538 0, &degraded, buf);
e9e43ec3 1539 grow_backup(sra, (start + stripes) * chunk/512, stripes,
7236ee7a
N
1540 fds, offsets,
1541 disks, chunk, level, layout,
1542 dests, destfd, destoffsets,
d4445387 1543 1, &degraded, buf);
7236ee7a
N
1544 validate(afd, destfd[0], destoffsets[0]);
1545 part = 0;
e9e43ec3 1546 start += stripes * 2; /* where to read next */
7236ee7a
N
1547 size = sra->component_size / (chunk/512);
1548 while (start < size) {
1549 if (wait_backup(sra, (start-stripes*2)*chunk/512,
1550 stripes*chunk/512, 0,
1551 dests, destfd, destoffsets,
1552 part) < 0)
1553 return 0;
1554 sysfs_set_num(sra, NULL, "suspend_lo", start*chunk/512 * data);
1555 if (start + stripes > size)
1556 tailstripes = (size - start);
1557
1558 grow_backup(sra, start*chunk/512, tailstripes,
1559 fds, offsets,
1560 disks, chunk, level, layout,
1561 dests, destfd, destoffsets,
d4445387 1562 part, &degraded, buf);
7236ee7a
N
1563 start += stripes;
1564 part = 1 - part;
1565 validate(afd, destfd[0], destoffsets[0]);
1566 }
1567 if (wait_backup(sra, (start-stripes*2) * chunk/512, stripes * chunk/512, 0,
1568 dests, destfd, destoffsets,
1569 part) < 0)
1570 return 0;
1571 sysfs_set_num(sra, NULL, "suspend_lo", ((start-stripes)*chunk/512) * data);
725cac4c
N
1572 wait_backup(sra, (start-stripes) * chunk/512, tailstripes * chunk/512, 0,
1573 dests, destfd, destoffsets,
1574 1-part);
7236ee7a
N
1575 sysfs_set_num(sra, NULL, "suspend_lo", (size*chunk/512) * data);
1576 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
1577 free(buf);
1578 return 1;
e86c9dd6 1579}
353632d9
NB
1580
1581/*
1582 * If any spare contains md_back_data-1 which is recent wrt mtime,
1583 * write that data into the array and update the super blocks with
1584 * the new reshape_progress
1585 */
ea0ebe96
N
1586int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
1587 char *backup_file, int verbose)
353632d9
NB
1588{
1589 int i, j;
1590 int old_disks;
353632d9 1591 unsigned long long *offsets;
82f2d6ab 1592 unsigned long long nstripe, ostripe;
6e9eac4f 1593 int ndata, odata;
353632d9 1594
e9e43ec3
N
1595 if (info->new_level != info->array.level)
1596 return 1; /* Cannot handle level changes (they are instantaneous) */
1597
1598 odata = info->array.raid_disks - info->delta_disks - 1;
1599 if (info->array.level == 6) odata--; /* number of data disks */
1600 ndata = info->array.raid_disks - 1;
1601 if (info->new_level == 6) ndata--;
353632d9
NB
1602
1603 old_disks = info->array.raid_disks - info->delta_disks;
1604
e9e43ec3
N
1605 if (info->delta_disks <= 0)
1606 /* Didn't grow, so the backup file must have
1607 * been used
1608 */
1609 old_disks = cnt;
06b0d786 1610 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 1611 struct mdinfo dinfo;
2efedc7b 1612 char buf[4096];
06b0d786 1613 int fd;
e9e43ec3 1614 int bsbsize;
ea0ebe96 1615 char *devname, namebuf[20];
353632d9
NB
1616
1617 /* This was a spare and may have some saved data on it.
1618 * Load the superblock, find and load the
1619 * backup_super_block.
1620 * If either fail, go on to next device.
1621 * If the backup contains no new info, just return
206c5eae 1622 * else restore data and update all superblocks
353632d9 1623 */
06b0d786
NB
1624 if (i == old_disks-1) {
1625 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
1626 if (fd<0) {
1627 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
1628 backup_file, strerror(errno));
06b0d786 1629 continue;
e9e43ec3 1630 }
ea0ebe96 1631 devname = backup_file;
06b0d786
NB
1632 } else {
1633 fd = fdlist[i];
1634 if (fd < 0)
1635 continue;
3da92f27 1636 if (st->ss->load_super(st, fd, NULL))
06b0d786 1637 continue;
353632d9 1638
3da92f27
NB
1639 st->ss->getinfo_super(st, &dinfo);
1640 st->ss->free_super(st);
1641
06b0d786
NB
1642 if (lseek64(fd,
1643 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
1644 0) < 0) {
1645 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 1646 continue; /* Cannot seek */
ea0ebe96
N
1647 }
1648 sprintf(namebuf, "device-%d", i);
1649 devname = namebuf;
06b0d786 1650 }
ea0ebe96
N
1651 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
1652 if (verbose)
1653 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 1654 continue; /* Cannot read */
ea0ebe96 1655 }
e9e43ec3 1656 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
1657 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
1658 if (verbose)
1659 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 1660 continue;
ea0ebe96
N
1661 }
1662 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
1663 if (verbose)
1664 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 1665 continue; /* bad checksum */
ea0ebe96 1666 }
e9e43ec3 1667 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
1668 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
1669 if (verbose)
1670 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 1671 continue; /* Bad second checksum */
ea0ebe96
N
1672 }
1673 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
1674 if (verbose)
1675 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 1676 continue; /* Wrong uuid */
ea0ebe96 1677 }
353632d9 1678
97396422
N
1679 if (info->array.utime > __le64_to_cpu(bsb.mtime) + 10*60 ||
1680 info->array.utime < __le64_to_cpu(bsb.mtime) - 10*60) {
ea0ebe96
N
1681 if (verbose)
1682 fprintf(stderr, Name ": too-old timestamp on backup-metadata on %s\n", devname);
353632d9 1683 continue; /* time stamp is too bad */
ea0ebe96 1684 }
353632d9 1685
e9e43ec3
N
1686 if (bsb.magic[15] == '1') {
1687 if (info->delta_disks >= 0) {
1688 /* reshape_progress is increasing */
1689 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
ea0ebe96
N
1690 info->reshape_progress) {
1691 nonew:
1692 if (verbose)
1693 fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
e9e43ec3 1694 continue; /* No new data here */
ea0ebe96 1695 }
e9e43ec3
N
1696 } else {
1697 /* reshape_progress is decreasing */
1698 if (__le64_to_cpu(bsb.arraystart) >=
1699 info->reshape_progress)
ea0ebe96 1700 goto nonew; /* No new data here */
e9e43ec3
N
1701 }
1702 } else {
1703 if (info->delta_disks >= 0) {
1704 /* reshape_progress is increasing */
1705 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
1706 info->reshape_progress &&
1707 __le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
1708 info->reshape_progress)
ea0ebe96 1709 goto nonew; /* No new data here */
e9e43ec3
N
1710 } else {
1711 /* reshape_progress is decreasing */
1712 if (__le64_to_cpu(bsb.arraystart) >=
1713 info->reshape_progress &&
1714 __le64_to_cpu(bsb.arraystart2) >=
1715 info->reshape_progress)
ea0ebe96 1716 goto nonew; /* No new data here */
e9e43ec3
N
1717 }
1718 }
ea0ebe96
N
1719 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
1720 second_fail:
1721 if (verbose)
1722 fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
1723 devname);
353632d9 1724 continue; /* Cannot seek */
ea0ebe96 1725 }
2efedc7b 1726 /* There should be a duplicate backup superblock 4k before here */
06b0d786 1727 if (lseek64(fd, -4096, 1) < 0 ||
e9e43ec3 1728 read(fd, buf, 4096) != 4096)
ea0ebe96 1729 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
1730 if (bsb.magic[15] == '1')
1731 bsbsize = offsetof(struct mdp_backup_super, pad1);
1732 else
1733 bsbsize = offsetof(struct mdp_backup_super, pad);
1734 if (memcmp(buf, &bsb, bsbsize) != 0)
ea0ebe96 1735 goto second_fail; /* Cannot find leading superblock */
2efedc7b 1736
353632d9
NB
1737 /* Now need the data offsets for all devices. */
1738 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
1739 for(j=0; j<info->array.raid_disks; j++) {
1740 if (fdlist[j] < 0)
1741 continue;
3da92f27 1742 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
1743 /* FIXME should be this be an error */
1744 continue;
3da92f27
NB
1745 st->ss->getinfo_super(st, &dinfo);
1746 st->ss->free_super(st);
353632d9
NB
1747 offsets[j] = dinfo.data_offset;
1748 }
1749 printf(Name ": restoring critical section\n");
1750
1751 if (restore_stripes(fdlist, offsets,
1752 info->array.raid_disks,
1753 info->new_chunk,
1754 info->new_level,
1755 info->new_layout,
06b0d786 1756 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 1757 __le64_to_cpu(bsb.arraystart)*512,
e9e43ec3
N
1758 __le64_to_cpu(bsb.length)*512)) {
1759 /* didn't succeed, so giveup */
ea0ebe96
N
1760 if (verbose)
1761 fprintf(stderr, Name ": Error restoring backup from %s\n",
1762 devname);
e9e43ec3
N
1763 return 1;
1764 }
1765
1766 if (bsb.magic[15] == '2' &&
1767 restore_stripes(fdlist, offsets,
1768 info->array.raid_disks,
1769 info->new_chunk,
1770 info->new_level,
1771 info->new_layout,
1772 fd, __le64_to_cpu(bsb.devstart)*512 +
1773 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 1774 __le64_to_cpu(bsb.arraystart2)*512,
e9e43ec3 1775 __le64_to_cpu(bsb.length2)*512)) {
353632d9 1776 /* didn't succeed, so giveup */
ea0ebe96
N
1777 if (verbose)
1778 fprintf(stderr, Name ": Error restoring second backup from %s\n",
1779 devname);
2295250a 1780 return 1;
353632d9
NB
1781 }
1782
e9e43ec3 1783
353632d9
NB
1784 /* Ok, so the data is restored. Let's update those superblocks. */
1785
e9e43ec3
N
1786 if (info->delta_disks >= 0) {
1787 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
1788 __le64_to_cpu(bsb.length);
1789 if (bsb.magic[15] == '2') {
1790 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
1791 __le64_to_cpu(bsb.length2);
1792 if (p2 > info->reshape_progress)
1793 info->reshape_progress = p2;
1794 }
1795 } else {
1796 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
1797 if (bsb.magic[15] == '2') {
1798 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
1799 if (p2 < info->reshape_progress)
1800 info->reshape_progress = p2;
1801 }
1802 }
353632d9
NB
1803 for (j=0; j<info->array.raid_disks; j++) {
1804 if (fdlist[j] < 0) continue;
3da92f27 1805 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 1806 continue;
3da92f27 1807 st->ss->getinfo_super(st, &dinfo);
e9e43ec3 1808 dinfo.reshape_progress = info->reshape_progress;
3da92f27 1809 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
1810 "_reshape_progress",
1811 NULL,0, 0, NULL);
3da92f27
NB
1812 st->ss->store_super(st, fdlist[j]);
1813 st->ss->free_super(st);
353632d9 1814 }
353632d9
NB
1815 return 0;
1816 }
6e9eac4f
NB
1817 /* Didn't find any backup data, try to see if any
1818 * was needed.
1819 */
82f2d6ab
N
1820 if (info->delta_disks < 0) {
1821 /* When shrinking, the critical section is at the end.
1822 * So see if we are before the critical section.
1823 */
1824 unsigned long long first_block;
1825 nstripe = ostripe = 0;
1826 first_block = 0;
1827 while (ostripe >= nstripe) {
1828 ostripe += info->array.chunk_size / 512;
1829 first_block = ostripe * odata;
1830 nstripe = first_block / ndata / (info->new_chunk/512) *
1831 (info->new_chunk/512);
1832 }
1833
1834 if (info->reshape_progress >= first_block)
1835 return 0;
6e9eac4f 1836 }
82f2d6ab
N
1837 if (info->delta_disks > 0) {
1838 /* See if we are beyond the critical section. */
1839 unsigned long long last_block;
1840 nstripe = ostripe = 0;
1841 last_block = 0;
1842 while (nstripe >= ostripe) {
1843 nstripe += info->new_chunk / 512;
1844 last_block = nstripe * ndata;
1845 ostripe = last_block / odata / (info->array.chunk_size/512) *
1846 (info->array.chunk_size/512);
1847 }
6e9eac4f 1848
82f2d6ab
N
1849 if (info->reshape_progress >= last_block)
1850 return 0;
1851 }
6e9eac4f 1852 /* needed to recover critical section! */
ea0ebe96
N
1853 if (verbose)
1854 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 1855 return 1;
353632d9 1856}
e9e43ec3
N
1857
1858int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
1859 char *backup_file)
1860{
1861 /* Array is assembled and ready to be started, but
1862 * monitoring is probably required.
1863 * So:
1864 * - start read-only
1865 * - set upper bound for resync
1866 * - initialise the 'suspend' boundaries
1867 * - switch to read-write
1868 * - fork and continue monitoring
1869 */
1870 int err;
1871 int backup_list[1];
1872 unsigned long long backup_offsets[1];
1873 int odisks, ndisks, ochunk, nchunk,odata,ndata;
1874 unsigned long a,b,blocks,stripes;
1875 int backup_fd;
1876 int *fds;
1877 unsigned long long *offsets;
1878 int d;
1879 struct mdinfo *sra, *sd;
1880 int rv;
1b13faf7 1881 int cache;
e9e43ec3
N
1882 int done = 0;
1883
1884 err = sysfs_set_str(info, NULL, "array_state", "readonly");
1885 if (err)
1886 return err;
1887
1888 /* make sure reshape doesn't progress until we are ready */
1889 sysfs_set_str(info, NULL, "sync_max", "0");
1890 sysfs_set_str(info, NULL, "array_state", "active"); /* FIXME or clean */
1891
1892 /* ndisks is not growing, so raid_disks is old and +delta is new */
1893 odisks = info->array.raid_disks;
1894 ndisks = odisks + info->delta_disks;
1895 odata = odisks - 1;
1896 ndata = ndisks - 1;
1897 if (info->array.level == 6) {
1898 odata--;
1899 ndata--;
1900 }
1901 ochunk = info->array.chunk_size;
1902 nchunk = info->new_chunk;
1903
1904
1905 a = ochunk/512 * odata;
1906 b = nchunk/512 * ndata;
1907 /* Find GCD */
1908 while (a != b) {
1909 if (a < b)
1910 b -= a;
1911 if (b < a)
1912 a -= b;
1913 }
1914 /* LCM == product / GCD */
1915 blocks = ochunk/512 * nchunk/512 * odata * ndata / a;
1916
1b13faf7
N
1917 sra = sysfs_read(-1, devname2devnum(info->sys_name),
1918 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
1919 GET_CACHE);
1920
1921
e9e43ec3 1922 if (ndata == odata)
1b13faf7
N
1923 while (blocks * 32 < sra->component_size &&
1924 blocks < 16*1024*2)
1925 blocks *= 2;
e9e43ec3
N
1926 stripes = blocks / (info->array.chunk_size/512) / odata;
1927
1b13faf7
N
1928 /* check that the internal stripe cache is
1929 * large enough, or it won't work.
1930 */
1931 cache = (nchunk < ochunk) ? ochunk : nchunk;
1932 cache = cache * 4 / 4096;
1933 if (cache < blocks / 8 / odisks + 16)
1934 /* Make it big enough to hold 'blocks' */
1935 cache = blocks / 8 / odisks + 16;
1936 if (sra->cache_size < cache)
1937 sysfs_set_num(sra, NULL, "stripe_cache_size",
1938 cache+1);
e9e43ec3
N
1939
1940 memset(&bsb, 0, 512);
1941 memcpy(bsb.magic, "md_backup_data-1", 16);
1942 memcpy(&bsb.set_uuid, info->uuid, 16);
1943 bsb.mtime = __cpu_to_le64(time(0));
1944 bsb.devstart2 = blocks;
1945
1946 backup_fd = open(backup_file, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR);
1947 backup_list[0] = backup_fd;
1948 backup_offsets[0] = 8 * 512;
1949 fds = malloc(odisks * sizeof(fds[0]));
1950 offsets = malloc(odisks * sizeof(offsets[0]));
1951 for (d=0; d<odisks; d++)
1952 fds[d] = -1;
1953
e9e43ec3
N
1954 for (sd = sra->devs; sd; sd = sd->next) {
1955 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1956 continue;
1957 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1958 char *dn = map_dev(sd->disk.major,
1959 sd->disk.minor, 1);
1960 fds[sd->disk.raid_disk]
1961 = dev_open(dn, O_RDONLY);
1962 offsets[sd->disk.raid_disk] = sd->data_offset*512;
1963 if (fds[sd->disk.raid_disk] < 0) {
1964 fprintf(stderr, Name ": %s: cannot open component %s\n",
1965 info->sys_name, dn?dn:"-unknown-");
1966 rv = 1;
1967 goto release;
1968 }
1969 free(dn);
1970 }
1971 }
1972
1973 switch(fork()) {
1974 case 0:
1975 close(mdfd);
1976 mlockall(MCL_FUTURE);
1977 if (info->delta_disks < 0)
1978 done = child_shrink(-1, info, stripes,
1979 fds, offsets,
1980 info->array.raid_disks,
1981 info->array.chunk_size,
1982 info->array.level, info->array.layout,
1983 odata,
1984 1, backup_list, backup_offsets);
1985 else if (info->delta_disks == 0) {
1986 /* The 'start' is a per-device stripe number.
1987 * reshape_progress is a per-array sector number.
1988 * So divide by ndata * chunk_size
1989 */
1990 unsigned long long start = info->reshape_progress / ndata;
1991 start /= (info->array.chunk_size/512);
1992 done = child_same_size(-1, info, stripes,
1993 fds, offsets,
1994 start,
1995 info->array.raid_disks,
1996 info->array.chunk_size,
1997 info->array.level, info->array.layout,
1998 odata,
1999 1, backup_list, backup_offsets);
2000 }
2001 if (backup_file && done)
2002 unlink(backup_file);
2003 /* FIXME should I intuit a level change */
2004 exit(0);
2005 case -1:
2006 fprintf(stderr, Name ": Cannot run child to continue monitoring reshape: %s\n",
2007 strerror(errno));
2008 return 1;
2009 default:
2010 break;
2011 }
2012release:
2013 return 0;
2014}
2015
2016