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