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