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