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