]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
Grow: when restarting, do set new details if they are already set.
[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);
835 for (i=0; i < blocks + 1 ; i++) {
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;
e86c9dd6 1680
16d4d84e
AK
1681 if (reshape.level > 0 && st->ss->external) {
1682 /* make sure mdmon is aware of the new level */
1683 if (!mdmon_running(st->container_dev))
1684 start_mdmon(st->container_dev);
1685 ping_monitor(container);
1686 }
5da9ab98 1687 }
5da9ab98
N
1688 /* ->reshape_super might have chosen some spares from the
1689 * container that it wants to be part of the new array.
1690 * We can collect them with ->container_content and give
1691 * them to the kernel.
1692 */
1693 if (st->ss->reshape_super && st->ss->container_content) {
1694 char *subarray = strchr(info->text_version+1, '/')+1;
1695 struct mdinfo *info2 =
1696 st->ss->container_content(st, subarray);
1697 struct mdinfo *d;
1698
2dd0d697
AK
1699 if (info2) {
1700 sysfs_init(info2, fd, st->devnum);
5da9ab98
N
1701 for (d = info2->devs; d; d = d->next) {
1702 if (d->disk.state == 0 &&
1703 d->disk.raid_disk >= 0) {
1704 /* This is a spare that wants to
1705 * be part of the array.
1706 */
1707 add_disk(fd, st, info2, d);
1708 }
9860f271 1709 }
2dd0d697
AK
1710 sysfs_free(info2);
1711 }
5da9ab98 1712 }
1686dc25 1713
b4f8e38b 1714 if (reshape.backup_blocks == 0) {
5da9ab98
N
1715 /* No restriping needed, but we might need to impose
1716 * some more changes: layout, raid_disks, chunk_size
e86c9dd6 1717 */
24aebf3a
KW
1718 /* read current array info */
1719 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
1720 dprintf("Canot get array information.\n");
1721 goto release;
1722 }
1723 /* compare current array info with new values and if
1724 * it is different update them to new */
5da9ab98 1725 if (info->new_layout != UnSet &&
24aebf3a
KW
1726 info->new_layout != array.layout) {
1727 array.layout = info->new_layout;
1728 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 1729 fprintf(stderr, Name ": failed to set new layout\n");
631d7405 1730 goto release;
5da9ab98
N
1731 } else if (!quiet)
1732 printf("layout for %s set to %d\n",
24aebf3a 1733 devname, array.layout);
5da9ab98
N
1734 }
1735 if (info->delta_disks != UnSet &&
24aebf3a
KW
1736 info->delta_disks != 0 &&
1737 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
1738 array.raid_disks += info->delta_disks;
1739 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 1740 fprintf(stderr, Name ": failed to set raid disks\n");
631d7405 1741 goto release;
24aebf3a 1742 } else if (!quiet) {
5da9ab98 1743 printf("raid_disks for %s set to %d\n",
24aebf3a
KW
1744 devname, array.raid_disks);
1745 }
5da9ab98
N
1746 }
1747 if (info->new_chunk != 0 &&
24aebf3a 1748 info->new_chunk != array.chunk_size) {
5da9ab98
N
1749 if (sysfs_set_num(info, NULL,
1750 "chunk_size", info->new_chunk) != 0) {
1751 fprintf(stderr, Name ": failed to set chunk size\n");
631d7405 1752 goto release;
5da9ab98
N
1753 } else if (!quiet)
1754 printf("chunk size for %s set to %d\n",
24aebf3a 1755 devname, array.chunk_size);
4725bc31 1756 }
e35b189b 1757 unfreeze(st);
631d7405 1758 return 0;
5da9ab98 1759 }
19678e53 1760
5da9ab98
N
1761 /*
1762 * There are three possibilities.
1763 * 1/ The array will shrink.
1764 * We need to ensure the reshape will pause before reaching
1765 * the 'critical section'. We also need to fork and wait for
1766 * that to happen. When it does we
1767 * suspend/backup/complete/unfreeze
1768 *
1769 * 2/ The array will not change size.
1770 * This requires that we keep a backup of a sliding window
1771 * so that we can restore data after a crash. So we need
1772 * to fork and monitor progress.
1773 * In future we will allow the data_offset to change, so
1774 * a sliding backup becomes unnecessary.
1775 *
1776 * 3/ The array will grow. This is relatively easy.
1777 * However the kernel's restripe routines will cheerfully
1778 * overwrite some early data before it is safe. So we
1779 * need to make a backup of the early parts of the array
1780 * and be ready to restore it if rebuild aborts very early.
1781 * For externally managed metadata, we still need a forked
1782 * child to monitor the reshape and suspend IO over the region
1783 * that is being reshaped.
1784 *
1785 * We backup data by writing it to one spare, or to a
1786 * file which was given on command line.
1787 *
1788 * In each case, we first make sure that storage is available
1789 * for the required backup.
1790 * Then we:
1791 * - request the shape change.
1792 * - fork to handle backup etc.
1793 */
a93f87ee 1794started:
5da9ab98
N
1795 /* Check that we can hold all the data */
1796 get_dev_size(fd, NULL, &array_size);
1797 if (reshape.new_size < (array_size/512)) {
1798 fprintf(stderr,
1799 Name ": this change will reduce the size of the array.\n"
1800 " use --grow --array-size first to truncate array.\n"
1801 " e.g. mdadm --grow %s --array-size %llu\n",
1802 devname, reshape.new_size/2);
5da9ab98
N
1803 goto release;
1804 }
7236ee7a 1805
5da9ab98 1806 sra = sysfs_read(fd, 0,
3656edcd 1807 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
5da9ab98 1808 GET_CACHE);
5da9ab98
N
1809 if (!sra) {
1810 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
1811 devname);
5da9ab98
N
1812 goto release;
1813 }
7236ee7a 1814
5da9ab98
N
1815 /* Decide how many blocks (sectors) for a reshape
1816 * unit. The number we have so far is just a minimum
1817 */
b4f8e38b 1818 blocks = reshape.backup_blocks;
5da9ab98
N
1819 if (reshape.before.data_disks ==
1820 reshape.after.data_disks) {
1821 /* Make 'blocks' bigger for better throughput, but
1822 * not so big that we reject it below.
1823 * Try for 16 megabytes
1824 */
1825 while (blocks * 32 < sra->component_size &&
1826 blocks < 16*1024*2)
1827 blocks *= 2;
1828 } else
1829 fprintf(stderr, Name ": Need to backup %luK of critical "
1830 "section..\n", blocks/2);
1831
1832 if (blocks >= sra->component_size/2) {
1833 fprintf(stderr, Name ": %s: Something wrong"
1834 " - reshape aborted\n",
1835 devname);
5da9ab98
N
1836 goto release;
1837 }
7236ee7a 1838
5da9ab98
N
1839 /* Now we need to open all these devices so we can read/write.
1840 */
1841 nrdisks = array.raid_disks + sra->array.spare_disks;
1842 fdlist = malloc((1+nrdisks) * sizeof(int));
1843 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
1844 if (!fdlist || !offsets) {
1845 fprintf(stderr, Name ": malloc failed: grow aborted\n");
5da9ab98
N
1846 goto release;
1847 }
e380d3be 1848
5da9ab98
N
1849 d = reshape_prepare_fdlist(devname, sra, array.raid_disks,
1850 nrdisks, blocks, backup_file,
1851 fdlist, offsets);
1852 if (d < 0) {
5da9ab98
N
1853 goto release;
1854 }
1855 if (backup_file == NULL) {
374ba335 1856 if (reshape.after.data_disks <= reshape.before.data_disks) {
5da9ab98
N
1857 fprintf(stderr,
1858 Name ": %s: Cannot grow - need backup-file\n",
c03ef02d 1859 devname);
5da9ab98
N
1860 goto release;
1861 } else if (sra->array.spare_disks == 0) {
1862 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
1863 "backup-file to backup critical section\n",
e86c9dd6 1864 devname);
5da9ab98 1865 goto release;
e86c9dd6 1866 }
5da9ab98
N
1867 } else {
1868 if (!reshape_open_backup_file(backup_file, fd, devname,
1869 (signed)blocks,
a93f87ee 1870 fdlist+d, offsets+d, restart)) {
130994cb 1871 goto release;
e86c9dd6 1872 }
5da9ab98
N
1873 d++;
1874 }
7236ee7a 1875
5da9ab98
N
1876 /* lastly, check that the internal stripe cache is
1877 * large enough, or it won't work.
1878 * It must hold at least 4 stripes of the larger
1879 * chunk size
1880 */
1881 cache = max(info->array.chunk_size, info->new_chunk);
1882 cache *= 4; /* 4 stripes minimum */
1883 cache /= 512; /* convert to sectors */
1884 disks = min(reshape.before.data_disks, reshape.after.data_disks);
1885 /* make sure there is room for 'blocks' with a bit to spare */
1886 if (cache < 16 + blocks / disks)
1887 cache = 16 + blocks / disks;
1888 cache /= (4096/512); /* Covert from sectors to pages */
1889
1890 if (sra->cache_size < cache)
1891 subarray_set_num(container, sra, "stripe_cache_size",
1892 cache+1);
1893
1894 /* Right, everything seems fine. Let's kick things off.
1895 * If only changing raid_disks, use ioctl, else use
1896 * sysfs.
1897 */
1898 sync_metadata(st);
1899
b4f8e38b 1900 sra->new_chunk = info->new_chunk;
ddee071d 1901
a93f87ee 1902 if (info->reshape_active)
ddee071d 1903 sra->reshape_progress = info->reshape_progress;
f897078e
N
1904 else {
1905 sra->reshape_progress = 0;
1906 if (reshape.after.data_disks < reshape.before.data_disks)
1907 /* start from the end of the new array */
1908 sra->reshape_progress = (sra->component_size
1909 * reshape.after.data_disks);
1910 }
1911
1912 if (info->array.chunk_size == info->new_chunk &&
7477d513
AK
1913 reshape.before.layout == reshape.after.layout &&
1914 st->ss->external == 0) {
f897078e 1915 /* use SET_ARRAY_INFO but only if reshape hasn't started */
6ef421be 1916 ioctl(fd, GET_ARRAY_INFO, &array);
5da9ab98 1917 array.raid_disks = reshape.after.data_disks + reshape.parity;
f897078e
N
1918 if (!info->reshape_active &&
1919 ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
5da9ab98 1920 int err = errno;
631d7405 1921
5da9ab98
N
1922 fprintf(stderr,
1923 Name ": Cannot set device shape for %s: %s\n",
1924 devname, strerror(errno));
7bc71196 1925
5da9ab98
N
1926 if (err == EBUSY &&
1927 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1928 fprintf(stderr,
1929 " Bitmap must be removed before"
1930 " shape can be changed\n");
b5420ef3 1931
5da9ab98
N
1932 goto release;
1933 }
cdc60681
N
1934 } else if (info->reshape_active && !st->ss->external) {
1935 /* We don't need to set anything here for internal
1936 * metadata, and for kernels before 2.6.38 we can
1937 * fail if we try.
1938 */
5da9ab98
N
1939 } else {
1940 /* set them all just in case some old 'new_*' value
f897078e
N
1941 * persists from some earlier problem.
1942 * We even set them when restarting in the middle. They will
1943 * already be set in that case so this will be a no-op,
1944 * but it is hard to tell the difference.
7236ee7a 1945 */
631d7405 1946 int err = 0;
5da9ab98 1947 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
631d7405
N
1948 err = errno;
1949 if (!err && sysfs_set_num(sra, NULL, "layout",
5da9ab98 1950 reshape.after.layout) < 0)
631d7405
N
1951 err = errno;
1952 if (!err && subarray_set_num(container, sra, "raid_disks",
5da9ab98
N
1953 reshape.after.data_disks +
1954 reshape.parity) < 0)
631d7405
N
1955 err = errno;
1956 if (err) {
5da9ab98
N
1957 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1958 devname);
7236ee7a 1959
5da9ab98
N
1960 if (err == EBUSY &&
1961 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1962 fprintf(stderr,
1963 " Bitmap must be removed before"
1964 " shape can be changed\n");
1965 goto release;
e86c9dd6 1966 }
5da9ab98 1967 }
e86c9dd6 1968
1e971e71 1969 err = start_reshape(sra, (info->reshape_active && !st->ss->external));
fab32c97
AK
1970 if (err) {
1971 fprintf(stderr, Name ": Cannot start reshape for %s\n",
1972 devname);
1973 goto release;
1974 }
a93f87ee
N
1975 if (restart)
1976 sysfs_set_str(sra, NULL, "array_state", "active");
5da9ab98
N
1977
1978 /* Now we just need to kick off the reshape and watch, while
1979 * handling backups of the data...
1980 * This is all done by a forked background process.
1981 */
1982 switch(forked ? 0 : fork()) {
6b2d630c
N
1983 case -1:
1984 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1985 strerror(errno));
6b2d630c 1986 abort_reshape(sra);
631d7405 1987 goto release;
6b2d630c
N
1988 default:
1989 return 0;
5da9ab98 1990 case 0:
6b2d630c
N
1991 break;
1992 }
5da9ab98 1993
6b2d630c
N
1994 close(fd);
1995 if (check_env("MDADM_GROW_VERIFY"))
1996 fd = open(devname, O_RDONLY | O_DIRECT);
1997 else
1998 fd = -1;
1999 mlockall(MCL_FUTURE);
5da9ab98 2000
6b2d630c 2001 odisks = reshape.before.data_disks + reshape.parity;
582496b2 2002
6b2d630c
N
2003 if (st->ss->external) {
2004 /* metadata handler takes it from here */
2005 done = st->ss->manage_reshape(
2006 fd, sra, &reshape, st, blocks,
2007 fdlist, offsets,
2008 d - odisks, fdlist+odisks,
2009 offsets+odisks);
2010 } else
2011 done = child_monitor(
2012 fd, sra, &reshape, st, blocks,
2013 fdlist, offsets,
2014 d - odisks, fdlist+odisks,
2015 offsets+odisks);
2016
2017 if (backup_file && done)
2018 unlink(backup_file);
2019 if (!done) {
2020 abort_reshape(sra);
2021 goto out;
2022 }
1cbc5680
N
2023
2024 if (!st->ss->external &&
2025 !(reshape.before.data_disks != reshape.after.data_disks
2026 && info->custom_array_size) &&
2027 info->new_level == reshape.level &&
2028 !forked) {
2029 /* no need to wait for the reshape to finish as
2030 * there is nothing more to do.
2031 */
2032 exit(0);
2033 }
2034 wait_reshape(sra);
2035
2036 if (st->ss->external) {
2037 /* Re-load the metadata as much could have changed */
2038 int cfd = open_dev(st->container_dev);
2039 if (cfd >= 0) {
2040 ping_monitor(container);
2041 st->ss->free_super(st);
2042 st->ss->load_container(st, cfd, container);
2043 close(cfd);
2044 }
2045 }
2046
6b2d630c
N
2047 /* set new array size if required customer_array_size is used
2048 * by this metadata.
2049 */
2050 if (reshape.before.data_disks !=
2051 reshape.after.data_disks &&
2052 info->custom_array_size) {
2053 struct mdinfo *info2;
2054 char *subarray = strchr(info->text_version+1, '/')+1;
582496b2 2055
6b2d630c
N
2056 info2 = st->ss->container_content(st, subarray);
2057 if (info2) {
2058 unsigned long long current_size = 0;
2059 unsigned long long new_size =
2060 info2->custom_array_size/2;
2061
2062 if (sysfs_get_ll(sra,
2063 NULL,
2064 "array_size",
2065 &current_size) == 0 &&
2066 new_size > current_size) {
2067 if (sysfs_set_num(sra, NULL,
2068 "array_size", new_size)
2069 < 0)
2070 dprintf("Error: Cannot"
2071 " set array size");
2072 else
2073 dprintf("Array size "
2074 "changed");
2075 dprintf(" from %llu to %llu.\n",
2076 current_size, new_size);
582496b2 2077 }
6b2d630c 2078 sysfs_free(info2);
582496b2 2079 }
6b2d630c 2080 }
582496b2 2081
6b2d630c 2082 if (info->new_level != reshape.level) {
582496b2 2083
6b2d630c 2084 c = map_num(pers, info->new_level);
1cbc5680
N
2085 if (c) {
2086 err = sysfs_set_str(sra, NULL, "level", c);
2087 if (err)
2088 fprintf(stderr, Name\
2089 ": %s: could not set level "
2090 "to %s\n", devname, c);
2091 }
7236ee7a 2092 }
6b2d630c
N
2093out:
2094 if (forked)
2095 return 0;
2096 exit(0);
e86c9dd6 2097
6b2d630c 2098release:
1cbc5680 2099 if (orig_level != UnSet && sra) {
7236ee7a
N
2100 c = map_num(pers, orig_level);
2101 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
2102 fprintf(stderr, Name ": aborting level change\n");
2103 }
9202b8eb
N
2104 if (!forked)
2105 unfreeze(st);
631d7405 2106 return 1;
7236ee7a 2107}
e86c9dd6 2108
5da9ab98
N
2109int reshape_container(char *container, int cfd, char *devname,
2110 struct supertype *st,
2111 struct mdinfo *info,
2112 int force,
2113 char *backup_file,
2114 int quiet)
2115{
1bb174ba
AK
2116 struct mdinfo *cc = NULL;
2117
d8eb27f7
KA
2118 /* component_size is not meaningful for a container,
2119 * so pass '-1' meaning 'no change'
2120 */
2121 if (reshape_super(st, -1, info->new_level,
5da9ab98
N
2122 info->new_layout, info->new_chunk,
2123 info->array.raid_disks + info->delta_disks,
2124 backup_file, devname, quiet))
2125 return 1;
2126
2127 sync_metadata(st);
2128
1bb174ba
AK
2129 /* ping monitor to be sure that update is on disk
2130 */
2131 ping_monitor(container);
5da9ab98
N
2132
2133 switch (fork()) {
2134 case -1: /* error */
2135 perror("Cannot fork to complete reshape\n");
2136 return 1;
2137 default: /* parent */
2138 printf(Name ": multi-array reshape continues in background\n");
2139 return 0;
2140 case 0: /* child */
2141 break;
2142 }
2143
1bb174ba
AK
2144 while(1) {
2145 /* For each member array with reshape_active,
2146 * we need to perform the reshape.
2147 * We pick the first array that needs reshaping and
2148 * reshape it. reshape_array() will re-read the metadata
2149 * so the next time through a different array should be
2150 * ready for reshape.
2151 */
2152 struct mdinfo *content;
5da9ab98
N
2153 int rv;
2154 int fd;
2155 struct mdstat_ent *mdstat;
5da9ab98
N
2156 char *adev;
2157
1bb174ba 2158 sysfs_free(cc);
5da9ab98 2159
1bb174ba
AK
2160 cc = st->ss->container_content(st, NULL);
2161
2162 for (content = cc; content ; content = content->next) {
2163 char *subarray;
2164 if (!content->reshape_active)
2165 continue;
2166
2167 subarray = strchr(content->text_version+1, '/')+1;
2168 mdstat = mdstat_by_subdev(subarray,
2169 devname2devnum(container));
2170 if (!mdstat)
2171 continue;
2172 break;
2173 }
2174 if (!content)
2175 break;
5da9ab98 2176
55f14721 2177 fd = open_dev(mdstat->devnum);
5da9ab98
N
2178 if (fd < 0)
2179 break;
2180 adev = map_dev(dev2major(mdstat->devnum),
2181 dev2minor(mdstat->devnum),
2182 0);
2183 if (!adev)
1bb174ba
AK
2184 adev = content->text_version;
2185
2186 sysfs_init(content, fd, mdstat->devnum);
5da9ab98 2187
1bb174ba
AK
2188 rv = reshape_array(container, fd, adev, st,
2189 content, force,
a93f87ee 2190 backup_file, quiet, 1, 0);
5da9ab98
N
2191 close(fd);
2192 if (rv)
2193 break;
2194 }
9202b8eb 2195 unfreeze(st);
1bb174ba 2196 sysfs_free(cc);
5da9ab98
N
2197 exit(0);
2198}
2199
7236ee7a
N
2200/*
2201 * We run a child process in the background which performs the following
2202 * steps:
2203 * - wait for resync to reach a certain point
2204 * - suspend io to the following section
2205 * - backup that section
2206 * - allow resync to proceed further
2207 * - resume io
2208 * - discard the backup.
2209 *
2210 * When are combined in slightly different ways in the three cases.
2211 * Grow:
2212 * - suspend/backup/allow/wait/resume/discard
2213 * Shrink:
2214 * - allow/wait/suspend/backup/allow/wait/resume/discard
2215 * same-size:
2216 * - wait/resume/discard/suspend/backup/allow
2217 *
2218 * suspend/backup/allow always come together
2219 * wait/resume/discard do too.
2220 * For the same-size case we have two backups to improve flow.
2221 *
2222 */
e86c9dd6 2223
7443ee81
N
2224int progress_reshape(struct mdinfo *info, struct reshape *reshape,
2225 unsigned long long backup_point,
2226 unsigned long long wait_point,
2227 unsigned long long *suspend_point,
2228 unsigned long long *reshape_completed)
2229{
2230 /* This function is called repeatedly by the reshape manager.
2231 * It determines how much progress can safely be made and allows
2232 * that progress.
2233 * - 'info' identifies the array and particularly records in
2234 * ->reshape_progress the metadata's knowledge of progress
2235 * This is a sector offset from the start of the array
2236 * of the next array block to be relocated. This number
2237 * may increase from 0 or decrease from array_size, depending
2238 * on the type of reshape that is happening.
2239 * Note that in contrast, 'sync_completed' is a block count of the
2240 * reshape so far. It gives the distance between the start point
2241 * (head or tail of device) and the next place that data will be
2242 * written. It always increases.
2243 * - 'reshape' is the structure created by analyse_change
2244 * - 'backup_point' shows how much the metadata manager has backed-up
2245 * data. For reshapes with increasing progress, it is the next address
2246 * to be backed up, previous addresses have been backed-up. For
2247 * decreasing progress, it is the earliest address that has been
2248 * backed up - later address are also backed up.
2249 * So addresses between reshape_progress and backup_point are
2250 * backed up providing those are in the 'correct' order.
2251 * - 'wait_point' is an array address. When reshape_completed
2252 * passes this point, progress_reshape should return. It might
2253 * return earlier if it determines that ->reshape_progress needs
2254 * to be updated or further backup is needed.
2255 * - suspend_point is maintained by progress_reshape and the caller
2256 * should not touch it except to initialise to zero.
2257 * It is an array address and it only increases in 2.6.37 and earlier.
b6b95155 2258 * This makes it difficult to handle reducing reshapes with
7443ee81
N
2259 * external metadata.
2260 * However: it is similar to backup_point in that it records the
2261 * other end of a suspended region from reshape_progress.
2262 * it is moved to extend the region that is safe to backup and/or
2263 * reshape
2264 * - reshape_completed is read from sysfs and returned. The caller
2265 * should copy this into ->reshape_progress when it has reason to
2266 * believe that the metadata knows this, and any backup outside this
2267 * has been erased.
2268 *
2269 * Return value is:
2270 * 1 if more data from backup_point - but only as far as suspend_point,
2271 * should be backed up
2272 * 0 if things are progressing smoothly
2273 * -1 if the reshape is finished, either because it is all done,
2274 * or due to an error.
2275 */
2276
2277 int advancing = (reshape->after.data_disks
2278 >= reshape->before.data_disks);
38dad34a
N
2279 unsigned long long need_backup; /* All data between start of array and
2280 * here will at some point need to
2281 * be backed up.
d0ab945e 2282 */
7443ee81 2283 unsigned long long read_offset, write_offset;
b4f8e38b 2284 unsigned long long write_range;
7443ee81 2285 unsigned long long max_progress, target, completed;
d0ab945e
N
2286 unsigned long long array_size = (info->component_size
2287 * reshape->before.data_disks);
7443ee81 2288 int fd;
77a73a17 2289 char buf[20];
7443ee81
N
2290
2291 /* First, we unsuspend any region that is now known to be safe.
2292 * If suspend_point is on the 'wrong' side of reshape_progress, then
2293 * we don't have or need suspension at the moment. This is true for
2294 * native metadata when we don't need to back-up.
2295 */
2296 if (advancing) {
49cd738b 2297 if (info->reshape_progress <= *suspend_point)
7443ee81
N
2298 sysfs_set_num(info, NULL, "suspend_lo",
2299 info->reshape_progress);
2300 } else {
2301 /* Note: this won't work in 2.6.37 and before.
2302 * Something somewhere should make sure we don't need it!
2303 */
49cd738b 2304 if (info->reshape_progress >= *suspend_point)
7443ee81
N
2305 sysfs_set_num(info, NULL, "suspend_hi",
2306 info->reshape_progress);
2307 }
2308
2309 /* Now work out how far it is safe to progress.
2310 * If the read_offset for ->reshape_progress is less than
2311 * 'blocks' beyond the write_offset, we can only progress as far
2312 * as a backup.
2313 * Otherwise we can progress until the write_offset for the new location
2314 * reaches (within 'blocks' of) the read_offset at the current location.
2315 * However that region must be suspended unless we are using native
2316 * metadata.
2317 * If we need to suspend more, we limit it to 128M per device, which is
2318 * rather arbitrary and should be some time-based calculation.
2319 */
ec757320
N
2320 read_offset = info->reshape_progress / reshape->before.data_disks;
2321 write_offset = info->reshape_progress / reshape->after.data_disks;
b4f8e38b 2322 write_range = info->new_chunk/512;
38dad34a
N
2323 if (reshape->before.data_disks == reshape->after.data_disks)
2324 need_backup = array_size;
2325 else
2326 need_backup = reshape->backup_blocks;
7443ee81 2327 if (advancing) {
38dad34a 2328 if (read_offset < write_offset + write_range)
7443ee81 2329 max_progress = backup_point;
ddee071d 2330 else
7443ee81 2331 max_progress =
2f3dd5e4
N
2332 read_offset *
2333 reshape->after.data_disks;
7443ee81 2334 } else {
38dad34a
N
2335 if (read_offset > write_offset - write_range)
2336 /* Can only progress as far as has been backed up,
2337 * which must be suspended */
7443ee81 2338 max_progress = backup_point;
38dad34a
N
2339 else if (info->reshape_progress <= need_backup)
2340 max_progress = backup_point;
2341 else {
2342 if (info->array.major_version >= 0)
2343 /* Can progress until backup is needed */
2344 max_progress = need_backup;
2345 else {
2346 /* Can progress until metadata update is required */
2347 max_progress =
2348 read_offset *
2349 reshape->after.data_disks;
2350 /* but data must be suspended */
2351 if (max_progress < *suspend_point)
2352 max_progress = *suspend_point;
2353 }
7443ee81
N
2354 }
2355 }
2356
2357 /* We know it is safe to progress to 'max_progress' providing
2358 * it is suspended or we are using native metadata.
2359 * Consider extending suspend_point 128M per device if it
2360 * is less than 64M per device beyond reshape_progress.
2361 * But always do a multiple of 'blocks'
832b2b9a
N
2362 * FIXME this is too big - it takes to long to complete
2363 * this much.
7443ee81
N
2364 */
2365 target = 64*1024*2 * min(reshape->before.data_disks,
2366 reshape->after.data_disks);
b4f8e38b 2367 target /= reshape->backup_blocks;
7443ee81
N
2368 if (target < 2)
2369 target = 2;
b4f8e38b 2370 target *= reshape->backup_blocks;
7443ee81
N
2371
2372 /* For externally managed metadata we always need to suspend IO to
2373 * the area being reshaped so we regularly push suspend_point forward.
2374 * For native metadata we only need the suspend if we are going to do
2375 * a backup.
2376 */
2377 if (advancing) {
d0ab945e
N
2378 if ((need_backup > info->reshape_progress
2379 || info->array.major_version < 0) &&
7443ee81 2380 *suspend_point < info->reshape_progress + target) {
d0ab945e
N
2381 if (need_backup < *suspend_point + 2 * target)
2382 *suspend_point = need_backup;
2383 else if (*suspend_point + 2 * target < array_size)
7443ee81 2384 *suspend_point += 2 * target;
d0ab945e
N
2385 else
2386 *suspend_point = array_size;
7443ee81 2387 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
d0ab945e
N
2388 if (max_progress > *suspend_point)
2389 max_progress = *suspend_point;
7443ee81
N
2390 }
2391 } else {
38dad34a
N
2392 if (info->array.major_version >= 0) {
2393 /* Only need to suspend when about to backup */
2394 if (info->reshape_progress < need_backup * 2 &&
2395 *suspend_point > 0) {
d0ab945e 2396 *suspend_point = 0;
38dad34a
N
2397 sysfs_set_num(info, NULL, "suspend_lo", 0);
2398 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
2399 }
2400 } else {
2401 /* Need to suspend continually */
2402 if (info->reshape_progress < *suspend_point)
2403 *suspend_point = info->reshape_progress;
2404 if (*suspend_point + target < info->reshape_progress)
2405 /* No need to move suspend region yet */;
2406 else {
2407 if (*suspend_point >= 2 * target)
2408 *suspend_point -= 2 * target;
2409 else
2410 *suspend_point = 0;
2411 sysfs_set_num(info, NULL, "suspend_lo",
2412 *suspend_point);
2413 }
d0ab945e
N
2414 if (max_progress < *suspend_point)
2415 max_progress = *suspend_point;
7443ee81
N
2416 }
2417 }
2418
2419 /* now set sync_max to allow that progress. sync_max, like
2420 * sync_completed is a count of sectors written per device, so
2421 * we find the difference between max_progress and the start point,
2422 * and divide that by after.data_disks to get a sync_max
2423 * number.
2424 * At the same time we convert wait_point to a similar number
2425 * for comparing against sync_completed.
2426 */
92d1991f 2427 /* scale down max_progress to per_disk */
7443ee81 2428 max_progress /= reshape->after.data_disks;
92d1991f
N
2429 /* Round to chunk size as some kernels give an erroneously high number */
2430 max_progress /= info->new_chunk/512;
2431 max_progress *= info->new_chunk/512;
2432 /* Limit progress to the whole device */
2433 if (max_progress > info->component_size)
2434 max_progress = info->component_size;
7443ee81 2435 wait_point /= reshape->after.data_disks;
92d1991f
N
2436 if (!advancing) {
2437 /* switch from 'device offset' to 'processed block count' */
2438 max_progress = info->component_size - max_progress;
2439 wait_point = info->component_size - wait_point;
2440 }
7443ee81
N
2441
2442 sysfs_set_num(info, NULL, "sync_max", max_progress);
2443
2444 /* Now wait. If we have already reached the point that we were
2445 * asked to wait to, don't wait at all, else wait for any change.
2446 * We need to select on 'sync_completed' as that is the place that
2447 * notifications happen, but we are really interested in
2448 * 'reshape_position'
2449 */
2450 fd = sysfs_get_fd(info, NULL, "sync_completed");
2451 if (fd < 0)
77a73a17 2452 goto check_progress;
7443ee81
N
2453
2454 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2455 close(fd);
77a73a17 2456 goto check_progress;
7443ee81
N
2457 }
2458 while (completed < max_progress && completed < wait_point) {
2459 /* Check that sync_action is still 'reshape' to avoid
2460 * waiting forever on a dead array
2461 */
2462 char action[20];
2463 fd_set rfds;
2464 if (sysfs_get_str(info, NULL, "sync_action",
2465 action, 20) <= 0 ||
2466 strncmp(action, "reshape", 7) != 0)
2467 break;
26d6e157
AK
2468 /* Some kernels reset 'sync_completed' to zero
2469 * before setting 'sync_action' to 'idle'.
2470 * So we need these extra tests.
2471 */
2472 if (completed == 0 && advancing
2473 && info->reshape_progress > 0)
2474 break;
2475 if (completed == 0 && !advancing
2476 && info->reshape_progress < (info->component_size
2477 * reshape->after.data_disks))
2478 break;
7443ee81
N
2479 FD_ZERO(&rfds);
2480 FD_SET(fd, &rfds);
2481 select(fd+1, NULL, NULL, &rfds, NULL);
2482 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2483 close(fd);
77a73a17 2484 goto check_progress;
7443ee81
N
2485 }
2486 }
10d0d365
AK
2487 /* Some kernels reset 'sync_completed' to zero,
2488 * we need to have real point we are in md
2489 */
2490 if (completed == 0)
2491 completed = max_progress;
2492
92d1991f
N
2493 /* some kernels can give an incorrectly high 'completed' number */
2494 completed /= (info->new_chunk/512);
2495 completed *= (info->new_chunk/512);
7443ee81
N
2496 /* Convert 'completed' back in to a 'progress' number */
2497 completed *= reshape->after.data_disks;
2498 if (!advancing) {
2499 completed = info->component_size * reshape->after.data_disks
2500 - completed;
2501 }
2502 *reshape_completed = completed;
2503
2504 close(fd);
2505
2506 /* We return the need_backup flag. Caller will decide
d0ab945e 2507 * how much - a multiple of ->backup_blocks up to *suspend_point
7443ee81 2508 */
38dad34a
N
2509 if (advancing)
2510 return need_backup > info->reshape_progress;
2511 else
2512 return need_backup >= info->reshape_progress;
77a73a17
N
2513
2514check_progress:
2515 /* if we couldn't read a number from sync_completed, then
2516 * either the reshape did complete, or it aborted.
2517 * We can tell which by checking for 'none' in reshape_position.
2518 */
2519 strcpy(buf, "hi");
2520 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
2521 || strncmp(buf, "none", 4) != 0)
2522 return -2; /* abort */
6d5316f6
N
2523 else {
2524 /* Maybe racing with array shutdown - check state */
2525 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
2526 || strncmp(buf, "inactive", 8) == 0
2527 || strncmp(buf, "clear",5) == 0)
2528 return -2; /* abort */
77a73a17 2529 return -1; /* complete */
6d5316f6 2530 }
7443ee81
N
2531}
2532
2533
fcf57625 2534/* FIXME return status is never checked */
4411fb17 2535static int grow_backup(struct mdinfo *sra,
7236ee7a 2536 unsigned long long offset, /* per device */
7443ee81 2537 unsigned long stripes, /* per device, in old chunks */
7236ee7a
N
2538 int *sources, unsigned long long *offsets,
2539 int disks, int chunk, int level, int layout,
2540 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 2541 int part, int *degraded,
7236ee7a
N
2542 char *buf)
2543{
2544 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2545 * to storage 'destfd' (offset 'destoffsets'), after first
2546 * suspending IO. Then allow resync to continue
2547 * over the suspended section.
2548 * Use part 'part' of the backup-super-block.
2549 */
2550 int odata = disks;
2551 int rv = 0;
2552 int i;
f21e18ca
N
2553 unsigned long long ll;
2554 int new_degraded;
7236ee7a
N
2555 //printf("offset %llu\n", offset);
2556 if (level >= 4)
2557 odata--;
2558 if (level == 6)
2559 odata--;
7443ee81 2560
d4445387 2561 /* Check that array hasn't become degraded, else we might backup the wrong data */
2c6ac128
N
2562 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
2563 return -1; /* FIXME this error is ignored */
f21e18ca 2564 new_degraded = (int)ll;
d4445387
N
2565 if (new_degraded != *degraded) {
2566 /* check each device to ensure it is still working */
2567 struct mdinfo *sd;
2568 for (sd = sra->devs ; sd ; sd = sd->next) {
2569 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2570 continue;
2571 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2572 char sbuf[20];
2573 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
2574 strstr(sbuf, "faulty") ||
2575 strstr(sbuf, "in_sync") == NULL) {
2576 /* this device is dead */
2577 sd->disk.state = (1<<MD_DISK_FAULTY);
2578 if (sd->disk.raid_disk >= 0 &&
2579 sources[sd->disk.raid_disk] >= 0) {
2580 close(sources[sd->disk.raid_disk]);
2581 sources[sd->disk.raid_disk] = -1;
2582 }
2583 }
2584 }
2585 }
2586 *degraded = new_degraded;
2587 }
7236ee7a
N
2588 if (part) {
2589 bsb.arraystart2 = __cpu_to_le64(offset * odata);
200871ad 2590 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
2591 } else {
2592 bsb.arraystart = __cpu_to_le64(offset * odata);
200871ad 2593 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
2594 }
2595 if (part)
2596 bsb.magic[15] = '2';
2597 for (i = 0; i < dests; i++)
2598 if (part)
2599 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
2600 else
2601 lseek64(destfd[i], destoffsets[i], 0);
2602
2603 rv = save_stripes(sources, offsets,
2604 disks, chunk, level, layout,
2605 dests, destfd,
2606 offset*512*odata, stripes * chunk * odata,
2607 buf);
2608
2609 if (rv)
2610 return rv;
97396422 2611 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
2612 for (i = 0; i < dests; i++) {
2613 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2614
2615 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2616 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2617 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2618 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2619
72044953 2620 rv = -1;
f21e18ca
N
2621 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
2622 != destoffsets[i] - 4096)
72044953
N
2623 break;
2624 if (write(destfd[i], &bsb, 512) != 512)
2625 break;
ff94fb86 2626 if (destoffsets[i] > 4096) {
f21e18ca 2627 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
a847575a 2628 destoffsets[i]+stripes*chunk*odata)
72044953
N
2629 break;
2630 if (write(destfd[i], &bsb, 512) != 512)
2631 break;
ff94fb86 2632 }
7236ee7a 2633 fsync(destfd[i]);
72044953 2634 rv = 0;
7236ee7a 2635 }
2efedc7b 2636
fcf57625 2637 return rv;
7236ee7a
N
2638}
2639
2640/* in 2.6.30, the value reported by sync_completed can be
2641 * less that it should be by one stripe.
2642 * This only happens when reshape hits sync_max and pauses.
2643 * So allow wait_backup to either extent sync_max further
2644 * than strictly necessary, or return before the
2645 * sync has got quite as far as we would really like.
2646 * This is what 'blocks2' is for.
2647 * The various caller give appropriate values so that
2648 * every works.
2649 */
fcf57625 2650/* FIXME return value is often ignored */
7443ee81 2651static int forget_backup(
7236ee7a
N
2652 int dests, int *destfd, unsigned long long *destoffsets,
2653 int part)
2654{
7443ee81
N
2655 /*
2656 * Erase backup 'part' (which is 0 or 1)
7236ee7a 2657 */
7236ee7a 2658 int i;
fcf57625 2659 int rv;
7236ee7a 2660
7236ee7a
N
2661 if (part) {
2662 bsb.arraystart2 = __cpu_to_le64(0);
2663 bsb.length2 = __cpu_to_le64(0);
2664 } else {
2665 bsb.arraystart = __cpu_to_le64(0);
2666 bsb.length = __cpu_to_le64(0);
2667 }
97396422 2668 bsb.mtime = __cpu_to_le64(time(0));
fcf57625 2669 rv = 0;
7236ee7a
N
2670 for (i = 0; i < dests; i++) {
2671 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2672 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2673 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2674 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2675 ((char*)&bsb.sb_csum2)-((char*)&bsb));
f21e18ca 2676 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
a847575a 2677 destoffsets[i]-4096)
72044953
N
2678 rv = -1;
2679 if (rv == 0 &&
2680 write(destfd[i], &bsb, 512) != 512)
2681 rv = -1;
7236ee7a
N
2682 fsync(destfd[i]);
2683 }
fcf57625 2684 return rv;
7236ee7a 2685}
e86c9dd6 2686
7236ee7a
N
2687static void fail(char *msg)
2688{
fcf57625 2689 int rv;
72044953
N
2690 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
2691 rv |= (write(2, "\n", 1) != 1);
fcf57625 2692 exit(rv ? 1 : 2);
7236ee7a
N
2693}
2694
2695static char *abuf, *bbuf;
f21e18ca 2696static unsigned long long abuflen;
7236ee7a
N
2697static void validate(int afd, int bfd, unsigned long long offset)
2698{
2699 /* check that the data in the backup against the array.
2700 * This is only used for regression testing and should not
2701 * be used while the array is active
2702 */
7236ee7a
N
2703 if (afd < 0)
2704 return;
2705 lseek64(bfd, offset - 4096, 0);
2706 if (read(bfd, &bsb2, 512) != 512)
2707 fail("cannot read bsb");
2708 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
2709 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
2710 fail("first csum bad");
2711 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
2712 fail("magic is bad");
2713 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
2714 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
2715 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
2716 fail("second csum bad");
2717
2718 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
2719 fail("devstart is wrong");
2720
2721 if (bsb2.length) {
2722 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
2723
2724 if (abuflen < len) {
2725 free(abuf);
2726 free(bbuf);
2727 abuflen = len;
fcf57625
N
2728 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
2729 posix_memalign((void**)&bbuf, 4096, abuflen)) {
2730 abuflen = 0;
2731 /* just stop validating on mem-alloc failure */
2732 return;
2733 }
e86c9dd6 2734 }
48924014 2735
7236ee7a 2736 lseek64(bfd, offset, 0);
f21e18ca 2737 if ((unsigned long long)read(bfd, bbuf, len) != len) {
080fd005 2738 //printf("len %llu\n", len);
7236ee7a
N
2739 fail("read first backup failed");
2740 }
2741 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
f21e18ca 2742 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2743 fail("read first from array failed");
2744 if (memcmp(bbuf, abuf, len) != 0) {
080fd005 2745 #if 0
7236ee7a
N
2746 int i;
2747 printf("offset=%llu len=%llu\n",
080fd005 2748 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
7236ee7a
N
2749 for (i=0; i<len; i++)
2750 if (bbuf[i] != abuf[i]) {
2751 printf("first diff byte %d\n", i);
93ecfa01 2752 break;
7236ee7a 2753 }
080fd005 2754 #endif
7236ee7a 2755 fail("data1 compare failed");
e86c9dd6 2756 }
7236ee7a
N
2757 }
2758 if (bsb2.length2) {
2759 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
2760
2761 if (abuflen < len) {
2762 free(abuf);
2763 free(bbuf);
2764 abuflen = len;
2765 abuf = malloc(abuflen);
2766 bbuf = malloc(abuflen);
e86c9dd6
NB
2767 }
2768
7236ee7a 2769 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
f21e18ca 2770 if ((unsigned long long)read(bfd, bbuf, len) != len)
7236ee7a
N
2771 fail("read second backup failed");
2772 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
f21e18ca 2773 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2774 fail("read second from array failed");
2775 if (memcmp(bbuf, abuf, len) != 0)
2776 fail("data2 compare failed");
e86c9dd6 2777 }
7236ee7a 2778}
e86c9dd6 2779
999b4972
N
2780int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
2781 struct supertype *st, unsigned long blocks,
2782 int *fds, unsigned long long *offsets,
2783 int dests, int *destfd, unsigned long long *destoffsets)
7236ee7a 2784{
7443ee81
N
2785 /* Monitor a reshape where backup is being performed using
2786 * 'native' mechanism - either to a backup file, or
2787 * to some space in a spare.
2788 */
7236ee7a 2789 char *buf;
7443ee81
N
2790 int degraded = -1;
2791 unsigned long long speed;
2792 unsigned long long suspend_point, array_size;
2793 unsigned long long backup_point, wait_point;
2794 unsigned long long reshape_completed;
2795 int done = 0;
2796 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
2797 int part = 0; /* The next part of the backup area to fill. It may already
2798 * be full, so we need to check */
2799 int level = reshape->level;
2800 int layout = reshape->before.layout;
2801 int data = reshape->before.data_disks;
2802 int disks = reshape->before.data_disks + reshape->parity;
2803 int chunk = sra->array.chunk_size;
da8100ca
N
2804 struct mdinfo *sd;
2805 unsigned long stripes;
2806
2807 /* set up the backup-super-block. This requires the
2808 * uuid from the array.
2809 */
2810 /* Find a superblock */
2811 for (sd = sra->devs; sd; sd = sd->next) {
2812 char *dn;
2813 int devfd;
2814 int ok;
2815 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2816 continue;
2817 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
2818 devfd = dev_open(dn, O_RDONLY);
2819 if (devfd < 0)
2820 continue;
2821 ok = st->ss->load_super(st, devfd, NULL);
2822 close(devfd);
2823 if (ok >= 0)
2824 break;
2825 }
2826 if (!sd) {
2827 fprintf(stderr, Name ": Cannot find a superblock\n");
2828 return 0;
2829 }
2830
2831 memset(&bsb, 0, 512);
2832 memcpy(bsb.magic, "md_backup_data-1", 16);
2833 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2834 bsb.mtime = __cpu_to_le64(time(0));
2835 bsb.devstart2 = blocks;
2836
2837 stripes = blocks / (sra->array.chunk_size/512) /
2838 reshape->before.data_disks;
e86c9dd6 2839
fcf57625
N
2840 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2841 /* Don't start the 'reshape' */
2842 return 0;
7443ee81
N
2843 if (reshape->before.data_disks == reshape->after.data_disks) {
2844 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
2845 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
2846 }
e86c9dd6 2847
7443ee81 2848 if (increasing) {
96533072 2849 array_size = sra->component_size * reshape->after.data_disks;
7443ee81
N
2850 backup_point = sra->reshape_progress;
2851 suspend_point = 0;
2852 } else {
96533072 2853 array_size = sra->component_size * reshape->before.data_disks;
25da62d9 2854 backup_point = reshape->backup_blocks;
7443ee81
N
2855 suspend_point = array_size;
2856 }
7236ee7a 2857
7443ee81
N
2858 while (!done) {
2859 int rv;
7236ee7a 2860
7443ee81
N
2861 /* Want to return as soon the oldest backup slot can
2862 * be released as that allows us to start backing up
2863 * some more, providing suspend_point has been
b6b95155 2864 * advanced, which it should have.
7443ee81
N
2865 */
2866 if (increasing) {
2867 wait_point = array_size;
2868 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2869 wait_point = (__le64_to_cpu(bsb.arraystart) +
2870 __le64_to_cpu(bsb.length));
2871 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2872 wait_point = (__le64_to_cpu(bsb.arraystart2) +
2873 __le64_to_cpu(bsb.length2));
2874 } else {
2875 wait_point = 0;
2876 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
2877 wait_point = __le64_to_cpu(bsb.arraystart);
2878 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
2879 wait_point = __le64_to_cpu(bsb.arraystart2);
2880 }
2881
2882 rv = progress_reshape(sra, reshape,
2883 backup_point, wait_point,
2884 &suspend_point, &reshape_completed);
7443ee81
N
2885 /* external metadata would need to ping_monitor here */
2886 sra->reshape_progress = reshape_completed;
7236ee7a 2887
7443ee81
N
2888 /* Clear any backup region that is before 'here' */
2889 if (increasing) {
2890 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
2891 __le64_to_cpu(bsb.length)))
2892 forget_backup(dests, destfd,
2893 destoffsets, 0);
2894 if (reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
2895 __le64_to_cpu(bsb.length2)))
2896 forget_backup(dests, destfd,
2897 destoffsets, 1);
2898 } else {
2899 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
2900 forget_backup(dests, destfd,
2901 destoffsets, 0);
2902 if (reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
2903 forget_backup(dests, destfd,
2904 destoffsets, 1);
2905 }
7236ee7a 2906
223c5c99 2907 if (rv < 0) {
77a73a17
N
2908 if (rv == -1)
2909 done = 1;
223c5c99
N
2910 break;
2911 }
2912
60204e4e 2913 while (rv) {
7443ee81 2914 unsigned long long offset;
e97ca002 2915 unsigned long actual_stripes;
60204e4e
N
2916 /* Need to backup some data.
2917 * If 'part' is not used and the desired
2918 * backup size is suspended, do a backup,
2919 * then consider the next part.
2920 */
7443ee81
N
2921 /* Check that 'part' is unused */
2922 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
60204e4e 2923 break;
7443ee81 2924 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
60204e4e 2925 break;
7443ee81
N
2926
2927 offset = backup_point / data;
e97ca002 2928 actual_stripes = stripes;
60204e4e 2929 if (increasing) {
e97ca002
N
2930 if (offset + actual_stripes * (chunk/512) >
2931 sra->component_size)
2932 actual_stripes = ((sra->component_size - offset)
2933 / (chunk/512));
2934 if (offset + actual_stripes * (chunk/512) >
60204e4e
N
2935 suspend_point/data)
2936 break;
2937 } else {
e97ca002
N
2938 if (offset < actual_stripes * (chunk/512))
2939 actual_stripes = offset / (chunk/512);
2940 offset -= actual_stripes * (chunk/512);
2941 if (offset < suspend_point/data)
60204e4e
N
2942 break;
2943 }
e97ca002 2944 grow_backup(sra, offset, actual_stripes,
7443ee81
N
2945 fds, offsets,
2946 disks, chunk, level, layout,
2947 dests, destfd, destoffsets,
2948 part, &degraded, buf);
2949 validate(afd, destfd[0], destoffsets[0]);
2950 /* record where 'part' is up to */
2951 part = !part;
2952 if (increasing)
e97ca002 2953 backup_point += actual_stripes * (chunk/512) * data;
7443ee81 2954 else
e97ca002 2955 backup_point -= actual_stripes * (chunk/512) * data;
7443ee81
N
2956 }
2957 }
2958
223c5c99
N
2959 /* FIXME maybe call progress_reshape one more time instead */
2960 abort_reshape(sra); /* remove any remaining suspension */
7443ee81
N
2961 if (reshape->before.data_disks == reshape->after.data_disks)
2962 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
7236ee7a 2963 free(buf);
77a73a17 2964 return done;
e86c9dd6 2965}
353632d9
NB
2966
2967/*
2968 * If any spare contains md_back_data-1 which is recent wrt mtime,
2969 * write that data into the array and update the super blocks with
2970 * the new reshape_progress
2971 */
ea0ebe96
N
2972int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
2973 char *backup_file, int verbose)
353632d9
NB
2974{
2975 int i, j;
2976 int old_disks;
353632d9 2977 unsigned long long *offsets;
82f2d6ab 2978 unsigned long long nstripe, ostripe;
6e9eac4f 2979 int ndata, odata;
353632d9 2980
e9e43ec3
N
2981 if (info->new_level != info->array.level)
2982 return 1; /* Cannot handle level changes (they are instantaneous) */
2983
2984 odata = info->array.raid_disks - info->delta_disks - 1;
2985 if (info->array.level == 6) odata--; /* number of data disks */
2986 ndata = info->array.raid_disks - 1;
2987 if (info->new_level == 6) ndata--;
353632d9
NB
2988
2989 old_disks = info->array.raid_disks - info->delta_disks;
2990
e9e43ec3
N
2991 if (info->delta_disks <= 0)
2992 /* Didn't grow, so the backup file must have
2993 * been used
2994 */
2995 old_disks = cnt;
06b0d786 2996 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 2997 struct mdinfo dinfo;
06b0d786 2998 int fd;
e9e43ec3 2999 int bsbsize;
ea0ebe96 3000 char *devname, namebuf[20];
10af14c4 3001 unsigned long long lo, hi;
353632d9
NB
3002
3003 /* This was a spare and may have some saved data on it.
3004 * Load the superblock, find and load the
3005 * backup_super_block.
3006 * If either fail, go on to next device.
3007 * If the backup contains no new info, just return
206c5eae 3008 * else restore data and update all superblocks
353632d9 3009 */
06b0d786
NB
3010 if (i == old_disks-1) {
3011 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
3012 if (fd<0) {
3013 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
3014 backup_file, strerror(errno));
06b0d786 3015 continue;
e9e43ec3 3016 }
ea0ebe96 3017 devname = backup_file;
06b0d786
NB
3018 } else {
3019 fd = fdlist[i];
3020 if (fd < 0)
3021 continue;
3da92f27 3022 if (st->ss->load_super(st, fd, NULL))
06b0d786 3023 continue;
353632d9 3024
a5d85af7 3025 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27
NB
3026 st->ss->free_super(st);
3027
06b0d786
NB
3028 if (lseek64(fd,
3029 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
3030 0) < 0) {
3031 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 3032 continue; /* Cannot seek */
ea0ebe96
N
3033 }
3034 sprintf(namebuf, "device-%d", i);
3035 devname = namebuf;
06b0d786 3036 }
ea0ebe96
N
3037 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
3038 if (verbose)
3039 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 3040 continue; /* Cannot read */
ea0ebe96 3041 }
e9e43ec3 3042 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
3043 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
3044 if (verbose)
3045 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 3046 continue;
ea0ebe96
N
3047 }
3048 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
3049 if (verbose)
3050 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 3051 continue; /* bad checksum */
ea0ebe96 3052 }
e9e43ec3 3053 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
3054 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
3055 if (verbose)
3056 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 3057 continue; /* Bad second checksum */
ea0ebe96
N
3058 }
3059 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
3060 if (verbose)
3061 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 3062 continue; /* Wrong uuid */
ea0ebe96 3063 }
353632d9 3064
097075b6
N
3065 /* array utime and backup-mtime should be updated at much the same time, but it seems that
3066 * sometimes they aren't... So allow considerable flexability in matching, and allow
3067 * this test to be overridden by an environment variable.
3068 */
f21e18ca
N
3069 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
3070 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
097075b6
N
3071 if (check_env("MDADM_GROW_ALLOW_OLD")) {
3072 fprintf(stderr, Name ": accepting backup with timestamp %lu "
3073 "for array with timestamp %lu\n",
3074 (unsigned long)__le64_to_cpu(bsb.mtime),
3075 (unsigned long)info->array.utime);
3076 } else {
3077 if (verbose)
3078 fprintf(stderr, Name ": too-old timestamp on "
3079 "backup-metadata on %s\n", devname);
3080 continue; /* time stamp is too bad */
3081 }
ea0ebe96 3082 }
353632d9 3083
e9e43ec3 3084 if (bsb.magic[15] == '1') {
10af14c4
N
3085 if (bsb.length == 0)
3086 continue;
e7a71c6b
N
3087 if (info->delta_disks >= 0) {
3088 /* reshape_progress is increasing */
3089 if (__le64_to_cpu(bsb.arraystart)
3090 + __le64_to_cpu(bsb.length)
3091 < info->reshape_progress) {
3092 nonew:
3093 if (verbose)
3094 fprintf(stderr, Name
3095 ": backup-metadata found on %s but is not needed\n", devname);
3096 continue; /* No new data here */
3097 }
3098 } else {
3099 /* reshape_progress is decreasing */
3100 if (__le64_to_cpu(bsb.arraystart) >=
3101 info->reshape_progress)
3102 goto nonew; /* No new data here */
ea0ebe96 3103 }
e9e43ec3 3104 } else {
10af14c4
N
3105 if (bsb.length == 0 && bsb.length2 == 0)
3106 continue;
e7a71c6b
N
3107 if (info->delta_disks >= 0) {
3108 /* reshape_progress is increasing */
3109 if ((__le64_to_cpu(bsb.arraystart)
3110 + __le64_to_cpu(bsb.length)
3111 < info->reshape_progress)
3112 &&
3113 (__le64_to_cpu(bsb.arraystart2)
3114 + __le64_to_cpu(bsb.length2)
3115 < info->reshape_progress))
3116 goto nonew; /* No new data here */
3117 } else {
3118 /* reshape_progress is decreasing */
3119 if (__le64_to_cpu(bsb.arraystart) >=
3120 info->reshape_progress &&
3121 __le64_to_cpu(bsb.arraystart2) >=
3122 info->reshape_progress)
3123 goto nonew; /* No new data here */
3124 }
e9e43ec3 3125 }
ea0ebe96
N
3126 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
3127 second_fail:
3128 if (verbose)
e7a71c6b
N
3129 fprintf(stderr, Name
3130 ": Failed to verify secondary backup-metadata block on %s\n",
ea0ebe96 3131 devname);
353632d9 3132 continue; /* Cannot seek */
ea0ebe96 3133 }
2efedc7b 3134 /* There should be a duplicate backup superblock 4k before here */
06b0d786 3135 if (lseek64(fd, -4096, 1) < 0 ||
0155af90 3136 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
ea0ebe96 3137 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
3138 if (bsb.magic[15] == '1')
3139 bsbsize = offsetof(struct mdp_backup_super, pad1);
3140 else
3141 bsbsize = offsetof(struct mdp_backup_super, pad);
ff94fb86 3142 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
ea0ebe96 3143 goto second_fail; /* Cannot find leading superblock */
2efedc7b 3144
353632d9
NB
3145 /* Now need the data offsets for all devices. */
3146 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
3147 for(j=0; j<info->array.raid_disks; j++) {
3148 if (fdlist[j] < 0)
3149 continue;
3da92f27 3150 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
3151 /* FIXME should be this be an error */
3152 continue;
a5d85af7 3153 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27 3154 st->ss->free_super(st);
14e5b4d7 3155 offsets[j] = dinfo.data_offset * 512;
353632d9
NB
3156 }
3157 printf(Name ": restoring critical section\n");
3158
3159 if (restore_stripes(fdlist, offsets,
3160 info->array.raid_disks,
3161 info->new_chunk,
3162 info->new_level,
3163 info->new_layout,
06b0d786 3164 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 3165 __le64_to_cpu(bsb.arraystart)*512,
e9e43ec3
N
3166 __le64_to_cpu(bsb.length)*512)) {
3167 /* didn't succeed, so giveup */
ea0ebe96
N
3168 if (verbose)
3169 fprintf(stderr, Name ": Error restoring backup from %s\n",
3170 devname);
e9e43ec3
N
3171 return 1;
3172 }
3173
3174 if (bsb.magic[15] == '2' &&
3175 restore_stripes(fdlist, offsets,
3176 info->array.raid_disks,
3177 info->new_chunk,
3178 info->new_level,
3179 info->new_layout,
3180 fd, __le64_to_cpu(bsb.devstart)*512 +
3181 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 3182 __le64_to_cpu(bsb.arraystart2)*512,
e9e43ec3 3183 __le64_to_cpu(bsb.length2)*512)) {
353632d9 3184 /* didn't succeed, so giveup */
ea0ebe96
N
3185 if (verbose)
3186 fprintf(stderr, Name ": Error restoring second backup from %s\n",
3187 devname);
2295250a 3188 return 1;
353632d9
NB
3189 }
3190
e9e43ec3 3191
353632d9
NB
3192 /* Ok, so the data is restored. Let's update those superblocks. */
3193
10af14c4
N
3194 lo = hi = 0;
3195 if (bsb.length) {
3196 lo = __le64_to_cpu(bsb.arraystart);
3197 hi = lo + __le64_to_cpu(bsb.length);
3198 }
3199 if (bsb.magic[15] == '2' && bsb.length2) {
3200 unsigned long long lo1, hi1;
3201 lo1 = __le64_to_cpu(bsb.arraystart2);
3202 hi1 = lo1 + __le64_to_cpu(bsb.length2);
3203 if (lo == hi) {
3204 lo = lo1;
3205 hi = hi1;
3206 } else if (lo < lo1)
3207 hi = hi1;
3208 else
3209 lo = lo1;
3210 }
3211 if (lo < hi &&
3212 (info->reshape_progress < lo ||
3213 info->reshape_progress > hi))
3214 /* backup does not affect reshape_progress*/ ;
3215 else if (info->delta_disks >= 0) {
e9e43ec3
N
3216 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
3217 __le64_to_cpu(bsb.length);
3218 if (bsb.magic[15] == '2') {
3219 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
3220 __le64_to_cpu(bsb.length2);
3221 if (p2 > info->reshape_progress)
3222 info->reshape_progress = p2;
3223 }
3224 } else {
3225 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
3226 if (bsb.magic[15] == '2') {
3227 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
3228 if (p2 < info->reshape_progress)
3229 info->reshape_progress = p2;
3230 }
3231 }
353632d9
NB
3232 for (j=0; j<info->array.raid_disks; j++) {
3233 if (fdlist[j] < 0) continue;
3da92f27 3234 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 3235 continue;
a5d85af7 3236 st->ss->getinfo_super(st, &dinfo, NULL);
e9e43ec3 3237 dinfo.reshape_progress = info->reshape_progress;
3da92f27 3238 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
3239 "_reshape_progress",
3240 NULL,0, 0, NULL);
3da92f27
NB
3241 st->ss->store_super(st, fdlist[j]);
3242 st->ss->free_super(st);
353632d9 3243 }
353632d9
NB
3244 return 0;
3245 }
6e9eac4f
NB
3246 /* Didn't find any backup data, try to see if any
3247 * was needed.
3248 */
82f2d6ab
N
3249 if (info->delta_disks < 0) {
3250 /* When shrinking, the critical section is at the end.
3251 * So see if we are before the critical section.
3252 */
3253 unsigned long long first_block;
3254 nstripe = ostripe = 0;
3255 first_block = 0;
3256 while (ostripe >= nstripe) {
3257 ostripe += info->array.chunk_size / 512;
3258 first_block = ostripe * odata;
3259 nstripe = first_block / ndata / (info->new_chunk/512) *
3260 (info->new_chunk/512);
3261 }
3262
3263 if (info->reshape_progress >= first_block)
3264 return 0;
6e9eac4f 3265 }
82f2d6ab
N
3266 if (info->delta_disks > 0) {
3267 /* See if we are beyond the critical section. */
3268 unsigned long long last_block;
3269 nstripe = ostripe = 0;
3270 last_block = 0;
3271 while (nstripe >= ostripe) {
3272 nstripe += info->new_chunk / 512;
3273 last_block = nstripe * ndata;
3274 ostripe = last_block / odata / (info->array.chunk_size/512) *
3275 (info->array.chunk_size/512);
3276 }
6e9eac4f 3277
82f2d6ab
N
3278 if (info->reshape_progress >= last_block)
3279 return 0;
3280 }
6e9eac4f 3281 /* needed to recover critical section! */
ea0ebe96
N
3282 if (verbose)
3283 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 3284 return 1;
353632d9 3285}
e9e43ec3
N
3286
3287int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
3288 char *backup_file)
3289{
7443ee81 3290 int err = sysfs_set_str(info, NULL, "array_state", "readonly");
e9e43ec3
N
3291 if (err)
3292 return err;
a93f87ee 3293 return reshape_array(NULL, mdfd, "array", st, info, 1, backup_file, 0, 0, 1);
e9e43ec3
N
3294}
3295
3296