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