mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
[IPSEC] flow: Fix potential memory leak
When old flow cache entries that are not at the head of their chain trigger a transient security error they get unlinked along with all the entries preceding them in the chain. The preceding entries are not freed correctly. This patch fixes this by simply leaving the entry around. It's based on a suggestion by Venkat Yekkirala. Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
419dd8378d
commit
e0e8f1c822
@ -231,12 +231,7 @@ nocache:
|
||||
|
||||
err = resolver(key, family, dir, &obj, &obj_ref);
|
||||
|
||||
if (fle) {
|
||||
if (err) {
|
||||
/* Force security policy check on next lookup */
|
||||
*head = fle->next;
|
||||
flow_entry_kill(cpu, fle);
|
||||
} else {
|
||||
if (fle && !err) {
|
||||
fle->genid = atomic_read(&flow_cache_genid);
|
||||
|
||||
if (fle->object)
|
||||
@ -247,7 +242,6 @@ nocache:
|
||||
if (obj)
|
||||
atomic_inc(fle->object_ref);
|
||||
}
|
||||
}
|
||||
local_bh_enable();
|
||||
|
||||
if (err)
|
||||
|
Loading…
Reference in New Issue
Block a user