2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2011-09-16 16:23:59 +04:00
2014-10-05 22:00:39 +04:00
# Copyright (C) 2011-2014 Red Hat, Inc. All rights reserved.
2011-09-16 16:23:59 +04:00
#
# 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,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2011-09-16 16:23:59 +04:00
# test currently needs to drop
# 'return NULL' in _lv_create_an_lv after log_error("Can't create %s without using "
2018-05-24 17:49:48 +03:00
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2015-05-17 18:22:18 +03:00
export LVM_TEST_THIN_REPAIR_CMD = ${ LVM_TEST_THIN_REPAIR_CMD -/bin/false }
2014-06-06 19:40:04 +04:00
. lib/inittest
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
check_lv_field_modules_( )
{
mod = $1
shift
2011-09-16 16:23:59 +04:00
2017-07-07 14:45:04 +03:00
for d in " $@ " ; do
2011-11-10 16:44:33 +04:00
check lv_field $vg /$d modules $mod
done
}
#
# Main
#
2012-10-10 02:20:22 +04:00
aux have_thin 1 0 0 || skip
2014-02-27 02:25:30 +04:00
which mkfs.ext4 || skip
2011-11-10 16:44:33 +04:00
2012-03-04 20:04:52 +04:00
aux prepare_pvs 2 64
2017-07-06 20:41:25 +03:00
get_devs
2011-11-10 16:44:33 +04:00
2018-05-24 17:49:48 +03:00
vgcreate $SHARED -s 64K " $vg " " ${ DEVICES [@] } "
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create named pool only
lvcreate -l1 -T $vg /pool1
lvcreate -l1 -T --thinpool $vg /pool2
lvcreate -l1 -T --thinpool pool3 $vg
2014-10-20 16:56:55 +04:00
invalid lvcreate -l1 --type thin $vg /pool4
invalid lvcreate -l1 --type thin --thinpool $vg /pool5
invalid lvcreate -l1 --type thin --thinpool pool6 $vg
2011-12-21 17:45:42 +04:00
lvcreate -l1 --type thin-pool $vg /pool7
lvcreate -l1 --type thin-pool --thinpool $vg /pool8
lvcreate -l1 --type thin-pool --thinpool pool9 $vg
2011-11-10 16:44:33 +04:00
2014-10-20 16:56:55 +04:00
lvremove -ff $vg /pool1 $vg /pool2 $vg /pool3 $vg /pool7 $vg /pool8 $vg /pool9
2011-11-10 16:44:33 +04:00
check vg_field $vg lv_count 0
2011-09-16 16:23:59 +04:00
2014-10-05 22:00:39 +04:00
# Let's pretend pool is like normal LV when using --type thin-pool support --name
2014-10-07 01:25:49 +04:00
# Reject ambiguous thin pool names
2014-10-05 22:00:39 +04:00
invalid lvcreate --type thin-pool -l1 --name pool1 $vg /pool2
invalid lvcreate --type thin-pool -l1 --name pool3 --thinpool pool4 $vg
invalid lvcreate --type thin-pool -l1 --name pool5 --thinpool pool6 $vg /pool7
invalid lvcreate --type thin-pool -l1 --name pool8 --thinpool pool8 $vg /pool9
2014-10-20 16:56:55 +04:00
# no size specified and no origin name give for snapshot
invalid lvcreate --thinpool pool $vg
2014-10-05 22:00:39 +04:00
check vg_field $vg lv_count 0
lvcreate --type thin-pool -l1 --name pool1 $vg
lvcreate --type thin-pool -l1 --name $vg /pool2
2014-10-07 01:25:49 +04:00
# If the thin pool name is unambiguous let it proceed
2014-10-05 22:00:39 +04:00
lvcreate --type thin-pool -l1 --name pool3 $vg /pool3
lvcreate --type thin-pool -l1 --name pool4 --thinpool $vg /pool4
lvcreate --type thin-pool -l1 --name pool5 --thinpool $vg /pool5 $vg /pool5
check lv_field $vg /pool1 segtype "thin-pool"
check lv_field $vg /pool2 segtype "thin-pool"
check lv_field $vg /pool3 segtype "thin-pool"
check lv_field $vg /pool4 segtype "thin-pool"
check lv_field $vg /pool5 segtype "thin-pool"
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
# Create default pool name
2011-11-10 16:44:33 +04:00
lvcreate -l1 -T $vg
2014-10-20 16:56:55 +04:00
invalid lvcreate -l1 --type thin $vg
2011-12-21 17:45:42 +04:00
lvcreate -l1 --type thin-pool $vg
2011-09-16 16:23:59 +04:00
2013-07-15 15:37:07 +04:00
lvremove -ff $vg
2011-11-10 16:44:33 +04:00
check vg_field $vg lv_count 0
2011-09-16 16:23:59 +04:00
# Create default pool and default thin LV
2011-11-10 16:44:33 +04:00
lvcreate -l1 -V2G -T $vg
lvcreate -l1 -V2G --type thin $vg
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create named pool and default thin LV
2013-07-15 15:37:07 +04:00
lvcreate -L4M -V2G --name lvo1 -T $vg /pool1
lvcreate -L4M -V2G --name lvo2 -T --thinpool $vg /pool2
lvcreate -L4M -V2G --name lvo3 -T --thinpool pool3 $vg
lvcreate -L4M -V2G --name lvo4 --type thin $vg /pool4
lvcreate -L4M -V2G --name lvo5 --type thin --thinpool $vg /pool5
lvcreate -L4M -V2G --name lvo6 --type thin --thinpool pool6 $vg
2014-10-20 16:56:55 +04:00
check lv_exists $vg lvo1 lvo2 lvo3
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create named pool and named thin LV
lvcreate -L4M -V2G -T $vg /pool1 --name lv1
lvcreate -L4M -V2G -T $vg /pool2 --name $vg /lv2
lvcreate -L4M -V2G -T --thinpool $vg /pool3 --name lv3
lvcreate -L4M -V2G -T --thinpool $vg /pool4 --name $vg /lv4
lvcreate -L4M -V2G -T --thinpool pool5 --name lv5 $vg
lvcreate -L4M -V2G -T --thinpool pool6 --name $vg /lv6 $vg
2011-09-16 16:23:59 +04:00
2012-03-16 17:00:05 +04:00
check lv_exists $vg lv1 lv2 lv3 lv4 lv5 lv6
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
lvcreate -L4M -V2G --type thin $vg /pool1 --name lv1
lvcreate -L4M -V2G --type thin $vg /pool2 --name $vg /lv2
lvcreate -L4M -V2G --type thin --thinpool $vg /pool3 --name lv3
lvcreate -L4M -V2G --type thin --thinpool $vg /pool4 --name $vg /lv4
lvcreate -L4M -V2G --type thin --thinpool pool5 --name lv5 $vg
lvcreate -L4M -V2G --type thin --thinpool pool6 --name $vg /lv6 $vg
2011-09-16 16:23:59 +04:00
2012-03-16 17:00:05 +04:00
check lv_exists $vg lv1 lv2 lv3 lv4 lv5 lv6
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create default thin LV in existing pool
lvcreate -L4M -T $vg /pool
2013-07-15 15:37:07 +04:00
lvcreate -V2G --name lvo0 -T $vg /pool
lvcreate -V2G --name lvo1 -T --thinpool $vg /pool
lvcreate -V2G --name lvo2 -T --thinpool pool $vg
lvcreate -V2G --name lvo3 --type thin $vg /pool
lvcreate -V2G --name lvo4 --type thin --thinpool $vg /pool
lvcreate -V2G --name lvo5 --type thin --thinpool pool $vg
2011-09-16 16:23:59 +04:00
2013-07-15 15:37:07 +04:00
check lv_exists $vg lvo0 lvo1 lvo2 lvo3 lvo4 lvo5
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create named thin LV in existing pool
2011-09-16 16:23:59 +04:00
lvcreate -V2G -T $vg /pool --name lv1
lvcreate -V2G -T $vg /pool --name $vg /lv2
lvcreate -V2G -T --thinpool $vg /pool --name lv3
lvcreate -V2G -T --thinpool $vg /pool --name $vg /lv4
lvcreate -V2G -T --thinpool pool --name lv5 $vg
lvcreate -V2G -T --thinpool pool --name $vg /lv6 $vg
lvcreate -V2G --type thin $vg /pool --name lv7
lvcreate -V2G --type thin $vg /pool --name $vg /lv8
lvcreate -V2G --type thin --thinpool $vg /pool --name lv9
lvcreate -V2G --type thin --thinpool $vg /pool --name $vg /lv10
lvcreate -V2G --type thin --thinpool pool --name lv11 $vg
lvcreate -V2G --type thin --thinpool pool --name $vg /lv12 $vg
2012-03-16 17:00:05 +04:00
check lv_exists $vg lv1 lv2 lv3 lv4 lv5 lv6 lv7 lv8 lv9 lv10 lv11 lv12
2011-09-16 16:23:59 +04:00
check vg_field $vg lv_count 19
2013-11-11 13:05:45 +04:00
check lv_field $vg /lv1 thin_id 7
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
check vg_field $vg lv_count 0
2011-09-16 16:23:59 +04:00
2011-11-10 16:44:33 +04:00
# Create thin snapshot of thinLV
2014-05-13 12:28:55 +04:00
lvcreate -L10M -I4 -i2 -V10M -T $vg /pool --name lv1
2014-02-23 02:08:55 +04:00
mkfs.ext4 " $DM_DEV_DIR / $vg /lv1 "
2013-07-15 15:37:07 +04:00
lvcreate -K -s $vg /lv1 --name snap_lv1
2014-02-23 02:08:55 +04:00
fsck -n " $DM_DEV_DIR / $vg /snap_lv1 "
2013-07-15 15:37:07 +04:00
lvcreate -s $vg /lv1 --name lv2
lvcreate -s $vg /lv1 --name $vg /lv3
2014-10-20 16:56:55 +04:00
invalid lvcreate --type snapshot $vg /lv1 --name lv6
invalid lvcreate --type snapshot $vg /lv1 --name lv4
invalid lvcreate --type snapshot $vg /lv1 --name $vg /lv5
2013-07-15 15:37:07 +04:00
2014-05-13 12:28:55 +04:00
lvdisplay --maps $vg
2014-10-20 16:56:55 +04:00
check_lv_field_modules_ thin,thin-pool lv1 snap_lv1 lv2 lv3
check vg_field $vg lv_count 5
2014-05-13 12:28:55 +04:00
2011-11-10 16:44:33 +04:00
lvremove -ff $vg
# Normal Snapshots of thinLV
lvcreate -L4M -V2G -T $vg /pool --name lv1
2013-07-15 15:37:07 +04:00
lvcreate -s $vg /lv1 -l1 --name snap_lv1
lvcreate -s $vg /lv1 -l1 --name lv2
lvcreate -s $vg /lv1 -l1 --name $vg /lv3
lvcreate -s lv1 -L4M --name $vg /lv4
2011-11-10 16:44:33 +04:00
2013-07-15 15:37:07 +04:00
check_lv_field_modules_ snapshot snap_lv1 lv2 lv3 lv4
2011-11-10 16:44:33 +04:00
check vg_field $vg lv_count 6
lvremove -ff $vg
2011-09-16 16:23:59 +04:00
check vg_field $vg lv_count 0
2018-07-09 00:24:58 +03:00
# Check how allocator works with 2PVs where one is nearly full
lvcreate -l99%PV $vg " $dev1 "
lvs -a $vg
# Check when separate metadata is required, allocation needs to fail
fail lvcreate -L10 -T --poolmetadataspare n --config 'allocation/thin_pool_metadata_require_separate_pvs=1' $vg
# Check when data and metadata may share the same PV, it shall pass
lvcreate -L10 -T --poolmetadataspare n --config 'allocation/thin_pool_metadata_require_separate_pvs=0' $vg
lvremove -f $vg
2011-11-10 16:44:33 +04:00
# Fail cases
# Too small pool size (1 extent 64KB) for given chunk size
not lvcreate --chunksize 256 -l1 -T $vg /pool1
# Too small chunk size (min is 64KB - 128 sectors)
not lvcreate --chunksize 32 -l1 -T $vg /pool1
2012-03-16 17:00:05 +04:00
# Too large chunk size (max is 1GB)
not lvcreate -L4M --chunksize 2G -T $vg /pool1
2014-11-01 01:18:31 +03:00
# Cannot specify --minor with pool
fail lvcreate -L10M --minor 100 -T $vg /pool_minor
# FIXME: Currently ambigous - is it for thin, thin-pool, both ?
fail lvcreate -L4M -Mn -m0 -T --readahead 32 -V20 -n $lv $vg /pool_normal
# Check read-ahead setting will also pass with -Mn -m0
lvcreate -L4M -Mn -m0 -T --readahead 64k $vg /pool_readahead
lvcreate -V20M -Mn -m0 -T --readahead 128k -n thin_readahead $vg /pool_readahead
check lv_field $vg /pool_readahead lv_read_ahead "64.00k"
check lv_field $vg /thin_readahead lv_read_ahead "128.00k"
if test ! -d /sys/block/dm-2345; then
# Check some unused minor and support for --minor with thins
lvcreate --minor 2345 -T -V20M -n thin_minor $vg /pool_readahead
check lv_field $vg /thin_minor lv_minor "2345"
fi
2011-11-10 16:44:33 +04:00
2014-03-12 03:25:59 +04:00
# Test creation of inactive pool
lvcreate -an -L4M -T $vg /pool1
lvcreate -V2G --name lv1 -T $vg /pool1
2014-03-17 02:47:43 +04:00
# Check we are able remove spare volume if we want to
lvremove -f $vg /lvol0_pmspare
2011-11-10 16:44:33 +04:00
# Origin name is not accepted
2013-07-15 15:37:07 +04:00
not lvcreate -s $vg /lv1 -L4M -V2G --name $vg /lv4
2012-03-04 20:04:52 +04:00
2013-08-08 00:48:31 +04:00
# Check we cannot create mirror/raid1 and thin or thinpool together
2012-10-12 14:18:06 +04:00
not lvcreate -T mirpool -L4M --alloc anywhere -m1 $vg
not lvcreate --thinpool mirpool -L4M --alloc anywhere -m1 $vg
2020-06-24 15:42:11 +03:00
# Check pool metadata volume is zeroed, when zero_metadata is enabled.
# 1st. ensure 8megs of both PVs will have some non-0 data
lvcreate -L8m -n $lv1 $vg " $dev1 "
lvextend -L+8m $vg /$lv1 " $dev2 "
dd if = /dev/urandom of = " $DM_DEV_DIR / $vg / $lv1 " bs = 1M count = 16 oflag = direct conv = fdatasync
lvremove -ff $vg /$lv1
lvcreate -l1 --poolmetadatasize 4m --conf 'allocation/zero_metadata=1' -vvvv -T $vg /pool
lvchange -an $vg
# component activation to check device was zeroed
lvchange -y -ay $vg /pool_tmeta
dd if = " $DM_DEV_DIR / $vg /pool_tmeta " of = file bs = 1M count = 3 skip = 1 iflag = direct conv = fdatasync
md5sum -b file | tee out
# md5sum of 3M of zeros
grep d1dd210d6b1312cb342b56d02bd5e651 out
lvchange -an $vg
lvremove -ff $vg
2012-10-12 14:18:06 +04:00
vgremove -ff $vg