2018-05-24 12:21:49 +03:00
#!/usr/bin/env bash
# Copyright (C) 2018 Red Hat, Inc. All rights reserved.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions
# of the GNU General Public License v.2.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
# TODO: once code get fixed, add matching 'check' calls
2018-06-01 00:18:53 +03:00
2018-05-24 12:21:49 +03:00
SKIP_WITH_LVMPOLLD = 1
. lib/inittest
test -f /proc/mdstat && grep -q raid1 /proc/mdstat || \
modprobe raid1 || skip
aux lvmconf 'devices/md_component_detection = 1'
aux extend_filter_LVMTEST "a|/dev/md|"
aux prepare_devs 4
2018-06-05 19:45:08 +03:00
pvcreate " $dev2 "
aux prepare_md_dev 0 64 2 " $dev1 " " $dev2 "
# Incorrectly shows $dev2 as PV for 'raid0'
pvs -vvvv
2018-06-01 00:18:53 +03:00
vgcreate $SHARED $vg " $dev3 " " $dev4 "
2018-05-24 12:21:49 +03:00
# create 2 disk MD raid1 array
# by default using metadata format 1.0 with data at the end of device
aux prepare_md_dev 1 64 2 " $dev1 " " $dev2 "
mddev = $( < MD_DEV)
pvdev = $( < MD_DEV_PV)
2018-05-24 16:20:22 +03:00
sleep 3
2018-05-24 12:21:49 +03:00
mdadm --stop " $mddev "
# copy fake PV/VG header PV3 -> PV2 (which is however md raid1 leg)
dd if = " $dev3 " of = " $dev2 " bs = 64k count = 1 conv = fdatasync
# remove VG on PV3 & PV4
vgremove -f $vg
sleep 3
aux udev_wait
# too bad 'dd' wakes up md array reassembling
should not mdadm --detail " $mddev "
should not mdadm --stop " $mddev "
sleep 3
# print what blkid thinks about each PV
for i in " $dev1 " " $dev2 " " $dev3 " " $dev4 "
do
2018-05-24 16:20:22 +03:00
blkid -c /dev/null -w /dev/null " $i " || echo "Unknown signature"
2018-05-24 12:21:49 +03:00
done
# expect open count for each PV to be 0
dmsetup info -c
pvs -vvvv " $dev2 " " $dev3 " || true
# still expect open count for each PV to be 0
dmsetup info -c
pvs -vvvv " $dev3 " " $dev2 " || true
# and again we expect open count for each PV to be 0
dmsetup info -c
dmsetup table
# even after 3 second of possible hidden raid array assembling
sleep 3
dmsetup info -c
# if for any reason array went up - stop it again
2018-05-24 16:20:22 +03:00
if mdadm --detail " $mddev " ; then
2018-05-24 12:21:49 +03:00
mdadm --stop " $mddev "
aux udev_wait
should not mdadm --detail " $mddev "
2018-05-24 16:20:22 +03:00
fi
2018-05-24 12:21:49 +03:00
2018-05-24 16:20:22 +03:00
# now reassemble array from PV1 & PV2
2018-05-24 12:21:49 +03:00
mdadm --assemble --verbose " $mddev " " $dev1 " " $dev2 "
aux udev_wait
sleep 1
# and let 'fake hdr' to be fixed from master/primary leg
2018-05-24 16:20:22 +03:00
# (when mdadm supports repair)
if mdadm --action= repair " $mddev " ; then
sleep 1
# should be showing correctly PV3 & PV4
pvs
fi