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