]> git.baikalelectronics.ru Git - kernel.git/commit
dm mirror log: round up region bitmap size to BITS_PER_LONG
authorMikulas Patocka <mpatocka@redhat.com>
Thu, 16 Jun 2022 17:28:57 +0000 (13:28 -0400)
committerMike Snitzer <snitzer@kernel.org>
Thu, 16 Jun 2022 23:39:29 +0000 (19:39 -0400)
commitf569a3ade581fb8ed0934becf0409d588103d19e
treeac5f5270006dc9c408fb1393a6b5f16dcd949431
parentff9d02d3d6619339b5c8d828be8a08e86b394d0b
dm mirror log: round up region bitmap size to BITS_PER_LONG

The code in dm-log rounds up bitset_size to 32 bits. It then uses
find_next_zero_bit_le on the allocated region. find_next_zero_bit_le
accesses the bitmap using unsigned long pointers. So, on 64-bit
architectures, it may access 4 bytes beyond the allocated size.

Fix this bug by rounding up bitset_size to BITS_PER_LONG.

This bug was found by running the lvm2 testsuite with kasan.

Fixes: fccf92f72768 ("[PATCH] dm mirror log: bitset_size fix")
Cc: stable@vger.kernel.org
Signed-off-by: Mikulas Patocka <mpatocka@redhat.com>
Signed-off-by: Mike Snitzer <snitzer@kernel.org>
drivers/md/dm-log.c