3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer <bdschuym@pandora.be>
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.
14 * Lennert dedicates this file to Kerstin Wurdinger.
17 #include <linux/module.h>
18 #include <linux/kernel.h>
19 #include <linux/slab.h>
21 #include <linux/netdevice.h>
22 #include <linux/skbuff.h>
23 #include <linux/if_arp.h>
24 #include <linux/if_ether.h>
25 #include <linux/if_vlan.h>
26 #include <linux/if_pppox.h>
27 #include <linux/ppp_defs.h>
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>
33 #include <linux/inetdevice.h>
37 #include <net/route.h>
39 #include <asm/uaccess.h>
40 #include "br_private.h"
42 #include <linux/sysctl.h>
45 #define skb_origaddr(skb) (((struct bridge_skb_cb *) \
46 (skb->nf_bridge->data))->daddr.ipv4)
47 #define store_orig_dstaddr(skb) (skb_origaddr(skb) = ip_hdr(skb)->daddr)
48 #define dnat_took_place(skb) (skb_origaddr(skb) != ip_hdr(skb)->daddr)
51 static struct ctl_table_header
*brnf_sysctl_header
;
52 static int brnf_call_iptables __read_mostly
= 1;
53 static int brnf_call_ip6tables __read_mostly
= 1;
54 static int brnf_call_arptables __read_mostly
= 1;
55 static int brnf_filter_vlan_tagged __read_mostly
= 0;
56 static int brnf_filter_pppoe_tagged __read_mostly
= 0;
57 static int brnf_pass_vlan_indev __read_mostly
= 0;
59 #define brnf_call_iptables 1
60 #define brnf_call_ip6tables 1
61 #define brnf_call_arptables 1
62 #define brnf_filter_vlan_tagged 0
63 #define brnf_filter_pppoe_tagged 0
64 #define brnf_pass_vlan_indev 0
68 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
70 #define IS_IPV6(skb) \
71 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
74 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
76 static inline __be16
vlan_proto(const struct sk_buff
*skb
)
78 if (vlan_tx_tag_present(skb
))
80 else if (skb
->protocol
== htons(ETH_P_8021Q
))
81 return vlan_eth_hdr(skb
)->h_vlan_encapsulated_proto
;
86 #define IS_VLAN_IP(skb) \
87 (vlan_proto(skb) == htons(ETH_P_IP) && \
88 brnf_filter_vlan_tagged)
90 #define IS_VLAN_IPV6(skb) \
91 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
92 brnf_filter_vlan_tagged)
94 #define IS_VLAN_ARP(skb) \
95 (vlan_proto(skb) == htons(ETH_P_ARP) && \
96 brnf_filter_vlan_tagged)
98 static inline __be16
pppoe_proto(const struct sk_buff
*skb
)
100 return *((__be16
*)(skb_mac_header(skb
) + ETH_HLEN
+
101 sizeof(struct pppoe_hdr
)));
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)
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)
114 static void fake_update_pmtu(struct dst_entry
*dst
, struct sock
*sk
,
115 struct sk_buff
*skb
, u32 mtu
)
119 static void fake_redirect(struct dst_entry
*dst
, struct sock
*sk
,
124 static u32
*fake_cow_metrics(struct dst_entry
*dst
, unsigned long old
)
129 static struct neighbour
*fake_neigh_lookup(const struct dst_entry
*dst
,
136 static unsigned int fake_mtu(const struct dst_entry
*dst
)
138 return dst
->dev
->mtu
;
141 static struct dst_ops fake_dst_ops
= {
143 .protocol
= cpu_to_be16(ETH_P_IP
),
144 .update_pmtu
= fake_update_pmtu
,
145 .redirect
= fake_redirect
,
146 .cow_metrics
= fake_cow_metrics
,
147 .neigh_lookup
= fake_neigh_lookup
,
152 * Initialize bogus route table used to keep netfilter happy.
153 * Currently, we fill in the PMTU entry because netfilter
154 * refragmentation needs it, and the rt_flags entry because
155 * ipt_REJECT needs it. Future netfilter modules might
156 * require us to fill additional fields.
158 static const u32 br_dst_default_metrics
[RTAX_MAX
] = {
159 [RTAX_MTU
- 1] = 1500,
162 void br_netfilter_rtable_init(struct net_bridge
*br
)
164 struct rtable
*rt
= &br
->fake_rtable
;
166 atomic_set(&rt
->dst
.__refcnt
, 1);
167 rt
->dst
.dev
= br
->dev
;
168 rt
->dst
.path
= &rt
->dst
;
169 dst_init_metrics(&rt
->dst
, br_dst_default_metrics
, true);
170 rt
->dst
.flags
= DST_NOXFRM
| DST_NOPEER
| DST_FAKE_RTABLE
;
171 rt
->dst
.ops
= &fake_dst_ops
;
174 static inline struct rtable
*bridge_parent_rtable(const struct net_device
*dev
)
176 struct net_bridge_port
*port
;
178 port
= br_port_get_rcu(dev
);
179 return port
? &port
->br
->fake_rtable
: NULL
;
182 static inline struct net_device
*bridge_parent(const struct net_device
*dev
)
184 struct net_bridge_port
*port
;
186 port
= br_port_get_rcu(dev
);
187 return port
? port
->br
->dev
: NULL
;
190 static inline struct nf_bridge_info
*nf_bridge_alloc(struct sk_buff
*skb
)
192 skb
->nf_bridge
= kzalloc(sizeof(struct nf_bridge_info
), GFP_ATOMIC
);
193 if (likely(skb
->nf_bridge
))
194 atomic_set(&(skb
->nf_bridge
->use
), 1);
196 return skb
->nf_bridge
;
199 static inline struct nf_bridge_info
*nf_bridge_unshare(struct sk_buff
*skb
)
201 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
203 if (atomic_read(&nf_bridge
->use
) > 1) {
204 struct nf_bridge_info
*tmp
= nf_bridge_alloc(skb
);
207 memcpy(tmp
, nf_bridge
, sizeof(struct nf_bridge_info
));
208 atomic_set(&tmp
->use
, 1);
210 nf_bridge_put(nf_bridge
);
216 static inline void nf_bridge_push_encap_header(struct sk_buff
*skb
)
218 unsigned int len
= nf_bridge_encap_header_len(skb
);
221 skb
->network_header
-= len
;
224 static inline void nf_bridge_pull_encap_header(struct sk_buff
*skb
)
226 unsigned int len
= nf_bridge_encap_header_len(skb
);
229 skb
->network_header
+= len
;
232 static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff
*skb
)
234 unsigned int len
= nf_bridge_encap_header_len(skb
);
236 skb_pull_rcsum(skb
, len
);
237 skb
->network_header
+= len
;
240 static inline void nf_bridge_save_header(struct sk_buff
*skb
)
242 int header_size
= ETH_HLEN
+ nf_bridge_encap_header_len(skb
);
244 skb_copy_from_linear_data_offset(skb
, -header_size
,
245 skb
->nf_bridge
->data
, header_size
);
248 static inline void nf_bridge_update_protocol(struct sk_buff
*skb
)
250 if (skb
->nf_bridge
->mask
& BRNF_8021Q
)
251 skb
->protocol
= htons(ETH_P_8021Q
);
252 else if (skb
->nf_bridge
->mask
& BRNF_PPPoE
)
253 skb
->protocol
= htons(ETH_P_PPP_SES
);
256 /* When handing a packet over to the IP layer
257 * check whether we have a skb that is in the
261 static int br_parse_ip_options(struct sk_buff
*skb
)
263 struct ip_options
*opt
;
264 const struct iphdr
*iph
;
265 struct net_device
*dev
= skb
->dev
;
269 opt
= &(IPCB(skb
)->opt
);
271 /* Basic sanity checks */
272 if (iph
->ihl
< 5 || iph
->version
!= 4)
275 if (!pskb_may_pull(skb
, iph
->ihl
*4))
279 if (unlikely(ip_fast_csum((u8
*)iph
, iph
->ihl
)))
282 len
= ntohs(iph
->tot_len
);
283 if (skb
->len
< len
) {
284 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INTRUNCATEDPKTS
);
286 } else if (len
< (iph
->ihl
*4))
289 if (pskb_trim_rcsum(skb
, len
)) {
290 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INDISCARDS
);
294 memset(IPCB(skb
), 0, sizeof(struct inet_skb_parm
));
298 opt
->optlen
= iph
->ihl
*4 - sizeof(struct iphdr
);
299 if (ip_options_compile(dev_net(dev
), opt
, skb
))
302 /* Check correct handling of SRR option */
303 if (unlikely(opt
->srr
)) {
304 struct in_device
*in_dev
= __in_dev_get_rcu(dev
);
305 if (in_dev
&& !IN_DEV_SOURCE_ROUTE(in_dev
))
308 if (ip_options_rcv_srr(skb
))
315 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INHDRERRORS
);
320 /* Fill in the header for fragmented IP packets handled by
321 * the IPv4 connection tracking code.
323 int nf_bridge_copy_header(struct sk_buff
*skb
)
326 unsigned int header_size
;
328 nf_bridge_update_protocol(skb
);
329 header_size
= ETH_HLEN
+ nf_bridge_encap_header_len(skb
);
330 err
= skb_cow_head(skb
, header_size
);
334 skb_copy_to_linear_data_offset(skb
, -header_size
,
335 skb
->nf_bridge
->data
, header_size
);
336 __skb_push(skb
, nf_bridge_encap_header_len(skb
));
340 /* PF_BRIDGE/PRE_ROUTING *********************************************/
341 /* Undo the changes made for ip6tables PREROUTING and continue the
342 * bridge PRE_ROUTING hook. */
343 static int br_nf_pre_routing_finish_ipv6(struct sk_buff
*skb
)
345 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
348 if (nf_bridge
->mask
& BRNF_PKT_TYPE
) {
349 skb
->pkt_type
= PACKET_OTHERHOST
;
350 nf_bridge
->mask
^= BRNF_PKT_TYPE
;
352 nf_bridge
->mask
^= BRNF_NF_BRIDGE_PREROUTING
;
354 rt
= bridge_parent_rtable(nf_bridge
->physindev
);
359 skb_dst_set_noref(skb
, &rt
->dst
);
361 skb
->dev
= nf_bridge
->physindev
;
362 nf_bridge_update_protocol(skb
);
363 nf_bridge_push_encap_header(skb
);
364 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
365 br_handle_frame_finish
, 1);
370 /* Obtain the correct destination MAC address, while preserving the original
371 * source MAC address. If we already know this address, we just copy it. If we
372 * don't, we use the neighbour framework to find out. In both cases, we make
373 * sure that br_handle_frame_finish() is called afterwards.
375 static int br_nf_pre_routing_finish_bridge(struct sk_buff
*skb
)
377 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
378 struct neighbour
*neigh
;
379 struct dst_entry
*dst
;
381 skb
->dev
= bridge_parent(skb
->dev
);
385 neigh
= dst_neigh_lookup_skb(dst
, skb
);
389 if (neigh
->hh
.hh_len
) {
390 neigh_hh_bridge(&neigh
->hh
, skb
);
391 skb
->dev
= nf_bridge
->physindev
;
392 ret
= br_handle_frame_finish(skb
);
394 /* the neighbour function below overwrites the complete
395 * MAC header, so we save the Ethernet source address and
398 skb_copy_from_linear_data_offset(skb
,
399 -(ETH_HLEN
-ETH_ALEN
),
400 skb
->nf_bridge
->data
,
402 /* tell br_dev_xmit to continue with forwarding */
403 nf_bridge
->mask
|= BRNF_BRIDGED_DNAT
;
404 ret
= neigh
->output(neigh
, skb
);
406 neigh_release(neigh
);
414 /* This requires some explaining. If DNAT has taken place,
415 * we will need to fix up the destination Ethernet address.
417 * There are two cases to consider:
418 * 1. The packet was DNAT'ed to a device in the same bridge
419 * port group as it was received on. We can still bridge
421 * 2. The packet was DNAT'ed to a different device, either
422 * a non-bridged device or another bridge port group.
423 * The packet will need to be routed.
425 * The correct way of distinguishing between these two cases is to
426 * call ip_route_input() and to look at skb->dst->dev, which is
427 * changed to the destination device if ip_route_input() succeeds.
429 * Let's first consider the case that ip_route_input() succeeds:
431 * If the output device equals the logical bridge device the packet
432 * came in on, we can consider this bridging. The corresponding MAC
433 * address will be obtained in br_nf_pre_routing_finish_bridge.
434 * Otherwise, the packet is considered to be routed and we just
435 * change the destination MAC address so that the packet will
436 * later be passed up to the IP stack to be routed. For a redirected
437 * packet, ip_route_input() will give back the localhost as output device,
438 * which differs from the bridge device.
440 * Let's now consider the case that ip_route_input() fails:
442 * This can be because the destination address is martian, in which case
443 * the packet will be dropped.
444 * If IP forwarding is disabled, ip_route_input() will fail, while
445 * ip_route_output_key() can return success. The source
446 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
447 * thinks we're handling a locally generated packet and won't care
448 * if IP forwarding is enabled. If the output device equals the logical bridge
449 * device, we proceed as if ip_route_input() succeeded. If it differs from the
450 * logical bridge port or if ip_route_output_key() fails we drop the packet.
452 static int br_nf_pre_routing_finish(struct sk_buff
*skb
)
454 struct net_device
*dev
= skb
->dev
;
455 struct iphdr
*iph
= ip_hdr(skb
);
456 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
460 if (nf_bridge
->mask
& BRNF_PKT_TYPE
) {
461 skb
->pkt_type
= PACKET_OTHERHOST
;
462 nf_bridge
->mask
^= BRNF_PKT_TYPE
;
464 nf_bridge
->mask
^= BRNF_NF_BRIDGE_PREROUTING
;
465 if (dnat_took_place(skb
)) {
466 if ((err
= ip_route_input(skb
, iph
->daddr
, iph
->saddr
, iph
->tos
, dev
))) {
467 struct in_device
*in_dev
= __in_dev_get_rcu(dev
);
469 /* If err equals -EHOSTUNREACH the error is due to a
470 * martian destination or due to the fact that
471 * forwarding is disabled. For most martian packets,
472 * ip_route_output_key() will fail. It won't fail for 2 types of
473 * martian destinations: loopback destinations and destination
474 * 0.0.0.0. In both cases the packet will be dropped because the
475 * destination is the loopback device and not the bridge. */
476 if (err
!= -EHOSTUNREACH
|| !in_dev
|| IN_DEV_FORWARD(in_dev
))
479 rt
= ip_route_output(dev_net(dev
), iph
->daddr
, 0,
480 RT_TOS(iph
->tos
), 0);
482 /* - Bridged-and-DNAT'ed traffic doesn't
483 * require ip_forwarding. */
484 if (rt
->dst
.dev
== dev
) {
485 skb_dst_set(skb
, &rt
->dst
);
494 if (skb_dst(skb
)->dev
== dev
) {
496 skb
->dev
= nf_bridge
->physindev
;
497 nf_bridge_update_protocol(skb
);
498 nf_bridge_push_encap_header(skb
);
499 NF_HOOK_THRESH(NFPROTO_BRIDGE
,
502 br_nf_pre_routing_finish_bridge
,
506 memcpy(eth_hdr(skb
)->h_dest
, dev
->dev_addr
, ETH_ALEN
);
507 skb
->pkt_type
= PACKET_HOST
;
510 rt
= bridge_parent_rtable(nf_bridge
->physindev
);
515 skb_dst_set_noref(skb
, &rt
->dst
);
518 skb
->dev
= nf_bridge
->physindev
;
519 nf_bridge_update_protocol(skb
);
520 nf_bridge_push_encap_header(skb
);
521 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
522 br_handle_frame_finish
, 1);
527 static struct net_device
*brnf_get_logical_dev(struct sk_buff
*skb
, const struct net_device
*dev
)
529 struct net_device
*vlan
, *br
;
531 br
= bridge_parent(dev
);
532 if (brnf_pass_vlan_indev
== 0 || !vlan_tx_tag_present(skb
))
535 vlan
= __vlan_find_dev_deep(br
, vlan_tx_tag_get(skb
) & VLAN_VID_MASK
);
537 return vlan
? vlan
: br
;
540 /* Some common code for IPv4/IPv6 */
541 static struct net_device
*setup_pre_routing(struct sk_buff
*skb
)
543 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
545 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
546 skb
->pkt_type
= PACKET_HOST
;
547 nf_bridge
->mask
|= BRNF_PKT_TYPE
;
550 nf_bridge
->mask
|= BRNF_NF_BRIDGE_PREROUTING
;
551 nf_bridge
->physindev
= skb
->dev
;
552 skb
->dev
= brnf_get_logical_dev(skb
, skb
->dev
);
553 if (skb
->protocol
== htons(ETH_P_8021Q
))
554 nf_bridge
->mask
|= BRNF_8021Q
;
555 else if (skb
->protocol
== htons(ETH_P_PPP_SES
))
556 nf_bridge
->mask
|= BRNF_PPPoE
;
561 /* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
562 static int check_hbh_len(struct sk_buff
*skb
)
564 unsigned char *raw
= (u8
*)(ipv6_hdr(skb
) + 1);
566 const unsigned char *nh
= skb_network_header(skb
);
568 int len
= (raw
[1] + 1) << 3;
570 if ((raw
+ len
) - skb
->data
> skb_headlen(skb
))
577 int optlen
= nh
[off
+ 1] + 2;
588 if (nh
[off
+ 1] != 4 || (off
& 3) != 2)
590 pkt_len
= ntohl(*(__be32
*) (nh
+ off
+ 2));
591 if (pkt_len
<= IPV6_MAXPLEN
||
592 ipv6_hdr(skb
)->payload_len
)
594 if (pkt_len
> skb
->len
- sizeof(struct ipv6hdr
))
596 if (pskb_trim_rcsum(skb
,
597 pkt_len
+ sizeof(struct ipv6hdr
)))
599 nh
= skb_network_header(skb
);
616 /* Replicate the checks that IPv6 does on packet reception and pass the packet
617 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
618 static unsigned int br_nf_pre_routing_ipv6(unsigned int hook
,
620 const struct net_device
*in
,
621 const struct net_device
*out
,
622 int (*okfn
)(struct sk_buff
*))
624 const struct ipv6hdr
*hdr
;
627 if (skb
->len
< sizeof(struct ipv6hdr
))
630 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
635 if (hdr
->version
!= 6)
638 pkt_len
= ntohs(hdr
->payload_len
);
640 if (pkt_len
|| hdr
->nexthdr
!= NEXTHDR_HOP
) {
641 if (pkt_len
+ sizeof(struct ipv6hdr
) > skb
->len
)
643 if (pskb_trim_rcsum(skb
, pkt_len
+ sizeof(struct ipv6hdr
)))
646 if (hdr
->nexthdr
== NEXTHDR_HOP
&& check_hbh_len(skb
))
649 nf_bridge_put(skb
->nf_bridge
);
650 if (!nf_bridge_alloc(skb
))
652 if (!setup_pre_routing(skb
))
655 skb
->protocol
= htons(ETH_P_IPV6
);
656 NF_HOOK(NFPROTO_IPV6
, NF_INET_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
657 br_nf_pre_routing_finish_ipv6
);
662 /* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
663 * Replicate the checks that IPv4 does on packet reception.
664 * Set skb->dev to the bridge device (i.e. parent of the
665 * receiving device) to make netfilter happy, the REDIRECT
666 * target in particular. Save the original destination IP
667 * address to be able to detect DNAT afterwards. */
668 static unsigned int br_nf_pre_routing(unsigned int hook
, struct sk_buff
*skb
,
669 const struct net_device
*in
,
670 const struct net_device
*out
,
671 int (*okfn
)(struct sk_buff
*))
673 struct net_bridge_port
*p
;
674 struct net_bridge
*br
;
675 __u32 len
= nf_bridge_encap_header_len(skb
);
677 if (unlikely(!pskb_may_pull(skb
, len
)))
680 p
= br_port_get_rcu(in
);
685 if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
)) {
686 if (!brnf_call_ip6tables
&& !br
->nf_call_ip6tables
)
689 nf_bridge_pull_encap_header_rcsum(skb
);
690 return br_nf_pre_routing_ipv6(hook
, skb
, in
, out
, okfn
);
693 if (!brnf_call_iptables
&& !br
->nf_call_iptables
)
696 if (!IS_IP(skb
) && !IS_VLAN_IP(skb
) && !IS_PPPOE_IP(skb
))
699 nf_bridge_pull_encap_header_rcsum(skb
);
701 if (br_parse_ip_options(skb
))
704 nf_bridge_put(skb
->nf_bridge
);
705 if (!nf_bridge_alloc(skb
))
707 if (!setup_pre_routing(skb
))
709 store_orig_dstaddr(skb
);
710 skb
->protocol
= htons(ETH_P_IP
);
712 NF_HOOK(NFPROTO_IPV4
, NF_INET_PRE_ROUTING
, skb
, skb
->dev
, NULL
,
713 br_nf_pre_routing_finish
);
719 /* PF_BRIDGE/LOCAL_IN ************************************************/
720 /* The packet is locally destined, which requires a real
721 * dst_entry, so detach the fake one. On the way up, the
722 * packet would pass through PRE_ROUTING again (which already
723 * took place when the packet entered the bridge), but we
724 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
725 * prevent this from happening. */
726 static unsigned int br_nf_local_in(unsigned int hook
, struct sk_buff
*skb
,
727 const struct net_device
*in
,
728 const struct net_device
*out
,
729 int (*okfn
)(struct sk_buff
*))
731 br_drop_fake_rtable(skb
);
735 /* PF_BRIDGE/FORWARD *************************************************/
736 static int br_nf_forward_finish(struct sk_buff
*skb
)
738 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
739 struct net_device
*in
;
741 if (!IS_ARP(skb
) && !IS_VLAN_ARP(skb
)) {
742 in
= nf_bridge
->physindev
;
743 if (nf_bridge
->mask
& BRNF_PKT_TYPE
) {
744 skb
->pkt_type
= PACKET_OTHERHOST
;
745 nf_bridge
->mask
^= BRNF_PKT_TYPE
;
747 nf_bridge_update_protocol(skb
);
749 in
= *((struct net_device
**)(skb
->cb
));
751 nf_bridge_push_encap_header(skb
);
753 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_FORWARD
, skb
, in
,
754 skb
->dev
, br_forward_finish
, 1);
759 /* This is the 'purely bridged' case. For IP, we pass the packet to
760 * netfilter with indev and outdev set to the bridge device,
761 * but we are still able to filter on the 'real' indev/outdev
762 * because of the physdev module. For ARP, indev and outdev are the
764 static unsigned int br_nf_forward_ip(unsigned int hook
, struct sk_buff
*skb
,
765 const struct net_device
*in
,
766 const struct net_device
*out
,
767 int (*okfn
)(struct sk_buff
*))
769 struct nf_bridge_info
*nf_bridge
;
770 struct net_device
*parent
;
776 /* Need exclusive nf_bridge_info since we might have multiple
777 * different physoutdevs. */
778 if (!nf_bridge_unshare(skb
))
781 parent
= bridge_parent(out
);
785 if (IS_IP(skb
) || IS_VLAN_IP(skb
) || IS_PPPOE_IP(skb
))
787 else if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
))
792 nf_bridge_pull_encap_header(skb
);
794 nf_bridge
= skb
->nf_bridge
;
795 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
796 skb
->pkt_type
= PACKET_HOST
;
797 nf_bridge
->mask
|= BRNF_PKT_TYPE
;
800 if (pf
== NFPROTO_IPV4
&& br_parse_ip_options(skb
))
803 /* The physdev module checks on this */
804 nf_bridge
->mask
|= BRNF_BRIDGED
;
805 nf_bridge
->physoutdev
= skb
->dev
;
806 if (pf
== NFPROTO_IPV4
)
807 skb
->protocol
= htons(ETH_P_IP
);
809 skb
->protocol
= htons(ETH_P_IPV6
);
811 NF_HOOK(pf
, NF_INET_FORWARD
, skb
, brnf_get_logical_dev(skb
, in
), parent
,
812 br_nf_forward_finish
);
817 static unsigned int br_nf_forward_arp(unsigned int hook
, struct sk_buff
*skb
,
818 const struct net_device
*in
,
819 const struct net_device
*out
,
820 int (*okfn
)(struct sk_buff
*))
822 struct net_bridge_port
*p
;
823 struct net_bridge
*br
;
824 struct net_device
**d
= (struct net_device
**)(skb
->cb
);
826 p
= br_port_get_rcu(out
);
831 if (!brnf_call_arptables
&& !br
->nf_call_arptables
)
835 if (!IS_VLAN_ARP(skb
))
837 nf_bridge_pull_encap_header(skb
);
840 if (arp_hdr(skb
)->ar_pln
!= 4) {
841 if (IS_VLAN_ARP(skb
))
842 nf_bridge_push_encap_header(skb
);
845 *d
= (struct net_device
*)in
;
846 NF_HOOK(NFPROTO_ARP
, NF_ARP_FORWARD
, skb
, (struct net_device
*)in
,
847 (struct net_device
*)out
, br_nf_forward_finish
);
852 #if IS_ENABLED(CONFIG_NF_CONNTRACK_IPV4)
853 static int br_nf_dev_queue_xmit(struct sk_buff
*skb
)
857 if (skb
->nfct
!= NULL
&& skb
->protocol
== htons(ETH_P_IP
) &&
858 skb
->len
+ nf_bridge_mtu_reduction(skb
) > skb
->dev
->mtu
&&
860 if (br_parse_ip_options(skb
))
861 /* Drop invalid packet */
863 ret
= ip_fragment(skb
, br_dev_queue_push_xmit
);
865 ret
= br_dev_queue_push_xmit(skb
);
870 static int br_nf_dev_queue_xmit(struct sk_buff
*skb
)
872 return br_dev_queue_push_xmit(skb
);
876 /* PF_BRIDGE/POST_ROUTING ********************************************/
877 static unsigned int br_nf_post_routing(unsigned int hook
, struct sk_buff
*skb
,
878 const struct net_device
*in
,
879 const struct net_device
*out
,
880 int (*okfn
)(struct sk_buff
*))
882 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
883 struct net_device
*realoutdev
= bridge_parent(skb
->dev
);
886 if (!nf_bridge
|| !(nf_bridge
->mask
& BRNF_BRIDGED
))
892 if (IS_IP(skb
) || IS_VLAN_IP(skb
) || IS_PPPOE_IP(skb
))
894 else if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
))
899 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
900 * about the value of skb->pkt_type. */
901 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
902 skb
->pkt_type
= PACKET_HOST
;
903 nf_bridge
->mask
|= BRNF_PKT_TYPE
;
906 nf_bridge_pull_encap_header(skb
);
907 nf_bridge_save_header(skb
);
908 if (pf
== NFPROTO_IPV4
)
909 skb
->protocol
= htons(ETH_P_IP
);
911 skb
->protocol
= htons(ETH_P_IPV6
);
913 NF_HOOK(pf
, NF_INET_POST_ROUTING
, skb
, NULL
, realoutdev
,
914 br_nf_dev_queue_xmit
);
919 /* IP/SABOTAGE *****************************************************/
920 /* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
921 * for the second time. */
922 static unsigned int ip_sabotage_in(unsigned int hook
, struct sk_buff
*skb
,
923 const struct net_device
*in
,
924 const struct net_device
*out
,
925 int (*okfn
)(struct sk_buff
*))
927 if (skb
->nf_bridge
&&
928 !(skb
->nf_bridge
->mask
& BRNF_NF_BRIDGE_PREROUTING
)) {
935 /* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
936 * br_dev_queue_push_xmit is called afterwards */
937 static struct nf_hook_ops br_nf_ops
[] __read_mostly
= {
939 .hook
= br_nf_pre_routing
,
940 .owner
= THIS_MODULE
,
941 .pf
= NFPROTO_BRIDGE
,
942 .hooknum
= NF_BR_PRE_ROUTING
,
943 .priority
= NF_BR_PRI_BRNF
,
946 .hook
= br_nf_local_in
,
947 .owner
= THIS_MODULE
,
948 .pf
= NFPROTO_BRIDGE
,
949 .hooknum
= NF_BR_LOCAL_IN
,
950 .priority
= NF_BR_PRI_BRNF
,
953 .hook
= br_nf_forward_ip
,
954 .owner
= THIS_MODULE
,
955 .pf
= NFPROTO_BRIDGE
,
956 .hooknum
= NF_BR_FORWARD
,
957 .priority
= NF_BR_PRI_BRNF
- 1,
960 .hook
= br_nf_forward_arp
,
961 .owner
= THIS_MODULE
,
962 .pf
= NFPROTO_BRIDGE
,
963 .hooknum
= NF_BR_FORWARD
,
964 .priority
= NF_BR_PRI_BRNF
,
967 .hook
= br_nf_post_routing
,
968 .owner
= THIS_MODULE
,
969 .pf
= NFPROTO_BRIDGE
,
970 .hooknum
= NF_BR_POST_ROUTING
,
971 .priority
= NF_BR_PRI_LAST
,
974 .hook
= ip_sabotage_in
,
975 .owner
= THIS_MODULE
,
977 .hooknum
= NF_INET_PRE_ROUTING
,
978 .priority
= NF_IP_PRI_FIRST
,
981 .hook
= ip_sabotage_in
,
982 .owner
= THIS_MODULE
,
984 .hooknum
= NF_INET_PRE_ROUTING
,
985 .priority
= NF_IP6_PRI_FIRST
,
991 int brnf_sysctl_call_tables(ctl_table
* ctl
, int write
,
992 void __user
* buffer
, size_t * lenp
, loff_t
* ppos
)
996 ret
= proc_dointvec(ctl
, write
, buffer
, lenp
, ppos
);
998 if (write
&& *(int *)(ctl
->data
))
999 *(int *)(ctl
->data
) = 1;
1003 static ctl_table brnf_table
[] = {
1005 .procname
= "bridge-nf-call-arptables",
1006 .data
= &brnf_call_arptables
,
1007 .maxlen
= sizeof(int),
1009 .proc_handler
= brnf_sysctl_call_tables
,
1012 .procname
= "bridge-nf-call-iptables",
1013 .data
= &brnf_call_iptables
,
1014 .maxlen
= sizeof(int),
1016 .proc_handler
= brnf_sysctl_call_tables
,
1019 .procname
= "bridge-nf-call-ip6tables",
1020 .data
= &brnf_call_ip6tables
,
1021 .maxlen
= sizeof(int),
1023 .proc_handler
= brnf_sysctl_call_tables
,
1026 .procname
= "bridge-nf-filter-vlan-tagged",
1027 .data
= &brnf_filter_vlan_tagged
,
1028 .maxlen
= sizeof(int),
1030 .proc_handler
= brnf_sysctl_call_tables
,
1033 .procname
= "bridge-nf-filter-pppoe-tagged",
1034 .data
= &brnf_filter_pppoe_tagged
,
1035 .maxlen
= sizeof(int),
1037 .proc_handler
= brnf_sysctl_call_tables
,
1040 .procname
= "bridge-nf-pass-vlan-input-dev",
1041 .data
= &brnf_pass_vlan_indev
,
1042 .maxlen
= sizeof(int),
1044 .proc_handler
= brnf_sysctl_call_tables
,
1050 int __init
br_netfilter_init(void)
1054 ret
= dst_entries_init(&fake_dst_ops
);
1058 ret
= nf_register_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1060 dst_entries_destroy(&fake_dst_ops
);
1063 #ifdef CONFIG_SYSCTL
1064 brnf_sysctl_header
= register_net_sysctl(&init_net
, "net/bridge", brnf_table
);
1065 if (brnf_sysctl_header
== NULL
) {
1067 "br_netfilter: can't register to sysctl.\n");
1068 nf_unregister_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1069 dst_entries_destroy(&fake_dst_ops
);
1073 printk(KERN_NOTICE
"Bridge firewalling registered\n");
1077 void br_netfilter_fini(void)
1079 nf_unregister_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1080 #ifdef CONFIG_SYSCTL
1081 unregister_net_sysctl_table(brnf_sysctl_header
);
1083 dst_entries_destroy(&fake_dst_ops
);