MOXA linux-2.6.x / linux-2.6.19-uc1 from UC-7110-LX-BOOTLOADER-1.9_VERSION-4.2.tgz
[linux-2.6.19-moxart.git] / net / bridge / br_netfilter.c
blob3f7d62124da6e84c2f04db1691e10f2b214d15c6
1 /*
2 * Handle firewalling
3 * Linux ethernet bridge
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer (maintainer) <bdschuym@pandora.be>
9 * Changes:
10 * Apr 29 2003: physdev module support (bdschuym)
11 * Jun 19 2003: let arptables see bridged ARP traffic (bdschuym)
12 * Oct 06 2003: filter encapsulated IP/ARP VLAN traffic on untagged bridge
13 * (bdschuym)
14 * Sep 01 2004: add IPv6 filtering (bdschuym)
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
21 * Lennert dedicates this file to Kerstin Wurdinger.
24 #include <linux/module.h>
25 #include <linux/kernel.h>
26 #include <linux/ip.h>
27 #include <linux/netdevice.h>
28 #include <linux/skbuff.h>
29 #include <linux/if_arp.h>
30 #include <linux/if_ether.h>
31 #include <linux/if_vlan.h>
32 #include <linux/netfilter_bridge.h>
33 #include <linux/netfilter_ipv4.h>
34 #include <linux/netfilter_ipv6.h>
35 #include <linux/netfilter_arp.h>
36 #include <linux/in_route.h>
38 #include <net/ip.h>
39 #include <net/ipv6.h>
40 #include <net/route.h>
42 #include <asm/uaccess.h>
43 #include <asm/checksum.h>
44 #include "br_private.h"
45 #ifdef CONFIG_SYSCTL
46 #include <linux/sysctl.h>
47 #endif
49 #define skb_origaddr(skb) (((struct bridge_skb_cb *) \
50 (skb->nf_bridge->data))->daddr.ipv4)
51 #define store_orig_dstaddr(skb) (skb_origaddr(skb) = (skb)->nh.iph->daddr)
52 #define dnat_took_place(skb) (skb_origaddr(skb) != (skb)->nh.iph->daddr)
54 #ifdef CONFIG_SYSCTL
55 static struct ctl_table_header *brnf_sysctl_header;
56 static int brnf_call_iptables __read_mostly = 1;
57 static int brnf_call_ip6tables __read_mostly = 1;
58 static int brnf_call_arptables __read_mostly = 1;
59 static int brnf_filter_vlan_tagged __read_mostly = 1;
60 #else
61 #define brnf_filter_vlan_tagged 1
62 #endif
64 int brnf_deferred_hooks;
65 EXPORT_SYMBOL_GPL(brnf_deferred_hooks);
67 static __be16 inline vlan_proto(const struct sk_buff *skb)
69 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
72 #define IS_VLAN_IP(skb) \
73 (skb->protocol == htons(ETH_P_8021Q) && \
74 vlan_proto(skb) == htons(ETH_P_IP) && \
75 brnf_filter_vlan_tagged)
77 #define IS_VLAN_IPV6(skb) \
78 (skb->protocol == htons(ETH_P_8021Q) && \
79 vlan_proto(skb) == htons(ETH_P_IPV6) &&\
80 brnf_filter_vlan_tagged)
82 #define IS_VLAN_ARP(skb) \
83 (skb->protocol == htons(ETH_P_8021Q) && \
84 vlan_proto(skb) == htons(ETH_P_ARP) && \
85 brnf_filter_vlan_tagged)
87 /* We need these fake structures to make netfilter happy --
88 * lots of places assume that skb->dst != NULL, which isn't
89 * all that unreasonable.
91 * Currently, we fill in the PMTU entry because netfilter
92 * refragmentation needs it, and the rt_flags entry because
93 * ipt_REJECT needs it. Future netfilter modules might
94 * require us to fill additional fields. */
95 static struct net_device __fake_net_device = {
96 .hard_header_len = ETH_HLEN
99 static struct rtable __fake_rtable = {
100 .u = {
101 .dst = {
102 .__refcnt = ATOMIC_INIT(1),
103 .dev = &__fake_net_device,
104 .path = &__fake_rtable.u.dst,
105 .metrics = {[RTAX_MTU - 1] = 1500},
106 .flags = DST_NOXFRM,
109 .rt_flags = 0,
112 static inline struct net_device *bridge_parent(const struct net_device *dev)
114 struct net_bridge_port *port = rcu_dereference(dev->br_port);
116 return port ? port->br->dev : NULL;
119 static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
121 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
122 if (likely(skb->nf_bridge))
123 atomic_set(&(skb->nf_bridge->use), 1);
125 return skb->nf_bridge;
128 static inline void nf_bridge_save_header(struct sk_buff *skb)
130 int header_size = ETH_HLEN;
132 if (skb->protocol == htons(ETH_P_8021Q))
133 header_size += VLAN_HLEN;
135 memcpy(skb->nf_bridge->data, skb->data - header_size, header_size);
139 * When forwarding bridge frames, we save a copy of the original
140 * header before processing.
142 int nf_bridge_copy_header(struct sk_buff *skb)
144 int err;
145 int header_size = ETH_HLEN;
147 if (skb->protocol == htons(ETH_P_8021Q))
148 header_size += VLAN_HLEN;
150 err = skb_cow(skb, header_size);
151 if (err)
152 return err;
154 memcpy(skb->data - header_size, skb->nf_bridge->data, header_size);
156 if (skb->protocol == htons(ETH_P_8021Q))
157 __skb_push(skb, VLAN_HLEN);
158 return 0;
161 /* PF_BRIDGE/PRE_ROUTING *********************************************/
162 /* Undo the changes made for ip6tables PREROUTING and continue the
163 * bridge PRE_ROUTING hook. */
164 static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
166 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
168 if (nf_bridge->mask & BRNF_PKT_TYPE) {
169 skb->pkt_type = PACKET_OTHERHOST;
170 nf_bridge->mask ^= BRNF_PKT_TYPE;
172 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
174 skb->dst = (struct dst_entry *)&__fake_rtable;
175 dst_hold(skb->dst);
177 skb->dev = nf_bridge->physindev;
178 if (skb->protocol == htons(ETH_P_8021Q)) {
179 skb_push(skb, VLAN_HLEN);
180 skb->nh.raw -= VLAN_HLEN;
182 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
183 br_handle_frame_finish, 1);
185 return 0;
188 static void __br_dnat_complain(void)
190 static unsigned long last_complaint;
192 if (jiffies - last_complaint >= 5 * HZ) {
193 printk(KERN_WARNING "Performing cross-bridge DNAT requires IP "
194 "forwarding to be enabled\n");
195 last_complaint = jiffies;
199 /* This requires some explaining. If DNAT has taken place,
200 * we will need to fix up the destination Ethernet address,
201 * and this is a tricky process.
203 * There are two cases to consider:
204 * 1. The packet was DNAT'ed to a device in the same bridge
205 * port group as it was received on. We can still bridge
206 * the packet.
207 * 2. The packet was DNAT'ed to a different device, either
208 * a non-bridged device or another bridge port group.
209 * The packet will need to be routed.
211 * The correct way of distinguishing between these two cases is to
212 * call ip_route_input() and to look at skb->dst->dev, which is
213 * changed to the destination device if ip_route_input() succeeds.
215 * Let us first consider the case that ip_route_input() succeeds:
217 * If skb->dst->dev equals the logical bridge device the packet
218 * came in on, we can consider this bridging. We then call
219 * skb->dst->output() which will make the packet enter br_nf_local_out()
220 * not much later. In that function it is assured that the iptables
221 * FORWARD chain is traversed for the packet.
223 * Otherwise, the packet is considered to be routed and we just
224 * change the destination MAC address so that the packet will
225 * later be passed up to the IP stack to be routed.
227 * Let us now consider the case that ip_route_input() fails:
229 * After a "echo '0' > /proc/sys/net/ipv4/ip_forward" ip_route_input()
230 * will fail, while __ip_route_output_key() will return success. The source
231 * address for __ip_route_output_key() is set to zero, so __ip_route_output_key
232 * thinks we're handling a locally generated packet and won't care
233 * if IP forwarding is allowed. We send a warning message to the users's
234 * log telling her to put IP forwarding on.
236 * ip_route_input() will also fail if there is no route available.
237 * In that case we just drop the packet.
239 * --Lennert, 20020411
240 * --Bart, 20020416 (updated)
241 * --Bart, 20021007 (updated) */
242 static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
244 if (skb->pkt_type == PACKET_OTHERHOST) {
245 skb->pkt_type = PACKET_HOST;
246 skb->nf_bridge->mask |= BRNF_PKT_TYPE;
248 skb->nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
250 skb->dev = bridge_parent(skb->dev);
251 if (!skb->dev)
252 kfree_skb(skb);
253 else {
254 if (skb->protocol == htons(ETH_P_8021Q)) {
255 skb_pull(skb, VLAN_HLEN);
256 skb->nh.raw += VLAN_HLEN;
258 skb->dst->output(skb);
260 return 0;
263 static int br_nf_pre_routing_finish(struct sk_buff *skb)
265 struct net_device *dev = skb->dev;
266 struct iphdr *iph = skb->nh.iph;
267 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
269 if (nf_bridge->mask & BRNF_PKT_TYPE) {
270 skb->pkt_type = PACKET_OTHERHOST;
271 nf_bridge->mask ^= BRNF_PKT_TYPE;
273 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
275 if (dnat_took_place(skb)) {
276 if (ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev)) {
277 struct rtable *rt;
278 struct flowi fl = {
279 .nl_u = {
280 .ip4_u = {
281 .daddr = iph->daddr,
282 .saddr = 0,
283 .tos = RT_TOS(iph->tos) },
285 .proto = 0,
288 if (!ip_route_output_key(&rt, &fl)) {
289 /* - Bridged-and-DNAT'ed traffic doesn't
290 * require ip_forwarding.
291 * - Deal with redirected traffic. */
292 if (((struct dst_entry *)rt)->dev == dev ||
293 rt->rt_type == RTN_LOCAL) {
294 skb->dst = (struct dst_entry *)rt;
295 goto bridged_dnat;
297 __br_dnat_complain();
298 dst_release((struct dst_entry *)rt);
300 kfree_skb(skb);
301 return 0;
302 } else {
303 if (skb->dst->dev == dev) {
304 bridged_dnat:
305 /* Tell br_nf_local_out this is a
306 * bridged frame */
307 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
308 skb->dev = nf_bridge->physindev;
309 if (skb->protocol ==
310 htons(ETH_P_8021Q)) {
311 skb_push(skb, VLAN_HLEN);
312 skb->nh.raw -= VLAN_HLEN;
314 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING,
315 skb, skb->dev, NULL,
316 br_nf_pre_routing_finish_bridge,
318 return 0;
320 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
321 skb->pkt_type = PACKET_HOST;
323 } else {
324 skb->dst = (struct dst_entry *)&__fake_rtable;
325 dst_hold(skb->dst);
328 skb->dev = nf_bridge->physindev;
329 if (skb->protocol == htons(ETH_P_8021Q)) {
330 skb_push(skb, VLAN_HLEN);
331 skb->nh.raw -= VLAN_HLEN;
333 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
334 br_handle_frame_finish, 1);
336 return 0;
339 /* Some common code for IPv4/IPv6 */
340 static struct net_device *setup_pre_routing(struct sk_buff *skb)
342 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
344 if (skb->pkt_type == PACKET_OTHERHOST) {
345 skb->pkt_type = PACKET_HOST;
346 nf_bridge->mask |= BRNF_PKT_TYPE;
349 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
350 nf_bridge->physindev = skb->dev;
351 skb->dev = bridge_parent(skb->dev);
353 return skb->dev;
356 /* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
357 static int check_hbh_len(struct sk_buff *skb)
359 unsigned char *raw = (u8 *) (skb->nh.ipv6h + 1);
360 u32 pkt_len;
361 int off = raw - skb->nh.raw;
362 int len = (raw[1] + 1) << 3;
364 if ((raw + len) - skb->data > skb_headlen(skb))
365 goto bad;
367 off += 2;
368 len -= 2;
370 while (len > 0) {
371 int optlen = skb->nh.raw[off + 1] + 2;
373 switch (skb->nh.raw[off]) {
374 case IPV6_TLV_PAD0:
375 optlen = 1;
376 break;
378 case IPV6_TLV_PADN:
379 break;
381 case IPV6_TLV_JUMBO:
382 if (skb->nh.raw[off + 1] != 4 || (off & 3) != 2)
383 goto bad;
384 pkt_len = ntohl(*(u32 *) (skb->nh.raw + off + 2));
385 if (pkt_len <= IPV6_MAXPLEN ||
386 skb->nh.ipv6h->payload_len)
387 goto bad;
388 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
389 goto bad;
390 if (pskb_trim_rcsum(skb,
391 pkt_len + sizeof(struct ipv6hdr)))
392 goto bad;
393 break;
394 default:
395 if (optlen > len)
396 goto bad;
397 break;
399 off += optlen;
400 len -= optlen;
402 if (len == 0)
403 return 0;
404 bad:
405 return -1;
409 /* Replicate the checks that IPv6 does on packet reception and pass the packet
410 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
411 static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
412 struct sk_buff *skb,
413 const struct net_device *in,
414 const struct net_device *out,
415 int (*okfn)(struct sk_buff *))
417 struct ipv6hdr *hdr;
418 u32 pkt_len;
420 if (skb->len < sizeof(struct ipv6hdr))
421 goto inhdr_error;
423 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
424 goto inhdr_error;
426 hdr = skb->nh.ipv6h;
428 if (hdr->version != 6)
429 goto inhdr_error;
431 pkt_len = ntohs(hdr->payload_len);
433 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
434 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
435 goto inhdr_error;
436 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
437 goto inhdr_error;
439 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
440 goto inhdr_error;
442 nf_bridge_put(skb->nf_bridge);
443 if (!nf_bridge_alloc(skb))
444 return NF_DROP;
445 if (!setup_pre_routing(skb))
446 return NF_DROP;
448 NF_HOOK(PF_INET6, NF_IP6_PRE_ROUTING, skb, skb->dev, NULL,
449 br_nf_pre_routing_finish_ipv6);
451 return NF_STOLEN;
453 inhdr_error:
454 return NF_DROP;
457 /* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
458 * Replicate the checks that IPv4 does on packet reception.
459 * Set skb->dev to the bridge device (i.e. parent of the
460 * receiving device) to make netfilter happy, the REDIRECT
461 * target in particular. Save the original destination IP
462 * address to be able to detect DNAT afterwards. */
463 static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff **pskb,
464 const struct net_device *in,
465 const struct net_device *out,
466 int (*okfn)(struct sk_buff *))
468 struct iphdr *iph;
469 __u32 len;
470 struct sk_buff *skb = *pskb;
472 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb)) {
473 #ifdef CONFIG_SYSCTL
474 if (!brnf_call_ip6tables)
475 return NF_ACCEPT;
476 #endif
477 if ((skb = skb_share_check(*pskb, GFP_ATOMIC)) == NULL)
478 goto out;
480 if (skb->protocol == htons(ETH_P_8021Q)) {
481 skb_pull_rcsum(skb, VLAN_HLEN);
482 skb->nh.raw += VLAN_HLEN;
484 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
486 #ifdef CONFIG_SYSCTL
487 if (!brnf_call_iptables)
488 return NF_ACCEPT;
489 #endif
491 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb))
492 return NF_ACCEPT;
494 if ((skb = skb_share_check(*pskb, GFP_ATOMIC)) == NULL)
495 goto out;
497 if (skb->protocol == htons(ETH_P_8021Q)) {
498 skb_pull_rcsum(skb, VLAN_HLEN);
499 skb->nh.raw += VLAN_HLEN;
502 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
503 goto inhdr_error;
505 iph = skb->nh.iph;
506 if (iph->ihl < 5 || iph->version != 4)
507 goto inhdr_error;
509 if (!pskb_may_pull(skb, 4 * iph->ihl))
510 goto inhdr_error;
512 iph = skb->nh.iph;
513 if (ip_fast_csum((__u8 *) iph, iph->ihl) != 0)
514 goto inhdr_error;
516 len = ntohs(iph->tot_len);
517 if (skb->len < len || len < 4 * iph->ihl)
518 goto inhdr_error;
520 pskb_trim_rcsum(skb, len);
522 nf_bridge_put(skb->nf_bridge);
523 if (!nf_bridge_alloc(skb))
524 return NF_DROP;
525 if (!setup_pre_routing(skb))
526 return NF_DROP;
527 store_orig_dstaddr(skb);
529 NF_HOOK(PF_INET, NF_IP_PRE_ROUTING, skb, skb->dev, NULL,
530 br_nf_pre_routing_finish);
532 return NF_STOLEN;
534 inhdr_error:
535 // IP_INC_STATS_BH(IpInHdrErrors);
536 out:
537 return NF_DROP;
541 /* PF_BRIDGE/LOCAL_IN ************************************************/
542 /* The packet is locally destined, which requires a real
543 * dst_entry, so detach the fake one. On the way up, the
544 * packet would pass through PRE_ROUTING again (which already
545 * took place when the packet entered the bridge), but we
546 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
547 * prevent this from happening. */
548 static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff **pskb,
549 const struct net_device *in,
550 const struct net_device *out,
551 int (*okfn)(struct sk_buff *))
553 struct sk_buff *skb = *pskb;
555 if (skb->dst == (struct dst_entry *)&__fake_rtable) {
556 dst_release(skb->dst);
557 skb->dst = NULL;
560 return NF_ACCEPT;
563 /* PF_BRIDGE/FORWARD *************************************************/
564 static int br_nf_forward_finish(struct sk_buff *skb)
566 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
567 struct net_device *in;
569 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
570 in = nf_bridge->physindev;
571 if (nf_bridge->mask & BRNF_PKT_TYPE) {
572 skb->pkt_type = PACKET_OTHERHOST;
573 nf_bridge->mask ^= BRNF_PKT_TYPE;
575 } else {
576 in = *((struct net_device **)(skb->cb));
578 if (skb->protocol == htons(ETH_P_8021Q)) {
579 skb_push(skb, VLAN_HLEN);
580 skb->nh.raw -= VLAN_HLEN;
582 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_FORWARD, skb, in,
583 skb->dev, br_forward_finish, 1);
584 return 0;
587 /* This is the 'purely bridged' case. For IP, we pass the packet to
588 * netfilter with indev and outdev set to the bridge device,
589 * but we are still able to filter on the 'real' indev/outdev
590 * because of the physdev module. For ARP, indev and outdev are the
591 * bridge ports. */
592 static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff **pskb,
593 const struct net_device *in,
594 const struct net_device *out,
595 int (*okfn)(struct sk_buff *))
597 struct sk_buff *skb = *pskb;
598 struct nf_bridge_info *nf_bridge;
599 struct net_device *parent;
600 int pf;
602 if (!skb->nf_bridge)
603 return NF_ACCEPT;
605 parent = bridge_parent(out);
606 if (!parent)
607 return NF_DROP;
609 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb))
610 pf = PF_INET;
611 else
612 pf = PF_INET6;
614 if (skb->protocol == htons(ETH_P_8021Q)) {
615 skb_pull(*pskb, VLAN_HLEN);
616 (*pskb)->nh.raw += VLAN_HLEN;
619 nf_bridge = skb->nf_bridge;
620 if (skb->pkt_type == PACKET_OTHERHOST) {
621 skb->pkt_type = PACKET_HOST;
622 nf_bridge->mask |= BRNF_PKT_TYPE;
625 /* The physdev module checks on this */
626 nf_bridge->mask |= BRNF_BRIDGED;
627 nf_bridge->physoutdev = skb->dev;
629 NF_HOOK(pf, NF_IP_FORWARD, skb, bridge_parent(in), parent,
630 br_nf_forward_finish);
632 return NF_STOLEN;
635 static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff **pskb,
636 const struct net_device *in,
637 const struct net_device *out,
638 int (*okfn)(struct sk_buff *))
640 struct sk_buff *skb = *pskb;
641 struct net_device **d = (struct net_device **)(skb->cb);
643 #ifdef CONFIG_SYSCTL
644 if (!brnf_call_arptables)
645 return NF_ACCEPT;
646 #endif
648 if (skb->protocol != htons(ETH_P_ARP)) {
649 if (!IS_VLAN_ARP(skb))
650 return NF_ACCEPT;
651 skb_pull(*pskb, VLAN_HLEN);
652 (*pskb)->nh.raw += VLAN_HLEN;
655 if (skb->nh.arph->ar_pln != 4) {
656 if (IS_VLAN_ARP(skb)) {
657 skb_push(*pskb, VLAN_HLEN);
658 (*pskb)->nh.raw -= VLAN_HLEN;
660 return NF_ACCEPT;
662 *d = (struct net_device *)in;
663 NF_HOOK(NF_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
664 (struct net_device *)out, br_nf_forward_finish);
666 return NF_STOLEN;
669 /* PF_BRIDGE/LOCAL_OUT ***********************************************/
670 static int br_nf_local_out_finish(struct sk_buff *skb)
672 if (skb->protocol == htons(ETH_P_8021Q)) {
673 skb_push(skb, VLAN_HLEN);
674 skb->nh.raw -= VLAN_HLEN;
677 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_LOCAL_OUT, skb, NULL, skb->dev,
678 br_forward_finish, NF_BR_PRI_FIRST + 1);
680 return 0;
683 /* This function sees both locally originated IP packets and forwarded
684 * IP packets (in both cases the destination device is a bridge
685 * device). It also sees bridged-and-DNAT'ed packets.
686 * To be able to filter on the physical bridge devices (with the physdev
687 * module), we steal packets destined to a bridge device away from the
688 * PF_INET/FORWARD and PF_INET/OUTPUT hook functions, and give them back later,
689 * when we have determined the real output device. This is done in here.
691 * If (nf_bridge->mask & BRNF_BRIDGED_DNAT) then the packet is bridged
692 * and we fake the PF_BRIDGE/FORWARD hook. The function br_nf_forward()
693 * will then fake the PF_INET/FORWARD hook. br_nf_local_out() has priority
694 * NF_BR_PRI_FIRST, so no relevant PF_BRIDGE/INPUT functions have been nor
695 * will be executed.
696 * Otherwise, if nf_bridge->physindev is NULL, the bridge-nf code never touched
697 * this packet before, and so the packet was locally originated. We fake
698 * the PF_INET/LOCAL_OUT hook.
699 * Finally, if nf_bridge->physindev isn't NULL, then the packet was IP routed,
700 * so we fake the PF_INET/FORWARD hook. ip_sabotage_out() makes sure
701 * even routed packets that didn't arrive on a bridge interface have their
702 * nf_bridge->physindev set. */
703 static unsigned int br_nf_local_out(unsigned int hook, struct sk_buff **pskb,
704 const struct net_device *in,
705 const struct net_device *out,
706 int (*okfn)(struct sk_buff *))
708 struct net_device *realindev, *realoutdev;
709 struct sk_buff *skb = *pskb;
710 struct nf_bridge_info *nf_bridge;
711 int pf;
713 if (!skb->nf_bridge)
714 return NF_ACCEPT;
716 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb))
717 pf = PF_INET;
718 else
719 pf = PF_INET6;
721 nf_bridge = skb->nf_bridge;
722 nf_bridge->physoutdev = skb->dev;
723 realindev = nf_bridge->physindev;
725 /* Bridged, take PF_BRIDGE/FORWARD.
726 * (see big note in front of br_nf_pre_routing_finish) */
727 if (nf_bridge->mask & BRNF_BRIDGED_DNAT) {
728 if (nf_bridge->mask & BRNF_PKT_TYPE) {
729 skb->pkt_type = PACKET_OTHERHOST;
730 nf_bridge->mask ^= BRNF_PKT_TYPE;
732 if (skb->protocol == htons(ETH_P_8021Q)) {
733 skb_push(skb, VLAN_HLEN);
734 skb->nh.raw -= VLAN_HLEN;
737 NF_HOOK(PF_BRIDGE, NF_BR_FORWARD, skb, realindev,
738 skb->dev, br_forward_finish);
739 goto out;
741 realoutdev = bridge_parent(skb->dev);
742 if (!realoutdev)
743 return NF_DROP;
745 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
746 /* iptables should match -o br0.x */
747 if (nf_bridge->netoutdev)
748 realoutdev = nf_bridge->netoutdev;
749 #endif
750 if (skb->protocol == htons(ETH_P_8021Q)) {
751 skb_pull(skb, VLAN_HLEN);
752 (*pskb)->nh.raw += VLAN_HLEN;
754 /* IP forwarded traffic has a physindev, locally
755 * generated traffic hasn't. */
756 if (realindev != NULL) {
757 if (!(nf_bridge->mask & BRNF_DONT_TAKE_PARENT)) {
758 struct net_device *parent = bridge_parent(realindev);
759 if (parent)
760 realindev = parent;
763 NF_HOOK_THRESH(pf, NF_IP_FORWARD, skb, realindev,
764 realoutdev, br_nf_local_out_finish,
765 NF_IP_PRI_BRIDGE_SABOTAGE_FORWARD + 1);
766 } else {
767 NF_HOOK_THRESH(pf, NF_IP_LOCAL_OUT, skb, realindev,
768 realoutdev, br_nf_local_out_finish,
769 NF_IP_PRI_BRIDGE_SABOTAGE_LOCAL_OUT + 1);
772 out:
773 return NF_STOLEN;
777 * We've finished passing through netfilter, so we can remove the fake dst.
778 * This is required by some lower layers, eg ip_gre
780 static int br_nf_dev_queue_xmit_finish(struct sk_buff *skb)
782 if (skb->dst == (struct dst_entry *)&__fake_rtable) {
783 dst_release(skb->dst);
784 skb->dst = NULL;
787 return br_dev_queue_push_xmit(skb);
790 static int br_nf_dev_queue_xmit(struct sk_buff *skb)
792 if (skb->protocol == htons(ETH_P_IP) &&
793 skb->len > skb->dev->mtu &&
794 !skb_is_gso(skb))
795 return ip_fragment(skb, br_dev_queue_push_xmit);
796 else
797 return br_nf_dev_queue_xmit_finish(skb);
800 /* PF_BRIDGE/POST_ROUTING ********************************************/
801 static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff **pskb,
802 const struct net_device *in,
803 const struct net_device *out,
804 int (*okfn)(struct sk_buff *))
806 struct sk_buff *skb = *pskb;
807 struct nf_bridge_info *nf_bridge = (*pskb)->nf_bridge;
808 struct net_device *realoutdev = bridge_parent(skb->dev);
809 int pf;
811 #ifdef CONFIG_NETFILTER_DEBUG
812 /* Be very paranoid. This probably won't happen anymore, but let's
813 * keep the check just to be sure... */
814 if (skb->mac.raw < skb->head || skb->mac.raw + ETH_HLEN > skb->data) {
815 printk(KERN_CRIT "br_netfilter: Argh!! br_nf_post_routing: "
816 "bad mac.raw pointer.\n");
817 goto print_error;
819 #endif
821 if (!nf_bridge)
822 return NF_ACCEPT;
824 if (!realoutdev)
825 return NF_DROP;
827 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb))
828 pf = PF_INET;
829 else
830 pf = PF_INET6;
832 #ifdef CONFIG_NETFILTER_DEBUG
833 if (skb->dst == NULL) {
834 printk(KERN_INFO "br_netfilter post_routing: skb->dst == NULL\n");
835 goto print_error;
837 #endif
839 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
840 * about the value of skb->pkt_type. */
841 if (skb->pkt_type == PACKET_OTHERHOST) {
842 skb->pkt_type = PACKET_HOST;
843 nf_bridge->mask |= BRNF_PKT_TYPE;
846 if (skb->protocol == htons(ETH_P_8021Q)) {
847 skb_pull(skb, VLAN_HLEN);
848 skb->nh.raw += VLAN_HLEN;
851 nf_bridge_save_header(skb);
853 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
854 if (nf_bridge->netoutdev)
855 realoutdev = nf_bridge->netoutdev;
856 #endif
857 NF_HOOK(pf, NF_IP_POST_ROUTING, skb, NULL, realoutdev,
858 br_nf_dev_queue_xmit);
860 return NF_STOLEN;
862 #ifdef CONFIG_NETFILTER_DEBUG
863 print_error:
864 if (skb->dev != NULL) {
865 printk("[%s]", skb->dev->name);
866 if (realoutdev)
867 printk("[%s]", realoutdev->name);
869 printk(" head:%p, raw:%p, data:%p\n", skb->head, skb->mac.raw,
870 skb->data);
871 dump_stack();
872 return NF_ACCEPT;
873 #endif
876 /* IP/SABOTAGE *****************************************************/
877 /* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
878 * for the second time. */
879 static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff **pskb,
880 const struct net_device *in,
881 const struct net_device *out,
882 int (*okfn)(struct sk_buff *))
884 if ((*pskb)->nf_bridge &&
885 !((*pskb)->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
886 return NF_STOP;
889 return NF_ACCEPT;
892 /* Postpone execution of PF_INET(6)/FORWARD, PF_INET(6)/LOCAL_OUT
893 * and PF_INET(6)/POST_ROUTING until we have done the forwarding
894 * decision in the bridge code and have determined nf_bridge->physoutdev. */
895 static unsigned int ip_sabotage_out(unsigned int hook, struct sk_buff **pskb,
896 const struct net_device *in,
897 const struct net_device *out,
898 int (*okfn)(struct sk_buff *))
900 struct sk_buff *skb = *pskb;
902 if ((out->hard_start_xmit == br_dev_xmit &&
903 okfn != br_nf_forward_finish &&
904 okfn != br_nf_local_out_finish && okfn != br_nf_dev_queue_xmit)
905 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
906 || ((out->priv_flags & IFF_802_1Q_VLAN) &&
907 VLAN_DEV_INFO(out)->real_dev->hard_start_xmit == br_dev_xmit)
908 #endif
910 struct nf_bridge_info *nf_bridge;
912 if (!skb->nf_bridge) {
913 #ifdef CONFIG_SYSCTL
914 /* This code is executed while in the IP(v6) stack,
915 the version should be 4 or 6. We can't use
916 skb->protocol because that isn't set on
917 PF_INET(6)/LOCAL_OUT. */
918 struct iphdr *ip = skb->nh.iph;
920 if (ip->version == 4 && !brnf_call_iptables)
921 return NF_ACCEPT;
922 else if (ip->version == 6 && !brnf_call_ip6tables)
923 return NF_ACCEPT;
924 else if (!brnf_deferred_hooks)
925 return NF_ACCEPT;
926 #endif
927 if (hook == NF_IP_POST_ROUTING)
928 return NF_ACCEPT;
929 if (!nf_bridge_alloc(skb))
930 return NF_DROP;
933 nf_bridge = skb->nf_bridge;
935 /* This frame will arrive on PF_BRIDGE/LOCAL_OUT and we
936 * will need the indev then. For a brouter, the real indev
937 * can be a bridge port, so we make sure br_nf_local_out()
938 * doesn't use the bridge parent of the indev by using
939 * the BRNF_DONT_TAKE_PARENT mask. */
940 if (hook == NF_IP_FORWARD && nf_bridge->physindev == NULL) {
941 nf_bridge->mask |= BRNF_DONT_TAKE_PARENT;
942 nf_bridge->physindev = (struct net_device *)in;
944 #if defined(CONFIG_VLAN_8021Q) || defined(CONFIG_VLAN_8021Q_MODULE)
945 /* the iptables outdev is br0.x, not br0 */
946 if (out->priv_flags & IFF_802_1Q_VLAN)
947 nf_bridge->netoutdev = (struct net_device *)out;
948 #endif
949 return NF_STOP;
952 return NF_ACCEPT;
955 /* For br_nf_local_out we need (prio = NF_BR_PRI_FIRST), to insure that innocent
956 * PF_BRIDGE/NF_BR_LOCAL_OUT functions don't get bridged traffic as input.
957 * For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
958 * ip_refrag() can return NF_STOLEN. */
959 static struct nf_hook_ops br_nf_ops[] = {
960 { .hook = br_nf_pre_routing,
961 .owner = THIS_MODULE,
962 .pf = PF_BRIDGE,
963 .hooknum = NF_BR_PRE_ROUTING,
964 .priority = NF_BR_PRI_BRNF, },
965 { .hook = br_nf_local_in,
966 .owner = THIS_MODULE,
967 .pf = PF_BRIDGE,
968 .hooknum = NF_BR_LOCAL_IN,
969 .priority = NF_BR_PRI_BRNF, },
970 { .hook = br_nf_forward_ip,
971 .owner = THIS_MODULE,
972 .pf = PF_BRIDGE,
973 .hooknum = NF_BR_FORWARD,
974 .priority = NF_BR_PRI_BRNF - 1, },
975 { .hook = br_nf_forward_arp,
976 .owner = THIS_MODULE,
977 .pf = PF_BRIDGE,
978 .hooknum = NF_BR_FORWARD,
979 .priority = NF_BR_PRI_BRNF, },
980 { .hook = br_nf_local_out,
981 .owner = THIS_MODULE,
982 .pf = PF_BRIDGE,
983 .hooknum = NF_BR_LOCAL_OUT,
984 .priority = NF_BR_PRI_FIRST, },
985 { .hook = br_nf_post_routing,
986 .owner = THIS_MODULE,
987 .pf = PF_BRIDGE,
988 .hooknum = NF_BR_POST_ROUTING,
989 .priority = NF_BR_PRI_LAST, },
990 { .hook = ip_sabotage_in,
991 .owner = THIS_MODULE,
992 .pf = PF_INET,
993 .hooknum = NF_IP_PRE_ROUTING,
994 .priority = NF_IP_PRI_FIRST, },
995 { .hook = ip_sabotage_in,
996 .owner = THIS_MODULE,
997 .pf = PF_INET6,
998 .hooknum = NF_IP6_PRE_ROUTING,
999 .priority = NF_IP6_PRI_FIRST, },
1000 { .hook = ip_sabotage_out,
1001 .owner = THIS_MODULE,
1002 .pf = PF_INET,
1003 .hooknum = NF_IP_FORWARD,
1004 .priority = NF_IP_PRI_BRIDGE_SABOTAGE_FORWARD, },
1005 { .hook = ip_sabotage_out,
1006 .owner = THIS_MODULE,
1007 .pf = PF_INET6,
1008 .hooknum = NF_IP6_FORWARD,
1009 .priority = NF_IP6_PRI_BRIDGE_SABOTAGE_FORWARD, },
1010 { .hook = ip_sabotage_out,
1011 .owner = THIS_MODULE,
1012 .pf = PF_INET,
1013 .hooknum = NF_IP_LOCAL_OUT,
1014 .priority = NF_IP_PRI_BRIDGE_SABOTAGE_LOCAL_OUT, },
1015 { .hook = ip_sabotage_out,
1016 .owner = THIS_MODULE,
1017 .pf = PF_INET6,
1018 .hooknum = NF_IP6_LOCAL_OUT,
1019 .priority = NF_IP6_PRI_BRIDGE_SABOTAGE_LOCAL_OUT, },
1020 { .hook = ip_sabotage_out,
1021 .owner = THIS_MODULE,
1022 .pf = PF_INET,
1023 .hooknum = NF_IP_POST_ROUTING,
1024 .priority = NF_IP_PRI_FIRST, },
1025 { .hook = ip_sabotage_out,
1026 .owner = THIS_MODULE,
1027 .pf = PF_INET6,
1028 .hooknum = NF_IP6_POST_ROUTING,
1029 .priority = NF_IP6_PRI_FIRST, },
1032 #ifdef CONFIG_SYSCTL
1033 static
1034 int brnf_sysctl_call_tables(ctl_table * ctl, int write, struct file *filp,
1035 void __user * buffer, size_t * lenp, loff_t * ppos)
1037 int ret;
1039 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
1041 if (write && *(int *)(ctl->data))
1042 *(int *)(ctl->data) = 1;
1043 return ret;
1046 static ctl_table brnf_table[] = {
1048 .ctl_name = NET_BRIDGE_NF_CALL_ARPTABLES,
1049 .procname = "bridge-nf-call-arptables",
1050 .data = &brnf_call_arptables,
1051 .maxlen = sizeof(int),
1052 .mode = 0644,
1053 .proc_handler = &brnf_sysctl_call_tables,
1056 .ctl_name = NET_BRIDGE_NF_CALL_IPTABLES,
1057 .procname = "bridge-nf-call-iptables",
1058 .data = &brnf_call_iptables,
1059 .maxlen = sizeof(int),
1060 .mode = 0644,
1061 .proc_handler = &brnf_sysctl_call_tables,
1064 .ctl_name = NET_BRIDGE_NF_CALL_IP6TABLES,
1065 .procname = "bridge-nf-call-ip6tables",
1066 .data = &brnf_call_ip6tables,
1067 .maxlen = sizeof(int),
1068 .mode = 0644,
1069 .proc_handler = &brnf_sysctl_call_tables,
1072 .ctl_name = NET_BRIDGE_NF_FILTER_VLAN_TAGGED,
1073 .procname = "bridge-nf-filter-vlan-tagged",
1074 .data = &brnf_filter_vlan_tagged,
1075 .maxlen = sizeof(int),
1076 .mode = 0644,
1077 .proc_handler = &brnf_sysctl_call_tables,
1079 { .ctl_name = 0 }
1082 static ctl_table brnf_bridge_table[] = {
1084 .ctl_name = NET_BRIDGE,
1085 .procname = "bridge",
1086 .mode = 0555,
1087 .child = brnf_table,
1089 { .ctl_name = 0 }
1092 static ctl_table brnf_net_table[] = {
1094 .ctl_name = CTL_NET,
1095 .procname = "net",
1096 .mode = 0555,
1097 .child = brnf_bridge_table,
1099 { .ctl_name = 0 }
1101 #endif
1103 int br_netfilter_init(void)
1105 int i;
1107 for (i = 0; i < ARRAY_SIZE(br_nf_ops); i++) {
1108 int ret;
1110 if ((ret = nf_register_hook(&br_nf_ops[i])) >= 0)
1111 continue;
1113 while (i--)
1114 nf_unregister_hook(&br_nf_ops[i]);
1116 return ret;
1119 #ifdef CONFIG_SYSCTL
1120 brnf_sysctl_header = register_sysctl_table(brnf_net_table, 0);
1121 if (brnf_sysctl_header == NULL) {
1122 printk(KERN_WARNING
1123 "br_netfilter: can't register to sysctl.\n");
1124 for (i = 0; i < ARRAY_SIZE(br_nf_ops); i++)
1125 nf_unregister_hook(&br_nf_ops[i]);
1126 return -EFAULT;
1128 #endif
1130 printk(KERN_NOTICE "Bridge firewalling registered\n");
1132 return 0;
1135 void br_netfilter_fini(void)
1137 int i;
1139 for (i = ARRAY_SIZE(br_nf_ops) - 1; i >= 0; i--)
1140 nf_unregister_hook(&br_nf_ops[i]);
1141 #ifdef CONFIG_SYSCTL
1142 unregister_sysctl_table(brnf_sysctl_header);
1143 #endif