2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2010-01-08 16:04:10 +03:00
# Copyright (C) 2008 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,
2016-01-21 13:49:46 +03:00
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
2010-01-08 16:04:10 +03:00
2018-05-30 20:55:49 +03:00
2016-02-23 01:13:42 +03:00
2014-06-06 19:40:04 +04:00
. lib/inittest
2010-01-08 16:04:10 +03:00
2011-01-05 03:16:18 +03:00
aux prepare_vg 4
2015-04-08 23:44:16 +03:00
aux lvmconf 'allocation/maximise_cling = 0' \
'allocation/mirror_logs_require_separate_pvs = 1'
2010-01-08 16:04:10 +03:00
2010-03-27 01:15:43 +03:00
# Clean-up and create a 2-way mirror, where the the
# leg devices are always on $dev[12] and the log
# is always on $dev3. ($dev4 behaves as a spare)
2014-03-25 02:13:35 +04:00
cleanup_( ) {
2010-01-08 16:04:10 +03:00
vgreduce --removemissing $vg
2012-03-16 17:00:05 +04:00
for d in " $@ " ; do aux enable_dev " $d " ; done
for d in " $@ " ; do vgextend $vg " $d " ; done
2010-01-08 16:04:10 +03:00
lvremove -ff $vg /mirror
2014-03-25 02:13:35 +04:00
lvcreate -aey --type mirror -m 1 --ignoremonitoring -l 2 -n mirror $vg " $dev1 " " $dev2 " " $dev3 :0 "
2010-01-08 16:04:10 +03:00
}
2014-03-25 02:13:35 +04:00
repair_( ) {
2010-04-14 17:51:58 +04:00
lvconvert --repair --use-policies --config " $1 " $vg /mirror
2010-01-08 16:04:10 +03:00
}
2014-03-26 02:56:15 +04:00
lvcreate -aey --type mirror -m 1 --ignoremonitoring -l 2 -n mirror $vg " $dev1 " " $dev2 " " $dev3 :0 "
2010-01-08 16:04:10 +03:00
lvchange -a n $vg /mirror
2010-03-27 01:15:43 +03:00
# Fail a leg of a mirror.
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev1 "
2013-06-15 13:21:03 +04:00
lvchange --partial -aey $vg /mirror
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "remove" }'
2010-04-14 17:51:58 +04:00
check linear $vg mirror
2014-03-25 02:13:35 +04:00
cleanup_ " $dev1 "
2010-01-08 16:04:10 +03:00
2011-01-19 22:22:07 +03:00
# Fail a leg of a mirror.
# Expected result: Mirror (leg replaced, should retain log)
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev1 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "replace" mirror_log_fault_policy = "remove" }'
2011-01-19 22:22:07 +03:00
check mirror $vg mirror
2011-04-12 16:39:24 +04:00
check active $vg mirror_mlog
2014-03-25 02:13:35 +04:00
cleanup_ " $dev1 "
2011-01-19 22:22:07 +03:00
2010-03-27 01:15:43 +03:00
# Fail a leg of a mirror.
# Expected result: Mirror (leg replaced)
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev1 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "replace" }'
2010-04-14 17:51:58 +04:00
check mirror $vg mirror
2011-04-12 16:39:24 +04:00
check active $vg mirror_mlog
2014-03-25 02:13:35 +04:00
cleanup_ " $dev1 "
2010-01-08 16:04:10 +03:00
2010-03-27 01:15:43 +03:00
# Fail a leg of a mirror (use old name for policy specification)
# Expected result: Mirror (leg replaced)
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev1 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "replace" }'
2010-04-14 17:51:58 +04:00
check mirror $vg mirror
2011-04-12 16:39:24 +04:00
check active $vg mirror_mlog
2014-03-25 02:13:35 +04:00
not pvdisplay $vg
cleanup_ " $dev1 "
2010-01-08 16:04:10 +03:00
2010-03-27 01:15:43 +03:00
# Fail a leg of a mirror w/ no available spare
2011-01-11 20:05:08 +03:00
# Expected result: linear
# (or 2-way with leg/log overlap if alloc anywhere)
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev2 " " $dev4 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "replace" }'
2010-04-14 17:51:58 +04:00
check mirror $vg mirror
2014-03-25 02:13:35 +04:00
check lv_not_exists $vg mirror_mlog
cleanup_ " $dev2 " " $dev4 "
2010-01-08 16:04:10 +03:00
2010-03-27 01:15:43 +03:00
# Fail the log device of a mirror w/ no available spare
# Expected result: mirror w/ corelog
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev3 " " $dev4 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_image_fault_policy = "replace" }' $vg /mirror
2010-04-14 17:51:58 +04:00
check mirror $vg mirror
2014-03-25 02:13:35 +04:00
check lv_not_exists $vg mirror_mlog
cleanup_ " $dev3 " " $dev4 "
2010-05-24 19:32:20 +04:00
# Fail the log device with a remove policy
# Expected result: mirror w/ corelog
2013-06-15 13:21:03 +04:00
lvchange -aey $vg /mirror
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev3 " " $dev4 "
2014-03-25 02:13:35 +04:00
repair_ 'activation { mirror_log_fault_policy = "remove" }'
2010-05-24 19:32:20 +04:00
check mirror $vg mirror core
2014-03-25 02:13:35 +04:00
check lv_not_exists $vg mirror_mlog
cleanup_ " $dev3 " " $dev4 "
2014-02-27 02:25:30 +04:00
vgremove -ff $vg