2 * mdadm - manage Linux "md" devices aka RAID arrays.
4 * Copyright (C) 2001-2009 Neil Brown <neilb@suse.de>
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.
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.
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
22 * Email: <neilb@suse.de>
28 #if ! defined(__BIG_ENDIAN) && ! defined(__LITTLE_ENDIAN)
29 #error no endian defined
35 #define offsetof(t,f) ((size_t)&(((t*)0)->f))
38 int Grow_Add_device(char *devname
, int fd
, char *newdev
)
40 /* Add a device to an active array.
41 * Currently, just extend a linear array.
42 * This requires writing a new superblock on the
43 * new device, calling the kernel to add the device,
44 * and if that succeeds, update the superblock on
46 * This means that we need to *find* all other devices.
53 struct supertype
*st
= NULL
;
54 char *subarray
= NULL
;
56 if (ioctl(fd
, GET_ARRAY_INFO
, &info
.array
) < 0) {
57 fprintf(stderr
, Name
": cannot get array info for %s\n", devname
);
61 if (info
.array
.level
!= -1) {
62 fprintf(stderr
, Name
": can only add devices to linear arrays\n");
66 st
= super_by_fd(fd
, &subarray
);
68 fprintf(stderr
, Name
": cannot handle arrays with superblock version %d\n", info
.array
.major_version
);
73 fprintf(stderr
, Name
": Cannot grow linear sub-arrays yet\n");
78 nfd
= open(newdev
, O_RDWR
|O_EXCL
|O_DIRECT
);
80 fprintf(stderr
, Name
": cannot open %s\n", newdev
);
85 if ((stb
.st_mode
& S_IFMT
) != S_IFBLK
) {
86 fprintf(stderr
, Name
": %s is not a block device!\n", newdev
);
91 /* now check out all the devices and make sure we can read the superblock */
92 for (d
=0 ; d
< info
.array
.raid_disks
; d
++) {
96 st
->ss
->free_super(st
);
99 if (ioctl(fd
, GET_DISK_INFO
, &disk
) < 0) {
100 fprintf(stderr
, Name
": cannot get device detail for device %d\n",
106 dv
= map_dev(disk
.major
, disk
.minor
, 1);
108 fprintf(stderr
, Name
": cannot find device file for device %d\n",
114 fd2
= dev_open(dv
, O_RDWR
);
116 fprintf(stderr
, Name
": cannot open device file %s\n", dv
);
122 if (st
->ss
->load_super(st
, fd2
, NULL
)) {
123 fprintf(stderr
, Name
": cannot find super block on %s\n", dv
);
131 /* Ok, looks good. Lets update the superblock and write it out to
135 info
.disk
.number
= d
;
136 info
.disk
.major
= major(stb
.st_rdev
);
137 info
.disk
.minor
= minor(stb
.st_rdev
);
138 info
.disk
.raid_disk
= d
;
139 info
.disk
.state
= (1 << MD_DISK_SYNC
) | (1 << MD_DISK_ACTIVE
);
140 st
->ss
->update_super(st
, &info
, "linear-grow-new", newdev
,
143 if (st
->ss
->store_super(st
, nfd
)) {
144 fprintf(stderr
, Name
": Cannot store new superblock on %s\n",
151 if (ioctl(fd
, ADD_NEW_DISK
, &info
.disk
) != 0) {
152 fprintf(stderr
, Name
": Cannot add new disk to this array\n");
155 /* Well, that seems to have worked.
156 * Now go through and update all superblocks
159 if (ioctl(fd
, GET_ARRAY_INFO
, &info
.array
) < 0) {
160 fprintf(stderr
, Name
": cannot get array info for %s\n", devname
);
165 for (d
=0 ; d
< info
.array
.raid_disks
; d
++) {
166 mdu_disk_info_t disk
;
170 if (ioctl(fd
, GET_DISK_INFO
, &disk
) < 0) {
171 fprintf(stderr
, Name
": cannot get device detail for device %d\n",
175 dv
= map_dev(disk
.major
, disk
.minor
, 1);
177 fprintf(stderr
, Name
": cannot find device file for device %d\n",
181 fd2
= dev_open(dv
, O_RDWR
);
183 fprintf(stderr
, Name
": cannot open device file %s\n", dv
);
186 if (st
->ss
->load_super(st
, fd2
, NULL
)) {
187 fprintf(stderr
, Name
": cannot find super block on %s\n", dv
);
191 info
.array
.raid_disks
= nd
+1;
192 info
.array
.nr_disks
= nd
+1;
193 info
.array
.active_disks
= nd
+1;
194 info
.array
.working_disks
= nd
+1;
196 st
->ss
->update_super(st
, &info
, "linear-grow-update", dv
,
199 if (st
->ss
->store_super(st
, fd2
)) {
200 fprintf(stderr
, Name
": Cannot store new superblock on %s\n", dv
);
210 int Grow_addbitmap(char *devname
, int fd
, char *file
, int chunk
, int delay
, int write_behind
, int force
)
213 * First check that array doesn't have a bitmap
214 * Then create the bitmap
217 * For internal bitmaps, we need to check the version,
218 * find all the active devices, and write the bitmap block
221 mdu_bitmap_file_t bmf
;
222 mdu_array_info_t array
;
223 struct supertype
*st
;
224 char *subarray
= NULL
;
225 int major
= BITMAP_MAJOR_HI
;
226 int vers
= md_get_version(fd
);
227 unsigned long long bitmapsize
, array_size
;
230 major
= BITMAP_MAJOR_HOSTENDIAN
;
231 fprintf(stderr
, Name
": Warning - bitmaps created on this kernel"
232 " are not portable\n"
233 " between different architectures. Consider upgrading"
234 " the Linux kernel.\n");
237 if (ioctl(fd
, GET_BITMAP_FILE
, &bmf
) != 0) {
239 fprintf(stderr
, Name
": Memory allocation failure.\n");
241 fprintf(stderr
, Name
": bitmaps not supported by this kernel.\n");
244 if (bmf
.pathname
[0]) {
245 if (strcmp(file
,"none")==0) {
246 if (ioctl(fd
, SET_BITMAP_FILE
, -1)!= 0) {
247 fprintf(stderr
, Name
": failed to remove bitmap %s\n",
253 fprintf(stderr
, Name
": %s already has a bitmap (%s)\n",
254 devname
, bmf
.pathname
);
257 if (ioctl(fd
, GET_ARRAY_INFO
, &array
) != 0) {
258 fprintf(stderr
, Name
": cannot get array status for %s\n", devname
);
261 if (array
.state
& (1<<MD_SB_BITMAP_PRESENT
)) {
262 if (strcmp(file
, "none")==0) {
263 array
.state
&= ~(1<<MD_SB_BITMAP_PRESENT
);
264 if (ioctl(fd
, SET_ARRAY_INFO
, &array
)!= 0) {
265 fprintf(stderr
, Name
": failed to remove internal bitmap.\n");
270 fprintf(stderr
, Name
": Internal bitmap already present on %s\n",
275 if (strcmp(file
, "none") == 0) {
276 fprintf(stderr
, Name
": no bitmap found on %s\n", devname
);
279 if (array
.level
<= 0) {
280 fprintf(stderr
, Name
": Bitmaps not meaningful with level %s\n",
281 map_num(pers
, array
.level
)?:"of this array");
284 bitmapsize
= array
.size
;
286 if (get_dev_size(fd
, NULL
, &array_size
) &&
287 array_size
> (0x7fffffffULL
<<9)) {
288 /* Array is big enough that we cannot trust array.size
289 * try other approaches
291 bitmapsize
= get_component_size(fd
);
293 if (bitmapsize
== 0) {
294 fprintf(stderr
, Name
": Cannot reliably determine size of array to create bitmap - sorry.\n");
298 if (array
.level
== 10) {
299 int ncopies
= (array
.layout
&255)*((array
.layout
>>8)&255);
300 bitmapsize
= bitmapsize
* array
.raid_disks
/ ncopies
;
303 st
= super_by_fd(fd
, &subarray
);
305 fprintf(stderr
, Name
": Cannot understand version %d.%d\n",
306 array
.major_version
, array
.minor_version
);
310 fprintf(stderr
, Name
": Cannot add bitmaps to sub-arrays yet\n");
315 if (strcmp(file
, "internal") == 0) {
317 if (st
->ss
->add_internal_bitmap
== NULL
) {
318 fprintf(stderr
, Name
": Internal bitmaps not supported "
319 "with %s metadata\n", st
->ss
->name
);
322 for (d
=0; d
< st
->max_devs
; d
++) {
323 mdu_disk_info_t disk
;
326 if (ioctl(fd
, GET_DISK_INFO
, &disk
) < 0)
328 if (disk
.major
== 0 &&
331 if ((disk
.state
& (1<<MD_DISK_SYNC
))==0)
333 dv
= map_dev(disk
.major
, disk
.minor
, 1);
335 int fd2
= dev_open(dv
, O_RDWR
);
338 if (st
->ss
->load_super(st
, fd2
, NULL
)==0) {
339 if (st
->ss
->add_internal_bitmap(
341 &chunk
, delay
, write_behind
,
342 bitmapsize
, 0, major
)
344 st
->ss
->write_bitmap(st
, fd2
);
346 fprintf(stderr
, Name
": failed to create internal bitmap - chunksize problem.\n");
354 array
.state
|= (1<<MD_SB_BITMAP_PRESENT
);
355 if (ioctl(fd
, SET_ARRAY_INFO
, &array
)!= 0) {
358 ": Cannot add bitmap while array is"
359 " resyncing or reshaping etc.\n");
360 fprintf(stderr
, Name
": failed to set internal bitmap.\n");
367 int max_devs
= st
->max_devs
;
369 /* try to load a superblock */
370 for (d
=0; d
<max_devs
; d
++) {
371 mdu_disk_info_t disk
;
375 if (ioctl(fd
, GET_DISK_INFO
, &disk
) < 0)
377 if ((disk
.major
==0 && disk
.minor
==0) ||
378 (disk
.state
& (1<<MD_DISK_REMOVED
)))
380 dv
= map_dev(disk
.major
, disk
.minor
, 1);
382 fd2
= dev_open(dv
, O_RDONLY
);
384 st
->ss
->load_super(st
, fd2
, NULL
) == 0) {
386 st
->ss
->uuid_from_super(st
, uuid
);
392 fprintf(stderr
, Name
": cannot find UUID for array!\n");
395 if (CreateBitmap(file
, force
, (char*)uuid
, chunk
,
396 delay
, write_behind
, bitmapsize
, major
)) {
399 bitmap_fd
= open(file
, O_RDWR
);
401 fprintf(stderr
, Name
": weird: %s cannot be opened\n",
405 if (ioctl(fd
, SET_BITMAP_FILE
, bitmap_fd
) < 0) {
409 ": Cannot add bitmap while array is"
410 " resyncing or reshaping etc.\n");
411 fprintf(stderr
, Name
": Cannot set bitmap file for %s: %s\n",
412 devname
, strerror(err
));
422 * When reshaping an array we might need to backup some data.
423 * This is written to all spares with a 'super_block' describing it.
424 * The superblock goes 4K from the end of the used space on the
426 * It if written after the backup is complete.
427 * It has the following structure.
430 static struct mdp_backup_super
{
431 char magic
[16]; /* md_backup_data-1 or -2 */
434 /* start/sizes in 512byte sectors */
435 __u64 devstart
; /* address on backup device/file of data */
438 __u32 sb_csum
; /* csum of preceeding bytes. */
440 __u64 devstart2
; /* offset in to data of second section */
443 __u32 sb_csum2
; /* csum of preceeding bytes. */
445 } __attribute__((aligned(512))) bsb
, bsb2
;
447 static __u32
bsb_csum(char *buf
, int len
)
451 for (i
=0; i
<len
; i
++)
452 csum
= (csum
<<3) + buf
[0];
453 return __cpu_to_le32(csum
);
456 static int check_idle(struct supertype
*st
)
458 /* Check that all member arrays for this container, or the
459 * container of this array, are idle
461 int container_dev
= (st
->container_dev
!= NoMdDev
462 ? st
->container_dev
: st
->devnum
);
464 struct mdstat_ent
*ent
, *e
;
467 fmt_devname(container
, container_dev
);
468 ent
= mdstat_read(0, 0);
469 for (e
= ent
; e
; e
= e
->next
) {
470 if (!is_container_member(e
, container
))
472 if (e
->percent
>= 0) {
481 static int freeze_container(struct supertype
*st
)
483 int container_dev
= (st
->container_dev
!= NoMdDev
484 ? st
->container_dev
: st
->devnum
);
490 fmt_devname(container
, container_dev
);
492 if (block_monitor(container
, 1)) {
493 fprintf(stderr
, Name
": failed to freeze container\n");
500 static void unfreeze_container(struct supertype
*st
)
502 int container_dev
= (st
->container_dev
!= NoMdDev
503 ? st
->container_dev
: st
->devnum
);
506 fmt_devname(container
, container_dev
);
508 unblock_monitor(container
, 1);
511 static int freeze(struct supertype
*st
)
513 /* Try to freeze resync/rebuild on this array/container.
514 * Return -1 if the array is busy,
515 * return -2 container cannot be frozen,
516 * return 0 if this kernel doesn't support 'frozen'
517 * return 1 if it worked.
519 if (st
->ss
->external
)
520 return freeze_container(st
);
522 struct mdinfo
*sra
= sysfs_read(-1, st
->devnum
, GET_VERSION
);
527 err
= sysfs_freeze_array(sra
);
533 static void unfreeze(struct supertype
*st
, int frozen
)
535 /* If 'frozen' is 1, unfreeze the array */
539 if (st
->ss
->external
)
540 return unfreeze_container(st
);
542 struct mdinfo
*sra
= sysfs_read(-1, st
->devnum
, GET_VERSION
);
545 sysfs_set_str(sra
, NULL
, "sync_action", "idle");
547 fprintf(stderr
, Name
": failed to unfreeze array\n");
552 static void wait_reshape(struct mdinfo
*sra
)
554 int fd
= sysfs_get_fd(sra
, NULL
, "sync_action");
560 while (sysfs_fd_get_str(fd
, action
, 20) > 0 &&
561 strncmp(action
, "reshape", 7) == 0) {
565 select(fd
+1, NULL
, NULL
, &rfds
, NULL
);
570 static int reshape_super(struct supertype
*st
, long long size
, int level
,
571 int layout
, int chunksize
, int raid_disks
,
572 char *backup_file
, char *dev
, int verbose
)
574 /* nothing extra to check in the native case */
575 if (!st
->ss
->external
)
577 if (!st
->ss
->reshape_super
||
578 !st
->ss
->manage_reshape
) {
579 fprintf(stderr
, Name
": %s metadata does not support reshape\n",
584 return st
->ss
->reshape_super(st
, size
, level
, layout
, chunksize
,
585 raid_disks
, backup_file
, dev
, verbose
);
588 static void sync_metadata(struct supertype
*st
)
590 if (st
->ss
->external
) {
591 if (st
->update_tail
) {
592 flush_metadata_updates(st
);
593 st
->update_tail
= &st
->updates
;
595 st
->ss
->sync_metadata(st
);
599 static int subarray_set_num(char *container
, struct mdinfo
*sra
, char *name
, int n
)
601 /* when dealing with external metadata subarrays we need to be
602 * prepared to handle EAGAIN. The kernel may need to wait for
603 * mdmon to mark the array active so the kernel can handle
604 * allocations/writeback when preparing the reshape action
605 * (md_allow_write()). We temporarily disable safe_mode_delay
606 * to close a race with the array_state going clean before the
607 * next write to raid_disks / stripe_cache_size
612 /* only 'raid_disks' and 'stripe_cache_size' trigger md_allow_write */
614 (strcmp(name
, "raid_disks") != 0 &&
615 strcmp(name
, "stripe_cache_size") != 0))
616 return sysfs_set_num(sra
, NULL
, name
, n
);
618 rc
= sysfs_get_str(sra
, NULL
, "safe_mode_delay", safe
, sizeof(safe
));
621 sysfs_set_num(sra
, NULL
, "safe_mode_delay", 0);
622 rc
= sysfs_set_num(sra
, NULL
, name
, n
);
623 if (rc
< 0 && errno
== EAGAIN
) {
624 ping_monitor(container
);
625 /* if we get EAGAIN here then the monitor is not active
628 rc
= sysfs_set_num(sra
, NULL
, name
, n
);
630 sysfs_set_str(sra
, NULL
, "safe_mode_delay", safe
);
634 int start_reshape(struct mdinfo
*sra
)
637 sysfs_set_num(sra
, NULL
, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL
);
638 err
= sysfs_set_num(sra
, NULL
, "suspend_hi", 0);
639 err
= err
?: sysfs_set_num(sra
, NULL
, "suspend_lo", 0);
640 err
= err
?: sysfs_set_num(sra
, NULL
, "sync_min", 0);
641 err
= err
?: sysfs_set_num(sra
, NULL
, "sync_max", 0);
642 err
= err
?: sysfs_set_str(sra
, NULL
, "sync_action", "reshape");
647 void abort_reshape(struct mdinfo
*sra
)
649 sysfs_set_str(sra
, NULL
, "sync_action", "idle");
650 sysfs_set_num(sra
, NULL
, "suspend_lo", 0x7FFFFFFFFFFFFFFFULL
);
651 sysfs_set_num(sra
, NULL
, "suspend_hi", 0);
652 sysfs_set_num(sra
, NULL
, "suspend_lo", 0);
653 sysfs_set_num(sra
, NULL
, "sync_min", 0);
654 sysfs_set_str(sra
, NULL
, "sync_max", "max");
657 int remove_disks_on_raid10_to_raid0_takeover(struct supertype
*st
,
662 struct mdinfo
*remaining
;
665 nr_of_copies
= layout
& 0xff;
667 remaining
= sra
->devs
;
669 /* for each 'copy', select one device and remove from the list. */
670 for (slot
= 0; slot
< sra
->array
.raid_disks
; slot
+= nr_of_copies
) {
671 struct mdinfo
**diskp
;
674 /* Find a working device to keep */
675 for (diskp
= &remaining
; *diskp
; diskp
= &(*diskp
)->next
) {
676 struct mdinfo
*disk
= *diskp
;
678 if (disk
->disk
.raid_disk
< slot
)
680 if (disk
->disk
.raid_disk
>= slot
+ nr_of_copies
)
682 if (disk
->disk
.state
& (1<<MD_DISK_REMOVED
))
684 if (disk
->disk
.state
& (1<<MD_DISK_FAULTY
))
686 if (!(disk
->disk
.state
& (1<<MD_DISK_SYNC
)))
689 /* We have found a good disk to use! */
691 disk
->next
= sra
->devs
;
700 if (slot
< sra
->array
.raid_disks
) {
701 /* didn't find all slots */
707 sra
->devs
= remaining
;
711 /* Remove all 'remaining' devices from the array */
713 struct mdinfo
*sd
= remaining
;
714 remaining
= sd
->next
;
716 sysfs_set_str(sra
, sd
, "state", "faulty");
717 sysfs_set_str(sra
, sd
, "slot", "none");
718 sysfs_set_str(sra
, sd
, "state", "remove");
719 sd
->disk
.state
|= (1<<MD_DISK_REMOVED
);
720 sd
->disk
.state
&= ~(1<<MD_DISK_SYNC
);
721 sd
->next
= sra
->devs
;
727 void reshape_free_fdlist(int *fdlist
,
728 unsigned long long *offsets
,
733 for (i
= 0; i
< size
; i
++)
741 int reshape_prepare_fdlist(char *devname
,
745 unsigned long blocks
,
748 unsigned long long *offsets
)
753 for (d
= 0; d
<= nrdisks
; d
++)
756 for (sd
= sra
->devs
; sd
; sd
= sd
->next
) {
757 if (sd
->disk
.state
& (1<<MD_DISK_FAULTY
))
759 if (sd
->disk
.state
& (1<<MD_DISK_SYNC
)) {
760 char *dn
= map_dev(sd
->disk
.major
,
762 fdlist
[sd
->disk
.raid_disk
]
763 = dev_open(dn
, O_RDONLY
);
764 offsets
[sd
->disk
.raid_disk
] = sd
->data_offset
*512;
765 if (fdlist
[sd
->disk
.raid_disk
] < 0) {
767 Name
": %s: cannot open component %s\n",
768 devname
, dn
? dn
: "-unknown-");
772 } else if (backup_file
== NULL
) {
774 char *dn
= map_dev(sd
->disk
.major
,
776 fdlist
[d
] = dev_open(dn
, O_RDWR
);
777 offsets
[d
] = (sd
->data_offset
+ sra
->component_size
- blocks
- 8)*512;
779 fprintf(stderr
, Name
": %s: cannot open component %s\n",
780 devname
, dn
? dn
: "-unknown-");
791 int reshape_open_backup_file(char *backup_file
,
796 unsigned long long *offsets
)
798 /* Return 1 on success, 0 on any form of failure */
799 /* need to check backup file is large enough */
805 *fdlist
= open(backup_file
, O_RDWR
|O_CREAT
|O_EXCL
,
809 fprintf(stderr
, Name
": %s: cannot create backup file %s: %s\n",
810 devname
, backup_file
, strerror(errno
));
813 /* Guard against backup file being on array device.
814 * If array is partitioned or if LVM etc is in the
815 * way this will not notice, but it is better than
818 fstat(*fdlist
, &stb
);
821 if (stb
.st_rdev
== dev
) {
822 fprintf(stderr
, Name
": backup file must NOT be"
823 " on the array being reshaped.\n");
829 for (i
=0; i
< blocks
+ 1 ; i
++) {
830 if (write(*fdlist
, buf
, 512) != 512) {
831 fprintf(stderr
, Name
": %s: cannot create"
832 " backup file %s: %s\n",
833 devname
, backup_file
, strerror(errno
));
837 if (fsync(*fdlist
) != 0) {
838 fprintf(stderr
, Name
": %s: cannot create backup file %s: %s\n",
839 devname
, backup_file
, strerror(errno
));
846 unsigned long compute_backup_blocks(int nchunk
, int ochunk
,
847 unsigned int ndata
, unsigned int odata
)
849 unsigned long a
, b
, blocks
;
850 /* So how much do we need to backup.
851 * We need an amount of data which is both a whole number of
852 * old stripes and a whole number of new stripes.
853 * So LCM for (chunksize*datadisks).
855 a
= (ochunk
/512) * odata
;
856 b
= (nchunk
/512) * ndata
;
864 /* LCM == product / GCD */
865 blocks
= (ochunk
/512) * (nchunk
/512) * odata
* ndata
/ a
;
870 /* 'struct reshape' records the intermediate states
872 * The starting geometry is converted to the 'before' geometry
873 * by at most an atomic level change. They could be the same.
874 * Similarly the 'after' geometry is converted to the final
875 * geometry by at most a level change.
876 * Note that 'before' and 'after' must have the same level.
877 * 'blocks' is the minimum number of sectors for a reshape unit.
878 * This will be a multiple of the stripe size in each of the
879 * 'before' and 'after' geometries.
880 * If 'blocks' is 0, no restriping is necessary.
884 int parity
; /* number of parity blocks/devices */
889 unsigned long long blocks
;
890 unsigned long long stripes
; /* number of old stripes that comprise 'blocks'*/
891 unsigned long long new_size
; /* New size of array in sectors */
894 char *analyse_change(struct mdinfo
*info
, struct reshape
*re
)
896 /* Based on the current array state in info->array and
897 * the changes in info->new_* etc, determine:
898 * - whether the change is possible
899 * - Intermediate level/raid_disks/layout
900 * - whether a restriping reshape is needed
901 * - number of sectors in minimum change unit. This
902 * will cover a whole number of stripes in 'before' and
905 * Return message if the change should be rejected
906 * NULL if the change can be achieved
908 * This can be called as part of starting a reshape, or
909 * when assembling an array that is undergoing reshape.
913 /* If a new level not explicitly given, we assume no-change */
914 if (info
->new_level
== UnSet
)
915 info
->new_level
= info
->array
.level
;
918 switch (info
->new_level
) {
924 /* chunk size is meaningful, must divide component_size
927 if (info
->component_size
% (info
->new_chunk
/512))
928 return "New chunk size does not"
929 " divide component size";
932 return "chunk size not meaningful for this level";
935 info
->new_chunk
= info
->array
.chunk_size
;
937 switch (info
->array
.level
) {
939 /* RAID1 can convert to RAID1 with different disks, or
942 if (info
->new_level
== 1) {
943 if (info
->delta_disks
== UnSet
)
944 /* Don't know what to do */
945 return "no change requested for Growing RAID1";
947 re
->before
.data_disks
= (info
->array
.raid_disks
+
949 re
->before
.layout
= 0;
954 if (info
->array
.raid_disks
== 2 &&
955 info
->array
.raid_disks
== 5) {
956 /* simple in-place conversion */
959 re
->before
.data_disks
= 1;
960 re
->before
.layout
= ALGORITHM_LEFT_SYMMETRIC
;
964 /* Could do some multi-stage conversions, but leave that to
967 return "Impossibly level change request for RAID1";
970 /* RAID10 can only be converted from near mode to
971 * RAID0 by removing some devices
973 if ((info
->array
.layout
& ~0xff) != 0x100)
974 return "Cannot Grow RAID10 with far/offset layout";
975 /* number of devices must be multiple of number of copies */
976 if (info
->array
.raid_disks
% (info
->array
.layout
& 0xff))
977 return "RAID10 layout too complex for Grow operation";
979 if (info
->new_level
!= 0)
980 return "RAID10 can only be changed to RAID0";
981 new_disks
= (info
->array
.raid_disks
982 / (info
->array
.layout
& 0xff));
983 if (info
->delta_disks
!= UnSet
) {
984 info
->delta_disks
= (new_disks
985 - info
->array
.raid_disks
);
987 if (info
->delta_disks
!= new_disks
- info
->array
.raid_disks
)
988 return "New number of raid-devices impossible for RAID10";
989 if (info
->new_chunk
&&
990 info
->new_chunk
!= info
->array
.chunk_size
)
991 return "Cannot change chunk-size with RAID10 Grow";
996 re
->before
.data_disks
= new_disks
;
997 re
->before
.layout
= 0;
1002 /* RAID0 can be converted to RAID10, or to RAID456 */
1003 if (info
->new_level
== 10) {
1004 if (info
->new_layout
== UnSet
&& info
->delta_disks
== UnSet
) {
1005 /* Assume near=2 layout */
1006 info
->new_layout
= 0x102;
1007 info
->delta_disks
= info
->array
.raid_disks
;
1009 if (info
->new_layout
== UnSet
) {
1010 int copies
= 1 + (info
->delta_disks
1011 / info
->array
.raid_disks
);
1012 if (info
->array
.raid_disks
* (copies
-1)
1013 != info
->delta_disks
)
1014 return "Impossible number of devices"
1015 " for RAID0->RAID10";
1016 info
->new_layout
= 0x100 + copies
;
1018 if (info
->delta_disks
== UnSet
) {
1019 int copies
= info
->new_layout
& 0xff;
1020 if (info
->new_layout
!= 0x100 + copies
)
1021 return "New layout impossible"
1022 " for RAID0->RAID10";;
1023 info
->delta_disks
= (copies
- 1) *
1024 info
->array
.raid_disks
;
1026 if (info
->new_chunk
&&
1027 info
->new_chunk
!= info
->array
.chunk_size
)
1028 return "Cannot change chunk-size with RAID0->RAID10";
1032 re
->before
.data_disks
= (info
->array
.raid_disks
+
1034 re
->before
.layout
= info
->new_layout
;
1039 /* RAID0 can also covert to RAID0/4/5/6 by first converting to
1040 * a raid4 style layout of the final level.
1042 switch (info
->new_level
) {
1046 re
->before
.layout
= 0;
1050 re
->before
.layout
= ALGORITHM_PARITY_N
;
1054 re
->before
.layout
= ALGORITHM_PARITY_N
;
1057 return "Impossible level change requested";
1059 re
->before
.data_disks
= info
->array
.raid_disks
;
1060 /* determining 'after' layout happens outside this 'switch' */
1064 info
->array
.layout
= ALGORITHM_PARITY_N
;
1066 switch (info
->new_level
) {
1068 re
->level
= info
->array
.level
;
1069 re
->before
.data_disks
= info
->array
.raid_disks
- 1;
1070 re
->before
.layout
= info
->array
.layout
;
1074 re
->before
.data_disks
= info
->array
.raid_disks
- 1;
1075 re
->before
.layout
= info
->array
.layout
;
1079 re
->before
.data_disks
= info
->array
.raid_disks
- 1;
1080 switch (info
->array
.layout
) {
1081 case ALGORITHM_LEFT_ASYMMETRIC
:
1082 re
->before
.layout
= ALGORITHM_LEFT_ASYMMETRIC_6
;
1084 case ALGORITHM_RIGHT_ASYMMETRIC
:
1085 re
->before
.layout
= ALGORITHM_RIGHT_ASYMMETRIC_6
;
1087 case ALGORITHM_LEFT_SYMMETRIC
:
1088 re
->before
.layout
= ALGORITHM_LEFT_SYMMETRIC_6
;
1090 case ALGORITHM_RIGHT_SYMMETRIC
:
1091 re
->before
.layout
= ALGORITHM_RIGHT_SYMMETRIC_6
;
1093 case ALGORITHM_PARITY_0
:
1094 re
->before
.layout
= ALGORITHM_PARITY_0_6
;
1096 case ALGORITHM_PARITY_N
:
1097 re
->before
.layout
= ALGORITHM_PARITY_N_6
;
1100 return "Cannot convert an array with this layout";
1104 if (info
->array
.raid_disks
!= 2)
1105 return "Can only convert a 2-device array to RAID1";
1107 re
->before
.data_disks
= 2;
1108 re
->before
.layout
= 0;
1111 return "Impossible level change requested";
1115 switch (info
->new_level
) {
1120 re
->before
.data_disks
= info
->array
.raid_disks
- 2;
1121 re
->before
.layout
= info
->array
.layout
;
1124 return "Impossible level change requested";
1129 /* If we reached here then it looks like a re-stripe is
1130 * happening. We have determined the intermediate level
1131 * and initial raid_disks/layout and stored these in 're'.
1133 * We need to deduce the final layout that can be atomically
1134 * converted to the end state.
1136 switch (info
->new_level
) {
1138 /* We can only get to RAID0 from RAID4 or RAID5
1139 * with appropriate layout and one extra device
1141 if (re
->level
!= 4 && re
->level
!= 5)
1142 return "Cannot covert to RAID0 from this level";
1143 if (info
->delta_disks
== UnSet
)
1144 re
->after
.data_disks
= re
->before
.data_disks
;
1146 re
->after
.data_disks
=
1147 info
->array
.raid_disks
+ info
->delta_disks
;
1148 switch (re
->level
) {
1150 re
->after
.layout
= 0 ; break;
1152 re
->after
.layout
= ALGORITHM_PARITY_N
; break;
1157 /* We can only get to RAID4 from RAID5 */
1158 if (re
->level
!= 4 && re
->level
!= 5)
1159 return "Cannot convert to RAID4 from this level";
1160 if (info
->delta_disks
== UnSet
)
1161 re
->after
.data_disks
= re
->before
.data_disks
;
1163 re
->after
.data_disks
=
1164 re
->before
.data_disks
+ info
->delta_disks
;
1165 switch (re
->level
) {
1167 re
->after
.layout
= 0 ; break;
1169 re
->after
.layout
= ALGORITHM_PARITY_N
; break;
1174 /* We get to RAID5 for RAID5 or RAID6 */
1175 if (re
->level
!= 5 && re
->level
!= 6)
1176 return "Cannot convert to RAID5 from this level";
1177 if (info
->delta_disks
== UnSet
)
1178 re
->after
.data_disks
= re
->before
.data_disks
;
1179 else if (re
->level
== 5)
1180 re
->after
.data_disks
=
1181 re
->before
.data_disks
+ info
->delta_disks
;
1183 re
->after
.data_disks
=
1184 info
->array
.raid_disks
+ info
->delta_disks
- 1;
1185 switch (re
->level
) {
1187 if (info
->new_layout
== UnSet
)
1188 re
->after
.layout
= re
->before
.layout
;
1190 re
->after
.layout
= info
->new_layout
;
1193 if (info
->new_layout
== UnSet
)
1194 info
->new_layout
= re
->before
.layout
;
1196 /* after.layout needs to be raid6 version of new_layout */
1197 if (info
->new_layout
== ALGORITHM_PARITY_N
)
1198 re
->after
.layout
= ALGORITHM_PARITY_N
;
1201 char *ls
= map_num(r5layout
, info
->new_layout
);
1203 strcat(strcpy(layout
, ls
), "-6");
1204 l
= map_name(r6layout
, layout
);
1206 return "Cannot find RAID6 layout"
1208 re
->after
.layout
= l
;
1214 /* We must already be at level 6 */
1216 return "Impossible level change";
1217 if (info
->delta_disks
== UnSet
)
1218 re
->after
.data_disks
= re
->before
.data_disks
;
1220 re
->after
.data_disks
= (info
->array
.raid_disks
+
1221 info
->delta_disks
) - 2;
1222 if (info
->new_layout
== UnSet
)
1223 re
->after
.layout
= info
->array
.layout
;
1225 re
->after
.layout
= info
->new_layout
;
1228 return "Impossible level change requested";
1230 switch (re
->level
) {
1231 case 6: re
->parity
= 2; break;
1233 case 5: re
->parity
= 1; break;
1234 default: re
->parity
= 0; break;
1236 /* So we have a restripe operation, we need to calculate the number
1237 * of blocks per reshape operation.
1239 if (info
->new_chunk
== 0)
1240 info
->new_chunk
= info
->array
.chunk_size
;
1241 if (re
->after
.data_disks
== re
->before
.data_disks
&&
1242 re
->after
.layout
== re
->before
.layout
&&
1243 info
->new_chunk
== info
->array
.chunk_size
) {
1244 /* Nothing to change */
1248 if (re
->after
.data_disks
== 1 && re
->before
.data_disks
== 1) {
1249 /* chunks can layout changes make no difference */
1254 if (re
->after
.data_disks
== re
->before
.data_disks
&&
1255 get_linux_version() < 2006032)
1256 return "in-place reshape is not safe before 2.6.32 - sorry.";
1258 if (re
->after
.data_disks
< re
->before
.data_disks
&&
1259 get_linux_version() < 2006030)
1260 return "reshape to fewer devices is not supported before 2.6.32 - sorry.";
1262 re
->blocks
= compute_backup_blocks(
1263 info
->new_chunk
, info
->array
.chunk_size
,
1264 re
->after
.data_disks
,
1265 re
->before
.data_disks
);
1267 re
->new_size
= info
->component_size
* re
->after
.data_disks
;
1271 static int reshape_array(char *container
, int fd
, char *devname
,
1272 struct supertype
*st
, struct mdinfo
*info
,
1273 int force
, char *backup_file
, int quiet
, int forked
);
1274 static int reshape_container(char *container
, int cfd
, char *devname
,
1275 struct supertype
*st
,
1276 struct mdinfo
*info
,
1280 static int child_monitor(int afd
, struct mdinfo
*sra
, struct reshape
*reshape
,
1281 unsigned long stripes
,
1282 int *fds
, unsigned long long *offsets
,
1283 int dests
, int *destfd
, unsigned long long *destoffsets
);
1286 int Grow_reshape(char *devname
, int fd
, int quiet
, char *backup_file
,
1288 int level
, char *layout_str
, int chunksize
, int raid_disks
,
1291 /* Make some changes in the shape of an array.
1292 * The kernel must support the change.
1294 * There are three different changes. Each can trigger
1295 * a resync or recovery so we freeze that until we have
1296 * requested everything (if kernel supports freezing - 2.6.30).
1298 * - change size (i.e. component_size)
1300 * - change layout/chunksize/ndisks
1302 * The last can require a reshape. It is different on different
1303 * levels so we need to check the level before actioning it.
1304 * Some times the level change needs to be requested after the
1305 * reshape (e.g. raid6->raid5, raid5->raid0)
1308 struct mdu_array_info_s array
;
1310 struct supertype
*st
;
1311 char *subarray
= NULL
;
1315 char *container
= NULL
;
1316 char container_buf
[20];
1322 if (ioctl(fd
, GET_ARRAY_INFO
, &array
) < 0) {
1323 fprintf(stderr
, Name
": %s is not an active md array - aborting\n",
1329 (chunksize
|| level
!= UnSet
|| layout_str
|| raid_disks
)) {
1330 fprintf(stderr
, Name
": cannot change component size at the same time "
1331 "as other changes.\n"
1332 " Change size first, then check data is intact before "
1333 "making other changes.\n");
1337 if (raid_disks
&& raid_disks
< array
.raid_disks
&& array
.level
> 1 &&
1338 get_linux_version() < 2006032 &&
1339 !check_env("MDADM_FORCE_FEWER")) {
1340 fprintf(stderr
, Name
": reducing the number of devices is not safe before Linux 2.6.32\n"
1341 " Please use a newer kernel\n");
1345 st
= super_by_fd(fd
, &subarray
);
1347 fprintf(stderr
, Name
": Unable to determine metadata format for %s\n", devname
);
1350 if (raid_disks
> st
->max_devs
) {
1351 fprintf(stderr
, Name
": Cannot increase raid-disks on this array"
1352 " beyond %d\n", st
->max_devs
);
1356 /* in the external case we need to check that the requested reshape is
1357 * supported, and perform an initial check that the container holds the
1358 * pre-requisite spare devices (mdmon owns final validation)
1360 if (st
->ss
->external
) {
1365 container_dev
= st
->container_dev
;
1366 cfd
= open_dev_excl(st
->container_dev
);
1368 container_dev
= st
->devnum
;
1370 cfd
= open_dev_excl(st
->devnum
);
1374 fprintf(stderr
, Name
": Unable to open container for %s\n",
1380 fmt_devname(container_buf
, container_dev
);
1381 container
= container_buf
;
1384 rv
= st
->ss
->load_container(st
, cfd
, NULL
);
1386 rv
= st
->ss
->load_super(st
, cfd
, NULL
);
1388 fprintf(stderr
, Name
": Cannot read superblock for %s\n",
1394 if (mdmon_running(container_dev
))
1395 st
->update_tail
= &st
->updates
;
1398 if (raid_disks
> array
.raid_disks
&&
1399 array
.spare_disks
< (raid_disks
- array
.raid_disks
) &&
1402 Name
": Need %d spare%s to avoid degraded array,"
1403 " and only have %d.\n"
1404 " Use --force to over-ride this check.\n",
1405 raid_disks
- array
.raid_disks
,
1406 raid_disks
- array
.raid_disks
== 1 ? "" : "s",
1411 sra
= sysfs_read(fd
, 0, GET_LEVEL
| GET_DISKS
| GET_DEVS
| GET_STATE
);
1413 if (st
->ss
->external
&& subarray
== NULL
) {
1414 array
.level
= LEVEL_CONTAINER
;
1415 sra
->array
.level
= LEVEL_CONTAINER
;
1418 fprintf(stderr
, Name
": failed to read sysfs parameters for %s\n",
1422 frozen
= freeze(st
);
1424 /* freeze() already spewed the reason */
1426 } else if (frozen
< 0) {
1427 fprintf(stderr
, Name
": %s is performing resync/recovery and cannot"
1428 " be reshaped\n", devname
);
1432 /* ========= set size =============== */
1433 if (size
>= 0 && (size
== 0 || size
!= array
.size
)) {
1434 long long orig_size
= array
.size
;
1436 if (reshape_super(st
, size
, UnSet
, UnSet
, 0, 0, NULL
, devname
, !quiet
)) {
1442 if (array
.size
!= size
) {
1443 /* got truncated to 32bit, write to
1444 * component_size instead
1447 rv
= sysfs_set_num(sra
, NULL
,
1448 "component_size", size
);
1452 rv
= ioctl(fd
, SET_ARRAY_INFO
, &array
);
1456 /* restore metadata */
1457 if (reshape_super(st
, orig_size
, UnSet
, UnSet
, 0, 0,
1458 NULL
, devname
, !quiet
) == 0)
1460 fprintf(stderr
, Name
": Cannot set device size for %s: %s\n",
1461 devname
, strerror(err
));
1463 (array
.state
& (1<<MD_SB_BITMAP_PRESENT
)))
1464 fprintf(stderr
, " Bitmap must be removed before size can be changed\n");
1468 ioctl(fd
, GET_ARRAY_INFO
, &array
);
1469 size
= get_component_size(fd
)/2;
1473 fprintf(stderr
, Name
": component size of %s has been set to %lluK\n",
1476 } else if (array
.level
!= LEVEL_CONTAINER
) {
1477 size
= get_component_size(fd
)/2;
1482 /* ========= check for Raid10 -> Raid0 conversion ===============
1483 * current implementation assumes that following conditions must be met:
1485 * - near_copies == 2
1487 if (level
== 0 && array
.level
== 10 && sra
&&
1488 array
.layout
== ((1 << 8) + 2) && !(array
.raid_disks
& 1)) {
1490 err
= remove_disks_on_raid10_to_raid0_takeover(st
, sra
, array
.layout
);
1492 dprintf(Name
": Array cannot be reshaped\n");
1501 sysfs_init(&info
, fd
, NoMdDev
);
1502 info
.component_size
= size
*2;
1503 info
.new_level
= level
;
1504 info
.new_chunk
= chunksize
* 1024;
1506 info
.delta_disks
= raid_disks
- info
.array
.raid_disks
;
1508 info
.delta_disks
= UnSet
;
1509 if (layout_str
== NULL
) {
1510 info
.new_layout
= UnSet
;
1511 if (info
.array
.level
== 6 &&
1512 (info
.new_level
== 6 || info
.new_level
== UnSet
) &&
1513 info
.array
.layout
>= 16) {
1514 fprintf(stderr
, Name
1515 ": %s has a non-standard layout. If you"
1516 " wish to preserve this\n"
1517 " during the reshape, please specify"
1518 " --layout=preserve\n"
1519 " If you want to change it, specify a"
1520 " layout or use --layout=normalise\n",
1525 } else if (strcmp(layout_str
, "normalise") == 0 ||
1526 strcmp(layout_str
, "normalize") == 0) {
1527 /* If we have a -6 RAID6 layout, remove the '-6'. */
1528 info
.new_layout
= UnSet
;
1529 if (info
.array
.level
== 6 && info
.new_level
== UnSet
) {
1531 strcpy(l
, map_num(r6layout
, info
.array
.layout
));
1532 h
= strrchr(l
, '-');
1533 if (h
&& strcmp(h
, "-6") == 0) {
1535 info
.new_layout
= map_name(r6layout
, l
);
1538 } else if (strcmp(layout_str
, "preserve") == 0) {
1539 info
.new_layout
= UnSet
;
1541 int l
= info
.new_level
;
1543 l
= info
.array
.level
;
1546 info
.new_layout
= map_name(r5layout
, layout_str
);
1549 info
.new_layout
= map_name(r6layout
, layout_str
);
1552 info
.new_layout
= parse_layout_10(layout_str
);
1555 info
.new_layout
= parse_layout_faulty(layout_str
);
1558 fprintf(stderr
, Name
": layout not meaningful"
1559 " with this level\n");
1563 if (info
.new_layout
== UnSet
) {
1564 fprintf(stderr
, Name
": layout %s not understood"
1565 " for this level\n",
1572 if (array
.level
== LEVEL_CONTAINER
) {
1573 /* This change is to be applied to every array in the
1574 * container. This is only needed when the metadata imposes
1575 * restraints of the various arrays in the container.
1576 * Currently we only know that IMSM requires all arrays
1577 * to have the same number of devices so changing the
1578 * number of devices (On-Line Capacity Expansion) must be
1579 * performed at the level of the container
1581 rv
= reshape_container(container
, fd
, devname
, st
, &info
,
1582 force
, backup_file
, quiet
);
1584 /* Impose these changes on a single array. First
1585 * check that the metadata is OK with the change. */
1587 if (reshape_super(st
, info
.component_size
, info
.new_level
,
1588 info
.new_layout
, info
.new_chunk
,
1589 info
.array
.raid_disks
+ info
.delta_disks
,
1590 backup_file
, devname
, quiet
)) {
1595 rv
= reshape_array(container
, fd
, devname
, st
, &info
, force
,
1596 backup_file
, quiet
, 0);
1598 /* reshape_* released the array */
1601 unfreeze(st
, frozen
);
1605 static int reshape_array(char *container
, int fd
, char *devname
,
1606 struct supertype
*st
, struct mdinfo
*info
,
1608 char *backup_file
, int quiet
, int forked
)
1610 struct reshape reshape
;
1613 int orig_level
= UnSet
;
1616 struct mdu_array_info_s array
;
1621 unsigned long long *offsets
;
1626 unsigned long blocks
, stripes
;
1627 unsigned long cache
;
1628 unsigned long long array_size
;
1630 struct mdinfo
*sra
, *sd
;
1632 msg
= analyse_change(info
, &reshape
);
1634 fprintf(stderr
, Name
": %s\n", msg
);
1637 if (ioctl(fd
, GET_ARRAY_INFO
, &array
) != 0) {
1638 dprintf("Canot get array information.\n");
1641 spares_needed
= max(reshape
.before
.data_disks
,
1642 reshape
.after
.data_disks
)
1643 + reshape
.parity
- array
.raid_disks
;
1645 if (!force
&& spares_needed
> info
->array
.spare_disks
) {
1647 Name
": Need %d spare%s to avoid degraded array,"
1648 " and only have %d.\n"
1649 " Use --force to over-ride this check.\n",
1651 spares_needed
== 1 ? "" : "s",
1652 info
->array
.spare_disks
);
1656 if (reshape
.level
!= info
->array
.level
) {
1657 char *c
= map_num(pers
, reshape
.level
);
1660 return 1; /* This should not be possible */
1662 err
= sysfs_set_str(info
, NULL
, "level", c
);
1665 fprintf(stderr
, Name
": %s: could not set level to %s\n",
1668 (info
->array
.state
& (1<<MD_SB_BITMAP_PRESENT
)))
1669 fprintf(stderr
, " Bitmap must be removed"
1670 " before level can be changed\n");
1674 fprintf(stderr
, Name
": level of %s changed to %s\n",
1676 orig_level
= info
->array
.level
;
1679 if (reshape
.level
> 0 && st
->ss
->external
&&
1680 !mdmon_running(st
->container_dev
)) {
1681 start_mdmon(st
->container_dev
);
1682 ping_monitor(container
);
1685 /* ->reshape_super might have chosen some spares from the
1686 * container that it wants to be part of the new array.
1687 * We can collect them with ->container_content and give
1688 * them to the kernel.
1690 if (st
->ss
->reshape_super
&& st
->ss
->container_content
) {
1691 char *subarray
= strchr(info
->text_version
+1, '/')+1;
1692 struct mdinfo
*info2
=
1693 st
->ss
->container_content(st
, subarray
);
1697 for (d
= info2
->devs
; d
; d
= d
->next
) {
1698 if (d
->disk
.state
== 0 &&
1699 d
->disk
.raid_disk
>= 0) {
1700 /* This is a spare that wants to
1701 * be part of the array.
1703 add_disk(fd
, st
, info2
, d
);
1709 if (reshape
.blocks
== 0) {
1710 /* No restriping needed, but we might need to impose
1711 * some more changes: layout, raid_disks, chunk_size
1713 if (info
->new_layout
!= UnSet
&&
1714 info
->new_layout
!= info
->array
.layout
) {
1715 info
->array
.layout
= info
->new_layout
;
1716 if (ioctl(fd
, SET_ARRAY_INFO
, &info
->array
) != 0) {
1717 fprintf(stderr
, Name
": failed to set new layout\n");
1720 printf("layout for %s set to %d\n",
1721 devname
, info
->array
.layout
);
1723 if (info
->delta_disks
!= UnSet
&&
1724 info
->delta_disks
!= 0) {
1725 info
->array
.raid_disks
+= info
->delta_disks
;
1726 if (ioctl(fd
, SET_ARRAY_INFO
, &info
->array
) != 0) {
1727 fprintf(stderr
, Name
": failed to set raid disks\n");
1730 printf("raid_disks for %s set to %d\n",
1731 devname
, info
->array
.raid_disks
);
1733 if (info
->new_chunk
!= 0 &&
1734 info
->new_chunk
!= info
->array
.chunk_size
) {
1735 if (sysfs_set_num(info
, NULL
,
1736 "chunk_size", info
->new_chunk
) != 0) {
1737 fprintf(stderr
, Name
": failed to set chunk size\n");
1740 printf("chunk size for %s set to %d\n",
1741 devname
, info
->array
.chunk_size
);
1748 * There are three possibilities.
1749 * 1/ The array will shrink.
1750 * We need to ensure the reshape will pause before reaching
1751 * the 'critical section'. We also need to fork and wait for
1752 * that to happen. When it does we
1753 * suspend/backup/complete/unfreeze
1755 * 2/ The array will not change size.
1756 * This requires that we keep a backup of a sliding window
1757 * so that we can restore data after a crash. So we need
1758 * to fork and monitor progress.
1759 * In future we will allow the data_offset to change, so
1760 * a sliding backup becomes unnecessary.
1762 * 3/ The array will grow. This is relatively easy.
1763 * However the kernel's restripe routines will cheerfully
1764 * overwrite some early data before it is safe. So we
1765 * need to make a backup of the early parts of the array
1766 * and be ready to restore it if rebuild aborts very early.
1767 * For externally managed metadata, we still need a forked
1768 * child to monitor the reshape and suspend IO over the region
1769 * that is being reshaped.
1771 * We backup data by writing it to one spare, or to a
1772 * file which was given on command line.
1774 * In each case, we first make sure that storage is available
1775 * for the required backup.
1777 * - request the shape change.
1778 * - fork to handle backup etc.
1781 /* Check that we can hold all the data */
1782 get_dev_size(fd
, NULL
, &array_size
);
1783 if (reshape
.new_size
< (array_size
/512)) {
1785 Name
": this change will reduce the size of the array.\n"
1786 " use --grow --array-size first to truncate array.\n"
1787 " e.g. mdadm --grow %s --array-size %llu\n",
1788 devname
, reshape
.new_size
/2);
1793 sra
= sysfs_read(fd
, 0,
1794 GET_COMPONENT
|GET_DEVS
|GET_OFFSET
|GET_STATE
|GET_CHUNK
|
1798 fprintf(stderr
, Name
": %s: Cannot get array details from sysfs\n",
1804 /* Decide how many blocks (sectors) for a reshape
1805 * unit. The number we have so far is just a minimum
1807 blocks
= reshape
.blocks
;
1808 if (reshape
.before
.data_disks
==
1809 reshape
.after
.data_disks
) {
1810 /* Make 'blocks' bigger for better throughput, but
1811 * not so big that we reject it below.
1812 * Try for 16 megabytes
1814 while (blocks
* 32 < sra
->component_size
&&
1818 fprintf(stderr
, Name
": Need to backup %luK of critical "
1819 "section..\n", blocks
/2);
1821 if (blocks
>= sra
->component_size
/2) {
1822 fprintf(stderr
, Name
": %s: Something wrong"
1823 " - reshape aborted\n",
1829 /* Now we need to open all these devices so we can read/write.
1831 nrdisks
= array
.raid_disks
+ sra
->array
.spare_disks
;
1832 fdlist
= malloc((1+nrdisks
) * sizeof(int));
1833 offsets
= malloc((1+nrdisks
) * sizeof(offsets
[0]));
1834 if (!fdlist
|| !offsets
) {
1835 fprintf(stderr
, Name
": malloc failed: grow aborted\n");
1840 d
= reshape_prepare_fdlist(devname
, sra
, array
.raid_disks
,
1841 nrdisks
, blocks
, backup_file
,
1847 if (backup_file
== NULL
) {
1848 if (reshape
.after
.data_disks
<= reshape
.before
.data_disks
) {
1850 Name
": %s: Cannot grow - need backup-file\n",
1854 } else if (sra
->array
.spare_disks
== 0) {
1855 fprintf(stderr
, Name
": %s: Cannot grow - need a spare or "
1856 "backup-file to backup critical section\n",
1862 if (!reshape_open_backup_file(backup_file
, fd
, devname
,
1864 fdlist
+d
, offsets
+d
)) {
1871 /* lastly, check that the internal stripe cache is
1872 * large enough, or it won't work.
1873 * It must hold at least 4 stripes of the larger
1876 cache
= max(info
->array
.chunk_size
, info
->new_chunk
);
1877 cache
*= 4; /* 4 stripes minimum */
1878 cache
/= 512; /* convert to sectors */
1879 disks
= min(reshape
.before
.data_disks
, reshape
.after
.data_disks
);
1880 /* make sure there is room for 'blocks' with a bit to spare */
1881 if (cache
< 16 + blocks
/ disks
)
1882 cache
= 16 + blocks
/ disks
;
1883 cache
/= (4096/512); /* Covert from sectors to pages */
1885 if (sra
->cache_size
< cache
)
1886 subarray_set_num(container
, sra
, "stripe_cache_size",
1889 /* Right, everything seems fine. Let's kick things off.
1890 * If only changing raid_disks, use ioctl, else use
1895 if (info
->array
.chunk_size
== info
->new_chunk
&&
1896 reshape
.before
.layout
== reshape
.after
.layout
&&
1897 st
->ss
->external
== 0) {
1898 array
.raid_disks
= reshape
.after
.data_disks
+ reshape
.parity
;
1899 if (ioctl(fd
, SET_ARRAY_INFO
, &array
) != 0) {
1903 Name
": Cannot set device shape for %s: %s\n",
1904 devname
, strerror(errno
));
1907 (array
.state
& (1<<MD_SB_BITMAP_PRESENT
)))
1909 " Bitmap must be removed before"
1910 " shape can be changed\n");
1915 /* set them all just in case some old 'new_*' value
1916 * persists from some earlier problem
1918 int err
= err
; /* only used if rv==1, and always set if
1919 * rv==1, so initialisation not needed,
1920 * despite gcc warning
1922 if (sysfs_set_num(sra
, NULL
, "chunk_size", info
->new_chunk
) < 0)
1923 rv
= 1, err
= errno
;
1924 if (!rv
&& sysfs_set_num(sra
, NULL
, "layout",
1925 reshape
.after
.layout
) < 0)
1926 rv
= 1, err
= errno
;
1927 if (!rv
&& subarray_set_num(container
, sra
, "raid_disks",
1928 reshape
.after
.data_disks
+
1929 reshape
.parity
) < 0)
1930 rv
= 1, err
= errno
;
1932 fprintf(stderr
, Name
": Cannot set device shape for %s\n",
1936 (array
.state
& (1<<MD_SB_BITMAP_PRESENT
)))
1938 " Bitmap must be removed before"
1939 " shape can be changed\n");
1945 if (st
->ss
->external
) {
1946 /* metadata handler takes it from here */
1947 ping_manager(container
);
1948 st
->ss
->manage_reshape(st
, backup_file
);
1953 /* set up the backup-super-block. This requires the
1954 * uuid from the array.
1956 /* Find a superblock */
1957 for (sd
= sra
->devs
; sd
; sd
= sd
->next
) {
1961 if (sd
->disk
.state
& (1<<MD_DISK_FAULTY
))
1963 dn
= map_dev(sd
->disk
.major
, sd
->disk
.minor
, 1);
1964 devfd
= dev_open(dn
, O_RDONLY
);
1967 ok
= st
->ss
->load_super(st
, devfd
, NULL
);
1973 fprintf(stderr
, Name
": %s: Cannot find a superblock\n",
1980 memset(&bsb
, 0, 512);
1981 memcpy(bsb
.magic
, "md_backup_data-1", 16);
1982 st
->ss
->uuid_from_super(st
, (int*)&bsb
.set_uuid
);
1983 bsb
.mtime
= __cpu_to_le64(time(0));
1984 bsb
.devstart2
= blocks
;
1986 stripes
= reshape
.blocks
/ (info
->array
.chunk_size
/512) /
1987 reshape
.before
.data_disks
;
1989 /* Now we just need to kick off the reshape and watch, while
1990 * handling backups of the data...
1991 * This is all done by a forked background process.
1993 switch(forked
? 0 : fork()) {
1996 if (check_env("MDADM_GROW_VERIFY"))
1997 fd
= open(devname
, O_RDONLY
| O_DIRECT
);
2000 mlockall(MCL_FUTURE
);
2002 odisks
= reshape
.before
.data_disks
+ reshape
.parity
;
2004 done
= child_monitor(fd
, sra
, &reshape
, stripes
,
2006 d
- odisks
, fdlist
+odisks
, offsets
+odisks
);
2008 if (backup_file
&& done
)
2009 unlink(backup_file
);
2014 /* set new array size if required customer_array_size is used
2017 if (reshape
.before
.data_disks
!=
2018 reshape
.after
.data_disks
&&
2019 info
->custom_array_size
) {
2020 struct mdinfo
*info2
;
2021 char *subarray
= strchr(info
->text_version
+1, '/')+1;
2024 ping_monitor(container
);
2026 info2
= st
->ss
->container_content(st
, subarray
);
2028 unsigned long long current_size
= 0;
2029 unsigned long long new_size
=
2030 info2
->custom_array_size
/2;
2032 if (sysfs_get_ll(sra
,
2035 ¤t_size
) == 0 &&
2036 new_size
> current_size
) {
2037 if (sysfs_set_num(sra
, NULL
,
2038 "array_size", new_size
)
2040 dprintf("Error: Cannot"
2043 dprintf("Array size "
2045 dprintf(" from %llu to %llu.\n",
2046 current_size
, new_size
);
2052 if (info
->new_level
!= reshape
.level
) {
2053 /* We need to wait for the reshape to finish
2054 * (which will have happened unless
2055 * odata < ndata) and then set the level
2058 if (reshape
.before
.data_disks
<
2059 reshape
.after
.data_disks
)
2062 c
= map_num(pers
, info
->new_level
);
2064 goto out
;/* not possible */
2066 err
= sysfs_set_str(sra
, NULL
, "level", c
);
2068 fprintf(stderr
, Name\
2069 ": %s: could not set level "
2070 "to %s\n", devname
, c
);
2077 fprintf(stderr
, Name
": Cannot run child to monitor reshape: %s\n",
2083 /* The child will take care of unfreezing the array */
2092 ping_monitor(container
);
2093 if (st
->ss
->external
) {
2094 /* Re-load the metadata as much could have changed */
2095 int cfd
= open_dev(st
->container_dev
);
2097 st
->ss
->free_super(st
);
2098 st
->ss
->load_container(st
, cfd
, container
);
2103 if (rv
&& orig_level
!= UnSet
&& sra
) {
2104 c
= map_num(pers
, orig_level
);
2105 if (c
&& sysfs_set_str(sra
, NULL
, "level", c
) == 0)
2106 fprintf(stderr
, Name
": aborting level change\n");
2108 unfreeze(st
, frozen
);
2112 int reshape_container(char *container
, int cfd
, char *devname
,
2113 struct supertype
*st
,
2114 struct mdinfo
*info
,
2119 struct mdinfo
*cc
= NULL
;
2121 if (reshape_super(st
, info
->component_size
, info
->new_level
,
2122 info
->new_layout
, info
->new_chunk
,
2123 info
->array
.raid_disks
+ info
->delta_disks
,
2124 backup_file
, devname
, quiet
))
2129 /* ping monitor to be sure that update is on disk
2131 ping_monitor(container
);
2134 case -1: /* error */
2135 perror("Cannot fork to complete reshape\n");
2137 default: /* parent */
2138 printf(Name
": multi-array reshape continues in background\n");
2145 /* For each member array with reshape_active,
2146 * we need to perform the reshape.
2147 * We pick the first array that needs reshaping and
2148 * reshape it. reshape_array() will re-read the metadata
2149 * so the next time through a different array should be
2150 * ready for reshape.
2152 struct mdinfo
*content
;
2155 struct mdstat_ent
*mdstat
;
2160 cc
= st
->ss
->container_content(st
, NULL
);
2162 for (content
= cc
; content
; content
= content
->next
) {
2164 if (!content
->reshape_active
)
2167 subarray
= strchr(content
->text_version
+1, '/')+1;
2168 mdstat
= mdstat_by_subdev(subarray
,
2169 devname2devnum(container
));
2177 fd
= open_dev_excl(mdstat
->devnum
);
2180 adev
= map_dev(dev2major(mdstat
->devnum
),
2181 dev2minor(mdstat
->devnum
),
2184 adev
= content
->text_version
;
2186 sysfs_init(content
, fd
, mdstat
->devnum
);
2188 rv
= reshape_array(container
, fd
, adev
, st
,
2190 backup_file
, quiet
, 1);
2200 * We run a child process in the background which performs the following
2202 * - wait for resync to reach a certain point
2203 * - suspend io to the following section
2204 * - backup that section
2205 * - allow resync to proceed further
2207 * - discard the backup.
2209 * When are combined in slightly different ways in the three cases.
2211 * - suspend/backup/allow/wait/resume/discard
2213 * - allow/wait/suspend/backup/allow/wait/resume/discard
2215 * - wait/resume/discard/suspend/backup/allow
2217 * suspend/backup/allow always come together
2218 * wait/resume/discard do too.
2219 * For the same-size case we have two backups to improve flow.
2223 int progress_reshape(struct mdinfo
*info
, struct reshape
*reshape
,
2224 unsigned long long backup_point
,
2225 unsigned long long wait_point
,
2226 unsigned long long *suspend_point
,
2227 unsigned long long *reshape_completed
)
2229 /* This function is called repeatedly by the reshape manager.
2230 * It determines how much progress can safely be made and allows
2232 * - 'info' identifies the array and particularly records in
2233 * ->reshape_progress the metadata's knowledge of progress
2234 * This is a sector offset from the start of the array
2235 * of the next array block to be relocated. This number
2236 * may increase from 0 or decrease from array_size, depending
2237 * on the type of reshape that is happening.
2238 * Note that in contrast, 'sync_completed' is a block count of the
2239 * reshape so far. It gives the distance between the start point
2240 * (head or tail of device) and the next place that data will be
2241 * written. It always increases.
2242 * - 'reshape' is the structure created by analyse_change
2243 * - 'backup_point' shows how much the metadata manager has backed-up
2244 * data. For reshapes with increasing progress, it is the next address
2245 * to be backed up, previous addresses have been backed-up. For
2246 * decreasing progress, it is the earliest address that has been
2247 * backed up - later address are also backed up.
2248 * So addresses between reshape_progress and backup_point are
2249 * backed up providing those are in the 'correct' order.
2250 * - 'wait_point' is an array address. When reshape_completed
2251 * passes this point, progress_reshape should return. It might
2252 * return earlier if it determines that ->reshape_progress needs
2253 * to be updated or further backup is needed.
2254 * - suspend_point is maintained by progress_reshape and the caller
2255 * should not touch it except to initialise to zero.
2256 * It is an array address and it only increases in 2.6.37 and earlier.
2257 * This makes it difficult to handle reducing reshapes with
2258 * external metadata.
2259 * However: it is similar to backup_point in that it records the
2260 * other end of a suspended region from reshape_progress.
2261 * it is moved to extend the region that is safe to backup and/or
2263 * - reshape_completed is read from sysfs and returned. The caller
2264 * should copy this into ->reshape_progress when it has reason to
2265 * believe that the metadata knows this, and any backup outside this
2269 * 1 if more data from backup_point - but only as far as suspend_point,
2270 * should be backed up
2271 * 0 if things are progressing smoothly
2272 * -1 if the reshape is finished, either because it is all done,
2273 * or due to an error.
2276 int advancing
= (reshape
->after
.data_disks
2277 >= reshape
->before
.data_disks
);
2278 int need_backup
= (reshape
->after
.data_disks
2279 == reshape
->before
.data_disks
);
2280 unsigned long long read_offset
, write_offset
;
2281 unsigned long long read_range
, write_range
;
2282 unsigned long long max_progress
, target
, completed
;
2285 /* First, we unsuspend any region that is now known to be safe.
2286 * If suspend_point is on the 'wrong' side of reshape_progress, then
2287 * we don't have or need suspension at the moment. This is true for
2288 * native metadata when we don't need to back-up.
2291 if (info
->reshape_progress
< *suspend_point
)
2292 sysfs_set_num(info
, NULL
, "suspend_lo",
2293 info
->reshape_progress
);
2295 /* Note: this won't work in 2.6.37 and before.
2296 * Something somewhere should make sure we don't need it!
2298 if (info
->reshape_progress
> *suspend_point
)
2299 sysfs_set_num(info
, NULL
, "suspend_hi",
2300 info
->reshape_progress
);
2303 /* Now work out how far it is safe to progress.
2304 * If the read_offset for ->reshape_progress is less than
2305 * 'blocks' beyond the write_offset, we can only progress as far
2307 * Otherwise we can progress until the write_offset for the new location
2308 * reaches (within 'blocks' of) the read_offset at the current location.
2309 * However that region must be suspended unless we are using native
2311 * If we need to suspend more, we limit it to 128M per device, which is
2312 * rather arbitrary and should be some time-based calculation.
2314 write_offset
= info
->reshape_progress
/ reshape
->before
.data_disks
;
2315 read_offset
= info
->reshape_progress
/ reshape
->after
.data_disks
;
2316 write_range
= reshape
->blocks
/ reshape
->before
.data_disks
;
2317 read_range
= reshape
->blocks
/ reshape
->after
.data_disks
;
2319 if (read_offset
< write_offset
+ write_range
) {
2320 max_progress
= backup_point
;
2321 if (max_progress
<= info
->reshape_progress
)
2325 (read_offset
- write_range
) *
2326 reshape
->before
.data_disks
;
2329 if (read_offset
> write_offset
- write_range
) {
2330 max_progress
= backup_point
;
2331 if (max_progress
>= info
->reshape_progress
)
2335 (read_offset
+ write_range
) *
2336 reshape
->before
.data_disks
;
2337 /* If we are using internal metadata, then we can
2338 * progress all the way to the suspend_point without
2339 * worrying about backing-up/suspending along the
2342 if (max_progress
< *suspend_point
&&
2343 info
->array
.major_version
>= 0)
2344 max_progress
= *suspend_point
;
2348 /* We know it is safe to progress to 'max_progress' providing
2349 * it is suspended or we are using native metadata.
2350 * Consider extending suspend_point 128M per device if it
2351 * is less than 64M per device beyond reshape_progress.
2352 * But always do a multiple of 'blocks'
2354 target
= 64*1024*2 * min(reshape
->before
.data_disks
,
2355 reshape
->after
.data_disks
);
2356 target
/= reshape
->blocks
;
2359 target
*= reshape
->blocks
;
2361 /* For externally managed metadata we always need to suspend IO to
2362 * the area being reshaped so we regularly push suspend_point forward.
2363 * For native metadata we only need the suspend if we are going to do
2367 if ((need_backup
|| info
->array
.major_version
< 0) &&
2368 *suspend_point
< info
->reshape_progress
+ target
) {
2369 if (max_progress
< *suspend_point
+ 2 * target
)
2370 *suspend_point
= max_progress
;
2372 *suspend_point
+= 2 * target
;
2373 sysfs_set_num(info
, NULL
, "suspend_hi", *suspend_point
);
2374 max_progress
= *suspend_point
;
2377 if ((need_backup
|| info
->array
.major_version
< 0) &&
2378 *suspend_point
> info
->reshape_progress
- target
) {
2379 if (max_progress
> *suspend_point
- 2 * target
)
2380 *suspend_point
= max_progress
;
2382 *suspend_point
-= 2 * target
;
2383 sysfs_set_num(info
, NULL
, "suspend_lo", *suspend_point
);
2384 max_progress
= *suspend_point
;
2388 /* now set sync_max to allow that progress. sync_max, like
2389 * sync_completed is a count of sectors written per device, so
2390 * we find the difference between max_progress and the start point,
2391 * and divide that by after.data_disks to get a sync_max
2393 * At the same time we convert wait_point to a similar number
2394 * for comparing against sync_completed.
2397 max_progress
= info
->component_size
* reshape
->after
.data_disks
2399 wait_point
= info
->component_size
* reshape
->after
.data_disks
2402 max_progress
/= reshape
->after
.data_disks
;
2403 wait_point
/= reshape
->after
.data_disks
;
2405 sysfs_set_num(info
, NULL
, "sync_max", max_progress
);
2407 /* Now wait. If we have already reached the point that we were
2408 * asked to wait to, don't wait at all, else wait for any change.
2409 * We need to select on 'sync_completed' as that is the place that
2410 * notifications happen, but we are really interested in
2411 * 'reshape_position'
2413 fd
= sysfs_get_fd(info
, NULL
, "sync_completed");
2417 if (sysfs_fd_get_ll(fd
, &completed
) < 0) {
2421 while (completed
< max_progress
&& completed
< wait_point
) {
2422 /* Check that sync_action is still 'reshape' to avoid
2423 * waiting forever on a dead array
2427 if (sysfs_get_str(info
, NULL
, "sync_action",
2429 strncmp(action
, "reshape", 7) != 0)
2433 select(fd
+1, NULL
, NULL
, &rfds
, NULL
);
2434 if (sysfs_fd_get_ll(fd
, &completed
) < 0) {
2439 /* Convert 'completed' back in to a 'progress' number */
2440 completed
*= reshape
->after
.data_disks
;
2442 completed
= info
->component_size
* reshape
->after
.data_disks
2445 *reshape_completed
= completed
;
2449 /* We return the need_backup flag. Caller will decide
2450 * how much (a multiple of ->blocks) and will adjust
2451 * suspend_{lo,hi} and suspend_point.
2457 /* FIXME return status is never checked */
2458 static int grow_backup(struct mdinfo
*sra
,
2459 unsigned long long offset
, /* per device */
2460 unsigned long stripes
, /* per device, in old chunks */
2461 int *sources
, unsigned long long *offsets
,
2462 int disks
, int chunk
, int level
, int layout
,
2463 int dests
, int *destfd
, unsigned long long *destoffsets
,
2464 int part
, int *degraded
,
2467 /* Backup 'blocks' sectors at 'offset' on each device of the array,
2468 * to storage 'destfd' (offset 'destoffsets'), after first
2469 * suspending IO. Then allow resync to continue
2470 * over the suspended section.
2471 * Use part 'part' of the backup-super-block.
2476 unsigned long long ll
;
2478 //printf("offset %llu\n", offset);
2484 /* Check that array hasn't become degraded, else we might backup the wrong data */
2485 sysfs_get_ll(sra
, NULL
, "degraded", &ll
);
2486 new_degraded
= (int)ll
;
2487 if (new_degraded
!= *degraded
) {
2488 /* check each device to ensure it is still working */
2490 for (sd
= sra
->devs
; sd
; sd
= sd
->next
) {
2491 if (sd
->disk
.state
& (1<<MD_DISK_FAULTY
))
2493 if (sd
->disk
.state
& (1<<MD_DISK_SYNC
)) {
2495 if (sysfs_get_str(sra
, sd
, "state", sbuf
, 20) < 0 ||
2496 strstr(sbuf
, "faulty") ||
2497 strstr(sbuf
, "in_sync") == NULL
) {
2498 /* this device is dead */
2499 sd
->disk
.state
= (1<<MD_DISK_FAULTY
);
2500 if (sd
->disk
.raid_disk
>= 0 &&
2501 sources
[sd
->disk
.raid_disk
] >= 0) {
2502 close(sources
[sd
->disk
.raid_disk
]);
2503 sources
[sd
->disk
.raid_disk
] = -1;
2508 *degraded
= new_degraded
;
2511 bsb
.arraystart2
= __cpu_to_le64(offset
* odata
);
2512 bsb
.length2
= __cpu_to_le64(stripes
* (chunk
/512) * odata
);
2514 bsb
.arraystart
= __cpu_to_le64(offset
* odata
);
2515 bsb
.length
= __cpu_to_le64(stripes
* (chunk
/512) * odata
);
2518 bsb
.magic
[15] = '2';
2519 for (i
= 0; i
< dests
; i
++)
2521 lseek64(destfd
[i
], destoffsets
[i
] + __le64_to_cpu(bsb
.devstart2
)*512, 0);
2523 lseek64(destfd
[i
], destoffsets
[i
], 0);
2525 rv
= save_stripes(sources
, offsets
,
2526 disks
, chunk
, level
, layout
,
2528 offset
*512*odata
, stripes
* chunk
* odata
,
2533 bsb
.mtime
= __cpu_to_le64(time(0));
2534 for (i
= 0; i
< dests
; i
++) {
2535 bsb
.devstart
= __cpu_to_le64(destoffsets
[i
]/512);
2537 bsb
.sb_csum
= bsb_csum((char*)&bsb
, ((char*)&bsb
.sb_csum
)-((char*)&bsb
));
2538 if (memcmp(bsb
.magic
, "md_backup_data-2", 16) == 0)
2539 bsb
.sb_csum2
= bsb_csum((char*)&bsb
,
2540 ((char*)&bsb
.sb_csum2
)-((char*)&bsb
));
2543 if ((unsigned long long)lseek64(destfd
[i
], destoffsets
[i
] - 4096, 0)
2544 != destoffsets
[i
] - 4096)
2546 if (write(destfd
[i
], &bsb
, 512) != 512)
2548 if (destoffsets
[i
] > 4096) {
2549 if ((unsigned long long)lseek64(destfd
[i
], destoffsets
[i
]+stripes
*chunk
*odata
, 0) !=
2550 destoffsets
[i
]+stripes
*chunk
*odata
)
2552 if (write(destfd
[i
], &bsb
, 512) != 512)
2562 /* in 2.6.30, the value reported by sync_completed can be
2563 * less that it should be by one stripe.
2564 * This only happens when reshape hits sync_max and pauses.
2565 * So allow wait_backup to either extent sync_max further
2566 * than strictly necessary, or return before the
2567 * sync has got quite as far as we would really like.
2568 * This is what 'blocks2' is for.
2569 * The various caller give appropriate values so that
2572 /* FIXME return value is often ignored */
2573 static int forget_backup(
2574 int dests
, int *destfd
, unsigned long long *destoffsets
,
2578 * Erase backup 'part' (which is 0 or 1)
2584 bsb
.arraystart2
= __cpu_to_le64(0);
2585 bsb
.length2
= __cpu_to_le64(0);
2587 bsb
.arraystart
= __cpu_to_le64(0);
2588 bsb
.length
= __cpu_to_le64(0);
2590 bsb
.mtime
= __cpu_to_le64(time(0));
2592 for (i
= 0; i
< dests
; i
++) {
2593 bsb
.devstart
= __cpu_to_le64(destoffsets
[i
]/512);
2594 bsb
.sb_csum
= bsb_csum((char*)&bsb
, ((char*)&bsb
.sb_csum
)-((char*)&bsb
));
2595 if (memcmp(bsb
.magic
, "md_backup_data-2", 16) == 0)
2596 bsb
.sb_csum2
= bsb_csum((char*)&bsb
,
2597 ((char*)&bsb
.sb_csum2
)-((char*)&bsb
));
2598 if ((unsigned long long)lseek64(destfd
[i
], destoffsets
[i
]-4096, 0) !=
2599 destoffsets
[i
]-4096)
2602 write(destfd
[i
], &bsb
, 512) != 512)
2609 static void fail(char *msg
)
2612 rv
= (write(2, msg
, strlen(msg
)) != (int)strlen(msg
));
2613 rv
|= (write(2, "\n", 1) != 1);
2617 static char *abuf
, *bbuf
;
2618 static unsigned long long abuflen
;
2619 static void validate(int afd
, int bfd
, unsigned long long offset
)
2621 /* check that the data in the backup against the array.
2622 * This is only used for regression testing and should not
2623 * be used while the array is active
2627 lseek64(bfd
, offset
- 4096, 0);
2628 if (read(bfd
, &bsb2
, 512) != 512)
2629 fail("cannot read bsb");
2630 if (bsb2
.sb_csum
!= bsb_csum((char*)&bsb2
,
2631 ((char*)&bsb2
.sb_csum
)-((char*)&bsb2
)))
2632 fail("first csum bad");
2633 if (memcmp(bsb2
.magic
, "md_backup_data", 14) != 0)
2634 fail("magic is bad");
2635 if (memcmp(bsb2
.magic
, "md_backup_data-2", 16) == 0 &&
2636 bsb2
.sb_csum2
!= bsb_csum((char*)&bsb2
,
2637 ((char*)&bsb2
.sb_csum2
)-((char*)&bsb2
)))
2638 fail("second csum bad");
2640 if (__le64_to_cpu(bsb2
.devstart
)*512 != offset
)
2641 fail("devstart is wrong");
2644 unsigned long long len
= __le64_to_cpu(bsb2
.length
)*512;
2646 if (abuflen
< len
) {
2650 if (posix_memalign((void**)&abuf
, 4096, abuflen
) ||
2651 posix_memalign((void**)&bbuf
, 4096, abuflen
)) {
2653 /* just stop validating on mem-alloc failure */
2658 lseek64(bfd
, offset
, 0);
2659 if ((unsigned long long)read(bfd
, bbuf
, len
) != len
) {
2660 //printf("len %llu\n", len);
2661 fail("read first backup failed");
2663 lseek64(afd
, __le64_to_cpu(bsb2
.arraystart
)*512, 0);
2664 if ((unsigned long long)read(afd
, abuf
, len
) != len
)
2665 fail("read first from array failed");
2666 if (memcmp(bbuf
, abuf
, len
) != 0) {
2669 printf("offset=%llu len=%llu\n",
2670 (unsigned long long)__le64_to_cpu(bsb2
.arraystart
)*512, len
);
2671 for (i
=0; i
<len
; i
++)
2672 if (bbuf
[i
] != abuf
[i
]) {
2673 printf("first diff byte %d\n", i
);
2677 fail("data1 compare failed");
2681 unsigned long long len
= __le64_to_cpu(bsb2
.length2
)*512;
2683 if (abuflen
< len
) {
2687 abuf
= malloc(abuflen
);
2688 bbuf
= malloc(abuflen
);
2691 lseek64(bfd
, offset
+__le64_to_cpu(bsb2
.devstart2
)*512, 0);
2692 if ((unsigned long long)read(bfd
, bbuf
, len
) != len
)
2693 fail("read second backup failed");
2694 lseek64(afd
, __le64_to_cpu(bsb2
.arraystart2
)*512, 0);
2695 if ((unsigned long long)read(afd
, abuf
, len
) != len
)
2696 fail("read second from array failed");
2697 if (memcmp(bbuf
, abuf
, len
) != 0)
2698 fail("data2 compare failed");
2702 static int child_monitor(int afd
, struct mdinfo
*sra
, struct reshape
*reshape
,
2703 unsigned long stripes
,
2704 int *fds
, unsigned long long *offsets
,
2705 int dests
, int *destfd
, unsigned long long *destoffsets
)
2707 /* Monitor a reshape where backup is being performed using
2708 * 'native' mechanism - either to a backup file, or
2709 * to some space in a spare.
2713 unsigned long long speed
;
2714 unsigned long long suspend_point
, array_size
;
2715 unsigned long long backup_point
, wait_point
;
2716 unsigned long long reshape_completed
;
2718 int increasing
= reshape
->after
.data_disks
>= reshape
->before
.data_disks
;
2719 int part
= 0; /* The next part of the backup area to fill. It may already
2720 * be full, so we need to check */
2721 int level
= reshape
->level
;
2722 int layout
= reshape
->before
.layout
;
2723 int data
= reshape
->before
.data_disks
;
2724 int disks
= reshape
->before
.data_disks
+ reshape
->parity
;
2725 int chunk
= sra
->array
.chunk_size
;
2727 if (posix_memalign((void**)&buf
, 4096, disks
* chunk
))
2728 /* Don't start the 'reshape' */
2730 if (reshape
->before
.data_disks
== reshape
->after
.data_disks
) {
2731 sysfs_get_ll(sra
, NULL
, "sync_speed_min", &speed
);
2732 sysfs_set_num(sra
, NULL
, "sync_speed_min", 200000);
2735 array_size
= sra
->component_size
* data
;
2737 backup_point
= sra
->reshape_progress
;
2740 backup_point
= array_size
;
2741 suspend_point
= array_size
;
2747 /* Want to return as soon the oldest backup slot can
2748 * be released as that allows us to start backing up
2749 * some more, providing suspend_point has been
2750 * advanced, which it should have.
2753 wait_point
= array_size
;
2754 if (part
== 0 && __le64_to_cpu(bsb
.length
) > 0)
2755 wait_point
= (__le64_to_cpu(bsb
.arraystart
) +
2756 __le64_to_cpu(bsb
.length
));
2757 if (part
== 1 && __le64_to_cpu(bsb
.length2
) > 0)
2758 wait_point
= (__le64_to_cpu(bsb
.arraystart2
) +
2759 __le64_to_cpu(bsb
.length2
));
2762 if (part
== 0 && __le64_to_cpu(bsb
.length
) > 0)
2763 wait_point
= __le64_to_cpu(bsb
.arraystart
);
2764 if (part
== 1 && __le64_to_cpu(bsb
.length2
) > 0)
2765 wait_point
= __le64_to_cpu(bsb
.arraystart2
);
2768 rv
= progress_reshape(sra
, reshape
,
2769 backup_point
, wait_point
,
2770 &suspend_point
, &reshape_completed
);
2776 /* external metadata would need to ping_monitor here */
2777 sra
->reshape_progress
= reshape_completed
;
2779 /* Clear any backup region that is before 'here' */
2781 if (reshape_completed
>= (__le64_to_cpu(bsb
.arraystart
) +
2782 __le64_to_cpu(bsb
.length
)))
2783 forget_backup(dests
, destfd
,
2785 if (reshape_completed
>= (__le64_to_cpu(bsb
.arraystart2
) +
2786 __le64_to_cpu(bsb
.length2
)))
2787 forget_backup(dests
, destfd
,
2790 if (reshape_completed
<= (__le64_to_cpu(bsb
.arraystart
)))
2791 forget_backup(dests
, destfd
,
2793 if (reshape_completed
<= (__le64_to_cpu(bsb
.arraystart2
)))
2794 forget_backup(dests
, destfd
,
2799 unsigned long long offset
;
2800 /* need to backup some space... */
2801 /* Check that 'part' is unused */
2802 if (part
== 0 && __le64_to_cpu(bsb
.length
) != 0)
2803 abort(); /* BUG here */
2804 if (part
== 1 && __le64_to_cpu(bsb
.length2
) != 0)
2807 offset
= backup_point
/ data
;
2809 offset
-= stripes
* (chunk
/512);
2810 grow_backup(sra
, offset
, stripes
,
2812 disks
, chunk
, level
, layout
,
2813 dests
, destfd
, destoffsets
,
2814 part
, °raded
, buf
);
2815 validate(afd
, destfd
[0], destoffsets
[0]);
2816 /* record where 'part' is up to */
2819 backup_point
+= stripes
* (chunk
/512) * data
;
2821 backup_point
-= stripes
* (chunk
/512) * data
;
2825 if (reshape
->before
.data_disks
== reshape
->after
.data_disks
)
2826 sysfs_set_num(sra
, NULL
, "sync_speed_min", speed
);
2828 return 1; /* FIXME what does this mean? */
2832 * If any spare contains md_back_data-1 which is recent wrt mtime,
2833 * write that data into the array and update the super blocks with
2834 * the new reshape_progress
2836 int Grow_restart(struct supertype
*st
, struct mdinfo
*info
, int *fdlist
, int cnt
,
2837 char *backup_file
, int verbose
)
2841 unsigned long long *offsets
;
2842 unsigned long long nstripe
, ostripe
;
2845 if (info
->new_level
!= info
->array
.level
)
2846 return 1; /* Cannot handle level changes (they are instantaneous) */
2848 odata
= info
->array
.raid_disks
- info
->delta_disks
- 1;
2849 if (info
->array
.level
== 6) odata
--; /* number of data disks */
2850 ndata
= info
->array
.raid_disks
- 1;
2851 if (info
->new_level
== 6) ndata
--;
2853 old_disks
= info
->array
.raid_disks
- info
->delta_disks
;
2855 if (info
->delta_disks
<= 0)
2856 /* Didn't grow, so the backup file must have
2860 for (i
=old_disks
-(backup_file
?1:0); i
<cnt
; i
++) {
2861 struct mdinfo dinfo
;
2864 char *devname
, namebuf
[20];
2866 /* This was a spare and may have some saved data on it.
2867 * Load the superblock, find and load the
2868 * backup_super_block.
2869 * If either fail, go on to next device.
2870 * If the backup contains no new info, just return
2871 * else restore data and update all superblocks
2873 if (i
== old_disks
-1) {
2874 fd
= open(backup_file
, O_RDONLY
);
2876 fprintf(stderr
, Name
": backup file %s inaccessible: %s\n",
2877 backup_file
, strerror(errno
));
2880 devname
= backup_file
;
2885 if (st
->ss
->load_super(st
, fd
, NULL
))
2888 st
->ss
->getinfo_super(st
, &dinfo
, NULL
);
2889 st
->ss
->free_super(st
);
2892 (dinfo
.data_offset
+ dinfo
.component_size
- 8) <<9,
2894 fprintf(stderr
, Name
": Cannot seek on device %d\n", i
);
2895 continue; /* Cannot seek */
2897 sprintf(namebuf
, "device-%d", i
);
2900 if (read(fd
, &bsb
, sizeof(bsb
)) != sizeof(bsb
)) {
2902 fprintf(stderr
, Name
": Cannot read from %s\n", devname
);
2903 continue; /* Cannot read */
2905 if (memcmp(bsb
.magic
, "md_backup_data-1", 16) != 0 &&
2906 memcmp(bsb
.magic
, "md_backup_data-2", 16) != 0) {
2908 fprintf(stderr
, Name
": No backup metadata on %s\n", devname
);
2911 if (bsb
.sb_csum
!= bsb_csum((char*)&bsb
, ((char*)&bsb
.sb_csum
)-((char*)&bsb
))) {
2913 fprintf(stderr
, Name
": Bad backup-metadata checksum on %s\n", devname
);
2914 continue; /* bad checksum */
2916 if (memcmp(bsb
.magic
, "md_backup_data-2", 16) == 0 &&
2917 bsb
.sb_csum2
!= bsb_csum((char*)&bsb
, ((char*)&bsb
.sb_csum2
)-((char*)&bsb
))) {
2919 fprintf(stderr
, Name
": Bad backup-metadata checksum2 on %s\n", devname
);
2920 continue; /* Bad second checksum */
2922 if (memcmp(bsb
.set_uuid
,info
->uuid
, 16) != 0) {
2924 fprintf(stderr
, Name
": Wrong uuid on backup-metadata on %s\n", devname
);
2925 continue; /* Wrong uuid */
2928 /* array utime and backup-mtime should be updated at much the same time, but it seems that
2929 * sometimes they aren't... So allow considerable flexability in matching, and allow
2930 * this test to be overridden by an environment variable.
2932 if (info
->array
.utime
> (int)__le64_to_cpu(bsb
.mtime
) + 2*60*60 ||
2933 info
->array
.utime
< (int)__le64_to_cpu(bsb
.mtime
) - 10*60) {
2934 if (check_env("MDADM_GROW_ALLOW_OLD")) {
2935 fprintf(stderr
, Name
": accepting backup with timestamp %lu "
2936 "for array with timestamp %lu\n",
2937 (unsigned long)__le64_to_cpu(bsb
.mtime
),
2938 (unsigned long)info
->array
.utime
);
2941 fprintf(stderr
, Name
": too-old timestamp on "
2942 "backup-metadata on %s\n", devname
);
2943 continue; /* time stamp is too bad */
2947 if (bsb
.magic
[15] == '1') {
2948 if (info
->delta_disks
>= 0) {
2949 /* reshape_progress is increasing */
2950 if (__le64_to_cpu(bsb
.arraystart
) + __le64_to_cpu(bsb
.length
) <
2951 info
->reshape_progress
) {
2954 fprintf(stderr
, Name
": backup-metadata found on %s but is not needed\n", devname
);
2955 continue; /* No new data here */
2958 /* reshape_progress is decreasing */
2959 if (__le64_to_cpu(bsb
.arraystart
) >=
2960 info
->reshape_progress
)
2961 goto nonew
; /* No new data here */
2964 if (info
->delta_disks
>= 0) {
2965 /* reshape_progress is increasing */
2966 if (__le64_to_cpu(bsb
.arraystart
) + __le64_to_cpu(bsb
.length
) <
2967 info
->reshape_progress
&&
2968 __le64_to_cpu(bsb
.arraystart2
) + __le64_to_cpu(bsb
.length2
) <
2969 info
->reshape_progress
)
2970 goto nonew
; /* No new data here */
2972 /* reshape_progress is decreasing */
2973 if (__le64_to_cpu(bsb
.arraystart
) >=
2974 info
->reshape_progress
&&
2975 __le64_to_cpu(bsb
.arraystart2
) >=
2976 info
->reshape_progress
)
2977 goto nonew
; /* No new data here */
2980 if (lseek64(fd
, __le64_to_cpu(bsb
.devstart
)*512, 0)< 0) {
2983 fprintf(stderr
, Name
": Failed to verify secondary backup-metadata block on %s\n",
2985 continue; /* Cannot seek */
2987 /* There should be a duplicate backup superblock 4k before here */
2988 if (lseek64(fd
, -4096, 1) < 0 ||
2989 read(fd
, &bsb2
, sizeof(bsb2
)) != sizeof(bsb2
))
2990 goto second_fail
; /* Cannot find leading superblock */
2991 if (bsb
.magic
[15] == '1')
2992 bsbsize
= offsetof(struct mdp_backup_super
, pad1
);
2994 bsbsize
= offsetof(struct mdp_backup_super
, pad
);
2995 if (memcmp(&bsb2
, &bsb
, bsbsize
) != 0)
2996 goto second_fail
; /* Cannot find leading superblock */
2998 /* Now need the data offsets for all devices. */
2999 offsets
= malloc(sizeof(*offsets
)*info
->array
.raid_disks
);
3000 for(j
=0; j
<info
->array
.raid_disks
; j
++) {
3003 if (st
->ss
->load_super(st
, fdlist
[j
], NULL
))
3004 /* FIXME should be this be an error */
3006 st
->ss
->getinfo_super(st
, &dinfo
, NULL
);
3007 st
->ss
->free_super(st
);
3008 offsets
[j
] = dinfo
.data_offset
* 512;
3010 printf(Name
": restoring critical section\n");
3012 if (restore_stripes(fdlist
, offsets
,
3013 info
->array
.raid_disks
,
3017 fd
, __le64_to_cpu(bsb
.devstart
)*512,
3018 __le64_to_cpu(bsb
.arraystart
)*512,
3019 __le64_to_cpu(bsb
.length
)*512)) {
3020 /* didn't succeed, so giveup */
3022 fprintf(stderr
, Name
": Error restoring backup from %s\n",
3027 if (bsb
.magic
[15] == '2' &&
3028 restore_stripes(fdlist
, offsets
,
3029 info
->array
.raid_disks
,
3033 fd
, __le64_to_cpu(bsb
.devstart
)*512 +
3034 __le64_to_cpu(bsb
.devstart2
)*512,
3035 __le64_to_cpu(bsb
.arraystart2
)*512,
3036 __le64_to_cpu(bsb
.length2
)*512)) {
3037 /* didn't succeed, so giveup */
3039 fprintf(stderr
, Name
": Error restoring second backup from %s\n",
3045 /* Ok, so the data is restored. Let's update those superblocks. */
3047 if (info
->delta_disks
>= 0) {
3048 info
->reshape_progress
= __le64_to_cpu(bsb
.arraystart
) +
3049 __le64_to_cpu(bsb
.length
);
3050 if (bsb
.magic
[15] == '2') {
3051 unsigned long long p2
= __le64_to_cpu(bsb
.arraystart2
) +
3052 __le64_to_cpu(bsb
.length2
);
3053 if (p2
> info
->reshape_progress
)
3054 info
->reshape_progress
= p2
;
3057 info
->reshape_progress
= __le64_to_cpu(bsb
.arraystart
);
3058 if (bsb
.magic
[15] == '2') {
3059 unsigned long long p2
= __le64_to_cpu(bsb
.arraystart2
);
3060 if (p2
< info
->reshape_progress
)
3061 info
->reshape_progress
= p2
;
3064 for (j
=0; j
<info
->array
.raid_disks
; j
++) {
3065 if (fdlist
[j
] < 0) continue;
3066 if (st
->ss
->load_super(st
, fdlist
[j
], NULL
))
3068 st
->ss
->getinfo_super(st
, &dinfo
, NULL
);
3069 dinfo
.reshape_progress
= info
->reshape_progress
;
3070 st
->ss
->update_super(st
, &dinfo
,
3071 "_reshape_progress",
3073 st
->ss
->store_super(st
, fdlist
[j
]);
3074 st
->ss
->free_super(st
);
3078 /* Didn't find any backup data, try to see if any
3081 if (info
->delta_disks
< 0) {
3082 /* When shrinking, the critical section is at the end.
3083 * So see if we are before the critical section.
3085 unsigned long long first_block
;
3086 nstripe
= ostripe
= 0;
3088 while (ostripe
>= nstripe
) {
3089 ostripe
+= info
->array
.chunk_size
/ 512;
3090 first_block
= ostripe
* odata
;
3091 nstripe
= first_block
/ ndata
/ (info
->new_chunk
/512) *
3092 (info
->new_chunk
/512);
3095 if (info
->reshape_progress
>= first_block
)
3098 if (info
->delta_disks
> 0) {
3099 /* See if we are beyond the critical section. */
3100 unsigned long long last_block
;
3101 nstripe
= ostripe
= 0;
3103 while (nstripe
>= ostripe
) {
3104 nstripe
+= info
->new_chunk
/ 512;
3105 last_block
= nstripe
* ndata
;
3106 ostripe
= last_block
/ odata
/ (info
->array
.chunk_size
/512) *
3107 (info
->array
.chunk_size
/512);
3110 if (info
->reshape_progress
>= last_block
)
3113 /* needed to recover critical section! */
3115 fprintf(stderr
, Name
": Failed to find backup of critical section\n");
3119 int Grow_continue(int mdfd
, struct supertype
*st
, struct mdinfo
*info
,
3122 int err
= sysfs_set_str(info
, NULL
, "array_state", "readonly");
3125 return reshape_array(NULL
, mdfd
, "array", st
, info
, 1, backup_file
, 0, 0);