aboutsummaryrefslogtreecommitdiffstats
path: root/net/bridge/br_netfilter_hooks.c
diff options
context:
space:
mode:
authorArtur Molchanov <arturmolchanov@gmail.com>2016-12-30 19:46:36 +0300
committerPablo Neira Ayuso <pablo@netfilter.org>2016-12-30 18:22:50 +0100
commit14221cc45caad2fcab3a8543234bb7eda9b540d5 (patch)
treef528c2e7938ac94e3a6d886958fcc22e6b144511 /net/bridge/br_netfilter_hooks.c
parentnetfilter: ipt_CLUSTERIP: check duplicate config when initializing (diff)
downloadlinux-dev-14221cc45caad2fcab3a8543234bb7eda9b540d5.tar.xz
linux-dev-14221cc45caad2fcab3a8543234bb7eda9b540d5.zip
bridge: netfilter: Fix dropping packets that moving through bridge interface
Problem: br_nf_pre_routing_finish() calls itself instead of br_nf_pre_routing_finish_bridge(). Due to this bug reverse path filter drops packets that go through bridge interface. User impact: Local docker containers with bridge network can not communicate with each other. Fixes: c5136b15ea36 ("netfilter: bridge: add and use br_nf_hook_thresh") Signed-off-by: Artur Molchanov <artur.molchanov@synesis.ru> Acked-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/bridge/br_netfilter_hooks.c')
-rw-r--r--net/bridge/br_netfilter_hooks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/bridge/br_netfilter_hooks.c b/net/bridge/br_netfilter_hooks.c
index b12501a77f18..135cc8ab813c 100644
--- a/net/bridge/br_netfilter_hooks.c
+++ b/net/bridge/br_netfilter_hooks.c
@@ -399,7 +399,7 @@ bridged_dnat:
br_nf_hook_thresh(NF_BR_PRE_ROUTING,
net, sk, skb, skb->dev,
NULL,
- br_nf_pre_routing_finish);
+ br_nf_pre_routing_finish_bridge);
return 0;
}
ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);