Skip to content
This repository was archived by the owner on Sep 11, 2019. It is now read-only.

Commit 4c05ec4

Browse files
TaeheeYooummakynes
authored andcommitted
netfilter: nf_tables: fix suspicious RCU usage in nft_chain_stats_replace()
basechain->stats is rcu protected data which is updated from nft_chain_stats_replace(). This function is executed from the commit phase which holds the pernet nf_tables commit mutex - not the global nfnetlink subsystem mutex. Test commands to reproduce the problem are: %iptables-nft -I INPUT %iptables-nft -Z %iptables-nft -Z This patch uses RCU calls to handle basechain->stats updates to fix a splat that looks like: [89279.358755] ============================= [89279.363656] WARNING: suspicious RCU usage [89279.368458] 4.20.0-rc2+ GrapheneOS#44 Tainted: G W L [89279.374661] ----------------------------- [89279.379542] net/netfilter/nf_tables_api.c:1404 suspicious rcu_dereference_protected() usage! [...] [89279.406556] 1 lock held by iptables-nft/5225: [89279.411728] #0: 00000000bf45a000 (&net->nft.commit_mutex){+.+.}, at: nf_tables_valid_genid+0x1f/0x70 [nf_tables] [89279.424022] stack backtrace: [89279.429236] CPU: 0 PID: 5225 Comm: iptables-nft Tainted: G W L 4.20.0-rc2+ GrapheneOS#44 [89279.430135] Call Trace: [89279.430135] dump_stack+0xc9/0x16b [89279.430135] ? show_regs_print_info+0x5/0x5 [89279.430135] ? lockdep_rcu_suspicious+0x117/0x160 [89279.430135] nft_chain_commit_update+0x4ea/0x640 [nf_tables] [89279.430135] ? sched_clock_local+0xd4/0x140 [89279.430135] ? check_flags.part.35+0x440/0x440 [89279.430135] ? __rhashtable_remove_fast.constprop.67+0xec0/0xec0 [nf_tables] [89279.430135] ? sched_clock_cpu+0x126/0x170 [89279.430135] ? find_held_lock+0x39/0x1c0 [89279.430135] ? hlock_class+0x140/0x140 [89279.430135] ? is_bpf_text_address+0x5/0xf0 [89279.430135] ? check_flags.part.35+0x440/0x440 [89279.430135] ? __lock_is_held+0xb4/0x140 [89279.430135] nf_tables_commit+0x2555/0x39c0 [nf_tables] Fixes: f102d66 ("netfilter: nf_tables: use dedicated mutex to guard transactions") Signed-off-by: Taehee Yoo <[email protected]> Signed-off-by: Pablo Neira Ayuso <[email protected]>
1 parent 986103e commit 4c05ec4

File tree

3 files changed

+14
-21
lines changed

3 files changed

+14
-21
lines changed

include/linux/netfilter/nfnetlink.h

-12
Original file line numberDiff line numberDiff line change
@@ -62,18 +62,6 @@ static inline bool lockdep_nfnl_is_held(__u8 subsys_id)
6262
}
6363
#endif /* CONFIG_PROVE_LOCKING */
6464

65-
/*
66-
* nfnl_dereference - fetch RCU pointer when updates are prevented by subsys mutex
67-
*
68-
* @p: The pointer to read, prior to dereferencing
69-
* @ss: The nfnetlink subsystem ID
70-
*
71-
* Return the value of the specified RCU-protected pointer, but omit
72-
* the READ_ONCE(), because caller holds the NFNL subsystem mutex.
73-
*/
74-
#define nfnl_dereference(p, ss) \
75-
rcu_dereference_protected(p, lockdep_nfnl_is_held(ss))
76-
7765
#define MODULE_ALIAS_NFNL_SUBSYS(subsys) \
7866
MODULE_ALIAS("nfnetlink-subsys-" __stringify(subsys))
7967

net/netfilter/nf_tables_api.c

+13-8
Original file line numberDiff line numberDiff line change
@@ -1216,7 +1216,8 @@ static int nf_tables_fill_chain_info(struct sk_buff *skb, struct net *net,
12161216
if (nla_put_string(skb, NFTA_CHAIN_TYPE, basechain->type->name))
12171217
goto nla_put_failure;
12181218

1219-
if (basechain->stats && nft_dump_stats(skb, basechain->stats))
1219+
if (rcu_access_pointer(basechain->stats) &&
1220+
nft_dump_stats(skb, rcu_dereference(basechain->stats)))
12201221
goto nla_put_failure;
12211222
}
12221223

@@ -1392,16 +1393,18 @@ static struct nft_stats __percpu *nft_stats_alloc(const struct nlattr *attr)
13921393
return newstats;
13931394
}
13941395

1395-
static void nft_chain_stats_replace(struct nft_base_chain *chain,
1396+
static void nft_chain_stats_replace(struct net *net,
1397+
struct nft_base_chain *chain,
13961398
struct nft_stats __percpu *newstats)
13971399
{
13981400
struct nft_stats __percpu *oldstats;
13991401

14001402
if (newstats == NULL)
14011403
return;
14021404

1403-
if (chain->stats) {
1404-
oldstats = nfnl_dereference(chain->stats, NFNL_SUBSYS_NFTABLES);
1405+
if (rcu_access_pointer(chain->stats)) {
1406+
oldstats = rcu_dereference_protected(chain->stats,
1407+
lockdep_commit_lock_is_held(net));
14051408
rcu_assign_pointer(chain->stats, newstats);
14061409
synchronize_rcu();
14071410
free_percpu(oldstats);
@@ -1439,9 +1442,10 @@ static void nf_tables_chain_destroy(struct nft_ctx *ctx)
14391442
struct nft_base_chain *basechain = nft_base_chain(chain);
14401443

14411444
module_put(basechain->type->owner);
1442-
free_percpu(basechain->stats);
1443-
if (basechain->stats)
1445+
if (rcu_access_pointer(basechain->stats)) {
14441446
static_branch_dec(&nft_counters_enabled);
1447+
free_percpu(rcu_dereference_raw(basechain->stats));
1448+
}
14451449
kfree(chain->name);
14461450
kfree(basechain);
14471451
} else {
@@ -1590,7 +1594,7 @@ static int nf_tables_addchain(struct nft_ctx *ctx, u8 family, u8 genmask,
15901594
kfree(basechain);
15911595
return PTR_ERR(stats);
15921596
}
1593-
basechain->stats = stats;
1597+
rcu_assign_pointer(basechain->stats, stats);
15941598
static_branch_inc(&nft_counters_enabled);
15951599
}
15961600

@@ -6180,7 +6184,8 @@ static void nft_chain_commit_update(struct nft_trans *trans)
61806184
return;
61816185

61826186
basechain = nft_base_chain(trans->ctx.chain);
6183-
nft_chain_stats_replace(basechain, nft_trans_chain_stats(trans));
6187+
nft_chain_stats_replace(trans->ctx.net, basechain,
6188+
nft_trans_chain_stats(trans));
61846189

61856190
switch (nft_trans_chain_policy(trans)) {
61866191
case NF_DROP:

net/netfilter/nf_tables_core.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ static noinline void nft_update_chain_stats(const struct nft_chain *chain,
101101
struct nft_stats *stats;
102102

103103
base_chain = nft_base_chain(chain);
104-
if (!base_chain->stats)
104+
if (!rcu_access_pointer(base_chain->stats))
105105
return;
106106

107107
local_bh_disable();

0 commit comments

Comments
 (0)