mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-03-16 12:14:06 +00:00
netfilter: nf_tables: avoid global info storage
This works because all accesses are currently serialized by nfnl nf_tables subsys mutex. If we want to have per-netns locking, we need to make this scratch area pernetns or allocate it on demand. This does the latter, its ~28kbyte but we can fallback to vmalloc so it should be fine. Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
This commit is contained in:
parent
be2ab5b4d5
commit
2a43ecf96b
1 changed files with 12 additions and 16 deletions
|
@ -2454,8 +2454,6 @@ static int nft_table_validate(struct net *net, const struct nft_table *table)
|
|||
|
||||
#define NFT_RULE_MAXEXPRS 128
|
||||
|
||||
static struct nft_expr_info *info;
|
||||
|
||||
static int nf_tables_newrule(struct net *net, struct sock *nlsk,
|
||||
struct sk_buff *skb, const struct nlmsghdr *nlh,
|
||||
const struct nlattr * const nla[],
|
||||
|
@ -2463,6 +2461,7 @@ static int nf_tables_newrule(struct net *net, struct sock *nlsk,
|
|||
{
|
||||
const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
|
||||
u8 genmask = nft_genmask_next(net);
|
||||
struct nft_expr_info *info = NULL;
|
||||
int family = nfmsg->nfgen_family;
|
||||
struct nft_table *table;
|
||||
struct nft_chain *chain;
|
||||
|
@ -2533,6 +2532,12 @@ static int nf_tables_newrule(struct net *net, struct sock *nlsk,
|
|||
n = 0;
|
||||
size = 0;
|
||||
if (nla[NFTA_RULE_EXPRESSIONS]) {
|
||||
info = kvmalloc_array(NFT_RULE_MAXEXPRS,
|
||||
sizeof(struct nft_expr_info),
|
||||
GFP_KERNEL);
|
||||
if (!info)
|
||||
return -ENOMEM;
|
||||
|
||||
nla_for_each_nested(tmp, nla[NFTA_RULE_EXPRESSIONS], rem) {
|
||||
err = -EINVAL;
|
||||
if (nla_type(tmp) != NFTA_LIST_ELEM)
|
||||
|
@ -2625,6 +2630,7 @@ static int nf_tables_newrule(struct net *net, struct sock *nlsk,
|
|||
list_add_rcu(&rule->list, &chain->rules);
|
||||
}
|
||||
}
|
||||
kvfree(info);
|
||||
chain->use++;
|
||||
|
||||
if (net->nft.validate_state == NFT_VALIDATE_DO)
|
||||
|
@ -2638,6 +2644,7 @@ err1:
|
|||
if (info[i].ops != NULL)
|
||||
module_put(info[i].ops->type->owner);
|
||||
}
|
||||
kvfree(info);
|
||||
return err;
|
||||
}
|
||||
|
||||
|
@ -7203,29 +7210,19 @@ static int __init nf_tables_module_init(void)
|
|||
|
||||
nft_chain_filter_init();
|
||||
|
||||
info = kmalloc_array(NFT_RULE_MAXEXPRS, sizeof(struct nft_expr_info),
|
||||
GFP_KERNEL);
|
||||
if (info == NULL) {
|
||||
err = -ENOMEM;
|
||||
goto err1;
|
||||
}
|
||||
|
||||
err = nf_tables_core_module_init();
|
||||
if (err < 0)
|
||||
goto err2;
|
||||
return err;
|
||||
|
||||
err = nfnetlink_subsys_register(&nf_tables_subsys);
|
||||
if (err < 0)
|
||||
goto err3;
|
||||
goto err;
|
||||
|
||||
register_netdevice_notifier(&nf_tables_flowtable_notifier);
|
||||
|
||||
return register_pernet_subsys(&nf_tables_net_ops);
|
||||
err3:
|
||||
err:
|
||||
nf_tables_core_module_exit();
|
||||
err2:
|
||||
kfree(info);
|
||||
err1:
|
||||
return err;
|
||||
}
|
||||
|
||||
|
@ -7237,7 +7234,6 @@ static void __exit nf_tables_module_exit(void)
|
|||
unregister_pernet_subsys(&nf_tables_net_ops);
|
||||
rcu_barrier();
|
||||
nf_tables_core_module_exit();
|
||||
kfree(info);
|
||||
}
|
||||
|
||||
module_init(nf_tables_module_init);
|
||||
|
|
Loading…
Add table
Reference in a new issue