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