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