]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Correctly initialise backup_point when reshaping backwards.
[thirdparty/mdadm.git] / Grow.c
CommitLineData
e5329c37
NB
1/*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
e736b623 4 * Copyright (C) 2001-2009 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>
e5329c37
NB
27
28#if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
29#error no endian defined
30#endif
31#include "md_u.h"
32#include "md_p.h"
33
e9e43ec3
N
34#ifndef offsetof
35#define offsetof(t,f) ((size_t)&(((t*)0)->f))
36#endif
37
e5329c37
NB
38int Grow_Add_device(char *devname, int fd, char *newdev)
39{
40 /* Add a device to an active array.
41 * Currently, just extend a linear array.
42 * This requires writing a new superblock on the
43 * new device, calling the kernel to add the device,
44 * and if that succeeds, update the superblock on
45 * all other devices.
46 * This means that we need to *find* all other devices.
47 */
4b1ac34b
NB
48 struct mdinfo info;
49
e5329c37
NB
50 struct stat stb;
51 int nfd, fd2;
52 int d, nd;
82d9eba6 53 struct supertype *st = NULL;
4725bc31 54 char *subarray = NULL;
e5329c37 55
4b1ac34b 56 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
57 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
58 return 1;
59 }
60
4725bc31
N
61 if (info.array.level != -1) {
62 fprintf(stderr, Name ": can only add devices to linear arrays\n");
63 return 1;
64 }
65
66 st = super_by_fd(fd, &subarray);
82d9eba6 67 if (!st) {
f9ce90ba
NB
68 fprintf(stderr, Name ": cannot handle arrays with superblock version %d\n", info.array.major_version);
69 return 1;
70 }
71
4725bc31
N
72 if (subarray) {
73 fprintf(stderr, Name ": Cannot grow linear sub-arrays yet\n");
74 free(subarray);
75 free(st);
e5329c37
NB
76 }
77
6416d527 78 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
e5329c37
NB
79 if (nfd < 0) {
80 fprintf(stderr, Name ": cannot open %s\n", newdev);
4725bc31 81 free(st);
e5329c37
NB
82 return 1;
83 }
84 fstat(nfd, &stb);
85 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
86 fprintf(stderr, Name ": %s is not a block device!\n", newdev);
87 close(nfd);
4725bc31 88 free(st);
e5329c37
NB
89 return 1;
90 }
91 /* now check out all the devices and make sure we can read the superblock */
4b1ac34b 92 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
93 mdu_disk_info_t disk;
94 char *dv;
95
4725bc31
N
96 st->ss->free_super(st);
97
e5329c37
NB
98 disk.number = d;
99 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
100 fprintf(stderr, Name ": cannot get device detail for device %d\n",
101 d);
4725bc31
N
102 close(nfd);
103 free(st);
e5329c37
NB
104 return 1;
105 }
16c6fa80 106 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
107 if (!dv) {
108 fprintf(stderr, Name ": cannot find device file for device %d\n",
109 d);
4725bc31
N
110 close(nfd);
111 free(st);
e5329c37
NB
112 return 1;
113 }
16c6fa80 114 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
115 if (!fd2) {
116 fprintf(stderr, Name ": cannot open device file %s\n", dv);
4725bc31
N
117 close(nfd);
118 free(st);
e5329c37
NB
119 return 1;
120 }
3da92f27
NB
121
122 if (st->ss->load_super(st, fd2, NULL)) {
e5329c37 123 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
4725bc31 124 close(nfd);
e5329c37 125 close(fd2);
4725bc31 126 free(st);
e5329c37
NB
127 return 1;
128 }
129 close(fd2);
130 }
131 /* Ok, looks good. Lets update the superblock and write it out to
132 * newdev.
133 */
aba69144 134
4b1ac34b
NB
135 info.disk.number = d;
136 info.disk.major = major(stb.st_rdev);
137 info.disk.minor = minor(stb.st_rdev);
138 info.disk.raid_disk = d;
139 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
3da92f27 140 st->ss->update_super(st, &info, "linear-grow-new", newdev,
f752781f 141 0, 0, NULL);
e5329c37 142
3da92f27 143 if (st->ss->store_super(st, nfd)) {
f752781f
NB
144 fprintf(stderr, Name ": Cannot store new superblock on %s\n",
145 newdev);
e5329c37
NB
146 close(nfd);
147 return 1;
148 }
e5329c37 149 close(nfd);
4b1ac34b
NB
150
151 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
e5329c37
NB
152 fprintf(stderr, Name ": Cannot add new disk to this array\n");
153 return 1;
154 }
155 /* Well, that seems to have worked.
156 * Now go through and update all superblocks
157 */
158
4b1ac34b 159 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
e5329c37
NB
160 fprintf(stderr, Name ": cannot get array info for %s\n", devname);
161 return 1;
162 }
163
164 nd = d;
4b1ac34b 165 for (d=0 ; d < info.array.raid_disks ; d++) {
e5329c37
NB
166 mdu_disk_info_t disk;
167 char *dv;
168
169 disk.number = d;
170 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
171 fprintf(stderr, Name ": cannot get device detail for device %d\n",
172 d);
173 return 1;
174 }
16c6fa80 175 dv = map_dev(disk.major, disk.minor, 1);
e5329c37
NB
176 if (!dv) {
177 fprintf(stderr, Name ": cannot find device file for device %d\n",
178 d);
179 return 1;
180 }
16c6fa80 181 fd2 = dev_open(dv, O_RDWR);
e5329c37
NB
182 if (fd2 < 0) {
183 fprintf(stderr, Name ": cannot open device file %s\n", dv);
184 return 1;
185 }
3da92f27 186 if (st->ss->load_super(st, fd2, NULL)) {
e5329c37
NB
187 fprintf(stderr, Name ": cannot find super block on %s\n", dv);
188 close(fd);
189 return 1;
190 }
4b1ac34b
NB
191 info.array.raid_disks = nd+1;
192 info.array.nr_disks = nd+1;
193 info.array.active_disks = nd+1;
194 info.array.working_disks = nd+1;
f752781f 195
3da92f27 196 st->ss->update_super(st, &info, "linear-grow-update", dv,
f752781f 197 0, 0, NULL);
aba69144 198
3da92f27 199 if (st->ss->store_super(st, fd2)) {
e5329c37
NB
200 fprintf(stderr, Name ": Cannot store new superblock on %s\n", dv);
201 close(fd2);
202 return 1;
203 }
204 close(fd2);
205 }
206
207 return 0;
208}
f5e166fe 209
8fac0577 210int Grow_addbitmap(char *devname, int fd, char *file, int chunk, int delay, int write_behind, int force)
f5e166fe
NB
211{
212 /*
213 * First check that array doesn't have a bitmap
214 * Then create the bitmap
215 * Then add it
216 *
217 * For internal bitmaps, we need to check the version,
218 * find all the active devices, and write the bitmap block
219 * to all devices
220 */
221 mdu_bitmap_file_t bmf;
222 mdu_array_info_t array;
223 struct supertype *st;
4725bc31 224 char *subarray = NULL;
dcec9ee5
NB
225 int major = BITMAP_MAJOR_HI;
226 int vers = md_get_version(fd);
8fac0577 227 unsigned long long bitmapsize, array_size;
dcec9ee5
NB
228
229 if (vers < 9003) {
230 major = BITMAP_MAJOR_HOSTENDIAN;
b3bd581b
N
231 fprintf(stderr, Name ": Warning - bitmaps created on this kernel"
232 " are not portable\n"
233 " between different architectures. Consider upgrading"
234 " the Linux kernel.\n");
dcec9ee5 235 }
f5e166fe
NB
236
237 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
353632d9 238 if (errno == ENOMEM)
f5e166fe
NB
239 fprintf(stderr, Name ": Memory allocation failure.\n");
240 else
241 fprintf(stderr, Name ": bitmaps not supported by this kernel.\n");
242 return 1;
243 }
244 if (bmf.pathname[0]) {
fe80f49b
NB
245 if (strcmp(file,"none")==0) {
246 if (ioctl(fd, SET_BITMAP_FILE, -1)!= 0) {
247 fprintf(stderr, Name ": failed to remove bitmap %s\n",
248 bmf.pathname);
249 return 1;
250 }
251 return 0;
252 }
f5e166fe
NB
253 fprintf(stderr, Name ": %s already has a bitmap (%s)\n",
254 devname, bmf.pathname);
255 return 1;
256 }
257 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
258 fprintf(stderr, Name ": cannot get array status for %s\n", devname);
259 return 1;
260 }
261 if (array.state & (1<<MD_SB_BITMAP_PRESENT)) {
fe80f49b
NB
262 if (strcmp(file, "none")==0) {
263 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
264 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
265 fprintf(stderr, Name ": failed to remove internal bitmap.\n");
266 return 1;
267 }
268 return 0;
269 }
f5e166fe
NB
270 fprintf(stderr, Name ": Internal bitmap already present on %s\n",
271 devname);
272 return 1;
273 }
4725bc31
N
274
275 if (strcmp(file, "none") == 0) {
276 fprintf(stderr, Name ": no bitmap found on %s\n", devname);
277 return 1;
278 }
5b28bd56
NB
279 if (array.level <= 0) {
280 fprintf(stderr, Name ": Bitmaps not meaningful with level %s\n",
281 map_num(pers, array.level)?:"of this array");
282 return 1;
283 }
8fac0577
NB
284 bitmapsize = array.size;
285 bitmapsize <<= 1;
beae1dfe 286 if (get_dev_size(fd, NULL, &array_size) &&
8fac0577
NB
287 array_size > (0x7fffffffULL<<9)) {
288 /* Array is big enough that we cannot trust array.size
289 * try other approaches
290 */
291 bitmapsize = get_component_size(fd);
292 }
8fac0577
NB
293 if (bitmapsize == 0) {
294 fprintf(stderr, Name ": Cannot reliably determine size of array to create bitmap - sorry.\n");
295 return 1;
296 }
297
f9c25f1d 298 if (array.level == 10) {
8686f3ed 299 int ncopies = (array.layout&255)*((array.layout>>8)&255);
f9c25f1d
NB
300 bitmapsize = bitmapsize * array.raid_disks / ncopies;
301 }
302
4725bc31 303 st = super_by_fd(fd, &subarray);
f5e166fe
NB
304 if (!st) {
305 fprintf(stderr, Name ": Cannot understand version %d.%d\n",
306 array.major_version, array.minor_version);
307 return 1;
308 }
4725bc31
N
309 if (subarray) {
310 fprintf(stderr, Name ": Cannot add bitmaps to sub-arrays yet\n");
311 free(subarray);
312 free(st);
fe80f49b 313 return 1;
4725bc31
N
314 }
315 if (strcmp(file, "internal") == 0) {
f5e166fe 316 int d;
ebeb3663
N
317 if (st->ss->add_internal_bitmap == NULL) {
318 fprintf(stderr, Name ": Internal bitmaps not supported "
319 "with %s metadata\n", st->ss->name);
320 return 1;
321 }
ea329559 322 for (d=0; d< st->max_devs; d++) {
f5e166fe
NB
323 mdu_disk_info_t disk;
324 char *dv;
325 disk.number = d;
326 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
327 continue;
328 if (disk.major == 0 &&
329 disk.minor == 0)
330 continue;
331 if ((disk.state & (1<<MD_DISK_SYNC))==0)
332 continue;
16c6fa80 333 dv = map_dev(disk.major, disk.minor, 1);
f5e166fe 334 if (dv) {
16c6fa80 335 int fd2 = dev_open(dv, O_RDWR);
f5e166fe
NB
336 if (fd2 < 0)
337 continue;
3da92f27 338 if (st->ss->load_super(st, fd2, NULL)==0) {
199171a2 339 if (st->ss->add_internal_bitmap(
3da92f27 340 st,
199171a2
NB
341 &chunk, delay, write_behind,
342 bitmapsize, 0, major)
343 )
3da92f27 344 st->ss->write_bitmap(st, fd2);
21e92547
NB
345 else {
346 fprintf(stderr, Name ": failed to create internal bitmap - chunksize problem.\n");
347 close(fd2);
348 return 1;
349 }
f5e166fe
NB
350 }
351 close(fd2);
352 }
353 }
354 array.state |= (1<<MD_SB_BITMAP_PRESENT);
355 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
ff634064
N
356 if (errno == EBUSY)
357 fprintf(stderr, Name
358 ": Cannot add bitmap while array is"
359 " resyncing or reshaping etc.\n");
f5e166fe
NB
360 fprintf(stderr, Name ": failed to set internal bitmap.\n");
361 return 1;
362 }
fe80f49b
NB
363 } else {
364 int uuid[4];
365 int bitmap_fd;
366 int d;
367 int max_devs = st->max_devs;
fe80f49b
NB
368
369 /* try to load a superblock */
370 for (d=0; d<max_devs; d++) {
371 mdu_disk_info_t disk;
372 char *dv;
373 int fd2;
374 disk.number = d;
375 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
376 continue;
377 if ((disk.major==0 && disk.minor==0) ||
378 (disk.state & (1<<MD_DISK_REMOVED)))
379 continue;
16c6fa80 380 dv = map_dev(disk.major, disk.minor, 1);
fe80f49b 381 if (!dv) continue;
16c6fa80 382 fd2 = dev_open(dv, O_RDONLY);
fe80f49b 383 if (fd2 >= 0 &&
3da92f27 384 st->ss->load_super(st, fd2, NULL) == 0) {
fe80f49b 385 close(fd2);
3da92f27 386 st->ss->uuid_from_super(st, uuid);
fe80f49b
NB
387 break;
388 }
389 close(fd2);
390 }
391 if (d == max_devs) {
392 fprintf(stderr, Name ": cannot find UUID for array!\n");
393 return 1;
394 }
8fac0577 395 if (CreateBitmap(file, force, (char*)uuid, chunk,
f9c25f1d 396 delay, write_behind, bitmapsize, major)) {
fe80f49b
NB
397 return 1;
398 }
399 bitmap_fd = open(file, O_RDWR);
400 if (bitmap_fd < 0) {
8fac0577 401 fprintf(stderr, Name ": weird: %s cannot be opened\n",
fe80f49b
NB
402 file);
403 return 1;
404 }
405 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
ff634064
N
406 int err = errno;
407 if (errno == EBUSY)
408 fprintf(stderr, Name
409 ": Cannot add bitmap while array is"
410 " resyncing or reshaping etc.\n");
fe80f49b 411 fprintf(stderr, Name ": Cannot set bitmap file for %s: %s\n",
ff634064 412 devname, strerror(err));
fe80f49b
NB
413 return 1;
414 }
415 }
f5e166fe
NB
416
417 return 0;
418}
419
e86c9dd6
NB
420
421/*
422 * When reshaping an array we might need to backup some data.
423 * This is written to all spares with a 'super_block' describing it.
ff94fb86 424 * The superblock goes 4K from the end of the used space on the
e86c9dd6
NB
425 * device.
426 * It if written after the backup is complete.
427 * It has the following structure.
428 */
429
5fdf37e3 430static struct mdp_backup_super {
7236ee7a 431 char magic[16]; /* md_backup_data-1 or -2 */
e86c9dd6
NB
432 __u8 set_uuid[16];
433 __u64 mtime;
434 /* start/sizes in 512byte sectors */
7236ee7a 435 __u64 devstart; /* address on backup device/file of data */
e86c9dd6
NB
436 __u64 arraystart;
437 __u64 length;
438 __u32 sb_csum; /* csum of preceeding bytes. */
7236ee7a
N
439 __u32 pad1;
440 __u64 devstart2; /* offset in to data of second section */
441 __u64 arraystart2;
442 __u64 length2;
443 __u32 sb_csum2; /* csum of preceeding bytes. */
444 __u8 pad[512-68-32];
5fdf37e3 445} __attribute__((aligned(512))) bsb, bsb2;
e86c9dd6 446
4411fb17 447static __u32 bsb_csum(char *buf, int len)
e86c9dd6
NB
448{
449 int i;
450 int csum = 0;
451 for (i=0; i<len; i++)
452 csum = (csum<<3) + buf[0];
453 return __cpu_to_le32(csum);
454}
455
d7ca196c
N
456static int check_idle(struct supertype *st)
457{
458 /* Check that all member arrays for this container, or the
459 * container of this array, are idle
460 */
461 int container_dev = (st->container_dev != NoMdDev
462 ? st->container_dev : st->devnum);
463 char container[40];
464 struct mdstat_ent *ent, *e;
465 int is_idle = 1;
466
467 fmt_devname(container, container_dev);
468 ent = mdstat_read(0, 0);
469 for (e = ent ; e; e = e->next) {
470 if (!is_container_member(e, container))
471 continue;
472 if (e->percent >= 0) {
473 is_idle = 0;
474 break;
475 }
476 }
477 free_mdstat(ent);
478 return is_idle;
479}
480
7f2ba464 481static int freeze_container(struct supertype *st)
7236ee7a 482{
7f2ba464
DW
483 int container_dev = (st->container_dev != NoMdDev
484 ? st->container_dev : st->devnum);
d7ca196c 485 char container[40];
7f2ba464 486
d7ca196c
N
487 if (!check_idle(st))
488 return -1;
489
490 fmt_devname(container, container_dev);
7f2ba464
DW
491
492 if (block_monitor(container, 1)) {
493 fprintf(stderr, Name ": failed to freeze container\n");
494 return -2;
495 }
496
497 return 1;
498}
499
500static void unfreeze_container(struct supertype *st)
501{
502 int container_dev = (st->container_dev != NoMdDev
503 ? st->container_dev : st->devnum);
d7ca196c
N
504 char container[40];
505
506 fmt_devname(container, container_dev);
7f2ba464
DW
507
508 unblock_monitor(container, 1);
509}
510
511static int freeze(struct supertype *st)
512{
513 /* Try to freeze resync/rebuild on this array/container.
7236ee7a 514 * Return -1 if the array is busy,
7f2ba464 515 * return -2 container cannot be frozen,
7236ee7a
N
516 * return 0 if this kernel doesn't support 'frozen'
517 * return 1 if it worked.
518 */
7f2ba464
DW
519 if (st->ss->external)
520 return freeze_container(st);
521 else {
522 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
523 int err;
524
525 if (!sra)
526 return -1;
527 err = sysfs_freeze_array(sra);
528 sysfs_free(sra);
529 return err;
530 }
7236ee7a
N
531}
532
9202b8eb 533static void unfreeze(struct supertype *st)
7236ee7a 534{
7f2ba464
DW
535 if (st->ss->external)
536 return unfreeze_container(st);
537 else {
538 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
539
540 if (sra)
541 sysfs_set_str(sra, NULL, "sync_action", "idle");
542 else
543 fprintf(stderr, Name ": failed to unfreeze array\n");
544 sysfs_free(sra);
545 }
7236ee7a
N
546}
547
4411fb17 548static void wait_reshape(struct mdinfo *sra)
7236ee7a
N
549{
550 int fd = sysfs_get_fd(sra, NULL, "sync_action");
551 char action[20];
552
92a19f1a
AK
553 if (fd < 0)
554 return;
555
556 while (sysfs_fd_get_str(fd, action, 20) > 0 &&
557 strncmp(action, "reshape", 7) == 0) {
7236ee7a
N
558 fd_set rfds;
559 FD_ZERO(&rfds);
560 FD_SET(fd, &rfds);
561 select(fd+1, NULL, NULL, &rfds, NULL);
92a19f1a
AK
562 }
563 close(fd);
7236ee7a 564}
7bc71196
DW
565
566static int reshape_super(struct supertype *st, long long size, int level,
567 int layout, int chunksize, int raid_disks,
568 char *backup_file, char *dev, int verbose)
569{
570 /* nothing extra to check in the native case */
571 if (!st->ss->external)
572 return 0;
573 if (!st->ss->reshape_super ||
574 !st->ss->manage_reshape) {
575 fprintf(stderr, Name ": %s metadata does not support reshape\n",
576 st->ss->name);
577 return 1;
578 }
579
580 return st->ss->reshape_super(st, size, level, layout, chunksize,
581 raid_disks, backup_file, dev, verbose);
582}
583
584static void sync_metadata(struct supertype *st)
585{
586 if (st->ss->external) {
76266030 587 if (st->update_tail) {
7bc71196 588 flush_metadata_updates(st);
76266030
N
589 st->update_tail = &st->updates;
590 } else
7bc71196
DW
591 st->ss->sync_metadata(st);
592 }
593}
594
595static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
596{
597 /* when dealing with external metadata subarrays we need to be
598 * prepared to handle EAGAIN. The kernel may need to wait for
599 * mdmon to mark the array active so the kernel can handle
600 * allocations/writeback when preparing the reshape action
601 * (md_allow_write()). We temporarily disable safe_mode_delay
602 * to close a race with the array_state going clean before the
603 * next write to raid_disks / stripe_cache_size
604 */
605 char safe[50];
606 int rc;
607
608 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
5da9ab98
N
609 if (!container ||
610 (strcmp(name, "raid_disks") != 0 &&
611 strcmp(name, "stripe_cache_size") != 0))
7bc71196
DW
612 return sysfs_set_num(sra, NULL, name, n);
613
614 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
615 if (rc <= 0)
616 return -1;
617 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
618 rc = sysfs_set_num(sra, NULL, name, n);
619 if (rc < 0 && errno == EAGAIN) {
620 ping_monitor(container);
621 /* if we get EAGAIN here then the monitor is not active
622 * so stop trying
623 */
624 rc = sysfs_set_num(sra, NULL, name, n);
625 }
626 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
627 return rc;
628}
629
47eb4d5a
N
630int start_reshape(struct mdinfo *sra)
631{
632 int err;
0f28668b 633 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
47eb4d5a
N
634 err = sysfs_set_num(sra, NULL, "suspend_hi", 0);
635 err = err ?: sysfs_set_num(sra, NULL, "suspend_lo", 0);
18eaf9e5
N
636 /* Setting sync_min can fail if the recovery is already 'running',
637 * which can happen when restarting an array which is reshaping.
638 * So don't worry about errors here */
639 sysfs_set_num(sra, NULL, "sync_min", 0);
47eb4d5a
N
640 err = err ?: sysfs_set_num(sra, NULL, "sync_max", 0);
641 err = err ?: sysfs_set_str(sra, NULL, "sync_action", "reshape");
642
643 return err;
644}
645
646void abort_reshape(struct mdinfo *sra)
647{
648 sysfs_set_str(sra, NULL, "sync_action", "idle");
649 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
650 sysfs_set_num(sra, NULL, "suspend_hi", 0);
651 sysfs_set_num(sra, NULL, "suspend_lo", 0);
652 sysfs_set_num(sra, NULL, "sync_min", 0);
653 sysfs_set_str(sra, NULL, "sync_max", "max");
654}
655
62a48395
AK
656int remove_disks_on_raid10_to_raid0_takeover(struct supertype *st,
657 struct mdinfo *sra,
658 int layout)
659{
660 int nr_of_copies;
661 struct mdinfo *remaining;
662 int slot;
663
664 nr_of_copies = layout & 0xff;
665
666 remaining = sra->devs;
667 sra->devs = NULL;
668 /* for each 'copy', select one device and remove from the list. */
669 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
670 struct mdinfo **diskp;
671 int found = 0;
672
673 /* Find a working device to keep */
674 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
675 struct mdinfo *disk = *diskp;
676
677 if (disk->disk.raid_disk < slot)
678 continue;
679 if (disk->disk.raid_disk >= slot + nr_of_copies)
680 continue;
681 if (disk->disk.state & (1<<MD_DISK_REMOVED))
682 continue;
683 if (disk->disk.state & (1<<MD_DISK_FAULTY))
684 continue;
685 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
686 continue;
687
688 /* We have found a good disk to use! */
689 *diskp = disk->next;
690 disk->next = sra->devs;
691 sra->devs = disk;
692 found = 1;
693 break;
694 }
695 if (!found)
696 break;
697 }
698
699 if (slot < sra->array.raid_disks) {
700 /* didn't find all slots */
701 struct mdinfo **e;
702 e = &remaining;
703 while (*e)
704 e = &(*e)->next;
705 *e = sra->devs;
706 sra->devs = remaining;
707 return 1;
708 }
709
710 /* Remove all 'remaining' devices from the array */
711 while (remaining) {
712 struct mdinfo *sd = remaining;
713 remaining = sd->next;
714
715 sysfs_set_str(sra, sd, "state", "faulty");
716 sysfs_set_str(sra, sd, "slot", "none");
717 sysfs_set_str(sra, sd, "state", "remove");
718 sd->disk.state |= (1<<MD_DISK_REMOVED);
719 sd->disk.state &= ~(1<<MD_DISK_SYNC);
720 sd->next = sra->devs;
721 sra->devs = sd;
722 }
723 return 0;
724}
725
130994cb
AK
726void reshape_free_fdlist(int *fdlist,
727 unsigned long long *offsets,
728 int size)
729{
730 int i;
731
732 for (i = 0; i < size; i++)
733 if (fdlist[i] >= 0)
734 close(fdlist[i]);
735
736 free(fdlist);
737 free(offsets);
738}
739
740int reshape_prepare_fdlist(char *devname,
741 struct mdinfo *sra,
742 int raid_disks,
743 int nrdisks,
744 unsigned long blocks,
745 char *backup_file,
746 int *fdlist,
747 unsigned long long *offsets)
748{
749 int d = 0;
750 struct mdinfo *sd;
751
752 for (d = 0; d <= nrdisks; d++)
753 fdlist[d] = -1;
754 d = raid_disks;
755 for (sd = sra->devs; sd; sd = sd->next) {
756 if (sd->disk.state & (1<<MD_DISK_FAULTY))
757 continue;
758 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
759 char *dn = map_dev(sd->disk.major,
760 sd->disk.minor, 1);
761 fdlist[sd->disk.raid_disk]
762 = dev_open(dn, O_RDONLY);
763 offsets[sd->disk.raid_disk] = sd->data_offset*512;
764 if (fdlist[sd->disk.raid_disk] < 0) {
765 fprintf(stderr,
766 Name ": %s: cannot open component %s\n",
767 devname, dn ? dn : "-unknown-");
768 d = -1;
769 goto release;
770 }
771 } else if (backup_file == NULL) {
772 /* spare */
773 char *dn = map_dev(sd->disk.major,
774 sd->disk.minor, 1);
775 fdlist[d] = dev_open(dn, O_RDWR);
776 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
777 if (fdlist[d] < 0) {
778 fprintf(stderr, Name ": %s: cannot open component %s\n",
779 devname, dn ? dn : "-unknown-");
780 d = -1;
781 goto release;
782 }
783 d++;
784 }
785 }
786release:
787 return d;
788}
789
e6e9d47b
AK
790int reshape_open_backup_file(char *backup_file,
791 int fd,
792 char *devname,
793 long blocks,
794 int *fdlist,
a93f87ee
N
795 unsigned long long *offsets,
796 int restart)
e6e9d47b
AK
797{
798 /* Return 1 on success, 0 on any form of failure */
799 /* need to check backup file is large enough */
800 char buf[512];
801 struct stat stb;
802 unsigned int dev;
803 int i;
804
a93f87ee 805 *fdlist = open(backup_file, O_RDWR|O_CREAT|(restart ? O_TRUNC : O_EXCL),
e6e9d47b
AK
806 S_IRUSR | S_IWUSR);
807 *offsets = 8 * 512;
808 if (*fdlist < 0) {
809 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
810 devname, backup_file, strerror(errno));
811 return 0;
812 }
813 /* Guard against backup file being on array device.
814 * If array is partitioned or if LVM etc is in the
815 * way this will not notice, but it is better than
816 * nothing.
817 */
818 fstat(*fdlist, &stb);
819 dev = stb.st_dev;
820 fstat(fd, &stb);
821 if (stb.st_rdev == dev) {
822 fprintf(stderr, Name ": backup file must NOT be"
823 " on the array being reshaped.\n");
824 close(*fdlist);
825 return 0;
826 }
827
828 memset(buf, 0, 512);
829 for (i=0; i < blocks + 1 ; i++) {
830 if (write(*fdlist, buf, 512) != 512) {
831 fprintf(stderr, Name ": %s: cannot create"
832 " backup file %s: %s\n",
833 devname, backup_file, strerror(errno));
834 return 0;
835 }
836 }
837 if (fsync(*fdlist) != 0) {
838 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
839 devname, backup_file, strerror(errno));
840 return 0;
841 }
842
843 return 1;
844}
845
1c009fc2
AK
846unsigned long compute_backup_blocks(int nchunk, int ochunk,
847 unsigned int ndata, unsigned int odata)
848{
849 unsigned long a, b, blocks;
850 /* So how much do we need to backup.
851 * We need an amount of data which is both a whole number of
852 * old stripes and a whole number of new stripes.
853 * So LCM for (chunksize*datadisks).
854 */
855 a = (ochunk/512) * odata;
856 b = (nchunk/512) * ndata;
857 /* Find GCD */
858 while (a != b) {
859 if (a < b)
860 b -= a;
861 if (b < a)
862 a -= b;
863 }
864 /* LCM == product / GCD */
865 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
866
867 return blocks;
868}
869
5da9ab98
N
870char *analyse_change(struct mdinfo *info, struct reshape *re)
871{
872 /* Based on the current array state in info->array and
873 * the changes in info->new_* etc, determine:
874 * - whether the change is possible
875 * - Intermediate level/raid_disks/layout
876 * - whether a restriping reshape is needed
877 * - number of sectors in minimum change unit. This
878 * will cover a whole number of stripes in 'before' and
879 * 'after'.
880 *
881 * Return message if the change should be rejected
882 * NULL if the change can be achieved
883 *
884 * This can be called as part of starting a reshape, or
885 * when assembling an array that is undergoing reshape.
886 */
887 int new_disks;
888
889 /* If a new level not explicitly given, we assume no-change */
890 if (info->new_level == UnSet)
891 info->new_level = info->array.level;
892
893 if (info->new_chunk)
894 switch (info->new_level) {
895 case 0:
896 case 4:
897 case 5:
898 case 6:
899 case 10:
900 /* chunk size is meaningful, must divide component_size
901 * evenly
902 */
903 if (info->component_size % (info->new_chunk/512))
904 return "New chunk size does not"
905 " divide component size";
906 break;
907 default:
908 return "chunk size not meaningful for this level";
909 }
910 else
911 info->new_chunk = info->array.chunk_size;
912
913 switch (info->array.level) {
914 case 1:
915 /* RAID1 can convert to RAID1 with different disks, or
916 * raid5 with 2 disks
917 */
918 if (info->new_level == 1) {
919 if (info->delta_disks == UnSet)
920 /* Don't know what to do */
921 return "no change requested for Growing RAID1";
922 re->level = 1;
923 re->before.data_disks = (info->array.raid_disks +
924 info->delta_disks);
925 re->before.layout = 0;
b4f8e38b 926 re->backup_blocks = 0;
5da9ab98
N
927 re->parity = 0;
928 return NULL;
929 }
930 if (info->array.raid_disks == 2 &&
931 info->array.raid_disks == 5) {
932 /* simple in-place conversion */
933 re->level = 5;
934 re->parity = 1;
935 re->before.data_disks = 1;
936 re->before.layout = ALGORITHM_LEFT_SYMMETRIC;
b4f8e38b 937 re->backup_blocks = 0;
5da9ab98
N
938 return NULL;
939 }
940 /* Could do some multi-stage conversions, but leave that to
941 * later.
942 */
943 return "Impossibly level change request for RAID1";
944
945 case 10:
946 /* RAID10 can only be converted from near mode to
947 * RAID0 by removing some devices
948 */
949 if ((info->array.layout & ~0xff) != 0x100)
950 return "Cannot Grow RAID10 with far/offset layout";
951 /* number of devices must be multiple of number of copies */
952 if (info->array.raid_disks % (info->array.layout & 0xff))
953 return "RAID10 layout too complex for Grow operation";
954
955 if (info->new_level != 0)
956 return "RAID10 can only be changed to RAID0";
957 new_disks = (info->array.raid_disks
958 / (info->array.layout & 0xff));
5dad078d 959 if (info->delta_disks == UnSet) {
5da9ab98
N
960 info->delta_disks = (new_disks
961 - info->array.raid_disks);
962 }
963 if (info->delta_disks != new_disks - info->array.raid_disks)
964 return "New number of raid-devices impossible for RAID10";
965 if (info->new_chunk &&
966 info->new_chunk != info->array.chunk_size)
967 return "Cannot change chunk-size with RAID10 Grow";
968
969 /* looks good */
970 re->level = 0;
971 re->parity = 0;
972 re->before.data_disks = new_disks;
031d445c 973 re->after.data_disks = re->before.data_disks;
5da9ab98 974 re->before.layout = 0;
b4f8e38b 975 re->backup_blocks = 0;
5da9ab98
N
976 return NULL;
977
978 case 0:
979 /* RAID0 can be converted to RAID10, or to RAID456 */
980 if (info->new_level == 10) {
981 if (info->new_layout == UnSet && info->delta_disks == UnSet) {
982 /* Assume near=2 layout */
983 info->new_layout = 0x102;
984 info->delta_disks = info->array.raid_disks;
985 }
986 if (info->new_layout == UnSet) {
987 int copies = 1 + (info->delta_disks
988 / info->array.raid_disks);
989 if (info->array.raid_disks * (copies-1)
990 != info->delta_disks)
991 return "Impossible number of devices"
992 " for RAID0->RAID10";
993 info->new_layout = 0x100 + copies;
994 }
995 if (info->delta_disks == UnSet) {
996 int copies = info->new_layout & 0xff;
997 if (info->new_layout != 0x100 + copies)
998 return "New layout impossible"
999 " for RAID0->RAID10";;
1000 info->delta_disks = (copies - 1) *
1001 info->array.raid_disks;
1002 }
1003 if (info->new_chunk &&
1004 info->new_chunk != info->array.chunk_size)
1005 return "Cannot change chunk-size with RAID0->RAID10";
1006 /* looks good */
1007 re->level = 10;
1008 re->parity = 0;
1009 re->before.data_disks = (info->array.raid_disks +
1010 info->delta_disks);
031d445c 1011 re->after.data_disks = re->before.data_disks;
5da9ab98 1012 re->before.layout = info->new_layout;
b4f8e38b 1013 re->backup_blocks = 0;
5da9ab98
N
1014 return NULL;
1015 }
1016
1017 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1018 * a raid4 style layout of the final level.
1019 */
1020 switch (info->new_level) {
1021 case 0:
1022 case 4:
1023 re->level = 4;
1024 re->before.layout = 0;
1025 break;
1026 case 5:
1027 re->level = 5;
1028 re->before.layout = ALGORITHM_PARITY_N;
1029 break;
1030 case 6:
1031 re->level = 6;
1032 re->before.layout = ALGORITHM_PARITY_N;
1033 break;
1034 default:
1035 return "Impossible level change requested";
1036 }
1037 re->before.data_disks = info->array.raid_disks;
1038 /* determining 'after' layout happens outside this 'switch' */
1039 break;
1040
1041 case 4:
1042 info->array.layout = ALGORITHM_PARITY_N;
1043 case 5:
1044 switch (info->new_level) {
1045 case 4:
1046 re->level = info->array.level;
1047 re->before.data_disks = info->array.raid_disks - 1;
1048 re->before.layout = info->array.layout;
1049 break;
1050 case 5:
1051 re->level = 5;
1052 re->before.data_disks = info->array.raid_disks - 1;
1053 re->before.layout = info->array.layout;
1054 break;
1055 case 6:
1056 re->level = 6;
1057 re->before.data_disks = info->array.raid_disks - 1;
1058 switch (info->array.layout) {
1059 case ALGORITHM_LEFT_ASYMMETRIC:
1060 re->before.layout = ALGORITHM_LEFT_ASYMMETRIC_6;
1061 break;
1062 case ALGORITHM_RIGHT_ASYMMETRIC:
1063 re->before.layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
1064 break;
1065 case ALGORITHM_LEFT_SYMMETRIC:
1066 re->before.layout = ALGORITHM_LEFT_SYMMETRIC_6;
1067 break;
1068 case ALGORITHM_RIGHT_SYMMETRIC:
1069 re->before.layout = ALGORITHM_RIGHT_SYMMETRIC_6;
1070 break;
1071 case ALGORITHM_PARITY_0:
1072 re->before.layout = ALGORITHM_PARITY_0_6;
1073 break;
1074 case ALGORITHM_PARITY_N:
1075 re->before.layout = ALGORITHM_PARITY_N_6;
1076 break;
1077 default:
1078 return "Cannot convert an array with this layout";
1079 }
1080 break;
1081 case 1:
1082 if (info->array.raid_disks != 2)
1083 return "Can only convert a 2-device array to RAID1";
1084 re->level = 1;
1085 re->before.data_disks = 2;
1086 re->before.layout = 0;
1087 break;
1088 default:
1089 return "Impossible level change requested";
1090 }
1091 break;
1092 case 6:
1093 switch (info->new_level) {
1094 case 4:
1095 case 5:
1096 case 6:
1097 re->level = 6;
1098 re->before.data_disks = info->array.raid_disks - 2;
1099 re->before.layout = info->array.layout;
1100 break;
1101 default:
1102 return "Impossible level change requested";
1103 }
1104 break;
1105 }
1106
1107 /* If we reached here then it looks like a re-stripe is
1108 * happening. We have determined the intermediate level
1109 * and initial raid_disks/layout and stored these in 're'.
1110 *
1111 * We need to deduce the final layout that can be atomically
1112 * converted to the end state.
1113 */
1114 switch (info->new_level) {
1115 case 0:
1116 /* We can only get to RAID0 from RAID4 or RAID5
1117 * with appropriate layout and one extra device
1118 */
1119 if (re->level != 4 && re->level != 5)
1120 return "Cannot covert to RAID0 from this level";
1121 if (info->delta_disks == UnSet)
1122 re->after.data_disks = re->before.data_disks;
1123 else
1124 re->after.data_disks =
1125 info->array.raid_disks + info->delta_disks;
1126 switch (re->level) {
1127 case 4:
1128 re->after.layout = 0 ; break;
1129 case 5:
1130 re->after.layout = ALGORITHM_PARITY_N; break;
1131 }
1132 break;
1133
1134 case 4:
1135 /* We can only get to RAID4 from RAID5 */
1136 if (re->level != 4 && re->level != 5)
1137 return "Cannot convert to RAID4 from this level";
1138 if (info->delta_disks == UnSet)
1139 re->after.data_disks = re->before.data_disks;
1140 else
1141 re->after.data_disks =
1142 re->before.data_disks + info->delta_disks;
1143 switch (re->level) {
1144 case 4:
1145 re->after.layout = 0 ; break;
1146 case 5:
1147 re->after.layout = ALGORITHM_PARITY_N; break;
1148 }
1149 break;
1150
1151 case 5:
1152 /* We get to RAID5 for RAID5 or RAID6 */
1153 if (re->level != 5 && re->level != 6)
1154 return "Cannot convert to RAID5 from this level";
1155 if (info->delta_disks == UnSet)
1156 re->after.data_disks = re->before.data_disks;
1157 else if (re->level == 5)
1158 re->after.data_disks =
1159 re->before.data_disks + info->delta_disks;
1160 else
1161 re->after.data_disks =
1162 info->array.raid_disks + info->delta_disks - 1;
1163 switch (re->level) {
1164 case 5:
1165 if (info->new_layout == UnSet)
1166 re->after.layout = re->before.layout;
1167 else
1168 re->after.layout = info->new_layout;
1169 break;
1170 case 6:
4a870364
N
1171 if (info->new_layout == UnSet)
1172 info->new_layout = re->before.layout;
1173
5da9ab98
N
1174 /* after.layout needs to be raid6 version of new_layout */
1175 if (info->new_layout == ALGORITHM_PARITY_N)
1176 re->after.layout = ALGORITHM_PARITY_N;
1177 else {
1178 char layout[40];
1179 char *ls = map_num(r5layout, info->new_layout);
1180 int l;
1181 strcat(strcpy(layout, ls), "-6");
1182 l = map_name(r6layout, layout);
1183 if (l == UnSet)
1184 return "Cannot find RAID6 layout"
1185 " to convert to";
1186 re->after.layout = l;
1187 }
1188 }
1189 break;
1190
1191 case 6:
1192 /* We must already be at level 6 */
1193 if (re->level != 6)
1194 return "Impossible level change";
1195 if (info->delta_disks == UnSet)
1196 re->after.data_disks = re->before.data_disks;
1197 else
1198 re->after.data_disks = (info->array.raid_disks +
1199 info->delta_disks) - 2;
1200 if (info->new_layout == UnSet)
4a870364 1201 re->after.layout = info->array.layout;
5da9ab98
N
1202 else
1203 re->after.layout = info->new_layout;
1204 break;
1205 default:
1206 return "Impossible level change requested";
1207 }
1208 switch (re->level) {
1209 case 6: re->parity = 2; break;
1210 case 4:
1211 case 5: re->parity = 1; break;
1212 default: re->parity = 0; break;
1213 }
1214 /* So we have a restripe operation, we need to calculate the number
1215 * of blocks per reshape operation.
1216 */
1217 if (info->new_chunk == 0)
1218 info->new_chunk = info->array.chunk_size;
1219 if (re->after.data_disks == re->before.data_disks &&
1220 re->after.layout == re->before.layout &&
1221 info->new_chunk == info->array.chunk_size) {
1222 /* Nothing to change */
b4f8e38b 1223 re->backup_blocks = 0;
5da9ab98
N
1224 return NULL;
1225 }
1226 if (re->after.data_disks == 1 && re->before.data_disks == 1) {
1227 /* chunks can layout changes make no difference */
b4f8e38b 1228 re->backup_blocks = 0;
5da9ab98
N
1229 return NULL;
1230 }
1231
1232 if (re->after.data_disks == re->before.data_disks &&
1233 get_linux_version() < 2006032)
1234 return "in-place reshape is not safe before 2.6.32 - sorry.";
1235
1236 if (re->after.data_disks < re->before.data_disks &&
1237 get_linux_version() < 2006030)
1238 return "reshape to fewer devices is not supported before 2.6.32 - sorry.";
1239
b4f8e38b 1240 re->backup_blocks = compute_backup_blocks(
5da9ab98
N
1241 info->new_chunk, info->array.chunk_size,
1242 re->after.data_disks,
1243 re->before.data_disks);
1244
1245 re->new_size = info->component_size * re->after.data_disks;
1246 return NULL;
1247}
1248
1249static int reshape_array(char *container, int fd, char *devname,
1250 struct supertype *st, struct mdinfo *info,
a93f87ee
N
1251 int force, char *backup_file, int quiet, int forked,
1252 int restart);
5da9ab98
N
1253static int reshape_container(char *container, int cfd, char *devname,
1254 struct supertype *st,
1255 struct mdinfo *info,
1256 int force,
1257 char *backup_file,
1258 int quiet);
1c009fc2 1259
06b0d786 1260int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
e86c9dd6 1261 long long size,
691a36b7
N
1262 int level, char *layout_str, int chunksize, int raid_disks,
1263 int force)
e86c9dd6
NB
1264{
1265 /* Make some changes in the shape of an array.
1266 * The kernel must support the change.
7236ee7a
N
1267 *
1268 * There are three different changes. Each can trigger
1269 * a resync or recovery so we freeze that until we have
1270 * requested everything (if kernel supports freezing - 2.6.30).
1271 * The steps are:
1272 * - change size (i.e. component_size)
1273 * - change level
1274 * - change layout/chunksize/ndisks
1275 *
1276 * The last can require a reshape. It is different on different
1277 * levels so we need to check the level before actioning it.
1278 * Some times the level change needs to be requested after the
1279 * reshape (e.g. raid6->raid5, raid5->raid0)
1280 *
e86c9dd6 1281 */
5da9ab98 1282 struct mdu_array_info_s array;
7236ee7a 1283 int rv = 0;
e86c9dd6 1284 struct supertype *st;
4725bc31 1285 char *subarray = NULL;
e86c9dd6 1286
7236ee7a 1287 int frozen;
7236ee7a 1288 int changed = 0;
7bc71196 1289 char *container = NULL;
5da9ab98 1290 char container_buf[20];
7bc71196 1291 int cfd = -1;
e86c9dd6 1292
5da9ab98 1293 struct mdinfo info;
7e0f6979 1294 struct mdinfo *sra;
e86c9dd6
NB
1295
1296 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1297 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
1298 devname);
1299 return 1;
1300 }
24d40069 1301
9ce510be
N
1302 if (size >= 0 &&
1303 (chunksize || level!= UnSet || layout_str || raid_disks)) {
1304 fprintf(stderr, Name ": cannot change component size at the same time "
1305 "as other changes.\n"
1306 " Change size first, then check data is intact before "
1307 "making other changes.\n");
1308 return 1;
1309 }
1310
24d40069
N
1311 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
1312 get_linux_version() < 2006032 &&
1313 !check_env("MDADM_FORCE_FEWER")) {
1314 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
1315 " Please use a newer kernel\n");
1316 return 1;
1317 }
7bc71196
DW
1318
1319 st = super_by_fd(fd, &subarray);
1320 if (!st) {
1321 fprintf(stderr, Name ": Unable to determine metadata format for %s\n", devname);
1322 return 1;
1323 }
acab7bb1
N
1324 if (raid_disks > st->max_devs) {
1325 fprintf(stderr, Name ": Cannot increase raid-disks on this array"
1326 " beyond %d\n", st->max_devs);
1327 return 1;
1328 }
7bc71196
DW
1329
1330 /* in the external case we need to check that the requested reshape is
1331 * supported, and perform an initial check that the container holds the
1332 * pre-requisite spare devices (mdmon owns final validation)
1333 */
1334 if (st->ss->external) {
1335 int container_dev;
7f2ba464 1336 int rv;
7bc71196
DW
1337
1338 if (subarray) {
1339 container_dev = st->container_dev;
1340 cfd = open_dev_excl(st->container_dev);
7bc71196
DW
1341 } else {
1342 container_dev = st->devnum;
1343 close(fd);
1344 cfd = open_dev_excl(st->devnum);
1345 fd = cfd;
1346 }
1347 if (cfd < 0) {
1348 fprintf(stderr, Name ": Unable to open container for %s\n",
1349 devname);
7f2ba464 1350 free(subarray);
7bc71196
DW
1351 return 1;
1352 }
1353
5da9ab98
N
1354 fmt_devname(container_buf, container_dev);
1355 container = container_buf;
7bc71196 1356
eb744788
AK
1357 rv = st->ss->load_container(st, cfd, NULL);
1358
7f2ba464 1359 if (rv) {
7bc71196
DW
1360 fprintf(stderr, Name ": Cannot read superblock for %s\n",
1361 devname);
7f2ba464 1362 free(subarray);
7bc71196
DW
1363 return 1;
1364 }
1365
1366 if (mdmon_running(container_dev))
1367 st->update_tail = &st->updates;
691a36b7
N
1368 }
1369
1370 if (raid_disks > array.raid_disks &&
1371 array.spare_disks < (raid_disks - array.raid_disks) &&
1372 !force) {
1373 fprintf(stderr,
1374 Name ": Need %d spare%s to avoid degraded array,"
1375 " and only have %d.\n"
1376 " Use --force to over-ride this check.\n",
1377 raid_disks - array.raid_disks,
1378 raid_disks - array.raid_disks == 1 ? "" : "s",
1379 array.spare_disks);
1380 return 1;
7bc71196
DW
1381 }
1382
3fa436ac
ML
1383 sra = sysfs_read(fd, 0, GET_LEVEL | GET_DISKS | GET_DEVS
1384 | GET_STATE | GET_VERSION);
1385 if (sra) {
7f2ba464 1386 if (st->ss->external && subarray == NULL) {
7bc71196
DW
1387 array.level = LEVEL_CONTAINER;
1388 sra->array.level = LEVEL_CONTAINER;
1389 }
7bc71196 1390 } else {
b526e52d
DW
1391 fprintf(stderr, Name ": failed to read sysfs parameters for %s\n",
1392 devname);
1393 return 1;
1394 }
7f2ba464
DW
1395 frozen = freeze(st);
1396 if (frozen < -1) {
1397 /* freeze() already spewed the reason */
1398 return 1;
1399 } else if (frozen < 0) {
7236ee7a
N
1400 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
1401 " be reshaped\n", devname);
1402 return 1;
1403 }
1404
1405 /* ========= set size =============== */
1406 if (size >= 0 && (size == 0 || size != array.size)) {
7bc71196
DW
1407 long long orig_size = array.size;
1408
1409 if (reshape_super(st, size, UnSet, UnSet, 0, 0, NULL, devname, !quiet)) {
1410 rv = 1;
1411 goto release;
1412 }
1413 sync_metadata(st);
7236ee7a
N
1414 array.size = size;
1415 if (array.size != size) {
1416 /* got truncated to 32bit, write to
1417 * component_size instead
1418 */
1419 if (sra)
1420 rv = sysfs_set_num(sra, NULL,
1421 "component_size", size);
1422 else
1423 rv = -1;
1424 } else
1425 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1426 if (rv != 0) {
39bbb392 1427 int err = errno;
7bc71196
DW
1428
1429 /* restore metadata */
1430 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
1431 NULL, devname, !quiet) == 0)
1432 sync_metadata(st);
7236ee7a 1433 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
39bbb392
N
1434 devname, strerror(err));
1435 if (err == EBUSY &&
1436 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1437 fprintf(stderr, " Bitmap must be removed before size can be changed\n");
7236ee7a
N
1438 rv = 1;
1439 goto release;
1440 }
1441 ioctl(fd, GET_ARRAY_INFO, &array);
be1cabbd 1442 size = get_component_size(fd)/2;
f98841b3
N
1443 if (size == 0)
1444 size = array.size;
7236ee7a 1445 if (!quiet)
f98841b3
N
1446 fprintf(stderr, Name ": component size of %s has been set to %lluK\n",
1447 devname, size);
7236ee7a 1448 changed = 1;
7bc71196 1449 } else if (array.level != LEVEL_CONTAINER) {
be1cabbd 1450 size = get_component_size(fd)/2;
f98841b3
N
1451 if (size == 0)
1452 size = array.size;
7236ee7a
N
1453 }
1454
62a48395 1455 /* ========= check for Raid10 -> Raid0 conversion ===============
5da9ab98 1456 * current implementation assumes that following conditions must be met:
62a48395
AK
1457 * - far_copies == 1
1458 * - near_copies == 2
1459 */
5da9ab98 1460 if (level == 0 && array.level == 10 && sra &&
62a48395
AK
1461 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) {
1462 int err;
1463 err = remove_disks_on_raid10_to_raid0_takeover(st, sra, array.layout);
1464 if (err) {
1465 dprintf(Name": Array cannot be reshaped\n");
62a48395
AK
1466 if (cfd > -1)
1467 close(cfd);
5da9ab98
N
1468 rv = 1;
1469 goto release;
7236ee7a
N
1470 }
1471 }
1472
5da9ab98 1473 info.array = array;
7443ee81 1474 sysfs_init(&info, fd, NoMdDev);
3fa436ac 1475 strcpy(info.text_version, sra->text_version);
7443ee81 1476 info.component_size = size*2;
5da9ab98
N
1477 info.new_level = level;
1478 info.new_chunk = chunksize * 1024;
1479 if (raid_disks)
1480 info.delta_disks = raid_disks - info.array.raid_disks;
1481 else
1482 info.delta_disks = UnSet;
1483 if (layout_str == NULL) {
1484 info.new_layout = UnSet;
1485 if (info.array.level == 6 &&
1486 (info.new_level == 6 || info.new_level == UnSet) &&
1487 info.array.layout >= 16) {
7236ee7a 1488 fprintf(stderr, Name
5da9ab98
N
1489 ": %s has a non-standard layout. If you"
1490 " wish to preserve this\n"
1491 " during the reshape, please specify"
1492 " --layout=preserve\n"
1493 " If you want to change it, specify a"
1494 " layout or use --layout=normalise\n",
7236ee7a
N
1495 devname);
1496 rv = 1;
1497 goto release;
1498 }
5da9ab98
N
1499 } else if (strcmp(layout_str, "normalise") == 0 ||
1500 strcmp(layout_str, "normalize") == 0) {
1501 /* If we have a -6 RAID6 layout, remove the '-6'. */
1502 info.new_layout = UnSet;
1503 if (info.array.level == 6 && info.new_level == UnSet) {
1504 char l[40], *h;
1505 strcpy(l, map_num(r6layout, info.array.layout));
1506 h = strrchr(l, '-');
1507 if (h && strcmp(h, "-6") == 0) {
1508 *h = 0;
1509 info.new_layout = map_name(r6layout, l);
7236ee7a
N
1510 }
1511 }
5da9ab98
N
1512 } else if (strcmp(layout_str, "preserve") == 0) {
1513 info.new_layout = UnSet;
1514 } else {
1515 int l = info.new_level;
1516 if (l == UnSet)
1517 l = info.array.level;
1518 switch (l) {
1519 case 5:
1520 info.new_layout = map_name(r5layout, layout_str);
1521 break;
1522 case 6:
1523 info.new_layout = map_name(r6layout, layout_str);
1524 break;
1525 case 10:
1526 info.new_layout = parse_layout_10(layout_str);
1527 break;
1528 case LEVEL_FAULTY:
1529 info.new_layout = parse_layout_faulty(layout_str);
1530 break;
1531 default:
1532 fprintf(stderr, Name ": layout not meaningful"
1533 " with this level\n");
7bc71196
DW
1534 rv = 1;
1535 goto release;
1536 }
5da9ab98
N
1537 if (info.new_layout == UnSet) {
1538 fprintf(stderr, Name ": layout %s not understood"
1539 " for this level\n",
1540 layout_str);
1541 rv = 1;
1542 goto release;
7bc71196 1543 }
7236ee7a
N
1544 }
1545
5da9ab98
N
1546 if (array.level == LEVEL_CONTAINER) {
1547 /* This change is to be applied to every array in the
1548 * container. This is only needed when the metadata imposes
1549 * restraints of the various arrays in the container.
1550 * Currently we only know that IMSM requires all arrays
1551 * to have the same number of devices so changing the
1552 * number of devices (On-Line Capacity Expansion) must be
1553 * performed at the level of the container
1554 */
1555 rv = reshape_container(container, fd, devname, st, &info,
1556 force, backup_file, quiet);
9202b8eb 1557 frozen = 0;
5da9ab98
N
1558 } else {
1559 /* Impose these changes on a single array. First
1560 * check that the metadata is OK with the change. */
7bc71196 1561
5da9ab98
N
1562 if (reshape_super(st, info.component_size, info.new_level,
1563 info.new_layout, info.new_chunk,
1564 info.array.raid_disks + info.delta_disks,
1565 backup_file, devname, quiet)) {
7bc71196
DW
1566 rv = 1;
1567 goto release;
1568 }
5da9ab98
N
1569 sync_metadata(st);
1570 rv = reshape_array(container, fd, devname, st, &info, force,
a93f87ee 1571 backup_file, quiet, 0, 0);
9202b8eb 1572 frozen = 0;
5da9ab98
N
1573 }
1574release:
9202b8eb
N
1575 if (frozen > 0)
1576 unfreeze(st);
5da9ab98
N
1577 return rv;
1578}
7bc71196 1579
5da9ab98
N
1580static int reshape_array(char *container, int fd, char *devname,
1581 struct supertype *st, struct mdinfo *info,
1582 int force,
a93f87ee
N
1583 char *backup_file, int quiet, int forked,
1584 int restart)
5da9ab98
N
1585{
1586 struct reshape reshape;
1587 int spares_needed;
1588 char *msg;
1589 int orig_level = UnSet;
1590 int disks, odisks;
7bc71196 1591
5da9ab98
N
1592 struct mdu_array_info_s array;
1593 char *c;
e86c9dd6 1594
5da9ab98
N
1595 int *fdlist;
1596 unsigned long long *offsets;
1597 int d;
1598 int nrdisks;
1599 int err;
da8100ca 1600 unsigned long blocks;
5da9ab98
N
1601 unsigned long cache;
1602 unsigned long long array_size;
1603 int done;
cf6ac177 1604 struct mdinfo *sra = NULL;
7bc71196 1605
5da9ab98
N
1606 msg = analyse_change(info, &reshape);
1607 if (msg) {
1608 fprintf(stderr, Name ": %s\n", msg);
631d7405 1609 goto release;
5da9ab98 1610 }
9ff87c16
AK
1611 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1612 dprintf("Canot get array information.\n");
631d7405 1613 goto release;
9ff87c16 1614 }
a93f87ee
N
1615
1616 if (restart) {
1617 /* reshape already started. just skip to monitoring the reshape */
1618 if (reshape.backup_blocks == 0)
1619 return 0;
1620 goto started;
1621 }
5da9ab98
N
1622 spares_needed = max(reshape.before.data_disks,
1623 reshape.after.data_disks)
1624 + reshape.parity - array.raid_disks;
7bc71196 1625
88c1a083
N
1626 if (!force &&
1627 info->new_level > 0 &&
1628 spares_needed > info->array.spare_disks) {
5da9ab98
N
1629 fprintf(stderr,
1630 Name ": Need %d spare%s to avoid degraded array,"
1631 " and only have %d.\n"
1632 " Use --force to over-ride this check.\n",
1633 spares_needed,
1634 spares_needed == 1 ? "" : "s",
1635 info->array.spare_disks);
631d7405 1636 goto release;
7bc71196 1637 }
e86c9dd6 1638
5da9ab98
N
1639 if (reshape.level != info->array.level) {
1640 char *c = map_num(pers, reshape.level);
1641 int err;
1642 if (c == NULL)
631d7405 1643 goto release;
e86c9dd6 1644
5da9ab98
N
1645 err = sysfs_set_str(info, NULL, "level", c);
1646 if (err) {
1647 err = errno;
1648 fprintf(stderr, Name ": %s: could not set level to %s\n",
1649 devname, c);
1650 if (err == EBUSY &&
1651 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
1652 fprintf(stderr, " Bitmap must be removed"
1653 " before level can be changed\n");
631d7405 1654 goto release;
19678e53 1655 }
5da9ab98 1656 if (!quiet)
b6b95155 1657 fprintf(stderr, Name ": level of %s changed to %s\n",
5da9ab98
N
1658 devname, c);
1659 orig_level = info->array.level;
1660 }
e86c9dd6 1661
5da9ab98
N
1662 if (reshape.level > 0 && st->ss->external &&
1663 !mdmon_running(st->container_dev)) {
1664 start_mdmon(st->container_dev);
1665 ping_monitor(container);
1666 }
e86c9dd6 1667
5da9ab98
N
1668 /* ->reshape_super might have chosen some spares from the
1669 * container that it wants to be part of the new array.
1670 * We can collect them with ->container_content and give
1671 * them to the kernel.
1672 */
1673 if (st->ss->reshape_super && st->ss->container_content) {
1674 char *subarray = strchr(info->text_version+1, '/')+1;
1675 struct mdinfo *info2 =
1676 st->ss->container_content(st, subarray);
1677 struct mdinfo *d;
1678
2dd0d697
AK
1679 if (info2) {
1680 sysfs_init(info2, fd, st->devnum);
5da9ab98
N
1681 for (d = info2->devs; d; d = d->next) {
1682 if (d->disk.state == 0 &&
1683 d->disk.raid_disk >= 0) {
1684 /* This is a spare that wants to
1685 * be part of the array.
1686 */
1687 add_disk(fd, st, info2, d);
1688 }
9860f271 1689 }
2dd0d697
AK
1690 sysfs_free(info2);
1691 }
5da9ab98 1692 }
1686dc25 1693
b4f8e38b 1694 if (reshape.backup_blocks == 0) {
5da9ab98
N
1695 /* No restriping needed, but we might need to impose
1696 * some more changes: layout, raid_disks, chunk_size
e86c9dd6 1697 */
5da9ab98
N
1698 if (info->new_layout != UnSet &&
1699 info->new_layout != info->array.layout) {
1700 info->array.layout = info->new_layout;
1701 if (ioctl(fd, SET_ARRAY_INFO, &info->array) != 0) {
1702 fprintf(stderr, Name ": failed to set new layout\n");
631d7405 1703 goto release;
5da9ab98
N
1704 } else if (!quiet)
1705 printf("layout for %s set to %d\n",
1706 devname, info->array.layout);
1707 }
1708 if (info->delta_disks != UnSet &&
1709 info->delta_disks != 0) {
1710 info->array.raid_disks += info->delta_disks;
1711 if (ioctl(fd, SET_ARRAY_INFO, &info->array) != 0) {
1712 fprintf(stderr, Name ": failed to set raid disks\n");
631d7405 1713 goto release;
5da9ab98
N
1714 } else if (!quiet)
1715 printf("raid_disks for %s set to %d\n",
1716 devname, info->array.raid_disks);
1717 }
1718 if (info->new_chunk != 0 &&
1719 info->new_chunk != info->array.chunk_size) {
1720 if (sysfs_set_num(info, NULL,
1721 "chunk_size", info->new_chunk) != 0) {
1722 fprintf(stderr, Name ": failed to set chunk size\n");
631d7405 1723 goto release;
5da9ab98
N
1724 } else if (!quiet)
1725 printf("chunk size for %s set to %d\n",
1726 devname, info->array.chunk_size);
4725bc31 1727 }
e35b189b 1728 unfreeze(st);
631d7405 1729 return 0;
5da9ab98 1730 }
19678e53 1731
5da9ab98
N
1732 /*
1733 * There are three possibilities.
1734 * 1/ The array will shrink.
1735 * We need to ensure the reshape will pause before reaching
1736 * the 'critical section'. We also need to fork and wait for
1737 * that to happen. When it does we
1738 * suspend/backup/complete/unfreeze
1739 *
1740 * 2/ The array will not change size.
1741 * This requires that we keep a backup of a sliding window
1742 * so that we can restore data after a crash. So we need
1743 * to fork and monitor progress.
1744 * In future we will allow the data_offset to change, so
1745 * a sliding backup becomes unnecessary.
1746 *
1747 * 3/ The array will grow. This is relatively easy.
1748 * However the kernel's restripe routines will cheerfully
1749 * overwrite some early data before it is safe. So we
1750 * need to make a backup of the early parts of the array
1751 * and be ready to restore it if rebuild aborts very early.
1752 * For externally managed metadata, we still need a forked
1753 * child to monitor the reshape and suspend IO over the region
1754 * that is being reshaped.
1755 *
1756 * We backup data by writing it to one spare, or to a
1757 * file which was given on command line.
1758 *
1759 * In each case, we first make sure that storage is available
1760 * for the required backup.
1761 * Then we:
1762 * - request the shape change.
1763 * - fork to handle backup etc.
1764 */
a93f87ee 1765started:
5da9ab98
N
1766 /* Check that we can hold all the data */
1767 get_dev_size(fd, NULL, &array_size);
1768 if (reshape.new_size < (array_size/512)) {
1769 fprintf(stderr,
1770 Name ": this change will reduce the size of the array.\n"
1771 " use --grow --array-size first to truncate array.\n"
1772 " e.g. mdadm --grow %s --array-size %llu\n",
1773 devname, reshape.new_size/2);
5da9ab98
N
1774 goto release;
1775 }
7236ee7a 1776
5da9ab98 1777 sra = sysfs_read(fd, 0,
3656edcd 1778 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
5da9ab98 1779 GET_CACHE);
5da9ab98
N
1780 if (!sra) {
1781 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
1782 devname);
5da9ab98
N
1783 goto release;
1784 }
7236ee7a 1785
5da9ab98
N
1786 /* Decide how many blocks (sectors) for a reshape
1787 * unit. The number we have so far is just a minimum
1788 */
b4f8e38b 1789 blocks = reshape.backup_blocks;
5da9ab98
N
1790 if (reshape.before.data_disks ==
1791 reshape.after.data_disks) {
1792 /* Make 'blocks' bigger for better throughput, but
1793 * not so big that we reject it below.
1794 * Try for 16 megabytes
1795 */
1796 while (blocks * 32 < sra->component_size &&
1797 blocks < 16*1024*2)
1798 blocks *= 2;
1799 } else
1800 fprintf(stderr, Name ": Need to backup %luK of critical "
1801 "section..\n", blocks/2);
1802
1803 if (blocks >= sra->component_size/2) {
1804 fprintf(stderr, Name ": %s: Something wrong"
1805 " - reshape aborted\n",
1806 devname);
5da9ab98
N
1807 goto release;
1808 }
7236ee7a 1809
5da9ab98
N
1810 /* Now we need to open all these devices so we can read/write.
1811 */
1812 nrdisks = array.raid_disks + sra->array.spare_disks;
1813 fdlist = malloc((1+nrdisks) * sizeof(int));
1814 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
1815 if (!fdlist || !offsets) {
1816 fprintf(stderr, Name ": malloc failed: grow aborted\n");
5da9ab98
N
1817 goto release;
1818 }
e380d3be 1819
5da9ab98
N
1820 d = reshape_prepare_fdlist(devname, sra, array.raid_disks,
1821 nrdisks, blocks, backup_file,
1822 fdlist, offsets);
1823 if (d < 0) {
5da9ab98
N
1824 goto release;
1825 }
1826 if (backup_file == NULL) {
374ba335 1827 if (reshape.after.data_disks <= reshape.before.data_disks) {
5da9ab98
N
1828 fprintf(stderr,
1829 Name ": %s: Cannot grow - need backup-file\n",
c03ef02d 1830 devname);
5da9ab98
N
1831 goto release;
1832 } else if (sra->array.spare_disks == 0) {
1833 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
1834 "backup-file to backup critical section\n",
e86c9dd6 1835 devname);
5da9ab98 1836 goto release;
e86c9dd6 1837 }
5da9ab98
N
1838 } else {
1839 if (!reshape_open_backup_file(backup_file, fd, devname,
1840 (signed)blocks,
a93f87ee 1841 fdlist+d, offsets+d, restart)) {
130994cb 1842 goto release;
e86c9dd6 1843 }
5da9ab98
N
1844 d++;
1845 }
7236ee7a 1846
5da9ab98
N
1847 /* lastly, check that the internal stripe cache is
1848 * large enough, or it won't work.
1849 * It must hold at least 4 stripes of the larger
1850 * chunk size
1851 */
1852 cache = max(info->array.chunk_size, info->new_chunk);
1853 cache *= 4; /* 4 stripes minimum */
1854 cache /= 512; /* convert to sectors */
1855 disks = min(reshape.before.data_disks, reshape.after.data_disks);
1856 /* make sure there is room for 'blocks' with a bit to spare */
1857 if (cache < 16 + blocks / disks)
1858 cache = 16 + blocks / disks;
1859 cache /= (4096/512); /* Covert from sectors to pages */
1860
1861 if (sra->cache_size < cache)
1862 subarray_set_num(container, sra, "stripe_cache_size",
1863 cache+1);
1864
1865 /* Right, everything seems fine. Let's kick things off.
1866 * If only changing raid_disks, use ioctl, else use
1867 * sysfs.
1868 */
1869 sync_metadata(st);
1870
b4f8e38b 1871 sra->new_chunk = info->new_chunk;
ddee071d
N
1872
1873 sra->reshape_progress = 0;
1874 if (reshape.after.data_disks < reshape.before.data_disks)
1875 /* start from the end of the new array */
1876 sra->reshape_progress = (sra->component_size
1877 * reshape.after.data_disks);
b4f8e38b 1878
a93f87ee 1879 if (info->reshape_active)
ddee071d 1880 sra->reshape_progress = info->reshape_progress;
a93f87ee 1881 else if (info->array.chunk_size == info->new_chunk &&
7477d513
AK
1882 reshape.before.layout == reshape.after.layout &&
1883 st->ss->external == 0) {
5da9ab98
N
1884 array.raid_disks = reshape.after.data_disks + reshape.parity;
1885 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1886 int err = errno;
631d7405 1887
5da9ab98
N
1888 fprintf(stderr,
1889 Name ": Cannot set device shape for %s: %s\n",
1890 devname, strerror(errno));
7bc71196 1891
5da9ab98
N
1892 if (err == EBUSY &&
1893 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1894 fprintf(stderr,
1895 " Bitmap must be removed before"
1896 " shape can be changed\n");
b5420ef3 1897
5da9ab98
N
1898 goto release;
1899 }
1900 } else {
1901 /* set them all just in case some old 'new_*' value
1902 * persists from some earlier problem
7236ee7a 1903 */
631d7405 1904 int err = 0;
5da9ab98 1905 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
631d7405
N
1906 err = errno;
1907 if (!err && sysfs_set_num(sra, NULL, "layout",
5da9ab98 1908 reshape.after.layout) < 0)
631d7405
N
1909 err = errno;
1910 if (!err && subarray_set_num(container, sra, "raid_disks",
5da9ab98
N
1911 reshape.after.data_disks +
1912 reshape.parity) < 0)
631d7405
N
1913 err = errno;
1914 if (err) {
5da9ab98
N
1915 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1916 devname);
7236ee7a 1917
5da9ab98
N
1918 if (err == EBUSY &&
1919 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1920 fprintf(stderr,
1921 " Bitmap must be removed before"
1922 " shape can be changed\n");
1923 goto release;
e86c9dd6 1924 }
5da9ab98 1925 }
e86c9dd6 1926
5da9ab98 1927 start_reshape(sra);
a93f87ee
N
1928 if (restart)
1929 sysfs_set_str(sra, NULL, "array_state", "active");
5da9ab98
N
1930
1931 /* Now we just need to kick off the reshape and watch, while
1932 * handling backups of the data...
1933 * This is all done by a forked background process.
1934 */
1935 switch(forked ? 0 : fork()) {
6b2d630c
N
1936 case -1:
1937 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1938 strerror(errno));
6b2d630c 1939 abort_reshape(sra);
631d7405 1940 goto release;
6b2d630c
N
1941 default:
1942 return 0;
5da9ab98 1943 case 0:
6b2d630c
N
1944 break;
1945 }
5da9ab98 1946
6b2d630c
N
1947 close(fd);
1948 if (check_env("MDADM_GROW_VERIFY"))
1949 fd = open(devname, O_RDONLY | O_DIRECT);
1950 else
1951 fd = -1;
1952 mlockall(MCL_FUTURE);
5da9ab98 1953
6b2d630c 1954 odisks = reshape.before.data_disks + reshape.parity;
582496b2 1955
6b2d630c
N
1956 if (st->ss->external) {
1957 /* metadata handler takes it from here */
1958 done = st->ss->manage_reshape(
1959 fd, sra, &reshape, st, blocks,
1960 fdlist, offsets,
1961 d - odisks, fdlist+odisks,
1962 offsets+odisks);
1963 } else
1964 done = child_monitor(
1965 fd, sra, &reshape, st, blocks,
1966 fdlist, offsets,
1967 d - odisks, fdlist+odisks,
1968 offsets+odisks);
1969
1970 if (backup_file && done)
1971 unlink(backup_file);
1972 if (!done) {
1973 abort_reshape(sra);
1974 goto out;
1975 }
1cbc5680
N
1976
1977 if (!st->ss->external &&
1978 !(reshape.before.data_disks != reshape.after.data_disks
1979 && info->custom_array_size) &&
1980 info->new_level == reshape.level &&
1981 !forked) {
1982 /* no need to wait for the reshape to finish as
1983 * there is nothing more to do.
1984 */
1985 exit(0);
1986 }
1987 wait_reshape(sra);
1988
1989 if (st->ss->external) {
1990 /* Re-load the metadata as much could have changed */
1991 int cfd = open_dev(st->container_dev);
1992 if (cfd >= 0) {
1993 ping_monitor(container);
1994 st->ss->free_super(st);
1995 st->ss->load_container(st, cfd, container);
1996 close(cfd);
1997 }
1998 }
1999
6b2d630c
N
2000 /* set new array size if required customer_array_size is used
2001 * by this metadata.
2002 */
2003 if (reshape.before.data_disks !=
2004 reshape.after.data_disks &&
2005 info->custom_array_size) {
2006 struct mdinfo *info2;
2007 char *subarray = strchr(info->text_version+1, '/')+1;
582496b2 2008
6b2d630c
N
2009 info2 = st->ss->container_content(st, subarray);
2010 if (info2) {
2011 unsigned long long current_size = 0;
2012 unsigned long long new_size =
2013 info2->custom_array_size/2;
2014
2015 if (sysfs_get_ll(sra,
2016 NULL,
2017 "array_size",
2018 &current_size) == 0 &&
2019 new_size > current_size) {
2020 if (sysfs_set_num(sra, NULL,
2021 "array_size", new_size)
2022 < 0)
2023 dprintf("Error: Cannot"
2024 " set array size");
2025 else
2026 dprintf("Array size "
2027 "changed");
2028 dprintf(" from %llu to %llu.\n",
2029 current_size, new_size);
582496b2 2030 }
6b2d630c 2031 sysfs_free(info2);
582496b2 2032 }
6b2d630c 2033 }
582496b2 2034
6b2d630c 2035 if (info->new_level != reshape.level) {
582496b2 2036
6b2d630c 2037 c = map_num(pers, info->new_level);
1cbc5680
N
2038 if (c) {
2039 err = sysfs_set_str(sra, NULL, "level", c);
2040 if (err)
2041 fprintf(stderr, Name\
2042 ": %s: could not set level "
2043 "to %s\n", devname, c);
2044 }
7236ee7a 2045 }
6b2d630c
N
2046out:
2047 if (forked)
2048 return 0;
2049 exit(0);
e86c9dd6 2050
6b2d630c 2051release:
1cbc5680 2052 if (orig_level != UnSet && sra) {
7236ee7a
N
2053 c = map_num(pers, orig_level);
2054 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
2055 fprintf(stderr, Name ": aborting level change\n");
2056 }
9202b8eb
N
2057 if (!forked)
2058 unfreeze(st);
631d7405 2059 return 1;
7236ee7a 2060}
e86c9dd6 2061
5da9ab98
N
2062int reshape_container(char *container, int cfd, char *devname,
2063 struct supertype *st,
2064 struct mdinfo *info,
2065 int force,
2066 char *backup_file,
2067 int quiet)
2068{
1bb174ba
AK
2069 struct mdinfo *cc = NULL;
2070
d8eb27f7
KA
2071 /* component_size is not meaningful for a container,
2072 * so pass '-1' meaning 'no change'
2073 */
2074 if (reshape_super(st, -1, info->new_level,
5da9ab98
N
2075 info->new_layout, info->new_chunk,
2076 info->array.raid_disks + info->delta_disks,
2077 backup_file, devname, quiet))
2078 return 1;
2079
2080 sync_metadata(st);
2081
1bb174ba
AK
2082 /* ping monitor to be sure that update is on disk
2083 */
2084 ping_monitor(container);
5da9ab98
N
2085
2086 switch (fork()) {
2087 case -1: /* error */
2088 perror("Cannot fork to complete reshape\n");
2089 return 1;
2090 default: /* parent */
2091 printf(Name ": multi-array reshape continues in background\n");
2092 return 0;
2093 case 0: /* child */
2094 break;
2095 }
2096
1bb174ba
AK
2097 while(1) {
2098 /* For each member array with reshape_active,
2099 * we need to perform the reshape.
2100 * We pick the first array that needs reshaping and
2101 * reshape it. reshape_array() will re-read the metadata
2102 * so the next time through a different array should be
2103 * ready for reshape.
2104 */
2105 struct mdinfo *content;
5da9ab98
N
2106 int rv;
2107 int fd;
2108 struct mdstat_ent *mdstat;
5da9ab98
N
2109 char *adev;
2110
1bb174ba 2111 sysfs_free(cc);
5da9ab98 2112
1bb174ba
AK
2113 cc = st->ss->container_content(st, NULL);
2114
2115 for (content = cc; content ; content = content->next) {
2116 char *subarray;
2117 if (!content->reshape_active)
2118 continue;
2119
2120 subarray = strchr(content->text_version+1, '/')+1;
2121 mdstat = mdstat_by_subdev(subarray,
2122 devname2devnum(container));
2123 if (!mdstat)
2124 continue;
2125 break;
2126 }
2127 if (!content)
2128 break;
5da9ab98 2129
55f14721 2130 fd = open_dev(mdstat->devnum);
5da9ab98
N
2131 if (fd < 0)
2132 break;
2133 adev = map_dev(dev2major(mdstat->devnum),
2134 dev2minor(mdstat->devnum),
2135 0);
2136 if (!adev)
1bb174ba
AK
2137 adev = content->text_version;
2138
2139 sysfs_init(content, fd, mdstat->devnum);
5da9ab98 2140
1bb174ba
AK
2141 rv = reshape_array(container, fd, adev, st,
2142 content, force,
a93f87ee 2143 backup_file, quiet, 1, 0);
5da9ab98
N
2144 close(fd);
2145 if (rv)
2146 break;
2147 }
9202b8eb 2148 unfreeze(st);
1bb174ba 2149 sysfs_free(cc);
5da9ab98
N
2150 exit(0);
2151}
2152
7236ee7a
N
2153/*
2154 * We run a child process in the background which performs the following
2155 * steps:
2156 * - wait for resync to reach a certain point
2157 * - suspend io to the following section
2158 * - backup that section
2159 * - allow resync to proceed further
2160 * - resume io
2161 * - discard the backup.
2162 *
2163 * When are combined in slightly different ways in the three cases.
2164 * Grow:
2165 * - suspend/backup/allow/wait/resume/discard
2166 * Shrink:
2167 * - allow/wait/suspend/backup/allow/wait/resume/discard
2168 * same-size:
2169 * - wait/resume/discard/suspend/backup/allow
2170 *
2171 * suspend/backup/allow always come together
2172 * wait/resume/discard do too.
2173 * For the same-size case we have two backups to improve flow.
2174 *
2175 */
e86c9dd6 2176
7443ee81
N
2177int progress_reshape(struct mdinfo *info, struct reshape *reshape,
2178 unsigned long long backup_point,
2179 unsigned long long wait_point,
2180 unsigned long long *suspend_point,
2181 unsigned long long *reshape_completed)
2182{
2183 /* This function is called repeatedly by the reshape manager.
2184 * It determines how much progress can safely be made and allows
2185 * that progress.
2186 * - 'info' identifies the array and particularly records in
2187 * ->reshape_progress the metadata's knowledge of progress
2188 * This is a sector offset from the start of the array
2189 * of the next array block to be relocated. This number
2190 * may increase from 0 or decrease from array_size, depending
2191 * on the type of reshape that is happening.
2192 * Note that in contrast, 'sync_completed' is a block count of the
2193 * reshape so far. It gives the distance between the start point
2194 * (head or tail of device) and the next place that data will be
2195 * written. It always increases.
2196 * - 'reshape' is the structure created by analyse_change
2197 * - 'backup_point' shows how much the metadata manager has backed-up
2198 * data. For reshapes with increasing progress, it is the next address
2199 * to be backed up, previous addresses have been backed-up. For
2200 * decreasing progress, it is the earliest address that has been
2201 * backed up - later address are also backed up.
2202 * So addresses between reshape_progress and backup_point are
2203 * backed up providing those are in the 'correct' order.
2204 * - 'wait_point' is an array address. When reshape_completed
2205 * passes this point, progress_reshape should return. It might
2206 * return earlier if it determines that ->reshape_progress needs
2207 * to be updated or further backup is needed.
2208 * - suspend_point is maintained by progress_reshape and the caller
2209 * should not touch it except to initialise to zero.
2210 * It is an array address and it only increases in 2.6.37 and earlier.
b6b95155 2211 * This makes it difficult to handle reducing reshapes with
7443ee81
N
2212 * external metadata.
2213 * However: it is similar to backup_point in that it records the
2214 * other end of a suspended region from reshape_progress.
2215 * it is moved to extend the region that is safe to backup and/or
2216 * reshape
2217 * - reshape_completed is read from sysfs and returned. The caller
2218 * should copy this into ->reshape_progress when it has reason to
2219 * believe that the metadata knows this, and any backup outside this
2220 * has been erased.
2221 *
2222 * Return value is:
2223 * 1 if more data from backup_point - but only as far as suspend_point,
2224 * should be backed up
2225 * 0 if things are progressing smoothly
2226 * -1 if the reshape is finished, either because it is all done,
2227 * or due to an error.
2228 */
2229
2230 int advancing = (reshape->after.data_disks
2231 >= reshape->before.data_disks);
38dad34a
N
2232 unsigned long long need_backup; /* All data between start of array and
2233 * here will at some point need to
2234 * be backed up.
d0ab945e 2235 */
7443ee81 2236 unsigned long long read_offset, write_offset;
b4f8e38b 2237 unsigned long long write_range;
7443ee81 2238 unsigned long long max_progress, target, completed;
d0ab945e
N
2239 unsigned long long array_size = (info->component_size
2240 * reshape->before.data_disks);
7443ee81 2241 int fd;
77a73a17 2242 char buf[20];
7443ee81
N
2243
2244 /* First, we unsuspend any region that is now known to be safe.
2245 * If suspend_point is on the 'wrong' side of reshape_progress, then
2246 * we don't have or need suspension at the moment. This is true for
2247 * native metadata when we don't need to back-up.
2248 */
2249 if (advancing) {
49cd738b 2250 if (info->reshape_progress <= *suspend_point)
7443ee81
N
2251 sysfs_set_num(info, NULL, "suspend_lo",
2252 info->reshape_progress);
2253 } else {
2254 /* Note: this won't work in 2.6.37 and before.
2255 * Something somewhere should make sure we don't need it!
2256 */
49cd738b 2257 if (info->reshape_progress >= *suspend_point)
7443ee81
N
2258 sysfs_set_num(info, NULL, "suspend_hi",
2259 info->reshape_progress);
2260 }
2261
2262 /* Now work out how far it is safe to progress.
2263 * If the read_offset for ->reshape_progress is less than
2264 * 'blocks' beyond the write_offset, we can only progress as far
2265 * as a backup.
2266 * Otherwise we can progress until the write_offset for the new location
2267 * reaches (within 'blocks' of) the read_offset at the current location.
2268 * However that region must be suspended unless we are using native
2269 * metadata.
2270 * If we need to suspend more, we limit it to 128M per device, which is
2271 * rather arbitrary and should be some time-based calculation.
2272 */
ec757320
N
2273 read_offset = info->reshape_progress / reshape->before.data_disks;
2274 write_offset = info->reshape_progress / reshape->after.data_disks;
b4f8e38b 2275 write_range = info->new_chunk/512;
38dad34a
N
2276 if (reshape->before.data_disks == reshape->after.data_disks)
2277 need_backup = array_size;
2278 else
2279 need_backup = reshape->backup_blocks;
7443ee81 2280 if (advancing) {
38dad34a 2281 if (read_offset < write_offset + write_range)
7443ee81 2282 max_progress = backup_point;
ddee071d 2283 else
7443ee81 2284 max_progress =
2f3dd5e4
N
2285 read_offset *
2286 reshape->after.data_disks;
7443ee81 2287 } else {
38dad34a
N
2288 if (read_offset > write_offset - write_range)
2289 /* Can only progress as far as has been backed up,
2290 * which must be suspended */
7443ee81 2291 max_progress = backup_point;
38dad34a
N
2292 else if (info->reshape_progress <= need_backup)
2293 max_progress = backup_point;
2294 else {
2295 if (info->array.major_version >= 0)
2296 /* Can progress until backup is needed */
2297 max_progress = need_backup;
2298 else {
2299 /* Can progress until metadata update is required */
2300 max_progress =
2301 read_offset *
2302 reshape->after.data_disks;
2303 /* but data must be suspended */
2304 if (max_progress < *suspend_point)
2305 max_progress = *suspend_point;
2306 }
7443ee81
N
2307 }
2308 }
2309
2310 /* We know it is safe to progress to 'max_progress' providing
2311 * it is suspended or we are using native metadata.
2312 * Consider extending suspend_point 128M per device if it
2313 * is less than 64M per device beyond reshape_progress.
2314 * But always do a multiple of 'blocks'
832b2b9a
N
2315 * FIXME this is too big - it takes to long to complete
2316 * this much.
7443ee81
N
2317 */
2318 target = 64*1024*2 * min(reshape->before.data_disks,
2319 reshape->after.data_disks);
b4f8e38b 2320 target /= reshape->backup_blocks;
7443ee81
N
2321 if (target < 2)
2322 target = 2;
b4f8e38b 2323 target *= reshape->backup_blocks;
7443ee81
N
2324
2325 /* For externally managed metadata we always need to suspend IO to
2326 * the area being reshaped so we regularly push suspend_point forward.
2327 * For native metadata we only need the suspend if we are going to do
2328 * a backup.
2329 */
2330 if (advancing) {
d0ab945e
N
2331 if ((need_backup > info->reshape_progress
2332 || info->array.major_version < 0) &&
7443ee81 2333 *suspend_point < info->reshape_progress + target) {
d0ab945e
N
2334 if (need_backup < *suspend_point + 2 * target)
2335 *suspend_point = need_backup;
2336 else if (*suspend_point + 2 * target < array_size)
7443ee81 2337 *suspend_point += 2 * target;
d0ab945e
N
2338 else
2339 *suspend_point = array_size;
7443ee81 2340 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
d0ab945e
N
2341 if (max_progress > *suspend_point)
2342 max_progress = *suspend_point;
7443ee81
N
2343 }
2344 } else {
38dad34a
N
2345 if (info->array.major_version >= 0) {
2346 /* Only need to suspend when about to backup */
2347 if (info->reshape_progress < need_backup * 2 &&
2348 *suspend_point > 0) {
d0ab945e 2349 *suspend_point = 0;
38dad34a
N
2350 sysfs_set_num(info, NULL, "suspend_lo", 0);
2351 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
2352 }
2353 } else {
2354 /* Need to suspend continually */
2355 if (info->reshape_progress < *suspend_point)
2356 *suspend_point = info->reshape_progress;
2357 if (*suspend_point + target < info->reshape_progress)
2358 /* No need to move suspend region yet */;
2359 else {
2360 if (*suspend_point >= 2 * target)
2361 *suspend_point -= 2 * target;
2362 else
2363 *suspend_point = 0;
2364 sysfs_set_num(info, NULL, "suspend_lo",
2365 *suspend_point);
2366 }
d0ab945e
N
2367 if (max_progress < *suspend_point)
2368 max_progress = *suspend_point;
7443ee81
N
2369 }
2370 }
2371
2372 /* now set sync_max to allow that progress. sync_max, like
2373 * sync_completed is a count of sectors written per device, so
2374 * we find the difference between max_progress and the start point,
2375 * and divide that by after.data_disks to get a sync_max
2376 * number.
2377 * At the same time we convert wait_point to a similar number
2378 * for comparing against sync_completed.
2379 */
92d1991f 2380 /* scale down max_progress to per_disk */
7443ee81 2381 max_progress /= reshape->after.data_disks;
92d1991f
N
2382 /* Round to chunk size as some kernels give an erroneously high number */
2383 max_progress /= info->new_chunk/512;
2384 max_progress *= info->new_chunk/512;
2385 /* Limit progress to the whole device */
2386 if (max_progress > info->component_size)
2387 max_progress = info->component_size;
7443ee81 2388 wait_point /= reshape->after.data_disks;
92d1991f
N
2389 if (!advancing) {
2390 /* switch from 'device offset' to 'processed block count' */
2391 max_progress = info->component_size - max_progress;
2392 wait_point = info->component_size - wait_point;
2393 }
7443ee81
N
2394
2395 sysfs_set_num(info, NULL, "sync_max", max_progress);
2396
2397 /* Now wait. If we have already reached the point that we were
2398 * asked to wait to, don't wait at all, else wait for any change.
2399 * We need to select on 'sync_completed' as that is the place that
2400 * notifications happen, but we are really interested in
2401 * 'reshape_position'
2402 */
2403 fd = sysfs_get_fd(info, NULL, "sync_completed");
2404 if (fd < 0)
77a73a17 2405 goto check_progress;
7443ee81
N
2406
2407 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2408 close(fd);
77a73a17 2409 goto check_progress;
7443ee81
N
2410 }
2411 while (completed < max_progress && completed < wait_point) {
2412 /* Check that sync_action is still 'reshape' to avoid
2413 * waiting forever on a dead array
2414 */
2415 char action[20];
2416 fd_set rfds;
2417 if (sysfs_get_str(info, NULL, "sync_action",
2418 action, 20) <= 0 ||
2419 strncmp(action, "reshape", 7) != 0)
2420 break;
2421 FD_ZERO(&rfds);
2422 FD_SET(fd, &rfds);
2423 select(fd+1, NULL, NULL, &rfds, NULL);
2424 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2425 close(fd);
77a73a17 2426 goto check_progress;
7443ee81
N
2427 }
2428 }
92d1991f
N
2429 /* some kernels can give an incorrectly high 'completed' number */
2430 completed /= (info->new_chunk/512);
2431 completed *= (info->new_chunk/512);
7443ee81
N
2432 /* Convert 'completed' back in to a 'progress' number */
2433 completed *= reshape->after.data_disks;
2434 if (!advancing) {
2435 completed = info->component_size * reshape->after.data_disks
2436 - completed;
2437 }
2438 *reshape_completed = completed;
2439
2440 close(fd);
2441
2442 /* We return the need_backup flag. Caller will decide
d0ab945e 2443 * how much - a multiple of ->backup_blocks up to *suspend_point
7443ee81 2444 */
38dad34a
N
2445 if (advancing)
2446 return need_backup > info->reshape_progress;
2447 else
2448 return need_backup >= info->reshape_progress;
77a73a17
N
2449
2450check_progress:
2451 /* if we couldn't read a number from sync_completed, then
2452 * either the reshape did complete, or it aborted.
2453 * We can tell which by checking for 'none' in reshape_position.
2454 */
2455 strcpy(buf, "hi");
2456 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
2457 || strncmp(buf, "none", 4) != 0)
2458 return -2; /* abort */
6d5316f6
N
2459 else {
2460 /* Maybe racing with array shutdown - check state */
2461 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
2462 || strncmp(buf, "inactive", 8) == 0
2463 || strncmp(buf, "clear",5) == 0)
2464 return -2; /* abort */
77a73a17 2465 return -1; /* complete */
6d5316f6 2466 }
7443ee81
N
2467}
2468
2469
fcf57625 2470/* FIXME return status is never checked */
4411fb17 2471static int grow_backup(struct mdinfo *sra,
7236ee7a 2472 unsigned long long offset, /* per device */
7443ee81 2473 unsigned long stripes, /* per device, in old chunks */
7236ee7a
N
2474 int *sources, unsigned long long *offsets,
2475 int disks, int chunk, int level, int layout,
2476 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 2477 int part, int *degraded,
7236ee7a
N
2478 char *buf)
2479{
2480 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2481 * to storage 'destfd' (offset 'destoffsets'), after first
2482 * suspending IO. Then allow resync to continue
2483 * over the suspended section.
2484 * Use part 'part' of the backup-super-block.
2485 */
2486 int odata = disks;
2487 int rv = 0;
2488 int i;
f21e18ca
N
2489 unsigned long long ll;
2490 int new_degraded;
7236ee7a
N
2491 //printf("offset %llu\n", offset);
2492 if (level >= 4)
2493 odata--;
2494 if (level == 6)
2495 odata--;
7443ee81 2496
d4445387 2497 /* Check that array hasn't become degraded, else we might backup the wrong data */
2c6ac128
N
2498 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
2499 return -1; /* FIXME this error is ignored */
f21e18ca 2500 new_degraded = (int)ll;
d4445387
N
2501 if (new_degraded != *degraded) {
2502 /* check each device to ensure it is still working */
2503 struct mdinfo *sd;
2504 for (sd = sra->devs ; sd ; sd = sd->next) {
2505 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2506 continue;
2507 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2508 char sbuf[20];
2509 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
2510 strstr(sbuf, "faulty") ||
2511 strstr(sbuf, "in_sync") == NULL) {
2512 /* this device is dead */
2513 sd->disk.state = (1<<MD_DISK_FAULTY);
2514 if (sd->disk.raid_disk >= 0 &&
2515 sources[sd->disk.raid_disk] >= 0) {
2516 close(sources[sd->disk.raid_disk]);
2517 sources[sd->disk.raid_disk] = -1;
2518 }
2519 }
2520 }
2521 }
2522 *degraded = new_degraded;
2523 }
7236ee7a
N
2524 if (part) {
2525 bsb.arraystart2 = __cpu_to_le64(offset * odata);
200871ad 2526 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
2527 } else {
2528 bsb.arraystart = __cpu_to_le64(offset * odata);
200871ad 2529 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
2530 }
2531 if (part)
2532 bsb.magic[15] = '2';
2533 for (i = 0; i < dests; i++)
2534 if (part)
2535 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
2536 else
2537 lseek64(destfd[i], destoffsets[i], 0);
2538
2539 rv = save_stripes(sources, offsets,
2540 disks, chunk, level, layout,
2541 dests, destfd,
2542 offset*512*odata, stripes * chunk * odata,
2543 buf);
2544
2545 if (rv)
2546 return rv;
97396422 2547 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
2548 for (i = 0; i < dests; i++) {
2549 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2550
2551 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2552 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2553 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2554 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2555
72044953 2556 rv = -1;
f21e18ca
N
2557 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
2558 != destoffsets[i] - 4096)
72044953
N
2559 break;
2560 if (write(destfd[i], &bsb, 512) != 512)
2561 break;
ff94fb86 2562 if (destoffsets[i] > 4096) {
f21e18ca 2563 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
a847575a 2564 destoffsets[i]+stripes*chunk*odata)
72044953
N
2565 break;
2566 if (write(destfd[i], &bsb, 512) != 512)
2567 break;
ff94fb86 2568 }
7236ee7a 2569 fsync(destfd[i]);
72044953 2570 rv = 0;
7236ee7a 2571 }
2efedc7b 2572
fcf57625 2573 return rv;
7236ee7a
N
2574}
2575
2576/* in 2.6.30, the value reported by sync_completed can be
2577 * less that it should be by one stripe.
2578 * This only happens when reshape hits sync_max and pauses.
2579 * So allow wait_backup to either extent sync_max further
2580 * than strictly necessary, or return before the
2581 * sync has got quite as far as we would really like.
2582 * This is what 'blocks2' is for.
2583 * The various caller give appropriate values so that
2584 * every works.
2585 */
fcf57625 2586/* FIXME return value is often ignored */
7443ee81 2587static int forget_backup(
7236ee7a
N
2588 int dests, int *destfd, unsigned long long *destoffsets,
2589 int part)
2590{
7443ee81
N
2591 /*
2592 * Erase backup 'part' (which is 0 or 1)
7236ee7a 2593 */
7236ee7a 2594 int i;
fcf57625 2595 int rv;
7236ee7a 2596
7236ee7a
N
2597 if (part) {
2598 bsb.arraystart2 = __cpu_to_le64(0);
2599 bsb.length2 = __cpu_to_le64(0);
2600 } else {
2601 bsb.arraystart = __cpu_to_le64(0);
2602 bsb.length = __cpu_to_le64(0);
2603 }
97396422 2604 bsb.mtime = __cpu_to_le64(time(0));
fcf57625 2605 rv = 0;
7236ee7a
N
2606 for (i = 0; i < dests; i++) {
2607 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2608 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2609 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2610 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2611 ((char*)&bsb.sb_csum2)-((char*)&bsb));
f21e18ca 2612 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
a847575a 2613 destoffsets[i]-4096)
72044953
N
2614 rv = -1;
2615 if (rv == 0 &&
2616 write(destfd[i], &bsb, 512) != 512)
2617 rv = -1;
7236ee7a
N
2618 fsync(destfd[i]);
2619 }
fcf57625 2620 return rv;
7236ee7a 2621}
e86c9dd6 2622
7236ee7a
N
2623static void fail(char *msg)
2624{
fcf57625 2625 int rv;
72044953
N
2626 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
2627 rv |= (write(2, "\n", 1) != 1);
fcf57625 2628 exit(rv ? 1 : 2);
7236ee7a
N
2629}
2630
2631static char *abuf, *bbuf;
f21e18ca 2632static unsigned long long abuflen;
7236ee7a
N
2633static void validate(int afd, int bfd, unsigned long long offset)
2634{
2635 /* check that the data in the backup against the array.
2636 * This is only used for regression testing and should not
2637 * be used while the array is active
2638 */
7236ee7a
N
2639 if (afd < 0)
2640 return;
2641 lseek64(bfd, offset - 4096, 0);
2642 if (read(bfd, &bsb2, 512) != 512)
2643 fail("cannot read bsb");
2644 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
2645 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
2646 fail("first csum bad");
2647 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
2648 fail("magic is bad");
2649 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
2650 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
2651 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
2652 fail("second csum bad");
2653
2654 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
2655 fail("devstart is wrong");
2656
2657 if (bsb2.length) {
2658 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
2659
2660 if (abuflen < len) {
2661 free(abuf);
2662 free(bbuf);
2663 abuflen = len;
fcf57625
N
2664 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
2665 posix_memalign((void**)&bbuf, 4096, abuflen)) {
2666 abuflen = 0;
2667 /* just stop validating on mem-alloc failure */
2668 return;
2669 }
e86c9dd6 2670 }
48924014 2671
7236ee7a 2672 lseek64(bfd, offset, 0);
f21e18ca 2673 if ((unsigned long long)read(bfd, bbuf, len) != len) {
080fd005 2674 //printf("len %llu\n", len);
7236ee7a
N
2675 fail("read first backup failed");
2676 }
2677 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
f21e18ca 2678 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2679 fail("read first from array failed");
2680 if (memcmp(bbuf, abuf, len) != 0) {
080fd005 2681 #if 0
7236ee7a
N
2682 int i;
2683 printf("offset=%llu len=%llu\n",
080fd005 2684 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
7236ee7a
N
2685 for (i=0; i<len; i++)
2686 if (bbuf[i] != abuf[i]) {
2687 printf("first diff byte %d\n", i);
93ecfa01 2688 break;
7236ee7a 2689 }
080fd005 2690 #endif
7236ee7a 2691 fail("data1 compare failed");
e86c9dd6 2692 }
7236ee7a
N
2693 }
2694 if (bsb2.length2) {
2695 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
2696
2697 if (abuflen < len) {
2698 free(abuf);
2699 free(bbuf);
2700 abuflen = len;
2701 abuf = malloc(abuflen);
2702 bbuf = malloc(abuflen);
e86c9dd6
NB
2703 }
2704
7236ee7a 2705 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
f21e18ca 2706 if ((unsigned long long)read(bfd, bbuf, len) != len)
7236ee7a
N
2707 fail("read second backup failed");
2708 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
f21e18ca 2709 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2710 fail("read second from array failed");
2711 if (memcmp(bbuf, abuf, len) != 0)
2712 fail("data2 compare failed");
e86c9dd6 2713 }
7236ee7a 2714}
e86c9dd6 2715
999b4972
N
2716int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
2717 struct supertype *st, unsigned long blocks,
2718 int *fds, unsigned long long *offsets,
2719 int dests, int *destfd, unsigned long long *destoffsets)
7236ee7a 2720{
7443ee81
N
2721 /* Monitor a reshape where backup is being performed using
2722 * 'native' mechanism - either to a backup file, or
2723 * to some space in a spare.
2724 */
7236ee7a 2725 char *buf;
7443ee81
N
2726 int degraded = -1;
2727 unsigned long long speed;
2728 unsigned long long suspend_point, array_size;
2729 unsigned long long backup_point, wait_point;
2730 unsigned long long reshape_completed;
2731 int done = 0;
2732 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
2733 int part = 0; /* The next part of the backup area to fill. It may already
2734 * be full, so we need to check */
2735 int level = reshape->level;
2736 int layout = reshape->before.layout;
2737 int data = reshape->before.data_disks;
2738 int disks = reshape->before.data_disks + reshape->parity;
2739 int chunk = sra->array.chunk_size;
da8100ca
N
2740 struct mdinfo *sd;
2741 unsigned long stripes;
2742
2743 /* set up the backup-super-block. This requires the
2744 * uuid from the array.
2745 */
2746 /* Find a superblock */
2747 for (sd = sra->devs; sd; sd = sd->next) {
2748 char *dn;
2749 int devfd;
2750 int ok;
2751 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2752 continue;
2753 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
2754 devfd = dev_open(dn, O_RDONLY);
2755 if (devfd < 0)
2756 continue;
2757 ok = st->ss->load_super(st, devfd, NULL);
2758 close(devfd);
2759 if (ok >= 0)
2760 break;
2761 }
2762 if (!sd) {
2763 fprintf(stderr, Name ": Cannot find a superblock\n");
2764 return 0;
2765 }
2766
2767 memset(&bsb, 0, 512);
2768 memcpy(bsb.magic, "md_backup_data-1", 16);
2769 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2770 bsb.mtime = __cpu_to_le64(time(0));
2771 bsb.devstart2 = blocks;
2772
2773 stripes = blocks / (sra->array.chunk_size/512) /
2774 reshape->before.data_disks;
e86c9dd6 2775
fcf57625
N
2776 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2777 /* Don't start the 'reshape' */
2778 return 0;
7443ee81
N
2779 if (reshape->before.data_disks == reshape->after.data_disks) {
2780 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
2781 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
2782 }
e86c9dd6 2783
7443ee81 2784 if (increasing) {
96533072 2785 array_size = sra->component_size * reshape->after.data_disks;
7443ee81
N
2786 backup_point = sra->reshape_progress;
2787 suspend_point = 0;
2788 } else {
96533072 2789 array_size = sra->component_size * reshape->before.data_disks;
25da62d9 2790 backup_point = reshape->backup_blocks;
7443ee81
N
2791 suspend_point = array_size;
2792 }
7236ee7a 2793
7443ee81
N
2794 while (!done) {
2795 int rv;
7236ee7a 2796
7443ee81
N
2797 /* Want to return as soon the oldest backup slot can
2798 * be released as that allows us to start backing up
2799 * some more, providing suspend_point has been
b6b95155 2800 * advanced, which it should have.
7443ee81
N
2801 */
2802 if (increasing) {
2803 wait_point = array_size;
2804 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2805 wait_point = (__le64_to_cpu(bsb.arraystart) +
2806 __le64_to_cpu(bsb.length));
2807 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2808 wait_point = (__le64_to_cpu(bsb.arraystart2) +
2809 __le64_to_cpu(bsb.length2));
2810 } else {
2811 wait_point = 0;
2812 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2813 wait_point = __le64_to_cpu(bsb.arraystart);
2814 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2815 wait_point = __le64_to_cpu(bsb.arraystart2);
2816 }
2817
2818 rv = progress_reshape(sra, reshape,
2819 backup_point, wait_point,
2820 &suspend_point, &reshape_completed);
7443ee81
N
2821 /* external metadata would need to ping_monitor here */
2822 sra->reshape_progress = reshape_completed;
7236ee7a 2823
7443ee81
N
2824 /* Clear any backup region that is before 'here' */
2825 if (increasing) {
2826 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
2827 __le64_to_cpu(bsb.length)))
2828 forget_backup(dests, destfd,
2829 destoffsets, 0);
2830 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
2831 __le64_to_cpu(bsb.length2)))
2832 forget_backup(dests, destfd,
2833 destoffsets, 1);
2834 } else {
2835 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
2836 forget_backup(dests, destfd,
2837 destoffsets, 0);
2838 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
2839 forget_backup(dests, destfd,
2840 destoffsets, 1);
2841 }
7236ee7a 2842
223c5c99 2843 if (rv < 0) {
77a73a17
N
2844 if (rv == -1)
2845 done = 1;
223c5c99
N
2846 break;
2847 }
2848
60204e4e 2849 while (rv) {
7443ee81 2850 unsigned long long offset;
e97ca002 2851 unsigned long actual_stripes;
60204e4e
N
2852 /* Need to backup some data.
2853 * If 'part' is not used and the desired
2854 * backup size is suspended, do a backup,
2855 * then consider the next part.
2856 */
7443ee81
N
2857 /* Check that 'part' is unused */
2858 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
60204e4e 2859 break;
7443ee81 2860 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
60204e4e 2861 break;
7443ee81
N
2862
2863 offset = backup_point / data;
e97ca002 2864 actual_stripes = stripes;
60204e4e 2865 if (increasing) {
e97ca002
N
2866 if (offset + actual_stripes * (chunk/512) >
2867 sra->component_size)
2868 actual_stripes = ((sra->component_size - offset)
2869 / (chunk/512));
2870 if (offset + actual_stripes * (chunk/512) >
60204e4e
N
2871 suspend_point/data)
2872 break;
2873 } else {
e97ca002
N
2874 if (offset < actual_stripes * (chunk/512))
2875 actual_stripes = offset / (chunk/512);
2876 offset -= actual_stripes * (chunk/512);
2877 if (offset < suspend_point/data)
60204e4e
N
2878 break;
2879 }
e97ca002 2880 grow_backup(sra, offset, actual_stripes,
7443ee81
N
2881 fds, offsets,
2882 disks, chunk, level, layout,
2883 dests, destfd, destoffsets,
2884 part, &degraded, buf);
2885 validate(afd, destfd[0], destoffsets[0]);
2886 /* record where 'part' is up to */
2887 part = !part;
2888 if (increasing)
e97ca002 2889 backup_point += actual_stripes * (chunk/512) * data;
7443ee81 2890 else
e97ca002 2891 backup_point -= actual_stripes * (chunk/512) * data;
7443ee81
N
2892 }
2893 }
2894
223c5c99
N
2895 /* FIXME maybe call progress_reshape one more time instead */
2896 abort_reshape(sra); /* remove any remaining suspension */
7443ee81
N
2897 if (reshape->before.data_disks == reshape->after.data_disks)
2898 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
7236ee7a 2899 free(buf);
77a73a17 2900 return done;
e86c9dd6 2901}
353632d9
NB
2902
2903/*
2904 * If any spare contains md_back_data-1 which is recent wrt mtime,
2905 * write that data into the array and update the super blocks with
2906 * the new reshape_progress
2907 */
ea0ebe96
N
2908int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
2909 char *backup_file, int verbose)
353632d9
NB
2910{
2911 int i, j;
2912 int old_disks;
353632d9 2913 unsigned long long *offsets;
82f2d6ab 2914 unsigned long long nstripe, ostripe;
6e9eac4f 2915 int ndata, odata;
353632d9 2916
e9e43ec3
N
2917 if (info->new_level != info->array.level)
2918 return 1; /* Cannot handle level changes (they are instantaneous) */
2919
2920 odata = info->array.raid_disks - info->delta_disks - 1;
2921 if (info->array.level == 6) odata--; /* number of data disks */
2922 ndata = info->array.raid_disks - 1;
2923 if (info->new_level == 6) ndata--;
353632d9
NB
2924
2925 old_disks = info->array.raid_disks - info->delta_disks;
2926
e9e43ec3
N
2927 if (info->delta_disks <= 0)
2928 /* Didn't grow, so the backup file must have
2929 * been used
2930 */
2931 old_disks = cnt;
06b0d786 2932 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 2933 struct mdinfo dinfo;
06b0d786 2934 int fd;
e9e43ec3 2935 int bsbsize;
ea0ebe96 2936 char *devname, namebuf[20];
353632d9
NB
2937
2938 /* This was a spare and may have some saved data on it.
2939 * Load the superblock, find and load the
2940 * backup_super_block.
2941 * If either fail, go on to next device.
2942 * If the backup contains no new info, just return
206c5eae 2943 * else restore data and update all superblocks
353632d9 2944 */
06b0d786
NB
2945 if (i == old_disks-1) {
2946 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
2947 if (fd<0) {
2948 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
2949 backup_file, strerror(errno));
06b0d786 2950 continue;
e9e43ec3 2951 }
ea0ebe96 2952 devname = backup_file;
06b0d786
NB
2953 } else {
2954 fd = fdlist[i];
2955 if (fd < 0)
2956 continue;
3da92f27 2957 if (st->ss->load_super(st, fd, NULL))
06b0d786 2958 continue;
353632d9 2959
a5d85af7 2960 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27
NB
2961 st->ss->free_super(st);
2962
06b0d786
NB
2963 if (lseek64(fd,
2964 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
2965 0) < 0) {
2966 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 2967 continue; /* Cannot seek */
ea0ebe96
N
2968 }
2969 sprintf(namebuf, "device-%d", i);
2970 devname = namebuf;
06b0d786 2971 }
ea0ebe96
N
2972 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
2973 if (verbose)
2974 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 2975 continue; /* Cannot read */
ea0ebe96 2976 }
e9e43ec3 2977 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
2978 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
2979 if (verbose)
2980 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 2981 continue;
ea0ebe96
N
2982 }
2983 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
2984 if (verbose)
2985 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 2986 continue; /* bad checksum */
ea0ebe96 2987 }
e9e43ec3 2988 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
2989 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
2990 if (verbose)
2991 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 2992 continue; /* Bad second checksum */
ea0ebe96
N
2993 }
2994 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
2995 if (verbose)
2996 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 2997 continue; /* Wrong uuid */
ea0ebe96 2998 }
353632d9 2999
097075b6
N
3000 /* array utime and backup-mtime should be updated at much the same time, but it seems that
3001 * sometimes they aren't... So allow considerable flexability in matching, and allow
3002 * this test to be overridden by an environment variable.
3003 */
f21e18ca
N
3004 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
3005 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
097075b6
N
3006 if (check_env("MDADM_GROW_ALLOW_OLD")) {
3007 fprintf(stderr, Name ": accepting backup with timestamp %lu "
3008 "for array with timestamp %lu\n",
3009 (unsigned long)__le64_to_cpu(bsb.mtime),
3010 (unsigned long)info->array.utime);
3011 } else {
3012 if (verbose)
3013 fprintf(stderr, Name ": too-old timestamp on "
3014 "backup-metadata on %s\n", devname);
3015 continue; /* time stamp is too bad */
3016 }
ea0ebe96 3017 }
353632d9 3018
e9e43ec3
N
3019 if (bsb.magic[15] == '1') {
3020 if (info->delta_disks >= 0) {
3021 /* reshape_progress is increasing */
3022 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
ea0ebe96
N
3023 info->reshape_progress) {
3024 nonew:
3025 if (verbose)
3026 fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
e9e43ec3 3027 continue; /* No new data here */
ea0ebe96 3028 }
e9e43ec3
N
3029 } else {
3030 /* reshape_progress is decreasing */
3031 if (__le64_to_cpu(bsb.arraystart) >=
3032 info->reshape_progress)
ea0ebe96 3033 goto nonew; /* No new data here */
e9e43ec3
N
3034 }
3035 } else {
3036 if (info->delta_disks >= 0) {
3037 /* reshape_progress is increasing */
3038 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
3039 info->reshape_progress &&
3040 __le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
3041 info->reshape_progress)
ea0ebe96 3042 goto nonew; /* No new data here */
e9e43ec3
N
3043 } else {
3044 /* reshape_progress is decreasing */
3045 if (__le64_to_cpu(bsb.arraystart) >=
3046 info->reshape_progress &&
3047 __le64_to_cpu(bsb.arraystart2) >=
3048 info->reshape_progress)
ea0ebe96 3049 goto nonew; /* No new data here */
e9e43ec3
N
3050 }
3051 }
ea0ebe96
N
3052 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
3053 second_fail:
3054 if (verbose)
3055 fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
3056 devname);
353632d9 3057 continue; /* Cannot seek */
ea0ebe96 3058 }
2efedc7b 3059 /* There should be a duplicate backup superblock 4k before here */
06b0d786 3060 if (lseek64(fd, -4096, 1) < 0 ||
0155af90 3061 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
ea0ebe96 3062 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
3063 if (bsb.magic[15] == '1')
3064 bsbsize = offsetof(struct mdp_backup_super, pad1);
3065 else
3066 bsbsize = offsetof(struct mdp_backup_super, pad);
ff94fb86 3067 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
ea0ebe96 3068 goto second_fail; /* Cannot find leading superblock */
2efedc7b 3069
353632d9
NB
3070 /* Now need the data offsets for all devices. */
3071 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
3072 for(j=0; j<info->array.raid_disks; j++) {
3073 if (fdlist[j] < 0)
3074 continue;
3da92f27 3075 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
3076 /* FIXME should be this be an error */
3077 continue;
a5d85af7 3078 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27 3079 st->ss->free_super(st);
14e5b4d7 3080 offsets[j] = dinfo.data_offset * 512;
353632d9
NB
3081 }
3082 printf(Name ": restoring critical section\n");
3083
3084 if (restore_stripes(fdlist, offsets,
3085 info->array.raid_disks,
3086 info->new_chunk,
3087 info->new_level,
3088 info->new_layout,
06b0d786 3089 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 3090 __le64_to_cpu(bsb.arraystart)*512,
e9e43ec3
N
3091 __le64_to_cpu(bsb.length)*512)) {
3092 /* didn't succeed, so giveup */
ea0ebe96
N
3093 if (verbose)
3094 fprintf(stderr, Name ": Error restoring backup from %s\n",
3095 devname);
e9e43ec3
N
3096 return 1;
3097 }
3098
3099 if (bsb.magic[15] == '2' &&
3100 restore_stripes(fdlist, offsets,
3101 info->array.raid_disks,
3102 info->new_chunk,
3103 info->new_level,
3104 info->new_layout,
3105 fd, __le64_to_cpu(bsb.devstart)*512 +
3106 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 3107 __le64_to_cpu(bsb.arraystart2)*512,
e9e43ec3 3108 __le64_to_cpu(bsb.length2)*512)) {
353632d9 3109 /* didn't succeed, so giveup */
ea0ebe96
N
3110 if (verbose)
3111 fprintf(stderr, Name ": Error restoring second backup from %s\n",
3112 devname);
2295250a 3113 return 1;
353632d9
NB
3114 }
3115
e9e43ec3 3116
353632d9
NB
3117 /* Ok, so the data is restored. Let's update those superblocks. */
3118
e9e43ec3
N
3119 if (info->delta_disks >= 0) {
3120 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
3121 __le64_to_cpu(bsb.length);
3122 if (bsb.magic[15] == '2') {
3123 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
3124 __le64_to_cpu(bsb.length2);
3125 if (p2 > info->reshape_progress)
3126 info->reshape_progress = p2;
3127 }
3128 } else {
3129 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
3130 if (bsb.magic[15] == '2') {
3131 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
3132 if (p2 < info->reshape_progress)
3133 info->reshape_progress = p2;
3134 }
3135 }
353632d9
NB
3136 for (j=0; j<info->array.raid_disks; j++) {
3137 if (fdlist[j] < 0) continue;
3da92f27 3138 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 3139 continue;
a5d85af7 3140 st->ss->getinfo_super(st, &dinfo, NULL);
e9e43ec3 3141 dinfo.reshape_progress = info->reshape_progress;
3da92f27 3142 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
3143 "_reshape_progress",
3144 NULL,0, 0, NULL);
3da92f27
NB
3145 st->ss->store_super(st, fdlist[j]);
3146 st->ss->free_super(st);
353632d9 3147 }
353632d9
NB
3148 return 0;
3149 }
6e9eac4f
NB
3150 /* Didn't find any backup data, try to see if any
3151 * was needed.
3152 */
82f2d6ab
N
3153 if (info->delta_disks < 0) {
3154 /* When shrinking, the critical section is at the end.
3155 * So see if we are before the critical section.
3156 */
3157 unsigned long long first_block;
3158 nstripe = ostripe = 0;
3159 first_block = 0;
3160 while (ostripe >= nstripe) {
3161 ostripe += info->array.chunk_size / 512;
3162 first_block = ostripe * odata;
3163 nstripe = first_block / ndata / (info->new_chunk/512) *
3164 (info->new_chunk/512);
3165 }
3166
3167 if (info->reshape_progress >= first_block)
3168 return 0;
6e9eac4f 3169 }
82f2d6ab
N
3170 if (info->delta_disks > 0) {
3171 /* See if we are beyond the critical section. */
3172 unsigned long long last_block;
3173 nstripe = ostripe = 0;
3174 last_block = 0;
3175 while (nstripe >= ostripe) {
3176 nstripe += info->new_chunk / 512;
3177 last_block = nstripe * ndata;
3178 ostripe = last_block / odata / (info->array.chunk_size/512) *
3179 (info->array.chunk_size/512);
3180 }
6e9eac4f 3181
82f2d6ab
N
3182 if (info->reshape_progress >= last_block)
3183 return 0;
3184 }
6e9eac4f 3185 /* needed to recover critical section! */
ea0ebe96
N
3186 if (verbose)
3187 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 3188 return 1;
353632d9 3189}
e9e43ec3
N
3190
3191int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
3192 char *backup_file)
3193{
7443ee81 3194 int err = sysfs_set_str(info, NULL, "array_state", "readonly");
e9e43ec3
N
3195 if (err)
3196 return err;
a93f87ee 3197 return reshape_array(NULL, mdfd, "array", st, info, 1, backup_file, 0, 0, 1);
e9e43ec3
N
3198}
3199
3200