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