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