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