[SRU][Xenial][PATCH 0/1] Mounting LVM snapshots with xfs can hit kernel BUG in nvme driver
Heitor Alves de Siqueira
halves at canonical.com
Thu Mar 26 18:27:35 UTC 2020
BugLink: https://bugs.launchpad.net/bugs/1869229
[Impact]
When mounting LVM snapshots using xfs, it's possible to hit a BUG_ON()
in nvme driver.
Upstream commit 729204ef49ec ("block: relax check on sg gap") introduced
a way to merge bios if they are physically contiguous. This can lead to
issues if one rq starts with a non-aligned buffer, as it can cause the
merged segment to end in an unaligned virtual boundary. In some AWS
instances, it's possible to craft such a request when attempting to
mount LVM snapshots using xfs. This will then cause a kernel spew due to
a BUG_ON in nvme_setup_prps(), which checks if dma_len is aligned to the
page size.
[Fix]
Upstream commit 5a8d75a1b8c9 ("block: fix bio_will_gap() for first bvec
with offset") prevents requests that begin with an unaligned buffer
from being merged.
[Test Case]
This has been verified on AWS with c5d.large instances.
1) Prepare the LVM device + snapshot:
$ sudo vgcreate vg0 /dev/nvme1n1
$ sudo lvcreate -L5G -n data0 vg0
$ sudo mkfs.xfs /dev/vg0/data0
$ sudo mount /dev/vg0/data0 /mnt
$ sudo touch /mnt/test
$ sudo touch /mnt/test2
$ sudo ls /mnt
$ sudo umount /mnt
$ sudo lvcreate -l100%FREE -s /dev/vg0/data0 -n data0_snap
2) Attempting to mount the snapshot results in the Oops:
$ sudo mount /dev/vg0/data0_snap /mnt
Segmentation fault (core dumped)
[Regression Potential]
The fix prevents some bios from being merged, so it can have a
performance impact in certain scenarios. The patch only targets
misaligned segments, so the impact should be less noticeable in the
general case. The commit is also present in mainline kernels since
4.13, and hasn't been changed significantly, so potential for other
regressions should be low.
Ming Lei (1):
block: fix bio_will_gap() for first bvec with offset
include/linux/blkdev.h | 32 ++++++++++++++++++++++++++++----
1 file changed, 28 insertions(+), 4 deletions(-)
--
2.26.0
More information about the kernel-team
mailing list