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