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