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