mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 02:50:49 +09:00
netfilter: conntrack: fix possible bug_on with enable_hooks=1
[ Upstream commite72eeab542] I received a bug report (no reproducer so far) where we trip over 712 rcu_read_lock(); 713 ct_hook = rcu_dereference(nf_ct_hook); 714 BUG_ON(ct_hook == NULL); // here In nf_conntrack_destroy(). First turn this BUG_ON into a WARN. I think it was triggered via enable_hooks=1 flag. When this flag is turned on, the conntrack hooks are registered before nf_ct_hook pointer gets assigned. This opens a short window where packets enter the conntrack machinery, can have skb->_nfct set up and a subsequent kfree_skb might occur before nf_ct_hook is set. Call nf_conntrack_init_end() to set nf_ct_hook before we register the pernet ops. Fixes:ba3fbe6636("netfilter: nf_conntrack: provide modparam to always register conntrack hooks") Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
30e4b13b1b
commit
d9176dc690
@@ -699,9 +699,11 @@ void nf_conntrack_destroy(struct nf_conntrack *nfct)
|
|||||||
|
|
||||||
rcu_read_lock();
|
rcu_read_lock();
|
||||||
ct_hook = rcu_dereference(nf_ct_hook);
|
ct_hook = rcu_dereference(nf_ct_hook);
|
||||||
BUG_ON(ct_hook == NULL);
|
if (ct_hook)
|
||||||
ct_hook->destroy(nfct);
|
ct_hook->destroy(nfct);
|
||||||
rcu_read_unlock();
|
rcu_read_unlock();
|
||||||
|
|
||||||
|
WARN_ON(!ct_hook);
|
||||||
}
|
}
|
||||||
EXPORT_SYMBOL(nf_conntrack_destroy);
|
EXPORT_SYMBOL(nf_conntrack_destroy);
|
||||||
|
|
||||||
|
|||||||
@@ -1222,11 +1222,12 @@ static int __init nf_conntrack_standalone_init(void)
|
|||||||
nf_conntrack_htable_size_user = nf_conntrack_htable_size;
|
nf_conntrack_htable_size_user = nf_conntrack_htable_size;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
nf_conntrack_init_end();
|
||||||
|
|
||||||
ret = register_pernet_subsys(&nf_conntrack_net_ops);
|
ret = register_pernet_subsys(&nf_conntrack_net_ops);
|
||||||
if (ret < 0)
|
if (ret < 0)
|
||||||
goto out_pernet;
|
goto out_pernet;
|
||||||
|
|
||||||
nf_conntrack_init_end();
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
out_pernet:
|
out_pernet:
|
||||||
|
|||||||
Reference in New Issue
Block a user