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