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