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