]> git.ipfire.org Git - thirdparty/mdadm.git/blob - Grow.c
Grow: E2BIG should be reporte differently if --data-offset was requested.
[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 (errno == E2BIG && data_offset != INVALID_SECTORS) {
2293 pr_err("data-offset is too big for %s\n",
2294 dn);
2295 goto release;
2296 }
2297 if (sd == sra->devs &&
2298 (errno == ENOENT || errno == E2BIG))
2299 /* Early kernel, no 'new_offset' file,
2300 * or kernel doesn't like us.
2301 * For RAID5/6 this is not fatal
2302 */
2303 return 1;
2304 pr_err("Cannot set new_offset for %s\n",
2305 dn);
2306 break;
2307 }
2308 }
2309 return err;
2310 release:
2311 return -1;
2312 }
2313
2314 static int raid10_reshape(char *container, int fd, char *devname,
2315 struct supertype *st, struct mdinfo *info,
2316 struct reshape *reshape,
2317 unsigned long long data_offset,
2318 int force, int verbose)
2319 {
2320 /* Changing raid_disks, layout, chunksize or possibly
2321 * just data_offset for a RAID10.
2322 * We must always change data_offset. We change by at least
2323 * ->min_offset_change which is the largest of the old and new
2324 * chunk sizes.
2325 * If raid_disks is increasing, then data_offset must decrease
2326 * by at least this copy size.
2327 * If raid_disks is unchanged, data_offset must increase or
2328 * decrease by at least min_offset_change but preferably by much more.
2329 * We choose half of the available space.
2330 * If raid_disks is decreasing, data_offset must increase by
2331 * at least min_offset_change. To allow of this, component_size
2332 * must be decreased by the same amount.
2333 *
2334 * So we calculate the required minimum and direction, possibly
2335 * reduce the component_size, then iterate through the devices
2336 * and set the new_data_offset.
2337 * If that all works, we set chunk_size, layout, raid_disks, and start
2338 * 'reshape'
2339 */
2340 struct mdinfo *sra;
2341 unsigned long long min;
2342 int err = 0;
2343
2344 sra = sysfs_read(fd, NULL,
2345 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK
2346 );
2347 if (!sra) {
2348 pr_err("%s: Cannot get array details from sysfs\n",
2349 devname);
2350 goto release;
2351 }
2352 min = reshape->min_offset_change;
2353
2354 if (info->delta_disks)
2355 sysfs_set_str(sra, NULL, "reshape_direction",
2356 info->delta_disks < 0 ? "backwards" : "forwards");
2357 if (info->delta_disks < 0 &&
2358 info->space_after < min) {
2359 int rv = sysfs_set_num(sra, NULL, "component_size",
2360 (sra->component_size -
2361 min)/2);
2362 if (rv) {
2363 pr_err("cannot reduce component size\n");
2364 goto release;
2365 }
2366 }
2367 err = set_new_data_offset(sra, st, devname, info->delta_disks, data_offset,
2368 min);
2369 if (err == 1) {
2370 pr_err("Cannot set new_data_offset: RAID10 reshape not\n");
2371 cont_err("supported on this kernel\n");
2372 err = -1;
2373 }
2374 if (err < 0)
2375 goto release;
2376
2377 if (!err && sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2378 err = errno;
2379 if (!err && sysfs_set_num(sra, NULL, "layout", reshape->after.layout) < 0)
2380 err = errno;
2381 if (!err && sysfs_set_num(sra, NULL, "raid_disks",
2382 info->array.raid_disks + info->delta_disks) < 0)
2383 err = errno;
2384 if (!err && sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0)
2385 err = errno;
2386 if (err) {
2387 pr_err("Cannot set array shape for %s\n",
2388 devname);
2389 if (err == EBUSY &&
2390 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
2391 cont_err(" Bitmap must be removed before"
2392 " shape can be changed\n");
2393 goto release;
2394 }
2395 sysfs_free(sra);
2396 return 0;
2397 release:
2398 sysfs_free(sra);
2399 return 1;
2400 }
2401
2402 static void get_space_after(int fd, struct supertype *st, struct mdinfo *info)
2403 {
2404 struct mdinfo *sra, *sd;
2405 /* Initialisation to silence compiler warning */
2406 unsigned long long min_space_before = 0, min_space_after = 0;
2407 int first = 1;
2408
2409 sra = sysfs_read(fd, NULL, GET_DEVS);
2410 if (!sra)
2411 return;
2412 for (sd = sra->devs; sd; sd = sd->next) {
2413 char *dn;
2414 int dfd;
2415 struct supertype *st2;
2416 struct mdinfo info2;
2417
2418 if (sd->disk.state & (1<<MD_DISK_FAULTY))
2419 continue;
2420 dn = map_dev(sd->disk.major, sd->disk.minor, 0);
2421 dfd = dev_open(dn, O_RDONLY);
2422 if (dfd < 0)
2423 break;
2424 st2 = dup_super(st);
2425 if (st2->ss->load_super(st2,dfd, NULL)) {
2426 close(dfd);
2427 free(st2);
2428 break;
2429 }
2430 close(dfd);
2431 st2->ss->getinfo_super(st2, &info2, NULL);
2432 st2->ss->free_super(st2);
2433 free(st2);
2434 if (first ||
2435 min_space_before > info2.space_before)
2436 min_space_before = info2.space_before;
2437 if (first ||
2438 min_space_after > info2.space_after)
2439 min_space_after = info2.space_after;
2440 first = 0;
2441 }
2442 if (sd == NULL && !first) {
2443 info->space_after = min_space_after;
2444 info->space_before = min_space_before;
2445 }
2446 sysfs_free(sra);
2447 }
2448
2449 static void update_cache_size(char *container, struct mdinfo *sra,
2450 struct mdinfo *info,
2451 int disks, unsigned long long blocks)
2452 {
2453 /* Check that the internal stripe cache is
2454 * large enough, or it won't work.
2455 * It must hold at least 4 stripes of the larger
2456 * chunk size
2457 */
2458 unsigned long cache;
2459 cache = max(info->array.chunk_size, info->new_chunk);
2460 cache *= 4; /* 4 stripes minimum */
2461 cache /= 512; /* convert to sectors */
2462 /* make sure there is room for 'blocks' with a bit to spare */
2463 if (cache < 16 + blocks / disks)
2464 cache = 16 + blocks / disks;
2465 cache /= (4096/512); /* Covert from sectors to pages */
2466
2467 if (sra->cache_size < cache)
2468 subarray_set_num(container, sra, "stripe_cache_size",
2469 cache+1);
2470 }
2471
2472 static int impose_reshape(struct mdinfo *sra,
2473 struct mdinfo *info,
2474 struct supertype *st,
2475 int fd,
2476 int restart,
2477 char *devname, char *container,
2478 struct reshape *reshape)
2479 {
2480 struct mdu_array_info_s array;
2481
2482 sra->new_chunk = info->new_chunk;
2483
2484 if (restart) {
2485 /* for external metadata checkpoint saved by mdmon can be lost
2486 * or missed /due to e.g. crash/. Check if md is not during
2487 * restart farther than metadata points to.
2488 * If so, this means metadata information is obsolete.
2489 */
2490 if (st->ss->external)
2491 verify_reshape_position(info, reshape->level);
2492 sra->reshape_progress = info->reshape_progress;
2493 } else {
2494 sra->reshape_progress = 0;
2495 if (reshape->after.data_disks < reshape->before.data_disks)
2496 /* start from the end of the new array */
2497 sra->reshape_progress = (sra->component_size
2498 * reshape->after.data_disks);
2499 }
2500
2501 ioctl(fd, GET_ARRAY_INFO, &array);
2502 if (info->array.chunk_size == info->new_chunk &&
2503 reshape->before.layout == reshape->after.layout &&
2504 st->ss->external == 0) {
2505 /* use SET_ARRAY_INFO but only if reshape hasn't started */
2506 array.raid_disks = reshape->after.data_disks + reshape->parity;
2507 if (!restart &&
2508 ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2509 int err = errno;
2510
2511 pr_err("Cannot set device shape for %s: %s\n",
2512 devname, strerror(errno));
2513
2514 if (err == EBUSY &&
2515 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2516 cont_err("Bitmap must be removed before"
2517 " shape can be changed\n");
2518
2519 goto release;
2520 }
2521 } else if (!restart) {
2522 /* set them all just in case some old 'new_*' value
2523 * persists from some earlier problem.
2524 */
2525 int err = 0;
2526 if (sysfs_set_num(sra, NULL, "chunk_size", info->new_chunk) < 0)
2527 err = errno;
2528 if (!err && sysfs_set_num(sra, NULL, "layout",
2529 reshape->after.layout) < 0)
2530 err = errno;
2531 if (!err && subarray_set_num(container, sra, "raid_disks",
2532 reshape->after.data_disks +
2533 reshape->parity) < 0)
2534 err = errno;
2535 if (err) {
2536 pr_err("Cannot set device shape for %s\n",
2537 devname);
2538
2539 if (err == EBUSY &&
2540 (array.state & (1<<MD_SB_BITMAP_PRESENT)))
2541 cont_err("Bitmap must be removed before"
2542 " shape can be changed\n");
2543 goto release;
2544 }
2545 }
2546 return 0;
2547 release:
2548 return -1;
2549 }
2550
2551 static int reshape_array(char *container, int fd, char *devname,
2552 struct supertype *st, struct mdinfo *info,
2553 int force, struct mddev_dev *devlist,
2554 unsigned long long data_offset,
2555 char *backup_file, int verbose, int forked,
2556 int restart, int freeze_reshape)
2557 {
2558 struct reshape reshape;
2559 int spares_needed;
2560 char *msg;
2561 int orig_level = UnSet;
2562 int odisks;
2563 int delayed;
2564
2565 struct mdu_array_info_s array;
2566 char *c;
2567
2568 struct mddev_dev *dv;
2569 int added_disks;
2570
2571 int *fdlist = NULL;
2572 unsigned long long *offsets = NULL;
2573 int d;
2574 int nrdisks;
2575 int err;
2576 unsigned long blocks;
2577 unsigned long long array_size;
2578 int done;
2579 struct mdinfo *sra = NULL;
2580
2581 /* when reshaping a RAID0, the component_size might be zero.
2582 * So try to fix that up.
2583 */
2584 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
2585 dprintf("Cannot get array information.\n");
2586 goto release;
2587 }
2588 if (array.level == 0 && info->component_size == 0) {
2589 get_dev_size(fd, NULL, &array_size);
2590 info->component_size = array_size / array.raid_disks;
2591 }
2592
2593 if (array.level == 10)
2594 /* Need space_after info */
2595 get_space_after(fd, st, info);
2596
2597 if (info->reshape_active) {
2598 int new_level = info->new_level;
2599 info->new_level = UnSet;
2600 if (info->delta_disks > 0)
2601 info->array.raid_disks -= info->delta_disks;
2602 msg = analyse_change(info, &reshape);
2603 info->new_level = new_level;
2604 if (info->delta_disks > 0)
2605 info->array.raid_disks += info->delta_disks;
2606 if (!restart)
2607 /* Make sure the array isn't read-only */
2608 ioctl(fd, RESTART_ARRAY_RW, 0);
2609 } else
2610 msg = analyse_change(info, &reshape);
2611 if (msg) {
2612 pr_err("%s\n", msg);
2613 goto release;
2614 }
2615 if (restart &&
2616 (reshape.level != info->array.level ||
2617 reshape.before.layout != info->array.layout ||
2618 reshape.before.data_disks + reshape.parity
2619 != info->array.raid_disks - max(0, info->delta_disks))) {
2620 pr_err("reshape info is not in native format -"
2621 " cannot continue.\n");
2622 goto release;
2623 }
2624
2625 if (st->ss->external && restart && (info->reshape_progress == 0)) {
2626 /* When reshape is restarted from '0', very begin of array
2627 * it is possible that for external metadata reshape and array
2628 * configuration doesn't happen.
2629 * Check if md has the same opinion, and reshape is restarted
2630 * from 0. If so, this is regular reshape start after reshape
2631 * switch in metadata to next array only.
2632 */
2633 if ((verify_reshape_position(info, reshape.level) >= 0) &&
2634 (info->reshape_progress == 0))
2635 restart = 0;
2636 }
2637 if (restart) {
2638 /* reshape already started. just skip to monitoring the reshape */
2639 if (reshape.backup_blocks == 0)
2640 return 0;
2641 goto started;
2642 }
2643 /* The container is frozen but the array may not be.
2644 * So freeze the array so spares don't get put to the wrong use
2645 * FIXME there should probably be a cleaner separation between
2646 * freeze_array and freeze_container.
2647 */
2648 sysfs_freeze_array(info);
2649 /* Check we have enough spares to not be degraded */
2650 added_disks = 0;
2651 for (dv = devlist; dv ; dv=dv->next)
2652 added_disks++;
2653 spares_needed = max(reshape.before.data_disks,
2654 reshape.after.data_disks)
2655 + reshape.parity - array.raid_disks;
2656
2657 if (!force &&
2658 info->new_level > 1 && info->array.level > 1 &&
2659 spares_needed > info->array.spare_disks + added_disks) {
2660 pr_err("Need %d spare%s to avoid degraded array,"
2661 " and only have %d.\n"
2662 " Use --force to over-ride this check.\n",
2663 spares_needed,
2664 spares_needed == 1 ? "" : "s",
2665 info->array.spare_disks + added_disks);
2666 goto release;
2667 }
2668 /* Check we have enough spares to not fail */
2669 spares_needed = max(reshape.before.data_disks,
2670 reshape.after.data_disks)
2671 - array.raid_disks;
2672 if ((info->new_level > 1 || info->new_level == 0) &&
2673 spares_needed > info->array.spare_disks +added_disks) {
2674 pr_err("Need %d spare%s to create working array,"
2675 " and only have %d.\n",
2676 spares_needed,
2677 spares_needed == 1 ? "" : "s",
2678 info->array.spare_disks + added_disks);
2679 goto release;
2680 }
2681
2682 if (reshape.level != array.level) {
2683 char *c = map_num(pers, reshape.level);
2684 int err;
2685 if (c == NULL)
2686 goto release;
2687
2688 err = sysfs_set_str(info, NULL, "level", c);
2689 if (err) {
2690 err = errno;
2691 pr_err("%s: could not set level to %s\n",
2692 devname, c);
2693 if (err == EBUSY &&
2694 (info->array.state & (1<<MD_SB_BITMAP_PRESENT)))
2695 cont_err("Bitmap must be removed"
2696 " before level can be changed\n");
2697 goto release;
2698 }
2699 if (verbose >= 0)
2700 pr_err("level of %s changed to %s\n",
2701 devname, c);
2702 orig_level = array.level;
2703 sysfs_freeze_array(info);
2704
2705 if (reshape.level > 0 && st->ss->external) {
2706 /* make sure mdmon is aware of the new level */
2707 if (mdmon_running(container))
2708 flush_mdmon(container);
2709
2710 if (!mdmon_running(container))
2711 start_mdmon(container);
2712 ping_monitor(container);
2713 if (mdmon_running(container) &&
2714 st->update_tail == NULL)
2715 st->update_tail = &st->updates;
2716 }
2717 }
2718 /* ->reshape_super might have chosen some spares from the
2719 * container that it wants to be part of the new array.
2720 * We can collect them with ->container_content and give
2721 * them to the kernel.
2722 */
2723 if (st->ss->reshape_super && st->ss->container_content) {
2724 char *subarray = strchr(info->text_version+1, '/')+1;
2725 struct mdinfo *info2 =
2726 st->ss->container_content(st, subarray);
2727 struct mdinfo *d;
2728
2729 if (info2) {
2730 sysfs_init(info2, fd, st->devnm);
2731 /* When increasing number of devices, we need to set
2732 * new raid_disks before adding these, or they might
2733 * be rejected.
2734 */
2735 if (reshape.backup_blocks &&
2736 reshape.after.data_disks > reshape.before.data_disks)
2737 subarray_set_num(container, info2, "raid_disks",
2738 reshape.after.data_disks +
2739 reshape.parity);
2740 for (d = info2->devs; d; d = d->next) {
2741 if (d->disk.state == 0 &&
2742 d->disk.raid_disk >= 0) {
2743 /* This is a spare that wants to
2744 * be part of the array.
2745 */
2746 add_disk(fd, st, info2, d);
2747 }
2748 }
2749 sysfs_free(info2);
2750 }
2751 }
2752 /* We might have been given some devices to add to the
2753 * array. Now that the array has been changed to the right
2754 * level and frozen, we can safely add them.
2755 */
2756 if (devlist)
2757 Manage_subdevs(devname, fd, devlist, verbose,
2758 0,NULL, 0);
2759
2760 if (reshape.backup_blocks == 0) {
2761 /* No restriping needed, but we might need to impose
2762 * some more changes: layout, raid_disks, chunk_size
2763 */
2764 /* read current array info */
2765 if (ioctl(fd, GET_ARRAY_INFO, &array) != 0) {
2766 dprintf("Cannot get array information.\n");
2767 goto release;
2768 }
2769 /* compare current array info with new values and if
2770 * it is different update them to new */
2771 if (info->new_layout != UnSet &&
2772 info->new_layout != array.layout) {
2773 array.layout = info->new_layout;
2774 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2775 pr_err("failed to set new layout\n");
2776 goto release;
2777 } else if (verbose >= 0)
2778 printf("layout for %s set to %d\n",
2779 devname, array.layout);
2780 }
2781 if (info->delta_disks != UnSet &&
2782 info->delta_disks != 0 &&
2783 array.raid_disks != (info->array.raid_disks + info->delta_disks)) {
2784 array.raid_disks += info->delta_disks;
2785 if (ioctl(fd, SET_ARRAY_INFO, &array) != 0) {
2786 pr_err("failed to set raid disks\n");
2787 goto release;
2788 } else if (verbose >= 0) {
2789 printf("raid_disks for %s set to %d\n",
2790 devname, array.raid_disks);
2791 }
2792 }
2793 if (info->new_chunk != 0 &&
2794 info->new_chunk != array.chunk_size) {
2795 if (sysfs_set_num(info, NULL,
2796 "chunk_size", info->new_chunk) != 0) {
2797 pr_err("failed to set chunk size\n");
2798 goto release;
2799 } else if (verbose >= 0)
2800 printf("chunk size for %s set to %d\n",
2801 devname, array.chunk_size);
2802 }
2803 unfreeze(st);
2804 return 0;
2805 }
2806
2807 /*
2808 * There are three possibilities.
2809 * 1/ The array will shrink.
2810 * We need to ensure the reshape will pause before reaching
2811 * the 'critical section'. We also need to fork and wait for
2812 * that to happen. When it does we
2813 * suspend/backup/complete/unfreeze
2814 *
2815 * 2/ The array will not change size.
2816 * This requires that we keep a backup of a sliding window
2817 * so that we can restore data after a crash. So we need
2818 * to fork and monitor progress.
2819 * In future we will allow the data_offset to change, so
2820 * a sliding backup becomes unnecessary.
2821 *
2822 * 3/ The array will grow. This is relatively easy.
2823 * However the kernel's restripe routines will cheerfully
2824 * overwrite some early data before it is safe. So we
2825 * need to make a backup of the early parts of the array
2826 * and be ready to restore it if rebuild aborts very early.
2827 * For externally managed metadata, we still need a forked
2828 * child to monitor the reshape and suspend IO over the region
2829 * that is being reshaped.
2830 *
2831 * We backup data by writing it to one spare, or to a
2832 * file which was given on command line.
2833 *
2834 * In each case, we first make sure that storage is available
2835 * for the required backup.
2836 * Then we:
2837 * - request the shape change.
2838 * - fork to handle backup etc.
2839 */
2840 /* Check that we can hold all the data */
2841 get_dev_size(fd, NULL, &array_size);
2842 if (reshape.new_size < (array_size/512)) {
2843 pr_err("this change will reduce the size of the array.\n"
2844 " use --grow --array-size first to truncate array.\n"
2845 " e.g. mdadm --grow %s --array-size %llu\n",
2846 devname, reshape.new_size/2);
2847 goto release;
2848 }
2849
2850 started:
2851
2852 if (array.level == 10) {
2853 /* Reshaping RAID10 does not require any data backup by
2854 * user-space. Instead it requires that the data_offset
2855 * is changed to avoid the need for backup.
2856 * So this is handled very separately
2857 */
2858 if (restart)
2859 /* Nothing to do. */
2860 return 0;
2861 return raid10_reshape(container, fd, devname, st, info,
2862 &reshape, data_offset,
2863 force, verbose);
2864 }
2865 sra = sysfs_read(fd, NULL,
2866 GET_COMPONENT|GET_DEVS|GET_OFFSET|GET_STATE|GET_CHUNK|
2867 GET_CACHE);
2868 if (!sra) {
2869 pr_err("%s: Cannot get array details from sysfs\n",
2870 devname);
2871 goto release;
2872 }
2873
2874 if (!backup_file)
2875 switch(set_new_data_offset(sra, st, devname, info->delta_disks,
2876 data_offset,
2877 reshape.min_offset_change)) {
2878 case -1:
2879 goto release;
2880 case 0:
2881 /* Updated data_offset, so it's easy now */
2882 update_cache_size(container, sra, info,
2883 min(reshape.before.data_disks,
2884 reshape.after.data_disks),
2885 reshape.backup_blocks);
2886
2887 /* Right, everything seems fine. Let's kick things off.
2888 */
2889 sync_metadata(st);
2890
2891 if (impose_reshape(sra, info, st, fd, restart,
2892 devname, container, &reshape) < 0)
2893 goto release;
2894 if (sysfs_set_str(sra, NULL, "sync_action", "reshape") < 0) {
2895 pr_err("Failed to initiate reshape!\n");
2896 goto release;
2897 }
2898
2899 return 0;
2900 case 1: /* Couldn't set data_offset, try the old way */
2901 if (data_offset != INVALID_SECTORS) {
2902 pr_err("Cannot update data_offset on this array\n");
2903 goto release;
2904 }
2905 break;
2906 }
2907
2908 /* Decide how many blocks (sectors) for a reshape
2909 * unit. The number we have so far is just a minimum
2910 */
2911 blocks = reshape.backup_blocks;
2912 if (reshape.before.data_disks ==
2913 reshape.after.data_disks) {
2914 /* Make 'blocks' bigger for better throughput, but
2915 * not so big that we reject it below.
2916 * Try for 16 megabytes
2917 */
2918 while (blocks * 32 < sra->component_size &&
2919 blocks < 16*1024*2)
2920 blocks *= 2;
2921 } else
2922 pr_err("Need to backup %luK of critical "
2923 "section..\n", blocks/2);
2924
2925 if (blocks >= sra->component_size/2) {
2926 pr_err("%s: Something wrong"
2927 " - reshape aborted\n",
2928 devname);
2929 goto release;
2930 }
2931
2932 /* Now we need to open all these devices so we can read/write.
2933 */
2934 nrdisks = max(reshape.before.data_disks,
2935 reshape.after.data_disks) + reshape.parity
2936 + sra->array.spare_disks;
2937 fdlist = xcalloc((1+nrdisks), sizeof(int));
2938 offsets = xcalloc((1+nrdisks), sizeof(offsets[0]));
2939
2940 odisks = reshape.before.data_disks + reshape.parity;
2941 d = reshape_prepare_fdlist(devname, sra, odisks,
2942 nrdisks, blocks, backup_file,
2943 fdlist, offsets);
2944 if (d < 0) {
2945 goto release;
2946 }
2947 if ((st->ss->manage_reshape == NULL) ||
2948 (st->ss->recover_backup == NULL)) {
2949 if (backup_file == NULL) {
2950 if (reshape.after.data_disks <=
2951 reshape.before.data_disks) {
2952 pr_err("%s: Cannot grow - "
2953 "need backup-file\n", devname);
2954 goto release;
2955 } else if (sra->array.spare_disks == 0) {
2956 pr_err("%s: Cannot grow - "
2957 "need a spare or backup-file to backup "
2958 "critical section\n", devname);
2959 goto release;
2960 }
2961 } else {
2962 if (!reshape_open_backup_file(backup_file, fd, devname,
2963 (signed)blocks,
2964 fdlist+d, offsets+d,
2965 restart)) {
2966 goto release;
2967 }
2968 d++;
2969 }
2970 }
2971
2972 update_cache_size(container, sra, info,
2973 min(reshape.before.data_disks, reshape.after.data_disks),
2974 blocks);
2975
2976 /* Right, everything seems fine. Let's kick things off.
2977 * If only changing raid_disks, use ioctl, else use
2978 * sysfs.
2979 */
2980 sync_metadata(st);
2981
2982 if (impose_reshape(sra, info, st, fd, restart,
2983 devname, container, &reshape) < 0)
2984 goto release;
2985
2986 err = start_reshape(sra, restart, reshape.before.data_disks,
2987 reshape.after.data_disks);
2988 if (err) {
2989 pr_err("Cannot %s reshape for %s\n",
2990 restart ? "continue" : "start",
2991 devname);
2992 goto release;
2993 }
2994 if (restart)
2995 sysfs_set_str(sra, NULL, "array_state", "active");
2996 if (freeze_reshape) {
2997 free(fdlist);
2998 free(offsets);
2999 sysfs_free(sra);
3000 pr_err("Reshape has to be continued from"
3001 " location %llu when root filesystem has been mounted.\n",
3002 sra->reshape_progress);
3003 return 1;
3004 }
3005
3006 /* Now we just need to kick off the reshape and watch, while
3007 * handling backups of the data...
3008 * This is all done by a forked background process.
3009 */
3010 switch(forked ? 0 : fork()) {
3011 case -1:
3012 pr_err("Cannot run child to monitor reshape: %s\n",
3013 strerror(errno));
3014 abort_reshape(sra);
3015 goto release;
3016 default:
3017 free(fdlist);
3018 free(offsets);
3019 sysfs_free(sra);
3020 return 0;
3021 case 0:
3022 map_fork();
3023 break;
3024 }
3025
3026 /* If another array on the same devices is busy, the
3027 * reshape will wait for them. This would mean that
3028 * the first section that we suspend will stay suspended
3029 * for a long time. So check on that possibility
3030 * by looking for "DELAYED" in /proc/mdstat, and if found,
3031 * wait a while
3032 */
3033 do {
3034 struct mdstat_ent *mds, *m;
3035 delayed = 0;
3036 mds = mdstat_read(0, 0);
3037 for (m = mds; m; m = m->next)
3038 if (strcmp(m->devnm, sra->sys_name) == 0) {
3039 if (m->resync &&
3040 m->percent == RESYNC_DELAYED)
3041 delayed = 1;
3042 if (m->resync == 0)
3043 /* Haven't started the reshape thread
3044 * yet, wait a bit
3045 */
3046 delayed = 2;
3047 break;
3048 }
3049 free_mdstat(mds);
3050 if (delayed == 1 && get_linux_version() < 3007000) {
3051 pr_err("Reshape is delayed, but cannot wait carefully with this kernel.\n"
3052 " You might experience problems until other reshapes complete.\n");
3053 delayed = 0;
3054 }
3055 if (delayed)
3056 sleep(30 - (delayed-1) * 25);
3057 } while (delayed);
3058
3059 close(fd);
3060 if (check_env("MDADM_GROW_VERIFY"))
3061 fd = open(devname, O_RDONLY | O_DIRECT);
3062 else
3063 fd = -1;
3064 mlockall(MCL_FUTURE);
3065
3066 if (st->ss->external) {
3067 /* metadata handler takes it from here */
3068 done = st->ss->manage_reshape(
3069 fd, sra, &reshape, st, blocks,
3070 fdlist, offsets,
3071 d - odisks, fdlist+odisks,
3072 offsets+odisks);
3073 } else
3074 done = child_monitor(
3075 fd, sra, &reshape, st, blocks,
3076 fdlist, offsets,
3077 d - odisks, fdlist+odisks,
3078 offsets+odisks);
3079
3080 free(fdlist);
3081 free(offsets);
3082
3083 if (backup_file && done)
3084 unlink(backup_file);
3085 if (!done) {
3086 abort_reshape(sra);
3087 goto out;
3088 }
3089
3090 if (!st->ss->external &&
3091 !(reshape.before.data_disks != reshape.after.data_disks
3092 && info->custom_array_size) &&
3093 info->new_level == reshape.level &&
3094 !forked) {
3095 /* no need to wait for the reshape to finish as
3096 * there is nothing more to do.
3097 */
3098 sysfs_free(sra);
3099 exit(0);
3100 }
3101 wait_reshape(sra);
3102
3103 if (st->ss->external) {
3104 /* Re-load the metadata as much could have changed */
3105 int cfd = open_dev(st->container_devnm);
3106 if (cfd >= 0) {
3107 flush_mdmon(container);
3108 st->ss->free_super(st);
3109 st->ss->load_container(st, cfd, container);
3110 close(cfd);
3111 }
3112 }
3113
3114 /* set new array size if required customer_array_size is used
3115 * by this metadata.
3116 */
3117 if (reshape.before.data_disks !=
3118 reshape.after.data_disks &&
3119 info->custom_array_size)
3120 set_array_size(st, info, info->text_version);
3121
3122 if (info->new_level != reshape.level) {
3123
3124 c = map_num(pers, info->new_level);
3125 if (c) {
3126 err = sysfs_set_str(sra, NULL, "level", c);
3127 if (err)
3128 pr_err("%s: could not set level "
3129 "to %s\n", devname, c);
3130 }
3131 if (info->new_level == 0)
3132 st->update_tail = NULL;
3133 }
3134 out:
3135 sysfs_free(sra);
3136 if (forked)
3137 return 0;
3138 unfreeze(st);
3139 exit(0);
3140
3141 release:
3142 free(fdlist);
3143 free(offsets);
3144 if (orig_level != UnSet && sra) {
3145 c = map_num(pers, orig_level);
3146 if (c && sysfs_set_str(sra, NULL, "level", c) == 0)
3147 pr_err("aborting level change\n");
3148 }
3149 sysfs_free(sra);
3150 if (!forked)
3151 unfreeze(st);
3152 return 1;
3153 }
3154
3155 /* mdfd handle is passed to be closed in child process (after fork).
3156 */
3157 int reshape_container(char *container, char *devname,
3158 int mdfd,
3159 struct supertype *st,
3160 struct mdinfo *info,
3161 int force,
3162 char *backup_file,
3163 int verbose, int restart, int freeze_reshape)
3164 {
3165 struct mdinfo *cc = NULL;
3166 int rv = restart;
3167 char last_devnm[32] = "";
3168
3169 /* component_size is not meaningful for a container,
3170 * so pass '0' meaning 'no change'
3171 */
3172 if (!restart &&
3173 reshape_super(st, 0, info->new_level,
3174 info->new_layout, info->new_chunk,
3175 info->array.raid_disks, info->delta_disks,
3176 backup_file, devname, APPLY_METADATA_CHANGES,
3177 verbose)) {
3178 unfreeze(st);
3179 return 1;
3180 }
3181
3182 sync_metadata(st);
3183
3184 /* ping monitor to be sure that update is on disk
3185 */
3186 ping_monitor(container);
3187
3188 switch (fork()) {
3189 case -1: /* error */
3190 perror("Cannot fork to complete reshape\n");
3191 unfreeze(st);
3192 return 1;
3193 default: /* parent */
3194 if (!freeze_reshape)
3195 printf(Name ": multi-array reshape continues"
3196 " in background\n");
3197 return 0;
3198 case 0: /* child */
3199 map_fork();
3200 break;
3201 }
3202
3203 /* close unused handle in child process
3204 */
3205 if (mdfd > -1)
3206 close(mdfd);
3207
3208 while(1) {
3209 /* For each member array with reshape_active,
3210 * we need to perform the reshape.
3211 * We pick the first array that needs reshaping and
3212 * reshape it. reshape_array() will re-read the metadata
3213 * so the next time through a different array should be
3214 * ready for reshape.
3215 * It is possible that the 'different' array will not
3216 * be assembled yet. In that case we simple exit.
3217 * When it is assembled, the mdadm which assembles it
3218 * will take over the reshape.
3219 */
3220 struct mdinfo *content;
3221 int fd;
3222 struct mdstat_ent *mdstat;
3223 char *adev;
3224 int devid;
3225
3226 sysfs_free(cc);
3227
3228 cc = st->ss->container_content(st, NULL);
3229
3230 for (content = cc; content ; content = content->next) {
3231 char *subarray;
3232 if (!content->reshape_active)
3233 continue;
3234
3235 subarray = strchr(content->text_version+1, '/')+1;
3236 mdstat = mdstat_by_subdev(subarray, container);
3237 if (!mdstat)
3238 continue;
3239 if (mdstat->active == 0) {
3240 pr_err("Skipping inactive array %s.\n",
3241 mdstat->devnm);
3242 free_mdstat(mdstat);
3243 mdstat = NULL;
3244 continue;
3245 }
3246 break;
3247 }
3248 if (!content)
3249 break;
3250
3251 devid = devnm2devid(mdstat->devnm);
3252 adev = map_dev(major(devid), minor(devid), 0);
3253 if (!adev)
3254 adev = content->text_version;
3255
3256 fd = open_dev(mdstat->devnm);
3257 if (fd < 0) {
3258 printf(Name ": Device %s cannot be opened for reshape.",
3259 adev);
3260 break;
3261 }
3262
3263 if (strcmp(last_devnm, mdstat->devnm) == 0) {
3264 /* Do not allow for multiple reshape_array() calls for
3265 * the same array.
3266 * It can happen when reshape_array() returns without
3267 * error, when reshape is not finished (wrong reshape
3268 * starting/continuation conditions). Mdmon doesn't
3269 * switch to next array in container and reentry
3270 * conditions for the same array occur.
3271 * This is possibly interim until the behaviour of
3272 * reshape_array is resolved().
3273 */
3274 printf(Name ": Multiple reshape execution detected for "
3275 "device %s.", adev);
3276 close(fd);
3277 break;
3278 }
3279 strcpy(last_devnm, mdstat->devnm);
3280
3281 sysfs_init(content, fd, mdstat->devnm);
3282
3283 if (mdmon_running(container))
3284 flush_mdmon(container);
3285
3286 rv = reshape_array(container, fd, adev, st,
3287 content, force, NULL, 0ULL,
3288 backup_file, verbose, 1, restart,
3289 freeze_reshape);
3290 close(fd);
3291
3292 if (freeze_reshape) {
3293 sysfs_free(cc);
3294 exit(0);
3295 }
3296
3297 restart = 0;
3298 if (rv)
3299 break;
3300
3301 if (mdmon_running(container))
3302 flush_mdmon(container);
3303 }
3304 if (!rv)
3305 unfreeze(st);
3306 sysfs_free(cc);
3307 exit(0);
3308 }
3309
3310 /*
3311 * We run a child process in the background which performs the following
3312 * steps:
3313 * - wait for resync to reach a certain point
3314 * - suspend io to the following section
3315 * - backup that section
3316 * - allow resync to proceed further
3317 * - resume io
3318 * - discard the backup.
3319 *
3320 * When are combined in slightly different ways in the three cases.
3321 * Grow:
3322 * - suspend/backup/allow/wait/resume/discard
3323 * Shrink:
3324 * - allow/wait/suspend/backup/allow/wait/resume/discard
3325 * same-size:
3326 * - wait/resume/discard/suspend/backup/allow
3327 *
3328 * suspend/backup/allow always come together
3329 * wait/resume/discard do too.
3330 * For the same-size case we have two backups to improve flow.
3331 *
3332 */
3333
3334 int progress_reshape(struct mdinfo *info, struct reshape *reshape,
3335 unsigned long long backup_point,
3336 unsigned long long wait_point,
3337 unsigned long long *suspend_point,
3338 unsigned long long *reshape_completed)
3339 {
3340 /* This function is called repeatedly by the reshape manager.
3341 * It determines how much progress can safely be made and allows
3342 * that progress.
3343 * - 'info' identifies the array and particularly records in
3344 * ->reshape_progress the metadata's knowledge of progress
3345 * This is a sector offset from the start of the array
3346 * of the next array block to be relocated. This number
3347 * may increase from 0 or decrease from array_size, depending
3348 * on the type of reshape that is happening.
3349 * Note that in contrast, 'sync_completed' is a block count of the
3350 * reshape so far. It gives the distance between the start point
3351 * (head or tail of device) and the next place that data will be
3352 * written. It always increases.
3353 * - 'reshape' is the structure created by analyse_change
3354 * - 'backup_point' shows how much the metadata manager has backed-up
3355 * data. For reshapes with increasing progress, it is the next address
3356 * to be backed up, previous addresses have been backed-up. For
3357 * decreasing progress, it is the earliest address that has been
3358 * backed up - later address are also backed up.
3359 * So addresses between reshape_progress and backup_point are
3360 * backed up providing those are in the 'correct' order.
3361 * - 'wait_point' is an array address. When reshape_completed
3362 * passes this point, progress_reshape should return. It might
3363 * return earlier if it determines that ->reshape_progress needs
3364 * to be updated or further backup is needed.
3365 * - suspend_point is maintained by progress_reshape and the caller
3366 * should not touch it except to initialise to zero.
3367 * It is an array address and it only increases in 2.6.37 and earlier.
3368 * This makes it difficult to handle reducing reshapes with
3369 * external metadata.
3370 * However: it is similar to backup_point in that it records the
3371 * other end of a suspended region from reshape_progress.
3372 * it is moved to extend the region that is safe to backup and/or
3373 * reshape
3374 * - reshape_completed is read from sysfs and returned. The caller
3375 * should copy this into ->reshape_progress when it has reason to
3376 * believe that the metadata knows this, and any backup outside this
3377 * has been erased.
3378 *
3379 * Return value is:
3380 * 1 if more data from backup_point - but only as far as suspend_point,
3381 * should be backed up
3382 * 0 if things are progressing smoothly
3383 * -1 if the reshape is finished because it is all done,
3384 * -2 if the reshape is finished due to an error.
3385 */
3386
3387 int advancing = (reshape->after.data_disks
3388 >= reshape->before.data_disks);
3389 unsigned long long need_backup; /* All data between start of array and
3390 * here will at some point need to
3391 * be backed up.
3392 */
3393 unsigned long long read_offset, write_offset;
3394 unsigned long long write_range;
3395 unsigned long long max_progress, target, completed;
3396 unsigned long long array_size = (info->component_size
3397 * reshape->before.data_disks);
3398 int fd;
3399 char buf[20];
3400
3401 /* First, we unsuspend any region that is now known to be safe.
3402 * If suspend_point is on the 'wrong' side of reshape_progress, then
3403 * we don't have or need suspension at the moment. This is true for
3404 * native metadata when we don't need to back-up.
3405 */
3406 if (advancing) {
3407 if (info->reshape_progress <= *suspend_point)
3408 sysfs_set_num(info, NULL, "suspend_lo",
3409 info->reshape_progress);
3410 } else {
3411 /* Note: this won't work in 2.6.37 and before.
3412 * Something somewhere should make sure we don't need it!
3413 */
3414 if (info->reshape_progress >= *suspend_point)
3415 sysfs_set_num(info, NULL, "suspend_hi",
3416 info->reshape_progress);
3417 }
3418
3419 /* Now work out how far it is safe to progress.
3420 * If the read_offset for ->reshape_progress is less than
3421 * 'blocks' beyond the write_offset, we can only progress as far
3422 * as a backup.
3423 * Otherwise we can progress until the write_offset for the new location
3424 * reaches (within 'blocks' of) the read_offset at the current location.
3425 * However that region must be suspended unless we are using native
3426 * metadata.
3427 * If we need to suspend more, we limit it to 128M per device, which is
3428 * rather arbitrary and should be some time-based calculation.
3429 */
3430 read_offset = info->reshape_progress / reshape->before.data_disks;
3431 write_offset = info->reshape_progress / reshape->after.data_disks;
3432 write_range = info->new_chunk/512;
3433 if (reshape->before.data_disks == reshape->after.data_disks)
3434 need_backup = array_size;
3435 else
3436 need_backup = reshape->backup_blocks;
3437 if (advancing) {
3438 if (read_offset < write_offset + write_range)
3439 max_progress = backup_point;
3440 else
3441 max_progress =
3442 read_offset *
3443 reshape->after.data_disks;
3444 } else {
3445 if (read_offset > write_offset - write_range)
3446 /* Can only progress as far as has been backed up,
3447 * which must be suspended */
3448 max_progress = backup_point;
3449 else if (info->reshape_progress <= need_backup)
3450 max_progress = backup_point;
3451 else {
3452 if (info->array.major_version >= 0)
3453 /* Can progress until backup is needed */
3454 max_progress = need_backup;
3455 else {
3456 /* Can progress until metadata update is required */
3457 max_progress =
3458 read_offset *
3459 reshape->after.data_disks;
3460 /* but data must be suspended */
3461 if (max_progress < *suspend_point)
3462 max_progress = *suspend_point;
3463 }
3464 }
3465 }
3466
3467 /* We know it is safe to progress to 'max_progress' providing
3468 * it is suspended or we are using native metadata.
3469 * Consider extending suspend_point 128M per device if it
3470 * is less than 64M per device beyond reshape_progress.
3471 * But always do a multiple of 'blocks'
3472 * FIXME this is too big - it takes to long to complete
3473 * this much.
3474 */
3475 target = 64*1024*2 * min(reshape->before.data_disks,
3476 reshape->after.data_disks);
3477 target /= reshape->backup_blocks;
3478 if (target < 2)
3479 target = 2;
3480 target *= reshape->backup_blocks;
3481
3482 /* For externally managed metadata we always need to suspend IO to
3483 * the area being reshaped so we regularly push suspend_point forward.
3484 * For native metadata we only need the suspend if we are going to do
3485 * a backup.
3486 */
3487 if (advancing) {
3488 if ((need_backup > info->reshape_progress
3489 || info->array.major_version < 0) &&
3490 *suspend_point < info->reshape_progress + target) {
3491 if (need_backup < *suspend_point + 2 * target)
3492 *suspend_point = need_backup;
3493 else if (*suspend_point + 2 * target < array_size)
3494 *suspend_point += 2 * target;
3495 else
3496 *suspend_point = array_size;
3497 sysfs_set_num(info, NULL, "suspend_hi", *suspend_point);
3498 if (max_progress > *suspend_point)
3499 max_progress = *suspend_point;
3500 }
3501 } else {
3502 if (info->array.major_version >= 0) {
3503 /* Only need to suspend when about to backup */
3504 if (info->reshape_progress < need_backup * 2 &&
3505 *suspend_point > 0) {
3506 *suspend_point = 0;
3507 sysfs_set_num(info, NULL, "suspend_lo", 0);
3508 sysfs_set_num(info, NULL, "suspend_hi", need_backup);
3509 }
3510 } else {
3511 /* Need to suspend continually */
3512 if (info->reshape_progress < *suspend_point)
3513 *suspend_point = info->reshape_progress;
3514 if (*suspend_point + target < info->reshape_progress)
3515 /* No need to move suspend region yet */;
3516 else {
3517 if (*suspend_point >= 2 * target)
3518 *suspend_point -= 2 * target;
3519 else
3520 *suspend_point = 0;
3521 sysfs_set_num(info, NULL, "suspend_lo",
3522 *suspend_point);
3523 }
3524 if (max_progress < *suspend_point)
3525 max_progress = *suspend_point;
3526 }
3527 }
3528
3529 /* now set sync_max to allow that progress. sync_max, like
3530 * sync_completed is a count of sectors written per device, so
3531 * we find the difference between max_progress and the start point,
3532 * and divide that by after.data_disks to get a sync_max
3533 * number.
3534 * At the same time we convert wait_point to a similar number
3535 * for comparing against sync_completed.
3536 */
3537 /* scale down max_progress to per_disk */
3538 max_progress /= reshape->after.data_disks;
3539 /* Round to chunk size as some kernels give an erroneously high number */
3540 max_progress /= info->new_chunk/512;
3541 max_progress *= info->new_chunk/512;
3542 /* And round to old chunk size as the kernel wants that */
3543 max_progress /= info->array.chunk_size/512;
3544 max_progress *= info->array.chunk_size/512;
3545 /* Limit progress to the whole device */
3546 if (max_progress > info->component_size)
3547 max_progress = info->component_size;
3548 wait_point /= reshape->after.data_disks;
3549 if (!advancing) {
3550 /* switch from 'device offset' to 'processed block count' */
3551 max_progress = info->component_size - max_progress;
3552 wait_point = info->component_size - wait_point;
3553 }
3554
3555 sysfs_set_num(info, NULL, "sync_max", max_progress);
3556
3557 /* Now wait. If we have already reached the point that we were
3558 * asked to wait to, don't wait at all, else wait for any change.
3559 * We need to select on 'sync_completed' as that is the place that
3560 * notifications happen, but we are really interested in
3561 * 'reshape_position'
3562 */
3563 fd = sysfs_get_fd(info, NULL, "sync_completed");
3564 if (fd < 0)
3565 goto check_progress;
3566
3567 if (sysfs_fd_get_ll(fd, &completed) < 0)
3568 goto check_progress;
3569
3570 while (completed < max_progress && completed < wait_point) {
3571 /* Check that sync_action is still 'reshape' to avoid
3572 * waiting forever on a dead array
3573 */
3574 char action[20];
3575 fd_set rfds;
3576 if (sysfs_get_str(info, NULL, "sync_action",
3577 action, 20) <= 0 ||
3578 strncmp(action, "reshape", 7) != 0)
3579 break;
3580 /* Some kernels reset 'sync_completed' to zero
3581 * before setting 'sync_action' to 'idle'.
3582 * So we need these extra tests.
3583 */
3584 if (completed == 0 && advancing
3585 && info->reshape_progress > 0)
3586 break;
3587 if (completed == 0 && !advancing
3588 && info->reshape_progress < (info->component_size
3589 * reshape->after.data_disks))
3590 break;
3591 FD_ZERO(&rfds);
3592 FD_SET(fd, &rfds);
3593 select(fd+1, NULL, NULL, &rfds, NULL);
3594 if (sysfs_fd_get_ll(fd, &completed) < 0)
3595 goto check_progress;
3596 }
3597 /* Some kernels reset 'sync_completed' to zero,
3598 * we need to have real point we are in md
3599 */
3600 if (completed == 0)
3601 completed = max_progress;
3602
3603 /* some kernels can give an incorrectly high 'completed' number */
3604 completed /= (info->new_chunk/512);
3605 completed *= (info->new_chunk/512);
3606 /* Convert 'completed' back in to a 'progress' number */
3607 completed *= reshape->after.data_disks;
3608 if (!advancing) {
3609 completed = info->component_size * reshape->after.data_disks
3610 - completed;
3611 }
3612 *reshape_completed = completed;
3613
3614 close(fd);
3615
3616 /* We return the need_backup flag. Caller will decide
3617 * how much - a multiple of ->backup_blocks up to *suspend_point
3618 */
3619 if (advancing)
3620 return need_backup > info->reshape_progress;
3621 else
3622 return need_backup >= info->reshape_progress;
3623
3624 check_progress:
3625 /* if we couldn't read a number from sync_completed, then
3626 * either the reshape did complete, or it aborted.
3627 * We can tell which by checking for 'none' in reshape_position.
3628 * If it did abort, then it might immediately restart if it
3629 * it was just a device failure that leaves us degraded but
3630 * functioning.
3631 */
3632 strcpy(buf, "hi");
3633 if (sysfs_get_str(info, NULL, "reshape_position", buf, sizeof(buf)) < 0
3634 || strncmp(buf, "none", 4) != 0) {
3635 /* The abort might only be temporary. Wait up to 10
3636 * seconds for fd to contain a valid number again.
3637 */
3638 struct timeval tv;
3639 int rv = -2;
3640 tv.tv_sec = 10;
3641 tv.tv_usec = 0;
3642 while (fd >= 0 && rv < 0 && tv.tv_sec > 0) {
3643 fd_set rfds;
3644 FD_ZERO(&rfds);
3645 FD_SET(fd, &rfds);
3646 if (select(fd+1, NULL, NULL, &rfds, &tv) != 1)
3647 break;
3648 switch (sysfs_fd_get_ll(fd, &completed)) {
3649 case 0:
3650 /* all good again */
3651 rv = 1;
3652 break;
3653 case -2: /* read error - abort */
3654 tv.tv_sec = 0;
3655 break;
3656 }
3657 }
3658 if (fd >= 0)
3659 close(fd);
3660 return rv; /* abort */
3661 } else {
3662 /* Maybe racing with array shutdown - check state */
3663 if (fd >= 0)
3664 close(fd);
3665 if (sysfs_get_str(info, NULL, "array_state", buf, sizeof(buf)) < 0
3666 || strncmp(buf, "inactive", 8) == 0
3667 || strncmp(buf, "clear",5) == 0)
3668 return -2; /* abort */
3669 return -1; /* complete */
3670 }
3671 }
3672
3673 /* FIXME return status is never checked */
3674 static int grow_backup(struct mdinfo *sra,
3675 unsigned long long offset, /* per device */
3676 unsigned long stripes, /* per device, in old chunks */
3677 int *sources, unsigned long long *offsets,
3678 int disks, int chunk, int level, int layout,
3679 int dests, int *destfd, unsigned long long *destoffsets,
3680 int part, int *degraded,
3681 char *buf)
3682 {
3683 /* Backup 'blocks' sectors at 'offset' on each device of the array,
3684 * to storage 'destfd' (offset 'destoffsets'), after first
3685 * suspending IO. Then allow resync to continue
3686 * over the suspended section.
3687 * Use part 'part' of the backup-super-block.
3688 */
3689 int odata = disks;
3690 int rv = 0;
3691 int i;
3692 unsigned long long ll;
3693 int new_degraded;
3694 //printf("offset %llu\n", offset);
3695 if (level >= 4)
3696 odata--;
3697 if (level == 6)
3698 odata--;
3699
3700 /* Check that array hasn't become degraded, else we might backup the wrong data */
3701 if (sysfs_get_ll(sra, NULL, "degraded", &ll) < 0)
3702 return -1; /* FIXME this error is ignored */
3703 new_degraded = (int)ll;
3704 if (new_degraded != *degraded) {
3705 /* check each device to ensure it is still working */
3706 struct mdinfo *sd;
3707 for (sd = sra->devs ; sd ; sd = sd->next) {
3708 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3709 continue;
3710 if (sd->disk.state & (1<<MD_DISK_SYNC)) {
3711 char sbuf[20];
3712 if (sysfs_get_str(sra, sd, "state", sbuf, 20) < 0 ||
3713 strstr(sbuf, "faulty") ||
3714 strstr(sbuf, "in_sync") == NULL) {
3715 /* this device is dead */
3716 sd->disk.state = (1<<MD_DISK_FAULTY);
3717 if (sd->disk.raid_disk >= 0 &&
3718 sources[sd->disk.raid_disk] >= 0) {
3719 close(sources[sd->disk.raid_disk]);
3720 sources[sd->disk.raid_disk] = -1;
3721 }
3722 }
3723 }
3724 }
3725 *degraded = new_degraded;
3726 }
3727 if (part) {
3728 bsb.arraystart2 = __cpu_to_le64(offset * odata);
3729 bsb.length2 = __cpu_to_le64(stripes * (chunk/512) * odata);
3730 } else {
3731 bsb.arraystart = __cpu_to_le64(offset * odata);
3732 bsb.length = __cpu_to_le64(stripes * (chunk/512) * odata);
3733 }
3734 if (part)
3735 bsb.magic[15] = '2';
3736 for (i = 0; i < dests; i++)
3737 if (part)
3738 lseek64(destfd[i], destoffsets[i] + __le64_to_cpu(bsb.devstart2)*512, 0);
3739 else
3740 lseek64(destfd[i], destoffsets[i], 0);
3741
3742 rv = save_stripes(sources, offsets,
3743 disks, chunk, level, layout,
3744 dests, destfd,
3745 offset*512*odata, stripes * chunk * odata,
3746 buf);
3747
3748 if (rv)
3749 return rv;
3750 bsb.mtime = __cpu_to_le64(time(0));
3751 for (i = 0; i < dests; i++) {
3752 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3753
3754 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3755 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3756 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3757 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3758
3759 rv = -1;
3760 if ((unsigned long long)lseek64(destfd[i], destoffsets[i] - 4096, 0)
3761 != destoffsets[i] - 4096)
3762 break;
3763 if (write(destfd[i], &bsb, 512) != 512)
3764 break;
3765 if (destoffsets[i] > 4096) {
3766 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]+stripes*chunk*odata, 0) !=
3767 destoffsets[i]+stripes*chunk*odata)
3768 break;
3769 if (write(destfd[i], &bsb, 512) != 512)
3770 break;
3771 }
3772 fsync(destfd[i]);
3773 rv = 0;
3774 }
3775
3776 return rv;
3777 }
3778
3779 /* in 2.6.30, the value reported by sync_completed can be
3780 * less that it should be by one stripe.
3781 * This only happens when reshape hits sync_max and pauses.
3782 * So allow wait_backup to either extent sync_max further
3783 * than strictly necessary, or return before the
3784 * sync has got quite as far as we would really like.
3785 * This is what 'blocks2' is for.
3786 * The various caller give appropriate values so that
3787 * every works.
3788 */
3789 /* FIXME return value is often ignored */
3790 static int forget_backup(int dests, int *destfd,
3791 unsigned long long *destoffsets,
3792 int part)
3793 {
3794 /*
3795 * Erase backup 'part' (which is 0 or 1)
3796 */
3797 int i;
3798 int rv;
3799
3800 if (part) {
3801 bsb.arraystart2 = __cpu_to_le64(0);
3802 bsb.length2 = __cpu_to_le64(0);
3803 } else {
3804 bsb.arraystart = __cpu_to_le64(0);
3805 bsb.length = __cpu_to_le64(0);
3806 }
3807 bsb.mtime = __cpu_to_le64(time(0));
3808 rv = 0;
3809 for (i = 0; i < dests; i++) {
3810 bsb.devstart = __cpu_to_le64(destoffsets[i]/512);
3811 bsb.sb_csum = bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb));
3812 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0)
3813 bsb.sb_csum2 = bsb_csum((char*)&bsb,
3814 ((char*)&bsb.sb_csum2)-((char*)&bsb));
3815 if ((unsigned long long)lseek64(destfd[i], destoffsets[i]-4096, 0) !=
3816 destoffsets[i]-4096)
3817 rv = -1;
3818 if (rv == 0 &&
3819 write(destfd[i], &bsb, 512) != 512)
3820 rv = -1;
3821 fsync(destfd[i]);
3822 }
3823 return rv;
3824 }
3825
3826 static void fail(char *msg)
3827 {
3828 int rv;
3829 rv = (write(2, msg, strlen(msg)) != (int)strlen(msg));
3830 rv |= (write(2, "\n", 1) != 1);
3831 exit(rv ? 1 : 2);
3832 }
3833
3834 static char *abuf, *bbuf;
3835 static unsigned long long abuflen;
3836 static void validate(int afd, int bfd, unsigned long long offset)
3837 {
3838 /* check that the data in the backup against the array.
3839 * This is only used for regression testing and should not
3840 * be used while the array is active
3841 */
3842 if (afd < 0)
3843 return;
3844 lseek64(bfd, offset - 4096, 0);
3845 if (read(bfd, &bsb2, 512) != 512)
3846 fail("cannot read bsb");
3847 if (bsb2.sb_csum != bsb_csum((char*)&bsb2,
3848 ((char*)&bsb2.sb_csum)-((char*)&bsb2)))
3849 fail("first csum bad");
3850 if (memcmp(bsb2.magic, "md_backup_data", 14) != 0)
3851 fail("magic is bad");
3852 if (memcmp(bsb2.magic, "md_backup_data-2", 16) == 0 &&
3853 bsb2.sb_csum2 != bsb_csum((char*)&bsb2,
3854 ((char*)&bsb2.sb_csum2)-((char*)&bsb2)))
3855 fail("second csum bad");
3856
3857 if (__le64_to_cpu(bsb2.devstart)*512 != offset)
3858 fail("devstart is wrong");
3859
3860 if (bsb2.length) {
3861 unsigned long long len = __le64_to_cpu(bsb2.length)*512;
3862
3863 if (abuflen < len) {
3864 free(abuf);
3865 free(bbuf);
3866 abuflen = len;
3867 if (posix_memalign((void**)&abuf, 4096, abuflen) ||
3868 posix_memalign((void**)&bbuf, 4096, abuflen)) {
3869 abuflen = 0;
3870 /* just stop validating on mem-alloc failure */
3871 return;
3872 }
3873 }
3874
3875 lseek64(bfd, offset, 0);
3876 if ((unsigned long long)read(bfd, bbuf, len) != len) {
3877 //printf("len %llu\n", len);
3878 fail("read first backup failed");
3879 }
3880 lseek64(afd, __le64_to_cpu(bsb2.arraystart)*512, 0);
3881 if ((unsigned long long)read(afd, abuf, len) != len)
3882 fail("read first from array failed");
3883 if (memcmp(bbuf, abuf, len) != 0) {
3884 #if 0
3885 int i;
3886 printf("offset=%llu len=%llu\n",
3887 (unsigned long long)__le64_to_cpu(bsb2.arraystart)*512, len);
3888 for (i=0; i<len; i++)
3889 if (bbuf[i] != abuf[i]) {
3890 printf("first diff byte %d\n", i);
3891 break;
3892 }
3893 #endif
3894 fail("data1 compare failed");
3895 }
3896 }
3897 if (bsb2.length2) {
3898 unsigned long long len = __le64_to_cpu(bsb2.length2)*512;
3899
3900 if (abuflen < len) {
3901 free(abuf);
3902 free(bbuf);
3903 abuflen = len;
3904 abuf = xmalloc(abuflen);
3905 bbuf = xmalloc(abuflen);
3906 }
3907
3908 lseek64(bfd, offset+__le64_to_cpu(bsb2.devstart2)*512, 0);
3909 if ((unsigned long long)read(bfd, bbuf, len) != len)
3910 fail("read second backup failed");
3911 lseek64(afd, __le64_to_cpu(bsb2.arraystart2)*512, 0);
3912 if ((unsigned long long)read(afd, abuf, len) != len)
3913 fail("read second from array failed");
3914 if (memcmp(bbuf, abuf, len) != 0)
3915 fail("data2 compare failed");
3916 }
3917 }
3918
3919 int child_monitor(int afd, struct mdinfo *sra, struct reshape *reshape,
3920 struct supertype *st, unsigned long blocks,
3921 int *fds, unsigned long long *offsets,
3922 int dests, int *destfd, unsigned long long *destoffsets)
3923 {
3924 /* Monitor a reshape where backup is being performed using
3925 * 'native' mechanism - either to a backup file, or
3926 * to some space in a spare.
3927 */
3928 char *buf;
3929 int degraded = -1;
3930 unsigned long long speed;
3931 unsigned long long suspend_point, array_size;
3932 unsigned long long backup_point, wait_point;
3933 unsigned long long reshape_completed;
3934 int done = 0;
3935 int increasing = reshape->after.data_disks >= reshape->before.data_disks;
3936 int part = 0; /* The next part of the backup area to fill. It may already
3937 * be full, so we need to check */
3938 int level = reshape->level;
3939 int layout = reshape->before.layout;
3940 int data = reshape->before.data_disks;
3941 int disks = reshape->before.data_disks + reshape->parity;
3942 int chunk = sra->array.chunk_size;
3943 struct mdinfo *sd;
3944 unsigned long stripes;
3945 int uuid[4];
3946
3947 /* set up the backup-super-block. This requires the
3948 * uuid from the array.
3949 */
3950 /* Find a superblock */
3951 for (sd = sra->devs; sd; sd = sd->next) {
3952 char *dn;
3953 int devfd;
3954 int ok;
3955 if (sd->disk.state & (1<<MD_DISK_FAULTY))
3956 continue;
3957 dn = map_dev(sd->disk.major, sd->disk.minor, 1);
3958 devfd = dev_open(dn, O_RDONLY);
3959 if (devfd < 0)
3960 continue;
3961 ok = st->ss->load_super(st, devfd, NULL);
3962 close(devfd);
3963 if (ok == 0)
3964 break;
3965 }
3966 if (!sd) {
3967 pr_err("Cannot find a superblock\n");
3968 return 0;
3969 }
3970
3971 memset(&bsb, 0, 512);
3972 memcpy(bsb.magic, "md_backup_data-1", 16);
3973 st->ss->uuid_from_super(st, uuid);
3974 memcpy(bsb.set_uuid, uuid, 16);
3975 bsb.mtime = __cpu_to_le64(time(0));
3976 bsb.devstart2 = blocks;
3977
3978 stripes = blocks / (sra->array.chunk_size/512) /
3979 reshape->before.data_disks;
3980
3981 if (posix_memalign((void**)&buf, 4096, disks * chunk))
3982 /* Don't start the 'reshape' */
3983 return 0;
3984 if (reshape->before.data_disks == reshape->after.data_disks) {
3985 sysfs_get_ll(sra, NULL, "sync_speed_min", &speed);
3986 sysfs_set_num(sra, NULL, "sync_speed_min", 200000);
3987 }
3988
3989 if (increasing) {
3990 array_size = sra->component_size * reshape->after.data_disks;
3991 backup_point = sra->reshape_progress;
3992 suspend_point = 0;
3993 } else {
3994 array_size = sra->component_size * reshape->before.data_disks;
3995 backup_point = reshape->backup_blocks;
3996 suspend_point = array_size;
3997 }
3998
3999 while (!done) {
4000 int rv;
4001
4002 /* Want to return as soon the oldest backup slot can
4003 * be released as that allows us to start backing up
4004 * some more, providing suspend_point has been
4005 * advanced, which it should have.
4006 */
4007 if (increasing) {
4008 wait_point = array_size;
4009 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4010 wait_point = (__le64_to_cpu(bsb.arraystart) +
4011 __le64_to_cpu(bsb.length));
4012 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4013 wait_point = (__le64_to_cpu(bsb.arraystart2) +
4014 __le64_to_cpu(bsb.length2));
4015 } else {
4016 wait_point = 0;
4017 if (part == 0 && __le64_to_cpu(bsb.length) > 0)
4018 wait_point = __le64_to_cpu(bsb.arraystart);
4019 if (part == 1 && __le64_to_cpu(bsb.length2) > 0)
4020 wait_point = __le64_to_cpu(bsb.arraystart2);
4021 }
4022
4023 rv = progress_reshape(sra, reshape,
4024 backup_point, wait_point,
4025 &suspend_point, &reshape_completed);
4026 /* external metadata would need to ping_monitor here */
4027 sra->reshape_progress = reshape_completed;
4028
4029 /* Clear any backup region that is before 'here' */
4030 if (increasing) {
4031 if (__le64_to_cpu(bsb.length) > 0 &&
4032 reshape_completed >= (__le64_to_cpu(bsb.arraystart) +
4033 __le64_to_cpu(bsb.length)))
4034 forget_backup(dests, destfd,
4035 destoffsets, 0);
4036 if (__le64_to_cpu(bsb.length2) > 0 &&
4037 reshape_completed >= (__le64_to_cpu(bsb.arraystart2) +
4038 __le64_to_cpu(bsb.length2)))
4039 forget_backup(dests, destfd,
4040 destoffsets, 1);
4041 } else {
4042 if (__le64_to_cpu(bsb.length) > 0 &&
4043 reshape_completed <= (__le64_to_cpu(bsb.arraystart)))
4044 forget_backup(dests, destfd,
4045 destoffsets, 0);
4046 if (__le64_to_cpu(bsb.length2) > 0 &&
4047 reshape_completed <= (__le64_to_cpu(bsb.arraystart2)))
4048 forget_backup(dests, destfd,
4049 destoffsets, 1);
4050 }
4051
4052 if (rv < 0) {
4053 if (rv == -1)
4054 done = 1;
4055 break;
4056 }
4057 if (rv == 0 && increasing && !st->ss->external) {
4058 /* No longer need to monitor this reshape */
4059 done = 1;
4060 break;
4061 }
4062
4063 while (rv) {
4064 unsigned long long offset;
4065 unsigned long actual_stripes;
4066 /* Need to backup some data.
4067 * If 'part' is not used and the desired
4068 * backup size is suspended, do a backup,
4069 * then consider the next part.
4070 */
4071 /* Check that 'part' is unused */
4072 if (part == 0 && __le64_to_cpu(bsb.length) != 0)
4073 break;
4074 if (part == 1 && __le64_to_cpu(bsb.length2) != 0)
4075 break;
4076
4077 offset = backup_point / data;
4078 actual_stripes = stripes;
4079 if (increasing) {
4080 if (offset + actual_stripes * (chunk/512) >
4081 sra->component_size)
4082 actual_stripes = ((sra->component_size - offset)
4083 / (chunk/512));
4084 if (offset + actual_stripes * (chunk/512) >
4085 suspend_point/data)
4086 break;
4087 } else {
4088 if (offset < actual_stripes * (chunk/512))
4089 actual_stripes = offset / (chunk/512);
4090 offset -= actual_stripes * (chunk/512);
4091 if (offset < suspend_point/data)
4092 break;
4093 }
4094 if (actual_stripes == 0)
4095 break;
4096 grow_backup(sra, offset, actual_stripes,
4097 fds, offsets,
4098 disks, chunk, level, layout,
4099 dests, destfd, destoffsets,
4100 part, &degraded, buf);
4101 validate(afd, destfd[0], destoffsets[0]);
4102 /* record where 'part' is up to */
4103 part = !part;
4104 if (increasing)
4105 backup_point += actual_stripes * (chunk/512) * data;
4106 else
4107 backup_point -= actual_stripes * (chunk/512) * data;
4108 }
4109 }
4110
4111 /* FIXME maybe call progress_reshape one more time instead */
4112 abort_reshape(sra); /* remove any remaining suspension */
4113 if (reshape->before.data_disks == reshape->after.data_disks)
4114 sysfs_set_num(sra, NULL, "sync_speed_min", speed);
4115 free(buf);
4116 return done;
4117 }
4118
4119 /*
4120 * If any spare contains md_back_data-1 which is recent wrt mtime,
4121 * write that data into the array and update the super blocks with
4122 * the new reshape_progress
4123 */
4124 int Grow_restart(struct supertype *st, struct mdinfo *info, int *fdlist, int cnt,
4125 char *backup_file, int verbose)
4126 {
4127 int i, j;
4128 int old_disks;
4129 unsigned long long *offsets;
4130 unsigned long long nstripe, ostripe;
4131 int ndata, odata;
4132
4133 odata = info->array.raid_disks - info->delta_disks - 1;
4134 if (info->array.level == 6) odata--; /* number of data disks */
4135 ndata = info->array.raid_disks - 1;
4136 if (info->new_level == 6) ndata--;
4137
4138 old_disks = info->array.raid_disks - info->delta_disks;
4139
4140 if (info->delta_disks <= 0)
4141 /* Didn't grow, so the backup file must have
4142 * been used
4143 */
4144 old_disks = cnt;
4145 for (i=old_disks-(backup_file?1:0); i<cnt; i++) {
4146 struct mdinfo dinfo;
4147 int fd;
4148 int bsbsize;
4149 char *devname, namebuf[20];
4150 unsigned long long lo, hi;
4151
4152 /* This was a spare and may have some saved data on it.
4153 * Load the superblock, find and load the
4154 * backup_super_block.
4155 * If either fail, go on to next device.
4156 * If the backup contains no new info, just return
4157 * else restore data and update all superblocks
4158 */
4159 if (i == old_disks-1) {
4160 fd = open(backup_file, O_RDONLY);
4161 if (fd<0) {
4162 pr_err("backup file %s inaccessible: %s\n",
4163 backup_file, strerror(errno));
4164 continue;
4165 }
4166 devname = backup_file;
4167 } else {
4168 fd = fdlist[i];
4169 if (fd < 0)
4170 continue;
4171 if (st->ss->load_super(st, fd, NULL))
4172 continue;
4173
4174 st->ss->getinfo_super(st, &dinfo, NULL);
4175 st->ss->free_super(st);
4176
4177 if (lseek64(fd,
4178 (dinfo.data_offset + dinfo.component_size - 8) <<9,
4179 0) < 0) {
4180 pr_err("Cannot seek on device %d\n", i);
4181 continue; /* Cannot seek */
4182 }
4183 sprintf(namebuf, "device-%d", i);
4184 devname = namebuf;
4185 }
4186 if (read(fd, &bsb, sizeof(bsb)) != sizeof(bsb)) {
4187 if (verbose)
4188 pr_err("Cannot read from %s\n", devname);
4189 continue; /* Cannot read */
4190 }
4191 if (memcmp(bsb.magic, "md_backup_data-1", 16) != 0 &&
4192 memcmp(bsb.magic, "md_backup_data-2", 16) != 0) {
4193 if (verbose)
4194 pr_err("No backup metadata on %s\n", devname);
4195 continue;
4196 }
4197 if (bsb.sb_csum != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum)-((char*)&bsb))) {
4198 if (verbose)
4199 pr_err("Bad backup-metadata checksum on %s\n", devname);
4200 continue; /* bad checksum */
4201 }
4202 if (memcmp(bsb.magic, "md_backup_data-2", 16) == 0 &&
4203 bsb.sb_csum2 != bsb_csum((char*)&bsb, ((char*)&bsb.sb_csum2)-((char*)&bsb))) {
4204 if (verbose)
4205 pr_err("Bad backup-metadata checksum2 on %s\n", devname);
4206 continue; /* Bad second checksum */
4207 }
4208 if (memcmp(bsb.set_uuid,info->uuid, 16) != 0) {
4209 if (verbose)
4210 pr_err("Wrong uuid on backup-metadata on %s\n", devname);
4211 continue; /* Wrong uuid */
4212 }
4213
4214 /* array utime and backup-mtime should be updated at much the same time, but it seems that
4215 * sometimes they aren't... So allow considerable flexability in matching, and allow
4216 * this test to be overridden by an environment variable.
4217 */
4218 if (info->array.utime > (int)__le64_to_cpu(bsb.mtime) + 2*60*60 ||
4219 info->array.utime < (int)__le64_to_cpu(bsb.mtime) - 10*60) {
4220 if (check_env("MDADM_GROW_ALLOW_OLD")) {
4221 pr_err("accepting backup with timestamp %lu "
4222 "for array with timestamp %lu\n",
4223 (unsigned long)__le64_to_cpu(bsb.mtime),
4224 (unsigned long)info->array.utime);
4225 } else {
4226 pr_err("too-old timestamp on backup-metadata on %s\n", devname);
4227 pr_err("If you think it is should be safe, try 'export MDADM_GROW_ALLOW_OLD=1'\n");
4228 continue; /* time stamp is too bad */
4229 }
4230 }
4231
4232 if (bsb.magic[15] == '1') {
4233 if (bsb.length == 0)
4234 continue;
4235 if (info->delta_disks >= 0) {
4236 /* reshape_progress is increasing */
4237 if (__le64_to_cpu(bsb.arraystart)
4238 + __le64_to_cpu(bsb.length)
4239 < info->reshape_progress) {
4240 nonew:
4241 if (verbose)
4242 pr_err("backup-metadata found on %s but is not needed\n", devname);
4243 continue; /* No new data here */
4244 }
4245 } else {
4246 /* reshape_progress is decreasing */
4247 if (__le64_to_cpu(bsb.arraystart) >=
4248 info->reshape_progress)
4249 goto nonew; /* No new data here */
4250 }
4251 } else {
4252 if (bsb.length == 0 && bsb.length2 == 0)
4253 continue;
4254 if (info->delta_disks >= 0) {
4255 /* reshape_progress is increasing */
4256 if ((__le64_to_cpu(bsb.arraystart)
4257 + __le64_to_cpu(bsb.length)
4258 < info->reshape_progress)
4259 &&
4260 (__le64_to_cpu(bsb.arraystart2)
4261 + __le64_to_cpu(bsb.length2)
4262 < info->reshape_progress))
4263 goto nonew; /* No new data here */
4264 } else {
4265 /* reshape_progress is decreasing */
4266 if (__le64_to_cpu(bsb.arraystart) >=
4267 info->reshape_progress &&
4268 __le64_to_cpu(bsb.arraystart2) >=
4269 info->reshape_progress)
4270 goto nonew; /* No new data here */
4271 }
4272 }
4273 if (lseek64(fd, __le64_to_cpu(bsb.devstart)*512, 0)< 0) {
4274 second_fail:
4275 if (verbose)
4276 pr_err("Failed to verify secondary backup-metadata block on %s\n",
4277 devname);
4278 continue; /* Cannot seek */
4279 }
4280 /* There should be a duplicate backup superblock 4k before here */
4281 if (lseek64(fd, -4096, 1) < 0 ||
4282 read(fd, &bsb2, sizeof(bsb2)) != sizeof(bsb2))
4283 goto second_fail; /* Cannot find leading superblock */
4284 if (bsb.magic[15] == '1')
4285 bsbsize = offsetof(struct mdp_backup_super, pad1);
4286 else
4287 bsbsize = offsetof(struct mdp_backup_super, pad);
4288 if (memcmp(&bsb2, &bsb, bsbsize) != 0)
4289 goto second_fail; /* Cannot find leading superblock */
4290
4291 /* Now need the data offsets for all devices. */
4292 offsets = xmalloc(sizeof(*offsets)*info->array.raid_disks);
4293 for(j=0; j<info->array.raid_disks; j++) {
4294 if (fdlist[j] < 0)
4295 continue;
4296 if (st->ss->load_super(st, fdlist[j], NULL))
4297 /* FIXME should be this be an error */
4298 continue;
4299 st->ss->getinfo_super(st, &dinfo, NULL);
4300 st->ss->free_super(st);
4301 offsets[j] = dinfo.data_offset * 512;
4302 }
4303 printf(Name ": restoring critical section\n");
4304
4305 if (restore_stripes(fdlist, offsets,
4306 info->array.raid_disks,
4307 info->new_chunk,
4308 info->new_level,
4309 info->new_layout,
4310 fd, __le64_to_cpu(bsb.devstart)*512,
4311 __le64_to_cpu(bsb.arraystart)*512,
4312 __le64_to_cpu(bsb.length)*512, NULL)) {
4313 /* didn't succeed, so giveup */
4314 if (verbose)
4315 pr_err("Error restoring backup from %s\n",
4316 devname);
4317 free(offsets);
4318 return 1;
4319 }
4320
4321 if (bsb.magic[15] == '2' &&
4322 restore_stripes(fdlist, offsets,
4323 info->array.raid_disks,
4324 info->new_chunk,
4325 info->new_level,
4326 info->new_layout,
4327 fd, __le64_to_cpu(bsb.devstart)*512 +
4328 __le64_to_cpu(bsb.devstart2)*512,
4329 __le64_to_cpu(bsb.arraystart2)*512,
4330 __le64_to_cpu(bsb.length2)*512, NULL)) {
4331 /* didn't succeed, so giveup */
4332 if (verbose)
4333 pr_err("Error restoring second backup from %s\n",
4334 devname);
4335 free(offsets);
4336 return 1;
4337 }
4338
4339 free(offsets);
4340
4341 /* Ok, so the data is restored. Let's update those superblocks. */
4342
4343 lo = hi = 0;
4344 if (bsb.length) {
4345 lo = __le64_to_cpu(bsb.arraystart);
4346 hi = lo + __le64_to_cpu(bsb.length);
4347 }
4348 if (bsb.magic[15] == '2' && bsb.length2) {
4349 unsigned long long lo1, hi1;
4350 lo1 = __le64_to_cpu(bsb.arraystart2);
4351 hi1 = lo1 + __le64_to_cpu(bsb.length2);
4352 if (lo == hi) {
4353 lo = lo1;
4354 hi = hi1;
4355 } else if (lo < lo1)
4356 hi = hi1;
4357 else
4358 lo = lo1;
4359 }
4360 if (lo < hi &&
4361 (info->reshape_progress < lo ||
4362 info->reshape_progress > hi))
4363 /* backup does not affect reshape_progress*/ ;
4364 else if (info->delta_disks >= 0) {
4365 info->reshape_progress = __le64_to_cpu(bsb.arraystart) +
4366 __le64_to_cpu(bsb.length);
4367 if (bsb.magic[15] == '2') {
4368 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2) +
4369 __le64_to_cpu(bsb.length2);
4370 if (p2 > info->reshape_progress)
4371 info->reshape_progress = p2;
4372 }
4373 } else {
4374 info->reshape_progress = __le64_to_cpu(bsb.arraystart);
4375 if (bsb.magic[15] == '2') {
4376 unsigned long long p2 = __le64_to_cpu(bsb.arraystart2);
4377 if (p2 < info->reshape_progress)
4378 info->reshape_progress = p2;
4379 }
4380 }
4381 for (j=0; j<info->array.raid_disks; j++) {
4382 if (fdlist[j] < 0)
4383 continue;
4384 if (st->ss->load_super(st, fdlist[j], NULL))
4385 continue;
4386 st->ss->getinfo_super(st, &dinfo, NULL);
4387 dinfo.reshape_progress = info->reshape_progress;
4388 st->ss->update_super(st, &dinfo,
4389 "_reshape_progress",
4390 NULL,0, 0, NULL);
4391 st->ss->store_super(st, fdlist[j]);
4392 st->ss->free_super(st);
4393 }
4394 return 0;
4395 }
4396 /* Didn't find any backup data, try to see if any
4397 * was needed.
4398 */
4399 if (info->delta_disks < 0) {
4400 /* When shrinking, the critical section is at the end.
4401 * So see if we are before the critical section.
4402 */
4403 unsigned long long first_block;
4404 nstripe = ostripe = 0;
4405 first_block = 0;
4406 while (ostripe >= nstripe) {
4407 ostripe += info->array.chunk_size / 512;
4408 first_block = ostripe * odata;
4409 nstripe = first_block / ndata / (info->new_chunk/512) *
4410 (info->new_chunk/512);
4411 }
4412
4413 if (info->reshape_progress >= first_block)
4414 return 0;
4415 }
4416 if (info->delta_disks > 0) {
4417 /* See if we are beyond the critical section. */
4418 unsigned long long last_block;
4419 nstripe = ostripe = 0;
4420 last_block = 0;
4421 while (nstripe >= ostripe) {
4422 nstripe += info->new_chunk / 512;
4423 last_block = nstripe * ndata;
4424 ostripe = last_block / odata / (info->array.chunk_size/512) *
4425 (info->array.chunk_size/512);
4426 }
4427
4428 if (info->reshape_progress >= last_block)
4429 return 0;
4430 }
4431 /* needed to recover critical section! */
4432 if (verbose)
4433 pr_err("Failed to find backup of critical section\n");
4434 return 1;
4435 }
4436
4437 int Grow_continue_command(char *devname, int fd,
4438 char *backup_file, int verbose)
4439 {
4440 int ret_val = 0;
4441 struct supertype *st = NULL;
4442 struct mdinfo *content = NULL;
4443 struct mdinfo array;
4444 char *subarray = NULL;
4445 struct mdinfo *cc = NULL;
4446 struct mdstat_ent *mdstat = NULL;
4447 int cfd = -1;
4448 int fd2 = -1;
4449
4450 dprintf("Grow continue from command line called for %s\n",
4451 devname);
4452
4453 st = super_by_fd(fd, &subarray);
4454 if (!st || !st->ss) {
4455 pr_err("Unable to determine metadata format for %s\n",
4456 devname);
4457 return 1;
4458 }
4459 dprintf("Grow continue is run for ");
4460 if (st->ss->external == 0) {
4461 int d;
4462 dprintf("native array (%s)\n", devname);
4463 if (ioctl(fd, GET_ARRAY_INFO, &array.array) < 0) {
4464 pr_err("%s is not an active md array -"
4465 " aborting\n", devname);
4466 ret_val = 1;
4467 goto Grow_continue_command_exit;
4468 }
4469 content = &array;
4470 /* Need to load a superblock.
4471 * FIXME we should really get what we need from
4472 * sysfs
4473 */
4474 for (d = 0; d < MAX_DISKS; d++) {
4475 mdu_disk_info_t disk;
4476 char *dv;
4477 int err;
4478 disk.number = d;
4479 if (ioctl(fd, GET_DISK_INFO, &disk) < 0)
4480 continue;
4481 if (disk.major == 0 && disk.minor == 0)
4482 continue;
4483 if ((disk.state & (1 << MD_DISK_ACTIVE)) == 0)
4484 continue;
4485 dv = map_dev(disk.major, disk.minor, 1);
4486 if (!dv)
4487 continue;
4488 fd2 = dev_open(dv, O_RDONLY);
4489 if (fd2 < 0)
4490 continue;
4491 err = st->ss->load_super(st, fd2, NULL);
4492 close(fd2);
4493 if (err)
4494 continue;
4495 break;
4496 }
4497 if (d == MAX_DISKS) {
4498 pr_err("Unable to load metadata for %s\n",
4499 devname);
4500 ret_val = 1;
4501 goto Grow_continue_command_exit;
4502 }
4503 st->ss->getinfo_super(st, content, NULL);
4504 } else {
4505 char *container;
4506
4507 if (subarray) {
4508 dprintf("subarray (%s)\n", subarray);
4509 container = st->container_devnm;
4510 cfd = open_dev_excl(st->container_devnm);
4511 } else {
4512 container = st->devnm;
4513 close(fd);
4514 cfd = open_dev_excl(st->devnm);
4515 dprintf("container (%s)\n", container);
4516 fd = cfd;
4517 }
4518 if (cfd < 0) {
4519 pr_err("Unable to open container "
4520 "for %s\n", devname);
4521 ret_val = 1;
4522 goto Grow_continue_command_exit;
4523 }
4524
4525 /* find in container array under reshape
4526 */
4527 ret_val = st->ss->load_container(st, cfd, NULL);
4528 if (ret_val) {
4529 pr_err("Cannot read superblock for %s\n",
4530 devname);
4531 ret_val = 1;
4532 goto Grow_continue_command_exit;
4533 }
4534
4535 cc = st->ss->container_content(st, subarray);
4536 for (content = cc; content ; content = content->next) {
4537 char *array;
4538 int allow_reshape = 1;
4539
4540 if (content->reshape_active == 0)
4541 continue;
4542 /* The decision about array or container wide
4543 * reshape is taken in Grow_continue based
4544 * content->reshape_active state, therefore we
4545 * need to check_reshape based on
4546 * reshape_active and subarray name
4547 */
4548 if (content->array.state & (1<<MD_SB_BLOCK_VOLUME))
4549 allow_reshape = 0;
4550 if (content->reshape_active == CONTAINER_RESHAPE &&
4551 (content->array.state
4552 & (1<<MD_SB_BLOCK_CONTAINER_RESHAPE)))
4553 allow_reshape = 0;
4554
4555 if (!allow_reshape) {
4556 pr_err("cannot continue reshape of an array"
4557 " in container with unsupported"
4558 " metadata: %s(%s)\n",
4559 devname, container);
4560 ret_val = 1;
4561 goto Grow_continue_command_exit;
4562 }
4563
4564 array = strchr(content->text_version+1, '/')+1;
4565 mdstat = mdstat_by_subdev(array, container);
4566 if (!mdstat)
4567 continue;
4568 if (mdstat->active == 0) {
4569 pr_err("Skipping inactive array %s.\n",
4570 mdstat->devnm);
4571 free_mdstat(mdstat);
4572 mdstat = NULL;
4573 continue;
4574 }
4575 break;
4576 }
4577 if (!content) {
4578 pr_err("Unable to determine reshaped "
4579 "array for %s\n", devname);
4580 ret_val = 1;
4581 goto Grow_continue_command_exit;
4582 }
4583 fd2 = open_dev(mdstat->devnm);
4584 if (fd2 < 0) {
4585 pr_err("cannot open (%s)\n", mdstat->devnm);
4586 ret_val = 1;
4587 goto Grow_continue_command_exit;
4588 }
4589
4590 sysfs_init(content, fd2, mdstat->devnm);
4591
4592 /* start mdmon in case it is not running
4593 */
4594 if (!mdmon_running(container))
4595 start_mdmon(container);
4596 ping_monitor(container);
4597
4598 if (mdmon_running(container))
4599 st->update_tail = &st->updates;
4600 else {
4601 pr_err("No mdmon found. "
4602 "Grow cannot continue.\n");
4603 ret_val = 1;
4604 goto Grow_continue_command_exit;
4605 }
4606 }
4607
4608 /* verify that array under reshape is started from
4609 * correct position
4610 */
4611 if (verify_reshape_position(content, content->array.level) < 0) {
4612 ret_val = 1;
4613 goto Grow_continue_command_exit;
4614 }
4615
4616 /* continue reshape
4617 */
4618 ret_val = Grow_continue(fd, st, content, backup_file, 0);
4619
4620 Grow_continue_command_exit:
4621 if (fd2 > -1)
4622 close(fd2);
4623 if (cfd > -1)
4624 close(cfd);
4625 st->ss->free_super(st);
4626 free_mdstat(mdstat);
4627 sysfs_free(cc);
4628 free(subarray);
4629
4630 return ret_val;
4631 }
4632
4633 int Grow_continue(int mdfd, struct supertype *st, struct mdinfo *info,
4634 char *backup_file, int freeze_reshape)
4635 {
4636 int ret_val = 2;
4637
4638 if (!info->reshape_active)
4639 return ret_val;
4640
4641 if (st->ss->external) {
4642 int cfd = open_dev(st->container_devnm);
4643
4644 if (cfd < 0)
4645 return 1;
4646
4647 st->ss->load_container(st, cfd, st->container_devnm);
4648 close(cfd);
4649 ret_val = reshape_container(st->container_devnm, NULL, mdfd,
4650 st, info, 0, backup_file,
4651 0, 1, freeze_reshape);
4652 } else
4653 ret_val = reshape_array(NULL, mdfd, "array", st, info, 1,
4654 NULL, 0ULL, backup_file, 0, 0, 1,
4655 freeze_reshape);
4656
4657 return ret_val;
4658 }