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