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