]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
binary_sysctl(): fix memory leak
authorMichel Lespinasse <walken@google.com>
Fri, 16 Dec 2011 04:49:25 +0000 (15:49 +1100)
committerStephen Rothwell <sfr@canb.auug.org.au>
Tue, 20 Dec 2011 07:43:22 +0000 (18:43 +1100)
commitfb88fcdf0c9f61e0e7cd1606724e9a517de900de
tree9e29449fcc4522d7db2ddc61b64401c1c2207ae4
parentbd7bc6ed601c198a77f09cebc8030e1074f2efbf
binary_sysctl(): fix memory leak

binary_sysctl() calls sysctl_getname() which allocates from names_cache
slab usin __getname()

The matching function to free the name is __putname(), and not putname()
which should be used only to match getname() allocations.

This is because when auditing is enabled, putname() calls audit_putname
*instead* (not in addition) to __putname().  Then, if a syscall is in
progress, audit_putname does not release the name - instead, it expects
the name to get released when the syscall completes, but that will happen
only if audit_getname() was called previously, i.e.  if the name was
allocated with getname() rather than the naked __getname().  So,
__getname() followed by putname() ends up leaking memory.

Signed-off-by: Michel Lespinasse <walken@google.com>
Cc: Al Viro <viro@zeniv.linux.org.uk>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Eric Paris <eparis@redhat.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
kernel/sysctl_binary.c