]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Grow: handle E2BIG from new_offset changes more gracefully.
[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
63c12c89
N
2869 switch(set_new_data_offset(sra, st, devname, info->delta_disks,
2870 data_offset,
2871 reshape.min_offset_change)) {
2872 case -1:
2873 goto release;
2874 case 0:
2875 /* Updated data_offset, so it's easy now */
2876 update_cache_size(container, sra, info,
2877 min(reshape.before.data_disks,
2878 reshape.after.data_disks),
2879 reshape.backup_blocks);
2880
2881 /* Right, everything seems fine. Let's kick things off.
2882 */
2883 sync_metadata(st);
2884
2885 if (impose_reshape(sra, info, st, fd, restart,
2886 devname, container, &reshape) < 0)
2887 goto release;
2888 if (sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0) {
2889 pr_err("Failed to initiate reshape!\n");
2890 goto release;
2891 }
2892
2893 return 0;
2894 case 1: /* Couldn't set data_offset, try the old way */
2895 if (data_offset != INVALID_SECTORS) {
2896 pr_err("Cannot update data_offset on this array\n");
2897 goto release;
2898 }
2899 break;
2900 }
2901
5da9ab98
N
2902 /* Decide how many blocks (sectors) for a reshape
2903 * unit. The number we have so far is just a minimum
2904 */
b4f8e38b 2905 blocks = reshape.backup_blocks;
24daa16f 2906 if (reshape.before.data_disks ==
5da9ab98
N
2907 reshape.after.data_disks) {
2908 /* Make 'blocks' bigger for better throughput, but
2909 * not so big that we reject it below.
2910 * Try for 16 megabytes
2911 */
2912 while (blocks * 32 < sra->component_size &&
2913 blocks < 16*1024*2)
2914 blocks *= 2;
2915 } else
e7b84f9d 2916 pr_err("Need to backup %luK of critical "
5da9ab98
N
2917 "section..\n", blocks/2);
2918
2919 if (blocks >= sra->component_size/2) {
e7b84f9d 2920 pr_err("%s: Something wrong"
5da9ab98
N
2921 " - reshape aborted\n",
2922 devname);
5da9ab98
N
2923 goto release;
2924 }
7236ee7a 2925
5da9ab98
N
2926 /* Now we need to open all these devices so we can read/write.
2927 */
b8b286a6
N
2928 nrdisks = max(reshape.before.data_disks,
2929 reshape.after.data_disks) + reshape.parity
2930 + sra->array.spare_disks;
503975b9
N
2931 fdlist = xcalloc((1+nrdisks), sizeof(int));
2932 offsets = xcalloc((1+nrdisks), sizeof(offsets[0]));
e380d3be 2933
b8b286a6
N
2934 odisks = reshape.before.data_disks + reshape.parity;
2935 d = reshape_prepare_fdlist(devname, sra, odisks,
5da9ab98
N
2936 nrdisks, blocks, backup_file,
2937 fdlist, offsets);
2938 if (d < 0) {
5da9ab98
N
2939 goto release;
2940 }
13c37ad3
AK
2941 if ((st->ss->manage_reshape == NULL) ||
2942 (st->ss->recover_backup == NULL)) {
2943 if (backup_file == NULL) {
2944 if (reshape.after.data_disks <=
2945 reshape.before.data_disks) {
e7b84f9d 2946 pr_err("%s: Cannot grow - "
13c37ad3
AK
2947 "need backup-file\n", devname);
2948 goto release;
2949 } else if (sra->array.spare_disks == 0) {
e7b84f9d 2950 pr_err("%s: Cannot grow - "
13c37ad3
AK
2951 "need a spare or backup-file to backup "
2952 "critical section\n", devname);
2953 goto release;
2954 }
2955 } else {
2956 if (!reshape_open_backup_file(backup_file, fd, devname,
2957 (signed)blocks,
2958 fdlist+d, offsets+d,
2959 restart)) {
2960 goto release;
2961 }
2962 d++;
e86c9dd6 2963 }
5da9ab98 2964 }
7236ee7a 2965
434d167e
N
2966 update_cache_size(container, sra, info,
2967 min(reshape.before.data_disks, reshape.after.data_disks),
2968 blocks);
5da9ab98
N
2969
2970 /* Right, everything seems fine. Let's kick things off.
2971 * If only changing raid_disks, use ioctl, else use
2972 * sysfs.
2973 */
2974 sync_metadata(st);
2975
77afa056
N
2976 if (impose_reshape(sra, info, st, fd, restart,
2977 devname, container, &reshape) < 0)
2978 goto release;
e86c9dd6 2979
27a1e5b5
N
2980 err = start_reshape(sra, restart, reshape.before.data_disks,
2981 reshape.after.data_disks);
fab32c97 2982 if (err) {
e7b84f9d
N
2983 pr_err("Cannot %s reshape for %s\n",
2984 restart ? "continue" : "start",
2985 devname);
fab32c97
AK
2986 goto release;
2987 }
a93f87ee
N
2988 if (restart)
2989 sysfs_set_str(sra, NULL, "array_state", "active");
b76b30e0
AK
2990 if (freeze_reshape) {
2991 free(fdlist);
2992 free(offsets);
2993 sysfs_free(sra);
e7b84f9d 2994 pr_err("Reshape has to be continued from"
59ab9f54 2995 " location %llu when root filesystem has been mounted.\n",
b76b30e0
AK
2996 sra->reshape_progress);
2997 return 1;
2998 }
5da9ab98
N
2999
3000 /* Now we just need to kick off the reshape and watch, while
3001 * handling backups of the data...
3002 * This is all done by a forked background process.
3003 */
3004 switch(forked ? 0 : fork()) {
6b2d630c 3005 case -1:
e7b84f9d 3006 pr_err("Cannot run child to monitor reshape: %s\n",
6b2d630c 3007 strerror(errno));
6b2d630c 3008 abort_reshape(sra);
631d7405 3009 goto release;
6b2d630c 3010 default:
d152f53e
JS
3011 free(fdlist);
3012 free(offsets);
3013 sysfs_free(sra);
6b2d630c 3014 return 0;
5da9ab98 3015 case 0:
cc700db3 3016 map_fork();
6b2d630c
N
3017 break;
3018 }
5da9ab98 3019
1f9b0e28
N
3020 /* If another array on the same devices is busy, the
3021 * reshape will wait for them. This would mean that
3022 * the first section that we suspend will stay suspended
3023 * for a long time. So check on that possibility
3024 * by looking for "DELAYED" in /proc/mdstat, and if found,
3025 * wait a while
3026 */
3027 do {
3028 struct mdstat_ent *mds, *m;
3029 delayed = 0;
3030 mds = mdstat_read(0, 0);
ae0dcfbd 3031 for (m = mds; m; m = m->next)
4dd2df09 3032 if (strcmp(m->devnm, sra->sys_name) == 0) {
1f9b0e28
N
3033 if (m->resync &&
3034 m->percent == RESYNC_DELAYED)
3035 delayed = 1;
3036 if (m->resync == 0)
3037 /* Haven't started the reshape thread
3038 * yet, wait a bit
3039 */
3040 delayed = 2;
3041 break;
3042 }
3043 free_mdstat(mds);
3044 if (delayed == 1 && get_linux_version() < 3007000) {
3045 pr_err("Reshape is delayed, but cannot wait carefully with this kernel.\n"
3046 " You might experience problems until other reshapes complete.\n");
3047 delayed = 0;
3048 }
3049 if (delayed)
3050 sleep(30 - (delayed-1) * 25);
3051 } while (delayed);
3052
6b2d630c
N
3053 close(fd);
3054 if (check_env("MDADM_GROW_VERIFY"))
3055 fd = open(devname, O_RDONLY | O_DIRECT);
3056 else
3057 fd = -1;
3058 mlockall(MCL_FUTURE);
5da9ab98 3059
6b2d630c
N
3060 if (st->ss->external) {
3061 /* metadata handler takes it from here */
3062 done = st->ss->manage_reshape(
3063 fd, sra, &reshape, st, blocks,
3064 fdlist, offsets,
3065 d - odisks, fdlist+odisks,
3066 offsets+odisks);
3067 } else
3068 done = child_monitor(
3069 fd, sra, &reshape, st, blocks,
3070 fdlist, offsets,
3071 d - odisks, fdlist+odisks,
3072 offsets+odisks);
3073
d152f53e
JS
3074 free(fdlist);
3075 free(offsets);
3076
6b2d630c
N
3077 if (backup_file && done)
3078 unlink(backup_file);
3079 if (!done) {
3080 abort_reshape(sra);
3081 goto out;
3082 }
1cbc5680
N
3083
3084 if (!st->ss->external &&
3085 !(reshape.before.data_disks != reshape.after.data_disks
3086 && info->custom_array_size) &&
3087 info->new_level == reshape.level &&
3088 !forked) {
3089 /* no need to wait for the reshape to finish as
3090 * there is nothing more to do.
3091 */
d152f53e 3092 sysfs_free(sra);
1cbc5680
N
3093 exit(0);
3094 }
3095 wait_reshape(sra);
3096
3097 if (st->ss->external) {
3098 /* Re-load the metadata as much could have changed */
4dd2df09 3099 int cfd = open_dev(st->container_devnm);
1cbc5680 3100 if (cfd >= 0) {
78340e26 3101 flush_mdmon(container);
1cbc5680
N
3102 st->ss->free_super(st);
3103 st->ss->load_container(st, cfd, container);
3104 close(cfd);
3105 }
3106 }
3107
6b2d630c
N
3108 /* set new array size if required customer_array_size is used
3109 * by this metadata.
3110 */
3111 if (reshape.before.data_disks !=
3112 reshape.after.data_disks &&
54397ed9
AK
3113 info->custom_array_size)
3114 set_array_size(st, info, info->text_version);
582496b2 3115
6b2d630c 3116 if (info->new_level != reshape.level) {
582496b2 3117
6b2d630c 3118 c = map_num(pers, info->new_level);
1cbc5680
N
3119 if (c) {
3120 err = sysfs_set_str(sra, NULL, "level", c);
3121 if (err)
e7b84f9d
N
3122 pr_err("%s: could not set level "
3123 "to %s\n", devname, c);
1cbc5680 3124 }
e919fb0a
AK
3125 if (info->new_level == 0)
3126 st->update_tail = NULL;
7236ee7a 3127 }
6b2d630c 3128out:
d152f53e 3129 sysfs_free(sra);
6b2d630c
N
3130 if (forked)
3131 return 0;
e84f2c00 3132 unfreeze(st);
6b2d630c 3133 exit(0);
e86c9dd6 3134
6b2d630c 3135release:
d152f53e
JS
3136 free(fdlist);
3137 free(offsets);
1cbc5680 3138 if (orig_level != UnSet && sra) {
7236ee7a
N
3139 c = map_num(pers, orig_level);
3140 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
e7b84f9d 3141 pr_err("aborting level change\n");
7236ee7a 3142 }
d152f53e 3143 sysfs_free(sra);
9202b8eb
N
3144 if (!forked)
3145 unfreeze(st);
631d7405 3146 return 1;
7236ee7a 3147}
e86c9dd6 3148
9ad6f6e6
AK
3149/* mdfd handle is passed to be closed in child process (after fork).
3150 */
493f5dd6 3151int reshape_container(char *container, char *devname,
9ad6f6e6 3152 int mdfd,
24daa16f 3153 struct supertype *st,
5da9ab98
N
3154 struct mdinfo *info,
3155 int force,
3156 char *backup_file,
ba728be7 3157 int verbose, int restart, int freeze_reshape)
5da9ab98 3158{
1bb174ba 3159 struct mdinfo *cc = NULL;
bcc9e9ed 3160 int rv = restart;
4dd2df09 3161 char last_devnm[32] = "";
1bb174ba 3162
d8eb27f7 3163 /* component_size is not meaningful for a container,
7ec0996c 3164 * so pass '0' meaning 'no change'
d8eb27f7 3165 */
493f5dd6 3166 if (!restart &&
7ec0996c 3167 reshape_super(st, 0, info->new_level,
5da9ab98 3168 info->new_layout, info->new_chunk,
41784c88 3169 info->array.raid_disks, info->delta_disks,
016e00f5 3170 backup_file, devname, APPLY_METADATA_CHANGES,
ba728be7 3171 verbose)) {
9e325442 3172 unfreeze(st);
5da9ab98 3173 return 1;
9e325442 3174 }
5da9ab98
N
3175
3176 sync_metadata(st);
3177
1bb174ba
AK
3178 /* ping monitor to be sure that update is on disk
3179 */
3180 ping_monitor(container);
5da9ab98
N
3181
3182 switch (fork()) {
3183 case -1: /* error */
3184 perror("Cannot fork to complete reshape\n");
9e325442 3185 unfreeze(st);
5da9ab98
N
3186 return 1;
3187 default: /* parent */
b76b30e0
AK
3188 if (!freeze_reshape)
3189 printf(Name ": multi-array reshape continues"
3190 " in background\n");
5da9ab98
N
3191 return 0;
3192 case 0: /* child */
cc700db3 3193 map_fork();
5da9ab98
N
3194 break;
3195 }
3196
9ad6f6e6
AK
3197 /* close unused handle in child process
3198 */
3199 if (mdfd > -1)
3200 close(mdfd);
3201
1bb174ba
AK
3202 while(1) {
3203 /* For each member array with reshape_active,
3204 * we need to perform the reshape.
3205 * We pick the first array that needs reshaping and
3206 * reshape it. reshape_array() will re-read the metadata
3207 * so the next time through a different array should be
3208 * ready for reshape.
493f5dd6
N
3209 * It is possible that the 'different' array will not
3210 * be assembled yet. In that case we simple exit.
3211 * When it is assembled, the mdadm which assembles it
3212 * will take over the reshape.
1bb174ba
AK
3213 */
3214 struct mdinfo *content;
5da9ab98
N
3215 int fd;
3216 struct mdstat_ent *mdstat;
5da9ab98 3217 char *adev;
4dd2df09 3218 int devid;
5da9ab98 3219
1bb174ba 3220 sysfs_free(cc);
5da9ab98 3221
1bb174ba
AK
3222 cc = st->ss->container_content(st, NULL);
3223
3224 for (content = cc; content ; content = content->next) {
3225 char *subarray;
3226 if (!content->reshape_active)
3227 continue;
3228
3229 subarray = strchr(content->text_version+1, '/')+1;
4dd2df09 3230 mdstat = mdstat_by_subdev(subarray, container);
1bb174ba
AK
3231 if (!mdstat)
3232 continue;
1ca90aa6 3233 if (mdstat->active == 0) {
4dd2df09
N
3234 pr_err("Skipping inactive array %s.\n",
3235 mdstat->devnm);
1ca90aa6
AK
3236 free_mdstat(mdstat);
3237 mdstat = NULL;
3238 continue;
3239 }
1bb174ba
AK
3240 break;
3241 }
3242 if (!content)
3243 break;
5da9ab98 3244
4dd2df09
N
3245 devid = devnm2devid(mdstat->devnm);
3246 adev = map_dev(major(devid), minor(devid), 0);
5da9ab98 3247 if (!adev)
1bb174ba
AK
3248 adev = content->text_version;
3249
4dd2df09 3250 fd = open_dev(mdstat->devnm);
97a3490c
AK
3251 if (fd < 0) {
3252 printf(Name ": Device %s cannot be opened for reshape.",
3253 adev);
3254 break;
3255 }
3256
4dd2df09 3257 if (strcmp(last_devnm, mdstat->devnm) == 0) {
2d04d7e5
AK
3258 /* Do not allow for multiple reshape_array() calls for
3259 * the same array.
3260 * It can happen when reshape_array() returns without
3261 * error, when reshape is not finished (wrong reshape
3262 * starting/continuation conditions). Mdmon doesn't
3263 * switch to next array in container and reentry
3264 * conditions for the same array occur.
3265 * This is possibly interim until the behaviour of
3266 * reshape_array is resolved().
3267 */
3268 printf(Name ": Multiple reshape execution detected for "
3269 "device %s.", adev);
3270 close(fd);
3271 break;
3272 }
4dd2df09 3273 strcpy(last_devnm, mdstat->devnm);
2d04d7e5 3274
4dd2df09 3275 sysfs_init(content, fd, mdstat->devnm);
5da9ab98 3276
4dd2df09 3277 if (mdmon_running(container))
78340e26
AK
3278 flush_mdmon(container);
3279
1bb174ba 3280 rv = reshape_array(container, fd, adev, st,
19ceb16d 3281 content, force, NULL, 0ULL,
ba728be7 3282 backup_file, verbose, 1, restart,
b76b30e0 3283 freeze_reshape);
5da9ab98 3284 close(fd);
b76b30e0
AK
3285
3286 if (freeze_reshape) {
3287 sysfs_free(cc);
3288 exit(0);
3289 }
3290
493f5dd6 3291 restart = 0;
5da9ab98
N
3292 if (rv)
3293 break;
78340e26 3294
4dd2df09 3295 if (mdmon_running(container))
78340e26 3296 flush_mdmon(container);
5da9ab98 3297 }
bcc9e9ed
AK
3298 if (!rv)
3299 unfreeze(st);
1bb174ba 3300 sysfs_free(cc);
5da9ab98
N
3301 exit(0);
3302}
3303
7236ee7a
N
3304/*
3305 * We run a child process in the background which performs the following
3306 * steps:
3307 * - wait for resync to reach a certain point
3308 * - suspend io to the following section
3309 * - backup that section
3310 * - allow resync to proceed further
3311 * - resume io
3312 * - discard the backup.
3313 *
3314 * When are combined in slightly different ways in the three cases.
3315 * Grow:
3316 * - suspend/backup/allow/wait/resume/discard
3317 * Shrink:
3318 * - allow/wait/suspend/backup/allow/wait/resume/discard
3319 * same-size:
3320 * - wait/resume/discard/suspend/backup/allow
3321 *
3322 * suspend/backup/allow always come together
3323 * wait/resume/discard do too.
3324 * For the same-size case we have two backups to improve flow.
24daa16f 3325 *
7236ee7a 3326 */
e86c9dd6 3327
7443ee81
N
3328int progress_reshape(struct mdinfo *info, struct reshape *reshape,
3329 unsigned long long backup_point,
3330 unsigned long long wait_point,
3331 unsigned long long *suspend_point,
3332 unsigned long long *reshape_completed)
3333{
3334 /* This function is called repeatedly by the reshape manager.
3335 * It determines how much progress can safely be made and allows
3336 * that progress.
3337 * - 'info' identifies the array and particularly records in
3338 * ->reshape_progress the metadata's knowledge of progress
3339 * This is a sector offset from the start of the array
3340 * of the next array block to be relocated. This number
3341 * may increase from 0 or decrease from array_size, depending
3342 * on the type of reshape that is happening.
3343 * Note that in contrast, 'sync_completed' is a block count of the
3344 * reshape so far. It gives the distance between the start point
3345 * (head or tail of device) and the next place that data will be
3346 * written. It always increases.
3347 * - 'reshape' is the structure created by analyse_change
3348 * - 'backup_point' shows how much the metadata manager has backed-up
3349 * data. For reshapes with increasing progress, it is the next address
3350 * to be backed up, previous addresses have been backed-up. For
3351 * decreasing progress, it is the earliest address that has been
3352 * backed up - later address are also backed up.
3353 * So addresses between reshape_progress and backup_point are
3354 * backed up providing those are in the 'correct' order.
3355 * - 'wait_point' is an array address. When reshape_completed
3356 * passes this point, progress_reshape should return. It might
3357 * return earlier if it determines that ->reshape_progress needs
3358 * to be updated or further backup is needed.
3359 * - suspend_point is maintained by progress_reshape and the caller
3360 * should not touch it except to initialise to zero.
3361 * It is an array address and it only increases in 2.6.37 and earlier.
b6b95155 3362 * This makes it difficult to handle reducing reshapes with
7443ee81
N
3363 * external metadata.
3364 * However: it is similar to backup_point in that it records the
3365 * other end of a suspended region from reshape_progress.
3366 * it is moved to extend the region that is safe to backup and/or
3367 * reshape
3368 * - reshape_completed is read from sysfs and returned. The caller
3369 * should copy this into ->reshape_progress when it has reason to
3370 * believe that the metadata knows this, and any backup outside this
3371 * has been erased.
3372 *
3373 * Return value is:
3374 * 1 if more data from backup_point - but only as far as suspend_point,
3375 * should be backed up
3376 * 0 if things are progressing smoothly
9e034f70
N
3377 * -1 if the reshape is finished because it is all done,
3378 * -2 if the reshape is finished due to an error.
7443ee81
N
3379 */
3380
3381 int advancing = (reshape->after.data_disks
3382 >= reshape->before.data_disks);
38dad34a
N
3383 unsigned long long need_backup; /* All data between start of array and
3384 * here will at some point need to
3385 * be backed up.
d0ab945e 3386 */
7443ee81 3387 unsigned long long read_offset, write_offset;
b4f8e38b 3388 unsigned long long write_range;
7443ee81 3389 unsigned long long max_progress, target, completed;
d0ab945e
N
3390 unsigned long long array_size = (info->component_size
3391 * reshape->before.data_disks);
7443ee81 3392 int fd;
77a73a17 3393 char buf[20];
7443ee81
N
3394
3395 /* First, we unsuspend any region that is now known to be safe.
3396 * If suspend_point is on the 'wrong' side of reshape_progress, then
3397 * we don't have or need suspension at the moment. This is true for
3398 * native metadata when we don't need to back-up.
3399 */
3400 if (advancing) {
49cd738b 3401 if (info->reshape_progress <= *suspend_point)
7443ee81
N
3402 sysfs_set_num(info, NULL, "suspend_lo",
3403 info->reshape_progress);
3404 } else {
3405 /* Note: this won't work in 2.6.37 and before.
3406 * Something somewhere should make sure we don't need it!
3407 */
49cd738b 3408 if (info->reshape_progress >= *suspend_point)
7443ee81
N
3409 sysfs_set_num(info, NULL, "suspend_hi",
3410 info->reshape_progress);
3411 }
3412
3413 /* Now work out how far it is safe to progress.
3414 * If the read_offset for ->reshape_progress is less than
3415 * 'blocks' beyond the write_offset, we can only progress as far
3416 * as a backup.
3417 * Otherwise we can progress until the write_offset for the new location
3418 * reaches (within 'blocks' of) the read_offset at the current location.
3419 * However that region must be suspended unless we are using native
3420 * metadata.
3421 * If we need to suspend more, we limit it to 128M per device, which is
3422 * rather arbitrary and should be some time-based calculation.
3423 */
ec757320
N
3424 read_offset = info->reshape_progress / reshape->before.data_disks;
3425 write_offset = info->reshape_progress / reshape->after.data_disks;
b4f8e38b 3426 write_range = info->new_chunk/512;
38dad34a
N
3427 if (reshape->before.data_disks == reshape->after.data_disks)
3428 need_backup = array_size;
3429 else
3430 need_backup = reshape->backup_blocks;
7443ee81 3431 if (advancing) {
38dad34a 3432 if (read_offset < write_offset + write_range)
7443ee81 3433 max_progress = backup_point;
ddee071d 3434 else
7443ee81 3435 max_progress =
2f3dd5e4
N
3436 read_offset *
3437 reshape->after.data_disks;
7443ee81 3438 } else {
38dad34a
N
3439 if (read_offset > write_offset - write_range)
3440 /* Can only progress as far as has been backed up,
3441 * which must be suspended */
7443ee81 3442 max_progress = backup_point;
38dad34a
N
3443 else if (info->reshape_progress <= need_backup)
3444 max_progress = backup_point;
3445 else {
3446 if (info->array.major_version >= 0)
3447 /* Can progress until backup is needed */
3448 max_progress = need_backup;
3449 else {
3450 /* Can progress until metadata update is required */
3451 max_progress =
3452 read_offset *
3453 reshape->after.data_disks;
3454 /* but data must be suspended */
3455 if (max_progress < *suspend_point)
3456 max_progress = *suspend_point;
3457 }
7443ee81
N
3458 }
3459 }
3460
3461 /* We know it is safe to progress to 'max_progress' providing
3462 * it is suspended or we are using native metadata.
3463 * Consider extending suspend_point 128M per device if it
3464 * is less than 64M per device beyond reshape_progress.
3465 * But always do a multiple of 'blocks'
832b2b9a
N
3466 * FIXME this is too big - it takes to long to complete
3467 * this much.
7443ee81
N
3468 */
3469 target = 64*1024*2 * min(reshape->before.data_disks,
24daa16f 3470 reshape->after.data_disks);
b4f8e38b 3471 target /= reshape->backup_blocks;
7443ee81
N
3472 if (target < 2)
3473 target = 2;
b4f8e38b 3474 target *= reshape->backup_blocks;
7443ee81
N
3475
3476 /* For externally managed metadata we always need to suspend IO to
3477 * the area being reshaped so we regularly push suspend_point forward.
3478 * For native metadata we only need the suspend if we are going to do
3479 * a backup.
3480 */
3481 if (advancing) {
d0ab945e
N
3482 if ((need_backup > info->reshape_progress
3483 || info->array.major_version < 0) &&
7443ee81 3484 *suspend_point < info->reshape_progress + target) {
d0ab945e
N
3485 if (need_backup < *suspend_point + 2 * target)
3486 *suspend_point = need_backup;
3487 else if (*suspend_point + 2 * target < array_size)
7443ee81 3488 *suspend_point += 2 * target;
d0ab945e
N
3489 else
3490 *suspend_point = array_size;
7443ee81 3491 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
d0ab945e
N
3492 if (max_progress > *suspend_point)
3493 max_progress = *suspend_point;
7443ee81
N
3494 }
3495 } else {
38dad34a
N
3496 if (info->array.major_version >= 0) {
3497 /* Only need to suspend when about to backup */
3498 if (info->reshape_progress < need_backup * 2 &&
3499 *suspend_point > 0) {
d0ab945e 3500 *suspend_point = 0;
38dad34a
N
3501 sysfs_set_num(info, NULL, "suspend_lo", 0);
3502 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
3503 }
3504 } else {
3505 /* Need to suspend continually */
3506 if (info->reshape_progress < *suspend_point)
3507 *suspend_point = info->reshape_progress;
3508 if (*suspend_point + target < info->reshape_progress)
3509 /* No need to move suspend region yet */;
3510 else {
3511 if (*suspend_point >= 2 * target)
3512 *suspend_point -= 2 * target;
3513 else
3514 *suspend_point = 0;
3515 sysfs_set_num(info, NULL, "suspend_lo",
3516 *suspend_point);
3517 }
d0ab945e
N
3518 if (max_progress < *suspend_point)
3519 max_progress = *suspend_point;
7443ee81
N
3520 }
3521 }
3522
3523 /* now set sync_max to allow that progress. sync_max, like
3524 * sync_completed is a count of sectors written per device, so
3525 * we find the difference between max_progress and the start point,
3526 * and divide that by after.data_disks to get a sync_max
3527 * number.
3528 * At the same time we convert wait_point to a similar number
3529 * for comparing against sync_completed.
3530 */
92d1991f 3531 /* scale down max_progress to per_disk */
7443ee81 3532 max_progress /= reshape->after.data_disks;
92d1991f
N
3533 /* Round to chunk size as some kernels give an erroneously high number */
3534 max_progress /= info->new_chunk/512;
3535 max_progress *= info->new_chunk/512;
7f913e9b
N
3536 /* And round to old chunk size as the kernel wants that */
3537 max_progress /= info->array.chunk_size/512;
3538 max_progress *= info->array.chunk_size/512;
92d1991f
N
3539 /* Limit progress to the whole device */
3540 if (max_progress > info->component_size)
3541 max_progress = info->component_size;
7443ee81 3542 wait_point /= reshape->after.data_disks;
92d1991f
N
3543 if (!advancing) {
3544 /* switch from 'device offset' to 'processed block count' */
3545 max_progress = info->component_size - max_progress;
3546 wait_point = info->component_size - wait_point;
3547 }
7443ee81
N
3548
3549 sysfs_set_num(info, NULL, "sync_max", max_progress);
3550
3551 /* Now wait. If we have already reached the point that we were
3552 * asked to wait to, don't wait at all, else wait for any change.
3553 * We need to select on 'sync_completed' as that is the place that
3554 * notifications happen, but we are really interested in
3555 * 'reshape_position'
3556 */
3557 fd = sysfs_get_fd(info, NULL, "sync_completed");
3558 if (fd < 0)
77a73a17 3559 goto check_progress;
7443ee81 3560
621ea11b 3561 if (sysfs_fd_get_ll(fd, &completed) < 0)
77a73a17 3562 goto check_progress;
621ea11b 3563
7443ee81
N
3564 while (completed < max_progress && completed < wait_point) {
3565 /* Check that sync_action is still 'reshape' to avoid
3566 * waiting forever on a dead array
3567 */
3568 char action[20];
3569 fd_set rfds;
3570 if (sysfs_get_str(info, NULL, "sync_action",
3571 action, 20) <= 0 ||
3572 strncmp(action, "reshape", 7) != 0)
3573 break;
26d6e157
AK
3574 /* Some kernels reset 'sync_completed' to zero
3575 * before setting 'sync_action' to 'idle'.
3576 * So we need these extra tests.
3577 */
3578 if (completed == 0 && advancing
3579 && info->reshape_progress > 0)
3580 break;
3581 if (completed == 0 && !advancing
3582 && info->reshape_progress < (info->component_size
3583 * reshape->after.data_disks))
3584 break;
7443ee81
N
3585 FD_ZERO(&rfds);
3586 FD_SET(fd, &rfds);
3587 select(fd+1, NULL, NULL, &rfds, NULL);
621ea11b 3588 if (sysfs_fd_get_ll(fd, &completed) < 0)
77a73a17 3589 goto check_progress;
7443ee81 3590 }
10d0d365
AK
3591 /* Some kernels reset 'sync_completed' to zero,
3592 * we need to have real point we are in md
3593 */
3594 if (completed == 0)
3595 completed = max_progress;
3596
92d1991f
N
3597 /* some kernels can give an incorrectly high 'completed' number */
3598 completed /= (info->new_chunk/512);
3599 completed *= (info->new_chunk/512);
7443ee81
N
3600 /* Convert 'completed' back in to a 'progress' number */
3601 completed *= reshape->after.data_disks;
3602 if (!advancing) {
3603 completed = info->component_size * reshape->after.data_disks
3604 - completed;
3605 }
3606 *reshape_completed = completed;
24daa16f 3607
7443ee81
N
3608 close(fd);
3609
3610 /* We return the need_backup flag. Caller will decide
d0ab945e 3611 * how much - a multiple of ->backup_blocks up to *suspend_point
7443ee81 3612 */
38dad34a
N
3613 if (advancing)
3614 return need_backup > info->reshape_progress;
3615 else
3616 return need_backup >= info->reshape_progress;
77a73a17
N
3617
3618check_progress:
3619 /* if we couldn't read a number from sync_completed, then
3620 * either the reshape did complete, or it aborted.
3621 * We can tell which by checking for 'none' in reshape_position.
621ea11b
N
3622 * If it did abort, then it might immediately restart if it
3623 * it was just a device failure that leaves us degraded but
3624 * functioning.
77a73a17
N
3625 */
3626 strcpy(buf, "hi");
3627 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
621ea11b
N
3628 || strncmp(buf, "none", 4) != 0) {
3629 /* The abort might only be temporary. Wait up to 10
3630 * seconds for fd to contain a valid number again.
3631 */
3632 struct timeval tv;
3633 int rv = -2;
3634 tv.tv_sec = 10;
3635 tv.tv_usec = 0;
6560987b 3636 while (fd >= 0 && rv < 0 && tv.tv_sec > 0) {
621ea11b
N
3637 fd_set rfds;
3638 FD_ZERO(&rfds);
3639 FD_SET(fd, &rfds);
3640 if (select(fd+1, NULL, NULL, &rfds, &tv) != 1)
3641 break;
6560987b
N
3642 switch (sysfs_fd_get_ll(fd, &completed)) {
3643 case 0:
621ea11b
N
3644 /* all good again */
3645 rv = 1;
6560987b
N
3646 break;
3647 case -2: /* read error - abort */
3648 tv.tv_sec = 0;
3649 break;
3650 }
621ea11b
N
3651 }
3652 if (fd >= 0)
3653 close(fd);
3654 return rv; /* abort */
3655 } else {
6d5316f6 3656 /* Maybe racing with array shutdown - check state */
621ea11b
N
3657 if (fd >= 0)
3658 close(fd);
6d5316f6
N
3659 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
3660 || strncmp(buf, "inactive", 8) == 0
3661 || strncmp(buf, "clear",5) == 0)
3662 return -2; /* abort */
77a73a17 3663 return -1; /* complete */
6d5316f6 3664 }
7443ee81
N
3665}
3666
fcf57625 3667/* FIXME return status is never checked */
4411fb17 3668static int grow_backup(struct mdinfo *sra,
7236ee7a 3669 unsigned long long offset, /* per device */
7443ee81 3670 unsigned long stripes, /* per device, in old chunks */
7236ee7a
N
3671 int *sources, unsigned long long *offsets,
3672 int disks, int chunk, int level, int layout,
3673 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 3674 int part, int *degraded,
7236ee7a
N
3675 char *buf)
3676{
3677 /* Backup 'blocks' sectors at 'offset' on each device of the array,
3678 * to storage 'destfd' (offset 'destoffsets'), after first
3679 * suspending IO. Then allow resync to continue
3680 * over the suspended section.
3681 * Use part 'part' of the backup-super-block.
3682 */
3683 int odata = disks;
3684 int rv = 0;
3685 int i;
f21e18ca
N
3686 unsigned long long ll;
3687 int new_degraded;
7236ee7a
N
3688 //printf("offset %llu\n", offset);
3689 if (level >= 4)
3690 odata--;
3691 if (level == 6)
3692 odata--;
7443ee81 3693
d4445387 3694 /* Check that array hasn't become degraded, else we might backup the wrong data */
2c6ac128
N
3695 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
3696 return -1; /* FIXME this error is ignored */
f21e18ca 3697 new_degraded = (int)ll;
d4445387
N
3698 if (new_degraded != *degraded) {
3699 /* check each device to ensure it is still working */
3700 struct mdinfo *sd;
3701 for (sd = sra->devs ; sd ; sd = sd->next) {
3702 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3703 continue;
3704 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
3705 char sbuf[20];
3706 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
3707 strstr(sbuf, "faulty") ||
3708 strstr(sbuf, "in_sync") == NULL) {
3709 /* this device is dead */
3710 sd->disk.state = (1<<MD_DISK_FAULTY);
3711 if (sd->disk.raid_disk >= 0 &&
3712 sources[sd->disk.raid_disk] >= 0) {
3713 close(sources[sd->disk.raid_disk]);
3714 sources[sd->disk.raid_disk] = -1;
3715 }
3716 }
3717 }
3718 }
3719 *degraded = new_degraded;
3720 }
7236ee7a
N
3721 if (part) {
3722 bsb.arraystart2 = __cpu_to_le64(offset * odata);
200871ad 3723 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
3724 } else {
3725 bsb.arraystart = __cpu_to_le64(offset * odata);
200871ad 3726 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
3727 }
3728 if (part)
3729 bsb.magic[15] = '2';
3730 for (i = 0; i < dests; i++)
3731 if (part)
3732 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
3733 else
3734 lseek64(destfd[i], destoffsets[i], 0);
3735
24daa16f 3736 rv = save_stripes(sources, offsets,
7236ee7a
N
3737 disks, chunk, level, layout,
3738 dests, destfd,
3739 offset*512*odata, stripes * chunk * odata,
3740 buf);
3741
3742 if (rv)
3743 return rv;
97396422 3744 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
3745 for (i = 0; i < dests; i++) {
3746 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3747
3748 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3749 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3750 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3751 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3752
72044953 3753 rv = -1;
f21e18ca
N
3754 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
3755 != destoffsets[i] - 4096)
72044953
N
3756 break;
3757 if (write(destfd[i], &bsb, 512) != 512)
3758 break;
ff94fb86 3759 if (destoffsets[i] > 4096) {
f21e18ca 3760 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
a847575a 3761 destoffsets[i]+stripes*chunk*odata)
72044953
N
3762 break;
3763 if (write(destfd[i], &bsb, 512) != 512)
3764 break;
ff94fb86 3765 }
7236ee7a 3766 fsync(destfd[i]);
72044953 3767 rv = 0;
7236ee7a 3768 }
2efedc7b 3769
fcf57625 3770 return rv;
7236ee7a
N
3771}
3772
3773/* in 2.6.30, the value reported by sync_completed can be
3774 * less that it should be by one stripe.
3775 * This only happens when reshape hits sync_max and pauses.
3776 * So allow wait_backup to either extent sync_max further
3777 * than strictly necessary, or return before the
3778 * sync has got quite as far as we would really like.
3779 * This is what 'blocks2' is for.
3780 * The various caller give appropriate values so that
3781 * every works.
3782 */
fcf57625 3783/* FIXME return value is often ignored */
24daa16f
N
3784static int forget_backup(int dests, int *destfd,
3785 unsigned long long *destoffsets,
3786 int part)
7236ee7a 3787{
24daa16f 3788 /*
7443ee81 3789 * Erase backup 'part' (which is 0 or 1)
7236ee7a 3790 */
7236ee7a 3791 int i;
fcf57625 3792 int rv;
7236ee7a 3793
7236ee7a
N
3794 if (part) {
3795 bsb.arraystart2 = __cpu_to_le64(0);
3796 bsb.length2 = __cpu_to_le64(0);
3797 } else {
3798 bsb.arraystart = __cpu_to_le64(0);
3799 bsb.length = __cpu_to_le64(0);
3800 }
97396422 3801 bsb.mtime = __cpu_to_le64(time(0));
fcf57625 3802 rv = 0;
7236ee7a
N
3803 for (i = 0; i < dests; i++) {
3804 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3805 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3806 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3807 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3808 ((char*)&bsb.sb_csum2)-((char*)&bsb));
f21e18ca 3809 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
a847575a 3810 destoffsets[i]-4096)
72044953 3811 rv = -1;
24daa16f 3812 if (rv == 0 &&
72044953
N
3813 write(destfd[i], &bsb, 512) != 512)
3814 rv = -1;
7236ee7a
N
3815 fsync(destfd[i]);
3816 }
fcf57625 3817 return rv;
7236ee7a 3818}
e86c9dd6 3819
7236ee7a
N
3820static void fail(char *msg)
3821{
fcf57625 3822 int rv;
72044953
N
3823 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
3824 rv |= (write(2, "\n", 1) != 1);
fcf57625 3825 exit(rv ? 1 : 2);
7236ee7a
N
3826}
3827
3828static char *abuf, *bbuf;
f21e18ca 3829static unsigned long long abuflen;
7236ee7a
N
3830static void validate(int afd, int bfd, unsigned long long offset)
3831{
3832 /* check that the data in the backup against the array.
3833 * This is only used for regression testing and should not
3834 * be used while the array is active
3835 */
7236ee7a
N
3836 if (afd < 0)
3837 return;
3838 lseek64(bfd, offset - 4096, 0);
3839 if (read(bfd, &bsb2, 512) != 512)
3840 fail("cannot read bsb");
3841 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
3842 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
3843 fail("first csum bad");
3844 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
3845 fail("magic is bad");
3846 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
3847 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
24daa16f 3848 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
7236ee7a
N
3849 fail("second csum bad");
3850
3851 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
3852 fail("devstart is wrong");
3853
3854 if (bsb2.length) {
3855 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
3856
3857 if (abuflen < len) {
3858 free(abuf);
3859 free(bbuf);
3860 abuflen = len;
fcf57625
N
3861 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
3862 posix_memalign((void**)&bbuf, 4096, abuflen)) {
3863 abuflen = 0;
3864 /* just stop validating on mem-alloc failure */
3865 return;
3866 }
e86c9dd6 3867 }
48924014 3868
7236ee7a 3869 lseek64(bfd, offset, 0);
f21e18ca 3870 if ((unsigned long long)read(bfd, bbuf, len) != len) {
080fd005 3871 //printf("len %llu\n", len);
7236ee7a
N
3872 fail("read first backup failed");
3873 }
3874 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
f21e18ca 3875 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
3876 fail("read first from array failed");
3877 if (memcmp(bbuf, abuf, len) != 0) {
24daa16f 3878#if 0
7236ee7a
N
3879 int i;
3880 printf("offset=%llu len=%llu\n",
080fd005 3881 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
7236ee7a
N
3882 for (i=0; i<len; i++)
3883 if (bbuf[i] != abuf[i]) {
3884 printf("first diff byte %d\n", i);
93ecfa01 3885 break;
7236ee7a 3886 }
24daa16f 3887#endif
7236ee7a 3888 fail("data1 compare failed");
e86c9dd6 3889 }
7236ee7a
N
3890 }
3891 if (bsb2.length2) {
3892 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
3893
3894 if (abuflen < len) {
3895 free(abuf);
3896 free(bbuf);
3897 abuflen = len;
503975b9
N
3898 abuf = xmalloc(abuflen);
3899 bbuf = xmalloc(abuflen);
e86c9dd6
NB
3900 }
3901
7236ee7a 3902 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
f21e18ca 3903 if ((unsigned long long)read(bfd, bbuf, len) != len)
7236ee7a
N
3904 fail("read second backup failed");
3905 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
f21e18ca 3906 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
3907 fail("read second from array failed");
3908 if (memcmp(bbuf, abuf, len) != 0)
3909 fail("data2 compare failed");
e86c9dd6 3910 }
7236ee7a 3911}
e86c9dd6 3912
999b4972
N
3913int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
3914 struct supertype *st, unsigned long blocks,
3915 int *fds, unsigned long long *offsets,
3916 int dests, int *destfd, unsigned long long *destoffsets)
7236ee7a 3917{
7443ee81
N
3918 /* Monitor a reshape where backup is being performed using
3919 * 'native' mechanism - either to a backup file, or
3920 * to some space in a spare.
3921 */
7236ee7a 3922 char *buf;
7443ee81
N
3923 int degraded = -1;
3924 unsigned long long speed;
3925 unsigned long long suspend_point, array_size;
3926 unsigned long long backup_point, wait_point;
3927 unsigned long long reshape_completed;
3928 int done = 0;
3929 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
3930 int part = 0; /* The next part of the backup area to fill. It may already
3931 * be full, so we need to check */
3932 int level = reshape->level;
3933 int layout = reshape->before.layout;
3934 int data = reshape->before.data_disks;
3935 int disks = reshape->before.data_disks + reshape->parity;
3936 int chunk = sra->array.chunk_size;
da8100ca
N
3937 struct mdinfo *sd;
3938 unsigned long stripes;
3b7e9d0c 3939 int uuid[4];
da8100ca
N
3940
3941 /* set up the backup-super-block. This requires the
3942 * uuid from the array.
3943 */
3944 /* Find a superblock */
3945 for (sd = sra->devs; sd; sd = sd->next) {
3946 char *dn;
3947 int devfd;
3948 int ok;
3949 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3950 continue;
3951 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
3952 devfd = dev_open(dn, O_RDONLY);
3953 if (devfd < 0)
3954 continue;
3955 ok = st->ss->load_super(st, devfd, NULL);
3956 close(devfd);
77f8d358 3957 if (ok == 0)
da8100ca
N
3958 break;
3959 }
3960 if (!sd) {
e7b84f9d 3961 pr_err("Cannot find a superblock\n");
da8100ca
N
3962 return 0;
3963 }
3964
3965 memset(&bsb, 0, 512);
3966 memcpy(bsb.magic, "md_backup_data-1", 16);
3b7e9d0c
LB
3967 st->ss->uuid_from_super(st, uuid);
3968 memcpy(bsb.set_uuid, uuid, 16);
da8100ca
N
3969 bsb.mtime = __cpu_to_le64(time(0));
3970 bsb.devstart2 = blocks;
3971
3972 stripes = blocks / (sra->array.chunk_size/512) /
3973 reshape->before.data_disks;
e86c9dd6 3974
fcf57625
N
3975 if (posix_memalign((void**)&buf, 4096, disks * chunk))
3976 /* Don't start the 'reshape' */
3977 return 0;
7443ee81
N
3978 if (reshape->before.data_disks == reshape->after.data_disks) {
3979 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
3980 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
3981 }
e86c9dd6 3982
7443ee81 3983 if (increasing) {
96533072 3984 array_size = sra->component_size * reshape->after.data_disks;
7443ee81
N
3985 backup_point = sra->reshape_progress;
3986 suspend_point = 0;
3987 } else {
96533072 3988 array_size = sra->component_size * reshape->before.data_disks;
25da62d9 3989 backup_point = reshape->backup_blocks;
7443ee81
N
3990 suspend_point = array_size;
3991 }
7236ee7a 3992
7443ee81
N
3993 while (!done) {
3994 int rv;
7236ee7a 3995
7443ee81
N
3996 /* Want to return as soon the oldest backup slot can
3997 * be released as that allows us to start backing up
3998 * some more, providing suspend_point has been
b6b95155 3999 * advanced, which it should have.
7443ee81
N
4000 */
4001 if (increasing) {
4002 wait_point = array_size;
4003 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4004 wait_point = (__le64_to_cpu(bsb.arraystart) +
4005 __le64_to_cpu(bsb.length));
4006 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4007 wait_point = (__le64_to_cpu(bsb.arraystart2) +
4008 __le64_to_cpu(bsb.length2));
4009 } else {
4010 wait_point = 0;
4011 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4012 wait_point = __le64_to_cpu(bsb.arraystart);
4013 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4014 wait_point = __le64_to_cpu(bsb.arraystart2);
4015 }
4016
4017 rv = progress_reshape(sra, reshape,
4018 backup_point, wait_point,
4019 &suspend_point, &reshape_completed);
7443ee81
N
4020 /* external metadata would need to ping_monitor here */
4021 sra->reshape_progress = reshape_completed;
7236ee7a 4022
7443ee81
N
4023 /* Clear any backup region that is before 'here' */
4024 if (increasing) {
b3cf095a
N
4025 if (__le64_to_cpu(bsb.length) > 0 &&
4026 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
7443ee81
N
4027 __le64_to_cpu(bsb.length)))
4028 forget_backup(dests, destfd,
4029 destoffsets, 0);
b3cf095a
N
4030 if (__le64_to_cpu(bsb.length2) > 0 &&
4031 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
7443ee81
N
4032 __le64_to_cpu(bsb.length2)))
4033 forget_backup(dests, destfd,
4034 destoffsets, 1);
4035 } else {
b3cf095a
N
4036 if (__le64_to_cpu(bsb.length) > 0 &&
4037 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
7443ee81
N
4038 forget_backup(dests, destfd,
4039 destoffsets, 0);
b3cf095a
N
4040 if (__le64_to_cpu(bsb.length2) > 0 &&
4041 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
7443ee81
N
4042 forget_backup(dests, destfd,
4043 destoffsets, 1);
4044 }
7236ee7a 4045
223c5c99 4046 if (rv < 0) {
77a73a17
N
4047 if (rv == -1)
4048 done = 1;
223c5c99
N
4049 break;
4050 }
2d4de5f9
N
4051 if (rv == 0 && increasing && !st->ss->external) {
4052 /* No longer need to monitor this reshape */
4053 done = 1;
4054 break;
4055 }
223c5c99 4056
60204e4e 4057 while (rv) {
7443ee81 4058 unsigned long long offset;
e97ca002 4059 unsigned long actual_stripes;
60204e4e
N
4060 /* Need to backup some data.
4061 * If 'part' is not used and the desired
4062 * backup size is suspended, do a backup,
4063 * then consider the next part.
4064 */
7443ee81
N
4065 /* Check that 'part' is unused */
4066 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
60204e4e 4067 break;
7443ee81 4068 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
60204e4e 4069 break;
7443ee81
N
4070
4071 offset = backup_point / data;
e97ca002 4072 actual_stripes = stripes;
60204e4e 4073 if (increasing) {
e97ca002
N
4074 if (offset + actual_stripes * (chunk/512) >
4075 sra->component_size)
4076 actual_stripes = ((sra->component_size - offset)
4077 / (chunk/512));
4078 if (offset + actual_stripes * (chunk/512) >
60204e4e
N
4079 suspend_point/data)
4080 break;
4081 } else {
e97ca002
N
4082 if (offset < actual_stripes * (chunk/512))
4083 actual_stripes = offset / (chunk/512);
4084 offset -= actual_stripes * (chunk/512);
4085 if (offset < suspend_point/data)
60204e4e
N
4086 break;
4087 }
e4b11073
N
4088 if (actual_stripes == 0)
4089 break;
e97ca002 4090 grow_backup(sra, offset, actual_stripes,
7443ee81
N
4091 fds, offsets,
4092 disks, chunk, level, layout,
4093 dests, destfd, destoffsets,
4094 part, &degraded, buf);
4095 validate(afd, destfd[0], destoffsets[0]);
4096 /* record where 'part' is up to */
4097 part = !part;
4098 if (increasing)
e97ca002 4099 backup_point += actual_stripes * (chunk/512) * data;
7443ee81 4100 else
e97ca002 4101 backup_point -= actual_stripes * (chunk/512) * data;
7443ee81
N
4102 }
4103 }
4104
223c5c99
N
4105 /* FIXME maybe call progress_reshape one more time instead */
4106 abort_reshape(sra); /* remove any remaining suspension */
7443ee81
N
4107 if (reshape->before.data_disks == reshape->after.data_disks)
4108 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
7236ee7a 4109 free(buf);
77a73a17 4110 return done;
e86c9dd6 4111}
353632d9
NB
4112
4113/*
4114 * If any spare contains md_back_data-1 which is recent wrt mtime,
4115 * write that data into the array and update the super blocks with
4116 * the new reshape_progress
4117 */
ea0ebe96
N
4118int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
4119 char *backup_file, int verbose)
353632d9
NB
4120{
4121 int i, j;
4122 int old_disks;
353632d9 4123 unsigned long long *offsets;
82f2d6ab 4124 unsigned long long nstripe, ostripe;
6e9eac4f 4125 int ndata, odata;
353632d9 4126
e9e43ec3
N
4127 odata = info->array.raid_disks - info->delta_disks - 1;
4128 if (info->array.level == 6) odata--; /* number of data disks */
4129 ndata = info->array.raid_disks - 1;
4130 if (info->new_level == 6) ndata--;
353632d9
NB
4131
4132 old_disks = info->array.raid_disks - info->delta_disks;
4133
e9e43ec3
N
4134 if (info->delta_disks <= 0)
4135 /* Didn't grow, so the backup file must have
4136 * been used
4137 */
4138 old_disks = cnt;
06b0d786 4139 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 4140 struct mdinfo dinfo;
06b0d786 4141 int fd;
e9e43ec3 4142 int bsbsize;
ea0ebe96 4143 char *devname, namebuf[20];
10af14c4 4144 unsigned long long lo, hi;
353632d9
NB
4145
4146 /* This was a spare and may have some saved data on it.
4147 * Load the superblock, find and load the
4148 * backup_super_block.
4149 * If either fail, go on to next device.
4150 * If the backup contains no new info, just return
206c5eae 4151 * else restore data and update all superblocks
353632d9 4152 */
06b0d786
NB
4153 if (i == old_disks-1) {
4154 fd = open(backup_file, O_RDONLY);
e9e43ec3 4155 if (fd<0) {
e7b84f9d 4156 pr_err("backup file %s inaccessible: %s\n",
e9e43ec3 4157 backup_file, strerror(errno));
06b0d786 4158 continue;
e9e43ec3 4159 }
ea0ebe96 4160 devname = backup_file;
06b0d786
NB
4161 } else {
4162 fd = fdlist[i];
4163 if (fd < 0)
4164 continue;
3da92f27 4165 if (st->ss->load_super(st, fd, NULL))
06b0d786 4166 continue;
353632d9 4167
a5d85af7 4168 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27
NB
4169 st->ss->free_super(st);
4170
06b0d786
NB
4171 if (lseek64(fd,
4172 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96 4173 0) < 0) {
e7b84f9d 4174 pr_err("Cannot seek on device %d\n", i);
06b0d786 4175 continue; /* Cannot seek */
ea0ebe96
N
4176 }
4177 sprintf(namebuf, "device-%d", i);
4178 devname = namebuf;
06b0d786 4179 }
ea0ebe96
N
4180 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
4181 if (verbose)
e7b84f9d 4182 pr_err("Cannot read from %s\n", devname);
353632d9 4183 continue; /* Cannot read */
ea0ebe96 4184 }
e9e43ec3 4185 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
4186 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
4187 if (verbose)
e7b84f9d 4188 pr_err("No backup metadata on %s\n", devname);
353632d9 4189 continue;
ea0ebe96
N
4190 }
4191 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
4192 if (verbose)
e7b84f9d 4193 pr_err("Bad backup-metadata checksum on %s\n", devname);
353632d9 4194 continue; /* bad checksum */
ea0ebe96 4195 }
e9e43ec3 4196 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
4197 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
4198 if (verbose)
e7b84f9d 4199 pr_err("Bad backup-metadata checksum2 on %s\n", devname);
22e30516 4200 continue; /* Bad second checksum */
ea0ebe96
N
4201 }
4202 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
4203 if (verbose)
e7b84f9d 4204 pr_err("Wrong uuid on backup-metadata on %s\n", devname);
353632d9 4205 continue; /* Wrong uuid */
ea0ebe96 4206 }
353632d9 4207
097075b6
N
4208 /* array utime and backup-mtime should be updated at much the same time, but it seems that
4209 * sometimes they aren't... So allow considerable flexability in matching, and allow
4210 * this test to be overridden by an environment variable.
4211 */
f21e18ca
N
4212 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
4213 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
097075b6 4214 if (check_env("MDADM_GROW_ALLOW_OLD")) {
e7b84f9d 4215 pr_err("accepting backup with timestamp %lu "
097075b6
N
4216 "for array with timestamp %lu\n",
4217 (unsigned long)__le64_to_cpu(bsb.mtime),
4218 (unsigned long)info->array.utime);
4219 } else {
676ab312
N
4220 pr_err("too-old timestamp on backup-metadata on %s\n", devname);
4221 pr_err("If you think it is should be safe, try 'export MDADM_GROW_ALLOW_OLD=1'\n");
097075b6
N
4222 continue; /* time stamp is too bad */
4223 }
ea0ebe96 4224 }
353632d9 4225
e9e43ec3 4226 if (bsb.magic[15] == '1') {
10af14c4
N
4227 if (bsb.length == 0)
4228 continue;
e7a71c6b
N
4229 if (info->delta_disks >= 0) {
4230 /* reshape_progress is increasing */
4231 if (__le64_to_cpu(bsb.arraystart)
4232 + __le64_to_cpu(bsb.length)
4233 < info->reshape_progress) {
4234 nonew:
4235 if (verbose)
e7b84f9d 4236 pr_err("backup-metadata found on %s but is not needed\n", devname);
e7a71c6b
N
4237 continue; /* No new data here */
4238 }
4239 } else {
4240 /* reshape_progress is decreasing */
4241 if (__le64_to_cpu(bsb.arraystart) >=
4242 info->reshape_progress)
4243 goto nonew; /* No new data here */
ea0ebe96 4244 }
e9e43ec3 4245 } else {
10af14c4
N
4246 if (bsb.length == 0 && bsb.length2 == 0)
4247 continue;
e7a71c6b
N
4248 if (info->delta_disks >= 0) {
4249 /* reshape_progress is increasing */
4250 if ((__le64_to_cpu(bsb.arraystart)
4251 + __le64_to_cpu(bsb.length)
4252 < info->reshape_progress)
4253 &&
4254 (__le64_to_cpu(bsb.arraystart2)
4255 + __le64_to_cpu(bsb.length2)
4256 < info->reshape_progress))
4257 goto nonew; /* No new data here */
4258 } else {
4259 /* reshape_progress is decreasing */
4260 if (__le64_to_cpu(bsb.arraystart) >=
4261 info->reshape_progress &&
4262 __le64_to_cpu(bsb.arraystart2) >=
4263 info->reshape_progress)
4264 goto nonew; /* No new data here */
4265 }
e9e43ec3 4266 }
ea0ebe96
N
4267 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
4268 second_fail:
4269 if (verbose)
e7b84f9d
N
4270 pr_err("Failed to verify secondary backup-metadata block on %s\n",
4271 devname);
353632d9 4272 continue; /* Cannot seek */
ea0ebe96 4273 }
2efedc7b 4274 /* There should be a duplicate backup superblock 4k before here */
06b0d786 4275 if (lseek64(fd, -4096, 1) < 0 ||
0155af90 4276 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
ea0ebe96 4277 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
4278 if (bsb.magic[15] == '1')
4279 bsbsize = offsetof(struct mdp_backup_super, pad1);
4280 else
4281 bsbsize = offsetof(struct mdp_backup_super, pad);
ff94fb86 4282 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
ea0ebe96 4283 goto second_fail; /* Cannot find leading superblock */
2efedc7b 4284
353632d9 4285 /* Now need the data offsets for all devices. */
503975b9 4286 offsets = xmalloc(sizeof(*offsets)*info->array.raid_disks);
353632d9
NB
4287 for(j=0; j<info->array.raid_disks; j++) {
4288 if (fdlist[j] < 0)
4289 continue;
3da92f27 4290 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
4291 /* FIXME should be this be an error */
4292 continue;
a5d85af7 4293 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27 4294 st->ss->free_super(st);
14e5b4d7 4295 offsets[j] = dinfo.data_offset * 512;
353632d9
NB
4296 }
4297 printf(Name ": restoring critical section\n");
4298
4299 if (restore_stripes(fdlist, offsets,
4300 info->array.raid_disks,
4301 info->new_chunk,
4302 info->new_level,
4303 info->new_layout,
06b0d786 4304 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 4305 __le64_to_cpu(bsb.arraystart)*512,
2fcb75ae 4306 __le64_to_cpu(bsb.length)*512, NULL)) {
e9e43ec3 4307 /* didn't succeed, so giveup */
ea0ebe96 4308 if (verbose)
e7b84f9d 4309 pr_err("Error restoring backup from %s\n",
ea0ebe96 4310 devname);
730ae51f 4311 free(offsets);
e9e43ec3
N
4312 return 1;
4313 }
24daa16f 4314
e9e43ec3
N
4315 if (bsb.magic[15] == '2' &&
4316 restore_stripes(fdlist, offsets,
4317 info->array.raid_disks,
4318 info->new_chunk,
4319 info->new_level,
4320 info->new_layout,
4321 fd, __le64_to_cpu(bsb.devstart)*512 +
4322 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 4323 __le64_to_cpu(bsb.arraystart2)*512,
2fcb75ae 4324 __le64_to_cpu(bsb.length2)*512, NULL)) {
353632d9 4325 /* didn't succeed, so giveup */
ea0ebe96 4326 if (verbose)
e7b84f9d 4327 pr_err("Error restoring second backup from %s\n",
ea0ebe96 4328 devname);
730ae51f 4329 free(offsets);
2295250a 4330 return 1;
353632d9
NB
4331 }
4332
730ae51f 4333 free(offsets);
e9e43ec3 4334
353632d9
NB
4335 /* Ok, so the data is restored. Let's update those superblocks. */
4336
10af14c4
N
4337 lo = hi = 0;
4338 if (bsb.length) {
4339 lo = __le64_to_cpu(bsb.arraystart);
4340 hi = lo + __le64_to_cpu(bsb.length);
4341 }
4342 if (bsb.magic[15] == '2' && bsb.length2) {
4343 unsigned long long lo1, hi1;
4344 lo1 = __le64_to_cpu(bsb.arraystart2);
4345 hi1 = lo1 + __le64_to_cpu(bsb.length2);
4346 if (lo == hi) {
4347 lo = lo1;
4348 hi = hi1;
4349 } else if (lo < lo1)
4350 hi = hi1;
4351 else
4352 lo = lo1;
4353 }
4354 if (lo < hi &&
4355 (info->reshape_progress < lo ||
4356 info->reshape_progress > hi))
4357 /* backup does not affect reshape_progress*/ ;
4358 else if (info->delta_disks >= 0) {
e9e43ec3
N
4359 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
4360 __le64_to_cpu(bsb.length);
4361 if (bsb.magic[15] == '2') {
4362 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
4363 __le64_to_cpu(bsb.length2);
4364 if (p2 > info->reshape_progress)
4365 info->reshape_progress = p2;
4366 }
4367 } else {
4368 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
4369 if (bsb.magic[15] == '2') {
4370 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
4371 if (p2 < info->reshape_progress)
4372 info->reshape_progress = p2;
4373 }
4374 }
353632d9 4375 for (j=0; j<info->array.raid_disks; j++) {
ca3b6696
N
4376 if (fdlist[j] < 0)
4377 continue;
3da92f27 4378 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 4379 continue;
a5d85af7 4380 st->ss->getinfo_super(st, &dinfo, NULL);
e9e43ec3 4381 dinfo.reshape_progress = info->reshape_progress;
3da92f27 4382 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
4383 "_reshape_progress",
4384 NULL,0, 0, NULL);
3da92f27
NB
4385 st->ss->store_super(st, fdlist[j]);
4386 st->ss->free_super(st);
353632d9 4387 }
353632d9
NB
4388 return 0;
4389 }
6e9eac4f
NB
4390 /* Didn't find any backup data, try to see if any
4391 * was needed.
4392 */
82f2d6ab
N
4393 if (info->delta_disks < 0) {
4394 /* When shrinking, the critical section is at the end.
4395 * So see if we are before the critical section.
4396 */
4397 unsigned long long first_block;
4398 nstripe = ostripe = 0;
4399 first_block = 0;
4400 while (ostripe >= nstripe) {
4401 ostripe += info->array.chunk_size / 512;
4402 first_block = ostripe * odata;
4403 nstripe = first_block / ndata / (info->new_chunk/512) *
4404 (info->new_chunk/512);
4405 }
4406
4407 if (info->reshape_progress >= first_block)
4408 return 0;
6e9eac4f 4409 }
82f2d6ab
N
4410 if (info->delta_disks > 0) {
4411 /* See if we are beyond the critical section. */
4412 unsigned long long last_block;
4413 nstripe = ostripe = 0;
4414 last_block = 0;
4415 while (nstripe >= ostripe) {
4416 nstripe += info->new_chunk / 512;
4417 last_block = nstripe * ndata;
4418 ostripe = last_block / odata / (info->array.chunk_size/512) *
4419 (info->array.chunk_size/512);
4420 }
6e9eac4f 4421
82f2d6ab
N
4422 if (info->reshape_progress >= last_block)
4423 return 0;
4424 }
6e9eac4f 4425 /* needed to recover critical section! */
ea0ebe96 4426 if (verbose)
e7b84f9d 4427 pr_err("Failed to find backup of critical section\n");
2295250a 4428 return 1;
353632d9 4429}
e9e43ec3 4430
2dddadb0
AK
4431int Grow_continue_command(char *devname, int fd,
4432 char *backup_file, int verbose)
4433{
4434 int ret_val = 0;
4435 struct supertype *st = NULL;
4436 struct mdinfo *content = NULL;
4437 struct mdinfo array;
4438 char *subarray = NULL;
4439 struct mdinfo *cc = NULL;
4440 struct mdstat_ent *mdstat = NULL;
2dddadb0
AK
4441 int cfd = -1;
4442 int fd2 = -1;
4443
4444 dprintf("Grow continue from command line called for %s\n",
4445 devname);
4446
4447 st = super_by_fd(fd, &subarray);
4448 if (!st || !st->ss) {
e7b84f9d
N
4449 pr_err("Unable to determine metadata format for %s\n",
4450 devname);
2dddadb0
AK
4451 return 1;
4452 }
4453 dprintf("Grow continue is run for ");
4454 if (st->ss->external == 0) {
e0ab37a3 4455 int d;
2dddadb0 4456 dprintf("native array (%s)\n", devname);
e0ab37a3 4457 if (ioctl(fd, GET_ARRAY_INFO, &array.array) < 0) {
e7b84f9d 4458 pr_err("%s is not an active md array -"
2dddadb0
AK
4459 " aborting\n", devname);
4460 ret_val = 1;
4461 goto Grow_continue_command_exit;
4462 }
4463 content = &array;
e0ab37a3
N
4464 /* Need to load a superblock.
4465 * FIXME we should really get what we need from
4466 * sysfs
4467 */
4468 for (d = 0; d < MAX_DISKS; d++) {
4469 mdu_disk_info_t disk;
4470 char *dv;
4471 int err;
4472 disk.number = d;
4473 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
4474 continue;
4475 if (disk.major == 0 && disk.minor == 0)
4476 continue;
4477 if ((disk.state & (1 << MD_DISK_ACTIVE)) == 0)
4478 continue;
4479 dv = map_dev(disk.major, disk.minor, 1);
4480 if (!dv)
4481 continue;
4482 fd2 = dev_open(dv, O_RDONLY);
4483 if (fd2 < 0)
4484 continue;
4485 err = st->ss->load_super(st, fd2, NULL);
4486 close(fd2);
4487 if (err)
4488 continue;
4489 break;
4490 }
4491 if (d == MAX_DISKS) {
4492 pr_err("Unable to load metadata for %s\n",
4493 devname);
4494 ret_val = 1;
4495 goto Grow_continue_command_exit;
4496 }
4497 st->ss->getinfo_super(st, content, NULL);
2dddadb0 4498 } else {
4dd2df09 4499 char *container;
2dddadb0
AK
4500
4501 if (subarray) {
4502 dprintf("subarray (%s)\n", subarray);
4dd2df09
N
4503 container = st->container_devnm;
4504 cfd = open_dev_excl(st->container_devnm);
2dddadb0 4505 } else {
4dd2df09 4506 container = st->devnm;
2dddadb0 4507 close(fd);
4dd2df09
N
4508 cfd = open_dev_excl(st->devnm);
4509 dprintf("container (%s)\n", container);
2dddadb0
AK
4510 fd = cfd;
4511 }
4512 if (cfd < 0) {
e7b84f9d 4513 pr_err("Unable to open container "
2dddadb0
AK
4514 "for %s\n", devname);
4515 ret_val = 1;
4516 goto Grow_continue_command_exit;
4517 }
2dddadb0
AK
4518
4519 /* find in container array under reshape
4520 */
4521 ret_val = st->ss->load_container(st, cfd, NULL);
4522 if (ret_val) {
e7b84f9d
N
4523 pr_err("Cannot read superblock for %s\n",
4524 devname);
2dddadb0
AK
4525 ret_val = 1;
4526 goto Grow_continue_command_exit;
4527 }
4528
446894ea 4529 cc = st->ss->container_content(st, subarray);
2dddadb0
AK
4530 for (content = cc; content ; content = content->next) {
4531 char *array;
446894ea 4532 int allow_reshape = 1;
2dddadb0
AK
4533
4534 if (content->reshape_active == 0)
4535 continue;
81219e70
LM
4536 /* The decision about array or container wide
4537 * reshape is taken in Grow_continue based
4538 * content->reshape_active state, therefore we
4539 * need to check_reshape based on
4540 * reshape_active and subarray name
446894ea
N
4541 */
4542 if (content->array.state & (1<<MD_SB_BLOCK_VOLUME))
4543 allow_reshape = 0;
4544 if (content->reshape_active == CONTAINER_RESHAPE &&
4545 (content->array.state
4546 & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE)))
4547 allow_reshape = 0;
4548
81219e70 4549 if (!allow_reshape) {
e7b84f9d
N
4550 pr_err("cannot continue reshape of an array"
4551 " in container with unsupported"
4552 " metadata: %s(%s)\n",
4dd2df09 4553 devname, container);
81219e70
LM
4554 ret_val = 1;
4555 goto Grow_continue_command_exit;
4556 }
2dddadb0
AK
4557
4558 array = strchr(content->text_version+1, '/')+1;
4dd2df09 4559 mdstat = mdstat_by_subdev(array, container);
2dddadb0
AK
4560 if (!mdstat)
4561 continue;
1ca90aa6 4562 if (mdstat->active == 0) {
4dd2df09
N
4563 pr_err("Skipping inactive array %s.\n",
4564 mdstat->devnm);
1ca90aa6
AK
4565 free_mdstat(mdstat);
4566 mdstat = NULL;
4567 continue;
4568 }
2dddadb0
AK
4569 break;
4570 }
4571 if (!content) {
e7b84f9d
N
4572 pr_err("Unable to determine reshaped "
4573 "array for %s\n", devname);
2dddadb0
AK
4574 ret_val = 1;
4575 goto Grow_continue_command_exit;
4576 }
4dd2df09 4577 fd2 = open_dev(mdstat->devnm);
2dddadb0 4578 if (fd2 < 0) {
4dd2df09 4579 pr_err("cannot open (%s)\n", mdstat->devnm);
2dddadb0
AK
4580 ret_val = 1;
4581 goto Grow_continue_command_exit;
4582 }
4583
4dd2df09 4584 sysfs_init(content, fd2, mdstat->devnm);
2dddadb0
AK
4585
4586 /* start mdmon in case it is not running
4587 */
4dd2df09
N
4588 if (!mdmon_running(container))
4589 start_mdmon(container);
4590 ping_monitor(container);
2dddadb0 4591
4dd2df09 4592 if (mdmon_running(container))
2dddadb0
AK
4593 st->update_tail = &st->updates;
4594 else {
e7b84f9d 4595 pr_err("No mdmon found. "
2dddadb0
AK
4596 "Grow cannot continue.\n");
4597 ret_val = 1;
4598 goto Grow_continue_command_exit;
4599 }
4600 }
4601
f1fe496b
AK
4602 /* verify that array under reshape is started from
4603 * correct position
4604 */
e0ab37a3 4605 if (verify_reshape_position(content, content->array.level) < 0) {
f1fe496b
AK
4606 ret_val = 1;
4607 goto Grow_continue_command_exit;
4608 }
4609
2dddadb0
AK
4610 /* continue reshape
4611 */
4612 ret_val = Grow_continue(fd, st, content, backup_file, 0);
4613
4614Grow_continue_command_exit:
4615 if (fd2 > -1)
4616 close(fd2);
4617 if (cfd > -1)
4618 close(cfd);
4619 st->ss->free_super(st);
4620 free_mdstat(mdstat);
4621 sysfs_free(cc);
4622 free(subarray);
4623
4624 return ret_val;
4625}
4626
e9e43ec3 4627int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
b76b30e0 4628 char *backup_file, int freeze_reshape)
e9e43ec3 4629{
3bd58dc6
AK
4630 int ret_val = 2;
4631
4632 if (!info->reshape_active)
4633 return ret_val;
864a004f 4634
20a40eca 4635 if (st->ss->external) {
4dd2df09 4636 int cfd = open_dev(st->container_devnm);
3db2fdd8 4637
3bd58dc6
AK
4638 if (cfd < 0)
4639 return 1;
f362d22b 4640
4dd2df09 4641 st->ss->load_container(st, cfd, st->container_devnm);
3bd58dc6 4642 close(cfd);
4dd2df09 4643 ret_val = reshape_container(st->container_devnm, NULL, mdfd,
3bd58dc6
AK
4644 st, info, 0, backup_file,
4645 0, 1, freeze_reshape);
4646 } else
4647 ret_val = reshape_array(NULL, mdfd, "array", st, info, 1,
19ceb16d 4648 NULL, 0ULL, backup_file, 0, 0, 1,
3bd58dc6 4649 freeze_reshape);
f362d22b 4650
3bd58dc6 4651 return ret_val;
e9e43ec3 4652}