linux-block.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] block/bio-integrity: fix a memory leak bug
@ 2019-07-11 19:22 Wenwen Wang
  2019-07-12  0:33 ` Ming Lei
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Wenwen Wang @ 2019-07-11 19:22 UTC (permalink / raw)
  To: Wenwen Wang; +Cc: Jens Axboe, open list:BLOCK LAYER, open list

From: Wenwen Wang <wenwen@cs.uga.edu>

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().

Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
---
 block/bio-integrity.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/block/bio-integrity.c b/block/bio-integrity.c
index 4db6208..fb95dbb 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;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] block/bio-integrity: fix a memory leak bug
  2019-07-11 19:22 [PATCH v2] block/bio-integrity: fix a memory leak bug Wenwen Wang
@ 2019-07-12  0:33 ` Ming Lei
  2019-07-12  1:10 ` Martin K. Petersen
  2019-07-12  2:02 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Ming Lei @ 2019-07-12  0:33 UTC (permalink / raw)
  To: Wenwen Wang; +Cc: Wenwen Wang, Jens Axboe, open list:BLOCK LAYER, open list

On Fri, Jul 12, 2019 at 3:29 AM Wenwen Wang <wang6495@umn.edu> wrote:
>
> From: Wenwen Wang <wenwen@cs.uga.edu>
>
> 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().
>
> Signed-off-by: Wenwen Wang <wenwen@cs.uga.edu>
> ---
>  block/bio-integrity.c | 8 ++++++--
>  1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/block/bio-integrity.c b/block/bio-integrity.c
> index 4db6208..fb95dbb 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;

Looks fine:

Reviewed-by: Ming Lei <ming.lei@redhat.com>


Thanks,
Ming Lei

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] block/bio-integrity: fix a memory leak bug
  2019-07-11 19:22 [PATCH v2] block/bio-integrity: fix a memory leak bug Wenwen Wang
  2019-07-12  0:33 ` Ming Lei
@ 2019-07-12  1:10 ` Martin K. Petersen
  2019-07-12  2:02 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Martin K. Petersen @ 2019-07-12  1:10 UTC (permalink / raw)
  To: Wenwen Wang; +Cc: Wenwen Wang, Jens Axboe, open list:BLOCK LAYER, open list


Wenwen,

> To fix this issue, free the allocated buffer before returning from
> bio_integrity_prep().

Acked-by: Martin K. Petersen <martin.petersen@oracle.com>

-- 
Martin K. Petersen	Oracle Linux Engineering

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2] block/bio-integrity: fix a memory leak bug
  2019-07-11 19:22 [PATCH v2] block/bio-integrity: fix a memory leak bug Wenwen Wang
  2019-07-12  0:33 ` Ming Lei
  2019-07-12  1:10 ` Martin K. Petersen
@ 2019-07-12  2:02 ` Jens Axboe
  2 siblings, 0 replies; 4+ messages in thread
From: Jens Axboe @ 2019-07-12  2:02 UTC (permalink / raw)
  To: Wenwen Wang, Wenwen Wang; +Cc: open list:BLOCK LAYER, open list

On 7/11/19 1:22 PM, Wenwen Wang wrote:
> From: Wenwen Wang <wenwen@cs.uga.edu>
> 
> 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().

Applied, thanks.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-07-12  2:02 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-11 19:22 [PATCH v2] block/bio-integrity: fix a memory leak bug Wenwen Wang
2019-07-12  0:33 ` Ming Lei
2019-07-12  1:10 ` Martin K. Petersen
2019-07-12  2:02 ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).