]> Git Repo - linux.git/commitdiff
block: Fix wrong offset in bio_truncate()
authorOGAWA Hirofumi <[email protected]>
Sun, 9 Jan 2022 09:36:43 +0000 (18:36 +0900)
committerJens Axboe <[email protected]>
Thu, 20 Jan 2022 13:30:12 +0000 (06:30 -0700)
bio_truncate() clears the buffer outside of last block of bdev, however
current bio_truncate() is using the wrong offset of page. So it can
return the uninitialized data.

This happened when both of truncated/corrupted FS and userspace (via
bdev) are trying to read the last of bdev.

Reported-by: [email protected]
Signed-off-by: OGAWA Hirofumi <[email protected]>
Reviewed-by: Ming Lei <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Jens Axboe <[email protected]>
block/bio.c

index 0d400ba2dbd18f65cd98f0ffdea563f14b48877c..4312a8085396b6d232b2dfa13c6487bd9eb3db04 100644 (file)
@@ -569,7 +569,8 @@ static void bio_truncate(struct bio *bio, unsigned new_size)
                                offset = new_size - done;
                        else
                                offset = 0;
-                       zero_user(bv.bv_page, offset, bv.bv_len - offset);
+                       zero_user(bv.bv_page, bv.bv_offset + offset,
+                                 bv.bv_len - offset);
                        truncated = true;
                }
                done += bv.bv_len;
This page took 0.055315 seconds and 4 git commands to generate.