summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* build: make generatedev-mcsontos-generateMarian Csontos2019-06-149-538/+52
|
* WHATS_NEW for recent changesDavid Teigland2019-06-131-0/+7
|
* tests: aux have_writecacheDavid Teigland2019-06-131-0/+8
| | | | function was never defined, causing writecache.sh to be skipped
* vgchange: change debug message levelDavid Teigland2019-06-111-2/+2
| | | | A debug message was mistakely left visible.
* lvmcache: remove wrapper around lvmcache_get_vgnameidsDavid Teigland2019-06-116-33/+24
| | | | | This was left over from when there was an lvmetad version of the function.
* remove unused trustcache optionDavid Teigland2019-06-115-31/+6
|
* tests: correct checked target nameZdenek Kabelac2019-06-111-1/+1
| | | | | | So when the target name happened to be a suffix of another one, the grep was filtering incorrect line (i.e. dm-cache && dm-writecache) - so do a line head matching.
* fix command definition for pvchange -aDavid Teigland2019-06-105-37/+104
| | | | | | | | | | | The -a was being included in the set of "one or more" options instead of an actual required option. Even though the cmd def was not implementing the restrictions correctly, the command internally was. Adjust the cmd def code which did not support a command with some real required options and a set of "one or more" options.
* locking: fix repeated convert to exDavid Teigland2019-06-101-0/+4
| | | | | Some uncommon commands like pvchange -a -u may call convert to ex multiple times.
* lvmcache: remove unused functionDavid Teigland2019-06-103-57/+2
| | | | | Drop lvmcache_fmt_from_vgname(), the way it was called made it identical to the existing lvmcache_vginfo_from_vgname().
* vgsplit: simplify vg creationDavid Teigland2019-06-102-166/+29
| | | | | | The way that this command now uses the global lock followed by a label scan, it can simply check if the new VG name exists, and if not lock it and create it.
* lvmcache: remove unused codeDavid Teigland2019-06-102-133/+0
|
* reset cmd wipe_outdated_pvsDavid Teigland2019-06-102-6/+6
| | | | | at the start of a command, which is needed in case the cmd struct is reused.
* locking: reset global_ex flag at end of cmdDavid Teigland2019-06-103-3/+11
| | | | | | | These two flags may be not reset at the end of the command when the unlock is implicit, which is a problem if the cmd struct is reused. Clear the flags in the general fin_locking.
* Merge remote-tracking branch 'origin/master'Marian Csontos2019-06-1049-1737/+2820
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * origin/master: (22 commits) tests: add metadata-bad-mdaheader.sh tests: add metadata-bad-text.sh tests: add outdated-pv.sh tests: add metadata-old.sh tests: add missing-pv missing-pv-unused metadata.c: removed unused code improve reading and repairing vg metadata add a warning message when updating old metadata vgcfgbackup add error messages vgck --updatemetadata is a new command move pv header repairs to vg_write process_each_pv handle outdated pvs move wipe_outdated_pvs to vg_write create separate lvmcache update functions for read and write fix vg_commit return value change args for text label read function add mda arg to add_mda keep track of which mdas have old metadata in lvmcache ability to keep track of outdated pvs in lvmcache ability to keep track of bad mdas in lvmcache ...
| * tests: add metadata-bad-mdaheader.shDavid Teigland2019-06-071-0/+80
| | | | | | | | needs xxd command
| * tests: add metadata-bad-text.shDavid Teigland2019-06-071-0/+236
| |
| * tests: add outdated-pv.shDavid Teigland2019-06-071-0/+66
| |
| * tests: add metadata-old.shDavid Teigland2019-06-071-0/+177
| |
| * tests: add missing-pv missing-pv-unusedDavid Teigland2019-06-072-0/+238
| |
| * metadata.c: removed unused codeDavid Teigland2019-06-071-1189/+0
| | | | | | | | | | if 0 was placed around old vg_read code by the previous commit.
| * improve reading and repairing vg metadataDavid Teigland2019-06-0725-236/+965
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.)
| * add a warning message when updating old metadataDavid Teigland2019-06-071-0/+21
| | | | | | | | in an mda that had previously not been updated
| * vgcfgbackup add error messagesDavid Teigland2019-06-071-0/+17
| |
| * vgck --updatemetadata is a new commandDavid Teigland2019-06-078-1/+152
| | | | | | | | | | | | uses vg_write to correct more common or less severe issues, and also adds the ability to repair some metadata corruption that couldn't be handled previously.
| * move pv header repairs to vg_writeDavid Teigland2019-06-072-148/+34
| | | | | | | | | | Correct PV header in-use or version fields from vg_write instead of vg_read.
| * process_each_pv handle outdated pvsDavid Teigland2019-06-071-0/+10
| | | | | | | | | | process_each_pv should account for outdated pvs in the list of all devices it is processing.
| * move wipe_outdated_pvs to vg_writeDavid Teigland2019-06-075-53/+109
| | | | | | | | | | | | | | | | | | | | and implement it based on a device, not based on a pv struct (which is not available when the device is not a part of the vg.) currently only the vgremove command wipes outdated pvs until more advanced recovery is added in a subsequent commit
| * create separate lvmcache update functions for read and writeDavid Teigland2019-06-073-5/+130
| | | | | | | | | | | | | | | | | | The vg read and vg write cases need to update lvmcache differently, so create separate functions for them. The read case now handles checking for outdated mdas and moves them aside into a new list to be repaired in a subsequent commit.
| * fix vg_commit return valueDavid Teigland2019-06-071-6/+11
| | | | | | | | | | | | | | The existing comment was desribing the correct behavior, but the code didn't match. The commit is successful if one mda was committed. Making it depend on the result of the internal lvmcache update was wrong.
| * change args for text label read functionDavid Teigland2019-06-076-26/+70
| | | | | | | | | | | | | | | | | | | | | | | | Have the caller pass the label_sector to the read function so the read function can set the sector field in the label struct, instead of having the read function return a pointer to the label for the caller to set the sector field. Also have the read function return a flag indicating to the caller that the scanned device was identified as a duplicate pv.
| * add mda arg to add_mdaDavid Teigland2019-06-075-7/+13
| | | | | | | | | | Allow the caller of lvmcache_add_mda() to have the new mda returned.
| * keep track of which mdas have old metadata in lvmcacheDavid Teigland2019-06-072-38/+145
| | | | | | | | | | This will be used for more advanced repair in a subsequent commit.
| * ability to keep track of outdated pvs in lvmcacheDavid Teigland2019-06-072-0/+95
| | | | | | | | | | | | | | | | Outdated PVs hold metadata for VG from which they have been removed. Add the ability to keep track of these in lvmcache. This will be used for more advanced repair in a subsequent commit.
| * ability to keep track of bad mdas in lvmcacheDavid Teigland2019-06-073-1/+65
| | | | | | | | | | | | | | mda's that cannot be processed by lvm because of some corruption can be kept on a separate list. These will be used for more advanced repair in a subsequent commit.
| * add flags to keep track of bad metadataDavid Teigland2019-06-074-17/+48
| | | | | | | | | | | | | | When reading metadata headers and text, use a new set of flags to identify specific errors that are seen. These will be used for more advanced repair in a subsequent commit.
| * Additional MD component checkingDavid Teigland2019-06-0710-38/+166
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If udev info is missing for a device, (which would indicate if it's an MD component), then do an end-of-device read to check if a PV is an MD component. (This is skipped when using hints since we already know devs in hints are good.) A new config setting md_component_checks can be used to disable the additional end-of-device MD checks, or to always enable end-of-device MD checks. When both hints and udev info are disabled/unavailable, the end of PVs will now be scanned by default. If md devices with end-of-device superblocks are not being used, the extra I/O overhead can be avoided by setting md_component_checks="start".
* | post-releaseMarian Csontos2019-06-104-2/+8
| |
* | pre-releasev2_03_04Marian Csontos2019-06-104-5/+6
| |
* | build: make generateMarian Csontos2019-06-074-13/+177
| |
* | build: autoreconfMarian Csontos2019-06-072-3/+108
|/
* Merge remote-tracking branch 'origin/master'Marian Csontos2019-06-073-10/+9
|\ | | | | | | | | * origin/master: lvmcache: remove unused_duplicate_devs list from cmd
| * lvmcache: remove unused_duplicate_devs list from cmdDavid Teigland2019-06-073-10/+9
| | | | | | | | | | | | | | | | | | Save the previous duplicate PVs in a global list instead of a list on the cmd struct. dmeventd reuses the cmd struct for multiple commands, and the list entries between commands were being freed (apparently), causing a segfault in dmeventd when it tried to use items in cmd->unused_duplicate_devs that had been saved there by the previous command.
* | post-releaseMarian Csontos2019-06-074-3/+9
| |
* | pre-releasev2_03_03Marian Csontos2019-06-074-7/+15
|/
* tests: pvscan-autoactivate check for machine-idDavid Teigland2019-06-061-0/+4
|
* pvck: use new dump routines for old outputDavid Teigland2019-06-054-306/+92
| | | | | | | | | | Use the recently added dump routines to produce the old/traditional pvck output, and remove the code that had been used for that. The validation/checking done by the new routines means that new lines prefixed with CHECK are printed for incorrect values.
* tests: pvck-dumpDavid Teigland2019-06-051-0/+119
|
* pvck: dump metadata_allDavid Teigland2019-06-052-14/+348
| | | | | This searches the entire metadata area for any copy of the metadata and dumps it to file.
* tests: check no_discard_passdownZdenek Kabelac2019-06-051-0/+45
| | | | Check reporting works