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