]> git.ipfire.org Git - thirdparty/mdadm.git/blame - Grow.c
FIX: sync_completed_fd handler has to be closed
[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
7236ee7a
N
456static int child_grow(int afd, struct mdinfo *sra, unsigned long blocks,
457 int *fds, unsigned long long *offsets,
458 int disks, int chunk, int level, int layout, int data,
459 int dests, int *destfd, unsigned long long *destoffsets);
460static int child_shrink(int afd, struct mdinfo *sra, unsigned long blocks,
461 int *fds, unsigned long long *offsets,
462 int disks, int chunk, int level, int layout, int data,
463 int dests, int *destfd, unsigned long long *destoffsets);
464static int child_same_size(int afd, struct mdinfo *sra, unsigned long blocks,
465 int *fds, unsigned long long *offsets,
e9e43ec3 466 unsigned long long start,
7236ee7a
N
467 int disks, int chunk, int level, int layout, int data,
468 int dests, int *destfd, unsigned long long *destoffsets);
469
7f2ba464 470static int freeze_container(struct supertype *st)
7236ee7a 471{
7f2ba464
DW
472 int container_dev = (st->container_dev != NoMdDev
473 ? st->container_dev : st->devnum);
474 char *container = devnum2devname(container_dev);
475
476 if (!container) {
477 fprintf(stderr, Name
478 ": could not determine container name, freeze aborted\n");
479 return -2;
480 }
481
482 if (block_monitor(container, 1)) {
483 fprintf(stderr, Name ": failed to freeze container\n");
484 return -2;
485 }
486
487 return 1;
488}
489
490static void unfreeze_container(struct supertype *st)
491{
492 int container_dev = (st->container_dev != NoMdDev
493 ? st->container_dev : st->devnum);
494 char *container = devnum2devname(container_dev);
495
496 if (!container) {
497 fprintf(stderr, Name
498 ": could not determine container name, unfreeze aborted\n");
499 return;
500 }
501
502 unblock_monitor(container, 1);
503}
504
505static int freeze(struct supertype *st)
506{
507 /* Try to freeze resync/rebuild on this array/container.
7236ee7a 508 * Return -1 if the array is busy,
7f2ba464 509 * return -2 container cannot be frozen,
7236ee7a
N
510 * return 0 if this kernel doesn't support 'frozen'
511 * return 1 if it worked.
512 */
7f2ba464
DW
513 if (st->ss->external)
514 return freeze_container(st);
515 else {
516 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
517 int err;
518
519 if (!sra)
520 return -1;
521 err = sysfs_freeze_array(sra);
522 sysfs_free(sra);
523 return err;
524 }
7236ee7a
N
525}
526
7f2ba464 527static void unfreeze(struct supertype *st, int frozen)
7236ee7a
N
528{
529 /* If 'frozen' is 1, unfreeze the array */
7f2ba464
DW
530 if (frozen <= 0)
531 return;
532
533 if (st->ss->external)
534 return unfreeze_container(st);
535 else {
536 struct mdinfo *sra = sysfs_read(-1, st->devnum, GET_VERSION);
537
538 if (sra)
539 sysfs_set_str(sra, NULL, "sync_action", "idle");
540 else
541 fprintf(stderr, Name ": failed to unfreeze array\n");
542 sysfs_free(sra);
543 }
7236ee7a
N
544}
545
4411fb17 546static void wait_reshape(struct mdinfo *sra)
7236ee7a
N
547{
548 int fd = sysfs_get_fd(sra, NULL, "sync_action");
549 char action[20];
550
551 do {
552 fd_set rfds;
553 FD_ZERO(&rfds);
554 FD_SET(fd, &rfds);
555 select(fd+1, NULL, NULL, &rfds, NULL);
556
557 if (sysfs_fd_get_str(fd, action, 20) < 0) {
558 close(fd);
559 return;
560 }
561 } while (strncmp(action, "reshape", 7) == 0);
562}
7bc71196
DW
563
564static int reshape_super(struct supertype *st, long long size, int level,
565 int layout, int chunksize, int raid_disks,
566 char *backup_file, char *dev, int verbose)
567{
568 /* nothing extra to check in the native case */
569 if (!st->ss->external)
570 return 0;
571 if (!st->ss->reshape_super ||
572 !st->ss->manage_reshape) {
573 fprintf(stderr, Name ": %s metadata does not support reshape\n",
574 st->ss->name);
575 return 1;
576 }
577
578 return st->ss->reshape_super(st, size, level, layout, chunksize,
579 raid_disks, backup_file, dev, verbose);
580}
581
582static void sync_metadata(struct supertype *st)
583{
584 if (st->ss->external) {
585 if (st->update_tail)
586 flush_metadata_updates(st);
587 else
588 st->ss->sync_metadata(st);
589 }
590}
591
592static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
593{
594 /* when dealing with external metadata subarrays we need to be
595 * prepared to handle EAGAIN. The kernel may need to wait for
596 * mdmon to mark the array active so the kernel can handle
597 * allocations/writeback when preparing the reshape action
598 * (md_allow_write()). We temporarily disable safe_mode_delay
599 * to close a race with the array_state going clean before the
600 * next write to raid_disks / stripe_cache_size
601 */
602 char safe[50];
603 int rc;
604
605 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
606 if (strcmp(name, "raid_disks") != 0 &&
607 strcmp(name, "stripe_cache_size") != 0)
608 return sysfs_set_num(sra, NULL, name, n);
609
610 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
611 if (rc <= 0)
612 return -1;
613 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
614 rc = sysfs_set_num(sra, NULL, name, n);
615 if (rc < 0 && errno == EAGAIN) {
616 ping_monitor(container);
617 /* if we get EAGAIN here then the monitor is not active
618 * so stop trying
619 */
620 rc = sysfs_set_num(sra, NULL, name, n);
621 }
622 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
623 return rc;
624}
625
626static int reshape_container_raid_disks(char *container, int raid_disks)
627{
628 /* for each subarray switch to a raid level that can
629 * support the reshape, and set raid disks
630 */
631 struct mdstat_ent *ent, *e;
632 int changed = 0, rv = 0, err = 0;
633
634 ent = mdstat_read(1, 0);
635 if (!ent) {
636 fprintf(stderr, Name ": unable to read /proc/mdstat\n");
637 return -1;
638 }
639
640 changed = 0;
641 for (e = ent; e; e = e->next) {
642 struct mdinfo *sub;
643 unsigned int cache;
644 int level, takeover_delta = 0;
645
646 if (!is_container_member(e, container))
647 continue;
648
649 level = map_name(pers, e->level);
650 if (level == 0) {
651 sub = sysfs_read(-1, e->devnum, GET_VERSION);
652 if (!sub)
653 break;
654 /* metadata records 'orig_level' */
655 rv = sysfs_set_num(sub, NULL, "level", 4);
656 if (rv < 0) {
657 err = errno;
658 break;
659 }
660 /* we want spares to be used for capacity
661 * expansion, not rebuild
662 */
663 takeover_delta = 1;
664
665 sysfs_free(sub);
666 level = 4;
667 }
668
669 sub = NULL;
670 switch (level) {
671 default:
672 rv = -1;
673 break;
674 case 4:
675 case 5:
676 case 6:
677 sub = sysfs_read(-1, e->devnum, GET_CHUNK|GET_CACHE);
678 if (!sub)
679 break;
680 cache = (sub->array.chunk_size / 4096) * 4;
681 if (cache > sub->cache_size)
682 rv = subarray_set_num(container, sub,
683 "stripe_cache_size", cache);
684 if (rv) {
685 err = errno;
686 break;
687 }
688 /* fall through */
689 case 1:
690 if (!sub)
691 sub = sysfs_read(-1, e->devnum, GET_VERSION);
692 if (!sub)
693 break;
694
695 rv = subarray_set_num(container, sub, "raid_disks",
696 raid_disks + takeover_delta);
697 if (rv)
698 err = errno;
699 else
700 changed++;
701 break;
702 }
703 sysfs_free(sub);
704 if (rv)
705 break;
706 }
707 free_mdstat(ent);
708 if (rv) {
709 fprintf(stderr, Name
710 ": failed to initiate container reshape%s%s\n",
711 err ? ": " : "", err ? strerror(err) : "");
712 return rv;
713 }
714
715 return changed;
716}
717
718static void revert_container_raid_disks(struct supertype *st, int fd, char *container)
719{
720 /* we failed to prepare all subarrays in the container for
721 * reshape, so cancel the changes and restore the nominal raid
722 * level
723 */
724 struct mdstat_ent *ent, *e;
725
726 ent = mdstat_read(0, 0);
727 if (!ent) {
728 fprintf(stderr, Name
729 ": failed to read /proc/mdstat while aborting reshape\n");
730 return;
731 }
732
7f2ba464
DW
733 if (st->ss->load_container(st, fd, NULL)) {
734 fprintf(stderr, Name
735 ": failed read metadata while aborting reshape\n");
736 return ;
737 }
738
739
7bc71196
DW
740 for (e = ent; e; e = e->next) {
741 int level_fixed = 0, disks_fixed = 0;
7f2ba464
DW
742 struct mdinfo *sub, *prev;
743 char *subarray;
7bc71196
DW
744
745 if (!is_container_member(e, container))
746 continue;
747
7f2ba464
DW
748 subarray = to_subarray(e, container);
749 prev = st->ss->container_content(st, subarray);
7bc71196
DW
750
751 /* changing level might change raid_disks so we do it
752 * first and then check if raid_disks still needs fixing
753 */
7f2ba464 754 if (map_name(pers, e->level) != prev->array.level) {
7bc71196
DW
755 sub = sysfs_read(-1, e->devnum, GET_VERSION);
756 if (sub &&
7f2ba464 757 !sysfs_set_num(sub, NULL, "level", prev->array.level))
7bc71196
DW
758 level_fixed = 1;
759 sysfs_free(sub);
760 } else
761 level_fixed = 1;
762
763 sub = sysfs_read(-1, e->devnum, GET_DISKS);
7f2ba464 764 if (sub && sub->array.raid_disks != prev->array.raid_disks) {
7bc71196 765 if (!subarray_set_num(container, sub, "raid_disks",
7f2ba464 766 prev->array.raid_disks))
7bc71196
DW
767 disks_fixed = 1;
768 } else if (sub)
769 disks_fixed = 1;
770 sysfs_free(sub);
771
772 if (!disks_fixed || !level_fixed)
773 fprintf(stderr, Name
774 ": failed to restore %s to a %d-disk %s array\n",
7f2ba464
DW
775 e->dev, prev->array.raid_disks,
776 map_num(pers, prev->array.level));
777 free(prev);
7bc71196 778 }
7f2ba464 779 st->ss->free_super(st);
7bc71196
DW
780 free_mdstat(ent);
781}
782
62a48395
AK
783int remove_disks_on_raid10_to_raid0_takeover(struct supertype *st,
784 struct mdinfo *sra,
785 int layout)
786{
787 int nr_of_copies;
788 struct mdinfo *remaining;
789 int slot;
790
791 nr_of_copies = layout & 0xff;
792
793 remaining = sra->devs;
794 sra->devs = NULL;
795 /* for each 'copy', select one device and remove from the list. */
796 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
797 struct mdinfo **diskp;
798 int found = 0;
799
800 /* Find a working device to keep */
801 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
802 struct mdinfo *disk = *diskp;
803
804 if (disk->disk.raid_disk < slot)
805 continue;
806 if (disk->disk.raid_disk >= slot + nr_of_copies)
807 continue;
808 if (disk->disk.state & (1<<MD_DISK_REMOVED))
809 continue;
810 if (disk->disk.state & (1<<MD_DISK_FAULTY))
811 continue;
812 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
813 continue;
814
815 /* We have found a good disk to use! */
816 *diskp = disk->next;
817 disk->next = sra->devs;
818 sra->devs = disk;
819 found = 1;
820 break;
821 }
822 if (!found)
823 break;
824 }
825
826 if (slot < sra->array.raid_disks) {
827 /* didn't find all slots */
828 struct mdinfo **e;
829 e = &remaining;
830 while (*e)
831 e = &(*e)->next;
832 *e = sra->devs;
833 sra->devs = remaining;
834 return 1;
835 }
836
837 /* Remove all 'remaining' devices from the array */
838 while (remaining) {
839 struct mdinfo *sd = remaining;
840 remaining = sd->next;
841
842 sysfs_set_str(sra, sd, "state", "faulty");
843 sysfs_set_str(sra, sd, "slot", "none");
844 sysfs_set_str(sra, sd, "state", "remove");
845 sd->disk.state |= (1<<MD_DISK_REMOVED);
846 sd->disk.state &= ~(1<<MD_DISK_SYNC);
847 sd->next = sra->devs;
848 sra->devs = sd;
849 }
850 return 0;
851}
852
130994cb
AK
853void reshape_free_fdlist(int *fdlist,
854 unsigned long long *offsets,
855 int size)
856{
857 int i;
858
859 for (i = 0; i < size; i++)
860 if (fdlist[i] >= 0)
861 close(fdlist[i]);
862
863 free(fdlist);
864 free(offsets);
865}
866
867int reshape_prepare_fdlist(char *devname,
868 struct mdinfo *sra,
869 int raid_disks,
870 int nrdisks,
871 unsigned long blocks,
872 char *backup_file,
873 int *fdlist,
874 unsigned long long *offsets)
875{
876 int d = 0;
877 struct mdinfo *sd;
878
879 for (d = 0; d <= nrdisks; d++)
880 fdlist[d] = -1;
881 d = raid_disks;
882 for (sd = sra->devs; sd; sd = sd->next) {
883 if (sd->disk.state & (1<<MD_DISK_FAULTY))
884 continue;
885 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
886 char *dn = map_dev(sd->disk.major,
887 sd->disk.minor, 1);
888 fdlist[sd->disk.raid_disk]
889 = dev_open(dn, O_RDONLY);
890 offsets[sd->disk.raid_disk] = sd->data_offset*512;
891 if (fdlist[sd->disk.raid_disk] < 0) {
892 fprintf(stderr,
893 Name ": %s: cannot open component %s\n",
894 devname, dn ? dn : "-unknown-");
895 d = -1;
896 goto release;
897 }
898 } else if (backup_file == NULL) {
899 /* spare */
900 char *dn = map_dev(sd->disk.major,
901 sd->disk.minor, 1);
902 fdlist[d] = dev_open(dn, O_RDWR);
903 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
904 if (fdlist[d] < 0) {
905 fprintf(stderr, Name ": %s: cannot open component %s\n",
906 devname, dn ? dn : "-unknown-");
907 d = -1;
908 goto release;
909 }
910 d++;
911 }
912 }
913release:
914 return d;
915}
916
e6e9d47b
AK
917int reshape_open_backup_file(char *backup_file,
918 int fd,
919 char *devname,
920 long blocks,
921 int *fdlist,
922 unsigned long long *offsets)
923{
924 /* Return 1 on success, 0 on any form of failure */
925 /* need to check backup file is large enough */
926 char buf[512];
927 struct stat stb;
928 unsigned int dev;
929 int i;
930
931 *fdlist = open(backup_file, O_RDWR|O_CREAT|O_EXCL,
932 S_IRUSR | S_IWUSR);
933 *offsets = 8 * 512;
934 if (*fdlist < 0) {
935 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
936 devname, backup_file, strerror(errno));
937 return 0;
938 }
939 /* Guard against backup file being on array device.
940 * If array is partitioned or if LVM etc is in the
941 * way this will not notice, but it is better than
942 * nothing.
943 */
944 fstat(*fdlist, &stb);
945 dev = stb.st_dev;
946 fstat(fd, &stb);
947 if (stb.st_rdev == dev) {
948 fprintf(stderr, Name ": backup file must NOT be"
949 " on the array being reshaped.\n");
950 close(*fdlist);
951 return 0;
952 }
953
954 memset(buf, 0, 512);
955 for (i=0; i < blocks + 1 ; i++) {
956 if (write(*fdlist, buf, 512) != 512) {
957 fprintf(stderr, Name ": %s: cannot create"
958 " backup file %s: %s\n",
959 devname, backup_file, strerror(errno));
960 return 0;
961 }
962 }
963 if (fsync(*fdlist) != 0) {
964 fprintf(stderr, Name ": %s: cannot create backup file %s: %s\n",
965 devname, backup_file, strerror(errno));
966 return 0;
967 }
968
969 return 1;
970}
971
1c009fc2
AK
972unsigned long compute_backup_blocks(int nchunk, int ochunk,
973 unsigned int ndata, unsigned int odata)
974{
975 unsigned long a, b, blocks;
976 /* So how much do we need to backup.
977 * We need an amount of data which is both a whole number of
978 * old stripes and a whole number of new stripes.
979 * So LCM for (chunksize*datadisks).
980 */
981 a = (ochunk/512) * odata;
982 b = (nchunk/512) * ndata;
983 /* Find GCD */
984 while (a != b) {
985 if (a < b)
986 b -= a;
987 if (b < a)
988 a -= b;
989 }
990 /* LCM == product / GCD */
991 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
992
993 return blocks;
994}
995
996
06b0d786 997int Grow_reshape(char *devname, int fd, int quiet, char *backup_file,
e86c9dd6 998 long long size,
19678e53 999 int level, char *layout_str, int chunksize, int raid_disks)
e86c9dd6
NB
1000{
1001 /* Make some changes in the shape of an array.
1002 * The kernel must support the change.
7236ee7a
N
1003 *
1004 * There are three different changes. Each can trigger
1005 * a resync or recovery so we freeze that until we have
1006 * requested everything (if kernel supports freezing - 2.6.30).
1007 * The steps are:
1008 * - change size (i.e. component_size)
1009 * - change level
1010 * - change layout/chunksize/ndisks
1011 *
1012 * The last can require a reshape. It is different on different
1013 * levels so we need to check the level before actioning it.
1014 * Some times the level change needs to be requested after the
1015 * reshape (e.g. raid6->raid5, raid5->raid0)
1016 *
e86c9dd6 1017 */
7236ee7a 1018 struct mdu_array_info_s array, orig;
e86c9dd6 1019 char *c;
7236ee7a 1020 int rv = 0;
e86c9dd6 1021 struct supertype *st;
4725bc31 1022 char *subarray = NULL;
e86c9dd6 1023
e86c9dd6
NB
1024 int nchunk, ochunk;
1025 int nlayout, olayout;
1026 int ndisks, odisks;
f21e18ca 1027 unsigned int ndata, odata;
7236ee7a
N
1028 int orig_level = UnSet;
1029 char alt_layout[40];
e86c9dd6
NB
1030 int *fdlist;
1031 unsigned long long *offsets;
e6e9d47b 1032 int d;
e86c9dd6
NB
1033 int nrdisks;
1034 int err;
7236ee7a 1035 int frozen;
1c009fc2 1036 unsigned long blocks, stripes;
f21e18ca 1037 unsigned long cache;
7236ee7a
N
1038 unsigned long long array_size;
1039 int changed = 0;
7bc71196
DW
1040 char *container = NULL;
1041 int cfd = -1;
7236ee7a 1042 int done;
e86c9dd6 1043
7e0f6979 1044 struct mdinfo *sra;
06c7f68e 1045 struct mdinfo *sd;
e86c9dd6
NB
1046
1047 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1048 fprintf(stderr, Name ": %s is not an active md array - aborting\n",
1049 devname);
1050 return 1;
1051 }
24d40069 1052
9ce510be
N
1053 if (size >= 0 &&
1054 (chunksize || level!= UnSet || layout_str || raid_disks)) {
1055 fprintf(stderr, Name ": cannot change component size at the same time "
1056 "as other changes.\n"
1057 " Change size first, then check data is intact before "
1058 "making other changes.\n");
1059 return 1;
1060 }
1061
24d40069
N
1062 if (raid_disks && raid_disks < array.raid_disks && array.level > 1 &&
1063 get_linux_version() < 2006032 &&
1064 !check_env("MDADM_FORCE_FEWER")) {
1065 fprintf(stderr, Name ": reducing the number of devices is not safe before Linux 2.6.32\n"
1066 " Please use a newer kernel\n");
1067 return 1;
1068 }
7bc71196
DW
1069
1070 st = super_by_fd(fd, &subarray);
1071 if (!st) {
1072 fprintf(stderr, Name ": Unable to determine metadata format for %s\n", devname);
1073 return 1;
1074 }
acab7bb1
N
1075 if (raid_disks > st->max_devs) {
1076 fprintf(stderr, Name ": Cannot increase raid-disks on this array"
1077 " beyond %d\n", st->max_devs);
1078 return 1;
1079 }
7bc71196
DW
1080
1081 /* in the external case we need to check that the requested reshape is
1082 * supported, and perform an initial check that the container holds the
1083 * pre-requisite spare devices (mdmon owns final validation)
1084 */
1085 if (st->ss->external) {
1086 int container_dev;
7f2ba464 1087 int rv;
7bc71196
DW
1088
1089 if (subarray) {
1090 container_dev = st->container_dev;
1091 cfd = open_dev_excl(st->container_dev);
1092 } else if (size >= 0 || layout_str != NULL || chunksize != 0 ||
1093 level != UnSet) {
1094 fprintf(stderr,
1095 Name ": %s is a container, only 'raid-devices' can be changed\n",
1096 devname);
1097 return 1;
1098 } else {
1099 container_dev = st->devnum;
1100 close(fd);
1101 cfd = open_dev_excl(st->devnum);
1102 fd = cfd;
1103 }
1104 if (cfd < 0) {
1105 fprintf(stderr, Name ": Unable to open container for %s\n",
1106 devname);
7f2ba464 1107 free(subarray);
7bc71196
DW
1108 return 1;
1109 }
1110
1111 container = devnum2devname(st->devnum);
1112 if (!container) {
1113 fprintf(stderr, Name ": Could not determine container name\n");
7f2ba464 1114 free(subarray);
7bc71196
DW
1115 return 1;
1116 }
1117
7f2ba464
DW
1118 if (subarray)
1119 rv = st->ss->load_container(st, cfd, NULL);
1120 else
1121 rv = st->ss->load_super(st, cfd, NULL);
1122 if (rv) {
7bc71196
DW
1123 fprintf(stderr, Name ": Cannot read superblock for %s\n",
1124 devname);
7f2ba464 1125 free(subarray);
7bc71196
DW
1126 return 1;
1127 }
1128
1129 if (mdmon_running(container_dev))
1130 st->update_tail = &st->updates;
1131 }
1132
62a48395 1133 sra = sysfs_read(fd, 0, GET_LEVEL | GET_DISKS | GET_DEVS | GET_STATE);
7bc71196 1134 if (sra) {
7f2ba464 1135 if (st->ss->external && subarray == NULL) {
7bc71196
DW
1136 array.level = LEVEL_CONTAINER;
1137 sra->array.level = LEVEL_CONTAINER;
1138 }
7bc71196 1139 } else {
b526e52d
DW
1140 fprintf(stderr, Name ": failed to read sysfs parameters for %s\n",
1141 devname);
1142 return 1;
1143 }
7f2ba464
DW
1144 frozen = freeze(st);
1145 if (frozen < -1) {
1146 /* freeze() already spewed the reason */
1147 return 1;
1148 } else if (frozen < 0) {
7236ee7a
N
1149 fprintf(stderr, Name ": %s is performing resync/recovery and cannot"
1150 " be reshaped\n", devname);
1151 return 1;
1152 }
1153
1154 /* ========= set size =============== */
1155 if (size >= 0 && (size == 0 || size != array.size)) {
7bc71196
DW
1156 long long orig_size = array.size;
1157
1158 if (reshape_super(st, size, UnSet, UnSet, 0, 0, NULL, devname, !quiet)) {
1159 rv = 1;
1160 goto release;
1161 }
1162 sync_metadata(st);
7236ee7a
N
1163 array.size = size;
1164 if (array.size != size) {
1165 /* got truncated to 32bit, write to
1166 * component_size instead
1167 */
1168 if (sra)
1169 rv = sysfs_set_num(sra, NULL,
1170 "component_size", size);
1171 else
1172 rv = -1;
1173 } else
1174 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1175 if (rv != 0) {
39bbb392 1176 int err = errno;
7bc71196
DW
1177
1178 /* restore metadata */
1179 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
1180 NULL, devname, !quiet) == 0)
1181 sync_metadata(st);
7236ee7a 1182 fprintf(stderr, Name ": Cannot set device size for %s: %s\n",
39bbb392
N
1183 devname, strerror(err));
1184 if (err == EBUSY &&
1185 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1186 fprintf(stderr, " Bitmap must be removed before size can be changed\n");
7236ee7a
N
1187 rv = 1;
1188 goto release;
1189 }
1190 ioctl(fd, GET_ARRAY_INFO, &array);
be1cabbd 1191 size = get_component_size(fd)/2;
f98841b3
N
1192 if (size == 0)
1193 size = array.size;
7236ee7a 1194 if (!quiet)
f98841b3
N
1195 fprintf(stderr, Name ": component size of %s has been set to %lluK\n",
1196 devname, size);
7236ee7a 1197 changed = 1;
7bc71196 1198 } else if (array.level != LEVEL_CONTAINER) {
be1cabbd 1199 size = get_component_size(fd)/2;
f98841b3
N
1200 if (size == 0)
1201 size = array.size;
7236ee7a
N
1202 }
1203
62a48395
AK
1204 /* ========= check for Raid10 -> Raid0 conversion ===============
1205 * current implemenation assumes that following conditions must be met:
1206 * - far_copies == 1
1207 * - near_copies == 2
1208 */
1209 if (level == 0 && array.level == 10 &&
1210 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) {
1211 int err;
1212 err = remove_disks_on_raid10_to_raid0_takeover(st, sra, array.layout);
1213 if (err) {
1214 dprintf(Name": Array cannot be reshaped\n");
1215 if (container)
1216 free(container);
1217 if (cfd > -1)
1218 close(cfd);
1219 return 1;
1220 }
1221 }
1222
7236ee7a
N
1223 /* ======= set level =========== */
1224 if (level != UnSet && level != array.level) {
1225 /* Trying to change the level.
1226 * We might need to change layout first and schedule a
1227 * level change for later.
1228 * Level changes that can happen immediately are:
1229 * 0->4,5,6 1->5 4->5,6 5->1,6
1230 * Level changes that need a layout change first are:
1231 * 6->5,4,0 : need a -6 layout, or parity-last
1232 * 5->4,0 : need parity-last
1233 */
1234 if ((array.level == 6 || array.level == 5) &&
1235 (level == 5 || level == 4 || level == 0)) {
1236 /* Don't change level yet, but choose intermediate
1237 * layout
1238 */
1239 if (level == 5) {
1240 if (layout_str == NULL)
1241 switch (array.layout) {
1242 case ALGORITHM_LEFT_ASYMMETRIC:
1243 case ALGORITHM_LEFT_ASYMMETRIC_6:
1244 case ALGORITHM_ROTATING_N_RESTART:
1245 layout_str = "left-asymmetric-6";
1246 break;
1247 case ALGORITHM_LEFT_SYMMETRIC:
1248 case ALGORITHM_LEFT_SYMMETRIC_6:
1249 case ALGORITHM_ROTATING_N_CONTINUE:
1250 layout_str = "left-symmetric-6";
1251 break;
1252 case ALGORITHM_RIGHT_ASYMMETRIC:
1253 case ALGORITHM_RIGHT_ASYMMETRIC_6:
1254 case ALGORITHM_ROTATING_ZERO_RESTART:
1255 layout_str = "right-asymmetric-6";
1256 break;
1257 case ALGORITHM_RIGHT_SYMMETRIC:
1258 case ALGORITHM_RIGHT_SYMMETRIC_6:
1259 layout_str = "right-symmetric-6";
1260 break;
1261 case ALGORITHM_PARITY_0:
1262 case ALGORITHM_PARITY_0_6:
1263 layout_str = "parity-first-6";
1264 break;
1265 case ALGORITHM_PARITY_N:
1266 layout_str = "parity-last";
1267 break;
1268 default:
1269 fprintf(stderr, Name ": %s: cannot"
1270 "convert layout to RAID5 equivalent\n",
1271 devname);
1272 rv = 1;
1273 goto release;
1274 }
1275 else {
1276 int l = map_name(r5layout, layout_str);
1277 if (l == UnSet) {
1278 fprintf(stderr, Name ": %s: layout '%s' not recognised\n",
1279 devname, layout_str);
1280 rv = 1;
1281 goto release;
1282 }
1283 if (l != ALGORITHM_PARITY_N) {
1284 /* need the -6 version */
1285 char *ls = map_num(r5layout, l);
1286 strcat(strcpy(alt_layout, ls),
1287 "-6");
1288 layout_str = alt_layout;
1289 }
1290 }
1291 if (raid_disks)
24d40069 1292 /* The final raid6->raid5 conversion
7236ee7a
N
1293 * will reduce the number of disks,
1294 * so now we need to aim higher
1295 */
1296 raid_disks++;
1297 } else
1298 layout_str = "parity-last";
1299 } else {
7bc71196
DW
1300 /* Level change is a simple takeover. In the external
1301 * case we don't check with the metadata handler until
1302 * we establish what the final layout will be. If the
1303 * level change is disallowed we will revert to
1304 * orig_level without disturbing the metadata, otherwise
1305 * we will send an update.
1306 */
7236ee7a 1307 c = map_num(pers, level);
b5ea446a
N
1308 if (c == NULL) {
1309 rv = 1;/* not possible */
1310 goto release;
1311 }
7236ee7a
N
1312 err = sysfs_set_str(sra, NULL, "level", c);
1313 if (err) {
39bbb392 1314 err = errno;
7236ee7a
N
1315 fprintf(stderr, Name ": %s: could not set level to %s\n",
1316 devname, c);
39bbb392
N
1317 if (err == EBUSY &&
1318 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1319 fprintf(stderr, " Bitmap must be removed before level can be changed\n");
7236ee7a
N
1320 rv = 1;
1321 goto release;
1322 }
1323 orig = array;
1324 orig_level = orig.level;
1325 ioctl(fd, GET_ARRAY_INFO, &array);
1326 if (layout_str == NULL &&
1327 orig.level == 5 && level == 6 &&
1328 array.layout != orig.layout)
1329 layout_str = map_num(r5layout, orig.layout);
1330 if (!quiet)
1331 fprintf(stderr, Name " level of %s changed to %s\n",
1332 devname, c);
1333 changed = 1;
1334 }
1335 }
1336
1337 /* ========= set shape (chunk_size / layout / ndisks) ============== */
1338 /* Check if layout change is a no-op */
7bc71196 1339 switch (array.level) {
7236ee7a 1340 case 5:
72e4a378 1341 if (layout_str && array.layout == map_name(r5layout, layout_str))
7236ee7a
N
1342 layout_str = NULL;
1343 break;
1344 case 6:
1345 if (layout_str == NULL &&
1346 ((chunksize && chunksize * 1024 != array.chunk_size) ||
1347 (raid_disks && raid_disks != array.raid_disks)) &&
1348 array.layout >= 16) {
1349 fprintf(stderr, Name
1350 ": %s has a non-standard layout. If you wish to preserve this\n"
1351 " during the reshape, please specify --layout=preserve\n"
1352 " If you want to change it, specify a layout or use --layout=normalise\n",
1353 devname);
1354 rv = 1;
1355 goto release;
1356 }
72e4a378
DW
1357 if (layout_str &&
1358 (strcmp(layout_str, "normalise") == 0 ||
1359 strcmp(layout_str, "normalize") == 0)) {
7236ee7a
N
1360 char *hyphen;
1361 strcpy(alt_layout, map_num(r6layout, array.layout));
1362 hyphen = strrchr(alt_layout, '-');
1363 if (hyphen && strcmp(hyphen, "-6") == 0) {
1364 *hyphen = 0;
1365 layout_str = alt_layout;
1366 }
1367 }
1368
72e4a378 1369 if (layout_str && array.layout == map_name(r6layout, layout_str))
7236ee7a
N
1370 layout_str = NULL;
1371 if (layout_str && strcmp(layout_str, "preserve") == 0)
1372 layout_str = NULL;
1373 break;
1374 }
1375 if (layout_str == NULL
1376 && (chunksize == 0 || chunksize*1024 == array.chunk_size)
1377 && (raid_disks == 0 || raid_disks == array.raid_disks)) {
7bc71196
DW
1378 if (reshape_super(st, -1, level, UnSet, 0, 0, NULL, devname, !quiet)) {
1379 rv = 1;
1380 goto release;
1381 }
1382 sync_metadata(st);
7236ee7a
N
1383 rv = 0;
1384 if (level != UnSet && level != array.level) {
1385 /* Looks like this level change doesn't need
1386 * a reshape after all.
1387 */
1388 c = map_num(pers, level);
1389 if (c) {
1390 rv = sysfs_set_str(sra, NULL, "level", c);
39bbb392
N
1391 if (rv) {
1392 int err = errno;
7236ee7a
N
1393 fprintf(stderr, Name ": %s: could not set level to %s\n",
1394 devname, c);
39bbb392
N
1395 if (err == EBUSY &&
1396 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1397 fprintf(stderr, " Bitmap must be removed before level can be changed\n");
b7e734fc 1398 rv = 1;
39bbb392 1399 }
7236ee7a
N
1400 }
1401 } else if (!changed && !quiet)
1402 fprintf(stderr, Name ": %s: no change requested\n",
1403 devname);
7bc71196
DW
1404
1405 if (st->ss->external && !mdmon_running(st->container_dev) &&
1406 level > 0) {
1407 start_mdmon(st->container_dev);
1408 ping_monitor(container);
1409 }
7236ee7a
N
1410 goto release;
1411 }
1412
e86c9dd6
NB
1413 c = map_num(pers, array.level);
1414 if (c == NULL) c = "-unknown-";
7bc71196 1415 switch (array.level) {
e86c9dd6
NB
1416 default: /* raid0, linear, multipath cannot be reconfigured */
1417 fprintf(stderr, Name ": %s array %s cannot be reshaped.\n",
1418 c, devname);
7bc71196 1419 /* TODO raid0 raiddisks can be reshaped via raid4 */
7236ee7a
N
1420 rv = 1;
1421 break;
7bc71196
DW
1422 case LEVEL_CONTAINER: {
1423 int count;
1424
1425 /* double check that we are not changing anything but raid_disks */
1426 if (size >= 0 || layout_str != NULL || chunksize != 0 || level != UnSet) {
1427 fprintf(stderr,
1428 Name ": %s is a container, only 'raid-devices' can be changed\n",
1429 devname);
1430 rv = 1;
1431 goto release;
1432 }
1433
1434 st->update_tail = &st->updates;
1435 if (reshape_super(st, -1, UnSet, UnSet, 0, raid_disks,
1436 backup_file, devname, !quiet)) {
1437 rv = 1;
1438 goto release;
1439 }
1440
1441 count = reshape_container_raid_disks(container, raid_disks);
1442 if (count < 0) {
1443 revert_container_raid_disks(st, fd, container);
1444 rv = 1;
1445 goto release;
1446 } else if (count == 0) {
1447 if (!quiet)
1448 fprintf(stderr, Name
1449 ": no active subarrays to reshape\n");
1450 goto release;
1451 }
e86c9dd6 1452
7bc71196
DW
1453 if (!mdmon_running(st->devnum)) {
1454 start_mdmon(st->devnum);
1455 ping_monitor(container);
1456 }
1457 sync_metadata(st);
1458
1459 /* give mdmon a chance to allocate spares */
1460 ping_manager(container);
1461
1462 /* manage_reshape takes care of releasing the array(s) */
1463 st->ss->manage_reshape(st, backup_file);
1464 frozen = 0;
1465 goto release;
1466 }
e86c9dd6
NB
1467 case LEVEL_FAULTY: /* only 'layout' change is permitted */
1468
e86c9dd6
NB
1469 if (chunksize || raid_disks) {
1470 fprintf(stderr, Name ": %s: Cannot change chunksize or disks of a 'faulty' array\n",
1471 devname);
7236ee7a
N
1472 rv = 1;
1473 break;
e86c9dd6 1474 }
19678e53 1475 if (layout_str == NULL)
7236ee7a 1476 break; /* nothing to do.... */
e86c9dd6 1477
19678e53
N
1478 array.layout = parse_layout_faulty(layout_str);
1479 if (array.layout < 0) {
1480 fprintf(stderr, Name ": %s: layout %s not understood for 'faulty' array\n",
1481 devname, layout_str);
7236ee7a
N
1482 rv = 1;
1483 break;
19678e53 1484 }
e86c9dd6
NB
1485 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1486 fprintf(stderr, Name ": Cannot set layout for %s: %s\n",
1487 devname, strerror(errno));
7236ee7a
N
1488 rv = 1;
1489 } else if (!quiet)
e86c9dd6 1490 printf("layout for %s set to %d\n", devname, array.layout);
7236ee7a 1491 break;
e86c9dd6 1492
7236ee7a 1493 case 1: /* only raid_disks can each be changed. */
e86c9dd6 1494
19678e53 1495 if (chunksize || layout_str != NULL) {
7236ee7a 1496 fprintf(stderr, Name ": %s: Cannot change chunk size or layout for a RAID1 array.\n",
e86c9dd6 1497 devname);
7236ee7a
N
1498 rv = 1;
1499 break;
e86c9dd6 1500 }
9860f271 1501 if (raid_disks > 0) {
7bc71196
DW
1502 if (reshape_super(st, -1, UnSet, UnSet, 0, raid_disks,
1503 NULL, devname, !quiet)) {
1504 rv = 1;
1505 goto release;
1506 }
1507 sync_metadata(st);
e86c9dd6 1508 array.raid_disks = raid_disks;
9860f271
NB
1509 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
1510 fprintf(stderr, Name ": Cannot set raid-devices for %s: %s\n",
1511 devname, strerror(errno));
7236ee7a 1512 rv = 1;
9860f271 1513 }
e86c9dd6 1514 }
7236ee7a 1515 break;
e86c9dd6
NB
1516
1517 case 4:
1518 case 5:
1519 case 6:
1686dc25 1520
7236ee7a
N
1521 /*
1522 * layout/chunksize/raid_disks can be changed
e86c9dd6 1523 * though the kernel may not support it all.
e86c9dd6 1524 */
4725bc31
N
1525 if (subarray) {
1526 fprintf(stderr, Name ": Cannot reshape subarrays yet\n");
1527 break;
1528 }
7236ee7a
N
1529
1530 /*
1531 * There are three possibilities.
1532 * 1/ The array will shrink.
1533 * We need to ensure the reshape will pause before reaching
1534 * the 'critical section'. We also need to fork and wait for
1535 * that to happen. When it does we
1536 * suspend/backup/complete/unfreeze
1537 *
1538 * 2/ The array will not change size.
1539 * This requires that we keep a backup of a sliding window
1540 * so that we can restore data after a crash. So we need
1541 * to fork and monitor progress.
1542 *
1543 * 3/ The array will grow. This is relatively easy.
e86c9dd6
NB
1544 * However the kernel's restripe routines will cheerfully
1545 * overwrite some early data before it is safe. So we
1546 * need to make a backup of the early parts of the array
1547 * and be ready to restore it if rebuild aborts very early.
1548 *
7236ee7a
N
1549 * We backup data by writing it to one spare, or to a
1550 * file which was given on command line.
e86c9dd6 1551 *
7236ee7a 1552 * [FOLLOWING IS OLD AND PARTLY WRONG]
e86c9dd6
NB
1553 * So: we enumerate the devices in the array and
1554 * make sure we can open all of them.
1555 * Then we freeze the early part of the array and
1556 * backup to the various spares.
1557 * Then we request changes and start the reshape.
1558 * Monitor progress until it has passed the danger zone.
1559 * and finally invalidate the copied data and unfreeze the
1560 * start of the array.
1561 *
7236ee7a
N
1562 * In each case, we first make sure that storage is available
1563 * for the required backup.
1564 * Then we:
1565 * - request the shape change.
1566 * - for to handle backup etc.
e86c9dd6 1567 */
e86c9dd6
NB
1568 nchunk = ochunk = array.chunk_size;
1569 nlayout = olayout = array.layout;
1570 ndisks = odisks = array.raid_disks;
1571
7236ee7a
N
1572 if (chunksize) {
1573 nchunk = chunksize * 1024;
f98841b3
N
1574 if (size % chunksize) {
1575 fprintf(stderr, Name ": component size %lluK is not"
7236ee7a 1576 " a multiple of chunksize %dK\n",
f98841b3 1577 size, chunksize);
7236ee7a
N
1578 break;
1579 }
1580 }
19678e53 1581 if (layout_str != NULL)
7236ee7a 1582 switch(array.level) {
19678e53
N
1583 case 4: /* ignore layout */
1584 break;
1585 case 5:
1586 nlayout = map_name(r5layout, layout_str);
1587 if (nlayout == UnSet) {
1588 fprintf(stderr, Name ": layout %s not understood for raid5.\n",
1589 layout_str);
b5ea446a
N
1590 rv = 1;
1591 goto release;
19678e53
N
1592 }
1593 break;
1594
1595 case 6:
1596 nlayout = map_name(r6layout, layout_str);
1597 if (nlayout == UnSet) {
1598 fprintf(stderr, Name ": layout %s not understood for raid6.\n",
1599 layout_str);
b5ea446a
N
1600 rv = 1;
1601 goto release;
19678e53
N
1602 }
1603 break;
1604 }
e86c9dd6
NB
1605 if (raid_disks) ndisks = raid_disks;
1606
1607 odata = odisks-1;
e86c9dd6 1608 ndata = ndisks-1;
7236ee7a
N
1609 if (array.level == 6) {
1610 odata--; /* number of data disks */
1611 ndata--;
e86c9dd6 1612 }
7236ee7a 1613
d2505cff
N
1614 if (odata == ndata &&
1615 get_linux_version() < 2006032) {
1616 fprintf(stderr, Name ": in-place reshape is not safe before 2.6.32, sorry.\n");
1617 break;
1618 }
1619
7236ee7a 1620 /* Check that we can hold all the data */
7236ee7a 1621 get_dev_size(fd, NULL, &array_size);
f21e18ca 1622 if (ndata * (unsigned long long)size < (array_size/1024)) {
7236ee7a
N
1623 fprintf(stderr, Name ": this change will reduce the size of the array.\n"
1624 " use --grow --array-size first to truncate array.\n"
1625 " e.g. mdadm --grow %s --array-size %llu\n",
f98841b3 1626 devname, ndata * size);
7236ee7a
N
1627 rv = 1;
1628 break;
e86c9dd6 1629 }
7236ee7a 1630
1c009fc2 1631 blocks = compute_backup_blocks(nchunk, ochunk, ndata, odata);
7236ee7a 1632
e380d3be
N
1633 sysfs_free(sra);
1634 sra = sysfs_read(fd, 0,
1635 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
1636 GET_CACHE);
1637
c03ef02d
N
1638 if (!sra) {
1639 fprintf(stderr, Name ": %s: Cannot get array details from sysfs\n",
1640 devname);
1641 rv = 1;
1642 break;
1643 }
1644
eba71529
N
1645 if (ndata == odata) {
1646 /* Make 'blocks' bigger for better throughput, but
1647 * not so big that we reject it below.
1b13faf7 1648 * Try for 16 megabytes
eba71529 1649 */
1b13faf7
N
1650 while (blocks * 32 < sra->component_size &&
1651 blocks < 16*1024*2)
1652 blocks *= 2;
eba71529 1653 } else
7236ee7a
N
1654 fprintf(stderr, Name ": Need to backup %luK of critical "
1655 "section..\n", blocks/2);
e86c9dd6 1656
7236ee7a 1657 if (blocks >= sra->component_size/2) {
e86c9dd6
NB
1658 fprintf(stderr, Name ": %s: Something wrong - reshape aborted\n",
1659 devname);
7236ee7a
N
1660 rv = 1;
1661 break;
353632d9 1662 }
925211e3 1663 nrdisks = array.raid_disks + sra->array.spare_disks;
e86c9dd6
NB
1664 /* Now we need to open all these devices so we can read/write.
1665 */
06b0d786
NB
1666 fdlist = malloc((1+nrdisks) * sizeof(int));
1667 offsets = malloc((1+nrdisks) * sizeof(offsets[0]));
e86c9dd6
NB
1668 if (!fdlist || !offsets) {
1669 fprintf(stderr, Name ": malloc failed: grow aborted\n");
7236ee7a
N
1670 rv = 1;
1671 break;
e86c9dd6 1672 }
130994cb
AK
1673
1674 d = reshape_prepare_fdlist(devname, sra, array.raid_disks,
1675 nrdisks, blocks, backup_file,
1676 fdlist, offsets);
1677 if (d < 0) {
1678 rv = 1;
1679 goto release;
e86c9dd6 1680 }
7236ee7a 1681 if (backup_file == NULL) {
7bc71196
DW
1682 if (st->ss->external && !st->ss->manage_reshape) {
1683 fprintf(stderr, Name ": %s Grow operation not supported by %s metadata\n",
1684 devname, st->ss->name);
1685 rv = 1;
1686 break;
1687 }
7236ee7a
N
1688 if (ndata <= odata) {
1689 fprintf(stderr, Name ": %s: Cannot grow - need backup-file\n",
1690 devname);
1691 rv = 1;
1692 break;
1693 } else if (sra->array.spare_disks == 0) {
1694 fprintf(stderr, Name ": %s: Cannot grow - need a spare or "
1695 "backup-file to backup critical section\n",
1696 devname);
1697 rv = 1;
1698 break;
1699 }
1700 if (d == array.raid_disks) {
1701 fprintf(stderr, Name ": %s: No spare device for backup\n",
1702 devname);
1703 rv = 1;
1704 break;
e86c9dd6 1705 }
7236ee7a 1706 } else {
e6e9d47b
AK
1707 if (!reshape_open_backup_file(backup_file, fd, devname,
1708 (signed)blocks,
1709 fdlist+d, offsets+d)) {
7236ee7a
N
1710 rv = 1;
1711 break;
06b0d786 1712 }
06b0d786 1713 d++;
06b0d786 1714 }
7236ee7a 1715
7bc71196
DW
1716 /* check that the operation is supported by the metadata */
1717 if (reshape_super(st, -1, level, nlayout, nchunk, ndisks,
1718 backup_file, devname, !quiet)) {
1719 rv = 1;
1720 break;
1721 }
1722
7236ee7a
N
1723 /* lastly, check that the internal stripe cache is
1724 * large enough, or it won't work.
1725 */
1726
1727 cache = (nchunk < ochunk) ? ochunk : nchunk;
1728 cache = cache * 4 / 4096;
1b13faf7
N
1729 if (cache < blocks / 8 / odisks + 16)
1730 /* Make it big enough to hold 'blocks' */
1731 cache = blocks / 8 / odisks + 16;
7236ee7a
N
1732 if (sra->cache_size < cache)
1733 sysfs_set_num(sra, NULL, "stripe_cache_size",
1734 cache+1);
1735 /* Right, everything seems fine. Let's kick things off.
1736 * If only changing raid_disks, use ioctl, else use
1737 * sysfs.
1738 */
7bc71196 1739 sync_metadata(st);
7236ee7a
N
1740 if (ochunk == nchunk && olayout == nlayout) {
1741 array.raid_disks = ndisks;
1742 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
39bbb392 1743 int err = errno;
7236ee7a
N
1744 rv = 1;
1745 fprintf(stderr, Name ": Cannot set device shape for %s: %s\n",
1746 devname, strerror(errno));
1747 if (ndisks < odisks &&
1748 get_linux_version() < 2006030)
1749 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
39bbb392
N
1750 if (err == EBUSY &&
1751 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1752 fprintf(stderr, " Bitmap must be removed before shape can be changed\n");
7236ee7a
N
1753
1754 break;
1755 }
1756 } else {
1757 /* set them all just in case some old 'new_*' value
1758 * persists from some earlier problem
1759 */
53f50353
N
1760 int err = err; /* only used if rv==1, and always set if
1761 * rv==1, so initialisation not needed,
1762 * despite gcc warning
1763 */
7236ee7a 1764 if (sysfs_set_num(sra, NULL, "chunk_size", nchunk) < 0)
39bbb392
N
1765 rv = 1, err = errno;
1766 if (!rv && sysfs_set_num(sra, NULL, "layout", nlayout) < 0)
1767 rv = 1, err = errno;
1768 if (!rv && sysfs_set_num(sra, NULL, "raid_disks", ndisks) < 0)
1769 rv = 1, err = errno;
7236ee7a
N
1770 if (rv) {
1771 fprintf(stderr, Name ": Cannot set device shape for %s\n",
1772 devname);
1773 if (get_linux_version() < 2006030)
1774 fprintf(stderr, Name ": linux 2.6.30 or later required\n");
39bbb392
N
1775 if (err == EBUSY &&
1776 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1777 fprintf(stderr, " Bitmap must be removed before shape can be changed\n");
7236ee7a
N
1778 break;
1779 }
e86c9dd6
NB
1780 }
1781
7236ee7a
N
1782 if (ndisks == 2 && odisks == 2) {
1783 /* No reshape is needed in this trivial case */
1784 rv = 0;
1785 break;
1786 }
1787
7bc71196
DW
1788 if (st->ss->external) {
1789 /* metadata handler takes it from here */
1790 ping_manager(container);
1791 st->ss->manage_reshape(st, backup_file);
1792 frozen = 0;
1793 break;
1794 }
1795
7236ee7a
N
1796 /* set up the backup-super-block. This requires the
1797 * uuid from the array.
1798 */
e86c9dd6 1799 /* Find a superblock */
7236ee7a
N
1800 for (sd = sra->devs; sd; sd = sd->next) {
1801 char *dn;
1802 int devfd;
1803 int ok;
1804 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1805 continue;
1806 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
1807 devfd = dev_open(dn, O_RDONLY);
1808 if (devfd < 0)
1809 continue;
1810 ok = st->ss->load_super(st, devfd, NULL);
1811 close(devfd);
1812 if (ok >= 0)
1813 break;
1814 }
1815 if (!sd) {
e86c9dd6
NB
1816 fprintf(stderr, Name ": %s: Cannot find a superblock\n",
1817 devname);
7236ee7a
N
1818 rv = 1;
1819 break;
e86c9dd6
NB
1820 }
1821
7236ee7a 1822 memset(&bsb, 0, 512);
2efedc7b 1823 memcpy(bsb.magic, "md_backup_data-1", 16);
3da92f27 1824 st->ss->uuid_from_super(st, (int*)&bsb.set_uuid);
2efedc7b 1825 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
1826 bsb.devstart2 = blocks;
1827 stripes = blocks / (ochunk/512) / odata;
1828 /* Now we just need to kick off the reshape and watch, while
1829 * handling backups of the data...
1830 * This is all done by a forked background process.
2efedc7b 1831 */
7236ee7a
N
1832 switch(fork()) {
1833 case 0:
1834 close(fd);
1835 if (check_env("MDADM_GROW_VERIFY"))
1836 fd = open(devname, O_RDONLY | O_DIRECT);
1837 else
1838 fd = -1;
1839 mlockall(MCL_FUTURE);
1840
1841 if (odata < ndata)
1842 done = child_grow(fd, sra, stripes,
1843 fdlist, offsets,
1844 odisks, ochunk, array.level, olayout, odata,
1845 d - odisks, fdlist+odisks, offsets+odisks);
1846 else if (odata > ndata)
1847 done = child_shrink(fd, sra, stripes,
1848 fdlist, offsets,
1849 odisks, ochunk, array.level, olayout, odata,
1850 d - odisks, fdlist+odisks, offsets+odisks);
1851 else
1852 done = child_same_size(fd, sra, stripes,
1853 fdlist, offsets,
e9e43ec3 1854 0,
7236ee7a
N
1855 odisks, ochunk, array.level, olayout, odata,
1856 d - odisks, fdlist+odisks, offsets+odisks);
1857 if (backup_file && done)
1858 unlink(backup_file);
1859 if (level != UnSet && level != array.level) {
1860 /* We need to wait for the reshape to finish
1861 * (which will have happened unless odata < ndata)
1862 * and then set the level
758d3a8e 1863 */
7236ee7a
N
1864
1865 c = map_num(pers, level);
1866 if (c == NULL)
1867 exit(0);/* not possible */
1868
1869 if (odata < ndata)
1870 wait_reshape(sra);
1871 err = sysfs_set_str(sra, NULL, "level", c);
1872 if (err)
1873 fprintf(stderr, Name ": %s: could not set level to %s\n",
1874 devname, c);
758d3a8e 1875 }
7236ee7a
N
1876 exit(0);
1877 case -1:
1878 fprintf(stderr, Name ": Cannot run child to monitor reshape: %s\n",
1879 strerror(errno));
1880 rv = 1;
1881 break;
1882 default:
1883 /* The child will take care of unfreezing the array */
1884 frozen = 0;
1885 break;
e86c9dd6 1886 }
7236ee7a 1887 break;
e86c9dd6 1888
7236ee7a 1889 }
e86c9dd6 1890
7236ee7a
N
1891 release:
1892 if (rv && orig_level != UnSet && sra) {
1893 c = map_num(pers, orig_level);
1894 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
1895 fprintf(stderr, Name ": aborting level change\n");
1896 }
7f2ba464 1897 unfreeze(st, frozen);
7236ee7a
N
1898 return rv;
1899}
e86c9dd6 1900
7236ee7a
N
1901/*
1902 * We run a child process in the background which performs the following
1903 * steps:
1904 * - wait for resync to reach a certain point
1905 * - suspend io to the following section
1906 * - backup that section
1907 * - allow resync to proceed further
1908 * - resume io
1909 * - discard the backup.
1910 *
1911 * When are combined in slightly different ways in the three cases.
1912 * Grow:
1913 * - suspend/backup/allow/wait/resume/discard
1914 * Shrink:
1915 * - allow/wait/suspend/backup/allow/wait/resume/discard
1916 * same-size:
1917 * - wait/resume/discard/suspend/backup/allow
1918 *
1919 * suspend/backup/allow always come together
1920 * wait/resume/discard do too.
1921 * For the same-size case we have two backups to improve flow.
1922 *
1923 */
e86c9dd6 1924
fcf57625 1925/* FIXME return status is never checked */
4411fb17 1926static int grow_backup(struct mdinfo *sra,
7236ee7a
N
1927 unsigned long long offset, /* per device */
1928 unsigned long stripes, /* per device */
1929 int *sources, unsigned long long *offsets,
1930 int disks, int chunk, int level, int layout,
1931 int dests, int *destfd, unsigned long long *destoffsets,
d4445387 1932 int part, int *degraded,
7236ee7a
N
1933 char *buf)
1934{
1935 /* Backup 'blocks' sectors at 'offset' on each device of the array,
1936 * to storage 'destfd' (offset 'destoffsets'), after first
1937 * suspending IO. Then allow resync to continue
1938 * over the suspended section.
1939 * Use part 'part' of the backup-super-block.
1940 */
1941 int odata = disks;
1942 int rv = 0;
1943 int i;
f21e18ca
N
1944 unsigned long long ll;
1945 int new_degraded;
7236ee7a
N
1946 //printf("offset %llu\n", offset);
1947 if (level >= 4)
1948 odata--;
1949 if (level == 6)
1950 odata--;
200871ad 1951 sysfs_set_num(sra, NULL, "suspend_hi", (offset + stripes * (chunk/512)) * odata);
d4445387 1952 /* Check that array hasn't become degraded, else we might backup the wrong data */
f21e18ca
N
1953 sysfs_get_ll(sra, NULL, "degraded", &ll);
1954 new_degraded = (int)ll;
d4445387
N
1955 if (new_degraded != *degraded) {
1956 /* check each device to ensure it is still working */
1957 struct mdinfo *sd;
1958 for (sd = sra->devs ; sd ; sd = sd->next) {
1959 if (sd->disk.state & (1<<MD_DISK_FAULTY))
1960 continue;
1961 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
1962 char sbuf[20];
1963 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
1964 strstr(sbuf, "faulty") ||
1965 strstr(sbuf, "in_sync") == NULL) {
1966 /* this device is dead */
1967 sd->disk.state = (1<<MD_DISK_FAULTY);
1968 if (sd->disk.raid_disk >= 0 &&
1969 sources[sd->disk.raid_disk] >= 0) {
1970 close(sources[sd->disk.raid_disk]);
1971 sources[sd->disk.raid_disk] = -1;
1972 }
1973 }
1974 }
1975 }
1976 *degraded = new_degraded;
1977 }
7236ee7a
N
1978 if (part) {
1979 bsb.arraystart2 = __cpu_to_le64(offset * odata);
200871ad 1980 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
1981 } else {
1982 bsb.arraystart = __cpu_to_le64(offset * odata);
200871ad 1983 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
7236ee7a
N
1984 }
1985 if (part)
1986 bsb.magic[15] = '2';
1987 for (i = 0; i < dests; i++)
1988 if (part)
1989 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
1990 else
1991 lseek64(destfd[i], destoffsets[i], 0);
1992
1993 rv = save_stripes(sources, offsets,
1994 disks, chunk, level, layout,
1995 dests, destfd,
1996 offset*512*odata, stripes * chunk * odata,
1997 buf);
1998
1999 if (rv)
2000 return rv;
97396422 2001 bsb.mtime = __cpu_to_le64(time(0));
7236ee7a
N
2002 for (i = 0; i < dests; i++) {
2003 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2004
2005 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2006 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2007 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2008 ((char*)&bsb.sb_csum2)-((char*)&bsb));
2009
72044953 2010 rv = -1;
f21e18ca
N
2011 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
2012 != destoffsets[i] - 4096)
72044953
N
2013 break;
2014 if (write(destfd[i], &bsb, 512) != 512)
2015 break;
ff94fb86 2016 if (destoffsets[i] > 4096) {
f21e18ca 2017 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
a847575a 2018 destoffsets[i]+stripes*chunk*odata)
72044953
N
2019 break;
2020 if (write(destfd[i], &bsb, 512) != 512)
2021 break;
ff94fb86 2022 }
7236ee7a 2023 fsync(destfd[i]);
72044953 2024 rv = 0;
7236ee7a 2025 }
2efedc7b 2026
fcf57625 2027 return rv;
7236ee7a
N
2028}
2029
2030/* in 2.6.30, the value reported by sync_completed can be
2031 * less that it should be by one stripe.
2032 * This only happens when reshape hits sync_max and pauses.
2033 * So allow wait_backup to either extent sync_max further
2034 * than strictly necessary, or return before the
2035 * sync has got quite as far as we would really like.
2036 * This is what 'blocks2' is for.
2037 * The various caller give appropriate values so that
2038 * every works.
2039 */
fcf57625 2040/* FIXME return value is often ignored */
4411fb17 2041static int wait_backup(struct mdinfo *sra,
7236ee7a
N
2042 unsigned long long offset, /* per device */
2043 unsigned long long blocks, /* per device */
2044 unsigned long long blocks2, /* per device - hack */
2045 int dests, int *destfd, unsigned long long *destoffsets,
2046 int part)
2047{
2048 /* Wait for resync to pass the section that was backed up
2049 * then erase the backup and allow IO
2050 */
2051 int fd = sysfs_get_fd(sra, NULL, "sync_completed");
2052 unsigned long long completed;
2053 int i;
fcf57625 2054 int rv;
7236ee7a
N
2055
2056 if (fd < 0)
2057 return -1;
2058 sysfs_set_num(sra, NULL, "sync_max", offset + blocks + blocks2);
2059 if (offset == 0)
2060 sysfs_set_str(sra, NULL, "sync_action", "reshape");
2061 do {
2062 char action[20];
2063 fd_set rfds;
2064 FD_ZERO(&rfds);
2065 FD_SET(fd, &rfds);
2066 select(fd+1, NULL, NULL, &rfds, NULL);
2067 if (sysfs_fd_get_ll(fd, &completed) < 0) {
2068 close(fd);
2069 return -1;
e86c9dd6 2070 }
7236ee7a
N
2071 if (sysfs_get_str(sra, NULL, "sync_action",
2072 action, 20) > 0 &&
2073 strncmp(action, "reshape", 7) != 0)
2074 break;
2075 } while (completed < offset + blocks);
2076 close(fd);
2077
2078 if (part) {
2079 bsb.arraystart2 = __cpu_to_le64(0);
2080 bsb.length2 = __cpu_to_le64(0);
2081 } else {
2082 bsb.arraystart = __cpu_to_le64(0);
2083 bsb.length = __cpu_to_le64(0);
2084 }
97396422 2085 bsb.mtime = __cpu_to_le64(time(0));
fcf57625 2086 rv = 0;
7236ee7a
N
2087 for (i = 0; i < dests; i++) {
2088 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
2089 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
2090 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
2091 bsb.sb_csum2 = bsb_csum((char*)&bsb,
2092 ((char*)&bsb.sb_csum2)-((char*)&bsb));
f21e18ca 2093 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
a847575a 2094 destoffsets[i]-4096)
72044953
N
2095 rv = -1;
2096 if (rv == 0 &&
2097 write(destfd[i], &bsb, 512) != 512)
2098 rv = -1;
7236ee7a
N
2099 fsync(destfd[i]);
2100 }
fcf57625 2101 return rv;
7236ee7a 2102}
e86c9dd6 2103
7236ee7a
N
2104static void fail(char *msg)
2105{
fcf57625 2106 int rv;
72044953
N
2107 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
2108 rv |= (write(2, "\n", 1) != 1);
fcf57625 2109 exit(rv ? 1 : 2);
7236ee7a
N
2110}
2111
2112static char *abuf, *bbuf;
f21e18ca 2113static unsigned long long abuflen;
7236ee7a
N
2114static void validate(int afd, int bfd, unsigned long long offset)
2115{
2116 /* check that the data in the backup against the array.
2117 * This is only used for regression testing and should not
2118 * be used while the array is active
2119 */
7236ee7a
N
2120 if (afd < 0)
2121 return;
2122 lseek64(bfd, offset - 4096, 0);
2123 if (read(bfd, &bsb2, 512) != 512)
2124 fail("cannot read bsb");
2125 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
2126 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
2127 fail("first csum bad");
2128 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
2129 fail("magic is bad");
2130 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
2131 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
2132 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
2133 fail("second csum bad");
2134
2135 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
2136 fail("devstart is wrong");
2137
2138 if (bsb2.length) {
2139 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
2140
2141 if (abuflen < len) {
2142 free(abuf);
2143 free(bbuf);
2144 abuflen = len;
fcf57625
N
2145 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
2146 posix_memalign((void**)&bbuf, 4096, abuflen)) {
2147 abuflen = 0;
2148 /* just stop validating on mem-alloc failure */
2149 return;
2150 }
e86c9dd6 2151 }
48924014 2152
7236ee7a 2153 lseek64(bfd, offset, 0);
f21e18ca 2154 if ((unsigned long long)read(bfd, bbuf, len) != len) {
080fd005 2155 //printf("len %llu\n", len);
7236ee7a
N
2156 fail("read first backup failed");
2157 }
2158 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
f21e18ca 2159 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2160 fail("read first from array failed");
2161 if (memcmp(bbuf, abuf, len) != 0) {
080fd005 2162 #if 0
7236ee7a
N
2163 int i;
2164 printf("offset=%llu len=%llu\n",
080fd005 2165 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
7236ee7a
N
2166 for (i=0; i<len; i++)
2167 if (bbuf[i] != abuf[i]) {
2168 printf("first diff byte %d\n", i);
93ecfa01 2169 break;
7236ee7a 2170 }
080fd005 2171 #endif
7236ee7a 2172 fail("data1 compare failed");
e86c9dd6 2173 }
7236ee7a
N
2174 }
2175 if (bsb2.length2) {
2176 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
2177
2178 if (abuflen < len) {
2179 free(abuf);
2180 free(bbuf);
2181 abuflen = len;
2182 abuf = malloc(abuflen);
2183 bbuf = malloc(abuflen);
e86c9dd6
NB
2184 }
2185
7236ee7a 2186 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
f21e18ca 2187 if ((unsigned long long)read(bfd, bbuf, len) != len)
7236ee7a
N
2188 fail("read second backup failed");
2189 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
f21e18ca 2190 if ((unsigned long long)read(afd, abuf, len) != len)
7236ee7a
N
2191 fail("read second from array failed");
2192 if (memcmp(bbuf, abuf, len) != 0)
2193 fail("data2 compare failed");
e86c9dd6 2194 }
7236ee7a 2195}
e86c9dd6 2196
7236ee7a
N
2197static int child_grow(int afd, struct mdinfo *sra, unsigned long stripes,
2198 int *fds, unsigned long long *offsets,
2199 int disks, int chunk, int level, int layout, int data,
2200 int dests, int *destfd, unsigned long long *destoffsets)
2201{
2202 char *buf;
d4445387 2203 int degraded = 0;
e86c9dd6 2204
fcf57625
N
2205 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2206 /* Don't start the 'reshape' */
2207 return 0;
7236ee7a
N
2208 sysfs_set_num(sra, NULL, "suspend_hi", 0);
2209 sysfs_set_num(sra, NULL, "suspend_lo", 0);
2210 grow_backup(sra, 0, stripes,
2211 fds, offsets, disks, chunk, level, layout,
2212 dests, destfd, destoffsets,
d4445387 2213 0, &degraded, buf);
7236ee7a 2214 validate(afd, destfd[0], destoffsets[0]);
200871ad 2215 wait_backup(sra, 0, stripes * (chunk / 512), stripes * (chunk / 512),
725cac4c
N
2216 dests, destfd, destoffsets,
2217 0);
200871ad 2218 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * (chunk/512)) * data);
7236ee7a
N
2219 free(buf);
2220 /* FIXME this should probably be numeric */
2221 sysfs_set_str(sra, NULL, "sync_max", "max");
e86c9dd6 2222 return 1;
7236ee7a 2223}
e86c9dd6 2224
7236ee7a
N
2225static int child_shrink(int afd, struct mdinfo *sra, unsigned long stripes,
2226 int *fds, unsigned long long *offsets,
2227 int disks, int chunk, int level, int layout, int data,
2228 int dests, int *destfd, unsigned long long *destoffsets)
2229{
2230 char *buf;
2231 unsigned long long start;
2232 int rv;
d4445387 2233 int degraded = 0;
7236ee7a 2234
fcf57625
N
2235 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2236 return 0;
200871ad 2237 start = sra->component_size - stripes * (chunk/512);
7236ee7a
N
2238 sysfs_set_num(sra, NULL, "sync_max", start);
2239 sysfs_set_str(sra, NULL, "sync_action", "reshape");
2240 sysfs_set_num(sra, NULL, "suspend_lo", 0);
2241 sysfs_set_num(sra, NULL, "suspend_hi", 0);
200871ad 2242 rv = wait_backup(sra, 0, start - stripes * (chunk/512), stripes * (chunk/512),
7236ee7a
N
2243 dests, destfd, destoffsets, 0);
2244 if (rv < 0)
2245 return 0;
2246 grow_backup(sra, 0, stripes,
2247 fds, offsets,
2248 disks, chunk, level, layout,
2249 dests, destfd, destoffsets,
d4445387 2250 0, &degraded, buf);
7236ee7a 2251 validate(afd, destfd[0], destoffsets[0]);
200871ad 2252 wait_backup(sra, start, stripes*(chunk/512), 0,
725cac4c 2253 dests, destfd, destoffsets, 0);
200871ad 2254 sysfs_set_num(sra, NULL, "suspend_lo", (stripes * (chunk/512)) * data);
7236ee7a
N
2255 free(buf);
2256 /* FIXME this should probably be numeric */
2257 sysfs_set_str(sra, NULL, "sync_max", "max");
2258 return 1;
2259}
2260
2261static int child_same_size(int afd, struct mdinfo *sra, unsigned long stripes,
2262 int *fds, unsigned long long *offsets,
e9e43ec3 2263 unsigned long long start,
7236ee7a
N
2264 int disks, int chunk, int level, int layout, int data,
2265 int dests, int *destfd, unsigned long long *destoffsets)
2266{
e9e43ec3 2267 unsigned long long size;
7236ee7a
N
2268 unsigned long tailstripes = stripes;
2269 int part;
2270 char *buf;
2271 unsigned long long speed;
d4445387 2272 int degraded = 0;
7236ee7a
N
2273
2274
fcf57625
N
2275 if (posix_memalign((void**)&buf, 4096, disks * chunk))
2276 return 0;
7236ee7a
N
2277
2278 sysfs_set_num(sra, NULL, "suspend_lo", 0);
2279 sysfs_set_num(sra, NULL, "suspend_hi", 0);
2280
2281 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
2282 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
2283
e9e43ec3 2284 grow_backup(sra, start, stripes,
7236ee7a
N
2285 fds, offsets,
2286 disks, chunk, level, layout,
2287 dests, destfd, destoffsets,
d4445387 2288 0, &degraded, buf);
200871ad 2289 grow_backup(sra, (start + stripes) * (chunk/512), stripes,
7236ee7a
N
2290 fds, offsets,
2291 disks, chunk, level, layout,
2292 dests, destfd, destoffsets,
d4445387 2293 1, &degraded, buf);
7236ee7a
N
2294 validate(afd, destfd[0], destoffsets[0]);
2295 part = 0;
e9e43ec3 2296 start += stripes * 2; /* where to read next */
7236ee7a
N
2297 size = sra->component_size / (chunk/512);
2298 while (start < size) {
200871ad
N
2299 if (wait_backup(sra, (start-stripes*2)*(chunk/512),
2300 stripes*(chunk/512), 0,
7236ee7a
N
2301 dests, destfd, destoffsets,
2302 part) < 0)
2303 return 0;
200871ad 2304 sysfs_set_num(sra, NULL, "suspend_lo", start*(chunk/512) * data);
7236ee7a
N
2305 if (start + stripes > size)
2306 tailstripes = (size - start);
2307
200871ad 2308 grow_backup(sra, start*(chunk/512), tailstripes,
7236ee7a
N
2309 fds, offsets,
2310 disks, chunk, level, layout,
2311 dests, destfd, destoffsets,
d4445387 2312 part, &degraded, buf);
7236ee7a
N
2313 start += stripes;
2314 part = 1 - part;
2315 validate(afd, destfd[0], destoffsets[0]);
2316 }
200871ad 2317 if (wait_backup(sra, (start-stripes*2) * (chunk/512), stripes * (chunk/512), 0,
7236ee7a
N
2318 dests, destfd, destoffsets,
2319 part) < 0)
2320 return 0;
200871ad
N
2321 sysfs_set_num(sra, NULL, "suspend_lo", ((start-stripes)*(chunk/512)) * data);
2322 wait_backup(sra, (start-stripes) * (chunk/512), tailstripes * (chunk/512), 0,
725cac4c
N
2323 dests, destfd, destoffsets,
2324 1-part);
200871ad 2325 sysfs_set_num(sra, NULL, "suspend_lo", (size*(chunk/512)) * data);
7236ee7a
N
2326 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
2327 free(buf);
2328 return 1;
e86c9dd6 2329}
353632d9
NB
2330
2331/*
2332 * If any spare contains md_back_data-1 which is recent wrt mtime,
2333 * write that data into the array and update the super blocks with
2334 * the new reshape_progress
2335 */
ea0ebe96
N
2336int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
2337 char *backup_file, int verbose)
353632d9
NB
2338{
2339 int i, j;
2340 int old_disks;
353632d9 2341 unsigned long long *offsets;
82f2d6ab 2342 unsigned long long nstripe, ostripe;
6e9eac4f 2343 int ndata, odata;
353632d9 2344
e9e43ec3
N
2345 if (info->new_level != info->array.level)
2346 return 1; /* Cannot handle level changes (they are instantaneous) */
2347
2348 odata = info->array.raid_disks - info->delta_disks - 1;
2349 if (info->array.level == 6) odata--; /* number of data disks */
2350 ndata = info->array.raid_disks - 1;
2351 if (info->new_level == 6) ndata--;
353632d9
NB
2352
2353 old_disks = info->array.raid_disks - info->delta_disks;
2354
e9e43ec3
N
2355 if (info->delta_disks <= 0)
2356 /* Didn't grow, so the backup file must have
2357 * been used
2358 */
2359 old_disks = cnt;
06b0d786 2360 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
353632d9 2361 struct mdinfo dinfo;
06b0d786 2362 int fd;
e9e43ec3 2363 int bsbsize;
ea0ebe96 2364 char *devname, namebuf[20];
353632d9
NB
2365
2366 /* This was a spare and may have some saved data on it.
2367 * Load the superblock, find and load the
2368 * backup_super_block.
2369 * If either fail, go on to next device.
2370 * If the backup contains no new info, just return
206c5eae 2371 * else restore data and update all superblocks
353632d9 2372 */
06b0d786
NB
2373 if (i == old_disks-1) {
2374 fd = open(backup_file, O_RDONLY);
e9e43ec3
N
2375 if (fd<0) {
2376 fprintf(stderr, Name ": backup file %s inaccessible: %s\n",
2377 backup_file, strerror(errno));
06b0d786 2378 continue;
e9e43ec3 2379 }
ea0ebe96 2380 devname = backup_file;
06b0d786
NB
2381 } else {
2382 fd = fdlist[i];
2383 if (fd < 0)
2384 continue;
3da92f27 2385 if (st->ss->load_super(st, fd, NULL))
06b0d786 2386 continue;
353632d9 2387
a5d85af7 2388 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27
NB
2389 st->ss->free_super(st);
2390
06b0d786
NB
2391 if (lseek64(fd,
2392 (dinfo.data_offset + dinfo.component_size - 8) <<9,
ea0ebe96
N
2393 0) < 0) {
2394 fprintf(stderr, Name ": Cannot seek on device %d\n", i);
06b0d786 2395 continue; /* Cannot seek */
ea0ebe96
N
2396 }
2397 sprintf(namebuf, "device-%d", i);
2398 devname = namebuf;
06b0d786 2399 }
ea0ebe96
N
2400 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
2401 if (verbose)
2402 fprintf(stderr, Name ": Cannot read from %s\n", devname);
353632d9 2403 continue; /* Cannot read */
ea0ebe96 2404 }
e9e43ec3 2405 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
ea0ebe96
N
2406 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
2407 if (verbose)
2408 fprintf(stderr, Name ": No backup metadata on %s\n", devname);
353632d9 2409 continue;
ea0ebe96
N
2410 }
2411 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
2412 if (verbose)
2413 fprintf(stderr, Name ": Bad backup-metadata checksum on %s\n", devname);
353632d9 2414 continue; /* bad checksum */
ea0ebe96 2415 }
e9e43ec3 2416 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
ea0ebe96
N
2417 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
2418 if (verbose)
2419 fprintf(stderr, Name ": Bad backup-metadata checksum2 on %s\n", devname);
22e30516 2420 continue; /* Bad second checksum */
ea0ebe96
N
2421 }
2422 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
2423 if (verbose)
2424 fprintf(stderr, Name ": Wrong uuid on backup-metadata on %s\n", devname);
353632d9 2425 continue; /* Wrong uuid */
ea0ebe96 2426 }
353632d9 2427
097075b6
N
2428 /* array utime and backup-mtime should be updated at much the same time, but it seems that
2429 * sometimes they aren't... So allow considerable flexability in matching, and allow
2430 * this test to be overridden by an environment variable.
2431 */
f21e18ca
N
2432 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
2433 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
097075b6
N
2434 if (check_env("MDADM_GROW_ALLOW_OLD")) {
2435 fprintf(stderr, Name ": accepting backup with timestamp %lu "
2436 "for array with timestamp %lu\n",
2437 (unsigned long)__le64_to_cpu(bsb.mtime),
2438 (unsigned long)info->array.utime);
2439 } else {
2440 if (verbose)
2441 fprintf(stderr, Name ": too-old timestamp on "
2442 "backup-metadata on %s\n", devname);
2443 continue; /* time stamp is too bad */
2444 }
ea0ebe96 2445 }
353632d9 2446
e9e43ec3
N
2447 if (bsb.magic[15] == '1') {
2448 if (info->delta_disks >= 0) {
2449 /* reshape_progress is increasing */
2450 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
ea0ebe96
N
2451 info->reshape_progress) {
2452 nonew:
2453 if (verbose)
2454 fprintf(stderr, Name ": backup-metadata found on %s but is not needed\n", devname);
e9e43ec3 2455 continue; /* No new data here */
ea0ebe96 2456 }
e9e43ec3
N
2457 } else {
2458 /* reshape_progress is decreasing */
2459 if (__le64_to_cpu(bsb.arraystart) >=
2460 info->reshape_progress)
ea0ebe96 2461 goto nonew; /* No new data here */
e9e43ec3
N
2462 }
2463 } else {
2464 if (info->delta_disks >= 0) {
2465 /* reshape_progress is increasing */
2466 if (__le64_to_cpu(bsb.arraystart) + __le64_to_cpu(bsb.length) <
2467 info->reshape_progress &&
2468 __le64_to_cpu(bsb.arraystart2) + __le64_to_cpu(bsb.length2) <
2469 info->reshape_progress)
ea0ebe96 2470 goto nonew; /* No new data here */
e9e43ec3
N
2471 } else {
2472 /* reshape_progress is decreasing */
2473 if (__le64_to_cpu(bsb.arraystart) >=
2474 info->reshape_progress &&
2475 __le64_to_cpu(bsb.arraystart2) >=
2476 info->reshape_progress)
ea0ebe96 2477 goto nonew; /* No new data here */
e9e43ec3
N
2478 }
2479 }
ea0ebe96
N
2480 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
2481 second_fail:
2482 if (verbose)
2483 fprintf(stderr, Name ": Failed to verify secondary backup-metadata block on %s\n",
2484 devname);
353632d9 2485 continue; /* Cannot seek */
ea0ebe96 2486 }
2efedc7b 2487 /* There should be a duplicate backup superblock 4k before here */
06b0d786 2488 if (lseek64(fd, -4096, 1) < 0 ||
0155af90 2489 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
ea0ebe96 2490 goto second_fail; /* Cannot find leading superblock */
e9e43ec3
N
2491 if (bsb.magic[15] == '1')
2492 bsbsize = offsetof(struct mdp_backup_super, pad1);
2493 else
2494 bsbsize = offsetof(struct mdp_backup_super, pad);
ff94fb86 2495 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
ea0ebe96 2496 goto second_fail; /* Cannot find leading superblock */
2efedc7b 2497
353632d9
NB
2498 /* Now need the data offsets for all devices. */
2499 offsets = malloc(sizeof(*offsets)*info->array.raid_disks);
2500 for(j=0; j<info->array.raid_disks; j++) {
2501 if (fdlist[j] < 0)
2502 continue;
3da92f27 2503 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9
NB
2504 /* FIXME should be this be an error */
2505 continue;
a5d85af7 2506 st->ss->getinfo_super(st, &dinfo, NULL);
3da92f27 2507 st->ss->free_super(st);
14e5b4d7 2508 offsets[j] = dinfo.data_offset * 512;
353632d9
NB
2509 }
2510 printf(Name ": restoring critical section\n");
2511
2512 if (restore_stripes(fdlist, offsets,
2513 info->array.raid_disks,
2514 info->new_chunk,
2515 info->new_level,
2516 info->new_layout,
06b0d786 2517 fd, __le64_to_cpu(bsb.devstart)*512,
92dcdf7c 2518 __le64_to_cpu(bsb.arraystart)*512,
e9e43ec3
N
2519 __le64_to_cpu(bsb.length)*512)) {
2520 /* didn't succeed, so giveup */
ea0ebe96
N
2521 if (verbose)
2522 fprintf(stderr, Name ": Error restoring backup from %s\n",
2523 devname);
e9e43ec3
N
2524 return 1;
2525 }
2526
2527 if (bsb.magic[15] == '2' &&
2528 restore_stripes(fdlist, offsets,
2529 info->array.raid_disks,
2530 info->new_chunk,
2531 info->new_level,
2532 info->new_layout,
2533 fd, __le64_to_cpu(bsb.devstart)*512 +
2534 __le64_to_cpu(bsb.devstart2)*512,
92dcdf7c 2535 __le64_to_cpu(bsb.arraystart2)*512,
e9e43ec3 2536 __le64_to_cpu(bsb.length2)*512)) {
353632d9 2537 /* didn't succeed, so giveup */
ea0ebe96
N
2538 if (verbose)
2539 fprintf(stderr, Name ": Error restoring second backup from %s\n",
2540 devname);
2295250a 2541 return 1;
353632d9
NB
2542 }
2543
e9e43ec3 2544
353632d9
NB
2545 /* Ok, so the data is restored. Let's update those superblocks. */
2546
e9e43ec3
N
2547 if (info->delta_disks >= 0) {
2548 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
2549 __le64_to_cpu(bsb.length);
2550 if (bsb.magic[15] == '2') {
2551 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
2552 __le64_to_cpu(bsb.length2);
2553 if (p2 > info->reshape_progress)
2554 info->reshape_progress = p2;
2555 }
2556 } else {
2557 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
2558 if (bsb.magic[15] == '2') {
2559 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
2560 if (p2 < info->reshape_progress)
2561 info->reshape_progress = p2;
2562 }
2563 }
353632d9
NB
2564 for (j=0; j<info->array.raid_disks; j++) {
2565 if (fdlist[j] < 0) continue;
3da92f27 2566 if (st->ss->load_super(st, fdlist[j], NULL))
353632d9 2567 continue;
a5d85af7 2568 st->ss->getinfo_super(st, &dinfo, NULL);
e9e43ec3 2569 dinfo.reshape_progress = info->reshape_progress;
3da92f27 2570 st->ss->update_super(st, &dinfo,
68c7d6d7
NB
2571 "_reshape_progress",
2572 NULL,0, 0, NULL);
3da92f27
NB
2573 st->ss->store_super(st, fdlist[j]);
2574 st->ss->free_super(st);
353632d9 2575 }
353632d9
NB
2576 return 0;
2577 }
6e9eac4f
NB
2578 /* Didn't find any backup data, try to see if any
2579 * was needed.
2580 */
82f2d6ab
N
2581 if (info->delta_disks < 0) {
2582 /* When shrinking, the critical section is at the end.
2583 * So see if we are before the critical section.
2584 */
2585 unsigned long long first_block;
2586 nstripe = ostripe = 0;
2587 first_block = 0;
2588 while (ostripe >= nstripe) {
2589 ostripe += info->array.chunk_size / 512;
2590 first_block = ostripe * odata;
2591 nstripe = first_block / ndata / (info->new_chunk/512) *
2592 (info->new_chunk/512);
2593 }
2594
2595 if (info->reshape_progress >= first_block)
2596 return 0;
6e9eac4f 2597 }
82f2d6ab
N
2598 if (info->delta_disks > 0) {
2599 /* See if we are beyond the critical section. */
2600 unsigned long long last_block;
2601 nstripe = ostripe = 0;
2602 last_block = 0;
2603 while (nstripe >= ostripe) {
2604 nstripe += info->new_chunk / 512;
2605 last_block = nstripe * ndata;
2606 ostripe = last_block / odata / (info->array.chunk_size/512) *
2607 (info->array.chunk_size/512);
2608 }
6e9eac4f 2609
82f2d6ab
N
2610 if (info->reshape_progress >= last_block)
2611 return 0;
2612 }
6e9eac4f 2613 /* needed to recover critical section! */
ea0ebe96
N
2614 if (verbose)
2615 fprintf(stderr, Name ": Failed to find backup of critical section\n");
2295250a 2616 return 1;
353632d9 2617}
e9e43ec3
N
2618
2619int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
2620 char *backup_file)
2621{
2622 /* Array is assembled and ready to be started, but
2623 * monitoring is probably required.
2624 * So:
2625 * - start read-only
2626 * - set upper bound for resync
2627 * - initialise the 'suspend' boundaries
2628 * - switch to read-write
2629 * - fork and continue monitoring
2630 */
2631 int err;
2632 int backup_list[1];
2633 unsigned long long backup_offsets[1];
2634 int odisks, ndisks, ochunk, nchunk,odata,ndata;
2635 unsigned long a,b,blocks,stripes;
2636 int backup_fd;
2637 int *fds;
2638 unsigned long long *offsets;
2639 int d;
2640 struct mdinfo *sra, *sd;
2641 int rv;
f21e18ca 2642 unsigned long cache;
e9e43ec3
N
2643 int done = 0;
2644
2645 err = sysfs_set_str(info, NULL, "array_state", "readonly");
2646 if (err)
2647 return err;
2648
2649 /* make sure reshape doesn't progress until we are ready */
2650 sysfs_set_str(info, NULL, "sync_max", "0");
2651 sysfs_set_str(info, NULL, "array_state", "active"); /* FIXME or clean */
5f6ca90a
N
2652
2653 sra = sysfs_read(-1, devname2devnum(info->sys_name),
2654 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|
2655 GET_CACHE);
2656 if (!sra)
2657 return 1;
2658
e9e43ec3
N
2659 /* ndisks is not growing, so raid_disks is old and +delta is new */
2660 odisks = info->array.raid_disks;
2661 ndisks = odisks + info->delta_disks;
2662 odata = odisks - 1;
2663 ndata = ndisks - 1;
2664 if (info->array.level == 6) {
2665 odata--;
2666 ndata--;
2667 }
2668 ochunk = info->array.chunk_size;
2669 nchunk = info->new_chunk;
2670
200871ad
N
2671 a = (ochunk/512) * odata;
2672 b = (nchunk/512) * ndata;
e9e43ec3
N
2673 /* Find GCD */
2674 while (a != b) {
2675 if (a < b)
2676 b -= a;
2677 if (b < a)
2678 a -= b;
2679 }
2680 /* LCM == product / GCD */
200871ad 2681 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
e9e43ec3
N
2682
2683 if (ndata == odata)
1b13faf7
N
2684 while (blocks * 32 < sra->component_size &&
2685 blocks < 16*1024*2)
2686 blocks *= 2;
e9e43ec3
N
2687 stripes = blocks / (info->array.chunk_size/512) / odata;
2688
1b13faf7
N
2689 /* check that the internal stripe cache is
2690 * large enough, or it won't work.
2691 */
2692 cache = (nchunk < ochunk) ? ochunk : nchunk;
2693 cache = cache * 4 / 4096;
2694 if (cache < blocks / 8 / odisks + 16)
2695 /* Make it big enough to hold 'blocks' */
2696 cache = blocks / 8 / odisks + 16;
2697 if (sra->cache_size < cache)
2698 sysfs_set_num(sra, NULL, "stripe_cache_size",
2699 cache+1);
e9e43ec3
N
2700
2701 memset(&bsb, 0, 512);
2702 memcpy(bsb.magic, "md_backup_data-1", 16);
2703 memcpy(&bsb.set_uuid, info->uuid, 16);
2704 bsb.mtime = __cpu_to_le64(time(0));
2705 bsb.devstart2 = blocks;
2706
2707 backup_fd = open(backup_file, O_RDWR|O_CREAT, S_IRUSR | S_IWUSR);
87f26d14
N
2708 if (backup_fd < 0) {
2709 fprintf(stderr, Name ": Cannot open backup file %s\n",
2710 backup_file ?: "- no backup-file given");
2711 return 1;
2712 }
e9e43ec3
N
2713 backup_list[0] = backup_fd;
2714 backup_offsets[0] = 8 * 512;
2715 fds = malloc(odisks * sizeof(fds[0]));
2716 offsets = malloc(odisks * sizeof(offsets[0]));
2717 for (d=0; d<odisks; d++)
2718 fds[d] = -1;
2719
e9e43ec3
N
2720 for (sd = sra->devs; sd; sd = sd->next) {
2721 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2722 continue;
2723 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
2724 char *dn = map_dev(sd->disk.major,
2725 sd->disk.minor, 1);
2726 fds[sd->disk.raid_disk]
2727 = dev_open(dn, O_RDONLY);
2728 offsets[sd->disk.raid_disk] = sd->data_offset*512;
2729 if (fds[sd->disk.raid_disk] < 0) {
2730 fprintf(stderr, Name ": %s: cannot open component %s\n",
2731 info->sys_name, dn?dn:"-unknown-");
2732 rv = 1;
2733 goto release;
2734 }
2735 free(dn);
2736 }
2737 }
2738
2739 switch(fork()) {
2740 case 0:
2741 close(mdfd);
2742 mlockall(MCL_FUTURE);
2743 if (info->delta_disks < 0)
2744 done = child_shrink(-1, info, stripes,
2745 fds, offsets,
2746 info->array.raid_disks,
2747 info->array.chunk_size,
2748 info->array.level, info->array.layout,
2749 odata,
2750 1, backup_list, backup_offsets);
2751 else if (info->delta_disks == 0) {
2752 /* The 'start' is a per-device stripe number.
2753 * reshape_progress is a per-array sector number.
2754 * So divide by ndata * chunk_size
2755 */
2756 unsigned long long start = info->reshape_progress / ndata;
2757 start /= (info->array.chunk_size/512);
2758 done = child_same_size(-1, info, stripes,
2759 fds, offsets,
2760 start,
2761 info->array.raid_disks,
2762 info->array.chunk_size,
2763 info->array.level, info->array.layout,
2764 odata,
2765 1, backup_list, backup_offsets);
2766 }
2767 if (backup_file && done)
2768 unlink(backup_file);
2769 /* FIXME should I intuit a level change */
2770 exit(0);
2771 case -1:
2772 fprintf(stderr, Name ": Cannot run child to continue monitoring reshape: %s\n",
2773 strerror(errno));
2774 return 1;
2775 default:
2776 break;
2777 }
2778release:
2779 return 0;
2780}
2781
2782