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