2010-12-13 23:46:28

by Jesper Juhl

[permalink] [raw]
Subject: [PATCH][rfc] md: Close mem leak in userspace_ctr()

Hi,

There's a small memory leak in
drivers/md/dm-log-userspace-base.c::userspace_ctr().

The call to build_constructor_string() dynamically allocates memory for
its last argument, but we do not always clean up that allocated memory.
The patch below closes the leak and also removes some unneeded local
variables and some pointless assignments.

If the patch looks good, please consider applying it - if not, please tell
me where I messed up.

Signed-off-by: Jesper Juhl <[email protected]>
---
dm-log-userspace-base.c | 15 ++++++---------
1 file changed, 6 insertions(+), 9 deletions(-)

Compile tested only.

diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c
index 1ed0094..71a3049 100644
--- a/drivers/md/dm-log-userspace-base.c
+++ b/drivers/md/dm-log-userspace-base.c
@@ -99,26 +99,22 @@ static int build_constructor_string(struct dm_target *ti,
char **ctr_str)
{
int i, str_size;
- char *str = NULL;
-
- *ctr_str = NULL;

for (i = 0, str_size = 0; i < argc; i++)
str_size += strlen(argv[i]) + 1; /* +1 for space between args */

str_size += 20; /* Max number of chars in a printed u64 number */

- str = kzalloc(str_size, GFP_KERNEL);
- if (!str) {
+ *ctr_str = kzalloc(str_size, GFP_KERNEL);
+ if (!*ctr_str) {
DMWARN("Unable to allocate memory for constructor string");
return -ENOMEM;
}

- str_size = sprintf(str, "%llu", (unsigned long long)ti->len);
+ str_size = sprintf(*ctr_str, "%llu", (unsigned long long)ti->len);
for (i = 0; i < argc; i++)
- str_size += sprintf(str + str_size, " %s", argv[i]);
+ str_size += sprintf(*ctr_str + str_size, " %s", argv[i]);

- *ctr_str = str;
return str_size;
}

@@ -140,7 +136,7 @@ static int userspace_ctr(struct dm_dirty_log *log, struct dm_target *ti,
{
int r = 0;
int str_size;
- char *ctr_str = NULL;
+ char *ctr_str;
struct log_c *lc = NULL;
uint64_t rdata;
size_t rdata_size = sizeof(rdata);
@@ -173,6 +169,7 @@ static int userspace_ctr(struct dm_dirty_log *log, struct dm_target *ti,

str_size = build_constructor_string(ti, argc - 1, argv + 1, &ctr_str);
if (str_size < 0) {
+ kfree(ctr_str);
kfree(lc);
return str_size;
}



--
Jesper Juhl <[email protected]> http://www.chaosbits.net/
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please.


2010-12-14 22:18:27

by Mike Snitzer

[permalink] [raw]
Subject: Re: [PATCH][rfc] md: Close mem leak in userspace_ctr()

On Mon, Dec 13 2010 at 6:40pm -0500,
Jesper Juhl <[email protected]> wrote:

> Hi,
>
> There's a small memory leak in
> drivers/md/dm-log-userspace-base.c::userspace_ctr().
>
> The call to build_constructor_string() dynamically allocates memory for
> its last argument, but we do not always clean up that allocated memory.

I'm not seeing a leak.

The kfree() that you've added to the build_constructor_string() failure
path isn't needed because build_constructor_string() only returns error
if the kzalloc() failed.

Mike

> diff --git a/drivers/md/dm-log-userspace-base.c b/drivers/md/dm-log-userspace-base.c
> index 1ed0094..71a3049 100644
> --- a/drivers/md/dm-log-userspace-base.c
> +++ b/drivers/md/dm-log-userspace-base.c
> @@ -99,26 +99,22 @@ static int build_constructor_string(struct dm_target *ti,
> char **ctr_str)
> {
> int i, str_size;
> - char *str = NULL;
> -
> - *ctr_str = NULL;
>
> for (i = 0, str_size = 0; i < argc; i++)
> str_size += strlen(argv[i]) + 1; /* +1 for space between args */
>
> str_size += 20; /* Max number of chars in a printed u64 number */
>
> - str = kzalloc(str_size, GFP_KERNEL);
> - if (!str) {
> + *ctr_str = kzalloc(str_size, GFP_KERNEL);
> + if (!*ctr_str) {
> DMWARN("Unable to allocate memory for constructor string");
> return -ENOMEM;
> }
>
> - str_size = sprintf(str, "%llu", (unsigned long long)ti->len);
> + str_size = sprintf(*ctr_str, "%llu", (unsigned long long)ti->len);
> for (i = 0; i < argc; i++)
> - str_size += sprintf(str + str_size, " %s", argv[i]);
> + str_size += sprintf(*ctr_str + str_size, " %s", argv[i]);
>
> - *ctr_str = str;
> return str_size;
> }
>
> @@ -140,7 +136,7 @@ static int userspace_ctr(struct dm_dirty_log *log, struct dm_target *ti,
> {
> int r = 0;
> int str_size;
> - char *ctr_str = NULL;
> + char *ctr_str;
> struct log_c *lc = NULL;
> uint64_t rdata;
> size_t rdata_size = sizeof(rdata);
> @@ -173,6 +169,7 @@ static int userspace_ctr(struct dm_dirty_log *log, struct dm_target *ti,
>
> str_size = build_constructor_string(ti, argc - 1, argv + 1, &ctr_str);
> if (str_size < 0) {
> + kfree(ctr_str);
> kfree(lc);
> return str_size;
> }

2010-12-17 12:25:05

by Jesper Juhl

[permalink] [raw]
Subject: Re: [PATCH][rfc] md: Close mem leak in userspace_ctr()

On Tue, 14 Dec 2010, Mike Snitzer wrote:

> On Mon, Dec 13 2010 at 6:40pm -0500,
> Jesper Juhl <[email protected]> wrote:
>
> > Hi,
> >
> > There's a small memory leak in
> > drivers/md/dm-log-userspace-base.c::userspace_ctr().
> >
> > The call to build_constructor_string() dynamically allocates memory for
> > its last argument, but we do not always clean up that allocated memory.
>
> I'm not seeing a leak.
>
> The kfree() that you've added to the build_constructor_string() failure
> path isn't needed because build_constructor_string() only returns error
> if the kzalloc() failed.
>

Hmm, that's true, assuming that there are no bugs (and never will be) in
strlen() or sprintf() that result in 'str_size' becoming negative the code
is safe. That's probably a safe assumption ;-)

Sorry about the noise.

--
Jesper Juhl <[email protected]> http://www.chaosbits.net/
Don't top-post http://www.catb.org/~esr/jargon/html/T/top-post.html
Plain text mails only, please.