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