]> git.karo-electronics.de Git - karo-tx-linux.git/commit
XFRM: Fix leak of expired xfrm_states
authorPatrick McHardy <kaber@trash.net>
Thu, 29 Nov 2007 12:07:57 +0000 (23:07 +1100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 14 Dec 2007 17:51:16 +0000 (09:51 -0800)
commit9aa67118c51d60af7b048be6e4a8b8bad2191555
treefbbfebdcbd2ae16aea69dc695b76d46af03fb4b7
parent9ee303ef4e582f2f8b4f08e58ced6ba44debfb64
XFRM: Fix leak of expired xfrm_states

[XFRM]: Fix leak of expired xfrm_states

[ Upstream commit: 5dba4797115c8fa05c1a4d12927a6ae0b33ffc41 ]

The xfrm_timer calls __xfrm_state_delete, which drops the final reference
manually without triggering destruction of the state. Change it to use
xfrm_state_put to add the state to the gc list when we're dropping the
last reference. The timer function may still continue to use the state
safely since the final destruction does a del_timer_sync().

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
net/xfrm/xfrm_state.c