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