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