]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Kill: remove duplicate tests on 'force'.
[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,
9ad6f6e6 1353 int mdfd,
5da9ab98
N
1354 struct supertype *st,
1355 struct mdinfo *info,
1356 int force,
1357 char *backup_file,
b76b30e0 1358 int quiet, int restart, int freeze_reshape);
1c009fc2 1359
81219e70
LM
1360/*
1361 * helper routine to check metadata reshape avalability
1362 * 1. Do not "grow" arrays with volume activation blocked
1363 * 2. do not reshape containers with container reshape blocked
1364 *
1365 * IN:
1366 * subarray - array name or NULL for container wide reshape
1367 * content - md device info from container_content
1368 * OUT:
1369 * 0 - block reshape
1370 */
1371static int check_reshape(char *subarray, struct mdinfo *content)
1372{
1373 char *ep;
1374 unsigned int idx;
1375
1376 if (!subarray) {
1377 if (content->array.state & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE))
1378 return 0;
1379 } else {
1380 /* do not "grow" arrays with volume activation blocked */
1381 idx = strtoul(subarray, &ep, 10);
1382 if (*ep == '\0'
1383 && content->container_member == (int) idx
1384 && (content->array.state & (1<<MD_SB_BLOCK_VOLUME)))
1385 return 0;
1386 }
1387 return 1;
1388}
1389
06b0d786 1390int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
e86c9dd6 1391 long long size,
691a36b7 1392 int level, char *layout_str, int chunksize, int raid_disks,
e2e53a2d 1393 struct mddev_dev *devlist,
ce52f92f 1394 int assume_clean, int force)
e86c9dd6
NB
1395{
1396 /* Make some changes in the shape of an array.
1397 * The kernel must support the change.
7236ee7a
N
1398 *
1399 * There are three different changes. Each can trigger
1400 * a resync or recovery so we freeze that until we have
1401 * requested everything (if kernel supports freezing - 2.6.30).
1402 * The steps are:
1403 * - change size (i.e. component_size)
1404 * - change level
1405 * - change layout/chunksize/ndisks
1406 *
1407 * The last can require a reshape. It is different on different
1408 * levels so we need to check the level before actioning it.
1409 * Some times the level change needs to be requested after the
1410 * reshape (e.g. raid6->raid5, raid5->raid0)
1411 *
e86c9dd6 1412 */
5da9ab98 1413 struct mdu_array_info_s array;
7236ee7a 1414 int rv = 0;
e86c9dd6 1415 struct supertype *st;
4725bc31 1416 char *subarray = NULL;
e86c9dd6 1417
7236ee7a 1418 int frozen;
7236ee7a 1419 int changed = 0;
7bc71196 1420 char *container = NULL;
5da9ab98 1421 char container_buf[20];
7bc71196 1422 int cfd = -1;
e86c9dd6 1423
e2e53a2d
N
1424 struct mddev_dev *dv;
1425 int added_disks;
1426
5da9ab98 1427 struct mdinfo info;
7e0f6979 1428 struct mdinfo *sra;
e86c9dd6
NB
1429
1430 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1431 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
1432 devname);
1433 return 1;
1434 }
24d40069 1435
9ce510be
N
1436 if (size >= 0 &&
1437 (chunksize || level!= UnSet || layout_str || raid_disks)) {
1438 fprintf(stderr, Name ": cannot change component size at the same time "
1439 "as other changes.\n"
1440 " Change size first, then check data is intact before "
1441 "making other changes.\n");
1442 return 1;
1443 }
1444
24d40069
N
1445 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
1446 get_linux_version() < 2006032 &&
1447 !check_env("MDADM_FORCE_FEWER")) {
1448 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
1449 " Please use a newer kernel\n");
1450 return 1;
1451 }
7bc71196
DW
1452
1453 st = super_by_fd(fd, &subarray);
1454 if (!st) {
1455 fprintf(stderr, Name ": Unable to determine metadata format for %s\n", devname);
1456 return 1;
1457 }
acab7bb1
N
1458 if (raid_disks > st->max_devs) {
1459 fprintf(stderr, Name ": Cannot increase raid-disks on this array"
1460 " beyond %d\n", st->max_devs);
1461 return 1;
1462 }
7bc71196
DW
1463
1464 /* in the external case we need to check that the requested reshape is
1465 * supported, and perform an initial check that the container holds the
1466 * pre-requisite spare devices (mdmon owns final validation)
1467 */
1468 if (st->ss->external) {
1469 int container_dev;
7f2ba464 1470 int rv;
7bc71196
DW
1471
1472 if (subarray) {
1473 container_dev = st->container_dev;
1474 cfd = open_dev_excl(st->container_dev);
7bc71196
DW
1475 } else {
1476 container_dev = st->devnum;
1477 close(fd);
1478 cfd = open_dev_excl(st->devnum);
1479 fd = cfd;
1480 }
1481 if (cfd < 0) {
1482 fprintf(stderr, Name ": Unable to open container for %s\n",
1483 devname);
7f2ba464 1484 free(subarray);
7bc71196
DW
1485 return 1;
1486 }
1487
5da9ab98
N
1488 fmt_devname(container_buf, container_dev);
1489 container = container_buf;
7bc71196 1490
eb744788
AK
1491 rv = st->ss->load_container(st, cfd, NULL);
1492
7f2ba464 1493 if (rv) {
7bc71196
DW
1494 fprintf(stderr, Name ": Cannot read superblock for %s\n",
1495 devname);
7f2ba464 1496 free(subarray);
7bc71196
DW
1497 return 1;
1498 }
1499
81219e70
LM
1500 /* check if operation is supported for metadata handler */
1501 if (st->ss->container_content) {
1502 struct mdinfo *cc = NULL;
1503 struct mdinfo *content = NULL;
1504
1505 cc = st->ss->container_content(st, subarray);
1506 for (content = cc; content ; content = content->next) {
1507 int allow_reshape;
1508
1509 /* check if reshape is allowed based on metadata
1510 * indications stored in content.array.status
1511 */
1512 allow_reshape = check_reshape(subarray, content);
1513 if (!allow_reshape) {
1514 fprintf(stderr, Name
1515 " cannot reshape arrays in"
1516 " container with unsupported"
1517 " metadata: %s(%s)\n",
1518 devname, container_buf);
1519 sysfs_free(cc);
1520 free(subarray);
1521 return 1;
1522 }
1523 }
1524 sysfs_free(cc);
1525 }
7bc71196
DW
1526 if (mdmon_running(container_dev))
1527 st->update_tail = &st->updates;
e2e53a2d 1528 }
691a36b7 1529
e2e53a2d
N
1530 added_disks = 0;
1531 for (dv = devlist; dv; dv = dv->next)
1532 added_disks++;
691a36b7 1533 if (raid_disks > array.raid_disks &&
e2e53a2d 1534 array.spare_disks +added_disks < (raid_disks - array.raid_disks) &&
691a36b7
N
1535 !force) {
1536 fprintf(stderr,
1537 Name ": Need %d spare%s to avoid degraded array,"
1538 " and only have %d.\n"
1539 " Use --force to over-ride this check.\n",
1540 raid_disks - array.raid_disks,
1541 raid_disks - array.raid_disks == 1 ? "" : "s",
e2e53a2d 1542 array.spare_disks + added_disks);
691a36b7 1543 return 1;
7bc71196
DW
1544 }
1545
3fa436ac
ML
1546 sra = sysfs_read(fd, 0, GET_LEVEL | GET_DISKS | GET_DEVS
1547 | GET_STATE | GET_VERSION);
1548 if (sra) {
7f2ba464 1549 if (st->ss->external && subarray == NULL) {
7bc71196
DW
1550 array.level = LEVEL_CONTAINER;
1551 sra->array.level = LEVEL_CONTAINER;
1552 }
7bc71196 1553 } else {
b526e52d
DW
1554 fprintf(stderr, Name ": failed to read sysfs parameters for %s\n",
1555 devname);
1556 return 1;
1557 }
7f2ba464
DW
1558 frozen = freeze(st);
1559 if (frozen < -1) {
1560 /* freeze() already spewed the reason */
1561 return 1;
1562 } else if (frozen < 0) {
7236ee7a
N
1563 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
1564 " be reshaped\n", devname);
1565 return 1;
1566 }
1567
1568 /* ========= set size =============== */
1569 if (size >= 0 && (size == 0 || size != array.size)) {
85f10287 1570 long long orig_size = get_component_size(fd)/2;
20a46756 1571 long long min_csize;
d1537ed1 1572 struct mdinfo *mdi;
7bc71196 1573
85f10287
N
1574 if (orig_size == 0)
1575 orig_size = array.size;
1576
41784c88
AK
1577 if (reshape_super(st, size, UnSet, UnSet, 0, 0, UnSet, NULL,
1578 devname, !quiet)) {
7bc71196
DW
1579 rv = 1;
1580 goto release;
1581 }
1582 sync_metadata(st);
d1537ed1
N
1583
1584 /* Update the size of each member device in case
1585 * they have been resized. This will never reduce
1586 * below the current used-size. The "size" attribute
20a46756 1587 * understands '0' to mean 'max'.
d1537ed1 1588 */
20a46756
N
1589 min_csize = 0;
1590 for (mdi = sra->devs; mdi; mdi = mdi->next) {
1591 if (sysfs_set_num(sra, mdi, "size", size) < 0)
1592 break;
1593 if (array.not_persistent == 0 &&
1594 array.major_version == 0 &&
1595 get_linux_version() < 3001000) {
1596 /* Dangerous to allow size to exceed 2TB */
1597 unsigned long long csize;
1598 if (sysfs_get_ll(sra, mdi, "size", &csize) == 0) {
1599 if (csize >= 2ULL*1024*1024*1024)
1600 csize = 2ULL*1024*1024*1024;
1601 if ((min_csize == 0 || (min_csize
1602 > (long long)csize)))
1603 min_csize = csize;
1604 }
1605 }
1606 }
1607 if (min_csize && size > min_csize) {
1608 fprintf(stderr, Name ": Cannot safely make this array "
1609 "use more than 2TB per device on this kernel.\n");
1610 rv = 1;
1611 goto release;
1612 }
1613 if (min_csize && size == 0) {
1614 /* Don't let the kernel choose a size - it will get
1615 * it wrong
1616 */
1617 fprintf(stderr, Name ": Limited v0.90 array to "
1618 "2TB per device\n");
1619 size = min_csize;
1620 }
d1537ed1 1621
7236ee7a
N
1622 array.size = size;
1623 if (array.size != size) {
1624 /* got truncated to 32bit, write to
1625 * component_size instead
1626 */
1627 if (sra)
1628 rv = sysfs_set_num(sra, NULL,
1629 "component_size", size);
1630 else
1631 rv = -1;
1632 } else
1633 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1634 if (rv != 0) {
39bbb392 1635 int err = errno;
7bc71196
DW
1636
1637 /* restore metadata */
1638 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
41784c88 1639 UnSet, NULL, devname, !quiet) == 0)
7bc71196 1640 sync_metadata(st);
7236ee7a 1641 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
39bbb392
N
1642 devname, strerror(err));
1643 if (err == EBUSY &&
1644 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1645 fprintf(stderr, " Bitmap must be removed before size can be changed\n");
7236ee7a
N
1646 rv = 1;
1647 goto release;
1648 }
ce52f92f 1649 if (assume_clean) {
6cbf8fb8 1650 /* This will fail on kernels newer than 3.0 unless
ce52f92f
N
1651 * a backport has been arranged.
1652 */
1653 if (sra == NULL ||
1654 sysfs_set_str(sra, NULL, "resync_start", "none") < 0)
1655 fprintf(stderr, Name ": --assume-clean not support with --grow on this kernel\n");
1656 }
7236ee7a 1657 ioctl(fd, GET_ARRAY_INFO, &array);
be1cabbd 1658 size = get_component_size(fd)/2;
f98841b3
N
1659 if (size == 0)
1660 size = array.size;
85f10287
N
1661 if (!quiet) {
1662 if (size == orig_size)
1663 fprintf(stderr, Name ": component size of %s "
1664 "unchanged at %lluK\n",
1665 devname, size);
1666 else
1667 fprintf(stderr, Name ": component size of %s "
1668 "has been set to %lluK\n",
1669 devname, size);
1670 }
7236ee7a 1671 changed = 1;
7bc71196 1672 } else if (array.level != LEVEL_CONTAINER) {
be1cabbd 1673 size = get_component_size(fd)/2;
f98841b3
N
1674 if (size == 0)
1675 size = array.size;
7236ee7a
N
1676 }
1677
d515d27f
N
1678 /* See if there is anything else to do */
1679 if ((level == UnSet || level == array.level) &&
1680 (layout_str == NULL) &&
1681 (chunksize == 0 || chunksize == array.chunk_size) &&
1682 (raid_disks == 0 || raid_disks == array.raid_disks)) {
1683 /* Nothing more to do */
1684 if (!changed && !quiet)
1685 fprintf(stderr, Name ": %s: no change requested\n",
1686 devname);
1687 goto release;
1688 }
1689
dfe77a9e 1690 /* ========= check for Raid10/Raid1 -> Raid0 conversion ===============
5da9ab98 1691 * current implementation assumes that following conditions must be met:
dfe77a9e
KW
1692 * - RAID10:
1693 * - far_copies == 1
1694 * - near_copies == 2
62a48395 1695 */
dfe77a9e
KW
1696 if ((level == 0 && array.level == 10 && sra &&
1697 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) ||
1698 (level == 0 && array.level == 1 && sra)) {
62a48395 1699 int err;
dfe77a9e 1700 err = remove_disks_for_takeover(st, sra, array.layout);
62a48395
AK
1701 if (err) {
1702 dprintf(Name": Array cannot be reshaped\n");
62a48395
AK
1703 if (cfd > -1)
1704 close(cfd);
5da9ab98
N
1705 rv = 1;
1706 goto release;
7236ee7a 1707 }
fde139b9
N
1708 /* Make sure mdmon has seen the device removal
1709 * and updated metadata before we continue with
1710 * level change
1711 */
1712 if (container)
1713 ping_monitor(container);
7236ee7a
N
1714 }
1715
8ff6d094 1716 memset(&info, 0, sizeof(info));
5da9ab98 1717 info.array = array;
7443ee81 1718 sysfs_init(&info, fd, NoMdDev);
3fa436ac 1719 strcpy(info.text_version, sra->text_version);
7443ee81 1720 info.component_size = size*2;
5da9ab98
N
1721 info.new_level = level;
1722 info.new_chunk = chunksize * 1024;
eff4954d
N
1723 if (info.array.level == LEVEL_CONTAINER) {
1724 info.delta_disks = UnSet;
1725 info.array.raid_disks = raid_disks;
1726 } else if (raid_disks)
5da9ab98
N
1727 info.delta_disks = raid_disks - info.array.raid_disks;
1728 else
1729 info.delta_disks = UnSet;
1730 if (layout_str == NULL) {
1731 info.new_layout = UnSet;
1732 if (info.array.level == 6 &&
1733 (info.new_level == 6 || info.new_level == UnSet) &&
1734 info.array.layout >= 16) {
7236ee7a 1735 fprintf(stderr, Name
5da9ab98
N
1736 ": %s has a non-standard layout. If you"
1737 " wish to preserve this\n"
1738 " during the reshape, please specify"
1739 " --layout=preserve\n"
1740 " If you want to change it, specify a"
1741 " layout or use --layout=normalise\n",
7236ee7a
N
1742 devname);
1743 rv = 1;
1744 goto release;
1745 }
5da9ab98
N
1746 } else if (strcmp(layout_str, "normalise") == 0 ||
1747 strcmp(layout_str, "normalize") == 0) {
1748 /* If we have a -6 RAID6 layout, remove the '-6'. */
1749 info.new_layout = UnSet;
1750 if (info.array.level == 6 && info.new_level == UnSet) {
1751 char l[40], *h;
1752 strcpy(l, map_num(r6layout, info.array.layout));
1753 h = strrchr(l, '-');
1754 if (h && strcmp(h, "-6") == 0) {
1755 *h = 0;
1756 info.new_layout = map_name(r6layout, l);
7236ee7a
N
1757 }
1758 }
5da9ab98
N
1759 } else if (strcmp(layout_str, "preserve") == 0) {
1760 info.new_layout = UnSet;
1761 } else {
1762 int l = info.new_level;
1763 if (l == UnSet)
1764 l = info.array.level;
1765 switch (l) {
1766 case 5:
1767 info.new_layout = map_name(r5layout, layout_str);
1768 break;
1769 case 6:
1770 info.new_layout = map_name(r6layout, layout_str);
1771 break;
1772 case 10:
1773 info.new_layout = parse_layout_10(layout_str);
1774 break;
1775 case LEVEL_FAULTY:
1776 info.new_layout = parse_layout_faulty(layout_str);
1777 break;
1778 default:
1779 fprintf(stderr, Name ": layout not meaningful"
1780 " with this level\n");
7bc71196
DW
1781 rv = 1;
1782 goto release;
1783 }
5da9ab98
N
1784 if (info.new_layout == UnSet) {
1785 fprintf(stderr, Name ": layout %s not understood"
1786 " for this level\n",
1787 layout_str);
1788 rv = 1;
1789 goto release;
7bc71196 1790 }
7236ee7a
N
1791 }
1792
907ea753
N
1793 if (array.level == LEVEL_FAULTY) {
1794 if (level != UnSet && level != array.level) {
1795 fprintf(stderr, Name ": cannot change level of Faulty device\n");
1796 rv =1 ;
1797 }
1798 if (chunksize) {
1799 fprintf(stderr, Name ": cannot set chunksize of Faulty device\n");
1800 rv =1 ;
1801 }
1802 if (raid_disks && raid_disks != 1) {
1803 fprintf(stderr, Name ": cannot set raid_disks of Faulty device\n");
1804 rv =1 ;
1805 }
1806 if (layout_str) {
1807 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1808 dprintf("Cannot get array information.\n");
1809 goto release;
1810 }
1811 array.layout = info.new_layout;
1812 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1813 fprintf(stderr, Name ": failed to set new layout\n");
1814 rv = 1;
1815 } else if (!quiet)
1816 printf("layout for %s set to %d\n",
1817 devname, array.layout);
1818 }
1819 } else if (array.level == LEVEL_CONTAINER) {
5da9ab98
N
1820 /* This change is to be applied to every array in the
1821 * container. This is only needed when the metadata imposes
1822 * restraints of the various arrays in the container.
1823 * Currently we only know that IMSM requires all arrays
1824 * to have the same number of devices so changing the
1825 * number of devices (On-Line Capacity Expansion) must be
1826 * performed at the level of the container
1827 */
9ad6f6e6 1828 rv = reshape_container(container, devname, -1, st, &info,
b76b30e0 1829 force, backup_file, quiet, 0, 0);
9202b8eb 1830 frozen = 0;
5da9ab98 1831 } else {
08f9e34b
AK
1832 /* get spare devices from external metadata
1833 */
1834 if (st->ss->external) {
1835 struct mdinfo *info2;
1836
1837 info2 = st->ss->container_content(st, subarray);
1838 if (info2) {
1839 info.array.spare_disks =
1840 info2->array.spare_disks;
1841 sysfs_free(info2);
1842 }
1843 }
1844
5da9ab98
N
1845 /* Impose these changes on a single array. First
1846 * check that the metadata is OK with the change. */
7bc71196 1847
5da9ab98
N
1848 if (reshape_super(st, info.component_size, info.new_level,
1849 info.new_layout, info.new_chunk,
41784c88 1850 info.array.raid_disks, info.delta_disks,
5da9ab98 1851 backup_file, devname, quiet)) {
7bc71196
DW
1852 rv = 1;
1853 goto release;
1854 }
5da9ab98
N
1855 sync_metadata(st);
1856 rv = reshape_array(container, fd, devname, st, &info, force,
b76b30e0 1857 devlist, backup_file, quiet, 0, 0, 0);
9202b8eb 1858 frozen = 0;
5da9ab98
N
1859 }
1860release:
9202b8eb
N
1861 if (frozen > 0)
1862 unfreeze(st);
5da9ab98
N
1863 return rv;
1864}
7bc71196 1865
5da9ab98
N
1866static int reshape_array(char *container, int fd, char *devname,
1867 struct supertype *st, struct mdinfo *info,
e2e53a2d 1868 int force, struct mddev_dev *devlist,
a93f87ee 1869 char *backup_file, int quiet, int forked,
b76b30e0 1870 int restart, int freeze_reshape)
5da9ab98
N
1871{
1872 struct reshape reshape;
1873 int spares_needed;
1874 char *msg;
1875 int orig_level = UnSet;
1876 int disks, odisks;
7bc71196 1877
5da9ab98
N
1878 struct mdu_array_info_s array;
1879 char *c;
e86c9dd6 1880
e2e53a2d
N
1881 struct mddev_dev *dv;
1882 int added_disks;
1883
5da9ab98
N
1884 int *fdlist;
1885 unsigned long long *offsets;
1886 int d;
1887 int nrdisks;
1888 int err;
da8100ca 1889 unsigned long blocks;
5da9ab98
N
1890 unsigned long cache;
1891 unsigned long long array_size;
1892 int done;
cf6ac177 1893 struct mdinfo *sra = NULL;
7bc71196 1894
9468aeac
N
1895 /* when reshaping a RAID0, the component_size might be zero.
1896 * So try to fix that up.
1897 */
1898 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1899 dprintf("Cannot get array information.\n");
1900 goto release;
1901 }
1902 if (array.level == 0 && info->component_size == 0) {
1903 get_dev_size(fd, NULL, &array_size);
1904 info->component_size = array_size / array.raid_disks;
1905 }
1906
3cb2aed2
N
1907 if (info->reshape_active) {
1908 int new_level = info->new_level;
1909 info->new_level = UnSet;
178b8f35 1910 info->array.raid_disks -= info->delta_disks;
3cb2aed2
N
1911 msg = analyse_change(info, &reshape);
1912 info->new_level = new_level;
178b8f35 1913 info->array.raid_disks += info->delta_disks;
fcdfb814
AK
1914 if (!restart)
1915 /* Make sure the array isn't read-only */
1916 ioctl(fd, RESTART_ARRAY_RW, 0);
3cb2aed2
N
1917 } else
1918 msg = analyse_change(info, &reshape);
5da9ab98
N
1919 if (msg) {
1920 fprintf(stderr, Name ": %s\n", msg);
631d7405 1921 goto release;
5da9ab98 1922 }
817ed7d6
N
1923 if (restart &&
1924 (reshape.level != info->array.level ||
1925 reshape.before.layout != info->array.layout ||
384e9be1
AK
1926 reshape.before.data_disks + reshape.parity
1927 != info->array.raid_disks - info->delta_disks)) {
20a40eca
N
1928 fprintf(stderr, Name ": reshape info is not in native format -"
1929 " cannot continue.\n");
1930 goto release;
1931 }
a93f87ee
N
1932
1933 if (restart) {
1934 /* reshape already started. just skip to monitoring the reshape */
1935 if (reshape.backup_blocks == 0)
1936 return 0;
1937 goto started;
1938 }
a9c3e78f
AK
1939 /* The container is frozen but the array may not be.
1940 * So freeze the array so spares don't get put to the wrong use
1941 * FIXME there should probably be a cleaner separation between
1942 * freeze_array and freeze_container.
1943 */
1944 sysfs_freeze_array(info);
e06c4e59 1945 /* Check we have enough spares to not be degraded */
e2e53a2d
N
1946 added_disks = 0;
1947 for (dv = devlist; dv ; dv=dv->next)
1948 added_disks++;
5da9ab98
N
1949 spares_needed = max(reshape.before.data_disks,
1950 reshape.after.data_disks)
1951 + reshape.parity - array.raid_disks;
7bc71196 1952
88c1a083 1953 if (!force &&
e2e53a2d
N
1954 info->new_level > 1 && info->array.level > 1 &&
1955 spares_needed > info->array.spare_disks + added_disks) {
5da9ab98
N
1956 fprintf(stderr,
1957 Name ": Need %d spare%s to avoid degraded array,"
1958 " and only have %d.\n"
1959 " Use --force to over-ride this check.\n",
1960 spares_needed,
1961 spares_needed == 1 ? "" : "s",
e2e53a2d 1962 info->array.spare_disks + added_disks);
631d7405 1963 goto release;
7bc71196 1964 }
e06c4e59
N
1965 /* Check we have enough spares to not fail */
1966 spares_needed = max(reshape.before.data_disks,
1967 reshape.after.data_disks)
1968 - array.raid_disks;
1969 if ((info->new_level > 1 || info->new_level == 0) &&
e2e53a2d 1970 spares_needed > info->array.spare_disks +added_disks) {
e06c4e59
N
1971 fprintf(stderr,
1972 Name ": Need %d spare%s to create working array,"
1973 " and only have %d.\n",
1974 spares_needed,
1975 spares_needed == 1 ? "" : "s",
e2e53a2d 1976 info->array.spare_disks + added_disks);
e06c4e59
N
1977 goto release;
1978 }
e86c9dd6 1979
eae35f5c 1980 if (reshape.level != array.level) {
5da9ab98
N
1981 char *c = map_num(pers, reshape.level);
1982 int err;
1983 if (c == NULL)
631d7405 1984 goto release;
e86c9dd6 1985
5da9ab98
N
1986 err = sysfs_set_str(info, NULL, "level", c);
1987 if (err) {
1988 err = errno;
1989 fprintf(stderr, Name ": %s: could not set level to %s\n",
1990 devname, c);
1991 if (err == EBUSY &&
1992 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
1993 fprintf(stderr, " Bitmap must be removed"
1994 " before level can be changed\n");
631d7405 1995 goto release;
19678e53 1996 }
5da9ab98 1997 if (!quiet)
b6b95155 1998 fprintf(stderr, Name ": level of %s changed to %s\n",
5da9ab98 1999 devname, c);
eae35f5c 2000 orig_level = array.level;
3cd4e7c4 2001 sysfs_freeze_array(info);
e86c9dd6 2002
16d4d84e
AK
2003 if (reshape.level > 0 && st->ss->external) {
2004 /* make sure mdmon is aware of the new level */
2005 if (!mdmon_running(st->container_dev))
2006 start_mdmon(st->container_dev);
2007 ping_monitor(container);
e919fb0a
AK
2008 if (mdmon_running(st->container_dev) &&
2009 st->update_tail == NULL)
2010 st->update_tail = &st->updates;
16d4d84e 2011 }
5da9ab98 2012 }
5da9ab98
N
2013 /* ->reshape_super might have chosen some spares from the
2014 * container that it wants to be part of the new array.
2015 * We can collect them with ->container_content and give
2016 * them to the kernel.
2017 */
2018 if (st->ss->reshape_super && st->ss->container_content) {
2019 char *subarray = strchr(info->text_version+1, '/')+1;
2020 struct mdinfo *info2 =
2021 st->ss->container_content(st, subarray);
2022 struct mdinfo *d;
2023
2dd0d697
AK
2024 if (info2) {
2025 sysfs_init(info2, fd, st->devnum);
0d5ac3c6
N
2026 /* When increasing number of devices, we need to set
2027 * new raid_disks before adding these, or they might
2028 * be rejected.
2029 */
2030 if (reshape.backup_blocks &&
2031 reshape.after.data_disks > reshape.before.data_disks)
2032 subarray_set_num(container, info2, "raid_disks",
2033 reshape.after.data_disks +
2034 reshape.parity);
5da9ab98
N
2035 for (d = info2->devs; d; d = d->next) {
2036 if (d->disk.state == 0 &&
2037 d->disk.raid_disk >= 0) {
2038 /* This is a spare that wants to
2039 * be part of the array.
2040 */
2041 add_disk(fd, st, info2, d);
2042 }
9860f271 2043 }
2dd0d697
AK
2044 sysfs_free(info2);
2045 }
5da9ab98 2046 }
e2e53a2d
N
2047 /* We might have been given some devices to add to the
2048 * array. Now that the array has been changed to the right
2049 * level and frozen, we can safely add them.
2050 */
2051 if (devlist)
2052 Manage_subdevs(devname, fd, devlist, !quiet,
11b391ec 2053 0,NULL, 0);
1686dc25 2054
b4f8e38b 2055 if (reshape.backup_blocks == 0) {
5da9ab98
N
2056 /* No restriping needed, but we might need to impose
2057 * some more changes: layout, raid_disks, chunk_size
e86c9dd6 2058 */
24aebf3a
KW
2059 /* read current array info */
2060 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
83732c28 2061 dprintf("Cannot get array information.\n");
24aebf3a
KW
2062 goto release;
2063 }
2064 /* compare current array info with new values and if
2065 * it is different update them to new */
5da9ab98 2066 if (info->new_layout != UnSet &&
24aebf3a
KW
2067 info->new_layout != array.layout) {
2068 array.layout = info->new_layout;
2069 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 2070 fprintf(stderr, Name ": failed to set new layout\n");
631d7405 2071 goto release;
5da9ab98
N
2072 } else if (!quiet)
2073 printf("layout for %s set to %d\n",
24aebf3a 2074 devname, array.layout);
5da9ab98
N
2075 }
2076 if (info->delta_disks != UnSet &&
24aebf3a
KW
2077 info->delta_disks != 0 &&
2078 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
2079 array.raid_disks += info->delta_disks;
2080 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 2081 fprintf(stderr, Name ": failed to set raid disks\n");
631d7405 2082 goto release;
24aebf3a 2083 } else if (!quiet) {
5da9ab98 2084 printf("raid_disks for %s set to %d\n",
24aebf3a
KW
2085 devname, array.raid_disks);
2086 }
5da9ab98
N
2087 }
2088 if (info->new_chunk != 0 &&
24aebf3a 2089 info->new_chunk != array.chunk_size) {
5da9ab98
N
2090 if (sysfs_set_num(info, NULL,
2091 "chunk_size", info->new_chunk) != 0) {
2092 fprintf(stderr, Name ": failed to set chunk size\n");
631d7405 2093 goto release;
5da9ab98
N
2094 } else if (!quiet)
2095 printf("chunk size for %s set to %d\n",
24aebf3a 2096 devname, array.chunk_size);
4725bc31 2097 }
e35b189b 2098 unfreeze(st);
631d7405 2099 return 0;
5da9ab98 2100 }
19678e53 2101
5da9ab98
N
2102 /*
2103 * There are three possibilities.
2104 * 1/ The array will shrink.
2105 * We need to ensure the reshape will pause before reaching
2106 * the 'critical section'. We also need to fork and wait for
2107 * that to happen. When it does we
2108 * suspend/backup/complete/unfreeze
2109 *
2110 * 2/ The array will not change size.
2111 * This requires that we keep a backup of a sliding window
2112 * so that we can restore data after a crash. So we need
2113 * to fork and monitor progress.
2114 * In future we will allow the data_offset to change, so
2115 * a sliding backup becomes unnecessary.
2116 *
2117 * 3/ The array will grow. This is relatively easy.
2118 * However the kernel's restripe routines will cheerfully
2119 * overwrite some early data before it is safe. So we
2120 * need to make a backup of the early parts of the array
2121 * and be ready to restore it if rebuild aborts very early.
2122 * For externally managed metadata, we still need a forked
2123 * child to monitor the reshape and suspend IO over the region
2124 * that is being reshaped.
2125 *
2126 * We backup data by writing it to one spare, or to a
2127 * file which was given on command line.
2128 *
2129 * In each case, we first make sure that storage is available
2130 * for the required backup.
2131 * Then we:
2132 * - request the shape change.
2133 * - fork to handle backup etc.
2134 */
a93f87ee 2135started:
5da9ab98
N
2136 /* Check that we can hold all the data */
2137 get_dev_size(fd, NULL, &array_size);
2138 if (reshape.new_size < (array_size/512)) {
2139 fprintf(stderr,
2140 Name ": this change will reduce the size of the array.\n"
2141 " use --grow --array-size first to truncate array.\n"
2142 " e.g. mdadm --grow %s --array-size %llu\n",
2143 devname, reshape.new_size/2);
5da9ab98
N
2144 goto release;
2145 }
7236ee7a 2146
5da9ab98 2147 sra = sysfs_read(fd, 0,
3656edcd 2148 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
5da9ab98 2149 GET_CACHE);
5da9ab98
N
2150 if (!sra) {
2151 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
2152 devname);
5da9ab98
N
2153 goto release;
2154 }
7236ee7a 2155
5da9ab98
N
2156 /* Decide how many blocks (sectors) for a reshape
2157 * unit. The number we have so far is just a minimum
2158 */
b4f8e38b 2159 blocks = reshape.backup_blocks;
5da9ab98
N
2160 if (reshape.before.data_disks ==
2161 reshape.after.data_disks) {
2162 /* Make 'blocks' bigger for better throughput, but
2163 * not so big that we reject it below.
2164 * Try for 16 megabytes
2165 */
2166 while (blocks * 32 < sra->component_size &&
2167 blocks < 16*1024*2)
2168 blocks *= 2;
2169 } else
2170 fprintf(stderr, Name ": Need to backup %luK of critical "
2171 "section..\n", blocks/2);
2172
2173 if (blocks >= sra->component_size/2) {
2174 fprintf(stderr, Name ": %s: Something wrong"
2175 " - reshape aborted\n",
2176 devname);
5da9ab98
N
2177 goto release;
2178 }
7236ee7a 2179
5da9ab98
N
2180 /* Now we need to open all these devices so we can read/write.
2181 */
b8b286a6
N
2182 nrdisks = max(reshape.before.data_disks,
2183 reshape.after.data_disks) + reshape.parity
2184 + sra->array.spare_disks;
5da9ab98
N
2185 fdlist = malloc((1+nrdisks) * sizeof(int));
2186 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
2187 if (!fdlist || !offsets) {
2188 fprintf(stderr, Name ": malloc failed: grow aborted\n");
5da9ab98
N
2189 goto release;
2190 }
e380d3be 2191
b8b286a6
N
2192 odisks = reshape.before.data_disks + reshape.parity;
2193 d = reshape_prepare_fdlist(devname, sra, odisks,
5da9ab98
N
2194 nrdisks, blocks, backup_file,
2195 fdlist, offsets);
2196 if (d < 0) {
5da9ab98
N
2197 goto release;
2198 }
13c37ad3
AK
2199 if ((st->ss->manage_reshape == NULL) ||
2200 (st->ss->recover_backup == NULL)) {
2201 if (backup_file == NULL) {
2202 if (reshape.after.data_disks <=
2203 reshape.before.data_disks) {
2204 fprintf(stderr, Name ": %s: Cannot grow - "
2205 "need backup-file\n", devname);
2206 goto release;
2207 } else if (sra->array.spare_disks == 0) {
2208 fprintf(stderr, Name ": %s: Cannot grow - "
2209 "need a spare or backup-file to backup "
2210 "critical section\n", devname);
2211 goto release;
2212 }
2213 } else {
2214 if (!reshape_open_backup_file(backup_file, fd, devname,
2215 (signed)blocks,
2216 fdlist+d, offsets+d,
2217 restart)) {
2218 goto release;
2219 }
2220 d++;
e86c9dd6 2221 }
5da9ab98 2222 }
7236ee7a 2223
5da9ab98
N
2224 /* lastly, check that the internal stripe cache is
2225 * large enough, or it won't work.
2226 * It must hold at least 4 stripes of the larger
2227 * chunk size
2228 */
2229 cache = max(info->array.chunk_size, info->new_chunk);
2230 cache *= 4; /* 4 stripes minimum */
2231 cache /= 512; /* convert to sectors */
2232 disks = min(reshape.before.data_disks, reshape.after.data_disks);
2233 /* make sure there is room for 'blocks' with a bit to spare */
2234 if (cache < 16 + blocks / disks)
2235 cache = 16 + blocks / disks;
2236 cache /= (4096/512); /* Covert from sectors to pages */
2237
2238 if (sra->cache_size < cache)
2239 subarray_set_num(container, sra, "stripe_cache_size",
2240 cache+1);
2241
2242 /* Right, everything seems fine. Let's kick things off.
2243 * If only changing raid_disks, use ioctl, else use
2244 * sysfs.
2245 */
2246 sync_metadata(st);
2247
b4f8e38b 2248 sra->new_chunk = info->new_chunk;
ddee071d 2249
20a40eca 2250 if (restart)
ddee071d 2251 sra->reshape_progress = info->reshape_progress;
f897078e
N
2252 else {
2253 sra->reshape_progress = 0;
2254 if (reshape.after.data_disks < reshape.before.data_disks)
2255 /* start from the end of the new array */
2256 sra->reshape_progress = (sra->component_size
2257 * reshape.after.data_disks);
2258 }
2259
2260 if (info->array.chunk_size == info->new_chunk &&
7477d513
AK
2261 reshape.before.layout == reshape.after.layout &&
2262 st->ss->external == 0) {
f897078e 2263 /* use SET_ARRAY_INFO but only if reshape hasn't started */
6ef421be 2264 ioctl(fd, GET_ARRAY_INFO, &array);
5da9ab98 2265 array.raid_disks = reshape.after.data_disks + reshape.parity;
20a40eca 2266 if (!restart &&
f897078e 2267 ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 2268 int err = errno;
631d7405 2269
5da9ab98
N
2270 fprintf(stderr,
2271 Name ": Cannot set device shape for %s: %s\n",
2272 devname, strerror(errno));
7bc71196 2273
5da9ab98
N
2274 if (err == EBUSY &&
2275 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2276 fprintf(stderr,
2277 " Bitmap must be removed before"
2278 " shape can be changed\n");
b5420ef3 2279
5da9ab98
N
2280 goto release;
2281 }
20a40eca 2282 } else if (!restart) {
5da9ab98 2283 /* set them all just in case some old 'new_*' value
f897078e 2284 * persists from some earlier problem.
7236ee7a 2285 */
631d7405 2286 int err = 0;
5da9ab98 2287 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
631d7405
N
2288 err = errno;
2289 if (!err && sysfs_set_num(sra, NULL, "layout",
5da9ab98 2290 reshape.after.layout) < 0)
631d7405
N
2291 err = errno;
2292 if (!err && subarray_set_num(container, sra, "raid_disks",
5da9ab98
N
2293 reshape.after.data_disks +
2294 reshape.parity) < 0)
631d7405
N
2295 err = errno;
2296 if (err) {
5da9ab98
N
2297 fprintf(stderr, Name ": Cannot set device shape for %s\n",
2298 devname);
7236ee7a 2299
5da9ab98
N
2300 if (err == EBUSY &&
2301 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2302 fprintf(stderr,
2303 " Bitmap must be removed before"
2304 " shape can be changed\n");
2305 goto release;
e86c9dd6 2306 }
5da9ab98 2307 }
e86c9dd6 2308
6937e6d2
AK
2309 err = start_reshape(sra, restart,
2310 info->array.raid_disks - reshape.parity);
fab32c97 2311 if (err) {
20a40eca
N
2312 fprintf(stderr,
2313 Name ": Cannot %s reshape for %s\n",
2314 restart ? "continue" : "start",
fab32c97
AK
2315 devname);
2316 goto release;
2317 }
a93f87ee
N
2318 if (restart)
2319 sysfs_set_str(sra, NULL, "array_state", "active");
b76b30e0
AK
2320 if (freeze_reshape) {
2321 free(fdlist);
2322 free(offsets);
2323 sysfs_free(sra);
2324 fprintf(stderr, Name ": Reshape has to be continued from"
2325 " location %llu when root fileststem has been mounted\n",
2326 sra->reshape_progress);
2327 return 1;
2328 }
5da9ab98
N
2329
2330 /* Now we just need to kick off the reshape and watch, while
2331 * handling backups of the data...
2332 * This is all done by a forked background process.
2333 */
2334 switch(forked ? 0 : fork()) {
6b2d630c
N
2335 case -1:
2336 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
2337 strerror(errno));
6b2d630c 2338 abort_reshape(sra);
631d7405 2339 goto release;
6b2d630c
N
2340 default:
2341 return 0;
5da9ab98 2342 case 0:
cc700db3 2343 map_fork();
6b2d630c
N
2344 break;
2345 }
5da9ab98 2346
6b2d630c
N
2347 close(fd);
2348 if (check_env("MDADM_GROW_VERIFY"))
2349 fd = open(devname, O_RDONLY | O_DIRECT);
2350 else
2351 fd = -1;
2352 mlockall(MCL_FUTURE);
5da9ab98 2353
6b2d630c
N
2354 if (st->ss->external) {
2355 /* metadata handler takes it from here */
2356 done = st->ss->manage_reshape(
2357 fd, sra, &reshape, st, blocks,
2358 fdlist, offsets,
2359 d - odisks, fdlist+odisks,
2360 offsets+odisks);
2361 } else
2362 done = child_monitor(
2363 fd, sra, &reshape, st, blocks,
2364 fdlist, offsets,
2365 d - odisks, fdlist+odisks,
2366 offsets+odisks);
2367
2368 if (backup_file && done)
2369 unlink(backup_file);
2370 if (!done) {
2371 abort_reshape(sra);
2372 goto out;
2373 }
1cbc5680
N
2374
2375 if (!st->ss->external &&
2376 !(reshape.before.data_disks != reshape.after.data_disks
2377 && info->custom_array_size) &&
2378 info->new_level == reshape.level &&
2379 !forked) {
2380 /* no need to wait for the reshape to finish as
2381 * there is nothing more to do.
2382 */
2383 exit(0);
2384 }
2385 wait_reshape(sra);
2386
2387 if (st->ss->external) {
2388 /* Re-load the metadata as much could have changed */
2389 int cfd = open_dev(st->container_dev);
2390 if (cfd >= 0) {
2391 ping_monitor(container);
2392 st->ss->free_super(st);
2393 st->ss->load_container(st, cfd, container);
2394 close(cfd);
2395 }
2396 }
2397
6b2d630c
N
2398 /* set new array size if required customer_array_size is used
2399 * by this metadata.
2400 */
2401 if (reshape.before.data_disks !=
2402 reshape.after.data_disks &&
2403 info->custom_array_size) {
2404 struct mdinfo *info2;
2405 char *subarray = strchr(info->text_version+1, '/')+1;
582496b2 2406
6b2d630c
N
2407 info2 = st->ss->container_content(st, subarray);
2408 if (info2) {
2409 unsigned long long current_size = 0;
2410 unsigned long long new_size =
2411 info2->custom_array_size/2;
2412
2413 if (sysfs_get_ll(sra,
2414 NULL,
2415 "array_size",
2416 &current_size) == 0 &&
2417 new_size > current_size) {
2418 if (sysfs_set_num(sra, NULL,
2419 "array_size", new_size)
2420 < 0)
2421 dprintf("Error: Cannot"
2422 " set array size");
2423 else
2424 dprintf("Array size "
2425 "changed");
2426 dprintf(" from %llu to %llu.\n",
2427 current_size, new_size);
582496b2 2428 }
6b2d630c 2429 sysfs_free(info2);
582496b2 2430 }
6b2d630c 2431 }
582496b2 2432
6b2d630c 2433 if (info->new_level != reshape.level) {
582496b2 2434
6b2d630c 2435 c = map_num(pers, info->new_level);
1cbc5680
N
2436 if (c) {
2437 err = sysfs_set_str(sra, NULL, "level", c);
2438 if (err)
2439 fprintf(stderr, Name\
2440 ": %s: could not set level "
2441 "to %s\n", devname, c);
2442 }
e919fb0a
AK
2443 if (info->new_level == 0)
2444 st->update_tail = NULL;
7236ee7a 2445 }
6b2d630c
N
2446out:
2447 if (forked)
2448 return 0;
e84f2c00 2449 unfreeze(st);
6b2d630c 2450 exit(0);
e86c9dd6 2451
6b2d630c 2452release:
1cbc5680 2453 if (orig_level != UnSet && sra) {
7236ee7a
N
2454 c = map_num(pers, orig_level);
2455 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
2456 fprintf(stderr, Name ": aborting level change\n");
2457 }
9202b8eb
N
2458 if (!forked)
2459 unfreeze(st);
631d7405 2460 return 1;
7236ee7a 2461}
e86c9dd6 2462
9ad6f6e6
AK
2463/* mdfd handle is passed to be closed in child process (after fork).
2464 */
493f5dd6 2465int reshape_container(char *container, char *devname,
9ad6f6e6 2466 int mdfd,
5da9ab98
N
2467 struct supertype *st,
2468 struct mdinfo *info,
2469 int force,
2470 char *backup_file,
b76b30e0 2471 int quiet, int restart, int freeze_reshape)
5da9ab98 2472{
1bb174ba 2473 struct mdinfo *cc = NULL;
bcc9e9ed 2474 int rv = restart;
1bb174ba 2475
d8eb27f7
KA
2476 /* component_size is not meaningful for a container,
2477 * so pass '-1' meaning 'no change'
2478 */
493f5dd6
N
2479 if (!restart &&
2480 reshape_super(st, -1, info->new_level,
5da9ab98 2481 info->new_layout, info->new_chunk,
41784c88 2482 info->array.raid_disks, info->delta_disks,
9e325442
AK
2483 backup_file, devname, quiet)) {
2484 unfreeze(st);
5da9ab98 2485 return 1;
9e325442 2486 }
5da9ab98
N
2487
2488 sync_metadata(st);
2489
1bb174ba
AK
2490 /* ping monitor to be sure that update is on disk
2491 */
2492 ping_monitor(container);
5da9ab98
N
2493
2494 switch (fork()) {
2495 case -1: /* error */
2496 perror("Cannot fork to complete reshape\n");
9e325442 2497 unfreeze(st);
5da9ab98
N
2498 return 1;
2499 default: /* parent */
b76b30e0
AK
2500 if (!freeze_reshape)
2501 printf(Name ": multi-array reshape continues"
2502 " in background\n");
5da9ab98
N
2503 return 0;
2504 case 0: /* child */
cc700db3 2505 map_fork();
5da9ab98
N
2506 break;
2507 }
2508
9ad6f6e6
AK
2509 /* close unused handle in child process
2510 */
2511 if (mdfd > -1)
2512 close(mdfd);
2513
1bb174ba
AK
2514 while(1) {
2515 /* For each member array with reshape_active,
2516 * we need to perform the reshape.
2517 * We pick the first array that needs reshaping and
2518 * reshape it. reshape_array() will re-read the metadata
2519 * so the next time through a different array should be
2520 * ready for reshape.
493f5dd6
N
2521 * It is possible that the 'different' array will not
2522 * be assembled yet. In that case we simple exit.
2523 * When it is assembled, the mdadm which assembles it
2524 * will take over the reshape.
1bb174ba
AK
2525 */
2526 struct mdinfo *content;
5da9ab98
N
2527 int fd;
2528 struct mdstat_ent *mdstat;
5da9ab98
N
2529 char *adev;
2530
1bb174ba 2531 sysfs_free(cc);
5da9ab98 2532
1bb174ba
AK
2533 cc = st->ss->container_content(st, NULL);
2534
2535 for (content = cc; content ; content = content->next) {
2536 char *subarray;
2537 if (!content->reshape_active)
2538 continue;
2539
2540 subarray = strchr(content->text_version+1, '/')+1;
2541 mdstat = mdstat_by_subdev(subarray,
2542 devname2devnum(container));
2543 if (!mdstat)
2544 continue;
2545 break;
2546 }
2547 if (!content)
2548 break;
5da9ab98 2549
55f14721 2550 fd = open_dev(mdstat->devnum);
5da9ab98
N
2551 if (fd < 0)
2552 break;
2553 adev = map_dev(dev2major(mdstat->devnum),
2554 dev2minor(mdstat->devnum),
2555 0);
2556 if (!adev)
1bb174ba
AK
2557 adev = content->text_version;
2558
2559 sysfs_init(content, fd, mdstat->devnum);
5da9ab98 2560
1bb174ba 2561 rv = reshape_array(container, fd, adev, st,
e2e53a2d 2562 content, force, NULL,
b76b30e0
AK
2563 backup_file, quiet, 1, restart,
2564 freeze_reshape);
5da9ab98 2565 close(fd);
b76b30e0
AK
2566
2567 if (freeze_reshape) {
2568 sysfs_free(cc);
2569 exit(0);
2570 }
2571
493f5dd6 2572 restart = 0;
5da9ab98
N
2573 if (rv)
2574 break;
2575 }
bcc9e9ed
AK
2576 if (!rv)
2577 unfreeze(st);
1bb174ba 2578 sysfs_free(cc);
5da9ab98
N
2579 exit(0);
2580}
2581
7236ee7a
N
2582/*
2583 * We run a child process in the background which performs the following
2584 * steps:
2585 * - wait for resync to reach a certain point
2586 * - suspend io to the following section
2587 * - backup that section
2588 * - allow resync to proceed further
2589 * - resume io
2590 * - discard the backup.
2591 *
2592 * When are combined in slightly different ways in the three cases.
2593 * Grow:
2594 * - suspend/backup/allow/wait/resume/discard
2595 * Shrink:
2596 * - allow/wait/suspend/backup/allow/wait/resume/discard
2597 * same-size:
2598 * - wait/resume/discard/suspend/backup/allow
2599 *
2600 * suspend/backup/allow always come together
2601 * wait/resume/discard do too.
2602 * For the same-size case we have two backups to improve flow.
2603 *
2604 */
e86c9dd6 2605
7443ee81
N
2606int progress_reshape(struct mdinfo *info, struct reshape *reshape,
2607 unsigned long long backup_point,
2608 unsigned long long wait_point,
2609 unsigned long long *suspend_point,
2610 unsigned long long *reshape_completed)
2611{
2612 /* This function is called repeatedly by the reshape manager.
2613 * It determines how much progress can safely be made and allows
2614 * that progress.
2615 * - 'info' identifies the array and particularly records in
2616 * ->reshape_progress the metadata's knowledge of progress
2617 * This is a sector offset from the start of the array
2618 * of the next array block to be relocated. This number
2619 * may increase from 0 or decrease from array_size, depending
2620 * on the type of reshape that is happening.
2621 * Note that in contrast, 'sync_completed' is a block count of the
2622 * reshape so far. It gives the distance between the start point
2623 * (head or tail of device) and the next place that data will be
2624 * written. It always increases.
2625 * - 'reshape' is the structure created by analyse_change
2626 * - 'backup_point' shows how much the metadata manager has backed-up
2627 * data. For reshapes with increasing progress, it is the next address
2628 * to be backed up, previous addresses have been backed-up. For
2629 * decreasing progress, it is the earliest address that has been
2630 * backed up - later address are also backed up.
2631 * So addresses between reshape_progress and backup_point are
2632 * backed up providing those are in the 'correct' order.
2633 * - 'wait_point' is an array address. When reshape_completed
2634 * passes this point, progress_reshape should return. It might
2635 * return earlier if it determines that ->reshape_progress needs
2636 * to be updated or further backup is needed.
2637 * - suspend_point is maintained by progress_reshape and the caller
2638 * should not touch it except to initialise to zero.
2639 * It is an array address and it only increases in 2.6.37 and earlier.
b6b95155 2640 * This makes it difficult to handle reducing reshapes with
7443ee81
N
2641 * external metadata.
2642 * However: it is similar to backup_point in that it records the
2643 * other end of a suspended region from reshape_progress.
2644 * it is moved to extend the region that is safe to backup and/or
2645 * reshape
2646 * - reshape_completed is read from sysfs and returned. The caller
2647 * should copy this into ->reshape_progress when it has reason to
2648 * believe that the metadata knows this, and any backup outside this
2649 * has been erased.
2650 *
2651 * Return value is:
2652 * 1 if more data from backup_point - but only as far as suspend_point,
2653 * should be backed up
2654 * 0 if things are progressing smoothly
9e034f70
N
2655 * -1 if the reshape is finished because it is all done,
2656 * -2 if the reshape is finished due to an error.
7443ee81
N
2657 */
2658
2659 int advancing = (reshape->after.data_disks
2660 >= reshape->before.data_disks);
38dad34a
N
2661 unsigned long long need_backup; /* All data between start of array and
2662 * here will at some point need to
2663 * be backed up.
d0ab945e 2664 */
7443ee81 2665 unsigned long long read_offset, write_offset;
b4f8e38b 2666 unsigned long long write_range;
7443ee81 2667 unsigned long long max_progress, target, completed;
d0ab945e
N
2668 unsigned long long array_size = (info->component_size
2669 * reshape->before.data_disks);
7443ee81 2670 int fd;
77a73a17 2671 char buf[20];
7443ee81
N
2672
2673 /* First, we unsuspend any region that is now known to be safe.
2674 * If suspend_point is on the 'wrong' side of reshape_progress, then
2675 * we don't have or need suspension at the moment. This is true for
2676 * native metadata when we don't need to back-up.
2677 */
2678 if (advancing) {
49cd738b 2679 if (info->reshape_progress <= *suspend_point)
7443ee81
N
2680 sysfs_set_num(info, NULL, "suspend_lo",
2681 info->reshape_progress);
2682 } else {
2683 /* Note: this won't work in 2.6.37 and before.
2684 * Something somewhere should make sure we don't need it!
2685 */
49cd738b 2686 if (info->reshape_progress >= *suspend_point)
7443ee81
N
2687 sysfs_set_num(info, NULL, "suspend_hi",
2688 info->reshape_progress);
2689 }
2690
2691 /* Now work out how far it is safe to progress.
2692 * If the read_offset for ->reshape_progress is less than
2693 * 'blocks' beyond the write_offset, we can only progress as far
2694 * as a backup.
2695 * Otherwise we can progress until the write_offset for the new location
2696 * reaches (within 'blocks' of) the read_offset at the current location.
2697 * However that region must be suspended unless we are using native
2698 * metadata.
2699 * If we need to suspend more, we limit it to 128M per device, which is
2700 * rather arbitrary and should be some time-based calculation.
2701 */
ec757320
N
2702 read_offset = info->reshape_progress / reshape->before.data_disks;
2703 write_offset = info->reshape_progress / reshape->after.data_disks;
b4f8e38b 2704 write_range = info->new_chunk/512;
38dad34a
N
2705 if (reshape->before.data_disks == reshape->after.data_disks)
2706 need_backup = array_size;
2707 else
2708 need_backup = reshape->backup_blocks;
7443ee81 2709 if (advancing) {
38dad34a 2710 if (read_offset < write_offset + write_range)
7443ee81 2711 max_progress = backup_point;
ddee071d 2712 else
7443ee81 2713 max_progress =
2f3dd5e4
N
2714 read_offset *
2715 reshape->after.data_disks;
7443ee81 2716 } else {
38dad34a
N
2717 if (read_offset > write_offset - write_range)
2718 /* Can only progress as far as has been backed up,
2719 * which must be suspended */
7443ee81 2720 max_progress = backup_point;
38dad34a
N
2721 else if (info->reshape_progress <= need_backup)
2722 max_progress = backup_point;
2723 else {
2724 if (info->array.major_version >= 0)
2725 /* Can progress until backup is needed */
2726 max_progress = need_backup;
2727 else {
2728 /* Can progress until metadata update is required */
2729 max_progress =
2730 read_offset *
2731 reshape->after.data_disks;
2732 /* but data must be suspended */
2733 if (max_progress < *suspend_point)
2734 max_progress = *suspend_point;
2735 }
7443ee81
N
2736 }
2737 }
2738
2739 /* We know it is safe to progress to 'max_progress' providing
2740 * it is suspended or we are using native metadata.
2741 * Consider extending suspend_point 128M per device if it
2742 * is less than 64M per device beyond reshape_progress.
2743 * But always do a multiple of 'blocks'
832b2b9a
N
2744 * FIXME this is too big - it takes to long to complete
2745 * this much.
7443ee81
N
2746 */
2747 target = 64*1024*2 * min(reshape->before.data_disks,
2748 reshape->after.data_disks);
b4f8e38b 2749 target /= reshape->backup_blocks;
7443ee81
N
2750 if (target < 2)
2751 target = 2;
b4f8e38b 2752 target *= reshape->backup_blocks;
7443ee81
N
2753
2754 /* For externally managed metadata we always need to suspend IO to
2755 * the area being reshaped so we regularly push suspend_point forward.
2756 * For native metadata we only need the suspend if we are going to do
2757 * a backup.
2758 */
2759 if (advancing) {
d0ab945e
N
2760 if ((need_backup > info->reshape_progress
2761 || info->array.major_version < 0) &&
7443ee81 2762 *suspend_point < info->reshape_progress + target) {
d0ab945e
N
2763 if (need_backup < *suspend_point + 2 * target)
2764 *suspend_point = need_backup;
2765 else if (*suspend_point + 2 * target < array_size)
7443ee81 2766 *suspend_point += 2 * target;
d0ab945e
N
2767 else
2768 *suspend_point = array_size;
7443ee81 2769 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
d0ab945e
N
2770 if (max_progress > *suspend_point)
2771 max_progress = *suspend_point;
7443ee81
N
2772 }
2773 } else {
38dad34a
N
2774 if (info->array.major_version >= 0) {
2775 /* Only need to suspend when about to backup */
2776 if (info->reshape_progress < need_backup * 2 &&
2777 *suspend_point > 0) {
d0ab945e 2778 *suspend_point = 0;
38dad34a
N
2779 sysfs_set_num(info, NULL, "suspend_lo", 0);
2780 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
2781 }
2782 } else {
2783 /* Need to suspend continually */
2784 if (info->reshape_progress < *suspend_point)
2785 *suspend_point = info->reshape_progress;
2786 if (*suspend_point + target < info->reshape_progress)
2787 /* No need to move suspend region yet */;
2788 else {
2789 if (*suspend_point >= 2 * target)
2790 *suspend_point -= 2 * target;
2791 else
2792 *suspend_point = 0;
2793 sysfs_set_num(info, NULL, "suspend_lo",
2794 *suspend_point);
2795 }
d0ab945e
N
2796 if (max_progress < *suspend_point)
2797 max_progress = *suspend_point;
7443ee81
N
2798 }
2799 }
2800
2801 /* now set sync_max to allow that progress. sync_max, like
2802 * sync_completed is a count of sectors written per device, so
2803 * we find the difference between max_progress and the start point,
2804 * and divide that by after.data_disks to get a sync_max
2805 * number.
2806 * At the same time we convert wait_point to a similar number
2807 * for comparing against sync_completed.
2808 */
92d1991f 2809 /* scale down max_progress to per_disk */
7443ee81 2810 max_progress /= reshape->after.data_disks;
92d1991f
N
2811 /* Round to chunk size as some kernels give an erroneously high number */
2812 max_progress /= info->new_chunk/512;
2813 max_progress *= info->new_chunk/512;
7f913e9b
N
2814 /* And round to old chunk size as the kernel wants that */
2815 max_progress /= info->array.chunk_size/512;
2816 max_progress *= info->array.chunk_size/512;
92d1991f
N
2817 /* Limit progress to the whole device */
2818 if (max_progress > info->component_size)
2819 max_progress = info->component_size;
7443ee81 2820 wait_point /= reshape->after.data_disks;
92d1991f
N
2821 if (!advancing) {
2822 /* switch from 'device offset' to 'processed block count' */
2823 max_progress = info->component_size - max_progress;
2824 wait_point = info->component_size - wait_point;
2825 }
7443ee81
N
2826
2827 sysfs_set_num(info, NULL, "sync_max", max_progress);
2828
2829 /* Now wait. If we have already reached the point that we were
2830 * asked to wait to, don't wait at all, else wait for any change.
2831 * We need to select on 'sync_completed' as that is the place that
2832 * notifications happen, but we are really interested in
2833 * 'reshape_position'
2834 */
2835 fd = sysfs_get_fd(info, NULL, "sync_completed");
2836 if (fd < 0)
77a73a17 2837 goto check_progress;
7443ee81 2838
621ea11b 2839 if (sysfs_fd_get_ll(fd, &completed) < 0)
77a73a17 2840 goto check_progress;
621ea11b 2841
7443ee81
N
2842 while (completed < max_progress && completed < wait_point) {
2843 /* Check that sync_action is still 'reshape' to avoid
2844 * waiting forever on a dead array
2845 */
2846 char action[20];
2847 fd_set rfds;
2848 if (sysfs_get_str(info, NULL, "sync_action",
2849 action, 20) <= 0 ||
2850 strncmp(action, "reshape", 7) != 0)
2851 break;
26d6e157
AK
2852 /* Some kernels reset 'sync_completed' to zero
2853 * before setting 'sync_action' to 'idle'.
2854 * So we need these extra tests.
2855 */
2856 if (completed == 0 && advancing
2857 && info->reshape_progress > 0)
2858 break;
2859 if (completed == 0 && !advancing
2860 && info->reshape_progress < (info->component_size
2861 * reshape->after.data_disks))
2862 break;
7443ee81
N
2863 FD_ZERO(&rfds);
2864 FD_SET(fd, &rfds);
2865 select(fd+1, NULL, NULL, &rfds, NULL);
621ea11b 2866 if (sysfs_fd_get_ll(fd, &completed) < 0)
77a73a17 2867 goto check_progress;
7443ee81 2868 }
10d0d365
AK
2869 /* Some kernels reset 'sync_completed' to zero,
2870 * we need to have real point we are in md
2871 */
2872 if (completed == 0)
2873 completed = max_progress;
2874
92d1991f
N
2875 /* some kernels can give an incorrectly high 'completed' number */
2876 completed /= (info->new_chunk/512);
2877 completed *= (info->new_chunk/512);
7443ee81
N
2878 /* Convert 'completed' back in to a 'progress' number */
2879 completed *= reshape->after.data_disks;
2880 if (!advancing) {
2881 completed = info->component_size * reshape->after.data_disks
2882 - completed;
2883 }
2884 *reshape_completed = completed;
2885
2886 close(fd);
2887
2888 /* We return the need_backup flag. Caller will decide
d0ab945e 2889 * how much - a multiple of ->backup_blocks up to *suspend_point
7443ee81 2890 */
38dad34a
N
2891 if (advancing)
2892 return need_backup > info->reshape_progress;
2893 else
2894 return need_backup >= info->reshape_progress;
77a73a17
N
2895
2896check_progress:
2897 /* if we couldn't read a number from sync_completed, then
2898 * either the reshape did complete, or it aborted.
2899 * We can tell which by checking for 'none' in reshape_position.
621ea11b
N
2900 * If it did abort, then it might immediately restart if it
2901 * it was just a device failure that leaves us degraded but
2902 * functioning.
77a73a17
N
2903 */
2904 strcpy(buf, "hi");
2905 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
621ea11b
N
2906 || strncmp(buf, "none", 4) != 0) {
2907 /* The abort might only be temporary. Wait up to 10
2908 * seconds for fd to contain a valid number again.
2909 */
2910 struct timeval tv;
2911 int rv = -2;
2912 tv.tv_sec = 10;
2913 tv.tv_usec = 0;
6560987b 2914 while (fd >= 0 && rv < 0 && tv.tv_sec > 0) {
621ea11b
N
2915 fd_set rfds;
2916 FD_ZERO(&rfds);
2917 FD_SET(fd, &rfds);
2918 if (select(fd+1, NULL, NULL, &rfds, &tv) != 1)
2919 break;
6560987b
N
2920 switch (sysfs_fd_get_ll(fd, &completed)) {
2921 case 0:
621ea11b
N
2922 /* all good again */
2923 rv = 1;
6560987b
N
2924 break;
2925 case -2: /* read error - abort */
2926 tv.tv_sec = 0;
2927 break;
2928 }
621ea11b
N
2929 }
2930 if (fd >= 0)
2931 close(fd);
2932 return rv; /* abort */
2933 } else {
6d5316f6 2934 /* Maybe racing with array shutdown - check state */
621ea11b
N
2935 if (fd >= 0)
2936 close(fd);
6d5316f6
N
2937 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
2938 || strncmp(buf, "inactive", 8) == 0
2939 || strncmp(buf, "clear",5) == 0)
2940 return -2; /* abort */
77a73a17 2941 return -1; /* complete */
6d5316f6 2942 }
7443ee81
N
2943}
2944
2945
fcf57625 2946/* FIXME return status is never checked */
4411fb17 2947static int grow_backup(struct mdinfo *sra,
7236ee7a 2948 unsigned long long offset, /* per device */
7443ee81 2949 unsigned long stripes, /* per device, in old chunks */
7236ee7a
N
2950 int *sources, unsigned long long *offsets,
2951 int disks, int chunk, int level, int layout,
2952 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 2953 int part, int *degraded,
7236ee7a
N
2954 char *buf)
2955{
2956 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2957 * to storage 'destfd' (offset 'destoffsets'), after first
2958 * suspending IO. Then allow resync to continue
2959 * over the suspended section.
2960 * Use part 'part' of the backup-super-block.
2961 */
2962 int odata = disks;
2963 int rv = 0;
2964 int i;
f21e18ca
N
2965 unsigned long long ll;
2966 int new_degraded;
7236ee7a
N
2967 //printf("offset %llu\n", offset);
2968 if (level >= 4)
2969 odata--;
2970 if (level == 6)
2971 odata--;
7443ee81 2972
d4445387 2973 /* Check that array hasn't become degraded, else we might backup the wrong data */
2c6ac128
N
2974 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
2975 return -1; /* FIXME this error is ignored */
f21e18ca 2976 new_degraded = (int)ll;
d4445387
N
2977 if (new_degraded != *degraded) {
2978 /* check each device to ensure it is still working */
2979 struct mdinfo *sd;
2980 for (sd = sra->devs ; sd ; sd = sd->next) {
2981 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2982 continue;
2983 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2984 char sbuf[20];
2985 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
2986 strstr(sbuf, "faulty") ||
2987 strstr(sbuf, "in_sync") == NULL) {
2988 /* this device is dead */
2989 sd->disk.state = (1<<MD_DISK_FAULTY);
2990 if (sd->disk.raid_disk >= 0 &&
2991 sources[sd->disk.raid_disk] >= 0) {
2992 close(sources[sd->disk.raid_disk]);
2993 sources[sd->disk.raid_disk] = -1;
2994 }
2995 }
2996 }
2997 }
2998 *degraded = new_degraded;
2999 }
7236ee7a
N
3000 if (part) {
3001 bsb.arraystart2 = __cpu_to_le64(offset * odata);
200871ad 3002 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
3003 } else {
3004 bsb.arraystart = __cpu_to_le64(offset * odata);
200871ad 3005 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
3006 }
3007 if (part)
3008 bsb.magic[15] = '2';
3009 for (i = 0; i < dests; i++)
3010 if (part)
3011 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
3012 else
3013 lseek64(destfd[i], destoffsets[i], 0);
3014
3015 rv = save_stripes(sources, offsets,
3016 disks, chunk, level, layout,
3017 dests, destfd,
3018 offset*512*odata, stripes * chunk * odata,
3019 buf);
3020
3021 if (rv)
3022 return rv;
97396422 3023 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
3024 for (i = 0; i < dests; i++) {
3025 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3026
3027 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3028 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3029 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3030 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3031
72044953 3032 rv = -1;
f21e18ca
N
3033 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
3034 != destoffsets[i] - 4096)
72044953
N
3035 break;
3036 if (write(destfd[i], &bsb, 512) != 512)
3037 break;
ff94fb86 3038 if (destoffsets[i] > 4096) {
f21e18ca 3039 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
a847575a 3040 destoffsets[i]+stripes*chunk*odata)
72044953
N
3041 break;
3042 if (write(destfd[i], &bsb, 512) != 512)
3043 break;
ff94fb86 3044 }
7236ee7a 3045 fsync(destfd[i]);
72044953 3046 rv = 0;
7236ee7a 3047 }
2efedc7b 3048
fcf57625 3049 return rv;
7236ee7a
N
3050}
3051
3052/* in 2.6.30, the value reported by sync_completed can be
3053 * less that it should be by one stripe.
3054 * This only happens when reshape hits sync_max and pauses.
3055 * So allow wait_backup to either extent sync_max further
3056 * than strictly necessary, or return before the
3057 * sync has got quite as far as we would really like.
3058 * This is what 'blocks2' is for.
3059 * The various caller give appropriate values so that
3060 * every works.
3061 */
fcf57625 3062/* FIXME return value is often ignored */
7443ee81 3063static int forget_backup(
7236ee7a
N
3064 int dests, int *destfd, unsigned long long *destoffsets,
3065 int part)
3066{
7443ee81
N
3067 /*
3068 * Erase backup 'part' (which is 0 or 1)
7236ee7a 3069 */
7236ee7a 3070 int i;
fcf57625 3071 int rv;
7236ee7a 3072
7236ee7a
N
3073 if (part) {
3074 bsb.arraystart2 = __cpu_to_le64(0);
3075 bsb.length2 = __cpu_to_le64(0);
3076 } else {
3077 bsb.arraystart = __cpu_to_le64(0);
3078 bsb.length = __cpu_to_le64(0);
3079 }
97396422 3080 bsb.mtime = __cpu_to_le64(time(0));
fcf57625 3081 rv = 0;
7236ee7a
N
3082 for (i = 0; i < dests; i++) {
3083 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3084 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3085 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3086 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3087 ((char*)&bsb.sb_csum2)-((char*)&bsb));
f21e18ca 3088 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
a847575a 3089 destoffsets[i]-4096)
72044953
N
3090 rv = -1;
3091 if (rv == 0 &&
3092 write(destfd[i], &bsb, 512) != 512)
3093 rv = -1;
7236ee7a
N
3094 fsync(destfd[i]);
3095 }
fcf57625 3096 return rv;
7236ee7a 3097}
e86c9dd6 3098
7236ee7a
N
3099static void fail(char *msg)
3100{
fcf57625 3101 int rv;
72044953
N
3102 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
3103 rv |= (write(2, "\n", 1) != 1);
fcf57625 3104 exit(rv ? 1 : 2);
7236ee7a
N
3105}
3106
3107static char *abuf, *bbuf;
f21e18ca 3108static unsigned long long abuflen;
7236ee7a
N
3109static void validate(int afd, int bfd, unsigned long long offset)
3110{
3111 /* check that the data in the backup against the array.
3112 * This is only used for regression testing and should not
3113 * be used while the array is active
3114 */
7236ee7a
N
3115 if (afd < 0)
3116 return;
3117 lseek64(bfd, offset - 4096, 0);
3118 if (read(bfd, &bsb2, 512) != 512)
3119 fail("cannot read bsb");
3120 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
3121 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
3122 fail("first csum bad");
3123 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
3124 fail("magic is bad");
3125 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
3126 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
3127 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
3128 fail("second csum bad");
3129
3130 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
3131 fail("devstart is wrong");
3132
3133 if (bsb2.length) {
3134 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
3135
3136 if (abuflen < len) {
3137 free(abuf);
3138 free(bbuf);
3139 abuflen = len;
fcf57625
N
3140 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
3141 posix_memalign((void**)&bbuf, 4096, abuflen)) {
3142 abuflen = 0;
3143 /* just stop validating on mem-alloc failure */
3144 return;
3145 }
e86c9dd6 3146 }
48924014 3147
7236ee7a 3148 lseek64(bfd, offset, 0);
f21e18ca 3149 if ((unsigned long long)read(bfd, bbuf, len) != len) {
080fd005 3150 //printf("len %llu\n", len);
7236ee7a
N
3151 fail("read first backup failed");
3152 }
3153 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
f21e18ca 3154 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
3155 fail("read first from array failed");
3156 if (memcmp(bbuf, abuf, len) != 0) {
080fd005 3157 #if 0
7236ee7a
N
3158 int i;
3159 printf("offset=%llu len=%llu\n",
080fd005 3160 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
7236ee7a
N
3161 for (i=0; i<len; i++)
3162 if (bbuf[i] != abuf[i]) {
3163 printf("first diff byte %d\n", i);
93ecfa01 3164 break;
7236ee7a 3165 }
080fd005 3166 #endif
7236ee7a 3167 fail("data1 compare failed");
e86c9dd6 3168 }
7236ee7a
N
3169 }
3170 if (bsb2.length2) {
3171 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
3172
3173 if (abuflen < len) {
3174 free(abuf);
3175 free(bbuf);
3176 abuflen = len;
3177 abuf = malloc(abuflen);
3178 bbuf = malloc(abuflen);
e86c9dd6
NB
3179 }
3180
7236ee7a 3181 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
f21e18ca 3182 if ((unsigned long long)read(bfd, bbuf, len) != len)
7236ee7a
N
3183 fail("read second backup failed");
3184 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
f21e18ca 3185 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
3186 fail("read second from array failed");
3187 if (memcmp(bbuf, abuf, len) != 0)
3188 fail("data2 compare failed");
e86c9dd6 3189 }
7236ee7a 3190}
e86c9dd6 3191
999b4972
N
3192int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
3193 struct supertype *st, unsigned long blocks,
3194 int *fds, unsigned long long *offsets,
3195 int dests, int *destfd, unsigned long long *destoffsets)
7236ee7a 3196{
7443ee81
N
3197 /* Monitor a reshape where backup is being performed using
3198 * 'native' mechanism - either to a backup file, or
3199 * to some space in a spare.
3200 */
7236ee7a 3201 char *buf;
7443ee81
N
3202 int degraded = -1;
3203 unsigned long long speed;
3204 unsigned long long suspend_point, array_size;
3205 unsigned long long backup_point, wait_point;
3206 unsigned long long reshape_completed;
3207 int done = 0;
3208 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
3209 int part = 0; /* The next part of the backup area to fill. It may already
3210 * be full, so we need to check */
3211 int level = reshape->level;
3212 int layout = reshape->before.layout;
3213 int data = reshape->before.data_disks;
3214 int disks = reshape->before.data_disks + reshape->parity;
3215 int chunk = sra->array.chunk_size;
da8100ca
N
3216 struct mdinfo *sd;
3217 unsigned long stripes;
3b7e9d0c 3218 int uuid[4];
da8100ca
N
3219
3220 /* set up the backup-super-block. This requires the
3221 * uuid from the array.
3222 */
3223 /* Find a superblock */
3224 for (sd = sra->devs; sd; sd = sd->next) {
3225 char *dn;
3226 int devfd;
3227 int ok;
3228 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3229 continue;
3230 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
3231 devfd = dev_open(dn, O_RDONLY);
3232 if (devfd < 0)
3233 continue;
3234 ok = st->ss->load_super(st, devfd, NULL);
3235 close(devfd);
77f8d358 3236 if (ok == 0)
da8100ca
N
3237 break;
3238 }
3239 if (!sd) {
3240 fprintf(stderr, Name ": Cannot find a superblock\n");
3241 return 0;
3242 }
3243
3244 memset(&bsb, 0, 512);
3245 memcpy(bsb.magic, "md_backup_data-1", 16);
3b7e9d0c
LB
3246 st->ss->uuid_from_super(st, uuid);
3247 memcpy(bsb.set_uuid, uuid, 16);
da8100ca
N
3248 bsb.mtime = __cpu_to_le64(time(0));
3249 bsb.devstart2 = blocks;
3250
3251 stripes = blocks / (sra->array.chunk_size/512) /
3252 reshape->before.data_disks;
e86c9dd6 3253
fcf57625
N
3254 if (posix_memalign((void**)&buf, 4096, disks * chunk))
3255 /* Don't start the 'reshape' */
3256 return 0;
7443ee81
N
3257 if (reshape->before.data_disks == reshape->after.data_disks) {
3258 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
3259 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
3260 }
e86c9dd6 3261
7443ee81 3262 if (increasing) {
96533072 3263 array_size = sra->component_size * reshape->after.data_disks;
7443ee81
N
3264 backup_point = sra->reshape_progress;
3265 suspend_point = 0;
3266 } else {
96533072 3267 array_size = sra->component_size * reshape->before.data_disks;
25da62d9 3268 backup_point = reshape->backup_blocks;
7443ee81
N
3269 suspend_point = array_size;
3270 }
7236ee7a 3271
7443ee81
N
3272 while (!done) {
3273 int rv;
7236ee7a 3274
7443ee81
N
3275 /* Want to return as soon the oldest backup slot can
3276 * be released as that allows us to start backing up
3277 * some more, providing suspend_point has been
b6b95155 3278 * advanced, which it should have.
7443ee81
N
3279 */
3280 if (increasing) {
3281 wait_point = array_size;
3282 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
3283 wait_point = (__le64_to_cpu(bsb.arraystart) +
3284 __le64_to_cpu(bsb.length));
3285 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
3286 wait_point = (__le64_to_cpu(bsb.arraystart2) +
3287 __le64_to_cpu(bsb.length2));
3288 } else {
3289 wait_point = 0;
3290 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
3291 wait_point = __le64_to_cpu(bsb.arraystart);
3292 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
3293 wait_point = __le64_to_cpu(bsb.arraystart2);
3294 }
3295
3296 rv = progress_reshape(sra, reshape,
3297 backup_point, wait_point,
3298 &suspend_point, &reshape_completed);
7443ee81
N
3299 /* external metadata would need to ping_monitor here */
3300 sra->reshape_progress = reshape_completed;
7236ee7a 3301
7443ee81
N
3302 /* Clear any backup region that is before 'here' */
3303 if (increasing) {
b3cf095a
N
3304 if (__le64_to_cpu(bsb.length) > 0 &&
3305 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
7443ee81
N
3306 __le64_to_cpu(bsb.length)))
3307 forget_backup(dests, destfd,
3308 destoffsets, 0);
b3cf095a
N
3309 if (__le64_to_cpu(bsb.length2) > 0 &&
3310 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
7443ee81
N
3311 __le64_to_cpu(bsb.length2)))
3312 forget_backup(dests, destfd,
3313 destoffsets, 1);
3314 } else {
b3cf095a
N
3315 if (__le64_to_cpu(bsb.length) > 0 &&
3316 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
7443ee81
N
3317 forget_backup(dests, destfd,
3318 destoffsets, 0);
b3cf095a
N
3319 if (__le64_to_cpu(bsb.length2) > 0 &&
3320 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
7443ee81
N
3321 forget_backup(dests, destfd,
3322 destoffsets, 1);
3323 }
7236ee7a 3324
223c5c99 3325 if (rv < 0) {
77a73a17
N
3326 if (rv == -1)
3327 done = 1;
223c5c99
N
3328 break;
3329 }
2d4de5f9
N
3330 if (rv == 0 && increasing && !st->ss->external) {
3331 /* No longer need to monitor this reshape */
3332 done = 1;
3333 break;
3334 }
223c5c99 3335
60204e4e 3336 while (rv) {
7443ee81 3337 unsigned long long offset;
e97ca002 3338 unsigned long actual_stripes;
60204e4e
N
3339 /* Need to backup some data.
3340 * If 'part' is not used and the desired
3341 * backup size is suspended, do a backup,
3342 * then consider the next part.
3343 */
7443ee81
N
3344 /* Check that 'part' is unused */
3345 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
60204e4e 3346 break;
7443ee81 3347 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
60204e4e 3348 break;
7443ee81
N
3349
3350 offset = backup_point / data;
e97ca002 3351 actual_stripes = stripes;
60204e4e 3352 if (increasing) {
e97ca002
N
3353 if (offset + actual_stripes * (chunk/512) >
3354 sra->component_size)
3355 actual_stripes = ((sra->component_size - offset)
3356 / (chunk/512));
3357 if (offset + actual_stripes * (chunk/512) >
60204e4e
N
3358 suspend_point/data)
3359 break;
3360 } else {
e97ca002
N
3361 if (offset < actual_stripes * (chunk/512))
3362 actual_stripes = offset / (chunk/512);
3363 offset -= actual_stripes * (chunk/512);
3364 if (offset < suspend_point/data)
60204e4e
N
3365 break;
3366 }
e4b11073
N
3367 if (actual_stripes == 0)
3368 break;
e97ca002 3369 grow_backup(sra, offset, actual_stripes,
7443ee81
N
3370 fds, offsets,
3371 disks, chunk, level, layout,
3372 dests, destfd, destoffsets,
3373 part, &degraded, buf);
3374 validate(afd, destfd[0], destoffsets[0]);
3375 /* record where 'part' is up to */
3376 part = !part;
3377 if (increasing)
e97ca002 3378 backup_point += actual_stripes * (chunk/512) * data;
7443ee81 3379 else
e97ca002 3380 backup_point -= actual_stripes * (chunk/512) * data;
7443ee81
N
3381 }
3382 }
3383
223c5c99
N
3384 /* FIXME maybe call progress_reshape one more time instead */
3385 abort_reshape(sra); /* remove any remaining suspension */
7443ee81
N
3386 if (reshape->before.data_disks == reshape->after.data_disks)
3387 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
7236ee7a 3388 free(buf);
77a73a17 3389 return done;
e86c9dd6 3390}
353632d9
NB
3391
3392/*
3393 * If any spare contains md_back_data-1 which is recent wrt mtime,
3394 * write that data into the array and update the super blocks with
3395 * the new reshape_progress
3396 */
ea0ebe96
N
3397int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
3398 char *backup_file, int verbose)
353632d9
NB
3399{
3400 int i, j;
3401 int old_disks;
353632d9 3402 unsigned long long *offsets;
82f2d6ab 3403 unsigned long long nstripe, ostripe;
6e9eac4f 3404 int ndata, odata;
353632d9 3405
e9e43ec3
N
3406 odata = info->array.raid_disks - info->delta_disks - 1;
3407 if (info->array.level == 6) odata--; /* number of data disks */
3408 ndata = info->array.raid_disks - 1;
3409 if (info->new_level == 6) ndata--;
353632d9
NB
3410
3411 old_disks = info->array.raid_disks - info->delta_disks;
3412
e9e43ec3
N
3413 if (info->delta_disks <= 0)
3414 /* Didn't grow, so the backup file must have
3415 * been used
3416 */
3417 old_disks = cnt;
06b0d786 3418 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 3419 struct mdinfo dinfo;
06b0d786 3420 int fd;
e9e43ec3 3421 int bsbsize;
ea0ebe96 3422 char *devname, namebuf[20];
10af14c4 3423 unsigned long long lo, hi;
353632d9
NB
3424
3425 /* This was a spare and may have some saved data on it.
3426 * Load the superblock, find and load the
3427 * backup_super_block.
3428 * If either fail, go on to next device.
3429 * If the backup contains no new info, just return
206c5eae 3430 * else restore data and update all superblocks
353632d9 3431 */
06b0d786
NB
3432 if (i == old_disks-1) {
3433 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
3434 if (fd<0) {
3435 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
3436 backup_file, strerror(errno));
06b0d786 3437 continue;
e9e43ec3 3438 }
ea0ebe96 3439 devname = backup_file;
06b0d786
NB
3440 } else {
3441 fd = fdlist[i];
3442 if (fd < 0)
3443 continue;
3da92f27 3444 if (st->ss->load_super(st, fd, NULL))
06b0d786 3445 continue;
353632d9 3446
a5d85af7 3447 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27
NB
3448 st->ss->free_super(st);
3449
06b0d786
NB
3450 if (lseek64(fd,
3451 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
3452 0) < 0) {
3453 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 3454 continue; /* Cannot seek */
ea0ebe96
N
3455 }
3456 sprintf(namebuf, "device-%d", i);
3457 devname = namebuf;
06b0d786 3458 }
ea0ebe96
N
3459 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
3460 if (verbose)
3461 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 3462 continue; /* Cannot read */
ea0ebe96 3463 }
e9e43ec3 3464 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
3465 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
3466 if (verbose)
3467 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 3468 continue;
ea0ebe96
N
3469 }
3470 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
3471 if (verbose)
3472 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 3473 continue; /* bad checksum */
ea0ebe96 3474 }
e9e43ec3 3475 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
3476 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
3477 if (verbose)
3478 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 3479 continue; /* Bad second checksum */
ea0ebe96
N
3480 }
3481 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
3482 if (verbose)
3483 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 3484 continue; /* Wrong uuid */
ea0ebe96 3485 }
353632d9 3486
097075b6
N
3487 /* array utime and backup-mtime should be updated at much the same time, but it seems that
3488 * sometimes they aren't... So allow considerable flexability in matching, and allow
3489 * this test to be overridden by an environment variable.
3490 */
f21e18ca
N
3491 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
3492 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
097075b6
N
3493 if (check_env("MDADM_GROW_ALLOW_OLD")) {
3494 fprintf(stderr, Name ": accepting backup with timestamp %lu "
3495 "for array with timestamp %lu\n",
3496 (unsigned long)__le64_to_cpu(bsb.mtime),
3497 (unsigned long)info->array.utime);
3498 } else {
3499 if (verbose)
3500 fprintf(stderr, Name ": too-old timestamp on "
3501 "backup-metadata on %s\n", devname);
3502 continue; /* time stamp is too bad */
3503 }
ea0ebe96 3504 }
353632d9 3505
e9e43ec3 3506 if (bsb.magic[15] == '1') {
10af14c4
N
3507 if (bsb.length == 0)
3508 continue;
e7a71c6b
N
3509 if (info->delta_disks >= 0) {
3510 /* reshape_progress is increasing */
3511 if (__le64_to_cpu(bsb.arraystart)
3512 + __le64_to_cpu(bsb.length)
3513 < info->reshape_progress) {
3514 nonew:
3515 if (verbose)
3516 fprintf(stderr, Name
3517 ": backup-metadata found on %s but is not needed\n", devname);
3518 continue; /* No new data here */
3519 }
3520 } else {
3521 /* reshape_progress is decreasing */
3522 if (__le64_to_cpu(bsb.arraystart) >=
3523 info->reshape_progress)
3524 goto nonew; /* No new data here */
ea0ebe96 3525 }
e9e43ec3 3526 } else {
10af14c4
N
3527 if (bsb.length == 0 && bsb.length2 == 0)
3528 continue;
e7a71c6b
N
3529 if (info->delta_disks >= 0) {
3530 /* reshape_progress is increasing */
3531 if ((__le64_to_cpu(bsb.arraystart)
3532 + __le64_to_cpu(bsb.length)
3533 < info->reshape_progress)
3534 &&
3535 (__le64_to_cpu(bsb.arraystart2)
3536 + __le64_to_cpu(bsb.length2)
3537 < info->reshape_progress))
3538 goto nonew; /* No new data here */
3539 } else {
3540 /* reshape_progress is decreasing */
3541 if (__le64_to_cpu(bsb.arraystart) >=
3542 info->reshape_progress &&
3543 __le64_to_cpu(bsb.arraystart2) >=
3544 info->reshape_progress)
3545 goto nonew; /* No new data here */
3546 }
e9e43ec3 3547 }
ea0ebe96
N
3548 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
3549 second_fail:
3550 if (verbose)
e7a71c6b
N
3551 fprintf(stderr, Name
3552 ": Failed to verify secondary backup-metadata block on %s\n",
ea0ebe96 3553 devname);
353632d9 3554 continue; /* Cannot seek */
ea0ebe96 3555 }
2efedc7b 3556 /* There should be a duplicate backup superblock 4k before here */
06b0d786 3557 if (lseek64(fd, -4096, 1) < 0 ||
0155af90 3558 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
ea0ebe96 3559 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
3560 if (bsb.magic[15] == '1')
3561 bsbsize = offsetof(struct mdp_backup_super, pad1);
3562 else
3563 bsbsize = offsetof(struct mdp_backup_super, pad);
ff94fb86 3564 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
ea0ebe96 3565 goto second_fail; /* Cannot find leading superblock */
2efedc7b 3566
353632d9
NB
3567 /* Now need the data offsets for all devices. */
3568 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
3569 for(j=0; j<info->array.raid_disks; j++) {
3570 if (fdlist[j] < 0)
3571 continue;
3da92f27 3572 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
3573 /* FIXME should be this be an error */
3574 continue;
a5d85af7 3575 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27 3576 st->ss->free_super(st);
14e5b4d7 3577 offsets[j] = dinfo.data_offset * 512;
353632d9
NB
3578 }
3579 printf(Name ": restoring critical section\n");
3580
3581 if (restore_stripes(fdlist, offsets,
3582 info->array.raid_disks,
3583 info->new_chunk,
3584 info->new_level,
3585 info->new_layout,
06b0d786 3586 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 3587 __le64_to_cpu(bsb.arraystart)*512,
2fcb75ae 3588 __le64_to_cpu(bsb.length)*512, NULL)) {
e9e43ec3 3589 /* didn't succeed, so giveup */
ea0ebe96
N
3590 if (verbose)
3591 fprintf(stderr, Name ": Error restoring backup from %s\n",
3592 devname);
e9e43ec3
N
3593 return 1;
3594 }
3595
3596 if (bsb.magic[15] == '2' &&
3597 restore_stripes(fdlist, offsets,
3598 info->array.raid_disks,
3599 info->new_chunk,
3600 info->new_level,
3601 info->new_layout,
3602 fd, __le64_to_cpu(bsb.devstart)*512 +
3603 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 3604 __le64_to_cpu(bsb.arraystart2)*512,
2fcb75ae 3605 __le64_to_cpu(bsb.length2)*512, NULL)) {
353632d9 3606 /* didn't succeed, so giveup */
ea0ebe96
N
3607 if (verbose)
3608 fprintf(stderr, Name ": Error restoring second backup from %s\n",
3609 devname);
2295250a 3610 return 1;
353632d9
NB
3611 }
3612
e9e43ec3 3613
353632d9
NB
3614 /* Ok, so the data is restored. Let's update those superblocks. */
3615
10af14c4
N
3616 lo = hi = 0;
3617 if (bsb.length) {
3618 lo = __le64_to_cpu(bsb.arraystart);
3619 hi = lo + __le64_to_cpu(bsb.length);
3620 }
3621 if (bsb.magic[15] == '2' && bsb.length2) {
3622 unsigned long long lo1, hi1;
3623 lo1 = __le64_to_cpu(bsb.arraystart2);
3624 hi1 = lo1 + __le64_to_cpu(bsb.length2);
3625 if (lo == hi) {
3626 lo = lo1;
3627 hi = hi1;
3628 } else if (lo < lo1)
3629 hi = hi1;
3630 else
3631 lo = lo1;
3632 }
3633 if (lo < hi &&
3634 (info->reshape_progress < lo ||
3635 info->reshape_progress > hi))
3636 /* backup does not affect reshape_progress*/ ;
3637 else if (info->delta_disks >= 0) {
e9e43ec3
N
3638 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
3639 __le64_to_cpu(bsb.length);
3640 if (bsb.magic[15] == '2') {
3641 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
3642 __le64_to_cpu(bsb.length2);
3643 if (p2 > info->reshape_progress)
3644 info->reshape_progress = p2;
3645 }
3646 } else {
3647 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
3648 if (bsb.magic[15] == '2') {
3649 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
3650 if (p2 < info->reshape_progress)
3651 info->reshape_progress = p2;
3652 }
3653 }
353632d9
NB
3654 for (j=0; j<info->array.raid_disks; j++) {
3655 if (fdlist[j] < 0) continue;
3da92f27 3656 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 3657 continue;
a5d85af7 3658 st->ss->getinfo_super(st, &dinfo, NULL);
e9e43ec3 3659 dinfo.reshape_progress = info->reshape_progress;
3da92f27 3660 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
3661 "_reshape_progress",
3662 NULL,0, 0, NULL);
3da92f27
NB
3663 st->ss->store_super(st, fdlist[j]);
3664 st->ss->free_super(st);
353632d9 3665 }
353632d9
NB
3666 return 0;
3667 }
6e9eac4f
NB
3668 /* Didn't find any backup data, try to see if any
3669 * was needed.
3670 */
82f2d6ab
N
3671 if (info->delta_disks < 0) {
3672 /* When shrinking, the critical section is at the end.
3673 * So see if we are before the critical section.
3674 */
3675 unsigned long long first_block;
3676 nstripe = ostripe = 0;
3677 first_block = 0;
3678 while (ostripe >= nstripe) {
3679 ostripe += info->array.chunk_size / 512;
3680 first_block = ostripe * odata;
3681 nstripe = first_block / ndata / (info->new_chunk/512) *
3682 (info->new_chunk/512);
3683 }
3684
3685 if (info->reshape_progress >= first_block)
3686 return 0;
6e9eac4f 3687 }
82f2d6ab
N
3688 if (info->delta_disks > 0) {
3689 /* See if we are beyond the critical section. */
3690 unsigned long long last_block;
3691 nstripe = ostripe = 0;
3692 last_block = 0;
3693 while (nstripe >= ostripe) {
3694 nstripe += info->new_chunk / 512;
3695 last_block = nstripe * ndata;
3696 ostripe = last_block / odata / (info->array.chunk_size/512) *
3697 (info->array.chunk_size/512);
3698 }
6e9eac4f 3699
82f2d6ab
N
3700 if (info->reshape_progress >= last_block)
3701 return 0;
3702 }
6e9eac4f 3703 /* needed to recover critical section! */
ea0ebe96
N
3704 if (verbose)
3705 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 3706 return 1;
353632d9 3707}
e9e43ec3 3708
2dddadb0
AK
3709int Grow_continue_command(char *devname, int fd,
3710 char *backup_file, int verbose)
3711{
3712 int ret_val = 0;
3713 struct supertype *st = NULL;
3714 struct mdinfo *content = NULL;
3715 struct mdinfo array;
3716 char *subarray = NULL;
3717 struct mdinfo *cc = NULL;
3718 struct mdstat_ent *mdstat = NULL;
3719 char buf[40];
3720 int cfd = -1;
3721 int fd2 = -1;
f1fe496b
AK
3722 char *ep;
3723 unsigned long long position;
2dddadb0
AK
3724
3725 dprintf("Grow continue from command line called for %s\n",
3726 devname);
3727
3728 st = super_by_fd(fd, &subarray);
3729 if (!st || !st->ss) {
3730 fprintf(stderr,
3731 Name ": Unable to determine metadata format for %s\n",
3732 devname);
3733 return 1;
3734 }
3735 dprintf("Grow continue is run for ");
3736 if (st->ss->external == 0) {
3737 dprintf("native array (%s)\n", devname);
3738 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
3739 fprintf(stderr, Name ": %s is not an active md array -"
3740 " aborting\n", devname);
3741 ret_val = 1;
3742 goto Grow_continue_command_exit;
3743 }
3744 content = &array;
3745 sysfs_init(content, fd, st->devnum);
3746 } else {
3747 int container_dev;
3748
3749 if (subarray) {
3750 dprintf("subarray (%s)\n", subarray);
3751 container_dev = st->container_dev;
3752 cfd = open_dev_excl(st->container_dev);
3753 } else {
3754 container_dev = st->devnum;
3755 close(fd);
3756 cfd = open_dev_excl(st->devnum);
3757 dprintf("container (%i)\n", container_dev);
3758 fd = cfd;
3759 }
3760 if (cfd < 0) {
3761 fprintf(stderr, Name ": Unable to open container "
3762 "for %s\n", devname);
3763 ret_val = 1;
3764 goto Grow_continue_command_exit;
3765 }
3766 fmt_devname(buf, container_dev);
3767
3768 /* find in container array under reshape
3769 */
3770 ret_val = st->ss->load_container(st, cfd, NULL);
3771 if (ret_val) {
3772 fprintf(stderr,
3773 Name ": Cannot read superblock for %s\n",
3774 devname);
3775 ret_val = 1;
3776 goto Grow_continue_command_exit;
3777 }
3778
3779 cc = st->ss->container_content(st, NULL);
3780 for (content = cc; content ; content = content->next) {
3781 char *array;
81219e70 3782 int allow_reshape;
2dddadb0
AK
3783
3784 if (content->reshape_active == 0)
3785 continue;
81219e70
LM
3786 /* The decision about array or container wide
3787 * reshape is taken in Grow_continue based
3788 * content->reshape_active state, therefore we
3789 * need to check_reshape based on
3790 * reshape_active and subarray name
3791 */
3792 allow_reshape =
3793 check_reshape((content->reshape_active == CONTAINER_RESHAPE)? NULL : subarray,
3794 content);
3795 if (!allow_reshape) {
3796 fprintf(stderr, Name
3797 ": cannot continue reshape of an array"
3798 " in container with unsupported"
3799 " metadata: %s(%s)\n",
3800 devname, buf);
3801 ret_val = 1;
3802 goto Grow_continue_command_exit;
3803 }
2dddadb0
AK
3804
3805 array = strchr(content->text_version+1, '/')+1;
3806 mdstat = mdstat_by_subdev(array, container_dev);
3807 if (!mdstat)
3808 continue;
3809 break;
3810 }
3811 if (!content) {
3812 fprintf(stderr,
3813 Name ": Unable to determine reshaped "
3814 "array for %s\n", devname);
3815 ret_val = 1;
3816 goto Grow_continue_command_exit;
3817 }
3818 fd2 = open_dev(mdstat->devnum);
3819 if (fd2 < 0) {
3820 fprintf(stderr, Name ": cannot open (md%i)\n",
3821 mdstat->devnum);
3822 ret_val = 1;
3823 goto Grow_continue_command_exit;
3824 }
3825
3826 sysfs_init(content, fd2, mdstat->devnum);
3827
3828 /* start mdmon in case it is not running
3829 */
3830 if (!mdmon_running(container_dev))
3831 start_mdmon(container_dev);
3832 ping_monitor(buf);
3833
3834 if (mdmon_running(container_dev))
3835 st->update_tail = &st->updates;
3836 else {
3837 fprintf(stderr, Name ": No mdmon found. "
3838 "Grow cannot continue.\n");
3839 ret_val = 1;
3840 goto Grow_continue_command_exit;
3841 }
3842 }
3843
f1fe496b
AK
3844 /* verify that array under reshape is started from
3845 * correct position
3846 */
3847 ret_val = sysfs_get_str(content, NULL, "sync_max", buf, 40);
3848 if (ret_val <= 0) {
3849 fprintf(stderr, Name
3850 ": cannot open verify reshape progress for %s (%i)\n",
3851 content->sys_name, ret_val);
3852 ret_val = 1;
3853 goto Grow_continue_command_exit;
3854 }
3855 dprintf(Name ": Read sync_max sysfs entry is: %s\n", buf);
3856 position = strtoull(buf, &ep, 0);
3857 if (ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' ')) {
3858 fprintf(stderr, Name ": Fatal error: array reshape was"
3859 " not properly frozen\n");
3860 ret_val = 1;
3861 goto Grow_continue_command_exit;
3862 }
3863 position *= get_data_disks(map_name(pers, mdstat->level),
3864 content->new_layout,
3865 content->array.raid_disks);
3866 if (position != content->reshape_progress) {
3867 fprintf(stderr, Name ": Fatal error: array reshape was"
3868 " not properly frozen.\n");
3869 ret_val = 1;
3870 goto Grow_continue_command_exit;
3871 }
3872
2dddadb0
AK
3873 /* continue reshape
3874 */
3875 ret_val = Grow_continue(fd, st, content, backup_file, 0);
3876
3877Grow_continue_command_exit:
3878 if (fd2 > -1)
3879 close(fd2);
3880 if (cfd > -1)
3881 close(cfd);
3882 st->ss->free_super(st);
3883 free_mdstat(mdstat);
3884 sysfs_free(cc);
3885 free(subarray);
3886
3887 return ret_val;
3888}
3889
e9e43ec3 3890int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
b76b30e0 3891 char *backup_file, int freeze_reshape)
e9e43ec3 3892{
3bd58dc6
AK
3893 int ret_val = 2;
3894
3895 if (!info->reshape_active)
3896 return ret_val;
864a004f 3897
20a40eca 3898 if (st->ss->external) {
3bd58dc6
AK
3899 char container[40];
3900 int cfd = open_dev(st->container_dev);
3db2fdd8 3901
3bd58dc6
AK
3902 if (cfd < 0)
3903 return 1;
f362d22b 3904
3bd58dc6
AK
3905 fmt_devname(container, st->container_dev);
3906 st->ss->load_container(st, cfd, container);
3907 close(cfd);
9ad6f6e6 3908 ret_val = reshape_container(container, NULL, mdfd,
3bd58dc6
AK
3909 st, info, 0, backup_file,
3910 0, 1, freeze_reshape);
3911 } else
3912 ret_val = reshape_array(NULL, mdfd, "array", st, info, 1,
3913 NULL, backup_file, 0, 0, 1,
3914 freeze_reshape);
f362d22b 3915
3bd58dc6 3916 return ret_val;
e9e43ec3 3917}