]> git.baikalelectronics.ru Git - kernel.git/commit
netfilter: bridge: move br_netfilter out of the core
authorPablo Neira Ayuso <pablo@netfilter.org>
Thu, 18 Sep 2014 09:29:03 +0000 (11:29 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Fri, 26 Sep 2014 16:42:31 +0000 (18:42 +0200)
commit5891c05e0a59c84466466bbc33f5990e26b8349c
treef4b44a26f14d9c06dbb2d5df9284f0a00ee974bc
parentbad1e9d5f0dac3010e96a54bb8eea96653e7bb76
netfilter: bridge: move br_netfilter out of the core

Jesper reported that br_netfilter always registers the hooks since
this is part of the bridge core. This harms performance for people that
don't need this.

This patch modularizes br_netfilter so it can be rmmod'ed, thus,
the hooks can be unregistered. I think the bridge netfilter should have
been a separated module since the beginning, Patrick agreed on that.

Note that this is breaking compatibility for users that expect that
bridge netfilter is going to be available after explicitly 'modprobe
bridge' or via automatic load through brctl.

However, the damage can be easily undone by modprobing br_netfilter.
The bridge core also spots a message to provide a clue to people that
didn't notice that this has been deprecated.

On top of that, the plan is that nftables will not rely on this software
layer, but integrate the connection tracking into the bridge layer to
enable stateful filtering and NAT, which is was bridge netfilter users
seem to require.

This patch still keeps the fake_dst_ops in the bridge core, since this
is required by when the bridge port is initialized. So we can safely
modprobe/rmmod br_netfilter anytime.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Acked-by: Florian Westphal <fw@strlen.de>
16 files changed:
include/linux/netfilter_bridge.h
include/linux/skbuff.h
include/net/neighbour.h
include/net/netfilter/ipv4/nf_reject.h
include/net/netfilter/ipv6/nf_reject.h
net/Kconfig
net/bridge/Makefile
net/bridge/br.c
net/bridge/br_device.c
net/bridge/br_forward.c
net/bridge/br_input.c
net/bridge/br_netfilter.c
net/bridge/br_netlink.c
net/bridge/br_nf_core.c [new file with mode: 0644]
net/bridge/br_private.h
net/bridge/br_sysfs_br.c