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