]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - net/bridge/br_netfilter_hooks.c
x86/msr: Add definitions for new speculation control MSRs
[mirror_ubuntu-artful-kernel.git] / net / bridge / br_netfilter_hooks.c
CommitLineData
1da177e4
LT
1/*
2 * Handle firewalling
3 * Linux ethernet bridge
4 *
5 * Authors:
8237908e
BDS
6 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer <bdschuym@pandora.be>
1da177e4
LT
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Lennert dedicates this file to Kerstin Wurdinger.
15 */
16
17#include <linux/module.h>
18#include <linux/kernel.h>
5a0e3ad6 19#include <linux/slab.h>
1da177e4
LT
20#include <linux/ip.h>
21#include <linux/netdevice.h>
22#include <linux/skbuff.h>
14c85021 23#include <linux/if_arp.h>
1da177e4
LT
24#include <linux/if_ether.h>
25#include <linux/if_vlan.h>
516299d2
MM
26#include <linux/if_pppox.h>
27#include <linux/ppp_defs.h>
1da177e4
LT
28#include <linux/netfilter_bridge.h>
29#include <linux/netfilter_ipv4.h>
30#include <linux/netfilter_ipv6.h>
31#include <linux/netfilter_arp.h>
32#include <linux/in_route.h>
c5136b15 33#include <linux/rculist.h>
f216f082 34#include <linux/inetdevice.h>
14c85021 35
1da177e4
LT
36#include <net/ip.h>
37#include <net/ipv6.h>
efb6de9b 38#include <net/addrconf.h>
14c85021 39#include <net/route.h>
56768644 40#include <net/netfilter/br_netfilter.h>
5f6c253e 41#include <net/netns/generic.h>
14c85021 42
7c0f6ba6 43#include <linux/uaccess.h>
1da177e4
LT
44#include "br_private.h"
45#ifdef CONFIG_SYSCTL
46#include <linux/sysctl.h>
47#endif
48
c7d03a00 49static unsigned int brnf_net_id __read_mostly;
5f6c253e
FW
50
51struct brnf_net {
52 bool enabled;
53};
54
1da177e4
LT
55#ifdef CONFIG_SYSCTL
56static struct ctl_table_header *brnf_sysctl_header;
9c1ea148
BH
57static int brnf_call_iptables __read_mostly = 1;
58static int brnf_call_ip6tables __read_mostly = 1;
59static int brnf_call_arptables __read_mostly = 1;
f4b3eee7
BT
60static int brnf_filter_vlan_tagged __read_mostly;
61static int brnf_filter_pppoe_tagged __read_mostly;
62static int brnf_pass_vlan_indev __read_mostly;
1da177e4 63#else
4df53d8b
PM
64#define brnf_call_iptables 1
65#define brnf_call_ip6tables 1
66#define brnf_call_arptables 1
47e0e1ca
HX
67#define brnf_filter_vlan_tagged 0
68#define brnf_filter_pppoe_tagged 0
4981682c 69#define brnf_pass_vlan_indev 0
1da177e4
LT
70#endif
71
739e4505 72#define IS_IP(skb) \
df8a39de 73 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
739e4505
FW
74
75#define IS_IPV6(skb) \
df8a39de 76 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
739e4505
FW
77
78#define IS_ARP(skb) \
df8a39de 79 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
739e4505 80
b6f99a21 81static inline __be16 vlan_proto(const struct sk_buff *skb)
8b42ec39 82{
df8a39de 83 if (skb_vlan_tag_present(skb))
13937911
JG
84 return skb->protocol;
85 else if (skb->protocol == htons(ETH_P_8021Q))
86 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
87 else
88 return 0;
8b42ec39
SH
89}
90
91#define IS_VLAN_IP(skb) \
13937911 92 (vlan_proto(skb) == htons(ETH_P_IP) && \
8b42ec39
SH
93 brnf_filter_vlan_tagged)
94
95#define IS_VLAN_IPV6(skb) \
13937911 96 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
8b42ec39
SH
97 brnf_filter_vlan_tagged)
98
99#define IS_VLAN_ARP(skb) \
13937911 100 (vlan_proto(skb) == htons(ETH_P_ARP) && \
8b42ec39 101 brnf_filter_vlan_tagged)
1da177e4 102
516299d2
MM
103static inline __be16 pppoe_proto(const struct sk_buff *skb)
104{
105 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
106 sizeof(struct pppoe_hdr)));
107}
108
109#define IS_PPPOE_IP(skb) \
110 (skb->protocol == htons(ETH_P_PPP_SES) && \
111 pppoe_proto(skb) == htons(PPP_IP) && \
112 brnf_filter_pppoe_tagged)
113
114#define IS_PPPOE_IPV6(skb) \
115 (skb->protocol == htons(ETH_P_PPP_SES) && \
116 pppoe_proto(skb) == htons(PPP_IPV6) && \
117 brnf_filter_pppoe_tagged)
118
e70deecb
FW
119/* largest possible L2 header, see br_nf_dev_queue_xmit() */
120#define NF_BRIDGE_MAX_MAC_HEADER_LENGTH (PPPOE_SES_HLEN + ETH_HLEN)
121
e70deecb
FW
122struct brnf_frag_data {
123 char mac[NF_BRIDGE_MAX_MAC_HEADER_LENGTH];
124 u8 encap_size;
125 u8 size;
d7b59742
FW
126 u16 vlan_tci;
127 __be16 vlan_proto;
e70deecb
FW
128};
129
130static DEFINE_PER_CPU(struct brnf_frag_data, brnf_frag_data_storage);
e70deecb 131
a9fcc6a4
FW
132static void nf_bridge_info_free(struct sk_buff *skb)
133{
134 if (skb->nf_bridge) {
135 nf_bridge_put(skb->nf_bridge);
136 skb->nf_bridge = NULL;
137 }
138}
139
5dce971a
SH
140static inline struct net_device *bridge_parent(const struct net_device *dev)
141{
b5ed54e9 142 struct net_bridge_port *port;
5dce971a 143
b5ed54e9 144 port = br_port_get_rcu(dev);
145 return port ? port->br->dev : NULL;
5dce971a 146}
1da177e4 147
2dc2f207
PM
148static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
149{
150 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
151
53869ceb 152 if (refcount_read(&nf_bridge->use) > 1) {
2dc2f207
PM
153 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
154
155 if (tmp) {
156 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
53869ceb 157 refcount_set(&tmp->use, 1);
2dc2f207 158 }
4c3a76ab 159 nf_bridge_put(nf_bridge);
2dc2f207
PM
160 nf_bridge = tmp;
161 }
162 return nf_bridge;
163}
164
230ac490 165unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
8d045163
FW
166{
167 switch (skb->protocol) {
168 case __cpu_to_be16(ETH_P_8021Q):
169 return VLAN_HLEN;
170 case __cpu_to_be16(ETH_P_PPP_SES):
171 return PPPOE_SES_HLEN;
172 default:
173 return 0;
174 }
175}
176
fc38582d 177static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
fdeabdef 178{
fc38582d
PM
179 unsigned int len = nf_bridge_encap_header_len(skb);
180
181 skb_pull(skb, len);
182 skb->network_header += len;
183}
fdeabdef 184
fc38582d
PM
185static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
186{
187 unsigned int len = nf_bridge_encap_header_len(skb);
188
189 skb_pull_rcsum(skb, len);
190 skb->network_header += len;
191}
192
462fb2af
BD
193/* When handing a packet over to the IP layer
194 * check whether we have a skb that is in the
195 * expected format
196 */
197
c1444c63 198static int br_validate_ipv4(struct net *net, struct sk_buff *skb)
462fb2af 199{
b71d1d42 200 const struct iphdr *iph;
462fb2af
BD
201 u32 len;
202
6caab7b0
SB
203 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
204 goto inhdr_error;
205
462fb2af 206 iph = ip_hdr(skb);
462fb2af
BD
207
208 /* Basic sanity checks */
209 if (iph->ihl < 5 || iph->version != 4)
210 goto inhdr_error;
211
212 if (!pskb_may_pull(skb, iph->ihl*4))
213 goto inhdr_error;
214
215 iph = ip_hdr(skb);
216 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
217 goto inhdr_error;
218
219 len = ntohs(iph->tot_len);
220 if (skb->len < len) {
b45386ef 221 __IP_INC_STATS(net, IPSTATS_MIB_INTRUNCATEDPKTS);
462fb2af
BD
222 goto drop;
223 } else if (len < (iph->ihl*4))
224 goto inhdr_error;
225
226 if (pskb_trim_rcsum(skb, len)) {
b45386ef 227 __IP_INC_STATS(net, IPSTATS_MIB_INDISCARDS);
462fb2af
BD
228 goto drop;
229 }
230
f8e9881c 231 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
7677e868
HX
232 /* We should really parse IP options here but until
233 * somebody who actually uses IP options complains to
234 * us we'll just silently ignore the options because
235 * we're lazy!
236 */
462fb2af
BD
237 return 0;
238
239inhdr_error:
b45386ef 240 __IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS);
462fb2af
BD
241drop:
242 return -1;
243}
244
230ac490 245void nf_bridge_update_protocol(struct sk_buff *skb)
4a9d2f20 246{
3eaf4025
FW
247 switch (skb->nf_bridge->orig_proto) {
248 case BRNF_PROTO_8021Q:
4a9d2f20 249 skb->protocol = htons(ETH_P_8021Q);
3eaf4025
FW
250 break;
251 case BRNF_PROTO_PPPOE:
4a9d2f20 252 skb->protocol = htons(ETH_P_PPP_SES);
3eaf4025
FW
253 break;
254 case BRNF_PROTO_UNCHANGED:
255 break;
256 }
4a9d2f20
FW
257}
258
e179e632
BDS
259/* Obtain the correct destination MAC address, while preserving the original
260 * source MAC address. If we already know this address, we just copy it. If we
261 * don't, we use the neighbour framework to find out. In both cases, we make
262 * sure that br_handle_frame_finish() is called afterwards.
263 */
0c4b51f0 264int br_nf_pre_routing_finish_bridge(struct net *net, struct sock *sk, struct sk_buff *skb)
e179e632 265{
f6b72b62 266 struct neighbour *neigh;
e179e632
BDS
267 struct dst_entry *dst;
268
269 skb->dev = bridge_parent(skb->dev);
270 if (!skb->dev)
271 goto free_skb;
272 dst = skb_dst(skb);
f9d75166
DM
273 neigh = dst_neigh_lookup_skb(dst, skb);
274 if (neigh) {
38330783 275 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
f9d75166
DM
276 int ret;
277
278 if (neigh->hh.hh_len) {
279 neigh_hh_bridge(&neigh->hh, skb);
280 skb->dev = nf_bridge->physindev;
0c4b51f0 281 ret = br_handle_frame_finish(net, sk, skb);
f9d75166
DM
282 } else {
283 /* the neighbour function below overwrites the complete
284 * MAC header, so we save the Ethernet source address and
285 * protocol number.
286 */
287 skb_copy_from_linear_data_offset(skb,
288 -(ETH_HLEN-ETH_ALEN),
e70deecb 289 nf_bridge->neigh_header,
f9d75166
DM
290 ETH_HLEN-ETH_ALEN);
291 /* tell br_dev_xmit to continue with forwarding */
72b1e5e4 292 nf_bridge->bridged_dnat = 1;
93fdd47e 293 /* FIXME Need to refragment */
f9d75166
DM
294 ret = neigh->output(neigh, skb);
295 }
296 neigh_release(neigh);
297 return ret;
e179e632
BDS
298 }
299free_skb:
300 kfree_skb(skb);
301 return 0;
302}
303
230ac490
PNA
304static inline bool
305br_nf_ipv4_daddr_was_changed(const struct sk_buff *skb,
306 const struct nf_bridge_info *nf_bridge)
8cae308d 307{
230ac490 308 return ip_hdr(skb)->daddr != nf_bridge->ipv4_daddr;
8cae308d
BT
309}
310
1da177e4 311/* This requires some explaining. If DNAT has taken place,
ea2d9b41 312 * we will need to fix up the destination Ethernet address.
faecbb45 313 * This is also true when SNAT takes place (for the reply direction).
1da177e4
LT
314 *
315 * There are two cases to consider:
316 * 1. The packet was DNAT'ed to a device in the same bridge
317 * port group as it was received on. We can still bridge
318 * the packet.
319 * 2. The packet was DNAT'ed to a different device, either
320 * a non-bridged device or another bridge port group.
321 * The packet will need to be routed.
322 *
323 * The correct way of distinguishing between these two cases is to
324 * call ip_route_input() and to look at skb->dst->dev, which is
325 * changed to the destination device if ip_route_input() succeeds.
326 *
ea2d9b41 327 * Let's first consider the case that ip_route_input() succeeds:
1da177e4 328 *
ea2d9b41
BDS
329 * If the output device equals the logical bridge device the packet
330 * came in on, we can consider this bridging. The corresponding MAC
331 * address will be obtained in br_nf_pre_routing_finish_bridge.
1da177e4
LT
332 * Otherwise, the packet is considered to be routed and we just
333 * change the destination MAC address so that the packet will
f216f082
BDS
334 * later be passed up to the IP stack to be routed. For a redirected
335 * packet, ip_route_input() will give back the localhost as output device,
336 * which differs from the bridge device.
1da177e4 337 *
ea2d9b41 338 * Let's now consider the case that ip_route_input() fails:
1da177e4 339 *
f216f082
BDS
340 * This can be because the destination address is martian, in which case
341 * the packet will be dropped.
ea2d9b41
BDS
342 * If IP forwarding is disabled, ip_route_input() will fail, while
343 * ip_route_output_key() can return success. The source
344 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
1da177e4 345 * thinks we're handling a locally generated packet and won't care
ea2d9b41
BDS
346 * if IP forwarding is enabled. If the output device equals the logical bridge
347 * device, we proceed as if ip_route_input() succeeded. If it differs from the
348 * logical bridge port or if ip_route_output_key() fails we drop the packet.
349 */
0c4b51f0 350static int br_nf_pre_routing_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
1da177e4
LT
351{
352 struct net_device *dev = skb->dev;
eddc9ec5 353 struct iphdr *iph = ip_hdr(skb);
38330783 354 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
511c3f92 355 struct rtable *rt;
f216f082 356 int err;
93fdd47e 357
411ffb4f 358 nf_bridge->frag_max_size = IPCB(skb)->frag_max_size;
1da177e4 359
a1e67951 360 if (nf_bridge->pkt_otherhost) {
1da177e4 361 skb->pkt_type = PACKET_OTHERHOST;
a1e67951 362 nf_bridge->pkt_otherhost = false;
1da177e4 363 }
72b1e5e4 364 nf_bridge->in_prerouting = 0;
230ac490 365 if (br_nf_ipv4_daddr_was_changed(skb, nf_bridge)) {
f216f082 366 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
f3abc9b9 367 struct in_device *in_dev = __in_dev_get_rcu(dev);
f216f082
BDS
368
369 /* If err equals -EHOSTUNREACH the error is due to a
370 * martian destination or due to the fact that
371 * forwarding is disabled. For most martian packets,
372 * ip_route_output_key() will fail. It won't fail for 2 types of
373 * martian destinations: loopback destinations and destination
374 * 0.0.0.0. In both cases the packet will be dropped because the
375 * destination is the loopback device and not the bridge. */
376 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
377 goto free_skb;
1da177e4 378
f2d74cf8 379 rt = ip_route_output(net, iph->daddr, 0,
78fbfd8a 380 RT_TOS(iph->tos), 0);
b23dd4fe 381 if (!IS_ERR(rt)) {
1c011bed 382 /* - Bridged-and-DNAT'ed traffic doesn't
f216f082 383 * require ip_forwarding. */
b23dd4fe
DM
384 if (rt->dst.dev == dev) {
385 skb_dst_set(skb, &rt->dst);
1da177e4
LT
386 goto bridged_dnat;
387 }
b23dd4fe 388 ip_rt_put(rt);
1da177e4 389 }
f216f082 390free_skb:
1da177e4
LT
391 kfree_skb(skb);
392 return 0;
393 } else {
adf30907 394 if (skb_dst(skb)->dev == dev) {
1da177e4 395bridged_dnat:
1da177e4 396 skb->dev = nf_bridge->physindev;
e179e632 397 nf_bridge_update_protocol(skb);
fc38582d 398 nf_bridge_push_encap_header(skb);
c5136b15
FW
399 br_nf_hook_thresh(NF_BR_PRE_ROUTING,
400 net, sk, skb, skb->dev,
401 NULL,
14221cc4 402 br_nf_pre_routing_finish_bridge);
1da177e4
LT
403 return 0;
404 }
04091142 405 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
1da177e4
LT
406 skb->pkt_type = PACKET_HOST;
407 }
408 } else {
511c3f92
ED
409 rt = bridge_parent_rtable(nf_bridge->physindev);
410 if (!rt) {
4adf0af6
SW
411 kfree_skb(skb);
412 return 0;
413 }
f9181f4f 414 skb_dst_set_noref(skb, &rt->dst);
1da177e4
LT
415 }
416
417 skb->dev = nf_bridge->physindev;
e179e632 418 nf_bridge_update_protocol(skb);
fc38582d 419 nf_bridge_push_encap_header(skb);
c5136b15
FW
420 br_nf_hook_thresh(NF_BR_PRE_ROUTING, net, sk, skb, skb->dev, NULL,
421 br_handle_frame_finish);
1da177e4
LT
422 return 0;
423}
424
4981682c
PNA
425static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
426{
427 struct net_device *vlan, *br;
428
429 br = bridge_parent(dev);
df8a39de 430 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
4981682c
PNA
431 return br;
432
f06c7f9f 433 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
df8a39de 434 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
4981682c
PNA
435
436 return vlan ? vlan : br;
437}
438
1da177e4 439/* Some common code for IPv4/IPv6 */
230ac490 440struct net_device *setup_pre_routing(struct sk_buff *skb)
1da177e4 441{
38330783 442 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
1da177e4
LT
443
444 if (skb->pkt_type == PACKET_OTHERHOST) {
445 skb->pkt_type = PACKET_HOST;
a1e67951 446 nf_bridge->pkt_otherhost = true;
1da177e4
LT
447 }
448
72b1e5e4 449 nf_bridge->in_prerouting = 1;
1da177e4 450 nf_bridge->physindev = skb->dev;
4981682c 451 skb->dev = brnf_get_logical_dev(skb, skb->dev);
3eaf4025 452
e179e632 453 if (skb->protocol == htons(ETH_P_8021Q))
3eaf4025 454 nf_bridge->orig_proto = BRNF_PROTO_8021Q;
e179e632 455 else if (skb->protocol == htons(ETH_P_PPP_SES))
3eaf4025 456 nf_bridge->orig_proto = BRNF_PROTO_PPPOE;
5dce971a 457
6b8dbcf2
FW
458 /* Must drop socket now because of tproxy. */
459 skb_orphan(skb);
5dce971a 460 return skb->dev;
1da177e4
LT
461}
462
1da177e4
LT
463/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
464 * Replicate the checks that IPv4 does on packet reception.
465 * Set skb->dev to the bridge device (i.e. parent of the
466 * receiving device) to make netfilter happy, the REDIRECT
467 * target in particular. Save the original destination IP
468 * address to be able to detect DNAT afterwards. */
06198b34 469static unsigned int br_nf_pre_routing(void *priv,
795aa6ef 470 struct sk_buff *skb,
238e54c9 471 const struct nf_hook_state *state)
1da177e4 472{
faecbb45 473 struct nf_bridge_info *nf_bridge;
4df53d8b
PM
474 struct net_bridge_port *p;
475 struct net_bridge *br;
e7c243c9
EP
476 __u32 len = nf_bridge_encap_header_len(skb);
477
e7c243c9 478 if (unlikely(!pskb_may_pull(skb, len)))
deef4b52 479 return NF_DROP;
1da177e4 480
238e54c9 481 p = br_port_get_rcu(state->in);
4df53d8b 482 if (p == NULL)
deef4b52 483 return NF_DROP;
4df53d8b
PM
484 br = p->br;
485
739e4505 486 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
4df53d8b 487 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
1da177e4 488 return NF_ACCEPT;
4df53d8b 489
fc38582d 490 nf_bridge_pull_encap_header_rcsum(skb);
06198b34 491 return br_nf_pre_routing_ipv6(priv, skb, state);
1da177e4 492 }
4df53d8b
PM
493
494 if (!brnf_call_iptables && !br->nf_call_iptables)
1da177e4 495 return NF_ACCEPT;
1da177e4 496
739e4505 497 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
1da177e4
LT
498 return NF_ACCEPT;
499
fc38582d 500 nf_bridge_pull_encap_header_rcsum(skb);
1da177e4 501
c1444c63 502 if (br_validate_ipv4(state->net, skb))
deef4b52 503 return NF_DROP;
17762060 504
789bc3e5 505 nf_bridge_put(skb->nf_bridge);
fdeabdef 506 if (!nf_bridge_alloc(skb))
1da177e4 507 return NF_DROP;
5dce971a
SH
508 if (!setup_pre_routing(skb))
509 return NF_DROP;
c055d5b0 510
faecbb45
FW
511 nf_bridge = nf_bridge_info_get(skb);
512 nf_bridge->ipv4_daddr = ip_hdr(skb)->daddr;
513
e179e632 514 skb->protocol = htons(ETH_P_IP);
1da177e4 515
29a26a56 516 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, state->net, state->sk, skb,
7026b1dd 517 skb->dev, NULL,
1da177e4
LT
518 br_nf_pre_routing_finish);
519
520 return NF_STOLEN;
1da177e4
LT
521}
522
523
1da177e4 524/* PF_BRIDGE/FORWARD *************************************************/
0c4b51f0 525static int br_nf_forward_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
1da177e4 526{
38330783 527 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
1da177e4 528 struct net_device *in;
1da177e4 529
739e4505 530 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
0b67c43c 531
efb6de9b 532 if (skb->protocol == htons(ETH_P_IP))
411ffb4f 533 nf_bridge->frag_max_size = IPCB(skb)->frag_max_size;
efb6de9b
BT
534
535 if (skb->protocol == htons(ETH_P_IPV6))
536 nf_bridge->frag_max_size = IP6CB(skb)->frag_max_size;
0b67c43c 537
1da177e4 538 in = nf_bridge->physindev;
a1e67951 539 if (nf_bridge->pkt_otherhost) {
1da177e4 540 skb->pkt_type = PACKET_OTHERHOST;
a1e67951 541 nf_bridge->pkt_otherhost = false;
1da177e4 542 }
e94c6743 543 nf_bridge_update_protocol(skb);
1da177e4
LT
544 } else {
545 in = *((struct net_device **)(skb->cb));
546 }
fc38582d 547 nf_bridge_push_encap_header(skb);
e179e632 548
1610a73c
PNA
549 br_nf_hook_thresh(NF_BR_FORWARD, net, sk, skb, in, skb->dev,
550 br_forward_finish);
1da177e4
LT
551 return 0;
552}
553
739e4505 554
1da177e4
LT
555/* This is the 'purely bridged' case. For IP, we pass the packet to
556 * netfilter with indev and outdev set to the bridge device,
557 * but we are still able to filter on the 'real' indev/outdev
558 * because of the physdev module. For ARP, indev and outdev are the
559 * bridge ports. */
06198b34 560static unsigned int br_nf_forward_ip(void *priv,
795aa6ef 561 struct sk_buff *skb,
238e54c9 562 const struct nf_hook_state *state)
1da177e4 563{
1da177e4 564 struct nf_bridge_info *nf_bridge;
5dce971a 565 struct net_device *parent;
76108cea 566 u_int8_t pf;
1da177e4
LT
567
568 if (!skb->nf_bridge)
569 return NF_ACCEPT;
570
2dc2f207
PM
571 /* Need exclusive nf_bridge_info since we might have multiple
572 * different physoutdevs. */
573 if (!nf_bridge_unshare(skb))
574 return NF_DROP;
575
38330783
FW
576 nf_bridge = nf_bridge_info_get(skb);
577 if (!nf_bridge)
578 return NF_DROP;
579
238e54c9 580 parent = bridge_parent(state->out);
5dce971a
SH
581 if (!parent)
582 return NF_DROP;
583
739e4505 584 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
aa740f46 585 pf = NFPROTO_IPV4;
739e4505 586 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
aa740f46 587 pf = NFPROTO_IPV6;
a2bd40ad
HX
588 else
589 return NF_ACCEPT;
1da177e4 590
3db05fea 591 nf_bridge_pull_encap_header(skb);
1da177e4 592
1da177e4
LT
593 if (skb->pkt_type == PACKET_OTHERHOST) {
594 skb->pkt_type = PACKET_HOST;
a1e67951 595 nf_bridge->pkt_otherhost = true;
1da177e4
LT
596 }
597
0b67c43c 598 if (pf == NFPROTO_IPV4) {
c1444c63 599 if (br_validate_ipv4(state->net, skb))
0b67c43c 600 return NF_DROP;
411ffb4f 601 IPCB(skb)->frag_max_size = nf_bridge->frag_max_size;
0b67c43c 602 }
6b1e960f 603
efb6de9b 604 if (pf == NFPROTO_IPV6) {
c1444c63 605 if (br_validate_ipv6(state->net, skb))
efb6de9b
BT
606 return NF_DROP;
607 IP6CB(skb)->frag_max_size = nf_bridge->frag_max_size;
608 }
609
1da177e4 610 nf_bridge->physoutdev = skb->dev;
aa740f46 611 if (pf == NFPROTO_IPV4)
e179e632
BDS
612 skb->protocol = htons(ETH_P_IP);
613 else
614 skb->protocol = htons(ETH_P_IPV6);
1da177e4 615
29a26a56 616 NF_HOOK(pf, NF_INET_FORWARD, state->net, NULL, skb,
7026b1dd 617 brnf_get_logical_dev(skb, state->in),
238e54c9 618 parent, br_nf_forward_finish);
1da177e4
LT
619
620 return NF_STOLEN;
621}
622
06198b34 623static unsigned int br_nf_forward_arp(void *priv,
795aa6ef 624 struct sk_buff *skb,
238e54c9 625 const struct nf_hook_state *state)
1da177e4 626{
4df53d8b
PM
627 struct net_bridge_port *p;
628 struct net_bridge *br;
1da177e4
LT
629 struct net_device **d = (struct net_device **)(skb->cb);
630
238e54c9 631 p = br_port_get_rcu(state->out);
4df53d8b
PM
632 if (p == NULL)
633 return NF_ACCEPT;
634 br = p->br;
635
636 if (!brnf_call_arptables && !br->nf_call_arptables)
1da177e4 637 return NF_ACCEPT;
1da177e4 638
739e4505 639 if (!IS_ARP(skb)) {
8b42ec39 640 if (!IS_VLAN_ARP(skb))
1da177e4 641 return NF_ACCEPT;
3db05fea 642 nf_bridge_pull_encap_header(skb);
1da177e4
LT
643 }
644
d0a92be0 645 if (arp_hdr(skb)->ar_pln != 4) {
fc38582d 646 if (IS_VLAN_ARP(skb))
3db05fea 647 nf_bridge_push_encap_header(skb);
1da177e4
LT
648 return NF_ACCEPT;
649 }
238e54c9 650 *d = state->in;
29a26a56 651 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, state->net, state->sk, skb,
7026b1dd 652 state->in, state->out, br_nf_forward_finish);
1da177e4
LT
653
654 return NF_STOLEN;
655}
656
6532948b 657static int br_nf_push_frag_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
8bd63cf1 658{
e70deecb 659 struct brnf_frag_data *data;
8bd63cf1 660 int err;
8bd63cf1 661
e70deecb
FW
662 data = this_cpu_ptr(&brnf_frag_data_storage);
663 err = skb_cow_head(skb, data->size);
8bd63cf1 664
e70deecb 665 if (err) {
8bd63cf1
FW
666 kfree_skb(skb);
667 return 0;
668 }
669
d7b59742
FW
670 if (data->vlan_tci) {
671 skb->vlan_tci = data->vlan_tci;
672 skb->vlan_proto = data->vlan_proto;
673 }
674
e70deecb
FW
675 skb_copy_to_linear_data_offset(skb, -data->size, data->mac, data->size);
676 __skb_push(skb, data->encap_size);
677
a9fcc6a4 678 nf_bridge_info_free(skb);
0c4b51f0 679 return br_dev_queue_push_xmit(net, sk, skb);
8bd63cf1
FW
680}
681
8d4df0b9
EB
682static int
683br_nf_ip_fragment(struct net *net, struct sock *sk, struct sk_buff *skb,
694869b3 684 int (*output)(struct net *, struct sock *, struct sk_buff *))
49d16b23 685{
fedbb6b4 686 unsigned int mtu = ip_skb_dst_mtu(sk, skb);
49d16b23 687 struct iphdr *iph = ip_hdr(skb);
49d16b23
AZ
688
689 if (unlikely(((iph->frag_off & htons(IP_DF)) && !skb->ignore_df) ||
690 (IPCB(skb)->frag_max_size &&
691 IPCB(skb)->frag_max_size > mtu))) {
8d4df0b9 692 IP_INC_STATS(net, IPSTATS_MIB_FRAGFAILS);
49d16b23
AZ
693 kfree_skb(skb);
694 return -EMSGSIZE;
695 }
696
694869b3 697 return ip_do_fragment(net, sk, skb, output);
49d16b23
AZ
698}
699
33b1f313
FW
700static unsigned int nf_bridge_mtu_reduction(const struct sk_buff *skb)
701{
702 if (skb->nf_bridge->orig_proto == BRNF_PROTO_PPPOE)
703 return PPPOE_SES_HLEN;
704 return 0;
705}
706
0c4b51f0 707static int br_nf_dev_queue_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
2e2f7aef 708{
4ca60d08
FW
709 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
710 unsigned int mtu, mtu_reserved;
462fb2af 711
efb6de9b 712 mtu_reserved = nf_bridge_mtu_reduction(skb);
4ca60d08
FW
713 mtu = skb->dev->mtu;
714
715 if (nf_bridge->frag_max_size && nf_bridge->frag_max_size < mtu)
716 mtu = nf_bridge->frag_max_size;
efb6de9b 717
4ca60d08 718 if (skb_is_gso(skb) || skb->len + mtu_reserved <= mtu) {
a9fcc6a4 719 nf_bridge_info_free(skb);
0c4b51f0 720 return br_dev_queue_push_xmit(net, sk, skb);
a9fcc6a4 721 }
7a8d831d 722
93fdd47e
HX
723 /* This is wrong! We should preserve the original fragment
724 * boundaries by preserving frag_list rather than refragmenting.
725 */
c9322458
AB
726 if (IS_ENABLED(CONFIG_NF_DEFRAG_IPV4) &&
727 skb->protocol == htons(ETH_P_IP)) {
e70deecb
FW
728 struct brnf_frag_data *data;
729
c1444c63 730 if (br_validate_ipv4(net, skb))
dd302b59 731 goto drop;
411ffb4f
BT
732
733 IPCB(skb)->frag_max_size = nf_bridge->frag_max_size;
e70deecb
FW
734
735 nf_bridge_update_protocol(skb);
736
737 data = this_cpu_ptr(&brnf_frag_data_storage);
d7b59742
FW
738
739 data->vlan_tci = skb->vlan_tci;
740 data->vlan_proto = skb->vlan_proto;
e70deecb
FW
741 data->encap_size = nf_bridge_encap_header_len(skb);
742 data->size = ETH_HLEN + data->encap_size;
743
744 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
745 data->size);
746
694869b3 747 return br_nf_ip_fragment(net, sk, skb, br_nf_push_frag_xmit);
e70deecb 748 }
c9322458
AB
749 if (IS_ENABLED(CONFIG_NF_DEFRAG_IPV6) &&
750 skb->protocol == htons(ETH_P_IPV6)) {
efb6de9b
BT
751 const struct nf_ipv6_ops *v6ops = nf_get_ipv6_ops();
752 struct brnf_frag_data *data;
462fb2af 753
c1444c63 754 if (br_validate_ipv6(net, skb))
dd302b59 755 goto drop;
efb6de9b
BT
756
757 IP6CB(skb)->frag_max_size = nf_bridge->frag_max_size;
758
759 nf_bridge_update_protocol(skb);
760
761 data = this_cpu_ptr(&brnf_frag_data_storage);
762 data->encap_size = nf_bridge_encap_header_len(skb);
763 data->size = ETH_HLEN + data->encap_size;
764
765 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
766 data->size);
767
768 if (v6ops)
7d8c6e39 769 return v6ops->fragment(net, sk, skb, br_nf_push_frag_xmit);
dd302b59
FW
770
771 kfree_skb(skb);
772 return -EMSGSIZE;
efb6de9b 773 }
a9fcc6a4 774 nf_bridge_info_free(skb);
0c4b51f0 775 return br_dev_queue_push_xmit(net, sk, skb);
dd302b59
FW
776 drop:
777 kfree_skb(skb);
778 return 0;
c197facc 779}
1da177e4
LT
780
781/* PF_BRIDGE/POST_ROUTING ********************************************/
06198b34 782static unsigned int br_nf_post_routing(void *priv,
795aa6ef 783 struct sk_buff *skb,
238e54c9 784 const struct nf_hook_state *state)
1da177e4 785{
38330783 786 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
1da177e4 787 struct net_device *realoutdev = bridge_parent(skb->dev);
76108cea 788 u_int8_t pf;
1da177e4 789
e4bb9bcb
FW
790 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
791 * on a bridge, but was delivered locally and is now being routed:
792 *
793 * POST_ROUTING was already invoked from the ip stack.
794 */
795 if (!nf_bridge || !nf_bridge->physoutdev)
81d9ddae
PM
796 return NF_ACCEPT;
797
5dce971a
SH
798 if (!realoutdev)
799 return NF_DROP;
800
739e4505 801 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
aa740f46 802 pf = NFPROTO_IPV4;
739e4505 803 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
aa740f46 804 pf = NFPROTO_IPV6;
a2bd40ad
HX
805 else
806 return NF_ACCEPT;
1da177e4 807
1da177e4
LT
808 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
809 * about the value of skb->pkt_type. */
810 if (skb->pkt_type == PACKET_OTHERHOST) {
811 skb->pkt_type = PACKET_HOST;
a1e67951 812 nf_bridge->pkt_otherhost = true;
1da177e4
LT
813 }
814
fc38582d 815 nf_bridge_pull_encap_header(skb);
aa740f46 816 if (pf == NFPROTO_IPV4)
e179e632
BDS
817 skb->protocol = htons(ETH_P_IP);
818 else
819 skb->protocol = htons(ETH_P_IPV6);
1da177e4 820
29a26a56 821 NF_HOOK(pf, NF_INET_POST_ROUTING, state->net, state->sk, skb,
7026b1dd 822 NULL, realoutdev,
2e2f7aef 823 br_nf_dev_queue_xmit);
1da177e4
LT
824
825 return NF_STOLEN;
1da177e4
LT
826}
827
1da177e4
LT
828/* IP/SABOTAGE *****************************************************/
829/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
830 * for the second time. */
06198b34 831static unsigned int ip_sabotage_in(void *priv,
795aa6ef 832 struct sk_buff *skb,
238e54c9 833 const struct nf_hook_state *state)
1da177e4 834{
06fd3a39
PNA
835 if (skb->nf_bridge && !skb->nf_bridge->in_prerouting) {
836 state->okfn(state->net, state->sk, skb);
837 return NF_STOLEN;
838 }
1da177e4
LT
839
840 return NF_ACCEPT;
841}
842
e5de75bf
PNA
843/* This is called when br_netfilter has called into iptables/netfilter,
844 * and DNAT has taken place on a bridge-forwarded packet.
845 *
846 * neigh->output has created a new MAC header, with local br0 MAC
847 * as saddr.
848 *
849 * This restores the original MAC saddr of the bridged packet
850 * before invoking bridge forward logic to transmit the packet.
851 */
852static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
853{
38330783 854 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
e5de75bf
PNA
855
856 skb_pull(skb, ETH_HLEN);
72b1e5e4 857 nf_bridge->bridged_dnat = 0;
e5de75bf 858
e70deecb
FW
859 BUILD_BUG_ON(sizeof(nf_bridge->neigh_header) != (ETH_HLEN - ETH_ALEN));
860
861 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN - ETH_ALEN),
862 nf_bridge->neigh_header,
863 ETH_HLEN - ETH_ALEN);
e5de75bf 864 skb->dev = nf_bridge->physindev;
7fb48c5b
FW
865
866 nf_bridge->physoutdev = NULL;
0c4b51f0 867 br_handle_frame_finish(dev_net(skb->dev), NULL, skb);
e5de75bf
PNA
868}
869
1a4ba64d 870static int br_nf_dev_xmit(struct sk_buff *skb)
e5de75bf 871{
72b1e5e4 872 if (skb->nf_bridge && skb->nf_bridge->bridged_dnat) {
e5de75bf
PNA
873 br_nf_pre_routing_finish_bridge_slow(skb);
874 return 1;
875 }
876 return 0;
877}
1a4ba64d
PNA
878
879static const struct nf_br_ops br_ops = {
880 .br_dev_xmit_hook = br_nf_dev_xmit,
881};
e5de75bf 882
4b7fd5d9
PNA
883void br_netfilter_enable(void)
884{
885}
886EXPORT_SYMBOL_GPL(br_netfilter_enable);
887
ea2d9b41
BDS
888/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
889 * br_dev_queue_push_xmit is called afterwards */
1999414a 890static struct nf_hook_ops br_nf_ops[] __read_mostly = {
1490fd89
CG
891 {
892 .hook = br_nf_pre_routing,
aa740f46 893 .pf = NFPROTO_BRIDGE,
1490fd89
CG
894 .hooknum = NF_BR_PRE_ROUTING,
895 .priority = NF_BR_PRI_BRNF,
896 },
1490fd89
CG
897 {
898 .hook = br_nf_forward_ip,
aa740f46 899 .pf = NFPROTO_BRIDGE,
1490fd89
CG
900 .hooknum = NF_BR_FORWARD,
901 .priority = NF_BR_PRI_BRNF - 1,
902 },
903 {
904 .hook = br_nf_forward_arp,
aa740f46 905 .pf = NFPROTO_BRIDGE,
1490fd89
CG
906 .hooknum = NF_BR_FORWARD,
907 .priority = NF_BR_PRI_BRNF,
908 },
1490fd89
CG
909 {
910 .hook = br_nf_post_routing,
aa740f46 911 .pf = NFPROTO_BRIDGE,
1490fd89
CG
912 .hooknum = NF_BR_POST_ROUTING,
913 .priority = NF_BR_PRI_LAST,
914 },
915 {
916 .hook = ip_sabotage_in,
aa740f46 917 .pf = NFPROTO_IPV4,
1490fd89
CG
918 .hooknum = NF_INET_PRE_ROUTING,
919 .priority = NF_IP_PRI_FIRST,
920 },
921 {
922 .hook = ip_sabotage_in,
aa740f46 923 .pf = NFPROTO_IPV6,
1490fd89
CG
924 .hooknum = NF_INET_PRE_ROUTING,
925 .priority = NF_IP6_PRI_FIRST,
926 },
1da177e4
LT
927};
928
5f6c253e
FW
929static int brnf_device_event(struct notifier_block *unused, unsigned long event,
930 void *ptr)
931{
932 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
933 struct brnf_net *brnet;
934 struct net *net;
935 int ret;
936
937 if (event != NETDEV_REGISTER || !(dev->priv_flags & IFF_EBRIDGE))
938 return NOTIFY_DONE;
939
940 ASSERT_RTNL();
941
942 net = dev_net(dev);
943 brnet = net_generic(net, brnf_net_id);
944 if (brnet->enabled)
945 return NOTIFY_OK;
946
947 ret = nf_register_net_hooks(net, br_nf_ops, ARRAY_SIZE(br_nf_ops));
948 if (ret)
949 return NOTIFY_BAD;
950
951 brnet->enabled = true;
952 return NOTIFY_OK;
953}
954
955static void __net_exit brnf_exit_net(struct net *net)
956{
957 struct brnf_net *brnet = net_generic(net, brnf_net_id);
958
959 if (!brnet->enabled)
960 return;
961
962 nf_unregister_net_hooks(net, br_nf_ops, ARRAY_SIZE(br_nf_ops));
963 brnet->enabled = false;
964}
965
966static struct pernet_operations brnf_net_ops __read_mostly = {
967 .exit = brnf_exit_net,
968 .id = &brnf_net_id,
969 .size = sizeof(struct brnf_net),
970};
971
972static struct notifier_block brnf_notifier __read_mostly = {
973 .notifier_call = brnf_device_event,
974};
975
c5136b15
FW
976/* recursively invokes nf_hook_slow (again), skipping already-called
977 * hooks (< NF_BR_PRI_BRNF).
978 *
979 * Called with rcu read lock held.
980 */
981int br_nf_hook_thresh(unsigned int hook, struct net *net,
982 struct sock *sk, struct sk_buff *skb,
983 struct net_device *indev,
984 struct net_device *outdev,
985 int (*okfn)(struct net *, struct sock *,
986 struct sk_buff *))
987{
e3b37f11 988 struct nf_hook_entry *elem;
c5136b15 989 struct nf_hook_state state;
c5136b15
FW
990 int ret;
991
679972f3
AC
992 for (elem = rcu_dereference(net->nf.hooks[NFPROTO_BRIDGE][hook]);
993 elem && nf_hook_entry_priority(elem) <= NF_BR_PRI_BRNF;
994 elem = rcu_dereference(elem->next))
995 ;
c5136b15 996
e3b37f11 997 if (!elem)
c5136b15
FW
998 return okfn(net, sk, skb);
999
01886bd9 1000 nf_hook_state_init(&state, hook, NFPROTO_BRIDGE, indev, outdev,
1610a73c 1001 sk, net, okfn);
c5136b15 1002
01886bd9 1003 ret = nf_hook_slow(skb, &state, elem);
c5136b15
FW
1004 if (ret == 1)
1005 ret = okfn(net, sk, skb);
1006
1007 return ret;
1008}
1009
1da177e4
LT
1010#ifdef CONFIG_SYSCTL
1011static
fe2c6338 1012int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
56b148eb 1013 void __user *buffer, size_t *lenp, loff_t *ppos)
1da177e4
LT
1014{
1015 int ret;
1016
8d65af78 1017 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
1da177e4
LT
1018
1019 if (write && *(int *)(ctl->data))
1020 *(int *)(ctl->data) = 1;
1021 return ret;
1022}
1023
fe2c6338 1024static struct ctl_table brnf_table[] = {
1da177e4 1025 {
1da177e4
LT
1026 .procname = "bridge-nf-call-arptables",
1027 .data = &brnf_call_arptables,
1028 .maxlen = sizeof(int),
1029 .mode = 0644,
6d9f239a 1030 .proc_handler = brnf_sysctl_call_tables,
1da177e4
LT
1031 },
1032 {
1da177e4
LT
1033 .procname = "bridge-nf-call-iptables",
1034 .data = &brnf_call_iptables,
1035 .maxlen = sizeof(int),
1036 .mode = 0644,
6d9f239a 1037 .proc_handler = brnf_sysctl_call_tables,
1da177e4
LT
1038 },
1039 {
1da177e4
LT
1040 .procname = "bridge-nf-call-ip6tables",
1041 .data = &brnf_call_ip6tables,
1042 .maxlen = sizeof(int),
1043 .mode = 0644,
6d9f239a 1044 .proc_handler = brnf_sysctl_call_tables,
1da177e4
LT
1045 },
1046 {
1da177e4
LT
1047 .procname = "bridge-nf-filter-vlan-tagged",
1048 .data = &brnf_filter_vlan_tagged,
1049 .maxlen = sizeof(int),
1050 .mode = 0644,
6d9f239a 1051 .proc_handler = brnf_sysctl_call_tables,
516299d2
MM
1052 },
1053 {
516299d2
MM
1054 .procname = "bridge-nf-filter-pppoe-tagged",
1055 .data = &brnf_filter_pppoe_tagged,
1056 .maxlen = sizeof(int),
1057 .mode = 0644,
6d9f239a 1058 .proc_handler = brnf_sysctl_call_tables,
1da177e4 1059 },
4981682c
PNA
1060 {
1061 .procname = "bridge-nf-pass-vlan-input-dev",
1062 .data = &brnf_pass_vlan_indev,
1063 .maxlen = sizeof(int),
1064 .mode = 0644,
1065 .proc_handler = brnf_sysctl_call_tables,
1066 },
f8572d8f 1067 { }
1da177e4 1068};
1da177e4
LT
1069#endif
1070
34666d46 1071static int __init br_netfilter_init(void)
1da177e4 1072{
5eb87f45 1073 int ret;
1da177e4 1074
5f6c253e 1075 ret = register_pernet_subsys(&brnf_net_ops);
5eb87f45 1076 if (ret < 0)
1da177e4 1077 return ret;
fc66f95c 1078
5f6c253e
FW
1079 ret = register_netdevice_notifier(&brnf_notifier);
1080 if (ret < 0) {
1081 unregister_pernet_subsys(&brnf_net_ops);
1082 return ret;
1083 }
1084
1da177e4 1085#ifdef CONFIG_SYSCTL
ec8f23ce 1086 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
1da177e4 1087 if (brnf_sysctl_header == NULL) {
789bc3e5
SH
1088 printk(KERN_WARNING
1089 "br_netfilter: can't register to sysctl.\n");
5f6c253e
FW
1090 unregister_netdevice_notifier(&brnf_notifier);
1091 unregister_pernet_subsys(&brnf_net_ops);
96727239 1092 return -ENOMEM;
1da177e4
LT
1093 }
1094#endif
1a4ba64d 1095 RCU_INIT_POINTER(nf_br_ops, &br_ops);
1da177e4 1096 printk(KERN_NOTICE "Bridge firewalling registered\n");
1da177e4
LT
1097 return 0;
1098}
1099
34666d46 1100static void __exit br_netfilter_fini(void)
1da177e4 1101{
1a4ba64d 1102 RCU_INIT_POINTER(nf_br_ops, NULL);
5f6c253e
FW
1103 unregister_netdevice_notifier(&brnf_notifier);
1104 unregister_pernet_subsys(&brnf_net_ops);
1da177e4 1105#ifdef CONFIG_SYSCTL
5dd3df10 1106 unregister_net_sysctl_table(brnf_sysctl_header);
1da177e4
LT
1107#endif
1108}
34666d46
PNA
1109
1110module_init(br_netfilter_init);
1111module_exit(br_netfilter_fini);
1112
1113MODULE_LICENSE("GPL");
1114MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1115MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1116MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");