2017-07-02 22:38:32 +03:00
#!/usr/bin/env bash
2017-07-08 19:23:47 +03:00
# Copyright (C) 2008-2017 Red Hat, Inc. All rights reserved.
2008-01-17 21:29:36 +03:00
# Copyright (C) 2007 NEC Corporation
#
# 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
2008-01-17 21:29:36 +03:00
2008-10-14 23:41:12 +04:00
test_description = "ensure that 'vgreduce --removemissing' works on mirrored LV"
2018-05-24 17:49:48 +03:00
2015-10-27 17:10:06 +03:00
SKIP_WITH_LVMPOLLD = 1
2008-10-14 23:41:12 +04:00
2015-05-01 15:45:47 +03:00
. lib/inittest
2014-10-01 10:31:53 +04:00
2017-07-08 19:23:47 +03:00
list_pvs = ( )
2008-01-17 21:29:36 +03:00
lv_is_on_ ( )
{
2008-10-14 23:41:12 +04:00
local lv = $vg /$1
shift
2017-07-08 19:23:47 +03:00
local list_pvs = ( " $@ " )
2008-01-17 21:29:36 +03:00
2017-07-08 19:23:47 +03:00
echo " Check if $lv is exactly on PVs " " ${ list_pvs [@] } "
2008-10-14 23:41:12 +04:00
rm -f out1 out2
2017-07-08 19:23:47 +03:00
printf "%s\n" " ${ list_pvs [@] } " | sort | uniq > out1
2008-01-17 21:29:36 +03:00
2010-03-25 15:16:17 +03:00
lvs -a -o+devices $lv
2017-07-08 19:23:47 +03:00
get lv_devices " $lv " | sort | uniq > out2
2008-01-17 21:29:36 +03:00
2008-10-14 23:41:12 +04:00
diff --ignore-blank-lines out1 out2
2008-01-17 21:29:36 +03:00
}
mimages_are_on_ ( )
{
2008-10-14 23:41:12 +04:00
local lv = $1
shift
2017-07-08 19:23:47 +03:00
local list_pvs = ( " $@ " )
local mimages = ( )
2008-10-14 23:41:12 +04:00
local i
2017-07-08 19:23:47 +03:00
echo " Check if mirror images of $lv are on PVs " " ${ list_pvs [@] } "
2021-03-16 23:18:53 +03:00
printf "%s\n" " ${ list_pvs [@] } " | sort | uniq | tee out1
2012-03-16 17:00:05 +04:00
2017-07-10 18:40:31 +03:00
get lv_field_lv_ " $vg " lv_name -a | grep " ${ lv } _mimage_ " | tee lvs_log
2017-07-12 02:16:10 +03:00
test -s lvs_log || return 1
2017-07-10 18:40:31 +03:00
while IFS = read -r i ; do
mimages += ( " $i " )
done < lvs_log
2017-07-08 19:23:47 +03:00
for i in " ${ mimages [@] } " ; do
get lv_devices " $vg / $i "
2021-03-16 23:18:53 +03:00
done | sort | uniq | tee out2
2017-07-08 19:23:47 +03:00
2008-10-14 23:41:12 +04:00
diff --ignore-blank-lines out1 out2
2008-01-17 21:29:36 +03:00
}
mirrorlog_is_on_( )
{
2012-03-16 17:00:05 +04:00
local lv = ${ 1 } _mlog
2008-10-14 23:41:12 +04:00
shift
2012-03-16 17:00:05 +04:00
lv_is_on_ $lv " $@ "
2008-01-17 21:29:36 +03:00
}
lv_is_linear_( )
{
2008-10-14 23:41:12 +04:00
echo " Check if $1 is linear LV (i.e. not a mirror) "
2013-06-15 13:21:03 +04:00
get lv_field $vg /$1 "stripes,attr" | tee out
grep "^1 -" out >/dev/null
2008-01-17 21:29:36 +03:00
}
rest_pvs_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
local num = $2
2017-07-08 19:23:47 +03:00
local rem = ( )
2008-10-14 23:41:12 +04:00
local n
2014-06-30 22:04:24 +04:00
local dev
2008-01-17 21:29:36 +03:00
2017-07-06 20:27:04 +03:00
for n in $( seq 1 $(( index - 1 )) ) $( seq $(( index + 1 )) $num ) ; do
2017-07-08 19:23:47 +03:00
eval " dev=\$dev $n "
rem += ( " $dev " )
2008-10-14 23:41:12 +04:00
done
2008-01-17 21:29:36 +03:00
2017-07-08 19:23:47 +03:00
printf "%s\n" " ${ rem [@] } "
2008-01-17 21:29:36 +03:00
}
# ---------------------------------------------------------------------
# Initialize PVs and VGs
2013-06-15 13:21:03 +04:00
aux prepare_pvs 5 80
2017-07-06 20:41:25 +03:00
get_devs
2008-01-17 21:29:36 +03:00
2018-05-24 17:49:48 +03:00
vgcreate $SHARED -s 64k " $vg " " ${ DEVICES [@] } "
2013-06-15 13:21:03 +04:00
BLOCKS = 0-7
BLOCKS1 = 8-15
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# Common environment setup/cleanup for each sub testcases
prepare_lvs_( )
{
2012-03-28 15:10:08 +04:00
lvremove -ff $vg
( dm_table | not grep $vg ) || \
2012-03-16 17:00:05 +04:00
die "ERROR: lvremove did leave some some mappings in DM behind!"
2008-01-17 21:29:36 +03:00
}
check_and_cleanup_lvs_( )
{
2021-03-16 23:18:53 +03:00
lvs -a -o+lv_uuid,devices $vg
2012-03-28 15:10:08 +04:00
prepare_lvs_
2008-01-17 21:29:36 +03:00
}
recover_vg_( )
{
2012-03-16 17:00:05 +04:00
aux enable_dev " $@ "
improve reading and repairing vg metadata
The fact that vg repair is implemented as a part of vg read
has led to a messy and complicated implementation of vg_read,
and limited and uncontrolled repair capability. This splits
read and repair apart.
Summary
-------
- take all kinds of various repairs out of vg_read
- vg_read no longer writes anything
- vg_read now simply reads and returns vg metadata
- vg_read ignores bad or old copies of metadata
- vg_read proceeds with a single good copy of metadata
- improve error checks and handling when reading
- keep track of bad (corrupt) copies of metadata in lvmcache
- keep track of old (seqno) copies of metadata in lvmcache
- keep track of outdated PVs in lvmcache
- vg_write will do basic repairs
- new command vgck --updatemetdata will do all repairs
Details
-------
- In scan, do not delete dev from lvmcache if reading/processing fails;
the dev is still present, and removing it makes it look like the dev
is not there. Records are now kept about the problems with each PV
so they be fixed/repaired in the appropriate places.
- In scan, record a bad mda on failure, and delete the mda from
mda in use list so it will not be used by vg_read or vg_write,
only by repair.
- In scan, succeed if any good mda on a device is found, instead of
failing if any is bad. The bad/old copies of metadata should not
interfere with normal usage while good copies can be used.
- In scan, add a record of old mdas in lvmcache for later, do not repair
them while reading, and do not let them prevent us from finding and
using a good copy of metadata from elsewhere. One result is that
"inconsistent metadata" is no longer a read error, but instead a
record in lvmcache that can be addressed separate from the read.
- Treat a dev with no good mdas like a dev with no mdas, which is an
existing case we already handle.
- Don't use a fake vg "handle" for returning an error from vg_read,
or the vg_read_error function for getting that error number;
just return null if the vg cannot be read or used, and an error_flags
arg with flags set for the specific kind of error (which can be used
later for determining the kind of repair.)
- Saving an original copy of the vg metadata, for purposes of reverting
a write, is now done explicitly in vg_read instead of being hidden in
the vg_make_handle function.
- When a vg is not accessible due to "access restrictions" but is
otherwise fine, return the vg through the new error_vg arg so that
process_each_pv can skip the PVs in the VG while processing.
(This is a temporary accomodation for the way process_each_pv
tracks which devs have been looked at, and can be dropped later
when process_each_pv implementation dev tracking is changed.)
- vg_read does not try to fix or recover a vg, but now just reads the
metadata, checks access restrictions and returns it.
(Checking access restrictions might be better done outside of vg_read,
but this is a later improvement.)
- _vg_read now simply makes one attempt to read metadata from
each mda, and uses the most recent copy to return to the caller
in the form of a 'vg' struct.
(bad mdas were excluded during the scan and are not retried)
(old mdas were not excluded during scan and are retried here)
- vg_read uses _vg_read to get the latest copy of metadata from mdas,
and then makes various checks against it to produce warnings,
and to check if VG access is allowed (access restrictions include:
writable, foreign, shared, clustered, missing pvs).
- Things that were previously silently/automatically written by vg_read
that are now done by vg_write, based on the records made in lvmcache
during the scan and read:
. clearing the missing flag
. updating old copies of metadata
. clearing outdated pvs
. updating pv header flags
- Bad/corrupt metadata are now repaired; they were not before.
Test changes
------------
- A read command no longer writes the VG to repair it, so add a write
command to do a repair.
(inconsistent-metadata, unlost-pv)
- When a missing PV is removed from a VG, and then the device is
enabled again, vgck --updatemetadata is needed to clear the
outdated PV before it can be used again, where it wasn't before.
(lvconvert-repair-policy, lvconvert-repair-raid, lvconvert-repair,
mirror-vgreduce-removemissing, pv-ext-flags, unlost-pv)
Reading bad/old metadata
------------------------
- "bad metadata": the mda_header or metadata text has invalid fields
or can't be parsed by lvm. This is a form of corruption that would
not be caused by known failure scenarios. A checksum error is
typically included among the errors reported.
- "old metadata": a valid copy of the metadata that has a smaller seqno
than other copies of the metadata. This can happen if the device
failed, or io failed, or lvm failed while commiting new metadata
to all the metadata areas. Old metadata on a PV that has been
removed from the VG is the "outdated" case below.
When a VG has some PVs with bad/old metadata, lvm can simply ignore
the bad/old copies, and use a good copy. This is why there are
multiple copies of the metadata -- so it's available even when some
of the copies cannot be used. The bad/old copies do not have to be
repaired before the VG can be used (the repair can happen later.)
A PV with no good copies of the metadata simply falls back to being
treated like a PV with no mdas; a common and harmless configuration.
When bad/old metadata exists, lvm warns the user about it, and
suggests repairing it using a new metadata repair command.
Bad metadata in particular is something that users will want to
investigate and repair themselves, since it should not happen and
may indicate some other problem that needs to be fixed.
PVs with bad/old metadata are not the same as missing devices.
Missing devices will block various kinds of VG modification or
activation, but bad/old metadata will not.
Previously, lvm would attempt to repair bad/old metadata whenever
it was read. This was unnecessary since lvm does not require every
copy of the metadata to be used. It would also hide potential
problems that should be investigated by the user. It was also
dangerous in cases where the VG was on shared storage. The user
is now allowed to investigate potential problems and decide how
and when to repair them.
Repairing bad/old metadata
--------------------------
When label scan sees bad metadata in an mda, that mda is removed
from the lvmcache info->mdas list. This means that vg_read will
skip it, and not attempt to read/process it again. If it was
the only in-use mda on a PV, that PV is treated like a PV with
no mdas. It also means that vg_write will also skip the bad mda,
and not attempt to write new metadata to it. The only way to
repair bad metadata is with the metadata repair command.
When label scan sees old metadata in an mda, that mda is kept
in the lvmcache info->mdas list. This means that vg_read will
read/process it again, and likely see the same mismatch with
the other copies of the metadata. Like the label_scan, the
vg_read will simply ignore the old copy of the metadata and
use the latest copy. If the command is modifying the vg
(e.g. lvcreate), then vg_write, which writes new metadata to
every mda on info->mdas, will write the new metadata to the
mda that had the old version. If successful, this will resolve
the old metadata problem (without needing to run a metadata
repair command.)
Outdated PVs
------------
An outdated PV is a PV that has an old copy of VG metadata
that shows it is a member of the VG, but the latest copy of
the VG metadata does not include this PV. This happens if
the PV is disconnected, vgreduce --removemissing is run to
remove the PV from the VG, then the PV is reconnected.
In this case, the outdated PV needs have its outdated metadata
removed and the PV used flag needs to be cleared. This repair
will be done by the subsequent repair command. It is also done
if vgremove is run on the VG.
MISSING PVs
-----------
When a device is missing, most commands will refuse to modify
the VG. This is the simple case. More complicated is when
a command is allowed to modify the VG while it is missing a
device.
When a VG is written while a device is missing for one of it's PVs,
the VG metadata is written to disk with the MISSING flag on the PV
with the missing device. When the VG is next used, it is treated
as if the PV with the MISSING flag still has a missing device, even
if that device has reappeared.
If all LVs that were using a PV with the MISSING flag are removed
or repaired so that the MISSING PV is no longer used, then the
next time the VG metadata is written, the MISSING flag will be
dropped.
Alternative methods of clearing the MISSING flag are:
vgreduce --removemissing will remove PVs with missing devices,
or PVs with the MISSING flag where the device has reappeared.
vgextend --restoremissing will clear the MISSING flag on PVs
where the device has reappeared, allowing the VG to be used
normally. This must be done with caution since the reappeared
device may have old data that is inconsistent with data on other PVs.
Bad mda repair
--------------
The new command:
vgck --updatemetadata VG
first uses vg_write to repair old metadata, and other basic
issues mentioned above (old metadata, outdated PVs, pv_header
flags, MISSING_PV flags). It will also go further and repair
bad metadata:
. text metadata that has a bad checksum
. text metadata that is not parsable
. corrupt mda_header checksum and version fields
(To keep a clean diff, #if 0 is added around functions that
are replaced by new code. These commented functions are
removed by the following commit.)
2019-05-24 20:04:37 +03:00
# clear outdated metadata on PVs so they can be used again
vgck --updatemetadata $vg
pvscan --cache
2012-03-16 17:00:05 +04:00
pvcreate -ff " $@ "
improve reading and repairing vg metadata
The fact that vg repair is implemented as a part of vg read
has led to a messy and complicated implementation of vg_read,
and limited and uncontrolled repair capability. This splits
read and repair apart.
Summary
-------
- take all kinds of various repairs out of vg_read
- vg_read no longer writes anything
- vg_read now simply reads and returns vg metadata
- vg_read ignores bad or old copies of metadata
- vg_read proceeds with a single good copy of metadata
- improve error checks and handling when reading
- keep track of bad (corrupt) copies of metadata in lvmcache
- keep track of old (seqno) copies of metadata in lvmcache
- keep track of outdated PVs in lvmcache
- vg_write will do basic repairs
- new command vgck --updatemetdata will do all repairs
Details
-------
- In scan, do not delete dev from lvmcache if reading/processing fails;
the dev is still present, and removing it makes it look like the dev
is not there. Records are now kept about the problems with each PV
so they be fixed/repaired in the appropriate places.
- In scan, record a bad mda on failure, and delete the mda from
mda in use list so it will not be used by vg_read or vg_write,
only by repair.
- In scan, succeed if any good mda on a device is found, instead of
failing if any is bad. The bad/old copies of metadata should not
interfere with normal usage while good copies can be used.
- In scan, add a record of old mdas in lvmcache for later, do not repair
them while reading, and do not let them prevent us from finding and
using a good copy of metadata from elsewhere. One result is that
"inconsistent metadata" is no longer a read error, but instead a
record in lvmcache that can be addressed separate from the read.
- Treat a dev with no good mdas like a dev with no mdas, which is an
existing case we already handle.
- Don't use a fake vg "handle" for returning an error from vg_read,
or the vg_read_error function for getting that error number;
just return null if the vg cannot be read or used, and an error_flags
arg with flags set for the specific kind of error (which can be used
later for determining the kind of repair.)
- Saving an original copy of the vg metadata, for purposes of reverting
a write, is now done explicitly in vg_read instead of being hidden in
the vg_make_handle function.
- When a vg is not accessible due to "access restrictions" but is
otherwise fine, return the vg through the new error_vg arg so that
process_each_pv can skip the PVs in the VG while processing.
(This is a temporary accomodation for the way process_each_pv
tracks which devs have been looked at, and can be dropped later
when process_each_pv implementation dev tracking is changed.)
- vg_read does not try to fix or recover a vg, but now just reads the
metadata, checks access restrictions and returns it.
(Checking access restrictions might be better done outside of vg_read,
but this is a later improvement.)
- _vg_read now simply makes one attempt to read metadata from
each mda, and uses the most recent copy to return to the caller
in the form of a 'vg' struct.
(bad mdas were excluded during the scan and are not retried)
(old mdas were not excluded during scan and are retried here)
- vg_read uses _vg_read to get the latest copy of metadata from mdas,
and then makes various checks against it to produce warnings,
and to check if VG access is allowed (access restrictions include:
writable, foreign, shared, clustered, missing pvs).
- Things that were previously silently/automatically written by vg_read
that are now done by vg_write, based on the records made in lvmcache
during the scan and read:
. clearing the missing flag
. updating old copies of metadata
. clearing outdated pvs
. updating pv header flags
- Bad/corrupt metadata are now repaired; they were not before.
Test changes
------------
- A read command no longer writes the VG to repair it, so add a write
command to do a repair.
(inconsistent-metadata, unlost-pv)
- When a missing PV is removed from a VG, and then the device is
enabled again, vgck --updatemetadata is needed to clear the
outdated PV before it can be used again, where it wasn't before.
(lvconvert-repair-policy, lvconvert-repair-raid, lvconvert-repair,
mirror-vgreduce-removemissing, pv-ext-flags, unlost-pv)
Reading bad/old metadata
------------------------
- "bad metadata": the mda_header or metadata text has invalid fields
or can't be parsed by lvm. This is a form of corruption that would
not be caused by known failure scenarios. A checksum error is
typically included among the errors reported.
- "old metadata": a valid copy of the metadata that has a smaller seqno
than other copies of the metadata. This can happen if the device
failed, or io failed, or lvm failed while commiting new metadata
to all the metadata areas. Old metadata on a PV that has been
removed from the VG is the "outdated" case below.
When a VG has some PVs with bad/old metadata, lvm can simply ignore
the bad/old copies, and use a good copy. This is why there are
multiple copies of the metadata -- so it's available even when some
of the copies cannot be used. The bad/old copies do not have to be
repaired before the VG can be used (the repair can happen later.)
A PV with no good copies of the metadata simply falls back to being
treated like a PV with no mdas; a common and harmless configuration.
When bad/old metadata exists, lvm warns the user about it, and
suggests repairing it using a new metadata repair command.
Bad metadata in particular is something that users will want to
investigate and repair themselves, since it should not happen and
may indicate some other problem that needs to be fixed.
PVs with bad/old metadata are not the same as missing devices.
Missing devices will block various kinds of VG modification or
activation, but bad/old metadata will not.
Previously, lvm would attempt to repair bad/old metadata whenever
it was read. This was unnecessary since lvm does not require every
copy of the metadata to be used. It would also hide potential
problems that should be investigated by the user. It was also
dangerous in cases where the VG was on shared storage. The user
is now allowed to investigate potential problems and decide how
and when to repair them.
Repairing bad/old metadata
--------------------------
When label scan sees bad metadata in an mda, that mda is removed
from the lvmcache info->mdas list. This means that vg_read will
skip it, and not attempt to read/process it again. If it was
the only in-use mda on a PV, that PV is treated like a PV with
no mdas. It also means that vg_write will also skip the bad mda,
and not attempt to write new metadata to it. The only way to
repair bad metadata is with the metadata repair command.
When label scan sees old metadata in an mda, that mda is kept
in the lvmcache info->mdas list. This means that vg_read will
read/process it again, and likely see the same mismatch with
the other copies of the metadata. Like the label_scan, the
vg_read will simply ignore the old copy of the metadata and
use the latest copy. If the command is modifying the vg
(e.g. lvcreate), then vg_write, which writes new metadata to
every mda on info->mdas, will write the new metadata to the
mda that had the old version. If successful, this will resolve
the old metadata problem (without needing to run a metadata
repair command.)
Outdated PVs
------------
An outdated PV is a PV that has an old copy of VG metadata
that shows it is a member of the VG, but the latest copy of
the VG metadata does not include this PV. This happens if
the PV is disconnected, vgreduce --removemissing is run to
remove the PV from the VG, then the PV is reconnected.
In this case, the outdated PV needs have its outdated metadata
removed and the PV used flag needs to be cleared. This repair
will be done by the subsequent repair command. It is also done
if vgremove is run on the VG.
MISSING PVs
-----------
When a device is missing, most commands will refuse to modify
the VG. This is the simple case. More complicated is when
a command is allowed to modify the VG while it is missing a
device.
When a VG is written while a device is missing for one of it's PVs,
the VG metadata is written to disk with the MISSING flag on the PV
with the missing device. When the VG is next used, it is treated
as if the PV with the MISSING flag still has a missing device, even
if that device has reappeared.
If all LVs that were using a PV with the MISSING flag are removed
or repaired so that the MISSING PV is no longer used, then the
next time the VG metadata is written, the MISSING flag will be
dropped.
Alternative methods of clearing the MISSING flag are:
vgreduce --removemissing will remove PVs with missing devices,
or PVs with the MISSING flag where the device has reappeared.
vgextend --restoremissing will clear the MISSING flag on PVs
where the device has reappeared, allowing the VG to be used
normally. This must be done with caution since the reappeared
device may have old data that is inconsistent with data on other PVs.
Bad mda repair
--------------
The new command:
vgck --updatemetadata VG
first uses vg_write to repair old metadata, and other basic
issues mentioned above (old metadata, outdated PVs, pv_header
flags, MISSING_PV flags). It will also go further and repair
bad metadata:
. text metadata that has a bad checksum
. text metadata that is not parsable
. corrupt mda_header checksum and version fields
(To keep a clean diff, #if 0 is added around functions that
are replaced by new code. These commented functions are
removed by the following commit.)
2019-05-24 20:04:37 +03:00
# wipefs -a "$@"
2012-03-16 17:00:05 +04:00
vgextend $vg " $@ "
improve reading and repairing vg metadata
The fact that vg repair is implemented as a part of vg read
has led to a messy and complicated implementation of vg_read,
and limited and uncontrolled repair capability. This splits
read and repair apart.
Summary
-------
- take all kinds of various repairs out of vg_read
- vg_read no longer writes anything
- vg_read now simply reads and returns vg metadata
- vg_read ignores bad or old copies of metadata
- vg_read proceeds with a single good copy of metadata
- improve error checks and handling when reading
- keep track of bad (corrupt) copies of metadata in lvmcache
- keep track of old (seqno) copies of metadata in lvmcache
- keep track of outdated PVs in lvmcache
- vg_write will do basic repairs
- new command vgck --updatemetdata will do all repairs
Details
-------
- In scan, do not delete dev from lvmcache if reading/processing fails;
the dev is still present, and removing it makes it look like the dev
is not there. Records are now kept about the problems with each PV
so they be fixed/repaired in the appropriate places.
- In scan, record a bad mda on failure, and delete the mda from
mda in use list so it will not be used by vg_read or vg_write,
only by repair.
- In scan, succeed if any good mda on a device is found, instead of
failing if any is bad. The bad/old copies of metadata should not
interfere with normal usage while good copies can be used.
- In scan, add a record of old mdas in lvmcache for later, do not repair
them while reading, and do not let them prevent us from finding and
using a good copy of metadata from elsewhere. One result is that
"inconsistent metadata" is no longer a read error, but instead a
record in lvmcache that can be addressed separate from the read.
- Treat a dev with no good mdas like a dev with no mdas, which is an
existing case we already handle.
- Don't use a fake vg "handle" for returning an error from vg_read,
or the vg_read_error function for getting that error number;
just return null if the vg cannot be read or used, and an error_flags
arg with flags set for the specific kind of error (which can be used
later for determining the kind of repair.)
- Saving an original copy of the vg metadata, for purposes of reverting
a write, is now done explicitly in vg_read instead of being hidden in
the vg_make_handle function.
- When a vg is not accessible due to "access restrictions" but is
otherwise fine, return the vg through the new error_vg arg so that
process_each_pv can skip the PVs in the VG while processing.
(This is a temporary accomodation for the way process_each_pv
tracks which devs have been looked at, and can be dropped later
when process_each_pv implementation dev tracking is changed.)
- vg_read does not try to fix or recover a vg, but now just reads the
metadata, checks access restrictions and returns it.
(Checking access restrictions might be better done outside of vg_read,
but this is a later improvement.)
- _vg_read now simply makes one attempt to read metadata from
each mda, and uses the most recent copy to return to the caller
in the form of a 'vg' struct.
(bad mdas were excluded during the scan and are not retried)
(old mdas were not excluded during scan and are retried here)
- vg_read uses _vg_read to get the latest copy of metadata from mdas,
and then makes various checks against it to produce warnings,
and to check if VG access is allowed (access restrictions include:
writable, foreign, shared, clustered, missing pvs).
- Things that were previously silently/automatically written by vg_read
that are now done by vg_write, based on the records made in lvmcache
during the scan and read:
. clearing the missing flag
. updating old copies of metadata
. clearing outdated pvs
. updating pv header flags
- Bad/corrupt metadata are now repaired; they were not before.
Test changes
------------
- A read command no longer writes the VG to repair it, so add a write
command to do a repair.
(inconsistent-metadata, unlost-pv)
- When a missing PV is removed from a VG, and then the device is
enabled again, vgck --updatemetadata is needed to clear the
outdated PV before it can be used again, where it wasn't before.
(lvconvert-repair-policy, lvconvert-repair-raid, lvconvert-repair,
mirror-vgreduce-removemissing, pv-ext-flags, unlost-pv)
Reading bad/old metadata
------------------------
- "bad metadata": the mda_header or metadata text has invalid fields
or can't be parsed by lvm. This is a form of corruption that would
not be caused by known failure scenarios. A checksum error is
typically included among the errors reported.
- "old metadata": a valid copy of the metadata that has a smaller seqno
than other copies of the metadata. This can happen if the device
failed, or io failed, or lvm failed while commiting new metadata
to all the metadata areas. Old metadata on a PV that has been
removed from the VG is the "outdated" case below.
When a VG has some PVs with bad/old metadata, lvm can simply ignore
the bad/old copies, and use a good copy. This is why there are
multiple copies of the metadata -- so it's available even when some
of the copies cannot be used. The bad/old copies do not have to be
repaired before the VG can be used (the repair can happen later.)
A PV with no good copies of the metadata simply falls back to being
treated like a PV with no mdas; a common and harmless configuration.
When bad/old metadata exists, lvm warns the user about it, and
suggests repairing it using a new metadata repair command.
Bad metadata in particular is something that users will want to
investigate and repair themselves, since it should not happen and
may indicate some other problem that needs to be fixed.
PVs with bad/old metadata are not the same as missing devices.
Missing devices will block various kinds of VG modification or
activation, but bad/old metadata will not.
Previously, lvm would attempt to repair bad/old metadata whenever
it was read. This was unnecessary since lvm does not require every
copy of the metadata to be used. It would also hide potential
problems that should be investigated by the user. It was also
dangerous in cases where the VG was on shared storage. The user
is now allowed to investigate potential problems and decide how
and when to repair them.
Repairing bad/old metadata
--------------------------
When label scan sees bad metadata in an mda, that mda is removed
from the lvmcache info->mdas list. This means that vg_read will
skip it, and not attempt to read/process it again. If it was
the only in-use mda on a PV, that PV is treated like a PV with
no mdas. It also means that vg_write will also skip the bad mda,
and not attempt to write new metadata to it. The only way to
repair bad metadata is with the metadata repair command.
When label scan sees old metadata in an mda, that mda is kept
in the lvmcache info->mdas list. This means that vg_read will
read/process it again, and likely see the same mismatch with
the other copies of the metadata. Like the label_scan, the
vg_read will simply ignore the old copy of the metadata and
use the latest copy. If the command is modifying the vg
(e.g. lvcreate), then vg_write, which writes new metadata to
every mda on info->mdas, will write the new metadata to the
mda that had the old version. If successful, this will resolve
the old metadata problem (without needing to run a metadata
repair command.)
Outdated PVs
------------
An outdated PV is a PV that has an old copy of VG metadata
that shows it is a member of the VG, but the latest copy of
the VG metadata does not include this PV. This happens if
the PV is disconnected, vgreduce --removemissing is run to
remove the PV from the VG, then the PV is reconnected.
In this case, the outdated PV needs have its outdated metadata
removed and the PV used flag needs to be cleared. This repair
will be done by the subsequent repair command. It is also done
if vgremove is run on the VG.
MISSING PVs
-----------
When a device is missing, most commands will refuse to modify
the VG. This is the simple case. More complicated is when
a command is allowed to modify the VG while it is missing a
device.
When a VG is written while a device is missing for one of it's PVs,
the VG metadata is written to disk with the MISSING flag on the PV
with the missing device. When the VG is next used, it is treated
as if the PV with the MISSING flag still has a missing device, even
if that device has reappeared.
If all LVs that were using a PV with the MISSING flag are removed
or repaired so that the MISSING PV is no longer used, then the
next time the VG metadata is written, the MISSING flag will be
dropped.
Alternative methods of clearing the MISSING flag are:
vgreduce --removemissing will remove PVs with missing devices,
or PVs with the MISSING flag where the device has reappeared.
vgextend --restoremissing will clear the MISSING flag on PVs
where the device has reappeared, allowing the VG to be used
normally. This must be done with caution since the reappeared
device may have old data that is inconsistent with data on other PVs.
Bad mda repair
--------------
The new command:
vgck --updatemetadata VG
first uses vg_write to repair old metadata, and other basic
issues mentioned above (old metadata, outdated PVs, pv_header
flags, MISSING_PV flags). It will also go further and repair
bad metadata:
. text metadata that has a bad checksum
. text metadata that is not parsable
. corrupt mda_header checksum and version fields
(To keep a clean diff, #if 0 is added around functions that
are replaced by new code. These commented functions are
removed by the following commit.)
2019-05-24 20:04:37 +03:00
2008-10-14 23:41:12 +04:00
check_and_cleanup_lvs_
2008-01-17 21:29:36 +03:00
}
2012-03-16 17:00:05 +04:00
#COMM "check environment setup/cleanup"
prepare_lvs_
2008-10-14 23:41:12 +04:00
check_and_cleanup_lvs_
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# one of mirror images has failed
2008-10-14 23:41:12 +04:00
#COMM "basic: fail the 2nd mirror image of 2-way mirrored LV"
2008-09-29 20:02:50 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev3 " :$BLOCKS
2014-03-20 02:32:25 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mirrorlog_is_on_ $lv1 " $dev3 "
2012-03-16 17:00:05 +04:00
aux disable_dev " $dev2 "
2008-09-29 20:02:50 +04:00
vgreduce --removemissing --force $vg
lv_is_linear_ $lv1
2012-03-16 17:00:05 +04:00
lv_is_on_ $lv1 " $dev1 "
2008-09-29 20:02:50 +04:00
2008-10-14 23:41:12 +04:00
# "cleanup"
2012-03-16 17:00:05 +04:00
recover_vg_ " $dev2 "
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# LV has 3 images in flat,
# 1 out of 3 images fails
2008-10-14 23:41:12 +04:00
#COMM test_3way_mirror_fail_1_ <PV# to fail>
2008-01-17 21:29:36 +03:00
test_3way_mirror_fail_1_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m2 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev3 " " $dev4 " :$BLOCKS
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 "
mirrorlog_is_on_ $lv1 " $dev4 "
2017-07-08 19:23:47 +03:00
eval aux disable_dev " \$dev $index "
2008-10-14 23:41:12 +04:00
vgreduce --removemissing --force $vg
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 3 )
2017-07-08 19:23:47 +03:00
mimages_are_on_ " $lv1 " " ${ list_pvs [@] } "
2012-03-16 17:00:05 +04:00
mirrorlog_is_on_ $lv1 " $dev4 "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 3) ; do
2008-10-14 23:41:12 +04:00
#COMM fail mirror image $(($n - 1)) of 3-way mirrored LV"
prepare_lvs_
test_3way_mirror_fail_1_ $n
2017-07-08 19:23:47 +03:00
eval recover_vg_ " \$dev $n "
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# LV has 3 images in flat,
# 2 out of 3 images fail
2008-10-14 23:41:12 +04:00
#COMM test_3way_mirror_fail_2_ <PV# NOT to fail>
2008-01-17 21:29:36 +03:00
test_3way_mirror_fail_2_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m2 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev3 " " $dev4 " :$BLOCKS
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 "
mirrorlog_is_on_ $lv1 " $dev4 "
2017-07-08 19:23:47 +03:00
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 3 )
2017-07-08 19:23:47 +03:00
aux disable_dev " ${ list_pvs [@] } "
2008-10-14 23:41:12 +04:00
vgreduce --force --removemissing $vg
2011-01-05 03:16:18 +03:00
lv_is_linear_ $lv1
2017-07-08 19:23:47 +03:00
eval lv_is_on_ $lv1 " \$dev $n "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 3) ; do
2008-10-14 23:41:12 +04:00
#COMM fail mirror images other than mirror image $(($n - 1)) of 3-way mirrored LV
prepare_lvs_
test_3way_mirror_fail_2_ $n
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $n " 3 )
2017-07-08 19:23:47 +03:00
recover_vg_ " ${ list_pvs [@] } "
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# LV has 4 images, 1 of them is in the temporary mirror for syncing.
# 1 out of 4 images fails
2008-10-14 23:41:12 +04:00
#COMM test_3way_mirror_plus_1_fail_1_ <PV# to fail>
2008-01-17 21:29:36 +03:00
test_3way_mirror_plus_1_fail_1_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m2 -n $lv1 $vg " $dev1 " " $dev2 " " $dev3 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+1 $vg /$lv1 " $dev4 "
check mirror_images_on $vg $lv1 " $dev1 " " $dev2 " " $dev3 " " $dev4 "
check mirror_log_on $vg $lv1 " $dev5 "
eval aux disable_dev \$ dev$index
vgreduce --removemissing --force $vg
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 4 )
2017-07-08 19:23:47 +03:00
check mirror_images_on $vg $lv1 " ${ list_pvs [@] } "
2012-03-16 17:00:05 +04:00
check mirror_log_on $vg $lv1 " $dev5 "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 4) ; do
2008-10-14 23:41:12 +04:00
#COMM "fail mirror image $(($n - 1)) of 4-way (1 converting) mirrored LV"
prepare_lvs_
test_3way_mirror_plus_1_fail_1_ $n
eval recover_vg_ \$ dev$n
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# LV has 4 images, 1 of them is in the temporary mirror for syncing.
# 3 out of 4 images fail
2008-10-14 23:41:12 +04:00
#COMM test_3way_mirror_plus_1_fail_3_ <PV# NOT to fail>
2008-01-17 21:29:36 +03:00
test_3way_mirror_plus_1_fail_3_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2014-06-30 22:04:24 +04:00
local dev
2008-10-14 23:41:12 +04:00
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m2 -n $lv1 $vg " $dev1 " " $dev2 " " $dev3 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+1 $vg /$lv1 " $dev4 "
check mirror_images_on $vg $lv1 " $dev1 " " $dev2 " " $dev3 " " $dev4 "
check mirror_log_on $vg $lv1 " $dev5 "
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 4 )
2017-07-08 19:23:47 +03:00
aux disable_dev " ${ list_pvs [@] } "
2011-05-07 19:52:16 +04:00
vgreduce --removemissing --force $vg
lvs -a -o+devices $vg
2014-06-30 22:04:24 +04:00
eval dev = \$ dev$n
2011-05-07 19:52:16 +04:00
check linear $vg $lv1
2014-06-30 22:04:24 +04:00
check lv_on $vg $lv1 " $dev "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 4) ; do
2008-10-14 23:41:12 +04:00
#COMM "fail mirror images other than mirror image $(($n - 1)) of 4-way (1 converting) mirrored LV"
prepare_lvs_
test_3way_mirror_plus_1_fail_3_ $n
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $n " 4 )
2017-07-08 19:23:47 +03:00
recover_vg_ " ${ list_pvs [@] } "
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# LV has 4 images, 2 of them are in the temporary mirror for syncing.
# 1 out of 4 images fail
# test_2way_mirror_plus_2_fail_1_ <PV# to fail>
test_2way_mirror_plus_2_fail_1_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+2 $vg /$lv1 " $dev3 " " $dev4 "
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 " " $dev4 "
mirrorlog_is_on_ $lv1 " $dev5 "
eval aux disable_dev \$ dev$n
vgreduce --removemissing --force $vg
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 4 )
2017-07-08 19:23:47 +03:00
mimages_are_on_ " $lv1 " " ${ list_pvs [@] } "
2012-03-16 17:00:05 +04:00
mirrorlog_is_on_ $lv1 " $dev5 "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 4) ; do
2012-03-16 17:00:05 +04:00
#COMM "fail mirror image $(($n - 1)) of 4-way (2 converting) mirrored LV"
prepare_lvs_
2008-10-14 23:41:12 +04:00
test_2way_mirror_plus_2_fail_1_ $n
2017-07-08 19:23:47 +03:00
eval recover_vg_ " \$dev $n "
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# LV has 4 images, 2 of them are in the temporary mirror for syncing.
# 3 out of 4 images fail
# test_2way_mirror_plus_2_fail_3_ <PV# NOT to fail>
test_2way_mirror_plus_2_fail_3_( )
{
2008-10-14 23:41:12 +04:00
local index = $1
2014-06-30 22:04:24 +04:00
local dev
2008-10-14 23:41:12 +04:00
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+2 $vg /$lv1 " $dev3 " " $dev4 "
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 " " $dev4 "
mirrorlog_is_on_ $lv1 " $dev5 "
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $index " 4 )
2017-07-08 19:23:47 +03:00
aux disable_dev " ${ list_pvs [@] } "
2012-03-16 17:00:05 +04:00
vgreduce --removemissing --force $vg
lvs -a -o+devices $vg
2014-06-30 22:04:24 +04:00
eval dev = \$ dev$n
2017-07-12 02:16:10 +03:00
not mimages_are_on_ $lv1 " $dev "
lv_is_on_ $lv1 " $dev "
2012-03-16 17:00:05 +04:00
not mirrorlog_is_on_ $lv1 " $dev5 "
2008-01-17 21:29:36 +03:00
}
for n in $( seq 1 4) ; do
2008-10-14 23:41:12 +04:00
#COMM "fail mirror images other than mirror image $(($n - 1)) of 4-way (2 converting) mirrored LV"
prepare_lvs_
test_2way_mirror_plus_2_fail_3_ $n
2017-07-10 18:40:31 +03:00
list_pvs = ( ) ; while IFS = read -r line ; do
list_pvs += ( " $line " )
done < <( rest_pvs_ " $n " 4 )
2017-07-08 19:23:47 +03:00
recover_vg_ " ${ list_pvs [@] } "
2008-01-17 21:29:36 +03:00
done
# ---------------------------------------------------------------------
# log device is gone (flat mirror and stacked mirror)
2012-03-16 17:00:05 +04:00
#COMM "fail mirror log of 2-way mirrored LV"
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -aey -l2 --type mirror -m1 -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mirrorlog_is_on_ $lv1 " $dev5 "
aux disable_dev " $dev5 "
vgreduce --removemissing --force $vg
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
not mirrorlog_is_on_ $lv1 " $dev5 "
recover_vg_ " $dev5 "
#COMM "fail mirror log of 3-way (1 converting) mirrored LV"
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -aey -l2 --type mirror -m1 -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+1 $vg /$lv1 " $dev3 "
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 "
mirrorlog_is_on_ $lv1 " $dev5 "
aux disable_dev " $dev5 "
vgreduce --removemissing --force $vg
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 "
not mirrorlog_is_on_ $lv1 " $dev5 "
recover_vg_ " $dev5 "
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# all images are gone (flat mirror and stacked mirror)
2008-10-14 23:41:12 +04:00
#COMM "fail all mirror images of 2-way mirrored LV"
2012-03-16 17:00:05 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mirrorlog_is_on_ $lv1 " $dev5 "
aux disable_dev " $dev1 " " $dev2 "
vgreduce --removemissing --force $vg
2008-10-14 23:41:12 +04:00
not lvs $vg /$lv1
2012-03-16 17:00:05 +04:00
recover_vg_ " $dev1 " " $dev2 "
2008-10-14 23:41:12 +04:00
#COMM "fail all mirror images of 3-way (1 converting) mirrored LV"
2012-03-16 17:00:05 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
lvconvert -m+1 $vg /$lv1 " $dev3 "
mimages_are_on_ $lv1 " $dev1 " " $dev2 " " $dev3 "
mirrorlog_is_on_ $lv1 " $dev5 "
aux disable_dev " $dev1 " " $dev2 " " $dev3 "
vgreduce --removemissing --force $vg
2008-10-14 23:41:12 +04:00
not lvs $vg /$lv1
2012-03-16 17:00:05 +04:00
recover_vg_ " $dev1 " " $dev2 " " $dev3 "
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# Multiple LVs
2008-10-14 23:41:12 +04:00
#COMM "fail a mirror image of one of mirrored LV"
2012-03-16 17:00:05 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv2 $vg " $dev3 " " $dev4 " " $dev5 " :$BLOCKS1
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mimages_are_on_ $lv2 " $dev3 " " $dev4 "
mirrorlog_is_on_ $lv1 " $dev5 "
mirrorlog_is_on_ $lv2 " $dev5 "
aux disable_dev " $dev2 "
vgreduce --removemissing --force $vg
mimages_are_on_ $lv2 " $dev3 " " $dev4 "
mirrorlog_is_on_ $lv2 " $dev5 "
lv_is_linear_ $lv1
lv_is_on_ $lv1 " $dev1 "
recover_vg_ " $dev2 "
2008-10-14 23:41:12 +04:00
#COMM "fail mirror images, one for each mirrored LV"
2012-03-16 17:00:05 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv2 $vg " $dev3 " " $dev4 " " $dev5 " :$BLOCKS1
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mimages_are_on_ $lv2 " $dev3 " " $dev4 "
mirrorlog_is_on_ $lv1 " $dev5 "
mirrorlog_is_on_ $lv2 " $dev5 "
aux disable_dev " $dev2 "
aux disable_dev " $dev4 "
vgreduce --removemissing --force $vg
lv_is_linear_ $lv1
lv_is_on_ $lv1 " $dev1 "
lv_is_linear_ $lv2
lv_is_on_ $lv2 " $dev3 "
recover_vg_ " $dev2 " " $dev4 "
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------
# no failure
2008-10-14 23:41:12 +04:00
#COMM "no failures"
2012-03-16 17:00:05 +04:00
prepare_lvs_
2013-08-08 00:48:31 +04:00
lvcreate -an -Zn -l2 --type mirror -m1 --nosync -n $lv1 $vg " $dev1 " " $dev2 " " $dev5 " :$BLOCKS
2012-03-16 17:00:05 +04:00
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mirrorlog_is_on_ $lv1 " $dev5 "
vgreduce --removemissing --force $vg
mimages_are_on_ $lv1 " $dev1 " " $dev2 "
mirrorlog_is_on_ $lv1 " $dev5 "
2008-10-14 23:41:12 +04:00
check_and_cleanup_lvs_
2008-01-17 21:29:36 +03:00
# ---------------------------------------------------------------------