public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] modpost: Fix ressource leak in read_dump()
@ 2014-04-05 22:36 Christian Engelmayer
  2014-04-06  0:05 ` Andi Kleen
  0 siblings, 1 reply; 4+ messages in thread
From: Christian Engelmayer @ 2014-04-05 22:36 UTC (permalink / raw)
  To: linux-kbuild; +Cc: linux-kernel, Michal Marek, Rusty Russell, Andi Kleen

[-- Attachment #1: Type: text/plain, Size: 851 bytes --]

Function read_dump() memory maps the input via grab_file(), but fails to call
the corresponding unmap function. Add the missing call to release_file().
Detected by Coverity: CID 1192419

Signed-off-by: Christian Engelmayer <cengelma@gmx.at>
---
Compile tested - Applies against v3.14 as well as linux-next.
---
 scripts/mod/modpost.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/scripts/mod/modpost.c b/scripts/mod/modpost.c
index 0663556..ea3e2bd 100644
--- a/scripts/mod/modpost.c
+++ b/scripts/mod/modpost.c
@@ -2113,8 +2113,10 @@ static void read_dump(const char *fname, unsigned int kernel)
 		s->preloaded = 1;
 		sym_update_crc(symname, mod, crc, export_no(export));
 	}
+	release_file(file, size);
 	return;
 fail:
+	release_file(file, size);
 	fatal("parse error in symbol dump file\n");
 }
 
-- 
1.8.3.2

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 836 bytes --]

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

* Re: [PATCH] modpost: Fix ressource leak in read_dump()
  2014-04-05 22:36 [PATCH] modpost: Fix ressource leak in read_dump() Christian Engelmayer
@ 2014-04-06  0:05 ` Andi Kleen
  2014-04-08 15:10   ` Michal Marek
  0 siblings, 1 reply; 4+ messages in thread
From: Andi Kleen @ 2014-04-06  0:05 UTC (permalink / raw)
  To: Christian Engelmayer
  Cc: linux-kbuild, linux-kernel, Michal Marek, Rusty Russell

On Sun, Apr 06, 2014 at 12:36:49AM +0200, Christian Engelmayer wrote:
> Function read_dump() memory maps the input via grab_file(), but fails to call
> the corresponding unmap function. Add the missing call to release_file().
> Detected by Coverity: CID 1192419

It doesn't matter at all. All memory is freed on exit() in this program.

-Andi

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

* Re: [PATCH] modpost: Fix ressource leak in read_dump()
  2014-04-06  0:05 ` Andi Kleen
@ 2014-04-08 15:10   ` Michal Marek
  2014-04-22  7:26     ` Rusty Russell
  0 siblings, 1 reply; 4+ messages in thread
From: Michal Marek @ 2014-04-08 15:10 UTC (permalink / raw)
  To: Andi Kleen, Christian Engelmayer
  Cc: linux-kbuild, linux-kernel, Rusty Russell

On 2014-04-06 02:05, Andi Kleen wrote:
> On Sun, Apr 06, 2014 at 12:36:49AM +0200, Christian Engelmayer wrote:
>> Function read_dump() memory maps the input via grab_file(), but fails to call
>> the corresponding unmap function. Add the missing call to release_file().
>> Detected by Coverity: CID 1192419
> 
> It doesn't matter at all. All memory is freed on exit() in this program.

The leak can disturb in valgrind output.

Michal


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

* Re: [PATCH] modpost: Fix ressource leak in read_dump()
  2014-04-08 15:10   ` Michal Marek
@ 2014-04-22  7:26     ` Rusty Russell
  0 siblings, 0 replies; 4+ messages in thread
From: Rusty Russell @ 2014-04-22  7:26 UTC (permalink / raw)
  To: Michal Marek, Andi Kleen, Christian Engelmayer; +Cc: linux-kbuild, linux-kernel

Michal Marek <mmarek@suse.cz> writes:

> On 2014-04-06 02:05, Andi Kleen wrote:
>> On Sun, Apr 06, 2014 at 12:36:49AM +0200, Christian Engelmayer wrote:
>>> Function read_dump() memory maps the input via grab_file(), but fails to call
>>> the corresponding unmap function. Add the missing call to release_file().
>>> Detected by Coverity: CID 1192419
>> 
>> It doesn't matter at all. All memory is freed on exit() in this program.
>
> The leak can disturb in valgrind output.

Yeah.  If release_file() didn't exist at all, I'd agree with Andi.  As
it is, I've queued the patch (with typo in title fixed).

Thanks!
Rusty.

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

end of thread, other threads:[~2014-04-22  7:39 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-05 22:36 [PATCH] modpost: Fix ressource leak in read_dump() Christian Engelmayer
2014-04-06  0:05 ` Andi Kleen
2014-04-08 15:10   ` Michal Marek
2014-04-22  7:26     ` Rusty Russell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox