]> git.karo-electronics.de Git - karo-tx-linux.git/commit
fs/proc: fix potential unregister_sysctl_table hang
authorFrancesco Ruggeri <fruggeri@aristanetworks.com>
Thu, 13 Sep 2012 22:03:37 +0000 (15:03 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 2 Oct 2012 17:39:07 +0000 (10:39 -0700)
commit546e54d4776683c34a1d52ee6ebbbfa7d9aa63c3
tree571842540cc9b6933ddb7c3f545371ebaf5225f2
parent038f1e830f681524b724d1a10bf1909c5f55606b
fs/proc: fix potential unregister_sysctl_table hang

commit 6bf6104573482570f7103d3e5ddf9574db43a363 upstream.

The unregister_sysctl_table() function hangs if all references to its
ctl_table_header structure are not dropped.

This can happen sometimes because of a leak in proc_sys_lookup():
proc_sys_lookup() gets a reference to the table via lookup_entry(), but
it does not release it when a subsequent call to sysctl_follow_link()
fails.

This patch fixes this leak by making sure the reference is always
dropped on return.

See also commit 076c3eed2c31 ("sysctl: Rewrite proc_sys_lookup
introducing find_entry and lookup_entry") which reorganized this code in
3.4.

Tested in Linux 3.4.4.

Signed-off-by: Francesco Ruggeri <fruggeri@aristanetworks.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/proc/proc_sysctl.c