summaryrefslogtreecommitdiffstats
path: root/block
diff options
context:
space:
mode:
authorWenwen Wang <wenwen@cs.uga.edu>2019-07-11 14:22:02 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2019-07-31 07:24:53 +0200
commite9094b6117362ff8b020f26cff02d67bf30112d0 (patch)
treeb087b1eaf294700732cdf67664e1a969899eb079 /block
parentcdc73257a41a85b34db158c136f602ea71eaea74 (diff)
downloadlinux-stable-e9094b6117362ff8b020f26cff02d67bf30112d0.tar.gz
linux-stable-e9094b6117362ff8b020f26cff02d67bf30112d0.tar.bz2
linux-stable-e9094b6117362ff8b020f26cff02d67bf30112d0.zip
block/bio-integrity: fix a memory leak bug
[ Upstream commit e7bf90e5afe3aa1d1282c1635a49e17a32c4ecec ] In bio_integrity_prep(), a kernel buffer is allocated through kmalloc() to hold integrity metadata. Later on, the buffer will be attached to the bio structure through bio_integrity_add_page(), which returns the number of bytes of integrity metadata attached. Due to unexpected situations, bio_integrity_add_page() may return 0. As a result, bio_integrity_prep() needs to be terminated with 'false' returned to indicate this error. However, the allocated kernel buffer is not freed on this execution path, leading to a memory leak. To fix this issue, free the allocated buffer before returning from bio_integrity_prep(). Reviewed-by: Ming Lei <ming.lei@redhat.com> Acked-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu> Signed-off-by: Jens Axboe <axboe@kernel.dk> Signed-off-by: Sasha Levin <sashal@kernel.org>
Diffstat (limited to 'block')
-rw-r--r--block/bio-integrity.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/block/bio-integrity.c b/block/bio-integrity.c
index 4db620849515..fb95dbb21dd8 100644
--- a/block/bio-integrity.c
+++ b/block/bio-integrity.c
@@ -276,8 +276,12 @@ bool bio_integrity_prep(struct bio *bio)
ret = bio_integrity_add_page(bio, virt_to_page(buf),
bytes, offset);
- if (ret == 0)
- return false;
+ if (ret == 0) {
+ printk(KERN_ERR "could not attach integrity payload\n");
+ kfree(buf);
+ status = BLK_STS_RESOURCE;
+ goto err_end_io;
+ }
if (ret < bytes)
break;