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