netfilter: nfnetlink_queue: autoload nf_conntrack_netlink module NFQA_CFG_F_CONNTRACK config flag
This patch enables to load nf_conntrack_netlink module if NFQA_CFG_F_CONNTRACK config flag is specified. Signed-off-by: Ken-ichirou MATSUZAWA <chamas@h4.dion.ne.jp> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
21c3c971d1
commit
71b2e5f5ca
|
@ -1147,6 +1147,17 @@ static int nfqnl_recv_config(struct net *net, struct sock *ctnl,
|
|||
if (flags & mask & NFQA_CFG_F_SECCTX)
|
||||
return -EOPNOTSUPP;
|
||||
#endif
|
||||
if ((flags & mask & NFQA_CFG_F_CONNTRACK) &&
|
||||
!rcu_access_pointer(nfnl_ct_hook)) {
|
||||
#ifdef CONFIG_MODULES
|
||||
nfnl_unlock(NFNL_SUBSYS_QUEUE);
|
||||
request_module("ip_conntrack_netlink");
|
||||
nfnl_lock(NFNL_SUBSYS_QUEUE);
|
||||
if (rcu_access_pointer(nfnl_ct_hook))
|
||||
return -EAGAIN;
|
||||
#endif
|
||||
return -EOPNOTSUPP;
|
||||
}
|
||||
}
|
||||
|
||||
rcu_read_lock();
|
||||
|
|
Loading…
Reference in New Issue