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>
38 #include <net/netfilter/br_netfilter.h>
40 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
41 #include <net/netfilter/nf_conntrack.h>
44 #include <asm/uaccess.h>
45 #include "br_private.h"
47 #include <linux/sysctl.h>
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 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
70 #define IS_IPV6(skb) \
71 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
74 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
76 static inline __be16
vlan_proto(const struct sk_buff
*skb
)
78 if (skb_vlan_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 /* largest possible L2 header, see br_nf_dev_queue_xmit() */
115 #define NF_BRIDGE_MAX_MAC_HEADER_LENGTH (PPPOE_SES_HLEN + ETH_HLEN)
117 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
118 struct brnf_frag_data
{
119 char mac
[NF_BRIDGE_MAX_MAC_HEADER_LENGTH
];
124 static DEFINE_PER_CPU(struct brnf_frag_data
, brnf_frag_data_storage
);
127 static struct nf_bridge_info
*nf_bridge_info_get(const struct sk_buff
*skb
)
129 return skb
->nf_bridge
;
132 static inline struct rtable
*bridge_parent_rtable(const struct net_device
*dev
)
134 struct net_bridge_port
*port
;
136 port
= br_port_get_rcu(dev
);
137 return port
? &port
->br
->fake_rtable
: NULL
;
140 static inline struct net_device
*bridge_parent(const struct net_device
*dev
)
142 struct net_bridge_port
*port
;
144 port
= br_port_get_rcu(dev
);
145 return port
? port
->br
->dev
: NULL
;
148 static inline struct nf_bridge_info
*nf_bridge_alloc(struct sk_buff
*skb
)
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);
154 return skb
->nf_bridge
;
157 static inline struct nf_bridge_info
*nf_bridge_unshare(struct sk_buff
*skb
)
159 struct nf_bridge_info
*nf_bridge
= skb
->nf_bridge
;
161 if (atomic_read(&nf_bridge
->use
) > 1) {
162 struct nf_bridge_info
*tmp
= nf_bridge_alloc(skb
);
165 memcpy(tmp
, nf_bridge
, sizeof(struct nf_bridge_info
));
166 atomic_set(&tmp
->use
, 1);
168 nf_bridge_put(nf_bridge
);
174 static unsigned int nf_bridge_encap_header_len(const struct sk_buff
*skb
)
176 switch (skb
->protocol
) {
177 case __cpu_to_be16(ETH_P_8021Q
):
179 case __cpu_to_be16(ETH_P_PPP_SES
):
180 return PPPOE_SES_HLEN
;
186 static inline void nf_bridge_push_encap_header(struct sk_buff
*skb
)
188 unsigned int len
= nf_bridge_encap_header_len(skb
);
191 skb
->network_header
-= len
;
194 static inline void nf_bridge_pull_encap_header(struct sk_buff
*skb
)
196 unsigned int len
= nf_bridge_encap_header_len(skb
);
199 skb
->network_header
+= len
;
202 static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff
*skb
)
204 unsigned int len
= nf_bridge_encap_header_len(skb
);
206 skb_pull_rcsum(skb
, len
);
207 skb
->network_header
+= len
;
210 /* When handing a packet over to the IP layer
211 * check whether we have a skb that is in the
215 static int br_parse_ip_options(struct sk_buff
*skb
)
217 const struct iphdr
*iph
;
218 struct net_device
*dev
= skb
->dev
;
221 if (!pskb_may_pull(skb
, sizeof(struct iphdr
)))
226 /* Basic sanity checks */
227 if (iph
->ihl
< 5 || iph
->version
!= 4)
230 if (!pskb_may_pull(skb
, iph
->ihl
*4))
234 if (unlikely(ip_fast_csum((u8
*)iph
, iph
->ihl
)))
237 len
= ntohs(iph
->tot_len
);
238 if (skb
->len
< len
) {
239 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INTRUNCATEDPKTS
);
241 } else if (len
< (iph
->ihl
*4))
244 if (pskb_trim_rcsum(skb
, len
)) {
245 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INDISCARDS
);
249 memset(IPCB(skb
), 0, sizeof(struct inet_skb_parm
));
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
258 IP_INC_STATS_BH(dev_net(dev
), IPSTATS_MIB_INHDRERRORS
);
263 static void nf_bridge_update_protocol(struct sk_buff
*skb
)
265 switch (skb
->nf_bridge
->orig_proto
) {
266 case BRNF_PROTO_8021Q
:
267 skb
->protocol
= htons(ETH_P_8021Q
);
269 case BRNF_PROTO_PPPOE
:
270 skb
->protocol
= htons(ETH_P_PPP_SES
);
272 case BRNF_PROTO_UNCHANGED
:
277 /* PF_BRIDGE/PRE_ROUTING *********************************************/
278 /* Undo the changes made for ip6tables PREROUTING and continue the
279 * bridge PRE_ROUTING hook. */
280 static int br_nf_pre_routing_finish_ipv6(struct sock
*sk
, struct sk_buff
*skb
)
282 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
285 if (nf_bridge
->pkt_otherhost
) {
286 skb
->pkt_type
= PACKET_OTHERHOST
;
287 nf_bridge
->pkt_otherhost
= false;
289 nf_bridge
->mask
^= BRNF_NF_BRIDGE_PREROUTING
;
291 rt
= bridge_parent_rtable(nf_bridge
->physindev
);
296 skb_dst_set_noref(skb
, &rt
->dst
);
298 skb
->dev
= nf_bridge
->physindev
;
299 nf_bridge_update_protocol(skb
);
300 nf_bridge_push_encap_header(skb
);
301 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_PRE_ROUTING
, sk
, skb
,
303 br_handle_frame_finish
, 1);
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.
313 static int br_nf_pre_routing_finish_bridge(struct sock
*sk
, struct sk_buff
*skb
)
315 struct neighbour
*neigh
;
316 struct dst_entry
*dst
;
318 skb
->dev
= bridge_parent(skb
->dev
);
322 neigh
= dst_neigh_lookup_skb(dst
, skb
);
324 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
327 if (neigh
->hh
.hh_len
) {
328 neigh_hh_bridge(&neigh
->hh
, skb
);
329 skb
->dev
= nf_bridge
->physindev
;
330 ret
= br_handle_frame_finish(sk
, skb
);
332 /* the neighbour function below overwrites the complete
333 * MAC header, so we save the Ethernet source address and
336 skb_copy_from_linear_data_offset(skb
,
337 -(ETH_HLEN
-ETH_ALEN
),
338 nf_bridge
->neigh_header
,
340 /* tell br_dev_xmit to continue with forwarding */
341 nf_bridge
->mask
|= BRNF_BRIDGED_DNAT
;
342 /* FIXME Need to refragment */
343 ret
= neigh
->output(neigh
, skb
);
345 neigh_release(neigh
);
353 static bool dnat_took_place(const struct sk_buff
*skb
)
355 #if IS_ENABLED(CONFIG_NF_CONNTRACK)
356 enum ip_conntrack_info ctinfo
;
359 ct
= nf_ct_get(skb
, &ctinfo
);
360 if (!ct
|| nf_ct_is_untracked(ct
))
363 return test_bit(IPS_DST_NAT_BIT
, &ct
->status
);
369 /* This requires some explaining. If DNAT has taken place,
370 * we will need to fix up the destination Ethernet address.
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
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.
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.
384 * Let's first consider the case that ip_route_input() succeeds:
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.
389 * Otherwise, the packet is considered to be routed and we just
390 * change the destination MAC address so that the packet will
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.
395 * Let's now consider the case that ip_route_input() fails:
397 * This can be because the destination address is martian, in which case
398 * the packet will be dropped.
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()
402 * thinks we're handling a locally generated packet and won't care
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.
407 static int br_nf_pre_routing_finish(struct sock
*sk
, struct sk_buff
*skb
)
409 struct net_device
*dev
= skb
->dev
;
410 struct iphdr
*iph
= ip_hdr(skb
);
411 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
416 frag_max_size
= IPCB(skb
)->frag_max_size
;
417 BR_INPUT_SKB_CB(skb
)->frag_max_size
= frag_max_size
;
419 if (nf_bridge
->pkt_otherhost
) {
420 skb
->pkt_type
= PACKET_OTHERHOST
;
421 nf_bridge
->pkt_otherhost
= false;
423 nf_bridge
->mask
^= BRNF_NF_BRIDGE_PREROUTING
;
424 if (dnat_took_place(skb
)) {
425 if ((err
= ip_route_input(skb
, iph
->daddr
, iph
->saddr
, iph
->tos
, dev
))) {
426 struct in_device
*in_dev
= __in_dev_get_rcu(dev
);
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
))
438 rt
= ip_route_output(dev_net(dev
), iph
->daddr
, 0,
439 RT_TOS(iph
->tos
), 0);
441 /* - Bridged-and-DNAT'ed traffic doesn't
442 * require ip_forwarding. */
443 if (rt
->dst
.dev
== dev
) {
444 skb_dst_set(skb
, &rt
->dst
);
453 if (skb_dst(skb
)->dev
== dev
) {
455 skb
->dev
= nf_bridge
->physindev
;
456 nf_bridge_update_protocol(skb
);
457 nf_bridge_push_encap_header(skb
);
458 NF_HOOK_THRESH(NFPROTO_BRIDGE
,
460 sk
, skb
, skb
->dev
, NULL
,
461 br_nf_pre_routing_finish_bridge
,
465 ether_addr_copy(eth_hdr(skb
)->h_dest
, dev
->dev_addr
);
466 skb
->pkt_type
= PACKET_HOST
;
469 rt
= bridge_parent_rtable(nf_bridge
->physindev
);
474 skb_dst_set_noref(skb
, &rt
->dst
);
477 skb
->dev
= nf_bridge
->physindev
;
478 nf_bridge_update_protocol(skb
);
479 nf_bridge_push_encap_header(skb
);
480 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_PRE_ROUTING
, sk
, skb
,
482 br_handle_frame_finish
, 1);
487 static struct net_device
*brnf_get_logical_dev(struct sk_buff
*skb
, const struct net_device
*dev
)
489 struct net_device
*vlan
, *br
;
491 br
= bridge_parent(dev
);
492 if (brnf_pass_vlan_indev
== 0 || !skb_vlan_tag_present(skb
))
495 vlan
= __vlan_find_dev_deep_rcu(br
, skb
->vlan_proto
,
496 skb_vlan_tag_get(skb
) & VLAN_VID_MASK
);
498 return vlan
? vlan
: br
;
501 /* Some common code for IPv4/IPv6 */
502 static struct net_device
*setup_pre_routing(struct sk_buff
*skb
)
504 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
506 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
507 skb
->pkt_type
= PACKET_HOST
;
508 nf_bridge
->pkt_otherhost
= true;
511 nf_bridge
->mask
|= BRNF_NF_BRIDGE_PREROUTING
;
512 nf_bridge
->physindev
= skb
->dev
;
513 skb
->dev
= brnf_get_logical_dev(skb
, skb
->dev
);
515 if (skb
->protocol
== htons(ETH_P_8021Q
))
516 nf_bridge
->orig_proto
= BRNF_PROTO_8021Q
;
517 else if (skb
->protocol
== htons(ETH_P_PPP_SES
))
518 nf_bridge
->orig_proto
= BRNF_PROTO_PPPOE
;
520 /* Must drop socket now because of tproxy. */
525 /* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
526 static int check_hbh_len(struct sk_buff
*skb
)
528 unsigned char *raw
= (u8
*)(ipv6_hdr(skb
) + 1);
530 const unsigned char *nh
= skb_network_header(skb
);
532 int len
= (raw
[1] + 1) << 3;
534 if ((raw
+ len
) - skb
->data
> skb_headlen(skb
))
541 int optlen
= nh
[off
+ 1] + 2;
552 if (nh
[off
+ 1] != 4 || (off
& 3) != 2)
554 pkt_len
= ntohl(*(__be32
*) (nh
+ off
+ 2));
555 if (pkt_len
<= IPV6_MAXPLEN
||
556 ipv6_hdr(skb
)->payload_len
)
558 if (pkt_len
> skb
->len
- sizeof(struct ipv6hdr
))
560 if (pskb_trim_rcsum(skb
,
561 pkt_len
+ sizeof(struct ipv6hdr
)))
563 nh
= skb_network_header(skb
);
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. */
582 static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops
*ops
,
584 const struct nf_hook_state
*state
)
586 const struct ipv6hdr
*hdr
;
589 if (skb
->len
< sizeof(struct ipv6hdr
))
592 if (!pskb_may_pull(skb
, sizeof(struct ipv6hdr
)))
597 if (hdr
->version
!= 6)
600 pkt_len
= ntohs(hdr
->payload_len
);
602 if (pkt_len
|| hdr
->nexthdr
!= NEXTHDR_HOP
) {
603 if (pkt_len
+ sizeof(struct ipv6hdr
) > skb
->len
)
605 if (pskb_trim_rcsum(skb
, pkt_len
+ sizeof(struct ipv6hdr
)))
608 if (hdr
->nexthdr
== NEXTHDR_HOP
&& check_hbh_len(skb
))
611 nf_bridge_put(skb
->nf_bridge
);
612 if (!nf_bridge_alloc(skb
))
614 if (!setup_pre_routing(skb
))
617 skb
->protocol
= htons(ETH_P_IPV6
);
618 NF_HOOK(NFPROTO_IPV6
, NF_INET_PRE_ROUTING
, state
->sk
, skb
,
620 br_nf_pre_routing_finish_ipv6
);
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. */
631 static unsigned int br_nf_pre_routing(const struct nf_hook_ops
*ops
,
633 const struct nf_hook_state
*state
)
635 struct net_bridge_port
*p
;
636 struct net_bridge
*br
;
637 __u32 len
= nf_bridge_encap_header_len(skb
);
639 if (unlikely(!pskb_may_pull(skb
, len
)))
642 p
= br_port_get_rcu(state
->in
);
647 if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
)) {
648 if (!brnf_call_ip6tables
&& !br
->nf_call_ip6tables
)
651 nf_bridge_pull_encap_header_rcsum(skb
);
652 return br_nf_pre_routing_ipv6(ops
, skb
, state
);
655 if (!brnf_call_iptables
&& !br
->nf_call_iptables
)
658 if (!IS_IP(skb
) && !IS_VLAN_IP(skb
) && !IS_PPPOE_IP(skb
))
661 nf_bridge_pull_encap_header_rcsum(skb
);
663 if (br_parse_ip_options(skb
))
666 nf_bridge_put(skb
->nf_bridge
);
667 if (!nf_bridge_alloc(skb
))
669 if (!setup_pre_routing(skb
))
672 skb
->protocol
= htons(ETH_P_IP
);
674 NF_HOOK(NFPROTO_IPV4
, NF_INET_PRE_ROUTING
, state
->sk
, skb
,
676 br_nf_pre_routing_finish
);
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. */
689 static unsigned int br_nf_local_in(const struct nf_hook_ops
*ops
,
691 const struct nf_hook_state
*state
)
693 br_drop_fake_rtable(skb
);
697 /* PF_BRIDGE/FORWARD *************************************************/
698 static int br_nf_forward_finish(struct sock
*sk
, struct sk_buff
*skb
)
700 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
701 struct net_device
*in
;
703 if (!IS_ARP(skb
) && !IS_VLAN_ARP(skb
)) {
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
;
711 in
= nf_bridge
->physindev
;
712 if (nf_bridge
->pkt_otherhost
) {
713 skb
->pkt_type
= PACKET_OTHERHOST
;
714 nf_bridge
->pkt_otherhost
= false;
716 nf_bridge_update_protocol(skb
);
718 in
= *((struct net_device
**)(skb
->cb
));
720 nf_bridge_push_encap_header(skb
);
722 NF_HOOK_THRESH(NFPROTO_BRIDGE
, NF_BR_FORWARD
, sk
, skb
,
723 in
, skb
->dev
, br_forward_finish
, 1);
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
733 static unsigned int br_nf_forward_ip(const struct nf_hook_ops
*ops
,
735 const struct nf_hook_state
*state
)
737 struct nf_bridge_info
*nf_bridge
;
738 struct net_device
*parent
;
744 /* Need exclusive nf_bridge_info since we might have multiple
745 * different physoutdevs. */
746 if (!nf_bridge_unshare(skb
))
749 nf_bridge
= nf_bridge_info_get(skb
);
753 parent
= bridge_parent(state
->out
);
757 if (IS_IP(skb
) || IS_VLAN_IP(skb
) || IS_PPPOE_IP(skb
))
759 else if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
))
764 nf_bridge_pull_encap_header(skb
);
766 if (skb
->pkt_type
== PACKET_OTHERHOST
) {
767 skb
->pkt_type
= PACKET_HOST
;
768 nf_bridge
->pkt_otherhost
= true;
771 if (pf
== NFPROTO_IPV4
) {
772 int frag_max
= BR_INPUT_SKB_CB(skb
)->frag_max_size
;
774 if (br_parse_ip_options(skb
))
777 IPCB(skb
)->frag_max_size
= frag_max
;
780 nf_bridge
->physoutdev
= skb
->dev
;
781 if (pf
== NFPROTO_IPV4
)
782 skb
->protocol
= htons(ETH_P_IP
);
784 skb
->protocol
= htons(ETH_P_IPV6
);
786 NF_HOOK(pf
, NF_INET_FORWARD
, NULL
, skb
,
787 brnf_get_logical_dev(skb
, state
->in
),
788 parent
, br_nf_forward_finish
);
793 static unsigned int br_nf_forward_arp(const struct nf_hook_ops
*ops
,
795 const struct nf_hook_state
*state
)
797 struct net_bridge_port
*p
;
798 struct net_bridge
*br
;
799 struct net_device
**d
= (struct net_device
**)(skb
->cb
);
801 p
= br_port_get_rcu(state
->out
);
806 if (!brnf_call_arptables
&& !br
->nf_call_arptables
)
810 if (!IS_VLAN_ARP(skb
))
812 nf_bridge_pull_encap_header(skb
);
815 if (arp_hdr(skb
)->ar_pln
!= 4) {
816 if (IS_VLAN_ARP(skb
))
817 nf_bridge_push_encap_header(skb
);
821 NF_HOOK(NFPROTO_ARP
, NF_ARP_FORWARD
, state
->sk
, skb
,
822 state
->in
, state
->out
, br_nf_forward_finish
);
827 #if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
828 static int br_nf_push_frag_xmit(struct sock
*sk
, struct sk_buff
*skb
)
830 struct brnf_frag_data
*data
;
833 data
= this_cpu_ptr(&brnf_frag_data_storage
);
834 err
= skb_cow_head(skb
, data
->size
);
841 skb_copy_to_linear_data_offset(skb
, -data
->size
, data
->mac
, data
->size
);
842 __skb_push(skb
, data
->encap_size
);
844 return br_dev_queue_push_xmit(sk
, skb
);
847 static int br_nf_dev_queue_xmit(struct sock
*sk
, struct sk_buff
*skb
)
851 unsigned int mtu_reserved
;
853 if (skb_is_gso(skb
) || skb
->protocol
!= htons(ETH_P_IP
))
854 return br_dev_queue_push_xmit(sk
, skb
);
856 mtu_reserved
= nf_bridge_mtu_reduction(skb
);
857 /* This is wrong! We should preserve the original fragment
858 * boundaries by preserving frag_list rather than refragmenting.
860 if (skb
->len
+ mtu_reserved
> skb
->dev
->mtu
) {
861 struct brnf_frag_data
*data
;
863 frag_max_size
= BR_INPUT_SKB_CB(skb
)->frag_max_size
;
864 if (br_parse_ip_options(skb
))
865 /* Drop invalid packet */
867 IPCB(skb
)->frag_max_size
= frag_max_size
;
869 nf_bridge_update_protocol(skb
);
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
;
875 skb_copy_from_linear_data_offset(skb
, -data
->size
, data
->mac
,
878 ret
= ip_fragment(sk
, skb
, br_nf_push_frag_xmit
);
880 ret
= br_dev_queue_push_xmit(sk
, skb
);
886 static int br_nf_dev_queue_xmit(struct sock
*sk
, struct sk_buff
*skb
)
888 return br_dev_queue_push_xmit(sk
, skb
);
892 /* PF_BRIDGE/POST_ROUTING ********************************************/
893 static unsigned int br_nf_post_routing(const struct nf_hook_ops
*ops
,
895 const struct nf_hook_state
*state
)
897 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
898 struct net_device
*realoutdev
= bridge_parent(skb
->dev
);
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:
904 * POST_ROUTING was already invoked from the ip stack.
906 if (!nf_bridge
|| !nf_bridge
->physoutdev
)
912 if (IS_IP(skb
) || IS_VLAN_IP(skb
) || IS_PPPOE_IP(skb
))
914 else if (IS_IPV6(skb
) || IS_VLAN_IPV6(skb
) || IS_PPPOE_IPV6(skb
))
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
;
923 nf_bridge
->pkt_otherhost
= true;
926 nf_bridge_pull_encap_header(skb
);
927 if (pf
== NFPROTO_IPV4
)
928 skb
->protocol
= htons(ETH_P_IP
);
930 skb
->protocol
= htons(ETH_P_IPV6
);
932 NF_HOOK(pf
, NF_INET_POST_ROUTING
, state
->sk
, skb
,
934 br_nf_dev_queue_xmit
);
939 /* IP/SABOTAGE *****************************************************/
940 /* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
941 * for the second time. */
942 static unsigned int ip_sabotage_in(const struct nf_hook_ops
*ops
,
944 const struct nf_hook_state
*state
)
946 if (skb
->nf_bridge
&&
947 !(skb
->nf_bridge
->mask
& BRNF_NF_BRIDGE_PREROUTING
)) {
954 /* This is called when br_netfilter has called into iptables/netfilter,
955 * and DNAT has taken place on a bridge-forwarded packet.
957 * neigh->output has created a new MAC header, with local br0 MAC
960 * This restores the original MAC saddr of the bridged packet
961 * before invoking bridge forward logic to transmit the packet.
963 static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff
*skb
)
965 struct nf_bridge_info
*nf_bridge
= nf_bridge_info_get(skb
);
967 skb_pull(skb
, ETH_HLEN
);
968 nf_bridge
->mask
&= ~BRNF_BRIDGED_DNAT
;
970 BUILD_BUG_ON(sizeof(nf_bridge
->neigh_header
) != (ETH_HLEN
- ETH_ALEN
));
972 skb_copy_to_linear_data_offset(skb
, -(ETH_HLEN
- ETH_ALEN
),
973 nf_bridge
->neigh_header
,
974 ETH_HLEN
- ETH_ALEN
);
975 skb
->dev
= nf_bridge
->physindev
;
976 br_handle_frame_finish(NULL
, skb
);
979 static int br_nf_dev_xmit(struct sk_buff
*skb
)
981 if (skb
->nf_bridge
&& (skb
->nf_bridge
->mask
& BRNF_BRIDGED_DNAT
)) {
982 br_nf_pre_routing_finish_bridge_slow(skb
);
988 static const struct nf_br_ops br_ops
= {
989 .br_dev_xmit_hook
= br_nf_dev_xmit
,
992 void br_netfilter_enable(void)
995 EXPORT_SYMBOL_GPL(br_netfilter_enable
);
997 /* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
998 * br_dev_queue_push_xmit is called afterwards */
999 static struct nf_hook_ops br_nf_ops
[] __read_mostly
= {
1001 .hook
= br_nf_pre_routing
,
1002 .owner
= THIS_MODULE
,
1003 .pf
= NFPROTO_BRIDGE
,
1004 .hooknum
= NF_BR_PRE_ROUTING
,
1005 .priority
= NF_BR_PRI_BRNF
,
1008 .hook
= br_nf_local_in
,
1009 .owner
= THIS_MODULE
,
1010 .pf
= NFPROTO_BRIDGE
,
1011 .hooknum
= NF_BR_LOCAL_IN
,
1012 .priority
= NF_BR_PRI_BRNF
,
1015 .hook
= br_nf_forward_ip
,
1016 .owner
= THIS_MODULE
,
1017 .pf
= NFPROTO_BRIDGE
,
1018 .hooknum
= NF_BR_FORWARD
,
1019 .priority
= NF_BR_PRI_BRNF
- 1,
1022 .hook
= br_nf_forward_arp
,
1023 .owner
= THIS_MODULE
,
1024 .pf
= NFPROTO_BRIDGE
,
1025 .hooknum
= NF_BR_FORWARD
,
1026 .priority
= NF_BR_PRI_BRNF
,
1029 .hook
= br_nf_post_routing
,
1030 .owner
= THIS_MODULE
,
1031 .pf
= NFPROTO_BRIDGE
,
1032 .hooknum
= NF_BR_POST_ROUTING
,
1033 .priority
= NF_BR_PRI_LAST
,
1036 .hook
= ip_sabotage_in
,
1037 .owner
= THIS_MODULE
,
1039 .hooknum
= NF_INET_PRE_ROUTING
,
1040 .priority
= NF_IP_PRI_FIRST
,
1043 .hook
= ip_sabotage_in
,
1044 .owner
= THIS_MODULE
,
1046 .hooknum
= NF_INET_PRE_ROUTING
,
1047 .priority
= NF_IP6_PRI_FIRST
,
1051 #ifdef CONFIG_SYSCTL
1053 int brnf_sysctl_call_tables(struct ctl_table
*ctl
, int write
,
1054 void __user
*buffer
, size_t *lenp
, loff_t
*ppos
)
1058 ret
= proc_dointvec(ctl
, write
, buffer
, lenp
, ppos
);
1060 if (write
&& *(int *)(ctl
->data
))
1061 *(int *)(ctl
->data
) = 1;
1065 static struct ctl_table brnf_table
[] = {
1067 .procname
= "bridge-nf-call-arptables",
1068 .data
= &brnf_call_arptables
,
1069 .maxlen
= sizeof(int),
1071 .proc_handler
= brnf_sysctl_call_tables
,
1074 .procname
= "bridge-nf-call-iptables",
1075 .data
= &brnf_call_iptables
,
1076 .maxlen
= sizeof(int),
1078 .proc_handler
= brnf_sysctl_call_tables
,
1081 .procname
= "bridge-nf-call-ip6tables",
1082 .data
= &brnf_call_ip6tables
,
1083 .maxlen
= sizeof(int),
1085 .proc_handler
= brnf_sysctl_call_tables
,
1088 .procname
= "bridge-nf-filter-vlan-tagged",
1089 .data
= &brnf_filter_vlan_tagged
,
1090 .maxlen
= sizeof(int),
1092 .proc_handler
= brnf_sysctl_call_tables
,
1095 .procname
= "bridge-nf-filter-pppoe-tagged",
1096 .data
= &brnf_filter_pppoe_tagged
,
1097 .maxlen
= sizeof(int),
1099 .proc_handler
= brnf_sysctl_call_tables
,
1102 .procname
= "bridge-nf-pass-vlan-input-dev",
1103 .data
= &brnf_pass_vlan_indev
,
1104 .maxlen
= sizeof(int),
1106 .proc_handler
= brnf_sysctl_call_tables
,
1112 static int __init
br_netfilter_init(void)
1116 ret
= nf_register_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1120 #ifdef CONFIG_SYSCTL
1121 brnf_sysctl_header
= register_net_sysctl(&init_net
, "net/bridge", brnf_table
);
1122 if (brnf_sysctl_header
== NULL
) {
1124 "br_netfilter: can't register to sysctl.\n");
1125 nf_unregister_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1129 RCU_INIT_POINTER(nf_br_ops
, &br_ops
);
1130 printk(KERN_NOTICE
"Bridge firewalling registered\n");
1134 static void __exit
br_netfilter_fini(void)
1136 RCU_INIT_POINTER(nf_br_ops
, NULL
);
1137 nf_unregister_hooks(br_nf_ops
, ARRAY_SIZE(br_nf_ops
));
1138 #ifdef CONFIG_SYSCTL
1139 unregister_net_sysctl_table(brnf_sysctl_header
);
1143 module_init(br_netfilter_init
);
1144 module_exit(br_netfilter_fini
);
1146 MODULE_LICENSE("GPL");
1147 MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1148 MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1149 MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");