]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
Grow: --backup-file and --data-offset are incompatible.
[thirdparty/mdadm.git] / Grow.c
1 /*
2 * mdadm - manage Linux "md" devices aka RAID arrays.
3 *
4 * Copyright (C) 2001-2012 Neil Brown <neilb@suse.de>
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
22 * Email: <neilb@suse.de>
23 */
24 #include "mdadm.h"
25 #include "dlink.h"
26 #include <sys/mman.h>
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
34 #ifndef offsetof
35 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
36 #endif
37
38 int restore_backup(struct supertype *st,
39 struct mdinfo *content,
40 int working_disks,
41 int next_spare,
42 char *backup_file,
43 int verbose)
44 {
45 int i;
46 int *fdlist;
47 struct mdinfo *dev;
48 int err;
49 int disk_count = next_spare + working_disks;
50
51 dprintf("Called restore_backup()\n");
52 fdlist = xmalloc(sizeof(int) * disk_count);
53
54 for (i = 0; i < next_spare; i++)
55 fdlist[i] = -1;
56 for (dev = content->devs; dev; dev = dev->next) {
57 char buf[22];
58 int fd;
59 sprintf(buf, "%d:%d",
60 dev->disk.major,
61 dev->disk.minor);
62 fd = dev_open(buf, O_RDWR);
63
64 if (dev->disk.raid_disk >= 0)
65 fdlist[dev->disk.raid_disk] = fd;
66 else
67 fdlist[next_spare++] = fd;
68 }
69
70 if (st->ss->external && st->ss->recover_backup)
71 err = st->ss->recover_backup(st, content);
72 else
73 err = Grow_restart(st, content, fdlist, next_spare,
74 backup_file, verbose > 0);
75
76 while (next_spare > 0) {
77 next_spare--;
78 if (fdlist[next_spare] >= 0)
79 close(fdlist[next_spare]);
80 }
81 free(fdlist);
82 if (err) {
83 pr_err("Failed to restore critical"
84 " section for reshape - sorry.\n");
85 if (!backup_file)
86 pr_err("Possibly you need"
87 " to specify a --backup-file\n");
88 return 1;
89 }
90
91 dprintf("restore_backup() returns status OK.\n");
92 return 0;
93 }
94
95 int Grow_Add_device(char *devname, int fd, char *newdev)
96 {
97 /* Add a device to an active array.
98 * Currently, just extend a linear array.
99 * This requires writing a new superblock on the
100 * new device, calling the kernel to add the device,
101 * and if that succeeds, update the superblock on
102 * all other devices.
103 * This means that we need to *find* all other devices.
104 */
105 struct mdinfo info;
106
107 struct stat stb;
108 int nfd, fd2;
109 int d, nd;
110 struct supertype *st = NULL;
111 char *subarray = NULL;
112
113 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
114 pr_err("cannot get array info for %s\n", devname);
115 return 1;
116 }
117
118 if (info.array.level != -1) {
119 pr_err("can only add devices to linear arrays\n");
120 return 1;
121 }
122
123 st = super_by_fd(fd, &subarray);
124 if (!st) {
125 pr_err("cannot handle arrays with superblock version %d\n",
126 info.array.major_version);
127 return 1;
128 }
129
130 if (subarray) {
131 pr_err("Cannot grow linear sub-arrays yet\n");
132 free(subarray);
133 free(st);
134 return 1;
135 }
136
137 nfd = open(newdev, O_RDWR|O_EXCL|O_DIRECT);
138 if (nfd < 0) {
139 pr_err("cannot open %s\n", newdev);
140 free(st);
141 return 1;
142 }
143 fstat(nfd, &stb);
144 if ((stb.st_mode & S_IFMT) != S_IFBLK) {
145 pr_err("%s is not a block device!\n", newdev);
146 close(nfd);
147 free(st);
148 return 1;
149 }
150 /* now check out all the devices and make sure we can read the
151 * superblock */
152 for (d=0 ; d < info.array.raid_disks ; d++) {
153 mdu_disk_info_t disk;
154 char *dv;
155
156 st->ss->free_super(st);
157
158 disk.number = d;
159 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
160 pr_err("cannot get device detail for device %d\n",
161 d);
162 close(nfd);
163 free(st);
164 return 1;
165 }
166 dv = map_dev(disk.major, disk.minor, 1);
167 if (!dv) {
168 pr_err("cannot find device file for device %d\n",
169 d);
170 close(nfd);
171 free(st);
172 return 1;
173 }
174 fd2 = dev_open(dv, O_RDWR);
175 if (fd2 < 0) {
176 pr_err("cannot open device file %s\n", dv);
177 close(nfd);
178 free(st);
179 return 1;
180 }
181
182 if (st->ss->load_super(st, fd2, NULL)) {
183 pr_err("cannot find super block on %s\n", dv);
184 close(nfd);
185 close(fd2);
186 free(st);
187 return 1;
188 }
189 close(fd2);
190 }
191 /* Ok, looks good. Lets update the superblock and write it out to
192 * newdev.
193 */
194
195 info.disk.number = d;
196 info.disk.major = major(stb.st_rdev);
197 info.disk.minor = minor(stb.st_rdev);
198 info.disk.raid_disk = d;
199 info.disk.state = (1 << MD_DISK_SYNC) | (1 << MD_DISK_ACTIVE);
200 st->ss->update_super(st, &info, "linear-grow-new", newdev,
201 0, 0, NULL);
202
203 if (st->ss->store_super(st, nfd)) {
204 pr_err("Cannot store new superblock on %s\n",
205 newdev);
206 close(nfd);
207 return 1;
208 }
209 close(nfd);
210
211 if (ioctl(fd, ADD_NEW_DISK, &info.disk) != 0) {
212 pr_err("Cannot add new disk to this array\n");
213 return 1;
214 }
215 /* Well, that seems to have worked.
216 * Now go through and update all superblocks
217 */
218
219 if (ioctl(fd, GET_ARRAY_INFO, &info.array) < 0) {
220 pr_err("cannot get array info for %s\n", devname);
221 return 1;
222 }
223
224 nd = d;
225 for (d=0 ; d < info.array.raid_disks ; d++) {
226 mdu_disk_info_t disk;
227 char *dv;
228
229 disk.number = d;
230 if (ioctl(fd, GET_DISK_INFO, &disk) < 0) {
231 pr_err("cannot get device detail for device %d\n",
232 d);
233 return 1;
234 }
235 dv = map_dev(disk.major, disk.minor, 1);
236 if (!dv) {
237 pr_err("cannot find device file for device %d\n",
238 d);
239 return 1;
240 }
241 fd2 = dev_open(dv, O_RDWR);
242 if (fd2 < 0) {
243 pr_err("cannot open device file %s\n", dv);
244 return 1;
245 }
246 if (st->ss->load_super(st, fd2, NULL)) {
247 pr_err("cannot find super block on %s\n", dv);
248 close(fd);
249 return 1;
250 }
251 info.array.raid_disks = nd+1;
252 info.array.nr_disks = nd+1;
253 info.array.active_disks = nd+1;
254 info.array.working_disks = nd+1;
255
256 st->ss->update_super(st, &info, "linear-grow-update", dv,
257 0, 0, NULL);
258
259 if (st->ss->store_super(st, fd2)) {
260 pr_err("Cannot store new superblock on %s\n", dv);
261 close(fd2);
262 return 1;
263 }
264 close(fd2);
265 }
266
267 return 0;
268 }
269
270 int Grow_addbitmap(char *devname, int fd, struct context *c, struct shape *s)
271 {
272 /*
273 * First check that array doesn't have a bitmap
274 * Then create the bitmap
275 * Then add it
276 *
277 * For internal bitmaps, we need to check the version,
278 * find all the active devices, and write the bitmap block
279 * to all devices
280 */
281 mdu_bitmap_file_t bmf;
282 mdu_array_info_t array;
283 struct supertype *st;
284 char *subarray = NULL;
285 int major = BITMAP_MAJOR_HI;
286 int vers = md_get_version(fd);
287 unsigned long long bitmapsize, array_size;
288
289 if (vers < 9003) {
290 major = BITMAP_MAJOR_HOSTENDIAN;
291 pr_err("Warning - bitmaps created on this kernel"
292 " are not portable\n"
293 " between different architectures. Consider upgrading"
294 " the Linux kernel.\n");
295 }
296
297 if (ioctl(fd, GET_BITMAP_FILE, &bmf) != 0) {
298 if (errno == ENOMEM)
299 pr_err("Memory allocation failure.\n");
300 else
301 pr_err("bitmaps not supported by this kernel.\n");
302 return 1;
303 }
304 if (bmf.pathname[0]) {
305 if (strcmp(s->bitmap_file,"none")==0) {
306 if (ioctl(fd, SET_BITMAP_FILE, -1)!= 0) {
307 pr_err("failed to remove bitmap %s\n",
308 bmf.pathname);
309 return 1;
310 }
311 return 0;
312 }
313 pr_err("%s already has a bitmap (%s)\n",
314 devname, bmf.pathname);
315 return 1;
316 }
317 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
318 pr_err("cannot get array status for %s\n", devname);
319 return 1;
320 }
321 if (array.state & (1<<MD_SB_BITMAP_PRESENT)) {
322 if (strcmp(s->bitmap_file, "none")==0) {
323 array.state &= ~(1<<MD_SB_BITMAP_PRESENT);
324 if (ioctl(fd, SET_ARRAY_INFO, &array)!= 0) {
325 pr_err("failed to remove internal bitmap.\n");
326 return 1;
327 }
328 return 0;
329 }
330 pr_err("Internal bitmap already present on %s\n",
331 devname);
332 return 1;
333 }
334
335 if (strcmp(s->bitmap_file, "none") == 0) {
336 pr_err("no bitmap found on %s\n", devname);
337 return 1;
338 }
339 if (array.level <= 0) {
340 pr_err("Bitmaps not meaningful with level %s\n",
341 map_num(pers, array.level)?:"of this array");
342 return 1;
343 }
344 bitmapsize = array.size;
345 bitmapsize <<= 1;
346 if (get_dev_size(fd, NULL, &array_size) &&
347 array_size > (0x7fffffffULL<<9)) {
348 /* Array is big enough that we cannot trust array.size
349 * try other approaches
350 */
351 bitmapsize = get_component_size(fd);
352 }
353 if (bitmapsize == 0) {
354 pr_err("Cannot reliably determine size of array to create bitmap - sorry.\n");
355 return 1;
356 }
357
358 if (array.level == 10) {
359 int ncopies = (array.layout&255)*((array.layout>>8)&255);
360 bitmapsize = bitmapsize * array.raid_disks / ncopies;
361 }
362
363 st = super_by_fd(fd, &subarray);
364 if (!st) {
365 pr_err("Cannot understand version %d.%d\n",
366 array.major_version, array.minor_version);
367 return 1;
368 }
369 if (subarray) {
370 pr_err("Cannot add bitmaps to sub-arrays yet\n");
371 free(subarray);
372 free(st);
373 return 1;
374 }
375 if (strcmp(s->bitmap_file, "internal") == 0) {
376 int rv;
377 int d;
378 int offset_setable = 0;
379 struct mdinfo *mdi;
380 if (st->ss->add_internal_bitmap == NULL) {
381 pr_err("Internal bitmaps not supported "
382 "with %s metadata\n", st->ss->name);
383 return 1;
384 }
385 mdi = sysfs_read(fd, NULL, GET_BITMAP_LOCATION);
386 if (mdi)
387 offset_setable = 1;
388 for (d=0; d< st->max_devs; d++) {
389 mdu_disk_info_t disk;
390 char *dv;
391 disk.number = d;
392 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
393 continue;
394 if (disk.major == 0 &&
395 disk.minor == 0)
396 continue;
397 if ((disk.state & (1<<MD_DISK_SYNC))==0)
398 continue;
399 dv = map_dev(disk.major, disk.minor, 1);
400 if (dv) {
401 int fd2 = dev_open(dv, O_RDWR);
402 if (fd2 < 0)
403 continue;
404 if (st->ss->load_super(st, fd2, NULL)==0) {
405 if (st->ss->add_internal_bitmap(
406 st,
407 &s->bitmap_chunk, c->delay, s->write_behind,
408 bitmapsize, offset_setable,
409 major)
410 )
411 st->ss->write_bitmap(st, fd2);
412 else {
413 pr_err("failed to create internal bitmap"
414 " - chunksize problem.\n");
415 close(fd2);
416 return 1;
417 }
418 }
419 close(fd2);
420 }
421 }
422 if (offset_setable) {
423 st->ss->getinfo_super(st, mdi, NULL);
424 sysfs_init(mdi, fd, NULL);
425 rv = sysfs_set_num_signed(mdi, NULL, "bitmap/location",
426 mdi->bitmap_offset);
427 } else {
428 array.state |= (1<<MD_SB_BITMAP_PRESENT);
429 rv = ioctl(fd, SET_ARRAY_INFO, &array);
430 }
431 if (rv < 0) {
432 if (errno == EBUSY)
433 pr_err("Cannot add bitmap while array is"
434 " resyncing or reshaping etc.\n");
435 pr_err("failed to set internal bitmap.\n");
436 return 1;
437 }
438 } else {
439 int uuid[4];
440 int bitmap_fd;
441 int d;
442 int max_devs = st->max_devs;
443
444 /* try to load a superblock */
445 for (d = 0; d < max_devs; d++) {
446 mdu_disk_info_t disk;
447 char *dv;
448 int fd2;
449 disk.number = d;
450 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
451 continue;
452 if ((disk.major==0 && disk.minor==0) ||
453 (disk.state & (1<<MD_DISK_REMOVED)))
454 continue;
455 dv = map_dev(disk.major, disk.minor, 1);
456 if (!dv)
457 continue;
458 fd2 = dev_open(dv, O_RDONLY);
459 if (fd2 >= 0) {
460 if (st->ss->load_super(st, fd2, NULL) == 0) {
461 close(fd2);
462 st->ss->uuid_from_super(st, uuid);
463 break;
464 }
465 close(fd2);
466 }
467 }
468 if (d == max_devs) {
469 pr_err("cannot find UUID for array!\n");
470 return 1;
471 }
472 if (CreateBitmap(s->bitmap_file, c->force, (char*)uuid, s->bitmap_chunk,
473 c->delay, s->write_behind, bitmapsize, major)) {
474 return 1;
475 }
476 bitmap_fd = open(s->bitmap_file, O_RDWR);
477 if (bitmap_fd < 0) {
478 pr_err("weird: %s cannot be opened\n",
479 s->bitmap_file);
480 return 1;
481 }
482 if (ioctl(fd, SET_BITMAP_FILE, bitmap_fd) < 0) {
483 int err = errno;
484 if (errno == EBUSY)
485 pr_err("Cannot add bitmap while array is"
486 " resyncing or reshaping etc.\n");
487 pr_err("Cannot set bitmap file for %s: %s\n",
488 devname, strerror(err));
489 return 1;
490 }
491 }
492
493 return 0;
494 }
495
496 /*
497 * When reshaping an array we might need to backup some data.
498 * This is written to all spares with a 'super_block' describing it.
499 * The superblock goes 4K from the end of the used space on the
500 * device.
501 * It if written after the backup is complete.
502 * It has the following structure.
503 */
504
505 static struct mdp_backup_super {
506 char magic[16]; /* md_backup_data-1 or -2 */
507 __u8 set_uuid[16];
508 __u64 mtime;
509 /* start/sizes in 512byte sectors */
510 __u64 devstart; /* address on backup device/file of data */
511 __u64 arraystart;
512 __u64 length;
513 __u32 sb_csum; /* csum of preceeding bytes. */
514 __u32 pad1;
515 __u64 devstart2; /* offset in to data of second section */
516 __u64 arraystart2;
517 __u64 length2;
518 __u32 sb_csum2; /* csum of preceeding bytes. */
519 __u8 pad[512-68-32];
520 } __attribute__((aligned(512))) bsb, bsb2;
521
522 static __u32 bsb_csum(char *buf, int len)
523 {
524 int i;
525 int csum = 0;
526 for (i = 0; i < len; i++)
527 csum = (csum<<3) + buf[0];
528 return __cpu_to_le32(csum);
529 }
530
531 static int check_idle(struct supertype *st)
532 {
533 /* Check that all member arrays for this container, or the
534 * container of this array, are idle
535 */
536 char *container = (st->container_devnm[0]
537 ? st->container_devnm : st->devnm);
538 struct mdstat_ent *ent, *e;
539 int is_idle = 1;
540
541 ent = mdstat_read(0, 0);
542 for (e = ent ; e; e = e->next) {
543 if (!is_container_member(e, container))
544 continue;
545 if (e->percent >= 0) {
546 is_idle = 0;
547 break;
548 }
549 }
550 free_mdstat(ent);
551 return is_idle;
552 }
553
554 static int freeze_container(struct supertype *st)
555 {
556 char *container = (st->container_devnm[0]
557 ? st->container_devnm : st->devnm);
558
559 if (!check_idle(st))
560 return -1;
561
562 if (block_monitor(container, 1)) {
563 pr_err("failed to freeze container\n");
564 return -2;
565 }
566
567 return 1;
568 }
569
570 static void unfreeze_container(struct supertype *st)
571 {
572 char *container = (st->container_devnm[0]
573 ? st->container_devnm : st->devnm);
574
575 unblock_monitor(container, 1);
576 }
577
578 static int freeze(struct supertype *st)
579 {
580 /* Try to freeze resync/rebuild on this array/container.
581 * Return -1 if the array is busy,
582 * return -2 container cannot be frozen,
583 * return 0 if this kernel doesn't support 'frozen'
584 * return 1 if it worked.
585 */
586 if (st->ss->external)
587 return freeze_container(st);
588 else {
589 struct mdinfo *sra = sysfs_read(-1, st->devnm, GET_VERSION);
590 int err;
591 char buf[20];
592
593 if (!sra)
594 return -1;
595 /* Need to clear any 'read-auto' status */
596 if (sysfs_get_str(sra, NULL, "array_state", buf, 20) > 0 &&
597 strncmp(buf, "read-auto", 9) == 0)
598 sysfs_set_str(sra, NULL, "array_state", "clean");
599
600 err = sysfs_freeze_array(sra);
601 sysfs_free(sra);
602 return err;
603 }
604 }
605
606 static void unfreeze(struct supertype *st)
607 {
608 if (st->ss->external)
609 return unfreeze_container(st);
610 else {
611 struct mdinfo *sra = sysfs_read(-1, st->devnm, GET_VERSION);
612
613 if (sra)
614 sysfs_set_str(sra, NULL, "sync_action", "idle");
615 sysfs_free(sra);
616 }
617 }
618
619 static void wait_reshape(struct mdinfo *sra)
620 {
621 int fd = sysfs_get_fd(sra, NULL, "sync_action");
622 char action[20];
623
624 if (fd < 0)
625 return;
626
627 while (sysfs_fd_get_str(fd, action, 20) > 0 &&
628 strncmp(action, "reshape", 7) == 0) {
629 fd_set rfds;
630 FD_ZERO(&rfds);
631 FD_SET(fd, &rfds);
632 select(fd+1, NULL, NULL, &rfds, NULL);
633 }
634 close(fd);
635 }
636
637 static int reshape_super(struct supertype *st, unsigned long long size,
638 int level, int layout, int chunksize, int raid_disks,
639 int delta_disks, char *backup_file, char *dev,
640 int direction, int verbose)
641 {
642 /* nothing extra to check in the native case */
643 if (!st->ss->external)
644 return 0;
645 if (!st->ss->reshape_super ||
646 !st->ss->manage_reshape) {
647 pr_err("%s metadata does not support reshape\n",
648 st->ss->name);
649 return 1;
650 }
651
652 return st->ss->reshape_super(st, size, level, layout, chunksize,
653 raid_disks, delta_disks, backup_file, dev,
654 direction, verbose);
655 }
656
657 static void sync_metadata(struct supertype *st)
658 {
659 if (st->ss->external) {
660 if (st->update_tail) {
661 flush_metadata_updates(st);
662 st->update_tail = &st->updates;
663 } else
664 st->ss->sync_metadata(st);
665 }
666 }
667
668 static int subarray_set_num(char *container, struct mdinfo *sra, char *name, int n)
669 {
670 /* when dealing with external metadata subarrays we need to be
671 * prepared to handle EAGAIN. The kernel may need to wait for
672 * mdmon to mark the array active so the kernel can handle
673 * allocations/writeback when preparing the reshape action
674 * (md_allow_write()). We temporarily disable safe_mode_delay
675 * to close a race with the array_state going clean before the
676 * next write to raid_disks / stripe_cache_size
677 */
678 char safe[50];
679 int rc;
680
681 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
682 if (!container ||
683 (strcmp(name, "raid_disks") != 0 &&
684 strcmp(name, "stripe_cache_size") != 0))
685 return sysfs_set_num(sra, NULL, name, n);
686
687 rc = sysfs_get_str(sra, NULL, "safe_mode_delay", safe, sizeof(safe));
688 if (rc <= 0)
689 return -1;
690 sysfs_set_num(sra, NULL, "safe_mode_delay", 0);
691 rc = sysfs_set_num(sra, NULL, name, n);
692 if (rc < 0 && errno == EAGAIN) {
693 ping_monitor(container);
694 /* if we get EAGAIN here then the monitor is not active
695 * so stop trying
696 */
697 rc = sysfs_set_num(sra, NULL, name, n);
698 }
699 sysfs_set_str(sra, NULL, "safe_mode_delay", safe);
700 return rc;
701 }
702
703 int start_reshape(struct mdinfo *sra, int already_running,
704 int before_data_disks, int data_disks)
705 {
706 int err;
707 unsigned long long sync_max_to_set;
708
709 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
710 err = sysfs_set_num(sra, NULL, "suspend_hi", sra->reshape_progress);
711 err = err ?: sysfs_set_num(sra, NULL, "suspend_lo",
712 sra->reshape_progress);
713 if (before_data_disks <= data_disks)
714 sync_max_to_set = sra->reshape_progress / data_disks;
715 else
716 sync_max_to_set = (sra->component_size * data_disks
717 - sra->reshape_progress) / data_disks;
718 if (!already_running)
719 sysfs_set_num(sra, NULL, "sync_min", sync_max_to_set);
720 err = err ?: sysfs_set_num(sra, NULL, "sync_max", sync_max_to_set);
721 if (!already_running)
722 err = err ?: sysfs_set_str(sra, NULL, "sync_action", "reshape");
723
724 return err;
725 }
726
727 void abort_reshape(struct mdinfo *sra)
728 {
729 sysfs_set_str(sra, NULL, "sync_action", "idle");
730 sysfs_set_num(sra, NULL, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL);
731 sysfs_set_num(sra, NULL, "suspend_hi", 0);
732 sysfs_set_num(sra, NULL, "suspend_lo", 0);
733 sysfs_set_num(sra, NULL, "sync_min", 0);
734 sysfs_set_str(sra, NULL, "sync_max", "max");
735 }
736
737 int remove_disks_for_takeover(struct supertype *st,
738 struct mdinfo *sra,
739 int layout)
740 {
741 int nr_of_copies;
742 struct mdinfo *remaining;
743 int slot;
744
745 if (sra->array.level == 10)
746 nr_of_copies = layout & 0xff;
747 else if (sra->array.level == 1)
748 nr_of_copies = sra->array.raid_disks;
749 else
750 return 1;
751
752 remaining = sra->devs;
753 sra->devs = NULL;
754 /* for each 'copy', select one device and remove from the list. */
755 for (slot = 0; slot < sra->array.raid_disks; slot += nr_of_copies) {
756 struct mdinfo **diskp;
757 int found = 0;
758
759 /* Find a working device to keep */
760 for (diskp = &remaining; *diskp ; diskp = &(*diskp)->next) {
761 struct mdinfo *disk = *diskp;
762
763 if (disk->disk.raid_disk < slot)
764 continue;
765 if (disk->disk.raid_disk >= slot + nr_of_copies)
766 continue;
767 if (disk->disk.state & (1<<MD_DISK_REMOVED))
768 continue;
769 if (disk->disk.state & (1<<MD_DISK_FAULTY))
770 continue;
771 if (!(disk->disk.state & (1<<MD_DISK_SYNC)))
772 continue;
773
774 /* We have found a good disk to use! */
775 *diskp = disk->next;
776 disk->next = sra->devs;
777 sra->devs = disk;
778 found = 1;
779 break;
780 }
781 if (!found)
782 break;
783 }
784
785 if (slot < sra->array.raid_disks) {
786 /* didn't find all slots */
787 struct mdinfo **e;
788 e = &remaining;
789 while (*e)
790 e = &(*e)->next;
791 *e = sra->devs;
792 sra->devs = remaining;
793 return 1;
794 }
795
796 /* Remove all 'remaining' devices from the array */
797 while (remaining) {
798 struct mdinfo *sd = remaining;
799 remaining = sd->next;
800
801 sysfs_set_str(sra, sd, "state", "faulty");
802 sysfs_set_str(sra, sd, "slot", "none");
803 /* for external metadata disks should be removed in mdmon */
804 if (!st->ss->external)
805 sysfs_set_str(sra, sd, "state", "remove");
806 sd->disk.state |= (1<<MD_DISK_REMOVED);
807 sd->disk.state &= ~(1<<MD_DISK_SYNC);
808 sd->next = sra->devs;
809 sra->devs = sd;
810 }
811 return 0;
812 }
813
814 void reshape_free_fdlist(int *fdlist,
815 unsigned long long *offsets,
816 int size)
817 {
818 int i;
819
820 for (i = 0; i < size; i++)
821 if (fdlist[i] >= 0)
822 close(fdlist[i]);
823
824 free(fdlist);
825 free(offsets);
826 }
827
828 int reshape_prepare_fdlist(char *devname,
829 struct mdinfo *sra,
830 int raid_disks,
831 int nrdisks,
832 unsigned long blocks,
833 char *backup_file,
834 int *fdlist,
835 unsigned long long *offsets)
836 {
837 int d = 0;
838 struct mdinfo *sd;
839
840 for (d = 0; d <= nrdisks; d++)
841 fdlist[d] = -1;
842 d = raid_disks;
843 for (sd = sra->devs; sd; sd = sd->next) {
844 if (sd->disk.state & (1<<MD_DISK_FAULTY))
845 continue;
846 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
847 char *dn = map_dev(sd->disk.major,
848 sd->disk.minor, 1);
849 fdlist[sd->disk.raid_disk]
850 = dev_open(dn, O_RDONLY);
851 offsets[sd->disk.raid_disk] = sd->data_offset*512;
852 if (fdlist[sd->disk.raid_disk] < 0) {
853 pr_err("%s: cannot open component %s\n",
854 devname, dn ? dn : "-unknown-");
855 d = -1;
856 goto release;
857 }
858 } else if (backup_file == NULL) {
859 /* spare */
860 char *dn = map_dev(sd->disk.major,
861 sd->disk.minor, 1);
862 fdlist[d] = dev_open(dn, O_RDWR);
863 offsets[d] = (sd->data_offset + sra->component_size - blocks - 8)*512;
864 if (fdlist[d] < 0) {
865 pr_err("%s: cannot open component %s\n",
866 devname, dn ? dn : "-unknown-");
867 d = -1;
868 goto release;
869 }
870 d++;
871 }
872 }
873 release:
874 return d;
875 }
876
877 int reshape_open_backup_file(char *backup_file,
878 int fd,
879 char *devname,
880 long blocks,
881 int *fdlist,
882 unsigned long long *offsets,
883 int restart)
884 {
885 /* Return 1 on success, 0 on any form of failure */
886 /* need to check backup file is large enough */
887 char buf[512];
888 struct stat stb;
889 unsigned int dev;
890 int i;
891
892 *fdlist = open(backup_file, O_RDWR|O_CREAT|(restart ? O_TRUNC : O_EXCL),
893 S_IRUSR | S_IWUSR);
894 *offsets = 8 * 512;
895 if (*fdlist < 0) {
896 pr_err("%s: cannot create backup file %s: %s\n",
897 devname, backup_file, strerror(errno));
898 return 0;
899 }
900 /* Guard against backup file being on array device.
901 * If array is partitioned or if LVM etc is in the
902 * way this will not notice, but it is better than
903 * nothing.
904 */
905 fstat(*fdlist, &stb);
906 dev = stb.st_dev;
907 fstat(fd, &stb);
908 if (stb.st_rdev == dev) {
909 pr_err("backup file must NOT be"
910 " on the array being reshaped.\n");
911 close(*fdlist);
912 return 0;
913 }
914
915 memset(buf, 0, 512);
916 for (i=0; i < blocks + 8 ; i++) {
917 if (write(*fdlist, buf, 512) != 512) {
918 pr_err("%s: cannot create"
919 " backup file %s: %s\n",
920 devname, backup_file, strerror(errno));
921 return 0;
922 }
923 }
924 if (fsync(*fdlist) != 0) {
925 pr_err("%s: cannot create backup file %s: %s\n",
926 devname, backup_file, strerror(errno));
927 return 0;
928 }
929
930 return 1;
931 }
932
933 unsigned long GCD(unsigned long a, unsigned long b)
934 {
935 while (a != b) {
936 if (a < b)
937 b -= a;
938 if (b < a)
939 a -= b;
940 }
941 return a;
942 }
943
944 unsigned long compute_backup_blocks(int nchunk, int ochunk,
945 unsigned int ndata, unsigned int odata)
946 {
947 unsigned long a, b, blocks;
948 /* So how much do we need to backup.
949 * We need an amount of data which is both a whole number of
950 * old stripes and a whole number of new stripes.
951 * So LCM for (chunksize*datadisks).
952 */
953 a = (ochunk/512) * odata;
954 b = (nchunk/512) * ndata;
955 /* Find GCD */
956 a = GCD(a, b);
957 /* LCM == product / GCD */
958 blocks = (ochunk/512) * (nchunk/512) * odata * ndata / a;
959
960 return blocks;
961 }
962
963 char *analyse_change(struct mdinfo *info, struct reshape *re)
964 {
965 /* Based on the current array state in info->array and
966 * the changes in info->new_* etc, determine:
967 * - whether the change is possible
968 * - Intermediate level/raid_disks/layout
969 * - whether a restriping reshape is needed
970 * - number of sectors in minimum change unit. This
971 * will cover a whole number of stripes in 'before' and
972 * 'after'.
973 *
974 * Return message if the change should be rejected
975 * NULL if the change can be achieved
976 *
977 * This can be called as part of starting a reshape, or
978 * when assembling an array that is undergoing reshape.
979 */
980 int near, far, offset, copies;
981 int new_disks;
982 int old_chunk, new_chunk;
983 /* delta_parity records change in number of devices
984 * caused by level change
985 */
986 int delta_parity = 0;
987
988 memset(re, 0, sizeof(*re));
989
990 /* If a new level not explicitly given, we assume no-change */
991 if (info->new_level == UnSet)
992 info->new_level = info->array.level;
993
994 if (info->new_chunk)
995 switch (info->new_level) {
996 case 0:
997 case 4:
998 case 5:
999 case 6:
1000 case 10:
1001 /* chunk size is meaningful, must divide component_size
1002 * evenly
1003 */
1004 if (info->component_size % (info->new_chunk/512))
1005 return "New chunk size does not"
1006 " divide component size";
1007 break;
1008 default:
1009 return "chunk size not meaningful for this level";
1010 }
1011 else
1012 info->new_chunk = info->array.chunk_size;
1013
1014 switch (info->array.level) {
1015 default:
1016 return "Cannot understand this RAID level";
1017 case 1:
1018 /* RAID1 can convert to RAID1 with different disks, or
1019 * raid5 with 2 disks, or
1020 * raid0 with 1 disk
1021 */
1022 if (info->new_level > 1 &&
1023 (info->component_size & 7))
1024 return "Cannot convert RAID1 of this size - "
1025 "reduce size to multiple of 4K first.";
1026 if (info->new_level == 0) {
1027 if (info->delta_disks != UnSet &&
1028 info->delta_disks != 0)
1029 return "Cannot change number of disks "
1030 "with RAID1->RAID0 conversion";
1031 re->level = 0;
1032 re->before.data_disks = 1;
1033 re->after.data_disks = 1;
1034 return NULL;
1035 }
1036 if (info->new_level == 1) {
1037 if (info->delta_disks == UnSet)
1038 /* Don't know what to do */
1039 return "no change requested for Growing RAID1";
1040 re->level = 1;
1041 return NULL;
1042 }
1043 if (info->array.raid_disks == 2 &&
1044 info->new_level == 5) {
1045
1046 re->level = 5;
1047 re->before.data_disks = 1;
1048 if (info->delta_disks != UnSet &&
1049 info->delta_disks != 0)
1050 re->after.data_disks = 1 + info->delta_disks;
1051 else
1052 re->after.data_disks = 1;
1053 if (re->after.data_disks < 1)
1054 return "Number of disks too small for RAID5";
1055
1056 re->before.layout = ALGORITHM_LEFT_SYMMETRIC;
1057 info->array.chunk_size = 65536;
1058 break;
1059 }
1060 /* Could do some multi-stage conversions, but leave that to
1061 * later.
1062 */
1063 return "Impossibly level change request for RAID1";
1064
1065 case 10:
1066 /* RAID10 can be converted from near mode to
1067 * RAID0 by removing some devices.
1068 * It can also be reshaped if the kernel supports
1069 * new_data_offset.
1070 */
1071 switch (info->new_level) {
1072 case 0:
1073 if ((info->array.layout & ~0xff) != 0x100)
1074 return "Cannot Grow RAID10 with far/offset layout";
1075 /* number of devices must be multiple of number of copies */
1076 if (info->array.raid_disks % (info->array.layout & 0xff))
1077 return "RAID10 layout too complex for Grow operation";
1078
1079 new_disks = (info->array.raid_disks
1080 / (info->array.layout & 0xff));
1081 if (info->delta_disks == UnSet)
1082 info->delta_disks = (new_disks
1083 - info->array.raid_disks);
1084
1085 if (info->delta_disks != new_disks - info->array.raid_disks)
1086 return "New number of raid-devices impossible for RAID10";
1087 if (info->new_chunk &&
1088 info->new_chunk != info->array.chunk_size)
1089 return "Cannot change chunk-size with RAID10 Grow";
1090
1091 /* looks good */
1092 re->level = 0;
1093 re->before.data_disks = new_disks;
1094 re->after.data_disks = re->before.data_disks;
1095 return NULL;
1096
1097 case 10:
1098 near = info->array.layout & 0xff;
1099 far = (info->array.layout >> 8) & 0xff;
1100 offset = info->array.layout & 0x10000;
1101 if (far > 1 && !offset)
1102 return "Cannot reshape RAID10 in far-mode";
1103 copies = near * far;
1104
1105 old_chunk = info->array.chunk_size * far;
1106
1107 if (info->new_layout == UnSet)
1108 info->new_layout = info->array.layout;
1109 else {
1110 near = info->new_layout & 0xff;
1111 far = (info->new_layout >> 8) & 0xff;
1112 offset = info->new_layout & 0x10000;
1113 if (far > 1 && !offset)
1114 return "Cannot reshape RAID10 to far-mode";
1115 if (near * far != copies)
1116 return "Cannot change number of copies"
1117 " when reshaping RAID10";
1118 }
1119 if (info->delta_disks == UnSet)
1120 info->delta_disks = 0;
1121 new_disks = (info->array.raid_disks +
1122 info->delta_disks);
1123
1124 new_chunk = info->new_chunk * far;
1125
1126 re->level = 10;
1127 re->before.layout = info->array.layout;
1128 re->before.data_disks = info->array.raid_disks;
1129 re->after.layout = info->new_layout;
1130 re->after.data_disks = new_disks;
1131 /* For RAID10 we don't do backup but do allow reshape,
1132 * so set backup_blocks to INVALID_SECTORS rather than
1133 * zero.
1134 * And there is no need to synchronise stripes on both
1135 * 'old' and 'new'. So the important
1136 * number is the minimum data_offset difference
1137 * which is the larger of (offset copies * chunk).
1138 */
1139 re->backup_blocks = INVALID_SECTORS;
1140 re->min_offset_change = max(old_chunk, new_chunk) / 512;
1141 if (new_disks < re->before.data_disks &&
1142 info->space_after < re->min_offset_change)
1143 /* Reduce component size by one chunk */
1144 re->new_size = (info->component_size -
1145 re->min_offset_change);
1146 else
1147 re->new_size = info->component_size;
1148 re->new_size = re->new_size * new_disks / copies;
1149 return NULL;
1150
1151 default:
1152 return "RAID10 can only be changed to RAID0";
1153 }
1154 case 0:
1155 /* RAID0 can be converted to RAID10, or to RAID456 */
1156 if (info->new_level == 10) {
1157 if (info->new_layout == UnSet && info->delta_disks == UnSet) {
1158 /* Assume near=2 layout */
1159 info->new_layout = 0x102;
1160 info->delta_disks = info->array.raid_disks;
1161 }
1162 if (info->new_layout == UnSet) {
1163 int copies = 1 + (info->delta_disks
1164 / info->array.raid_disks);
1165 if (info->array.raid_disks * (copies-1)
1166 != info->delta_disks)
1167 return "Impossible number of devices"
1168 " for RAID0->RAID10";
1169 info->new_layout = 0x100 + copies;
1170 }
1171 if (info->delta_disks == UnSet) {
1172 int copies = info->new_layout & 0xff;
1173 if (info->new_layout != 0x100 + copies)
1174 return "New layout impossible"
1175 " for RAID0->RAID10";;
1176 info->delta_disks = (copies - 1) *
1177 info->array.raid_disks;
1178 }
1179 if (info->new_chunk &&
1180 info->new_chunk != info->array.chunk_size)
1181 return "Cannot change chunk-size with RAID0->RAID10";
1182 /* looks good */
1183 re->level = 10;
1184 re->before.data_disks = (info->array.raid_disks +
1185 info->delta_disks);
1186 re->after.data_disks = re->before.data_disks;
1187 re->before.layout = info->new_layout;
1188 return NULL;
1189 }
1190
1191 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1192 * a raid4 style layout of the final level.
1193 */
1194 switch (info->new_level) {
1195 case 4:
1196 delta_parity = 1;
1197 case 0:
1198 re->level = 4;
1199 re->before.layout = 0;
1200 break;
1201 case 5:
1202 delta_parity = 1;
1203 re->level = 5;
1204 re->before.layout = ALGORITHM_PARITY_N;
1205 break;
1206 case 6:
1207 delta_parity = 2;
1208 re->level = 6;
1209 re->before.layout = ALGORITHM_PARITY_N;
1210 break;
1211 default:
1212 return "Impossible level change requested";
1213 }
1214 re->before.data_disks = info->array.raid_disks;
1215 /* determining 'after' layout happens outside this 'switch' */
1216 break;
1217
1218 case 4:
1219 info->array.layout = ALGORITHM_PARITY_N;
1220 case 5:
1221 switch (info->new_level) {
1222 case 0:
1223 delta_parity = -1;
1224 case 4:
1225 re->level = info->array.level;
1226 re->before.data_disks = info->array.raid_disks - 1;
1227 re->before.layout = info->array.layout;
1228 break;
1229 case 5:
1230 re->level = 5;
1231 re->before.data_disks = info->array.raid_disks - 1;
1232 re->before.layout = info->array.layout;
1233 break;
1234 case 6:
1235 delta_parity = 1;
1236 re->level = 6;
1237 re->before.data_disks = info->array.raid_disks - 1;
1238 switch (info->array.layout) {
1239 case ALGORITHM_LEFT_ASYMMETRIC:
1240 re->before.layout = ALGORITHM_LEFT_ASYMMETRIC_6;
1241 break;
1242 case ALGORITHM_RIGHT_ASYMMETRIC:
1243 re->before.layout = ALGORITHM_RIGHT_ASYMMETRIC_6;
1244 break;
1245 case ALGORITHM_LEFT_SYMMETRIC:
1246 re->before.layout = ALGORITHM_LEFT_SYMMETRIC_6;
1247 break;
1248 case ALGORITHM_RIGHT_SYMMETRIC:
1249 re->before.layout = ALGORITHM_RIGHT_SYMMETRIC_6;
1250 break;
1251 case ALGORITHM_PARITY_0:
1252 re->before.layout = ALGORITHM_PARITY_0_6;
1253 break;
1254 case ALGORITHM_PARITY_N:
1255 re->before.layout = ALGORITHM_PARITY_N_6;
1256 break;
1257 default:
1258 return "Cannot convert an array with this layout";
1259 }
1260 break;
1261 case 1:
1262 if (info->array.raid_disks != 2)
1263 return "Can only convert a 2-device array to RAID1";
1264 if (info->delta_disks != UnSet &&
1265 info->delta_disks != 0)
1266 return "Cannot set raid_disk when "
1267 "converting RAID5->RAID1";
1268 re->level = 1;
1269 info->new_chunk = 0;
1270 return NULL;
1271 default:
1272 return "Impossible level change requested";
1273 }
1274 break;
1275 case 6:
1276 switch (info->new_level) {
1277 case 4:
1278 case 5:
1279 delta_parity = -1;
1280 case 6:
1281 re->level = 6;
1282 re->before.data_disks = info->array.raid_disks - 2;
1283 re->before.layout = info->array.layout;
1284 break;
1285 default:
1286 return "Impossible level change requested";
1287 }
1288 break;
1289 }
1290
1291 /* If we reached here then it looks like a re-stripe is
1292 * happening. We have determined the intermediate level
1293 * and initial raid_disks/layout and stored these in 're'.
1294 *
1295 * We need to deduce the final layout that can be atomically
1296 * converted to the end state.
1297 */
1298 switch (info->new_level) {
1299 case 0:
1300 /* We can only get to RAID0 from RAID4 or RAID5
1301 * with appropriate layout and one extra device
1302 */
1303 if (re->level != 4 && re->level != 5)
1304 return "Cannot covert to RAID0 from this level";
1305
1306 switch (re->level) {
1307 case 4:
1308 re->before.layout = 0;
1309 re->after.layout = 0;
1310 break;
1311 case 5:
1312 re->after.layout = ALGORITHM_PARITY_N;
1313 break;
1314 }
1315 break;
1316
1317 case 4:
1318 /* We can only get to RAID4 from RAID5 */
1319 if (re->level != 4 && re->level != 5)
1320 return "Cannot convert to RAID4 from this level";
1321
1322 switch (re->level) {
1323 case 4:
1324 re->before.layout = 0;
1325 re->after.layout = 0;
1326 break;
1327 case 5:
1328 re->after.layout = ALGORITHM_PARITY_N;
1329 break;
1330 }
1331 break;
1332
1333 case 5:
1334 /* We get to RAID5 from RAID5 or RAID6 */
1335 if (re->level != 5 && re->level != 6)
1336 return "Cannot convert to RAID5 from this level";
1337
1338 switch (re->level) {
1339 case 5:
1340 if (info->new_layout == UnSet)
1341 re->after.layout = re->before.layout;
1342 else
1343 re->after.layout = info->new_layout;
1344 break;
1345 case 6:
1346 if (info->new_layout == UnSet)
1347 info->new_layout = re->before.layout;
1348
1349 /* after.layout needs to be raid6 version of new_layout */
1350 if (info->new_layout == ALGORITHM_PARITY_N)
1351 re->after.layout = ALGORITHM_PARITY_N;
1352 else {
1353 char layout[40];
1354 char *ls = map_num(r5layout, info->new_layout);
1355 int l;
1356 if (ls) {
1357 /* Current RAID6 layout has a RAID5
1358 * equivalent - good
1359 */
1360 strcat(strcpy(layout, ls), "-6");
1361 l = map_name(r6layout, layout);
1362 if (l == UnSet)
1363 return "Cannot find RAID6 layout"
1364 " to convert to";
1365 } else {
1366 /* Current RAID6 has no equivalent.
1367 * If it is already a '-6' layout we
1368 * can leave it unchanged, else we must
1369 * fail
1370 */
1371 ls = map_num(r6layout, info->new_layout);
1372 if (!ls ||
1373 strcmp(ls+strlen(ls)-2, "-6") != 0)
1374 return "Please specify new layout";
1375 l = info->new_layout;
1376 }
1377 re->after.layout = l;
1378 }
1379 }
1380 break;
1381
1382 case 6:
1383 /* We must already be at level 6 */
1384 if (re->level != 6)
1385 return "Impossible level change";
1386 if (info->new_layout == UnSet)
1387 re->after.layout = info->array.layout;
1388 else
1389 re->after.layout = info->new_layout;
1390 break;
1391 default:
1392 return "Impossible level change requested";
1393 }
1394 if (info->delta_disks == UnSet)
1395 info->delta_disks = delta_parity;
1396
1397 re->after.data_disks = (re->before.data_disks
1398 + info->delta_disks
1399 - delta_parity);
1400 switch (re->level) {
1401 case 6: re->parity = 2;
1402 break;
1403 case 4:
1404 case 5: re->parity = 1;
1405 break;
1406 default: re->parity = 0;
1407 break;
1408 }
1409 /* So we have a restripe operation, we need to calculate the number
1410 * of blocks per reshape operation.
1411 */
1412 if (info->new_chunk == 0)
1413 info->new_chunk = info->array.chunk_size;
1414 if (re->after.data_disks == re->before.data_disks &&
1415 re->after.layout == re->before.layout &&
1416 info->new_chunk == info->array.chunk_size) {
1417 /* Nothing to change, can change level immediately. */
1418 re->level = info->new_level;
1419 re->backup_blocks = 0;
1420 return NULL;
1421 }
1422 if (re->after.data_disks == 1 && re->before.data_disks == 1) {
1423 /* chunk and layout changes make no difference */
1424 re->level = info->new_level;
1425 re->backup_blocks = 0;
1426 return NULL;
1427 }
1428
1429 if (re->after.data_disks == re->before.data_disks &&
1430 get_linux_version() < 2006032)
1431 return "in-place reshape is not safe before 2.6.32 - sorry.";
1432
1433 if (re->after.data_disks < re->before.data_disks &&
1434 get_linux_version() < 2006030)
1435 return "reshape to fewer devices is not supported before 2.6.30 - sorry.";
1436
1437 re->backup_blocks = compute_backup_blocks(
1438 info->new_chunk, info->array.chunk_size,
1439 re->after.data_disks,
1440 re->before.data_disks);
1441 re->min_offset_change = re->backup_blocks / re->before.data_disks;
1442
1443 re->new_size = info->component_size * re->after.data_disks;
1444 return NULL;
1445 }
1446
1447 static int set_array_size(struct supertype *st, struct mdinfo *sra,
1448 char *text_version)
1449 {
1450 struct mdinfo *info;
1451 char *subarray;
1452 int ret_val = -1;
1453
1454 if ((st == NULL) || (sra == NULL))
1455 return ret_val;
1456
1457 if (text_version == NULL)
1458 text_version = sra->text_version;
1459 subarray = strchr(text_version+1, '/')+1;
1460 info = st->ss->container_content(st, subarray);
1461 if (info) {
1462 unsigned long long current_size = 0;
1463 unsigned long long new_size =
1464 info->custom_array_size/2;
1465
1466 if (sysfs_get_ll(sra, NULL, "array_size", &current_size) == 0 &&
1467 new_size > current_size) {
1468 if (sysfs_set_num(sra, NULL, "array_size", new_size)
1469 < 0)
1470 dprintf("Error: Cannot set array size");
1471 else {
1472 ret_val = 0;
1473 dprintf("Array size changed");
1474 }
1475 dprintf(" from %llu to %llu.\n",
1476 current_size, new_size);
1477 }
1478 sysfs_free(info);
1479 } else
1480 dprintf("Error: set_array_size(): info pointer in NULL\n");
1481
1482 return ret_val;
1483 }
1484
1485 static int reshape_array(char *container, int fd, char *devname,
1486 struct supertype *st, struct mdinfo *info,
1487 int force, struct mddev_dev *devlist,
1488 unsigned long long data_offset,
1489 char *backup_file, int verbose, int forked,
1490 int restart, int freeze_reshape);
1491 static int reshape_container(char *container, char *devname,
1492 int mdfd,
1493 struct supertype *st,
1494 struct mdinfo *info,
1495 int force,
1496 char *backup_file,
1497 int verbose, int restart, int freeze_reshape);
1498
1499 int Grow_reshape(char *devname, int fd,
1500 struct mddev_dev *devlist,
1501 unsigned long long data_offset,
1502 struct context *c, struct shape *s)
1503 {
1504 /* Make some changes in the shape of an array.
1505 * The kernel must support the change.
1506 *
1507 * There are three different changes. Each can trigger
1508 * a resync or recovery so we freeze that until we have
1509 * requested everything (if kernel supports freezing - 2.6.30).
1510 * The steps are:
1511 * - change size (i.e. component_size)
1512 * - change level
1513 * - change layout/chunksize/ndisks
1514 *
1515 * The last can require a reshape. It is different on different
1516 * levels so we need to check the level before actioning it.
1517 * Some times the level change needs to be requested after the
1518 * reshape (e.g. raid6->raid5, raid5->raid0)
1519 *
1520 */
1521 struct mdu_array_info_s array;
1522 int rv = 0;
1523 struct supertype *st;
1524 char *subarray = NULL;
1525
1526 int frozen;
1527 int changed = 0;
1528 char *container = NULL;
1529 int cfd = -1;
1530
1531 struct mddev_dev *dv;
1532 int added_disks;
1533
1534 struct mdinfo info;
1535 struct mdinfo *sra;
1536
1537
1538 if (ioctl(fd, GET_ARRAY_INFO, &array) < 0) {
1539 pr_err("%s is not an active md array - aborting\n",
1540 devname);
1541 return 1;
1542 }
1543 if (data_offset != INVALID_SECTORS && array.level != 10
1544 && (array.level < 4 || array.level > 6)) {
1545 pr_err("--grow --data-offset not yet supported\n");
1546 return 1;
1547 }
1548
1549 if (s->size > 0 &&
1550 (s->chunk || s->level!= UnSet || s->layout_str || s->raiddisks)) {
1551 pr_err("cannot change component size at the same time "
1552 "as other changes.\n"
1553 " Change size first, then check data is intact before "
1554 "making other changes.\n");
1555 return 1;
1556 }
1557
1558 if (s->raiddisks && s->raiddisks < array.raid_disks && array.level > 1 &&
1559 get_linux_version() < 2006032 &&
1560 !check_env("MDADM_FORCE_FEWER")) {
1561 pr_err("reducing the number of devices is not safe before Linux 2.6.32\n"
1562 " Please use a newer kernel\n");
1563 return 1;
1564 }
1565
1566 st = super_by_fd(fd, &subarray);
1567 if (!st) {
1568 pr_err("Unable to determine metadata format for %s\n", devname);
1569 return 1;
1570 }
1571 if (s->raiddisks > st->max_devs) {
1572 pr_err("Cannot increase raid-disks on this array"
1573 " beyond %d\n", st->max_devs);
1574 return 1;
1575 }
1576
1577 /* in the external case we need to check that the requested reshape is
1578 * supported, and perform an initial check that the container holds the
1579 * pre-requisite spare devices (mdmon owns final validation)
1580 */
1581 if (st->ss->external) {
1582 int rv;
1583
1584 if (subarray) {
1585 container = st->container_devnm;
1586 cfd = open_dev_excl(st->container_devnm);
1587 } else {
1588 container = st->devnm;
1589 close(fd);
1590 cfd = open_dev_excl(st->devnm);
1591 fd = cfd;
1592 }
1593 if (cfd < 0) {
1594 pr_err("Unable to open container for %s\n",
1595 devname);
1596 free(subarray);
1597 return 1;
1598 }
1599
1600 rv = st->ss->load_container(st, cfd, NULL);
1601
1602 if (rv) {
1603 pr_err("Cannot read superblock for %s\n",
1604 devname);
1605 free(subarray);
1606 return 1;
1607 }
1608
1609 /* check if operation is supported for metadata handler */
1610 if (st->ss->container_content) {
1611 struct mdinfo *cc = NULL;
1612 struct mdinfo *content = NULL;
1613
1614 cc = st->ss->container_content(st, subarray);
1615 for (content = cc; content ; content = content->next) {
1616 int allow_reshape = 1;
1617
1618 /* check if reshape is allowed based on metadata
1619 * indications stored in content.array.status
1620 */
1621 if (content->array.state & (1<<MD_SB_BLOCK_VOLUME))
1622 allow_reshape = 0;
1623 if (content->array.state
1624 & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE))
1625 allow_reshape = 0;
1626 if (!allow_reshape) {
1627 pr_err("cannot reshape arrays in"
1628 " container with unsupported"
1629 " metadata: %s(%s)\n",
1630 devname, container);
1631 sysfs_free(cc);
1632 free(subarray);
1633 return 1;
1634 }
1635 }
1636 sysfs_free(cc);
1637 }
1638 if (mdmon_running(container))
1639 st->update_tail = &st->updates;
1640 }
1641
1642 added_disks = 0;
1643 for (dv = devlist; dv; dv = dv->next)
1644 added_disks++;
1645 if (s->raiddisks > array.raid_disks &&
1646 array.spare_disks +added_disks < (s->raiddisks - array.raid_disks) &&
1647 !c->force) {
1648 pr_err("Need %d spare%s to avoid degraded array,"
1649 " and only have %d.\n"
1650 " Use --force to over-ride this check.\n",
1651 s->raiddisks - array.raid_disks,
1652 s->raiddisks - array.raid_disks == 1 ? "" : "s",
1653 array.spare_disks + added_disks);
1654 return 1;
1655 }
1656
1657 sra = sysfs_read(fd, NULL, GET_LEVEL | GET_DISKS | GET_DEVS
1658 | GET_STATE | GET_VERSION);
1659 if (sra) {
1660 if (st->ss->external && subarray == NULL) {
1661 array.level = LEVEL_CONTAINER;
1662 sra->array.level = LEVEL_CONTAINER;
1663 }
1664 } else {
1665 pr_err("failed to read sysfs parameters for %s\n",
1666 devname);
1667 return 1;
1668 }
1669 frozen = freeze(st);
1670 if (frozen < -1) {
1671 /* freeze() already spewed the reason */
1672 sysfs_free(sra);
1673 return 1;
1674 } else if (frozen < 0) {
1675 pr_err("%s is performing resync/recovery and cannot"
1676 " be reshaped\n", devname);
1677 sysfs_free(sra);
1678 return 1;
1679 }
1680
1681 /* ========= set size =============== */
1682 if (s->size > 0 && (s->size == MAX_SIZE || s->size != (unsigned)array.size)) {
1683 unsigned long long orig_size = get_component_size(fd)/2;
1684 unsigned long long min_csize;
1685 struct mdinfo *mdi;
1686 int raid0_takeover = 0;
1687
1688 if (orig_size == 0)
1689 orig_size = (unsigned) array.size;
1690
1691 if (orig_size == 0) {
1692 pr_err("Cannot set device size in this type of array.\n");
1693 rv = 1;
1694 goto release;
1695 }
1696
1697 if (reshape_super(st, s->size, UnSet, UnSet, 0, 0, UnSet, NULL,
1698 devname, APPLY_METADATA_CHANGES, c->verbose > 0)) {
1699 rv = 1;
1700 goto release;
1701 }
1702 sync_metadata(st);
1703 if (st->ss->external) {
1704 /* metadata can have size limitation
1705 * update size value according to metadata information
1706 */
1707 struct mdinfo *sizeinfo =
1708 st->ss->container_content(st, subarray);
1709 if (sizeinfo) {
1710 unsigned long long new_size =
1711 sizeinfo->custom_array_size/2;
1712 int data_disks = get_data_disks(
1713 sizeinfo->array.level,
1714 sizeinfo->array.layout,
1715 sizeinfo->array.raid_disks);
1716 new_size /= data_disks;
1717 dprintf("Metadata size correction from %llu to "
1718 "%llu (%llu)\n", orig_size, new_size,
1719 new_size * data_disks);
1720 s->size = new_size;
1721 sysfs_free(sizeinfo);
1722 }
1723 }
1724
1725 /* Update the size of each member device in case
1726 * they have been resized. This will never reduce
1727 * below the current used-size. The "size" attribute
1728 * understands '0' to mean 'max'.
1729 */
1730 min_csize = 0;
1731 rv = 0;
1732 for (mdi = sra->devs; mdi; mdi = mdi->next) {
1733 if (sysfs_set_num(sra, mdi, "size",
1734 s->size == MAX_SIZE ? 0 : s->size) < 0) {
1735 /* Probably kernel refusing to let us
1736 * reduce the size - not an error.
1737 */
1738 break;
1739 }
1740 if (array.not_persistent == 0 &&
1741 array.major_version == 0 &&
1742 get_linux_version() < 3001000) {
1743 /* Dangerous to allow size to exceed 2TB */
1744 unsigned long long csize;
1745 if (sysfs_get_ll(sra, mdi, "size", &csize) == 0) {
1746 if (csize >= 2ULL*1024*1024*1024)
1747 csize = 2ULL*1024*1024*1024;
1748 if ((min_csize == 0 || (min_csize
1749 > csize)))
1750 min_csize = csize;
1751 }
1752 }
1753 }
1754 if (rv) {
1755 pr_err("Cannot set size on "
1756 "array members.\n");
1757 goto size_change_error;
1758 }
1759 if (min_csize && s->size > min_csize) {
1760 pr_err("Cannot safely make this array "
1761 "use more than 2TB per device on this kernel.\n");
1762 rv = 1;
1763 goto size_change_error;
1764 }
1765 if (min_csize && s->size == MAX_SIZE) {
1766 /* Don't let the kernel choose a size - it will get
1767 * it wrong
1768 */
1769 pr_err("Limited v0.90 array to "
1770 "2TB per device\n");
1771 s->size = min_csize;
1772 }
1773 if (st->ss->external) {
1774 if (sra->array.level == 0) {
1775 rv = sysfs_set_str(sra, NULL, "level",
1776 "raid5");
1777 if (!rv) {
1778 raid0_takeover = 1;
1779 /* get array parametes after takeover
1780 * to chane one parameter at time only
1781 */
1782 rv = ioctl(fd, GET_ARRAY_INFO, &array);
1783 }
1784 }
1785 /* make sure mdmon is
1786 * aware of the new level */
1787 if (!mdmon_running(st->container_devnm))
1788 start_mdmon(st->container_devnm);
1789 ping_monitor(container);
1790 if (mdmon_running(st->container_devnm) &&
1791 st->update_tail == NULL)
1792 st->update_tail = &st->updates;
1793 }
1794
1795 if (s->size == MAX_SIZE)
1796 s->size = 0;
1797 array.size = s->size;
1798 if ((unsigned)array.size != s->size) {
1799 /* got truncated to 32bit, write to
1800 * component_size instead
1801 */
1802 if (sra)
1803 rv = sysfs_set_num(sra, NULL,
1804 "component_size", s->size);
1805 else
1806 rv = -1;
1807 } else {
1808 rv = ioctl(fd, SET_ARRAY_INFO, &array);
1809
1810 /* manage array size when it is managed externally
1811 */
1812 if ((rv == 0) && st->ss->external)
1813 rv = set_array_size(st, sra, sra->text_version);
1814 }
1815
1816 if (raid0_takeover) {
1817 /* do not recync non-existing parity,
1818 * we will drop it anyway
1819 */
1820 sysfs_set_str(sra, NULL, "sync_action", "frozen");
1821 /* go back to raid0, drop parity disk
1822 */
1823 sysfs_set_str(sra, NULL, "level", "raid0");
1824 ioctl(fd, GET_ARRAY_INFO, &array);
1825 }
1826
1827 size_change_error:
1828 if (rv != 0) {
1829 int err = errno;
1830
1831 /* restore metadata */
1832 if (reshape_super(st, orig_size, UnSet, UnSet, 0, 0,
1833 UnSet, NULL, devname,
1834 ROLLBACK_METADATA_CHANGES,
1835 c->verbose) == 0)
1836 sync_metadata(st);
1837 pr_err("Cannot set device size for %s: %s\n",
1838 devname, strerror(err));
1839 if (err == EBUSY &&
1840 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
1841 cont_err("Bitmap must be removed before size can be changed\n");
1842 rv = 1;
1843 goto release;
1844 }
1845 if (s->assume_clean) {
1846 /* This will fail on kernels older than 3.0 unless
1847 * a backport has been arranged.
1848 */
1849 if (sra == NULL ||
1850 sysfs_set_str(sra, NULL, "resync_start", "none") < 0)
1851 pr_err("--assume-clean not supported with --grow on this kernel\n");
1852 }
1853 ioctl(fd, GET_ARRAY_INFO, &array);
1854 s->size = get_component_size(fd)/2;
1855 if (s->size == 0)
1856 s->size = array.size;
1857 if (c->verbose >= 0) {
1858 if (s->size == orig_size)
1859 pr_err("component size of %s "
1860 "unchanged at %lluK\n",
1861 devname, s->size);
1862 else
1863 pr_err("component size of %s "
1864 "has been set to %lluK\n",
1865 devname, s->size);
1866 }
1867 changed = 1;
1868 } else if (array.level != LEVEL_CONTAINER) {
1869 s->size = get_component_size(fd)/2;
1870 if (s->size == 0)
1871 s->size = array.size;
1872 }
1873
1874 /* See if there is anything else to do */
1875 if ((s->level == UnSet || s->level == array.level) &&
1876 (s->layout_str == NULL) &&
1877 (s->chunk == 0 || s->chunk == array.chunk_size) &&
1878 (s->raiddisks == 0 || s->raiddisks == array.raid_disks)) {
1879 /* Nothing more to do */
1880 if (!changed && c->verbose >= 0)
1881 pr_err("%s: no change requested\n",
1882 devname);
1883 goto release;
1884 }
1885
1886 /* ========= check for Raid10/Raid1 -> Raid0 conversion ===============
1887 * current implementation assumes that following conditions must be met:
1888 * - RAID10:
1889 * - far_copies == 1
1890 * - near_copies == 2
1891 */
1892 if ((s->level == 0 && array.level == 10 && sra &&
1893 array.layout == ((1 << 8) + 2) && !(array.raid_disks & 1)) ||
1894 (s->level == 0 && array.level == 1 && sra)) {
1895 int err;
1896 err = remove_disks_for_takeover(st, sra, array.layout);
1897 if (err) {
1898 dprintf(Name": Array cannot be reshaped\n");
1899 if (cfd > -1)
1900 close(cfd);
1901 rv = 1;
1902 goto release;
1903 }
1904 /* Make sure mdmon has seen the device removal
1905 * and updated metadata before we continue with
1906 * level change
1907 */
1908 if (container)
1909 ping_monitor(container);
1910 }
1911
1912 memset(&info, 0, sizeof(info));
1913 info.array = array;
1914 sysfs_init(&info, fd, NULL);
1915 strcpy(info.text_version, sra->text_version);
1916 info.component_size = s->size*2;
1917 info.new_level = s->level;
1918 info.new_chunk = s->chunk * 1024;
1919 if (info.array.level == LEVEL_CONTAINER) {
1920 info.delta_disks = UnSet;
1921 info.array.raid_disks = s->raiddisks;
1922 } else if (s->raiddisks)
1923 info.delta_disks = s->raiddisks - info.array.raid_disks;
1924 else
1925 info.delta_disks = UnSet;
1926 if (s->layout_str == NULL) {
1927 info.new_layout = UnSet;
1928 if (info.array.level == 6 &&
1929 (info.new_level == 6 || info.new_level == UnSet) &&
1930 info.array.layout >= 16) {
1931 pr_err("%s has a non-standard layout. If you"
1932 " wish to preserve this\n", devname);
1933 cont_err("during the reshape, please specify"
1934 " --layout=preserve\n");
1935 cont_err("If you want to change it, specify a"
1936 " layout or use --layout=normalise\n");
1937 rv = 1;
1938 goto release;
1939 }
1940 } else if (strcmp(s->layout_str, "normalise") == 0 ||
1941 strcmp(s->layout_str, "normalize") == 0) {
1942 /* If we have a -6 RAID6 layout, remove the '-6'. */
1943 info.new_layout = UnSet;
1944 if (info.array.level == 6 && info.new_level == UnSet) {
1945 char l[40], *h;
1946 strcpy(l, map_num(r6layout, info.array.layout));
1947 h = strrchr(l, '-');
1948 if (h && strcmp(h, "-6") == 0) {
1949 *h = 0;
1950 info.new_layout = map_name(r6layout, l);
1951 }
1952 } else {
1953 pr_err("%s is only meaningful when reshaping"
1954 " a RAID6 array.\n", s->layout_str);
1955 rv = 1;
1956 goto release;
1957 }
1958 } else if (strcmp(s->layout_str, "preserve") == 0) {
1959 /* This means that a non-standard RAID6 layout
1960 * is OK.
1961 * In particular:
1962 * - When reshape a RAID6 (e.g. adding a device)
1963 * which is in a non-standard layout, it is OK
1964 * to preserve that layout.
1965 * - When converting a RAID5 to RAID6, leave it in
1966 * the XXX-6 layout, don't re-layout.
1967 */
1968 if (info.array.level == 6 && info.new_level == UnSet)
1969 info.new_layout = info.array.layout;
1970 else if (info.array.level == 5 && info.new_level == 6) {
1971 char l[40];
1972 strcpy(l, map_num(r5layout, info.array.layout));
1973 strcat(l, "-6");
1974 info.new_layout = map_name(r6layout, l);
1975 } else {
1976 pr_err("%s in only meaningful when reshaping"
1977 " to RAID6\n", s->layout_str);
1978 rv = 1;
1979 goto release;
1980 }
1981 } else {
1982 int l = info.new_level;
1983 if (l == UnSet)
1984 l = info.array.level;
1985 switch (l) {
1986 case 5:
1987 info.new_layout = map_name(r5layout, s->layout_str);
1988 break;
1989 case 6:
1990 info.new_layout = map_name(r6layout, s->layout_str);
1991 break;
1992 case 10:
1993 info.new_layout = parse_layout_10(s->layout_str);
1994 break;
1995 case LEVEL_FAULTY:
1996 info.new_layout = parse_layout_faulty(s->layout_str);
1997 break;
1998 default:
1999 pr_err("layout not meaningful"
2000 " with this level\n");
2001 rv = 1;
2002 goto release;
2003 }
2004 if (info.new_layout == UnSet) {
2005 pr_err("layout %s not understood"
2006 " for this level\n",
2007 s->layout_str);
2008 rv = 1;
2009 goto release;
2010 }
2011 }
2012
2013 if (array.level == LEVEL_FAULTY) {
2014 if (s->level != UnSet && s->level != array.level) {
2015 pr_err("cannot change level of Faulty device\n");
2016 rv =1 ;
2017 }
2018 if (s->chunk) {
2019 pr_err("cannot set chunksize of Faulty device\n");
2020 rv =1 ;
2021 }
2022 if (s->raiddisks && s->raiddisks != 1) {
2023 pr_err("cannot set raid_disks of Faulty device\n");
2024 rv =1 ;
2025 }
2026 if (s->layout_str) {
2027 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
2028 dprintf("Cannot get array information.\n");
2029 goto release;
2030 }
2031 array.layout = info.new_layout;
2032 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2033 pr_err("failed to set new layout\n");
2034 rv = 1;
2035 } else if (c->verbose >= 0)
2036 printf("layout for %s set to %d\n",
2037 devname, array.layout);
2038 }
2039 } else if (array.level == LEVEL_CONTAINER) {
2040 /* This change is to be applied to every array in the
2041 * container. This is only needed when the metadata imposes
2042 * restraints of the various arrays in the container.
2043 * Currently we only know that IMSM requires all arrays
2044 * to have the same number of devices so changing the
2045 * number of devices (On-Line Capacity Expansion) must be
2046 * performed at the level of the container
2047 */
2048 rv = reshape_container(container, devname, -1, st, &info,
2049 c->force, c->backup_file, c->verbose, 0, 0);
2050 frozen = 0;
2051 } else {
2052 /* get spare devices from external metadata
2053 */
2054 if (st->ss->external) {
2055 struct mdinfo *info2;
2056
2057 info2 = st->ss->container_content(st, subarray);
2058 if (info2) {
2059 info.array.spare_disks =
2060 info2->array.spare_disks;
2061 sysfs_free(info2);
2062 }
2063 }
2064
2065 /* Impose these changes on a single array. First
2066 * check that the metadata is OK with the change. */
2067
2068 if (reshape_super(st, 0, info.new_level,
2069 info.new_layout, info.new_chunk,
2070 info.array.raid_disks, info.delta_disks,
2071 c->backup_file, devname, APPLY_METADATA_CHANGES,
2072 c->verbose)) {
2073 rv = 1;
2074 goto release;
2075 }
2076 sync_metadata(st);
2077 rv = reshape_array(container, fd, devname, st, &info, c->force,
2078 devlist, data_offset, c->backup_file, c->verbose,
2079 0, 0, 0);
2080 frozen = 0;
2081 }
2082 release:
2083 sysfs_free(sra);
2084 if (frozen > 0)
2085 unfreeze(st);
2086 return rv;
2087 }
2088
2089 /* verify_reshape_position()
2090 * Function checks if reshape position in metadata is not farther
2091 * than position in md.
2092 * Return value:
2093 * 0 : not valid sysfs entry
2094 * it can be caused by not started reshape, it should be started
2095 * by reshape array or raid0 array is before takeover
2096 * -1 : error, reshape position is obviously wrong
2097 * 1 : success, reshape progress correct or updated
2098 */
2099 static int verify_reshape_position(struct mdinfo *info, int level)
2100 {
2101 int ret_val = 0;
2102 char buf[40];
2103 int rv;
2104
2105 /* read sync_max, failure can mean raid0 array */
2106 rv = sysfs_get_str(info, NULL, "sync_max", buf, 40);
2107
2108 if (rv > 0) {
2109 char *ep;
2110 unsigned long long position = strtoull(buf, &ep, 0);
2111
2112 dprintf(Name": Read sync_max sysfs entry is: %s\n", buf);
2113 if (!(ep == buf || (*ep != 0 && *ep != '\n' && *ep != ' '))) {
2114 position *= get_data_disks(level,
2115 info->new_layout,
2116 info->array.raid_disks);
2117 if (info->reshape_progress < position) {
2118 dprintf("Corrected reshape progress (%llu) to "
2119 "md position (%llu)\n",
2120 info->reshape_progress, position);
2121 info->reshape_progress = position;
2122 ret_val = 1;
2123 } else if (info->reshape_progress > position) {
2124 pr_err("Fatal error: array "
2125 "reshape was not properly frozen "
2126 "(expected reshape position is %llu, "
2127 "but reshape progress is %llu.\n",
2128 position, info->reshape_progress);
2129 ret_val = -1;
2130 } else {
2131 dprintf("Reshape position in md and metadata "
2132 "are the same;");
2133 ret_val = 1;
2134 }
2135 }
2136 } else if (rv == 0) {
2137 /* for valid sysfs entry, 0-length content
2138 * should be indicated as error
2139 */
2140 ret_val = -1;
2141 }
2142
2143 return ret_val;
2144 }
2145
2146 static int set_new_data_offset(struct mdinfo *sra, struct supertype *st,
2147 char *devname, int delta_disks,
2148 unsigned long long data_offset,
2149 unsigned long long min)
2150 {
2151 struct mdinfo *sd;
2152 int dir = 0;
2153 int err = 0;
2154
2155 for (sd = sra->devs; sd; sd = sd->next) {
2156 char *dn;
2157 int dfd;
2158 int rv;
2159 struct supertype *st2;
2160 struct mdinfo info2;
2161
2162 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2163 continue;
2164 dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2165 dfd = dev_open(dn, O_RDONLY);
2166 if (dfd < 0) {
2167 pr_err("%s: cannot open component %s\n",
2168 devname, dn ? dn : "-unknown-");
2169 goto release;
2170 }
2171 st2 = dup_super(st);
2172 rv = st2->ss->load_super(st2,dfd, NULL);
2173 close(dfd);
2174 if (rv) {
2175 free(st2);
2176 pr_err("%s: cannot get superblock from %s\n",
2177 devname, dn);
2178 goto release;
2179 }
2180 st2->ss->getinfo_super(st2, &info2, NULL);
2181 st2->ss->free_super(st2);
2182 free(st2);
2183 if (info2.space_before == 0 &&
2184 info2.space_after == 0) {
2185 /* Metadata doesn't support data_offset changes */
2186 return 1;
2187 }
2188 if (delta_disks < 0) {
2189 /* Don't need any space as array is shrinking
2190 * just move data_offset up by min
2191 */
2192 if (data_offset == INVALID_SECTORS)
2193 info2.new_data_offset = info2.data_offset + min;
2194 else {
2195 if (data_offset < info2.data_offset + min) {
2196 pr_err("--data-offset too small for %s\n",
2197 dn);
2198 goto release;
2199 }
2200 info2.new_data_offset = data_offset;
2201 }
2202 } else if (delta_disks > 0) {
2203 /* need space before */
2204 if (info2.space_before < min) {
2205 pr_err("Insufficient head-space for reshape on %s\n",
2206 dn);
2207 goto release;
2208 }
2209 if (data_offset == INVALID_SECTORS)
2210 info2.new_data_offset = info2.data_offset - min;
2211 else {
2212 if (data_offset > info2.data_offset - min) {
2213 pr_err("--data-offset too large for %s\n",
2214 dn);
2215 goto release;
2216 }
2217 info2.new_data_offset = data_offset;
2218 }
2219 } else {
2220 if (dir == 0) {
2221 /* can move up or down. 'data_offset'
2222 * might guide us, otherwise choose
2223 * direction with most space
2224 */
2225 if (data_offset == INVALID_SECTORS) {
2226 if (info2.space_before > info2.space_after)
2227 dir = -1;
2228 else
2229 dir = 1;
2230 } else if (data_offset < info2.data_offset)
2231 dir = -1;
2232 else
2233 dir = 1;
2234 sysfs_set_str(sra, NULL, "reshape_direction",
2235 dir == 1 ? "backwards" : "forwards");
2236 }
2237 switch (dir) {
2238 case 1: /* Increase data offset */
2239 if (info2.space_after < min) {
2240 pr_err("Insufficient tail-space for reshape on %s\n",
2241 dn);
2242 goto release;
2243 }
2244 if (data_offset != INVALID_SECTORS &&
2245 data_offset < info2.data_offset + min) {
2246 pr_err("--data-offset too small on %s\n",
2247 dn);
2248 goto release;
2249 }
2250 if (data_offset != INVALID_SECTORS)
2251 info2.new_data_offset = data_offset;
2252 else {
2253 unsigned long long off =
2254 info2.space_after / 2;
2255 off &= ~7ULL;
2256 if (off < min)
2257 off = min;
2258 info2.new_data_offset =
2259 info2.data_offset + off;
2260 }
2261 break;
2262 case -1: /* Decrease data offset */
2263 if (info2.space_before < min) {
2264 pr_err("insufficient head-room on %s\n",
2265 dn);
2266 goto release;
2267 }
2268 if (data_offset != INVALID_SECTORS &&
2269 data_offset < info2.data_offset - min) {
2270 pr_err("--data-offset too small on %s\n",
2271 dn);
2272 goto release;
2273 }
2274 if (data_offset != INVALID_SECTORS)
2275 info2.new_data_offset = data_offset;
2276 else {
2277 unsigned long long off =
2278 info2.space_before / 2;
2279 off &= ~7ULL;
2280 if (off < min)
2281 off = min;
2282 info2.new_data_offset =
2283 info2.data_offset - off;
2284 }
2285 break;
2286 }
2287 }
2288 if (sysfs_set_num(sra, sd, "new_offset",
2289 info2.new_data_offset) < 0) {
2290 err = errno;
2291 err = -1;
2292 if (sd == sra->devs &&
2293 (errno == ENOENT || errno == E2BIG))
2294 /* Early kernel, no 'new_offset' file,
2295 * or kernel doesn't like us.
2296 * For RAID5/6 this is not fatal
2297 */
2298 return 1;
2299 pr_err("Cannot set new_offset for %s\n",
2300 dn);
2301 break;
2302 }
2303 }
2304 return err;
2305 release:
2306 return -1;
2307 }
2308
2309 static int raid10_reshape(char *container, int fd, char *devname,
2310 struct supertype *st, struct mdinfo *info,
2311 struct reshape *reshape,
2312 unsigned long long data_offset,
2313 int force, int verbose)
2314 {
2315 /* Changing raid_disks, layout, chunksize or possibly
2316 * just data_offset for a RAID10.
2317 * We must always change data_offset. We change by at least
2318 * ->min_offset_change which is the largest of the old and new
2319 * chunk sizes.
2320 * If raid_disks is increasing, then data_offset must decrease
2321 * by at least this copy size.
2322 * If raid_disks is unchanged, data_offset must increase or
2323 * decrease by at least min_offset_change but preferably by much more.
2324 * We choose half of the available space.
2325 * If raid_disks is decreasing, data_offset must increase by
2326 * at least min_offset_change. To allow of this, component_size
2327 * must be decreased by the same amount.
2328 *
2329 * So we calculate the required minimum and direction, possibly
2330 * reduce the component_size, then iterate through the devices
2331 * and set the new_data_offset.
2332 * If that all works, we set chunk_size, layout, raid_disks, and start
2333 * 'reshape'
2334 */
2335 struct mdinfo *sra;
2336 unsigned long long min;
2337 int err = 0;
2338
2339 sra = sysfs_read(fd, NULL,
2340 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK
2341 );
2342 if (!sra) {
2343 pr_err("%s: Cannot get array details from sysfs\n",
2344 devname);
2345 goto release;
2346 }
2347 min = reshape->min_offset_change;
2348
2349 if (info->delta_disks)
2350 sysfs_set_str(sra, NULL, "reshape_direction",
2351 info->delta_disks < 0 ? "backwards" : "forwards");
2352 if (info->delta_disks < 0 &&
2353 info->space_after < min) {
2354 int rv = sysfs_set_num(sra, NULL, "component_size",
2355 (sra->component_size -
2356 min)/2);
2357 if (rv) {
2358 pr_err("cannot reduce component size\n");
2359 goto release;
2360 }
2361 }
2362 err = set_new_data_offset(sra, st, devname, info->delta_disks, data_offset,
2363 min);
2364 if (err == 1) {
2365 pr_err("Cannot set new_data_offset: RAID10 reshape not\n");
2366 cont_err("supported on this kernel\n");
2367 err = -1;
2368 }
2369 if (err < 0)
2370 goto release;
2371
2372 if (!err && sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2373 err = errno;
2374 if (!err && sysfs_set_num(sra, NULL, "layout", reshape->after.layout) < 0)
2375 err = errno;
2376 if (!err && sysfs_set_num(sra, NULL, "raid_disks",
2377 info->array.raid_disks + info->delta_disks) < 0)
2378 err = errno;
2379 if (!err && sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0)
2380 err = errno;
2381 if (err) {
2382 pr_err("Cannot set array shape for %s\n",
2383 devname);
2384 if (err == EBUSY &&
2385 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
2386 cont_err(" Bitmap must be removed before"
2387 " shape can be changed\n");
2388 goto release;
2389 }
2390 sysfs_free(sra);
2391 return 0;
2392 release:
2393 sysfs_free(sra);
2394 return 1;
2395 }
2396
2397 static void get_space_after(int fd, struct supertype *st, struct mdinfo *info)
2398 {
2399 struct mdinfo *sra, *sd;
2400 /* Initialisation to silence compiler warning */
2401 unsigned long long min_space_before = 0, min_space_after = 0;
2402 int first = 1;
2403
2404 sra = sysfs_read(fd, NULL, GET_DEVS);
2405 if (!sra)
2406 return;
2407 for (sd = sra->devs; sd; sd = sd->next) {
2408 char *dn;
2409 int dfd;
2410 struct supertype *st2;
2411 struct mdinfo info2;
2412
2413 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2414 continue;
2415 dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2416 dfd = dev_open(dn, O_RDONLY);
2417 if (dfd < 0)
2418 break;
2419 st2 = dup_super(st);
2420 if (st2->ss->load_super(st2,dfd, NULL)) {
2421 close(dfd);
2422 free(st2);
2423 break;
2424 }
2425 close(dfd);
2426 st2->ss->getinfo_super(st2, &info2, NULL);
2427 st2->ss->free_super(st2);
2428 free(st2);
2429 if (first ||
2430 min_space_before > info2.space_before)
2431 min_space_before = info2.space_before;
2432 if (first ||
2433 min_space_after > info2.space_after)
2434 min_space_after = info2.space_after;
2435 first = 0;
2436 }
2437 if (sd == NULL && !first) {
2438 info->space_after = min_space_after;
2439 info->space_before = min_space_before;
2440 }
2441 sysfs_free(sra);
2442 }
2443
2444 static void update_cache_size(char *container, struct mdinfo *sra,
2445 struct mdinfo *info,
2446 int disks, unsigned long long blocks)
2447 {
2448 /* Check that the internal stripe cache is
2449 * large enough, or it won't work.
2450 * It must hold at least 4 stripes of the larger
2451 * chunk size
2452 */
2453 unsigned long cache;
2454 cache = max(info->array.chunk_size, info->new_chunk);
2455 cache *= 4; /* 4 stripes minimum */
2456 cache /= 512; /* convert to sectors */
2457 /* make sure there is room for 'blocks' with a bit to spare */
2458 if (cache < 16 + blocks / disks)
2459 cache = 16 + blocks / disks;
2460 cache /= (4096/512); /* Covert from sectors to pages */
2461
2462 if (sra->cache_size < cache)
2463 subarray_set_num(container, sra, "stripe_cache_size",
2464 cache+1);
2465 }
2466
2467 static int impose_reshape(struct mdinfo *sra,
2468 struct mdinfo *info,
2469 struct supertype *st,
2470 int fd,
2471 int restart,
2472 char *devname, char *container,
2473 struct reshape *reshape)
2474 {
2475 struct mdu_array_info_s array;
2476
2477 sra->new_chunk = info->new_chunk;
2478
2479 if (restart) {
2480 /* for external metadata checkpoint saved by mdmon can be lost
2481 * or missed /due to e.g. crash/. Check if md is not during
2482 * restart farther than metadata points to.
2483 * If so, this means metadata information is obsolete.
2484 */
2485 if (st->ss->external)
2486 verify_reshape_position(info, reshape->level);
2487 sra->reshape_progress = info->reshape_progress;
2488 } else {
2489 sra->reshape_progress = 0;
2490 if (reshape->after.data_disks < reshape->before.data_disks)
2491 /* start from the end of the new array */
2492 sra->reshape_progress = (sra->component_size
2493 * reshape->after.data_disks);
2494 }
2495
2496 ioctl(fd, GET_ARRAY_INFO, &array);
2497 if (info->array.chunk_size == info->new_chunk &&
2498 reshape->before.layout == reshape->after.layout &&
2499 st->ss->external == 0) {
2500 /* use SET_ARRAY_INFO but only if reshape hasn't started */
2501 array.raid_disks = reshape->after.data_disks + reshape->parity;
2502 if (!restart &&
2503 ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2504 int err = errno;
2505
2506 pr_err("Cannot set device shape for %s: %s\n",
2507 devname, strerror(errno));
2508
2509 if (err == EBUSY &&
2510 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2511 cont_err("Bitmap must be removed before"
2512 " shape can be changed\n");
2513
2514 goto release;
2515 }
2516 } else if (!restart) {
2517 /* set them all just in case some old 'new_*' value
2518 * persists from some earlier problem.
2519 */
2520 int err = 0;
2521 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2522 err = errno;
2523 if (!err && sysfs_set_num(sra, NULL, "layout",
2524 reshape->after.layout) < 0)
2525 err = errno;
2526 if (!err && subarray_set_num(container, sra, "raid_disks",
2527 reshape->after.data_disks +
2528 reshape->parity) < 0)
2529 err = errno;
2530 if (err) {
2531 pr_err("Cannot set device shape for %s\n",
2532 devname);
2533
2534 if (err == EBUSY &&
2535 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2536 cont_err("Bitmap must be removed before"
2537 " shape can be changed\n");
2538 goto release;
2539 }
2540 }
2541 return 0;
2542 release:
2543 return -1;
2544 }
2545
2546 static int reshape_array(char *container, int fd, char *devname,
2547 struct supertype *st, struct mdinfo *info,
2548 int force, struct mddev_dev *devlist,
2549 unsigned long long data_offset,
2550 char *backup_file, int verbose, int forked,
2551 int restart, int freeze_reshape)
2552 {
2553 struct reshape reshape;
2554 int spares_needed;
2555 char *msg;
2556 int orig_level = UnSet;
2557 int odisks;
2558 int delayed;
2559
2560 struct mdu_array_info_s array;
2561 char *c;
2562
2563 struct mddev_dev *dv;
2564 int added_disks;
2565
2566 int *fdlist = NULL;
2567 unsigned long long *offsets = NULL;
2568 int d;
2569 int nrdisks;
2570 int err;
2571 unsigned long blocks;
2572 unsigned long long array_size;
2573 int done;
2574 struct mdinfo *sra = NULL;
2575
2576 /* when reshaping a RAID0, the component_size might be zero.
2577 * So try to fix that up.
2578 */
2579 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
2580 dprintf("Cannot get array information.\n");
2581 goto release;
2582 }
2583 if (array.level == 0 && info->component_size == 0) {
2584 get_dev_size(fd, NULL, &array_size);
2585 info->component_size = array_size / array.raid_disks;
2586 }
2587
2588 if (array.level == 10)
2589 /* Need space_after info */
2590 get_space_after(fd, st, info);
2591
2592 if (info->reshape_active) {
2593 int new_level = info->new_level;
2594 info->new_level = UnSet;
2595 if (info->delta_disks > 0)
2596 info->array.raid_disks -= info->delta_disks;
2597 msg = analyse_change(info, &reshape);
2598 info->new_level = new_level;
2599 if (info->delta_disks > 0)
2600 info->array.raid_disks += info->delta_disks;
2601 if (!restart)
2602 /* Make sure the array isn't read-only */
2603 ioctl(fd, RESTART_ARRAY_RW, 0);
2604 } else
2605 msg = analyse_change(info, &reshape);
2606 if (msg) {
2607 pr_err("%s\n", msg);
2608 goto release;
2609 }
2610 if (restart &&
2611 (reshape.level != info->array.level ||
2612 reshape.before.layout != info->array.layout ||
2613 reshape.before.data_disks + reshape.parity
2614 != info->array.raid_disks - max(0, info->delta_disks))) {
2615 pr_err("reshape info is not in native format -"
2616 " cannot continue.\n");
2617 goto release;
2618 }
2619
2620 if (st->ss->external && restart && (info->reshape_progress == 0)) {
2621 /* When reshape is restarted from '0', very begin of array
2622 * it is possible that for external metadata reshape and array
2623 * configuration doesn't happen.
2624 * Check if md has the same opinion, and reshape is restarted
2625 * from 0. If so, this is regular reshape start after reshape
2626 * switch in metadata to next array only.
2627 */
2628 if ((verify_reshape_position(info, reshape.level) >= 0) &&
2629 (info->reshape_progress == 0))
2630 restart = 0;
2631 }
2632 if (restart) {
2633 /* reshape already started. just skip to monitoring the reshape */
2634 if (reshape.backup_blocks == 0)
2635 return 0;
2636 goto started;
2637 }
2638 /* The container is frozen but the array may not be.
2639 * So freeze the array so spares don't get put to the wrong use
2640 * FIXME there should probably be a cleaner separation between
2641 * freeze_array and freeze_container.
2642 */
2643 sysfs_freeze_array(info);
2644 /* Check we have enough spares to not be degraded */
2645 added_disks = 0;
2646 for (dv = devlist; dv ; dv=dv->next)
2647 added_disks++;
2648 spares_needed = max(reshape.before.data_disks,
2649 reshape.after.data_disks)
2650 + reshape.parity - array.raid_disks;
2651
2652 if (!force &&
2653 info->new_level > 1 && info->array.level > 1 &&
2654 spares_needed > info->array.spare_disks + added_disks) {
2655 pr_err("Need %d spare%s to avoid degraded array,"
2656 " and only have %d.\n"
2657 " Use --force to over-ride this check.\n",
2658 spares_needed,
2659 spares_needed == 1 ? "" : "s",
2660 info->array.spare_disks + added_disks);
2661 goto release;
2662 }
2663 /* Check we have enough spares to not fail */
2664 spares_needed = max(reshape.before.data_disks,
2665 reshape.after.data_disks)
2666 - array.raid_disks;
2667 if ((info->new_level > 1 || info->new_level == 0) &&
2668 spares_needed > info->array.spare_disks +added_disks) {
2669 pr_err("Need %d spare%s to create working array,"
2670 " and only have %d.\n",
2671 spares_needed,
2672 spares_needed == 1 ? "" : "s",
2673 info->array.spare_disks + added_disks);
2674 goto release;
2675 }
2676
2677 if (reshape.level != array.level) {
2678 char *c = map_num(pers, reshape.level);
2679 int err;
2680 if (c == NULL)
2681 goto release;
2682
2683 err = sysfs_set_str(info, NULL, "level", c);
2684 if (err) {
2685 err = errno;
2686 pr_err("%s: could not set level to %s\n",
2687 devname, c);
2688 if (err == EBUSY &&
2689 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
2690 cont_err("Bitmap must be removed"
2691 " before level can be changed\n");
2692 goto release;
2693 }
2694 if (verbose >= 0)
2695 pr_err("level of %s changed to %s\n",
2696 devname, c);
2697 orig_level = array.level;
2698 sysfs_freeze_array(info);
2699
2700 if (reshape.level > 0 && st->ss->external) {
2701 /* make sure mdmon is aware of the new level */
2702 if (mdmon_running(container))
2703 flush_mdmon(container);
2704
2705 if (!mdmon_running(container))
2706 start_mdmon(container);
2707 ping_monitor(container);
2708 if (mdmon_running(container) &&
2709 st->update_tail == NULL)
2710 st->update_tail = &st->updates;
2711 }
2712 }
2713 /* ->reshape_super might have chosen some spares from the
2714 * container that it wants to be part of the new array.
2715 * We can collect them with ->container_content and give
2716 * them to the kernel.
2717 */
2718 if (st->ss->reshape_super && st->ss->container_content) {
2719 char *subarray = strchr(info->text_version+1, '/')+1;
2720 struct mdinfo *info2 =
2721 st->ss->container_content(st, subarray);
2722 struct mdinfo *d;
2723
2724 if (info2) {
2725 sysfs_init(info2, fd, st->devnm);
2726 /* When increasing number of devices, we need to set
2727 * new raid_disks before adding these, or they might
2728 * be rejected.
2729 */
2730 if (reshape.backup_blocks &&
2731 reshape.after.data_disks > reshape.before.data_disks)
2732 subarray_set_num(container, info2, "raid_disks",
2733 reshape.after.data_disks +
2734 reshape.parity);
2735 for (d = info2->devs; d; d = d->next) {
2736 if (d->disk.state == 0 &&
2737 d->disk.raid_disk >= 0) {
2738 /* This is a spare that wants to
2739 * be part of the array.
2740 */
2741 add_disk(fd, st, info2, d);
2742 }
2743 }
2744 sysfs_free(info2);
2745 }
2746 }
2747 /* We might have been given some devices to add to the
2748 * array. Now that the array has been changed to the right
2749 * level and frozen, we can safely add them.
2750 */
2751 if (devlist)
2752 Manage_subdevs(devname, fd, devlist, verbose,
2753 0,NULL, 0);
2754
2755 if (reshape.backup_blocks == 0) {
2756 /* No restriping needed, but we might need to impose
2757 * some more changes: layout, raid_disks, chunk_size
2758 */
2759 /* read current array info */
2760 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
2761 dprintf("Cannot get array information.\n");
2762 goto release;
2763 }
2764 /* compare current array info with new values and if
2765 * it is different update them to new */
2766 if (info->new_layout != UnSet &&
2767 info->new_layout != array.layout) {
2768 array.layout = info->new_layout;
2769 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2770 pr_err("failed to set new layout\n");
2771 goto release;
2772 } else if (verbose >= 0)
2773 printf("layout for %s set to %d\n",
2774 devname, array.layout);
2775 }
2776 if (info->delta_disks != UnSet &&
2777 info->delta_disks != 0 &&
2778 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
2779 array.raid_disks += info->delta_disks;
2780 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2781 pr_err("failed to set raid disks\n");
2782 goto release;
2783 } else if (verbose >= 0) {
2784 printf("raid_disks for %s set to %d\n",
2785 devname, array.raid_disks);
2786 }
2787 }
2788 if (info->new_chunk != 0 &&
2789 info->new_chunk != array.chunk_size) {
2790 if (sysfs_set_num(info, NULL,
2791 "chunk_size", info->new_chunk) != 0) {
2792 pr_err("failed to set chunk size\n");
2793 goto release;
2794 } else if (verbose >= 0)
2795 printf("chunk size for %s set to %d\n",
2796 devname, array.chunk_size);
2797 }
2798 unfreeze(st);
2799 return 0;
2800 }
2801
2802 /*
2803 * There are three possibilities.
2804 * 1/ The array will shrink.
2805 * We need to ensure the reshape will pause before reaching
2806 * the 'critical section'. We also need to fork and wait for
2807 * that to happen. When it does we
2808 * suspend/backup/complete/unfreeze
2809 *
2810 * 2/ The array will not change size.
2811 * This requires that we keep a backup of a sliding window
2812 * so that we can restore data after a crash. So we need
2813 * to fork and monitor progress.
2814 * In future we will allow the data_offset to change, so
2815 * a sliding backup becomes unnecessary.
2816 *
2817 * 3/ The array will grow. This is relatively easy.
2818 * However the kernel's restripe routines will cheerfully
2819 * overwrite some early data before it is safe. So we
2820 * need to make a backup of the early parts of the array
2821 * and be ready to restore it if rebuild aborts very early.
2822 * For externally managed metadata, we still need a forked
2823 * child to monitor the reshape and suspend IO over the region
2824 * that is being reshaped.
2825 *
2826 * We backup data by writing it to one spare, or to a
2827 * file which was given on command line.
2828 *
2829 * In each case, we first make sure that storage is available
2830 * for the required backup.
2831 * Then we:
2832 * - request the shape change.
2833 * - fork to handle backup etc.
2834 */
2835 /* Check that we can hold all the data */
2836 get_dev_size(fd, NULL, &array_size);
2837 if (reshape.new_size < (array_size/512)) {
2838 pr_err("this change will reduce the size of the array.\n"
2839 " use --grow --array-size first to truncate array.\n"
2840 " e.g. mdadm --grow %s --array-size %llu\n",
2841 devname, reshape.new_size/2);
2842 goto release;
2843 }
2844
2845 started:
2846
2847 if (array.level == 10) {
2848 /* Reshaping RAID10 does not require any data backup by
2849 * user-space. Instead it requires that the data_offset
2850 * is changed to avoid the need for backup.
2851 * So this is handled very separately
2852 */
2853 if (restart)
2854 /* Nothing to do. */
2855 return 0;
2856 return raid10_reshape(container, fd, devname, st, info,
2857 &reshape, data_offset,
2858 force, verbose);
2859 }
2860 sra = sysfs_read(fd, NULL,
2861 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
2862 GET_CACHE);
2863 if (!sra) {
2864 pr_err("%s: Cannot get array details from sysfs\n",
2865 devname);
2866 goto release;
2867 }
2868
2869 if (!backup_file)
2870 switch(set_new_data_offset(sra, st, devname, info->delta_disks,
2871 data_offset,
2872 reshape.min_offset_change)) {
2873 case -1:
2874 goto release;
2875 case 0:
2876 /* Updated data_offset, so it's easy now */
2877 update_cache_size(container, sra, info,
2878 min(reshape.before.data_disks,
2879 reshape.after.data_disks),
2880 reshape.backup_blocks);
2881
2882 /* Right, everything seems fine. Let's kick things off.
2883 */
2884 sync_metadata(st);
2885
2886 if (impose_reshape(sra, info, st, fd, restart,
2887 devname, container, &reshape) < 0)
2888 goto release;
2889 if (sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0) {
2890 pr_err("Failed to initiate reshape!\n");
2891 goto release;
2892 }
2893
2894 return 0;
2895 case 1: /* Couldn't set data_offset, try the old way */
2896 if (data_offset != INVALID_SECTORS) {
2897 pr_err("Cannot update data_offset on this array\n");
2898 goto release;
2899 }
2900 break;
2901 }
2902
2903 /* Decide how many blocks (sectors) for a reshape
2904 * unit. The number we have so far is just a minimum
2905 */
2906 blocks = reshape.backup_blocks;
2907 if (reshape.before.data_disks ==
2908 reshape.after.data_disks) {
2909 /* Make 'blocks' bigger for better throughput, but
2910 * not so big that we reject it below.
2911 * Try for 16 megabytes
2912 */
2913 while (blocks * 32 < sra->component_size &&
2914 blocks < 16*1024*2)
2915 blocks *= 2;
2916 } else
2917 pr_err("Need to backup %luK of critical "
2918 "section..\n", blocks/2);
2919
2920 if (blocks >= sra->component_size/2) {
2921 pr_err("%s: Something wrong"
2922 " - reshape aborted\n",
2923 devname);
2924 goto release;
2925 }
2926
2927 /* Now we need to open all these devices so we can read/write.
2928 */
2929 nrdisks = max(reshape.before.data_disks,
2930 reshape.after.data_disks) + reshape.parity
2931 + sra->array.spare_disks;
2932 fdlist = xcalloc((1+nrdisks), sizeof(int));
2933 offsets = xcalloc((1+nrdisks), sizeof(offsets[0]));
2934
2935 odisks = reshape.before.data_disks + reshape.parity;
2936 d = reshape_prepare_fdlist(devname, sra, odisks,
2937 nrdisks, blocks, backup_file,
2938 fdlist, offsets);
2939 if (d < 0) {
2940 goto release;
2941 }
2942 if ((st->ss->manage_reshape == NULL) ||
2943 (st->ss->recover_backup == NULL)) {
2944 if (backup_file == NULL) {
2945 if (reshape.after.data_disks <=
2946 reshape.before.data_disks) {
2947 pr_err("%s: Cannot grow - "
2948 "need backup-file\n", devname);
2949 goto release;
2950 } else if (sra->array.spare_disks == 0) {
2951 pr_err("%s: Cannot grow - "
2952 "need a spare or backup-file to backup "
2953 "critical section\n", devname);
2954 goto release;
2955 }
2956 } else {
2957 if (!reshape_open_backup_file(backup_file, fd, devname,
2958 (signed)blocks,
2959 fdlist+d, offsets+d,
2960 restart)) {
2961 goto release;
2962 }
2963 d++;
2964 }
2965 }
2966
2967 update_cache_size(container, sra, info,
2968 min(reshape.before.data_disks, reshape.after.data_disks),
2969 blocks);
2970
2971 /* Right, everything seems fine. Let's kick things off.
2972 * If only changing raid_disks, use ioctl, else use
2973 * sysfs.
2974 */
2975 sync_metadata(st);
2976
2977 if (impose_reshape(sra, info, st, fd, restart,
2978 devname, container, &reshape) < 0)
2979 goto release;
2980
2981 err = start_reshape(sra, restart, reshape.before.data_disks,
2982 reshape.after.data_disks);
2983 if (err) {
2984 pr_err("Cannot %s reshape for %s\n",
2985 restart ? "continue" : "start",
2986 devname);
2987 goto release;
2988 }
2989 if (restart)
2990 sysfs_set_str(sra, NULL, "array_state", "active");
2991 if (freeze_reshape) {
2992 free(fdlist);
2993 free(offsets);
2994 sysfs_free(sra);
2995 pr_err("Reshape has to be continued from"
2996 " location %llu when root filesystem has been mounted.\n",
2997 sra->reshape_progress);
2998 return 1;
2999 }
3000
3001 /* Now we just need to kick off the reshape and watch, while
3002 * handling backups of the data...
3003 * This is all done by a forked background process.
3004 */
3005 switch(forked ? 0 : fork()) {
3006 case -1:
3007 pr_err("Cannot run child to monitor reshape: %s\n",
3008 strerror(errno));
3009 abort_reshape(sra);
3010 goto release;
3011 default:
3012 free(fdlist);
3013 free(offsets);
3014 sysfs_free(sra);
3015 return 0;
3016 case 0:
3017 map_fork();
3018 break;
3019 }
3020
3021 /* If another array on the same devices is busy, the
3022 * reshape will wait for them. This would mean that
3023 * the first section that we suspend will stay suspended
3024 * for a long time. So check on that possibility
3025 * by looking for "DELAYED" in /proc/mdstat, and if found,
3026 * wait a while
3027 */
3028 do {
3029 struct mdstat_ent *mds, *m;
3030 delayed = 0;
3031 mds = mdstat_read(0, 0);
3032 for (m = mds; m; m = m->next)
3033 if (strcmp(m->devnm, sra->sys_name) == 0) {
3034 if (m->resync &&
3035 m->percent == RESYNC_DELAYED)
3036 delayed = 1;
3037 if (m->resync == 0)
3038 /* Haven't started the reshape thread
3039 * yet, wait a bit
3040 */
3041 delayed = 2;
3042 break;
3043 }
3044 free_mdstat(mds);
3045 if (delayed == 1 && get_linux_version() < 3007000) {
3046 pr_err("Reshape is delayed, but cannot wait carefully with this kernel.\n"
3047 " You might experience problems until other reshapes complete.\n");
3048 delayed = 0;
3049 }
3050 if (delayed)
3051 sleep(30 - (delayed-1) * 25);
3052 } while (delayed);
3053
3054 close(fd);
3055 if (check_env("MDADM_GROW_VERIFY"))
3056 fd = open(devname, O_RDONLY | O_DIRECT);
3057 else
3058 fd = -1;
3059 mlockall(MCL_FUTURE);
3060
3061 if (st->ss->external) {
3062 /* metadata handler takes it from here */
3063 done = st->ss->manage_reshape(
3064 fd, sra, &reshape, st, blocks,
3065 fdlist, offsets,
3066 d - odisks, fdlist+odisks,
3067 offsets+odisks);
3068 } else
3069 done = child_monitor(
3070 fd, sra, &reshape, st, blocks,
3071 fdlist, offsets,
3072 d - odisks, fdlist+odisks,
3073 offsets+odisks);
3074
3075 free(fdlist);
3076 free(offsets);
3077
3078 if (backup_file && done)
3079 unlink(backup_file);
3080 if (!done) {
3081 abort_reshape(sra);
3082 goto out;
3083 }
3084
3085 if (!st->ss->external &&
3086 !(reshape.before.data_disks != reshape.after.data_disks
3087 && info->custom_array_size) &&
3088 info->new_level == reshape.level &&
3089 !forked) {
3090 /* no need to wait for the reshape to finish as
3091 * there is nothing more to do.
3092 */
3093 sysfs_free(sra);
3094 exit(0);
3095 }
3096 wait_reshape(sra);
3097
3098 if (st->ss->external) {
3099 /* Re-load the metadata as much could have changed */
3100 int cfd = open_dev(st->container_devnm);
3101 if (cfd >= 0) {
3102 flush_mdmon(container);
3103 st->ss->free_super(st);
3104 st->ss->load_container(st, cfd, container);
3105 close(cfd);
3106 }
3107 }
3108
3109 /* set new array size if required customer_array_size is used
3110 * by this metadata.
3111 */
3112 if (reshape.before.data_disks !=
3113 reshape.after.data_disks &&
3114 info->custom_array_size)
3115 set_array_size(st, info, info->text_version);
3116
3117 if (info->new_level != reshape.level) {
3118
3119 c = map_num(pers, info->new_level);
3120 if (c) {
3121 err = sysfs_set_str(sra, NULL, "level", c);
3122 if (err)
3123 pr_err("%s: could not set level "
3124 "to %s\n", devname, c);
3125 }
3126 if (info->new_level == 0)
3127 st->update_tail = NULL;
3128 }
3129 out:
3130 sysfs_free(sra);
3131 if (forked)
3132 return 0;
3133 unfreeze(st);
3134 exit(0);
3135
3136 release:
3137 free(fdlist);
3138 free(offsets);
3139 if (orig_level != UnSet && sra) {
3140 c = map_num(pers, orig_level);
3141 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
3142 pr_err("aborting level change\n");
3143 }
3144 sysfs_free(sra);
3145 if (!forked)
3146 unfreeze(st);
3147 return 1;
3148 }
3149
3150 /* mdfd handle is passed to be closed in child process (after fork).
3151 */
3152 int reshape_container(char *container, char *devname,
3153 int mdfd,
3154 struct supertype *st,
3155 struct mdinfo *info,
3156 int force,
3157 char *backup_file,
3158 int verbose, int restart, int freeze_reshape)
3159 {
3160 struct mdinfo *cc = NULL;
3161 int rv = restart;
3162 char last_devnm[32] = "";
3163
3164 /* component_size is not meaningful for a container,
3165 * so pass '0' meaning 'no change'
3166 */
3167 if (!restart &&
3168 reshape_super(st, 0, info->new_level,
3169 info->new_layout, info->new_chunk,
3170 info->array.raid_disks, info->delta_disks,
3171 backup_file, devname, APPLY_METADATA_CHANGES,
3172 verbose)) {
3173 unfreeze(st);
3174 return 1;
3175 }
3176
3177 sync_metadata(st);
3178
3179 /* ping monitor to be sure that update is on disk
3180 */
3181 ping_monitor(container);
3182
3183 switch (fork()) {
3184 case -1: /* error */
3185 perror("Cannot fork to complete reshape\n");
3186 unfreeze(st);
3187 return 1;
3188 default: /* parent */
3189 if (!freeze_reshape)
3190 printf(Name ": multi-array reshape continues"
3191 " in background\n");
3192 return 0;
3193 case 0: /* child */
3194 map_fork();
3195 break;
3196 }
3197
3198 /* close unused handle in child process
3199 */
3200 if (mdfd > -1)
3201 close(mdfd);
3202
3203 while(1) {
3204 /* For each member array with reshape_active,
3205 * we need to perform the reshape.
3206 * We pick the first array that needs reshaping and
3207 * reshape it. reshape_array() will re-read the metadata
3208 * so the next time through a different array should be
3209 * ready for reshape.
3210 * It is possible that the 'different' array will not
3211 * be assembled yet. In that case we simple exit.
3212 * When it is assembled, the mdadm which assembles it
3213 * will take over the reshape.
3214 */
3215 struct mdinfo *content;
3216 int fd;
3217 struct mdstat_ent *mdstat;
3218 char *adev;
3219 int devid;
3220
3221 sysfs_free(cc);
3222
3223 cc = st->ss->container_content(st, NULL);
3224
3225 for (content = cc; content ; content = content->next) {
3226 char *subarray;
3227 if (!content->reshape_active)
3228 continue;
3229
3230 subarray = strchr(content->text_version+1, '/')+1;
3231 mdstat = mdstat_by_subdev(subarray, container);
3232 if (!mdstat)
3233 continue;
3234 if (mdstat->active == 0) {
3235 pr_err("Skipping inactive array %s.\n",
3236 mdstat->devnm);
3237 free_mdstat(mdstat);
3238 mdstat = NULL;
3239 continue;
3240 }
3241 break;
3242 }
3243 if (!content)
3244 break;
3245
3246 devid = devnm2devid(mdstat->devnm);
3247 adev = map_dev(major(devid), minor(devid), 0);
3248 if (!adev)
3249 adev = content->text_version;
3250
3251 fd = open_dev(mdstat->devnm);
3252 if (fd < 0) {
3253 printf(Name ": Device %s cannot be opened for reshape.",
3254 adev);
3255 break;
3256 }
3257
3258 if (strcmp(last_devnm, mdstat->devnm) == 0) {
3259 /* Do not allow for multiple reshape_array() calls for
3260 * the same array.
3261 * It can happen when reshape_array() returns without
3262 * error, when reshape is not finished (wrong reshape
3263 * starting/continuation conditions). Mdmon doesn't
3264 * switch to next array in container and reentry
3265 * conditions for the same array occur.
3266 * This is possibly interim until the behaviour of
3267 * reshape_array is resolved().
3268 */
3269 printf(Name ": Multiple reshape execution detected for "
3270 "device %s.", adev);
3271 close(fd);
3272 break;
3273 }
3274 strcpy(last_devnm, mdstat->devnm);
3275
3276 sysfs_init(content, fd, mdstat->devnm);
3277
3278 if (mdmon_running(container))
3279 flush_mdmon(container);
3280
3281 rv = reshape_array(container, fd, adev, st,
3282 content, force, NULL, 0ULL,
3283 backup_file, verbose, 1, restart,
3284 freeze_reshape);
3285 close(fd);
3286
3287 if (freeze_reshape) {
3288 sysfs_free(cc);
3289 exit(0);
3290 }
3291
3292 restart = 0;
3293 if (rv)
3294 break;
3295
3296 if (mdmon_running(container))
3297 flush_mdmon(container);
3298 }
3299 if (!rv)
3300 unfreeze(st);
3301 sysfs_free(cc);
3302 exit(0);
3303 }
3304
3305 /*
3306 * We run a child process in the background which performs the following
3307 * steps:
3308 * - wait for resync to reach a certain point
3309 * - suspend io to the following section
3310 * - backup that section
3311 * - allow resync to proceed further
3312 * - resume io
3313 * - discard the backup.
3314 *
3315 * When are combined in slightly different ways in the three cases.
3316 * Grow:
3317 * - suspend/backup/allow/wait/resume/discard
3318 * Shrink:
3319 * - allow/wait/suspend/backup/allow/wait/resume/discard
3320 * same-size:
3321 * - wait/resume/discard/suspend/backup/allow
3322 *
3323 * suspend/backup/allow always come together
3324 * wait/resume/discard do too.
3325 * For the same-size case we have two backups to improve flow.
3326 *
3327 */
3328
3329 int progress_reshape(struct mdinfo *info, struct reshape *reshape,
3330 unsigned long long backup_point,
3331 unsigned long long wait_point,
3332 unsigned long long *suspend_point,
3333 unsigned long long *reshape_completed)
3334 {
3335 /* This function is called repeatedly by the reshape manager.
3336 * It determines how much progress can safely be made and allows
3337 * that progress.
3338 * - 'info' identifies the array and particularly records in
3339 * ->reshape_progress the metadata's knowledge of progress
3340 * This is a sector offset from the start of the array
3341 * of the next array block to be relocated. This number
3342 * may increase from 0 or decrease from array_size, depending
3343 * on the type of reshape that is happening.
3344 * Note that in contrast, 'sync_completed' is a block count of the
3345 * reshape so far. It gives the distance between the start point
3346 * (head or tail of device) and the next place that data will be
3347 * written. It always increases.
3348 * - 'reshape' is the structure created by analyse_change
3349 * - 'backup_point' shows how much the metadata manager has backed-up
3350 * data. For reshapes with increasing progress, it is the next address
3351 * to be backed up, previous addresses have been backed-up. For
3352 * decreasing progress, it is the earliest address that has been
3353 * backed up - later address are also backed up.
3354 * So addresses between reshape_progress and backup_point are
3355 * backed up providing those are in the 'correct' order.
3356 * - 'wait_point' is an array address. When reshape_completed
3357 * passes this point, progress_reshape should return. It might
3358 * return earlier if it determines that ->reshape_progress needs
3359 * to be updated or further backup is needed.
3360 * - suspend_point is maintained by progress_reshape and the caller
3361 * should not touch it except to initialise to zero.
3362 * It is an array address and it only increases in 2.6.37 and earlier.
3363 * This makes it difficult to handle reducing reshapes with
3364 * external metadata.
3365 * However: it is similar to backup_point in that it records the
3366 * other end of a suspended region from reshape_progress.
3367 * it is moved to extend the region that is safe to backup and/or
3368 * reshape
3369 * - reshape_completed is read from sysfs and returned. The caller
3370 * should copy this into ->reshape_progress when it has reason to
3371 * believe that the metadata knows this, and any backup outside this
3372 * has been erased.
3373 *
3374 * Return value is:
3375 * 1 if more data from backup_point - but only as far as suspend_point,
3376 * should be backed up
3377 * 0 if things are progressing smoothly
3378 * -1 if the reshape is finished because it is all done,
3379 * -2 if the reshape is finished due to an error.
3380 */
3381
3382 int advancing = (reshape->after.data_disks
3383 >= reshape->before.data_disks);
3384 unsigned long long need_backup; /* All data between start of array and
3385 * here will at some point need to
3386 * be backed up.
3387 */
3388 unsigned long long read_offset, write_offset;
3389 unsigned long long write_range;
3390 unsigned long long max_progress, target, completed;
3391 unsigned long long array_size = (info->component_size
3392 * reshape->before.data_disks);
3393 int fd;
3394 char buf[20];
3395
3396 /* First, we unsuspend any region that is now known to be safe.
3397 * If suspend_point is on the 'wrong' side of reshape_progress, then
3398 * we don't have or need suspension at the moment. This is true for
3399 * native metadata when we don't need to back-up.
3400 */
3401 if (advancing) {
3402 if (info->reshape_progress <= *suspend_point)
3403 sysfs_set_num(info, NULL, "suspend_lo",
3404 info->reshape_progress);
3405 } else {
3406 /* Note: this won't work in 2.6.37 and before.
3407 * Something somewhere should make sure we don't need it!
3408 */
3409 if (info->reshape_progress >= *suspend_point)
3410 sysfs_set_num(info, NULL, "suspend_hi",
3411 info->reshape_progress);
3412 }
3413
3414 /* Now work out how far it is safe to progress.
3415 * If the read_offset for ->reshape_progress is less than
3416 * 'blocks' beyond the write_offset, we can only progress as far
3417 * as a backup.
3418 * Otherwise we can progress until the write_offset for the new location
3419 * reaches (within 'blocks' of) the read_offset at the current location.
3420 * However that region must be suspended unless we are using native
3421 * metadata.
3422 * If we need to suspend more, we limit it to 128M per device, which is
3423 * rather arbitrary and should be some time-based calculation.
3424 */
3425 read_offset = info->reshape_progress / reshape->before.data_disks;
3426 write_offset = info->reshape_progress / reshape->after.data_disks;
3427 write_range = info->new_chunk/512;
3428 if (reshape->before.data_disks == reshape->after.data_disks)
3429 need_backup = array_size;
3430 else
3431 need_backup = reshape->backup_blocks;
3432 if (advancing) {
3433 if (read_offset < write_offset + write_range)
3434 max_progress = backup_point;
3435 else
3436 max_progress =
3437 read_offset *
3438 reshape->after.data_disks;
3439 } else {
3440 if (read_offset > write_offset - write_range)
3441 /* Can only progress as far as has been backed up,
3442 * which must be suspended */
3443 max_progress = backup_point;
3444 else if (info->reshape_progress <= need_backup)
3445 max_progress = backup_point;
3446 else {
3447 if (info->array.major_version >= 0)
3448 /* Can progress until backup is needed */
3449 max_progress = need_backup;
3450 else {
3451 /* Can progress until metadata update is required */
3452 max_progress =
3453 read_offset *
3454 reshape->after.data_disks;
3455 /* but data must be suspended */
3456 if (max_progress < *suspend_point)
3457 max_progress = *suspend_point;
3458 }
3459 }
3460 }
3461
3462 /* We know it is safe to progress to 'max_progress' providing
3463 * it is suspended or we are using native metadata.
3464 * Consider extending suspend_point 128M per device if it
3465 * is less than 64M per device beyond reshape_progress.
3466 * But always do a multiple of 'blocks'
3467 * FIXME this is too big - it takes to long to complete
3468 * this much.
3469 */
3470 target = 64*1024*2 * min(reshape->before.data_disks,
3471 reshape->after.data_disks);
3472 target /= reshape->backup_blocks;
3473 if (target < 2)
3474 target = 2;
3475 target *= reshape->backup_blocks;
3476
3477 /* For externally managed metadata we always need to suspend IO to
3478 * the area being reshaped so we regularly push suspend_point forward.
3479 * For native metadata we only need the suspend if we are going to do
3480 * a backup.
3481 */
3482 if (advancing) {
3483 if ((need_backup > info->reshape_progress
3484 || info->array.major_version < 0) &&
3485 *suspend_point < info->reshape_progress + target) {
3486 if (need_backup < *suspend_point + 2 * target)
3487 *suspend_point = need_backup;
3488 else if (*suspend_point + 2 * target < array_size)
3489 *suspend_point += 2 * target;
3490 else
3491 *suspend_point = array_size;
3492 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
3493 if (max_progress > *suspend_point)
3494 max_progress = *suspend_point;
3495 }
3496 } else {
3497 if (info->array.major_version >= 0) {
3498 /* Only need to suspend when about to backup */
3499 if (info->reshape_progress < need_backup * 2 &&
3500 *suspend_point > 0) {
3501 *suspend_point = 0;
3502 sysfs_set_num(info, NULL, "suspend_lo", 0);
3503 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
3504 }
3505 } else {
3506 /* Need to suspend continually */
3507 if (info->reshape_progress < *suspend_point)
3508 *suspend_point = info->reshape_progress;
3509 if (*suspend_point + target < info->reshape_progress)
3510 /* No need to move suspend region yet */;
3511 else {
3512 if (*suspend_point >= 2 * target)
3513 *suspend_point -= 2 * target;
3514 else
3515 *suspend_point = 0;
3516 sysfs_set_num(info, NULL, "suspend_lo",
3517 *suspend_point);
3518 }
3519 if (max_progress < *suspend_point)
3520 max_progress = *suspend_point;
3521 }
3522 }
3523
3524 /* now set sync_max to allow that progress. sync_max, like
3525 * sync_completed is a count of sectors written per device, so
3526 * we find the difference between max_progress and the start point,
3527 * and divide that by after.data_disks to get a sync_max
3528 * number.
3529 * At the same time we convert wait_point to a similar number
3530 * for comparing against sync_completed.
3531 */
3532 /* scale down max_progress to per_disk */
3533 max_progress /= reshape->after.data_disks;
3534 /* Round to chunk size as some kernels give an erroneously high number */
3535 max_progress /= info->new_chunk/512;
3536 max_progress *= info->new_chunk/512;
3537 /* And round to old chunk size as the kernel wants that */
3538 max_progress /= info->array.chunk_size/512;
3539 max_progress *= info->array.chunk_size/512;
3540 /* Limit progress to the whole device */
3541 if (max_progress > info->component_size)
3542 max_progress = info->component_size;
3543 wait_point /= reshape->after.data_disks;
3544 if (!advancing) {
3545 /* switch from 'device offset' to 'processed block count' */
3546 max_progress = info->component_size - max_progress;
3547 wait_point = info->component_size - wait_point;
3548 }
3549
3550 sysfs_set_num(info, NULL, "sync_max", max_progress);
3551
3552 /* Now wait. If we have already reached the point that we were
3553 * asked to wait to, don't wait at all, else wait for any change.
3554 * We need to select on 'sync_completed' as that is the place that
3555 * notifications happen, but we are really interested in
3556 * 'reshape_position'
3557 */
3558 fd = sysfs_get_fd(info, NULL, "sync_completed");
3559 if (fd < 0)
3560 goto check_progress;
3561
3562 if (sysfs_fd_get_ll(fd, &completed) < 0)
3563 goto check_progress;
3564
3565 while (completed < max_progress && completed < wait_point) {
3566 /* Check that sync_action is still 'reshape' to avoid
3567 * waiting forever on a dead array
3568 */
3569 char action[20];
3570 fd_set rfds;
3571 if (sysfs_get_str(info, NULL, "sync_action",
3572 action, 20) <= 0 ||
3573 strncmp(action, "reshape", 7) != 0)
3574 break;
3575 /* Some kernels reset 'sync_completed' to zero
3576 * before setting 'sync_action' to 'idle'.
3577 * So we need these extra tests.
3578 */
3579 if (completed == 0 && advancing
3580 && info->reshape_progress > 0)
3581 break;
3582 if (completed == 0 && !advancing
3583 && info->reshape_progress < (info->component_size
3584 * reshape->after.data_disks))
3585 break;
3586 FD_ZERO(&rfds);
3587 FD_SET(fd, &rfds);
3588 select(fd+1, NULL, NULL, &rfds, NULL);
3589 if (sysfs_fd_get_ll(fd, &completed) < 0)
3590 goto check_progress;
3591 }
3592 /* Some kernels reset 'sync_completed' to zero,
3593 * we need to have real point we are in md
3594 */
3595 if (completed == 0)
3596 completed = max_progress;
3597
3598 /* some kernels can give an incorrectly high 'completed' number */
3599 completed /= (info->new_chunk/512);
3600 completed *= (info->new_chunk/512);
3601 /* Convert 'completed' back in to a 'progress' number */
3602 completed *= reshape->after.data_disks;
3603 if (!advancing) {
3604 completed = info->component_size * reshape->after.data_disks
3605 - completed;
3606 }
3607 *reshape_completed = completed;
3608
3609 close(fd);
3610
3611 /* We return the need_backup flag. Caller will decide
3612 * how much - a multiple of ->backup_blocks up to *suspend_point
3613 */
3614 if (advancing)
3615 return need_backup > info->reshape_progress;
3616 else
3617 return need_backup >= info->reshape_progress;
3618
3619 check_progress:
3620 /* if we couldn't read a number from sync_completed, then
3621 * either the reshape did complete, or it aborted.
3622 * We can tell which by checking for 'none' in reshape_position.
3623 * If it did abort, then it might immediately restart if it
3624 * it was just a device failure that leaves us degraded but
3625 * functioning.
3626 */
3627 strcpy(buf, "hi");
3628 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
3629 || strncmp(buf, "none", 4) != 0) {
3630 /* The abort might only be temporary. Wait up to 10
3631 * seconds for fd to contain a valid number again.
3632 */
3633 struct timeval tv;
3634 int rv = -2;
3635 tv.tv_sec = 10;
3636 tv.tv_usec = 0;
3637 while (fd >= 0 && rv < 0 && tv.tv_sec > 0) {
3638 fd_set rfds;
3639 FD_ZERO(&rfds);
3640 FD_SET(fd, &rfds);
3641 if (select(fd+1, NULL, NULL, &rfds, &tv) != 1)
3642 break;
3643 switch (sysfs_fd_get_ll(fd, &completed)) {
3644 case 0:
3645 /* all good again */
3646 rv = 1;
3647 break;
3648 case -2: /* read error - abort */
3649 tv.tv_sec = 0;
3650 break;
3651 }
3652 }
3653 if (fd >= 0)
3654 close(fd);
3655 return rv; /* abort */
3656 } else {
3657 /* Maybe racing with array shutdown - check state */
3658 if (fd >= 0)
3659 close(fd);
3660 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
3661 || strncmp(buf, "inactive", 8) == 0
3662 || strncmp(buf, "clear",5) == 0)
3663 return -2; /* abort */
3664 return -1; /* complete */
3665 }
3666 }
3667
3668 /* FIXME return status is never checked */
3669 static int grow_backup(struct mdinfo *sra,
3670 unsigned long long offset, /* per device */
3671 unsigned long stripes, /* per device, in old chunks */
3672 int *sources, unsigned long long *offsets,
3673 int disks, int chunk, int level, int layout,
3674 int dests, int *destfd, unsigned long long *destoffsets,
3675 int part, int *degraded,
3676 char *buf)
3677 {
3678 /* Backup 'blocks' sectors at 'offset' on each device of the array,
3679 * to storage 'destfd' (offset 'destoffsets'), after first
3680 * suspending IO. Then allow resync to continue
3681 * over the suspended section.
3682 * Use part 'part' of the backup-super-block.
3683 */
3684 int odata = disks;
3685 int rv = 0;
3686 int i;
3687 unsigned long long ll;
3688 int new_degraded;
3689 //printf("offset %llu\n", offset);
3690 if (level >= 4)
3691 odata--;
3692 if (level == 6)
3693 odata--;
3694
3695 /* Check that array hasn't become degraded, else we might backup the wrong data */
3696 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
3697 return -1; /* FIXME this error is ignored */
3698 new_degraded = (int)ll;
3699 if (new_degraded != *degraded) {
3700 /* check each device to ensure it is still working */
3701 struct mdinfo *sd;
3702 for (sd = sra->devs ; sd ; sd = sd->next) {
3703 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3704 continue;
3705 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
3706 char sbuf[20];
3707 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
3708 strstr(sbuf, "faulty") ||
3709 strstr(sbuf, "in_sync") == NULL) {
3710 /* this device is dead */
3711 sd->disk.state = (1<<MD_DISK_FAULTY);
3712 if (sd->disk.raid_disk >= 0 &&
3713 sources[sd->disk.raid_disk] >= 0) {
3714 close(sources[sd->disk.raid_disk]);
3715 sources[sd->disk.raid_disk] = -1;
3716 }
3717 }
3718 }
3719 }
3720 *degraded = new_degraded;
3721 }
3722 if (part) {
3723 bsb.arraystart2 = __cpu_to_le64(offset * odata);
3724 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
3725 } else {
3726 bsb.arraystart = __cpu_to_le64(offset * odata);
3727 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
3728 }
3729 if (part)
3730 bsb.magic[15] = '2';
3731 for (i = 0; i < dests; i++)
3732 if (part)
3733 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
3734 else
3735 lseek64(destfd[i], destoffsets[i], 0);
3736
3737 rv = save_stripes(sources, offsets,
3738 disks, chunk, level, layout,
3739 dests, destfd,
3740 offset*512*odata, stripes * chunk * odata,
3741 buf);
3742
3743 if (rv)
3744 return rv;
3745 bsb.mtime = __cpu_to_le64(time(0));
3746 for (i = 0; i < dests; i++) {
3747 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3748
3749 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3750 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3751 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3752 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3753
3754 rv = -1;
3755 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
3756 != destoffsets[i] - 4096)
3757 break;
3758 if (write(destfd[i], &bsb, 512) != 512)
3759 break;
3760 if (destoffsets[i] > 4096) {
3761 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
3762 destoffsets[i]+stripes*chunk*odata)
3763 break;
3764 if (write(destfd[i], &bsb, 512) != 512)
3765 break;
3766 }
3767 fsync(destfd[i]);
3768 rv = 0;
3769 }
3770
3771 return rv;
3772 }
3773
3774 /* in 2.6.30, the value reported by sync_completed can be
3775 * less that it should be by one stripe.
3776 * This only happens when reshape hits sync_max and pauses.
3777 * So allow wait_backup to either extent sync_max further
3778 * than strictly necessary, or return before the
3779 * sync has got quite as far as we would really like.
3780 * This is what 'blocks2' is for.
3781 * The various caller give appropriate values so that
3782 * every works.
3783 */
3784 /* FIXME return value is often ignored */
3785 static int forget_backup(int dests, int *destfd,
3786 unsigned long long *destoffsets,
3787 int part)
3788 {
3789 /*
3790 * Erase backup 'part' (which is 0 or 1)
3791 */
3792 int i;
3793 int rv;
3794
3795 if (part) {
3796 bsb.arraystart2 = __cpu_to_le64(0);
3797 bsb.length2 = __cpu_to_le64(0);
3798 } else {
3799 bsb.arraystart = __cpu_to_le64(0);
3800 bsb.length = __cpu_to_le64(0);
3801 }
3802 bsb.mtime = __cpu_to_le64(time(0));
3803 rv = 0;
3804 for (i = 0; i < dests; i++) {
3805 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3806 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3807 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3808 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3809 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3810 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
3811 destoffsets[i]-4096)
3812 rv = -1;
3813 if (rv == 0 &&
3814 write(destfd[i], &bsb, 512) != 512)
3815 rv = -1;
3816 fsync(destfd[i]);
3817 }
3818 return rv;
3819 }
3820
3821 static void fail(char *msg)
3822 {
3823 int rv;
3824 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
3825 rv |= (write(2, "\n", 1) != 1);
3826 exit(rv ? 1 : 2);
3827 }
3828
3829 static char *abuf, *bbuf;
3830 static unsigned long long abuflen;
3831 static void validate(int afd, int bfd, unsigned long long offset)
3832 {
3833 /* check that the data in the backup against the array.
3834 * This is only used for regression testing and should not
3835 * be used while the array is active
3836 */
3837 if (afd < 0)
3838 return;
3839 lseek64(bfd, offset - 4096, 0);
3840 if (read(bfd, &bsb2, 512) != 512)
3841 fail("cannot read bsb");
3842 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
3843 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
3844 fail("first csum bad");
3845 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
3846 fail("magic is bad");
3847 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
3848 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
3849 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
3850 fail("second csum bad");
3851
3852 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
3853 fail("devstart is wrong");
3854
3855 if (bsb2.length) {
3856 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
3857
3858 if (abuflen < len) {
3859 free(abuf);
3860 free(bbuf);
3861 abuflen = len;
3862 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
3863 posix_memalign((void**)&bbuf, 4096, abuflen)) {
3864 abuflen = 0;
3865 /* just stop validating on mem-alloc failure */
3866 return;
3867 }
3868 }
3869
3870 lseek64(bfd, offset, 0);
3871 if ((unsigned long long)read(bfd, bbuf, len) != len) {
3872 //printf("len %llu\n", len);
3873 fail("read first backup failed");
3874 }
3875 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
3876 if ((unsigned long long)read(afd, abuf, len) != len)
3877 fail("read first from array failed");
3878 if (memcmp(bbuf, abuf, len) != 0) {
3879 #if 0
3880 int i;
3881 printf("offset=%llu len=%llu\n",
3882 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
3883 for (i=0; i<len; i++)
3884 if (bbuf[i] != abuf[i]) {
3885 printf("first diff byte %d\n", i);
3886 break;
3887 }
3888 #endif
3889 fail("data1 compare failed");
3890 }
3891 }
3892 if (bsb2.length2) {
3893 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
3894
3895 if (abuflen < len) {
3896 free(abuf);
3897 free(bbuf);
3898 abuflen = len;
3899 abuf = xmalloc(abuflen);
3900 bbuf = xmalloc(abuflen);
3901 }
3902
3903 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
3904 if ((unsigned long long)read(bfd, bbuf, len) != len)
3905 fail("read second backup failed");
3906 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
3907 if ((unsigned long long)read(afd, abuf, len) != len)
3908 fail("read second from array failed");
3909 if (memcmp(bbuf, abuf, len) != 0)
3910 fail("data2 compare failed");
3911 }
3912 }
3913
3914 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
3915 struct supertype *st, unsigned long blocks,
3916 int *fds, unsigned long long *offsets,
3917 int dests, int *destfd, unsigned long long *destoffsets)
3918 {
3919 /* Monitor a reshape where backup is being performed using
3920 * 'native' mechanism - either to a backup file, or
3921 * to some space in a spare.
3922 */
3923 char *buf;
3924 int degraded = -1;
3925 unsigned long long speed;
3926 unsigned long long suspend_point, array_size;
3927 unsigned long long backup_point, wait_point;
3928 unsigned long long reshape_completed;
3929 int done = 0;
3930 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
3931 int part = 0; /* The next part of the backup area to fill. It may already
3932 * be full, so we need to check */
3933 int level = reshape->level;
3934 int layout = reshape->before.layout;
3935 int data = reshape->before.data_disks;
3936 int disks = reshape->before.data_disks + reshape->parity;
3937 int chunk = sra->array.chunk_size;
3938 struct mdinfo *sd;
3939 unsigned long stripes;
3940 int uuid[4];
3941
3942 /* set up the backup-super-block. This requires the
3943 * uuid from the array.
3944 */
3945 /* Find a superblock */
3946 for (sd = sra->devs; sd; sd = sd->next) {
3947 char *dn;
3948 int devfd;
3949 int ok;
3950 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3951 continue;
3952 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
3953 devfd = dev_open(dn, O_RDONLY);
3954 if (devfd < 0)
3955 continue;
3956 ok = st->ss->load_super(st, devfd, NULL);
3957 close(devfd);
3958 if (ok == 0)
3959 break;
3960 }
3961 if (!sd) {
3962 pr_err("Cannot find a superblock\n");
3963 return 0;
3964 }
3965
3966 memset(&bsb, 0, 512);
3967 memcpy(bsb.magic, "md_backup_data-1", 16);
3968 st->ss->uuid_from_super(st, uuid);
3969 memcpy(bsb.set_uuid, uuid, 16);
3970 bsb.mtime = __cpu_to_le64(time(0));
3971 bsb.devstart2 = blocks;
3972
3973 stripes = blocks / (sra->array.chunk_size/512) /
3974 reshape->before.data_disks;
3975
3976 if (posix_memalign((void**)&buf, 4096, disks * chunk))
3977 /* Don't start the 'reshape' */
3978 return 0;
3979 if (reshape->before.data_disks == reshape->after.data_disks) {
3980 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
3981 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
3982 }
3983
3984 if (increasing) {
3985 array_size = sra->component_size * reshape->after.data_disks;
3986 backup_point = sra->reshape_progress;
3987 suspend_point = 0;
3988 } else {
3989 array_size = sra->component_size * reshape->before.data_disks;
3990 backup_point = reshape->backup_blocks;
3991 suspend_point = array_size;
3992 }
3993
3994 while (!done) {
3995 int rv;
3996
3997 /* Want to return as soon the oldest backup slot can
3998 * be released as that allows us to start backing up
3999 * some more, providing suspend_point has been
4000 * advanced, which it should have.
4001 */
4002 if (increasing) {
4003 wait_point = array_size;
4004 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4005 wait_point = (__le64_to_cpu(bsb.arraystart) +
4006 __le64_to_cpu(bsb.length));
4007 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4008 wait_point = (__le64_to_cpu(bsb.arraystart2) +
4009 __le64_to_cpu(bsb.length2));
4010 } else {
4011 wait_point = 0;
4012 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4013 wait_point = __le64_to_cpu(bsb.arraystart);
4014 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4015 wait_point = __le64_to_cpu(bsb.arraystart2);
4016 }
4017
4018 rv = progress_reshape(sra, reshape,
4019 backup_point, wait_point,
4020 &suspend_point, &reshape_completed);
4021 /* external metadata would need to ping_monitor here */
4022 sra->reshape_progress = reshape_completed;
4023
4024 /* Clear any backup region that is before 'here' */
4025 if (increasing) {
4026 if (__le64_to_cpu(bsb.length) > 0 &&
4027 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
4028 __le64_to_cpu(bsb.length)))
4029 forget_backup(dests, destfd,
4030 destoffsets, 0);
4031 if (__le64_to_cpu(bsb.length2) > 0 &&
4032 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
4033 __le64_to_cpu(bsb.length2)))
4034 forget_backup(dests, destfd,
4035 destoffsets, 1);
4036 } else {
4037 if (__le64_to_cpu(bsb.length) > 0 &&
4038 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
4039 forget_backup(dests, destfd,
4040 destoffsets, 0);
4041 if (__le64_to_cpu(bsb.length2) > 0 &&
4042 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
4043 forget_backup(dests, destfd,
4044 destoffsets, 1);
4045 }
4046
4047 if (rv < 0) {
4048 if (rv == -1)
4049 done = 1;
4050 break;
4051 }
4052 if (rv == 0 && increasing && !st->ss->external) {
4053 /* No longer need to monitor this reshape */
4054 done = 1;
4055 break;
4056 }
4057
4058 while (rv) {
4059 unsigned long long offset;
4060 unsigned long actual_stripes;
4061 /* Need to backup some data.
4062 * If 'part' is not used and the desired
4063 * backup size is suspended, do a backup,
4064 * then consider the next part.
4065 */
4066 /* Check that 'part' is unused */
4067 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
4068 break;
4069 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
4070 break;
4071
4072 offset = backup_point / data;
4073 actual_stripes = stripes;
4074 if (increasing) {
4075 if (offset + actual_stripes * (chunk/512) >
4076 sra->component_size)
4077 actual_stripes = ((sra->component_size - offset)
4078 / (chunk/512));
4079 if (offset + actual_stripes * (chunk/512) >
4080 suspend_point/data)
4081 break;
4082 } else {
4083 if (offset < actual_stripes * (chunk/512))
4084 actual_stripes = offset / (chunk/512);
4085 offset -= actual_stripes * (chunk/512);
4086 if (offset < suspend_point/data)
4087 break;
4088 }
4089 if (actual_stripes == 0)
4090 break;
4091 grow_backup(sra, offset, actual_stripes,
4092 fds, offsets,
4093 disks, chunk, level, layout,
4094 dests, destfd, destoffsets,
4095 part, &degraded, buf);
4096 validate(afd, destfd[0], destoffsets[0]);
4097 /* record where 'part' is up to */
4098 part = !part;
4099 if (increasing)
4100 backup_point += actual_stripes * (chunk/512) * data;
4101 else
4102 backup_point -= actual_stripes * (chunk/512) * data;
4103 }
4104 }
4105
4106 /* FIXME maybe call progress_reshape one more time instead */
4107 abort_reshape(sra); /* remove any remaining suspension */
4108 if (reshape->before.data_disks == reshape->after.data_disks)
4109 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
4110 free(buf);
4111 return done;
4112 }
4113
4114 /*
4115 * If any spare contains md_back_data-1 which is recent wrt mtime,
4116 * write that data into the array and update the super blocks with
4117 * the new reshape_progress
4118 */
4119 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
4120 char *backup_file, int verbose)
4121 {
4122 int i, j;
4123 int old_disks;
4124 unsigned long long *offsets;
4125 unsigned long long nstripe, ostripe;
4126 int ndata, odata;
4127
4128 odata = info->array.raid_disks - info->delta_disks - 1;
4129 if (info->array.level == 6) odata--; /* number of data disks */
4130 ndata = info->array.raid_disks - 1;
4131 if (info->new_level == 6) ndata--;
4132
4133 old_disks = info->array.raid_disks - info->delta_disks;
4134
4135 if (info->delta_disks <= 0)
4136 /* Didn't grow, so the backup file must have
4137 * been used
4138 */
4139 old_disks = cnt;
4140 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
4141 struct mdinfo dinfo;
4142 int fd;
4143 int bsbsize;
4144 char *devname, namebuf[20];
4145 unsigned long long lo, hi;
4146
4147 /* This was a spare and may have some saved data on it.
4148 * Load the superblock, find and load the
4149 * backup_super_block.
4150 * If either fail, go on to next device.
4151 * If the backup contains no new info, just return
4152 * else restore data and update all superblocks
4153 */
4154 if (i == old_disks-1) {
4155 fd = open(backup_file, O_RDONLY);
4156 if (fd<0) {
4157 pr_err("backup file %s inaccessible: %s\n",
4158 backup_file, strerror(errno));
4159 continue;
4160 }
4161 devname = backup_file;
4162 } else {
4163 fd = fdlist[i];
4164 if (fd < 0)
4165 continue;
4166 if (st->ss->load_super(st, fd, NULL))
4167 continue;
4168
4169 st->ss->getinfo_super(st, &dinfo, NULL);
4170 st->ss->free_super(st);
4171
4172 if (lseek64(fd,
4173 (dinfo.data_offset + dinfo.component_size - 8) <<9,
4174 0) < 0) {
4175 pr_err("Cannot seek on device %d\n", i);
4176 continue; /* Cannot seek */
4177 }
4178 sprintf(namebuf, "device-%d", i);
4179 devname = namebuf;
4180 }
4181 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
4182 if (verbose)
4183 pr_err("Cannot read from %s\n", devname);
4184 continue; /* Cannot read */
4185 }
4186 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
4187 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
4188 if (verbose)
4189 pr_err("No backup metadata on %s\n", devname);
4190 continue;
4191 }
4192 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
4193 if (verbose)
4194 pr_err("Bad backup-metadata checksum on %s\n", devname);
4195 continue; /* bad checksum */
4196 }
4197 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
4198 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
4199 if (verbose)
4200 pr_err("Bad backup-metadata checksum2 on %s\n", devname);
4201 continue; /* Bad second checksum */
4202 }
4203 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
4204 if (verbose)
4205 pr_err("Wrong uuid on backup-metadata on %s\n", devname);
4206 continue; /* Wrong uuid */
4207 }
4208
4209 /* array utime and backup-mtime should be updated at much the same time, but it seems that
4210 * sometimes they aren't... So allow considerable flexability in matching, and allow
4211 * this test to be overridden by an environment variable.
4212 */
4213 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
4214 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
4215 if (check_env("MDADM_GROW_ALLOW_OLD")) {
4216 pr_err("accepting backup with timestamp %lu "
4217 "for array with timestamp %lu\n",
4218 (unsigned long)__le64_to_cpu(bsb.mtime),
4219 (unsigned long)info->array.utime);
4220 } else {
4221 pr_err("too-old timestamp on backup-metadata on %s\n", devname);
4222 pr_err("If you think it is should be safe, try 'export MDADM_GROW_ALLOW_OLD=1'\n");
4223 continue; /* time stamp is too bad */
4224 }
4225 }
4226
4227 if (bsb.magic[15] == '1') {
4228 if (bsb.length == 0)
4229 continue;
4230 if (info->delta_disks >= 0) {
4231 /* reshape_progress is increasing */
4232 if (__le64_to_cpu(bsb.arraystart)
4233 + __le64_to_cpu(bsb.length)
4234 < info->reshape_progress) {
4235 nonew:
4236 if (verbose)
4237 pr_err("backup-metadata found on %s but is not needed\n", devname);
4238 continue; /* No new data here */
4239 }
4240 } else {
4241 /* reshape_progress is decreasing */
4242 if (__le64_to_cpu(bsb.arraystart) >=
4243 info->reshape_progress)
4244 goto nonew; /* No new data here */
4245 }
4246 } else {
4247 if (bsb.length == 0 && bsb.length2 == 0)
4248 continue;
4249 if (info->delta_disks >= 0) {
4250 /* reshape_progress is increasing */
4251 if ((__le64_to_cpu(bsb.arraystart)
4252 + __le64_to_cpu(bsb.length)
4253 < info->reshape_progress)
4254 &&
4255 (__le64_to_cpu(bsb.arraystart2)
4256 + __le64_to_cpu(bsb.length2)
4257 < info->reshape_progress))
4258 goto nonew; /* No new data here */
4259 } else {
4260 /* reshape_progress is decreasing */
4261 if (__le64_to_cpu(bsb.arraystart) >=
4262 info->reshape_progress &&
4263 __le64_to_cpu(bsb.arraystart2) >=
4264 info->reshape_progress)
4265 goto nonew; /* No new data here */
4266 }
4267 }
4268 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
4269 second_fail:
4270 if (verbose)
4271 pr_err("Failed to verify secondary backup-metadata block on %s\n",
4272 devname);
4273 continue; /* Cannot seek */
4274 }
4275 /* There should be a duplicate backup superblock 4k before here */
4276 if (lseek64(fd, -4096, 1) < 0 ||
4277 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
4278 goto second_fail; /* Cannot find leading superblock */
4279 if (bsb.magic[15] == '1')
4280 bsbsize = offsetof(struct mdp_backup_super, pad1);
4281 else
4282 bsbsize = offsetof(struct mdp_backup_super, pad);
4283 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
4284 goto second_fail; /* Cannot find leading superblock */
4285
4286 /* Now need the data offsets for all devices. */
4287 offsets = xmalloc(sizeof(*offsets)*info->array.raid_disks);
4288 for(j=0; j<info->array.raid_disks; j++) {
4289 if (fdlist[j] < 0)
4290 continue;
4291 if (st->ss->load_super(st, fdlist[j], NULL))
4292 /* FIXME should be this be an error */
4293 continue;
4294 st->ss->getinfo_super(st, &dinfo, NULL);
4295 st->ss->free_super(st);
4296 offsets[j] = dinfo.data_offset * 512;
4297 }
4298 printf(Name ": restoring critical section\n");
4299
4300 if (restore_stripes(fdlist, offsets,
4301 info->array.raid_disks,
4302 info->new_chunk,
4303 info->new_level,
4304 info->new_layout,
4305 fd, __le64_to_cpu(bsb.devstart)*512,
4306 __le64_to_cpu(bsb.arraystart)*512,
4307 __le64_to_cpu(bsb.length)*512, NULL)) {
4308 /* didn't succeed, so giveup */
4309 if (verbose)
4310 pr_err("Error restoring backup from %s\n",
4311 devname);
4312 free(offsets);
4313 return 1;
4314 }
4315
4316 if (bsb.magic[15] == '2' &&
4317 restore_stripes(fdlist, offsets,
4318 info->array.raid_disks,
4319 info->new_chunk,
4320 info->new_level,
4321 info->new_layout,
4322 fd, __le64_to_cpu(bsb.devstart)*512 +
4323 __le64_to_cpu(bsb.devstart2)*512,
4324 __le64_to_cpu(bsb.arraystart2)*512,
4325 __le64_to_cpu(bsb.length2)*512, NULL)) {
4326 /* didn't succeed, so giveup */
4327 if (verbose)
4328 pr_err("Error restoring second backup from %s\n",
4329 devname);
4330 free(offsets);
4331 return 1;
4332 }
4333
4334 free(offsets);
4335
4336 /* Ok, so the data is restored. Let's update those superblocks. */
4337
4338 lo = hi = 0;
4339 if (bsb.length) {
4340 lo = __le64_to_cpu(bsb.arraystart);
4341 hi = lo + __le64_to_cpu(bsb.length);
4342 }
4343 if (bsb.magic[15] == '2' && bsb.length2) {
4344 unsigned long long lo1, hi1;
4345 lo1 = __le64_to_cpu(bsb.arraystart2);
4346 hi1 = lo1 + __le64_to_cpu(bsb.length2);
4347 if (lo == hi) {
4348 lo = lo1;
4349 hi = hi1;
4350 } else if (lo < lo1)
4351 hi = hi1;
4352 else
4353 lo = lo1;
4354 }
4355 if (lo < hi &&
4356 (info->reshape_progress < lo ||
4357 info->reshape_progress > hi))
4358 /* backup does not affect reshape_progress*/ ;
4359 else if (info->delta_disks >= 0) {
4360 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
4361 __le64_to_cpu(bsb.length);
4362 if (bsb.magic[15] == '2') {
4363 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
4364 __le64_to_cpu(bsb.length2);
4365 if (p2 > info->reshape_progress)
4366 info->reshape_progress = p2;
4367 }
4368 } else {
4369 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
4370 if (bsb.magic[15] == '2') {
4371 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
4372 if (p2 < info->reshape_progress)
4373 info->reshape_progress = p2;
4374 }
4375 }
4376 for (j=0; j<info->array.raid_disks; j++) {
4377 if (fdlist[j] < 0)
4378 continue;
4379 if (st->ss->load_super(st, fdlist[j], NULL))
4380 continue;
4381 st->ss->getinfo_super(st, &dinfo, NULL);
4382 dinfo.reshape_progress = info->reshape_progress;
4383 st->ss->update_super(st, &dinfo,
4384 "_reshape_progress",
4385 NULL,0, 0, NULL);
4386 st->ss->store_super(st, fdlist[j]);
4387 st->ss->free_super(st);
4388 }
4389 return 0;
4390 }
4391 /* Didn't find any backup data, try to see if any
4392 * was needed.
4393 */
4394 if (info->delta_disks < 0) {
4395 /* When shrinking, the critical section is at the end.
4396 * So see if we are before the critical section.
4397 */
4398 unsigned long long first_block;
4399 nstripe = ostripe = 0;
4400 first_block = 0;
4401 while (ostripe >= nstripe) {
4402 ostripe += info->array.chunk_size / 512;
4403 first_block = ostripe * odata;
4404 nstripe = first_block / ndata / (info->new_chunk/512) *
4405 (info->new_chunk/512);
4406 }
4407
4408 if (info->reshape_progress >= first_block)
4409 return 0;
4410 }
4411 if (info->delta_disks > 0) {
4412 /* See if we are beyond the critical section. */
4413 unsigned long long last_block;
4414 nstripe = ostripe = 0;
4415 last_block = 0;
4416 while (nstripe >= ostripe) {
4417 nstripe += info->new_chunk / 512;
4418 last_block = nstripe * ndata;
4419 ostripe = last_block / odata / (info->array.chunk_size/512) *
4420 (info->array.chunk_size/512);
4421 }
4422
4423 if (info->reshape_progress >= last_block)
4424 return 0;
4425 }
4426 /* needed to recover critical section! */
4427 if (verbose)
4428 pr_err("Failed to find backup of critical section\n");
4429 return 1;
4430 }
4431
4432 int Grow_continue_command(char *devname, int fd,
4433 char *backup_file, int verbose)
4434 {
4435 int ret_val = 0;
4436 struct supertype *st = NULL;
4437 struct mdinfo *content = NULL;
4438 struct mdinfo array;
4439 char *subarray = NULL;
4440 struct mdinfo *cc = NULL;
4441 struct mdstat_ent *mdstat = NULL;
4442 int cfd = -1;
4443 int fd2 = -1;
4444
4445 dprintf("Grow continue from command line called for %s\n",
4446 devname);
4447
4448 st = super_by_fd(fd, &subarray);
4449 if (!st || !st->ss) {
4450 pr_err("Unable to determine metadata format for %s\n",
4451 devname);
4452 return 1;
4453 }
4454 dprintf("Grow continue is run for ");
4455 if (st->ss->external == 0) {
4456 int d;
4457 dprintf("native array (%s)\n", devname);
4458 if (ioctl(fd, GET_ARRAY_INFO, &array.array) < 0) {
4459 pr_err("%s is not an active md array -"
4460 " aborting\n", devname);
4461 ret_val = 1;
4462 goto Grow_continue_command_exit;
4463 }
4464 content = &array;
4465 /* Need to load a superblock.
4466 * FIXME we should really get what we need from
4467 * sysfs
4468 */
4469 for (d = 0; d < MAX_DISKS; d++) {
4470 mdu_disk_info_t disk;
4471 char *dv;
4472 int err;
4473 disk.number = d;
4474 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
4475 continue;
4476 if (disk.major == 0 && disk.minor == 0)
4477 continue;
4478 if ((disk.state & (1 << MD_DISK_ACTIVE)) == 0)
4479 continue;
4480 dv = map_dev(disk.major, disk.minor, 1);
4481 if (!dv)
4482 continue;
4483 fd2 = dev_open(dv, O_RDONLY);
4484 if (fd2 < 0)
4485 continue;
4486 err = st->ss->load_super(st, fd2, NULL);
4487 close(fd2);
4488 if (err)
4489 continue;
4490 break;
4491 }
4492 if (d == MAX_DISKS) {
4493 pr_err("Unable to load metadata for %s\n",
4494 devname);
4495 ret_val = 1;
4496 goto Grow_continue_command_exit;
4497 }
4498 st->ss->getinfo_super(st, content, NULL);
4499 } else {
4500 char *container;
4501
4502 if (subarray) {
4503 dprintf("subarray (%s)\n", subarray);
4504 container = st->container_devnm;
4505 cfd = open_dev_excl(st->container_devnm);
4506 } else {
4507 container = st->devnm;
4508 close(fd);
4509 cfd = open_dev_excl(st->devnm);
4510 dprintf("container (%s)\n", container);
4511 fd = cfd;
4512 }
4513 if (cfd < 0) {
4514 pr_err("Unable to open container "
4515 "for %s\n", devname);
4516 ret_val = 1;
4517 goto Grow_continue_command_exit;
4518 }
4519
4520 /* find in container array under reshape
4521 */
4522 ret_val = st->ss->load_container(st, cfd, NULL);
4523 if (ret_val) {
4524 pr_err("Cannot read superblock for %s\n",
4525 devname);
4526 ret_val = 1;
4527 goto Grow_continue_command_exit;
4528 }
4529
4530 cc = st->ss->container_content(st, subarray);
4531 for (content = cc; content ; content = content->next) {
4532 char *array;
4533 int allow_reshape = 1;
4534
4535 if (content->reshape_active == 0)
4536 continue;
4537 /* The decision about array or container wide
4538 * reshape is taken in Grow_continue based
4539 * content->reshape_active state, therefore we
4540 * need to check_reshape based on
4541 * reshape_active and subarray name
4542 */
4543 if (content->array.state & (1<<MD_SB_BLOCK_VOLUME))
4544 allow_reshape = 0;
4545 if (content->reshape_active == CONTAINER_RESHAPE &&
4546 (content->array.state
4547 & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE)))
4548 allow_reshape = 0;
4549
4550 if (!allow_reshape) {
4551 pr_err("cannot continue reshape of an array"
4552 " in container with unsupported"
4553 " metadata: %s(%s)\n",
4554 devname, container);
4555 ret_val = 1;
4556 goto Grow_continue_command_exit;
4557 }
4558
4559 array = strchr(content->text_version+1, '/')+1;
4560 mdstat = mdstat_by_subdev(array, container);
4561 if (!mdstat)
4562 continue;
4563 if (mdstat->active == 0) {
4564 pr_err("Skipping inactive array %s.\n",
4565 mdstat->devnm);
4566 free_mdstat(mdstat);
4567 mdstat = NULL;
4568 continue;
4569 }
4570 break;
4571 }
4572 if (!content) {
4573 pr_err("Unable to determine reshaped "
4574 "array for %s\n", devname);
4575 ret_val = 1;
4576 goto Grow_continue_command_exit;
4577 }
4578 fd2 = open_dev(mdstat->devnm);
4579 if (fd2 < 0) {
4580 pr_err("cannot open (%s)\n", mdstat->devnm);
4581 ret_val = 1;
4582 goto Grow_continue_command_exit;
4583 }
4584
4585 sysfs_init(content, fd2, mdstat->devnm);
4586
4587 /* start mdmon in case it is not running
4588 */
4589 if (!mdmon_running(container))
4590 start_mdmon(container);
4591 ping_monitor(container);
4592
4593 if (mdmon_running(container))
4594 st->update_tail = &st->updates;
4595 else {
4596 pr_err("No mdmon found. "
4597 "Grow cannot continue.\n");
4598 ret_val = 1;
4599 goto Grow_continue_command_exit;
4600 }
4601 }
4602
4603 /* verify that array under reshape is started from
4604 * correct position
4605 */
4606 if (verify_reshape_position(content, content->array.level) < 0) {
4607 ret_val = 1;
4608 goto Grow_continue_command_exit;
4609 }
4610
4611 /* continue reshape
4612 */
4613 ret_val = Grow_continue(fd, st, content, backup_file, 0);
4614
4615 Grow_continue_command_exit:
4616 if (fd2 > -1)
4617 close(fd2);
4618 if (cfd > -1)
4619 close(cfd);
4620 st->ss->free_super(st);
4621 free_mdstat(mdstat);
4622 sysfs_free(cc);
4623 free(subarray);
4624
4625 return ret_val;
4626 }
4627
4628 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
4629 char *backup_file, int freeze_reshape)
4630 {
4631 int ret_val = 2;
4632
4633 if (!info->reshape_active)
4634 return ret_val;
4635
4636 if (st->ss->external) {
4637 int cfd = open_dev(st->container_devnm);
4638
4639 if (cfd < 0)
4640 return 1;
4641
4642 st->ss->load_container(st, cfd, st->container_devnm);
4643 close(cfd);
4644 ret_val = reshape_container(st->container_devnm, NULL, mdfd,
4645 st, info, 0, backup_file,
4646 0, 1, freeze_reshape);
4647 } else
4648 ret_val = reshape_array(NULL, mdfd, "array", st, info, 1,
4649 NULL, 0ULL, backup_file, 0, 0, 1,
4650 freeze_reshape);
4651
4652 return ret_val;
4653 }