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