blob: 2651876894e0034f2540d8a268e0049934744f91 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Handle firewalling
3 * Linux ethernet bridge
4 *
5 * Authors:
Bart De Schuymer82379082010-04-13 11:40:41 +02006 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer <bdschuym@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Lennert dedicates this file to Kerstin Wurdinger.
15 */
16
17#include <linux/module.h>
18#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/ip.h>
21#include <linux/netdevice.h>
22#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020023#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/if_ether.h>
25#include <linux/if_vlan.h>
Michael Milner516299d2007-04-12 22:14:23 -070026#include <linux/if_pppox.h>
27#include <linux/ppp_defs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Bart De Schuymerf216f082006-12-05 13:45:21 -080033#include <linux/inetdevice.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/ip.h>
36#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020037#include <net/route.h>
Florian Westphal56768642014-11-13 10:04:16 +010038#include <net/netfilter/br_netfilter.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020039
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include "br_private.h"
42#ifdef CONFIG_SYSCTL
43#include <linux/sysctl.h>
44#endif
45
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#ifdef CONFIG_SYSCTL
47static struct ctl_table_header *brnf_sysctl_header;
Brian Haley9c1ea142006-09-18 00:03:41 -070048static int brnf_call_iptables __read_mostly = 1;
49static int brnf_call_ip6tables __read_mostly = 1;
50static int brnf_call_arptables __read_mostly = 1;
Herbert Xu47e0e1c2009-01-12 00:06:03 +000051static int brnf_filter_vlan_tagged __read_mostly = 0;
52static int brnf_filter_pppoe_tagged __read_mostly = 0;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020053static int brnf_pass_vlan_indev __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070054#else
Patrick McHardy4df53d82010-07-02 09:32:57 +020055#define brnf_call_iptables 1
56#define brnf_call_ip6tables 1
57#define brnf_call_arptables 1
Herbert Xu47e0e1c2009-01-12 00:06:03 +000058#define brnf_filter_vlan_tagged 0
59#define brnf_filter_pppoe_tagged 0
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020060#define brnf_pass_vlan_indev 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif
62
Florian Westphal739e4502012-03-06 01:22:54 +000063#define IS_IP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010064 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
Florian Westphal739e4502012-03-06 01:22:54 +000065
66#define IS_IPV6(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010067 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
Florian Westphal739e4502012-03-06 01:22:54 +000068
69#define IS_ARP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010070 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
Florian Westphal739e4502012-03-06 01:22:54 +000071
Dave Jonesb6f99a22007-03-22 12:27:49 -070072static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080073{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010074 if (skb_vlan_tag_present(skb))
Jesse Gross13937912010-10-20 13:56:01 +000075 return skb->protocol;
76 else if (skb->protocol == htons(ETH_P_8021Q))
77 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
78 else
79 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080080}
81
82#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000083 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080084 brnf_filter_vlan_tagged)
85
86#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000087 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080088 brnf_filter_vlan_tagged)
89
90#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000091 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080092 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070093
Michael Milner516299d2007-04-12 22:14:23 -070094static inline __be16 pppoe_proto(const struct sk_buff *skb)
95{
96 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
97 sizeof(struct pppoe_hdr)));
98}
99
100#define IS_PPPOE_IP(skb) \
101 (skb->protocol == htons(ETH_P_PPP_SES) && \
102 pppoe_proto(skb) == htons(PPP_IP) && \
103 brnf_filter_pppoe_tagged)
104
105#define IS_PPPOE_IPV6(skb) \
106 (skb->protocol == htons(ETH_P_PPP_SES) && \
107 pppoe_proto(skb) == htons(PPP_IPV6) && \
108 brnf_filter_pppoe_tagged)
109
Florian Westphale70deec2015-04-02 14:31:40 +0200110/* largest possible L2 header, see br_nf_dev_queue_xmit() */
111#define NF_BRIDGE_MAX_MAC_HEADER_LENGTH (PPPOE_SES_HLEN + ETH_HLEN)
112
113#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
114struct brnf_frag_data {
115 char mac[NF_BRIDGE_MAX_MAC_HEADER_LENGTH];
116 u8 encap_size;
117 u8 size;
118};
119
120static DEFINE_PER_CPU(struct brnf_frag_data, brnf_frag_data_storage);
121#endif
122
Florian Westphal38330782015-04-02 14:31:43 +0200123static struct nf_bridge_info *nf_bridge_info_get(const struct sk_buff *skb)
124{
125 return skb->nf_bridge;
126}
127
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200128static void nf_bridge_info_free(struct sk_buff *skb)
129{
130 if (skb->nf_bridge) {
131 nf_bridge_put(skb->nf_bridge);
132 skb->nf_bridge = NULL;
133 }
134}
135
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700136static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
137{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000138 struct net_bridge_port *port;
139
140 port = br_port_get_rcu(dev);
141 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800144static inline struct net_device *bridge_parent(const struct net_device *dev)
145{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000146 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800147
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000148 port = br_port_get_rcu(dev);
149 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800150}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800152static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
153{
154 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
155 if (likely(skb->nf_bridge))
156 atomic_set(&(skb->nf_bridge->use), 1);
157
158 return skb->nf_bridge;
159}
160
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800161static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
162{
163 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
164
165 if (atomic_read(&nf_bridge->use) > 1) {
166 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
167
168 if (tmp) {
169 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
170 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800171 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000172 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800173 nf_bridge = tmp;
174 }
175 return nf_bridge;
176}
177
Florian Westphal8d045162015-03-18 20:55:31 +0100178static unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
179{
180 switch (skb->protocol) {
181 case __cpu_to_be16(ETH_P_8021Q):
182 return VLAN_HLEN;
183 case __cpu_to_be16(ETH_P_PPP_SES):
184 return PPPOE_SES_HLEN;
185 default:
186 return 0;
187 }
188}
189
Patrick McHardyfc385822007-05-03 03:36:16 -0700190static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
191{
192 unsigned int len = nf_bridge_encap_header_len(skb);
193
194 skb_push(skb, len);
195 skb->network_header -= len;
196}
197
198static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
199{
200 unsigned int len = nf_bridge_encap_header_len(skb);
201
202 skb_pull(skb, len);
203 skb->network_header += len;
204}
205
206static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
207{
208 unsigned int len = nf_bridge_encap_header_len(skb);
209
210 skb_pull_rcsum(skb, len);
211 skb->network_header += len;
212}
213
Bandan Das462fb2a2010-09-19 09:34:33 +0000214/* When handing a packet over to the IP layer
215 * check whether we have a skb that is in the
216 * expected format
217 */
218
stephen hemmingerd0280232010-10-18 14:03:21 +0000219static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000220{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000221 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000222 struct net_device *dev = skb->dev;
223 u32 len;
224
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000225 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
226 goto inhdr_error;
227
Bandan Das462fb2a2010-09-19 09:34:33 +0000228 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000229
230 /* Basic sanity checks */
231 if (iph->ihl < 5 || iph->version != 4)
232 goto inhdr_error;
233
234 if (!pskb_may_pull(skb, iph->ihl*4))
235 goto inhdr_error;
236
237 iph = ip_hdr(skb);
238 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
239 goto inhdr_error;
240
241 len = ntohs(iph->tot_len);
242 if (skb->len < len) {
243 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
244 goto drop;
245 } else if (len < (iph->ihl*4))
246 goto inhdr_error;
247
248 if (pskb_trim_rcsum(skb, len)) {
249 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
250 goto drop;
251 }
252
Eric Dumazetf8e98812011-04-12 13:39:14 -0700253 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800254 /* We should really parse IP options here but until
255 * somebody who actually uses IP options complains to
256 * us we'll just silently ignore the options because
257 * we're lazy!
258 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000259 return 0;
260
261inhdr_error:
262 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
263drop:
264 return -1;
265}
266
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100267static void nf_bridge_update_protocol(struct sk_buff *skb)
268{
Florian Westphal3eaf4022015-04-02 14:31:44 +0200269 switch (skb->nf_bridge->orig_proto) {
270 case BRNF_PROTO_8021Q:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100271 skb->protocol = htons(ETH_P_8021Q);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200272 break;
273 case BRNF_PROTO_PPPOE:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100274 skb->protocol = htons(ETH_P_PPP_SES);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200275 break;
276 case BRNF_PROTO_UNCHANGED:
277 break;
278 }
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100279}
280
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281/* PF_BRIDGE/PRE_ROUTING *********************************************/
282/* Undo the changes made for ip6tables PREROUTING and continue the
283 * bridge PRE_ROUTING hook. */
David Miller7026b1d2015-04-05 22:19:04 -0400284static int br_nf_pre_routing_finish_ipv6(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285{
Florian Westphal38330782015-04-02 14:31:43 +0200286 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000287 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Florian Westphala1e67952015-04-02 14:31:45 +0200289 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200291 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Bernhard Thalerd39a33e2015-05-30 15:26:13 +0200293 nf_bridge->mask &= ~BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Eric Dumazet511c3f92009-06-02 05:14:27 +0000295 rt = bridge_parent_rtable(nf_bridge->physindev);
296 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700297 kfree_skb(skb);
298 return 0;
299 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200300 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
302 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200303 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700304 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400305 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
306 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 br_handle_frame_finish, 1);
308
309 return 0;
310}
311
Bart De Schuymere179e632010-04-15 12:26:39 +0200312/* Obtain the correct destination MAC address, while preserving the original
313 * source MAC address. If we already know this address, we just copy it. If we
314 * don't, we use the neighbour framework to find out. In both cases, we make
315 * sure that br_handle_frame_finish() is called afterwards.
316 */
David Miller7026b1d2015-04-05 22:19:04 -0400317static int br_nf_pre_routing_finish_bridge(struct sock *sk, struct sk_buff *skb)
Bart De Schuymere179e632010-04-15 12:26:39 +0200318{
David S. Millerf6b72b62011-07-14 07:53:20 -0700319 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200320 struct dst_entry *dst;
321
322 skb->dev = bridge_parent(skb->dev);
323 if (!skb->dev)
324 goto free_skb;
325 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700326 neigh = dst_neigh_lookup_skb(dst, skb);
327 if (neigh) {
Florian Westphal38330782015-04-02 14:31:43 +0200328 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700329 int ret;
330
331 if (neigh->hh.hh_len) {
332 neigh_hh_bridge(&neigh->hh, skb);
333 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400334 ret = br_handle_frame_finish(sk, skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700335 } else {
336 /* the neighbour function below overwrites the complete
337 * MAC header, so we save the Ethernet source address and
338 * protocol number.
339 */
340 skb_copy_from_linear_data_offset(skb,
341 -(ETH_HLEN-ETH_ALEN),
Florian Westphale70deec2015-04-02 14:31:40 +0200342 nf_bridge->neigh_header,
David S. Millerf9d75162012-07-02 22:12:59 -0700343 ETH_HLEN-ETH_ALEN);
344 /* tell br_dev_xmit to continue with forwarding */
345 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800346 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700347 ret = neigh->output(neigh, skb);
348 }
349 neigh_release(neigh);
350 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200351 }
352free_skb:
353 kfree_skb(skb);
354 return 0;
355}
356
Florian Westphalfaecbb42015-05-20 13:42:25 +0200357static bool daddr_was_changed(const struct sk_buff *skb,
358 const struct nf_bridge_info *nf_bridge)
Florian Westphalc055d5b2015-03-10 05:08:19 +0100359{
Florian Westphalfaecbb42015-05-20 13:42:25 +0200360 return ip_hdr(skb)->daddr != nf_bridge->ipv4_daddr;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100361}
362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200364 * we will need to fix up the destination Ethernet address.
Florian Westphalfaecbb42015-05-20 13:42:25 +0200365 * This is also true when SNAT takes place (for the reply direction).
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 *
367 * There are two cases to consider:
368 * 1. The packet was DNAT'ed to a device in the same bridge
369 * port group as it was received on. We can still bridge
370 * the packet.
371 * 2. The packet was DNAT'ed to a different device, either
372 * a non-bridged device or another bridge port group.
373 * The packet will need to be routed.
374 *
375 * The correct way of distinguishing between these two cases is to
376 * call ip_route_input() and to look at skb->dst->dev, which is
377 * changed to the destination device if ip_route_input() succeeds.
378 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200379 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200381 * If the output device equals the logical bridge device the packet
382 * came in on, we can consider this bridging. The corresponding MAC
383 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * Otherwise, the packet is considered to be routed and we just
385 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800386 * later be passed up to the IP stack to be routed. For a redirected
387 * packet, ip_route_input() will give back the localhost as output device,
388 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200390 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800392 * This can be because the destination address is martian, in which case
393 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200394 * If IP forwarding is disabled, ip_route_input() will fail, while
395 * ip_route_output_key() can return success. The source
396 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200398 * if IP forwarding is enabled. If the output device equals the logical bridge
399 * device, we proceed as if ip_route_input() succeeded. If it differs from the
400 * logical bridge port or if ip_route_output_key() fails we drop the packet.
401 */
David Miller7026b1d2015-04-05 22:19:04 -0400402static int br_nf_pre_routing_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403{
404 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700405 struct iphdr *iph = ip_hdr(skb);
Florian Westphal38330782015-04-02 14:31:43 +0200406 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000407 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800408 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800409 int frag_max_size;
410
411 frag_max_size = IPCB(skb)->frag_max_size;
412 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Florian Westphala1e67952015-04-02 14:31:45 +0200414 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200416 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 }
Bernhard Thalerd39a33e2015-05-30 15:26:13 +0200418 nf_bridge->mask &= ~BRNF_NF_BRIDGE_PREROUTING;
Florian Westphalfaecbb42015-05-20 13:42:25 +0200419 if (daddr_was_changed(skb, nf_bridge)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800420 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200421 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800422
423 /* If err equals -EHOSTUNREACH the error is due to a
424 * martian destination or due to the fact that
425 * forwarding is disabled. For most martian packets,
426 * ip_route_output_key() will fail. It won't fail for 2 types of
427 * martian destinations: loopback destinations and destination
428 * 0.0.0.0. In both cases the packet will be dropped because the
429 * destination is the loopback device and not the bridge. */
430 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
431 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
David S. Miller78fbfd82011-03-12 00:00:52 -0500433 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
434 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800435 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700436 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800437 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800438 if (rt->dst.dev == dev) {
439 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto bridged_dnat;
441 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800442 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800444free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree_skb(skb);
446 return 0;
447 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000448 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200451 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700452 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100453 NF_HOOK_THRESH(NFPROTO_BRIDGE,
454 NF_BR_PRE_ROUTING,
David Miller7026b1d2015-04-05 22:19:04 -0400455 sk, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 br_nf_pre_routing_finish_bridge,
457 1);
458 return 0;
459 }
Joe Perches04091142014-02-23 00:05:26 -0800460 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 skb->pkt_type = PACKET_HOST;
462 }
463 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000464 rt = bridge_parent_rtable(nf_bridge->physindev);
465 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700466 kfree_skb(skb);
467 return 0;
468 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200469 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471
472 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200473 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700474 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400475 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
476 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 br_handle_frame_finish, 1);
478
479 return 0;
480}
481
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200482static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
483{
484 struct net_device *vlan, *br;
485
486 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100487 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200488 return br;
489
dingtianhongf06c7f92014-05-09 14:58:05 +0800490 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100491 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200492
493 return vlan ? vlan : br;
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800497static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Florian Westphal38330782015-04-02 14:31:43 +0200499 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500
501 if (skb->pkt_type == PACKET_OTHERHOST) {
502 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200503 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 }
505
506 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
507 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200508 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200509
Bart De Schuymere179e632010-04-15 12:26:39 +0200510 if (skb->protocol == htons(ETH_P_8021Q))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200511 nf_bridge->orig_proto = BRNF_PROTO_8021Q;
Bart De Schuymere179e632010-04-15 12:26:39 +0200512 else if (skb->protocol == htons(ETH_P_PPP_SES))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200513 nf_bridge->orig_proto = BRNF_PROTO_PPPOE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800514
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200515 /* Must drop socket now because of tproxy. */
516 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800517 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518}
519
520/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
521static int check_hbh_len(struct sk_buff *skb)
522{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700523 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700525 const unsigned char *nh = skb_network_header(skb);
526 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800527 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 if ((raw + len) - skb->data > skb_headlen(skb))
530 goto bad;
531
532 off += 2;
533 len -= 2;
534
535 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700536 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700538 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000539 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 optlen = 1;
541 break;
542
543 case IPV6_TLV_PADN:
544 break;
545
546 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700547 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700549 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800550 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700551 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800552 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
554 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800555 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800556 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800557 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700558 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 break;
560 default:
561 if (optlen > len)
562 goto bad;
563 break;
564 }
565 off += optlen;
566 len -= optlen;
567 }
568 if (len == 0)
569 return 0;
570bad:
571 return -1;
572
573}
574
575/* Replicate the checks that IPv6 does on packet reception and pass the packet
576 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200577static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800578 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400579 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000581 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
584 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000585 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
587 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000588 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700590 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000593 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
595 pkt_len = ntohs(hdr->payload_len);
596
597 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
598 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000599 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700600 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000601 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000604 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800606 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800607 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800609 if (!setup_pre_routing(skb))
610 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Bart De Schuymere179e632010-04-15 12:26:39 +0200612 skb->protocol = htons(ETH_P_IPV6);
David Miller7026b1d2015-04-05 22:19:04 -0400613 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, state->sk, skb,
614 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 br_nf_pre_routing_finish_ipv6);
616
617 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
619
620/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
621 * Replicate the checks that IPv4 does on packet reception.
622 * Set skb->dev to the bridge device (i.e. parent of the
623 * receiving device) to make netfilter happy, the REDIRECT
624 * target in particular. Save the original destination IP
625 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200626static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
627 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400628 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Florian Westphalfaecbb42015-05-20 13:42:25 +0200630 struct nf_bridge_info *nf_bridge;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200631 struct net_bridge_port *p;
632 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700633 __u32 len = nf_bridge_encap_header_len(skb);
634
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700635 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000636 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637
David S. Miller238e54c2015-04-03 20:32:56 -0400638 p = br_port_get_rcu(state->in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200639 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000640 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200641 br = p->br;
642
Florian Westphal739e4502012-03-06 01:22:54 +0000643 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200644 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200646
Patrick McHardyfc385822007-05-03 03:36:16 -0700647 nf_bridge_pull_encap_header_rcsum(skb);
David S. Miller238e54c2015-04-03 20:32:56 -0400648 return br_nf_pre_routing_ipv6(ops, skb, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200650
651 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Florian Westphal739e4502012-03-06 01:22:54 +0000654 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return NF_ACCEPT;
656
Patrick McHardyfc385822007-05-03 03:36:16 -0700657 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Bandan Das462fb2a2010-09-19 09:34:33 +0000659 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000660 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000661
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800662 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800663 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800665 if (!setup_pre_routing(skb))
666 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100667
Florian Westphalfaecbb42015-05-20 13:42:25 +0200668 nf_bridge = nf_bridge_info_get(skb);
669 nf_bridge->ipv4_daddr = ip_hdr(skb)->daddr;
670
Bart De Schuymere179e632010-04-15 12:26:39 +0200671 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
David Miller7026b1d2015-04-05 22:19:04 -0400673 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, state->sk, skb,
674 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 br_nf_pre_routing_finish);
676
677 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678}
679
680
681/* PF_BRIDGE/LOCAL_IN ************************************************/
682/* The packet is locally destined, which requires a real
683 * dst_entry, so detach the fake one. On the way up, the
684 * packet would pass through PRE_ROUTING again (which already
685 * took place when the packet entered the bridge), but we
686 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
687 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200688static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
689 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400690 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000692 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 return NF_ACCEPT;
694}
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696/* PF_BRIDGE/FORWARD *************************************************/
David Miller7026b1d2015-04-05 22:19:04 -0400697static int br_nf_forward_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698{
Florian Westphal38330782015-04-02 14:31:43 +0200699 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Florian Westphal739e4502012-03-06 01:22:54 +0000702 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Florian Westphal0b67c432015-04-01 22:36:27 +0200703 int frag_max_size;
704
705 if (skb->protocol == htons(ETH_P_IP)) {
706 frag_max_size = IPCB(skb)->frag_max_size;
707 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
708 }
709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 in = nf_bridge->physindev;
Florian Westphala1e67952015-04-02 14:31:45 +0200711 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200713 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200715 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 } else {
717 in = *((struct net_device **)(skb->cb));
718 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700719 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200720
David Miller7026b1d2015-04-05 22:19:04 -0400721 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, sk, skb,
722 in, skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 return 0;
724}
725
Florian Westphal739e4502012-03-06 01:22:54 +0000726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727/* This is the 'purely bridged' case. For IP, we pass the packet to
728 * netfilter with indev and outdev set to the bridge device,
729 * but we are still able to filter on the 'real' indev/outdev
730 * because of the physdev module. For ARP, indev and outdev are the
731 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200732static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
733 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400734 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800737 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200738 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739
740 if (!skb->nf_bridge)
741 return NF_ACCEPT;
742
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800743 /* Need exclusive nf_bridge_info since we might have multiple
744 * different physoutdevs. */
745 if (!nf_bridge_unshare(skb))
746 return NF_DROP;
747
Florian Westphal38330782015-04-02 14:31:43 +0200748 nf_bridge = nf_bridge_info_get(skb);
749 if (!nf_bridge)
750 return NF_DROP;
751
David S. Miller238e54c2015-04-03 20:32:56 -0400752 parent = bridge_parent(state->out);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800753 if (!parent)
754 return NF_DROP;
755
Florian Westphal739e4502012-03-06 01:22:54 +0000756 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000757 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000758 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000759 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000760 else
761 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Herbert Xu3db05fe2007-10-15 00:53:15 -0700763 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 if (skb->pkt_type == PACKET_OTHERHOST) {
766 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200767 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769
Florian Westphal0b67c432015-04-01 22:36:27 +0200770 if (pf == NFPROTO_IPV4) {
771 int frag_max = BR_INPUT_SKB_CB(skb)->frag_max_size;
772
773 if (br_parse_ip_options(skb))
774 return NF_DROP;
775
776 IPCB(skb)->frag_max_size = frag_max;
777 }
Herbert Xu6b1e9602011-03-18 05:27:28 +0000778
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000780 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200781 skb->protocol = htons(ETH_P_IP);
782 else
783 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
David Miller7026b1d2015-04-05 22:19:04 -0400785 NF_HOOK(pf, NF_INET_FORWARD, NULL, skb,
786 brnf_get_logical_dev(skb, state->in),
David S. Miller238e54c2015-04-03 20:32:56 -0400787 parent, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
789 return NF_STOLEN;
790}
791
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200792static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
793 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400794 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200796 struct net_bridge_port *p;
797 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 struct net_device **d = (struct net_device **)(skb->cb);
799
David S. Miller238e54c2015-04-03 20:32:56 -0400800 p = br_port_get_rcu(state->out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200801 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200803 br = p->br;
804
805 if (!brnf_call_arptables && !br->nf_call_arptables)
806 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Florian Westphal739e4502012-03-06 01:22:54 +0000808 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800809 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700811 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 }
813
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300814 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700815 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700816 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return NF_ACCEPT;
818 }
David S. Miller238e54c2015-04-03 20:32:56 -0400819 *d = state->in;
David Miller7026b1d2015-04-05 22:19:04 -0400820 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, state->sk, skb,
821 state->in, state->out, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 return NF_STOLEN;
824}
825
Vasily Averinaff09ce2014-05-05 00:17:48 +0400826#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
David Miller7026b1d2015-04-05 22:19:04 -0400827static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100828{
Florian Westphale70deec2015-04-02 14:31:40 +0200829 struct brnf_frag_data *data;
830 int err;
831
832 data = this_cpu_ptr(&brnf_frag_data_storage);
833 err = skb_cow_head(skb, data->size);
834
835 if (err) {
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100836 kfree_skb(skb);
837 return 0;
838 }
839
Florian Westphale70deec2015-04-02 14:31:40 +0200840 skb_copy_to_linear_data_offset(skb, -data->size, data->mac, data->size);
841 __skb_push(skb, data->encap_size);
842
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200843 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400844 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100845}
846
Andy Zhou49d16b22015-05-15 14:15:37 -0700847static int br_nf_ip_fragment(struct sock *sk, struct sk_buff *skb,
848 int (*output)(struct sock *, struct sk_buff *))
849{
850 unsigned int mtu = ip_skb_dst_mtu(skb);
851 struct iphdr *iph = ip_hdr(skb);
852 struct rtable *rt = skb_rtable(skb);
853 struct net_device *dev = rt->dst.dev;
854
855 if (unlikely(((iph->frag_off & htons(IP_DF)) && !skb->ignore_df) ||
856 (IPCB(skb)->frag_max_size &&
857 IPCB(skb)->frag_max_size > mtu))) {
858 IP_INC_STATS(dev_net(dev), IPSTATS_MIB_FRAGFAILS);
859 kfree_skb(skb);
860 return -EMSGSIZE;
861 }
862
863 return ip_do_fragment(sk, skb, output);
864}
865
David Miller7026b1d2015-04-05 22:19:04 -0400866static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700867{
Bandan Das462fb2a2010-09-19 09:34:33 +0000868 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800869 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100870 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000871
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200872 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP)) {
873 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400874 return br_dev_queue_push_xmit(sk, skb);
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200875 }
Florian Westphal7a8d8312015-03-05 00:52:36 +0100876
877 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800878 /* This is wrong! We should preserve the original fragment
879 * boundaries by preserving frag_list rather than refragmenting.
880 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100881 if (skb->len + mtu_reserved > skb->dev->mtu) {
Florian Westphale70deec2015-04-02 14:31:40 +0200882 struct brnf_frag_data *data;
883
Herbert Xu93fdd472014-10-05 12:00:22 +0800884 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000885 if (br_parse_ip_options(skb))
886 /* Drop invalid packet */
887 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800888 IPCB(skb)->frag_max_size = frag_max_size;
Florian Westphale70deec2015-04-02 14:31:40 +0200889
890 nf_bridge_update_protocol(skb);
891
892 data = this_cpu_ptr(&brnf_frag_data_storage);
893 data->encap_size = nf_bridge_encap_header_len(skb);
894 data->size = ETH_HLEN + data->encap_size;
895
896 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
897 data->size);
898
Andy Zhou49d16b22015-05-15 14:15:37 -0700899 ret = br_nf_ip_fragment(sk, skb, br_nf_push_frag_xmit);
Florian Westphale70deec2015-04-02 14:31:40 +0200900 } else {
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200901 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400902 ret = br_dev_queue_push_xmit(sk, skb);
Florian Westphale70deec2015-04-02 14:31:40 +0200903 }
Bandan Das462fb2a2010-09-19 09:34:33 +0000904
905 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700906}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200907#else
David Miller7026b1d2015-04-05 22:19:04 -0400908static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200909{
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200910 nf_bridge_info_free(skb);
911 return br_dev_queue_push_xmit(sk, skb);
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200912}
913#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200916static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
917 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400918 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Florian Westphal38330782015-04-02 14:31:43 +0200920 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200922 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100924 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
925 * on a bridge, but was delivered locally and is now being routed:
926 *
927 * POST_ROUTING was already invoked from the ip stack.
928 */
929 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800930 return NF_ACCEPT;
931
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800932 if (!realoutdev)
933 return NF_DROP;
934
Florian Westphal739e4502012-03-06 01:22:54 +0000935 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000936 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000937 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000938 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000939 else
940 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
943 * about the value of skb->pkt_type. */
944 if (skb->pkt_type == PACKET_OTHERHOST) {
945 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200946 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948
Patrick McHardyfc385822007-05-03 03:36:16 -0700949 nf_bridge_pull_encap_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000950 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200951 skb->protocol = htons(ETH_P_IP);
952 else
953 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954
David Miller7026b1d2015-04-05 22:19:04 -0400955 NF_HOOK(pf, NF_INET_POST_ROUTING, state->sk, skb,
956 NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700957 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700958
959 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960}
961
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962/* IP/SABOTAGE *****************************************************/
963/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
964 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200965static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
966 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400967 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700969 if (skb->nf_bridge &&
970 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return NF_STOP;
972 }
973
974 return NF_ACCEPT;
975}
976
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100977/* This is called when br_netfilter has called into iptables/netfilter,
978 * and DNAT has taken place on a bridge-forwarded packet.
979 *
980 * neigh->output has created a new MAC header, with local br0 MAC
981 * as saddr.
982 *
983 * This restores the original MAC saddr of the bridged packet
984 * before invoking bridge forward logic to transmit the packet.
985 */
986static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
987{
Florian Westphal38330782015-04-02 14:31:43 +0200988 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100989
990 skb_pull(skb, ETH_HLEN);
991 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
992
Florian Westphale70deec2015-04-02 14:31:40 +0200993 BUILD_BUG_ON(sizeof(nf_bridge->neigh_header) != (ETH_HLEN - ETH_ALEN));
994
995 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN - ETH_ALEN),
996 nf_bridge->neigh_header,
997 ETH_HLEN - ETH_ALEN);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100998 skb->dev = nf_bridge->physindev;
Florian Westphal7fb48c52015-05-03 22:05:28 +0200999
1000 nf_bridge->physoutdev = NULL;
David Miller7026b1d2015-04-05 22:19:04 -04001001 br_handle_frame_finish(NULL, skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001002}
1003
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001004static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001005{
1006 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
1007 br_nf_pre_routing_finish_bridge_slow(skb);
1008 return 1;
1009 }
1010 return 0;
1011}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001012
1013static const struct nf_br_ops br_ops = {
1014 .br_dev_xmit_hook = br_nf_dev_xmit,
1015};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001016
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +02001017void br_netfilter_enable(void)
1018{
1019}
1020EXPORT_SYMBOL_GPL(br_netfilter_enable);
1021
Bart De Schuymerea2d9b42010-04-15 12:14:51 +02001022/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
1023 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -08001024static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001025 {
1026 .hook = br_nf_pre_routing,
1027 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001028 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001029 .hooknum = NF_BR_PRE_ROUTING,
1030 .priority = NF_BR_PRI_BRNF,
1031 },
1032 {
1033 .hook = br_nf_local_in,
1034 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001035 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001036 .hooknum = NF_BR_LOCAL_IN,
1037 .priority = NF_BR_PRI_BRNF,
1038 },
1039 {
1040 .hook = br_nf_forward_ip,
1041 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001042 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001043 .hooknum = NF_BR_FORWARD,
1044 .priority = NF_BR_PRI_BRNF - 1,
1045 },
1046 {
1047 .hook = br_nf_forward_arp,
1048 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001049 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001050 .hooknum = NF_BR_FORWARD,
1051 .priority = NF_BR_PRI_BRNF,
1052 },
1053 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001054 .hook = br_nf_post_routing,
1055 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001056 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001057 .hooknum = NF_BR_POST_ROUTING,
1058 .priority = NF_BR_PRI_LAST,
1059 },
1060 {
1061 .hook = ip_sabotage_in,
1062 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001063 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001064 .hooknum = NF_INET_PRE_ROUTING,
1065 .priority = NF_IP_PRI_FIRST,
1066 },
1067 {
1068 .hook = ip_sabotage_in,
1069 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001070 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001071 .hooknum = NF_INET_PRE_ROUTING,
1072 .priority = NF_IP6_PRI_FIRST,
1073 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074};
1075
1076#ifdef CONFIG_SYSCTL
1077static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001078int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001079 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080{
1081 int ret;
1082
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001083 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
1085 if (write && *(int *)(ctl->data))
1086 *(int *)(ctl->data) = 1;
1087 return ret;
1088}
1089
Joe Perchesfe2c6332013-06-11 23:04:25 -07001090static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092 .procname = "bridge-nf-call-arptables",
1093 .data = &brnf_call_arptables,
1094 .maxlen = sizeof(int),
1095 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001096 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 },
1098 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 .procname = "bridge-nf-call-iptables",
1100 .data = &brnf_call_iptables,
1101 .maxlen = sizeof(int),
1102 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001103 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104 },
1105 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 .procname = "bridge-nf-call-ip6tables",
1107 .data = &brnf_call_ip6tables,
1108 .maxlen = sizeof(int),
1109 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001110 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 },
1112 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 .procname = "bridge-nf-filter-vlan-tagged",
1114 .data = &brnf_filter_vlan_tagged,
1115 .maxlen = sizeof(int),
1116 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001117 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 },
Michael Milner516299d2007-04-12 22:14:23 -07001119 {
Michael Milner516299d2007-04-12 22:14:23 -07001120 .procname = "bridge-nf-filter-pppoe-tagged",
1121 .data = &brnf_filter_pppoe_tagged,
1122 .maxlen = sizeof(int),
1123 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001124 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001125 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001126 {
1127 .procname = "bridge-nf-pass-vlan-input-dev",
1128 .data = &brnf_pass_vlan_indev,
1129 .maxlen = sizeof(int),
1130 .mode = 0644,
1131 .proc_handler = brnf_sysctl_call_tables,
1132 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001133 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135#endif
1136
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001137static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001139 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001141 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001142 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001144
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001146 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001148 printk(KERN_WARNING
1149 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001150 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1151 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 }
1153#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001154 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001155 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 return 0;
1157}
1158
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001159static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001161 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001162 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001164 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001167
1168module_init(br_netfilter_init);
1169module_exit(br_netfilter_fini);
1170
1171MODULE_LICENSE("GPL");
1172MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1173MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1174MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");