summaryrefslogtreecommitdiffstats
path: root/mm
diff options
context:
space:
mode:
authorMikulas Patocka <mpatocka@redhat.com>2013-10-16 03:17:47 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-04 04:23:42 -0800
commitdf6516ade182c732e3d2691e0b60190f7abc1261 (patch)
tree7f309f6746c81179eda63ff6b324e6b7480c8faa /mm
parent6f4f3714260023be6ddfcc0bc56191acc450f0ca (diff)
downloadlinux-stable-df6516ade182c732e3d2691e0b60190f7abc1261.tar.gz
linux-stable-df6516ade182c732e3d2691e0b60190f7abc1261.tar.bz2
linux-stable-df6516ade182c732e3d2691e0b60190f7abc1261.zip
dm snapshot: fix data corruption
commit e9c6a182649f4259db704ae15a91ac820e63b0ca upstream. This patch fixes a particular type of data corruption that has been encountered when loading a snapshot's metadata from disk. When we allocate a new chunk in persistent_prepare, we increment ps->next_free and we make sure that it doesn't point to a metadata area by further incrementing it if necessary. When we load metadata from disk on device activation, ps->next_free is positioned after the last used data chunk. However, if this last used data chunk is followed by a metadata area, ps->next_free is positioned erroneously to the metadata area. A newly-allocated chunk is placed at the same location as the metadata area, resulting in data or metadata corruption. This patch changes the code so that ps->next_free skips the metadata area when metadata are loaded in function read_exceptions. The patch also moves a piece of code from persistent_prepare_exception to a separate function skip_metadata to avoid code duplication. CVE-2013-4299 Signed-off-by: Mikulas Patocka <mpatocka@redhat.com> Cc: Mike Snitzer <snitzer@redhat.com> Signed-off-by: Alasdair G Kergon <agk@redhat.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'mm')
0 files changed, 0 insertions, 0 deletions