]> git.baikalelectronics.ru Git - kernel.git/commit
net/ipv4: Eliminate kstrdup memory leak
authorJulia Lawall <julia@diku.dk>
Sat, 28 Aug 2010 02:31:56 +0000 (19:31 -0700)
committerDavid S. Miller <davem@davemloft.net>
Sat, 28 Aug 2010 02:31:56 +0000 (19:31 -0700)
commit9284eb9e871dc4f0646f0411830c9bb84f9e6a9c
treeb8d24a6503fc847d7dd1fa55b73aa9ca45781730
parent81f281243e7d2ccda6d396f57c4a296582f9a00f
net/ipv4: Eliminate kstrdup memory leak

The string clone is only used as a temporary copy of the argument val
within the while loop, and so it should be freed before leaving the
function.  The call to strsep, however, modifies clone, so a pointer to the
front of the string is kept in saved_clone, to make it possible to free it.

The sematic match that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r exists@
local idexpression x;
expression E;
identifier l;
statement S;
@@

*x= \(kasprintf\|kstrdup\)(...);
...
if (x == NULL) S
... when != kfree(x)
    when != E = x
if (...) {
  <... when != kfree(x)
* goto l;
  ...>
* return ...;
}
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv4/tcp_cong.c