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