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