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