blob: e41456bd3cc6bb6c374fff4ef76afe6326283732 [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>
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include "br_private.h"
41#ifdef CONFIG_SYSCTL
42#include <linux/sysctl.h>
43#endif
44
45#define skb_origaddr(skb) (((struct bridge_skb_cb *) \
46 (skb->nf_bridge->data))->daddr.ipv4)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070047#define store_orig_dstaddr(skb) (skb_origaddr(skb) = ip_hdr(skb)->daddr)
48#define dnat_took_place(skb) (skb_origaddr(skb) != ip_hdr(skb)->daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifdef CONFIG_SYSCTL
51static struct ctl_table_header *brnf_sysctl_header;
Brian Haley9c1ea142006-09-18 00:03:41 -070052static int brnf_call_iptables __read_mostly = 1;
53static int brnf_call_ip6tables __read_mostly = 1;
54static int brnf_call_arptables __read_mostly = 1;
Herbert Xu47e0e1c2009-01-12 00:06:03 +000055static int brnf_filter_vlan_tagged __read_mostly = 0;
56static int brnf_filter_pppoe_tagged __read_mostly = 0;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020057static int brnf_pass_vlan_indev __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
Patrick McHardy4df53d82010-07-02 09:32:57 +020059#define brnf_call_iptables 1
60#define brnf_call_ip6tables 1
61#define brnf_call_arptables 1
Herbert Xu47e0e1c2009-01-12 00:06:03 +000062#define brnf_filter_vlan_tagged 0
63#define brnf_filter_pppoe_tagged 0
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020064#define brnf_pass_vlan_indev 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Florian Westphal739e4502012-03-06 01:22:54 +000067#define IS_IP(skb) \
68 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
69
70#define IS_IPV6(skb) \
71 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
72
73#define IS_ARP(skb) \
74 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
75
Dave Jonesb6f99a22007-03-22 12:27:49 -070076static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080077{
Jesse Gross13937912010-10-20 13:56:01 +000078 if (vlan_tx_tag_present(skb))
79 return skb->protocol;
80 else if (skb->protocol == htons(ETH_P_8021Q))
81 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
82 else
83 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080084}
85
86#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000087 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080088 brnf_filter_vlan_tagged)
89
90#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000091 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080092 brnf_filter_vlan_tagged)
93
94#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000095 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080096 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Michael Milner516299d2007-04-12 22:14:23 -070098static inline __be16 pppoe_proto(const struct sk_buff *skb)
99{
100 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
101 sizeof(struct pppoe_hdr)));
102}
103
104#define IS_PPPOE_IP(skb) \
105 (skb->protocol == htons(ETH_P_PPP_SES) && \
106 pppoe_proto(skb) == htons(PPP_IP) && \
107 brnf_filter_pppoe_tagged)
108
109#define IS_PPPOE_IPV6(skb) \
110 (skb->protocol == htons(ETH_P_PPP_SES) && \
111 pppoe_proto(skb) == htons(PPP_IPV6) && \
112 brnf_filter_pppoe_tagged)
113
Herbert Xu631339f2008-11-24 16:06:50 -0800114static void fake_update_pmtu(struct dst_entry *dst, u32 mtu)
115{
116}
117
Alexander Holler6407d742011-06-07 00:51:35 -0700118static u32 *fake_cow_metrics(struct dst_entry *dst, unsigned long old)
119{
120 return NULL;
121}
122
David S. Millerd3aaeb32011-07-18 00:40:17 -0700123static struct neighbour *fake_neigh_lookup(const struct dst_entry *dst, const void *daddr)
124{
125 return NULL;
126}
127
Eric Dumazeta13861a2011-12-21 20:00:32 +0000128static unsigned int fake_mtu(const struct dst_entry *dst)
129{
130 return dst->dev->mtu;
131}
132
Herbert Xu631339f2008-11-24 16:06:50 -0800133static struct dst_ops fake_dst_ops = {
134 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800135 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800136 .update_pmtu = fake_update_pmtu,
Alexander Holler6407d742011-06-07 00:51:35 -0700137 .cow_metrics = fake_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700138 .neigh_lookup = fake_neigh_lookup,
Eric Dumazeta13861a2011-12-21 20:00:32 +0000139 .mtu = fake_mtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800140};
141
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700142/*
143 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 * Currently, we fill in the PMTU entry because netfilter
145 * refragmentation needs it, and the rt_flags entry because
146 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700147 * require us to fill additional fields.
148 */
Eric Dumazet33eb9872011-05-24 13:32:18 -0400149static const u32 br_dst_default_metrics[RTAX_MAX] = {
150 [RTAX_MTU - 1] = 1500,
151};
152
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700153void br_netfilter_rtable_init(struct net_bridge *br)
154{
155 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Changli Gaod8d1f302010-06-10 23:31:35 -0700157 atomic_set(&rt->dst.__refcnt, 1);
158 rt->dst.dev = br->dev;
159 rt->dst.path = &rt->dst;
Eric Dumazet33eb9872011-05-24 13:32:18 -0400160 dst_init_metrics(&rt->dst, br_dst_default_metrics, true);
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000161 rt->dst.flags = DST_NOXFRM | DST_NOPEER | DST_FAKE_RTABLE;
Changli Gaod8d1f302010-06-10 23:31:35 -0700162 rt->dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700163}
164
165static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
166{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000167 struct net_bridge_port *port;
168
169 port = br_port_get_rcu(dev);
170 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700171}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800173static inline struct net_device *bridge_parent(const struct net_device *dev)
174{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000175 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800176
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000177 port = br_port_get_rcu(dev);
178 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800179}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800181static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
182{
183 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
184 if (likely(skb->nf_bridge))
185 atomic_set(&(skb->nf_bridge->use), 1);
186
187 return skb->nf_bridge;
188}
189
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800190static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
191{
192 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
193
194 if (atomic_read(&nf_bridge->use) > 1) {
195 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
196
197 if (tmp) {
198 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
199 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800200 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000201 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800202 nf_bridge = tmp;
203 }
204 return nf_bridge;
205}
206
Patrick McHardyfc385822007-05-03 03:36:16 -0700207static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
208{
209 unsigned int len = nf_bridge_encap_header_len(skb);
210
211 skb_push(skb, len);
212 skb->network_header -= len;
213}
214
215static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
216{
217 unsigned int len = nf_bridge_encap_header_len(skb);
218
219 skb_pull(skb, len);
220 skb->network_header += len;
221}
222
223static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
224{
225 unsigned int len = nf_bridge_encap_header_len(skb);
226
227 skb_pull_rcsum(skb, len);
228 skb->network_header += len;
229}
230
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800231static inline void nf_bridge_save_header(struct sk_buff *skb)
232{
Patrick McHardyfc385822007-05-03 03:36:16 -0700233 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800234
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300235 skb_copy_from_linear_data_offset(skb, -header_size,
236 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800237}
238
Bart De Schuymere179e632010-04-15 12:26:39 +0200239static inline void nf_bridge_update_protocol(struct sk_buff *skb)
240{
241 if (skb->nf_bridge->mask & BRNF_8021Q)
242 skb->protocol = htons(ETH_P_8021Q);
243 else if (skb->nf_bridge->mask & BRNF_PPPoE)
244 skb->protocol = htons(ETH_P_PPP_SES);
245}
246
Bandan Das462fb2a2010-09-19 09:34:33 +0000247/* When handing a packet over to the IP layer
248 * check whether we have a skb that is in the
249 * expected format
250 */
251
stephen hemmingerd0280232010-10-18 14:03:21 +0000252static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000253{
254 struct ip_options *opt;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000255 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000256 struct net_device *dev = skb->dev;
257 u32 len;
258
259 iph = ip_hdr(skb);
260 opt = &(IPCB(skb)->opt);
261
262 /* Basic sanity checks */
263 if (iph->ihl < 5 || iph->version != 4)
264 goto inhdr_error;
265
266 if (!pskb_may_pull(skb, iph->ihl*4))
267 goto inhdr_error;
268
269 iph = ip_hdr(skb);
270 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
271 goto inhdr_error;
272
273 len = ntohs(iph->tot_len);
274 if (skb->len < len) {
275 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
276 goto drop;
277 } else if (len < (iph->ihl*4))
278 goto inhdr_error;
279
280 if (pskb_trim_rcsum(skb, len)) {
281 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
282 goto drop;
283 }
284
Eric Dumazetf8e98812011-04-12 13:39:14 -0700285 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
286 if (iph->ihl == 5)
Bandan Das462fb2a2010-09-19 09:34:33 +0000287 return 0;
Bandan Das462fb2a2010-09-19 09:34:33 +0000288
289 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
290 if (ip_options_compile(dev_net(dev), opt, skb))
291 goto inhdr_error;
292
293 /* Check correct handling of SRR option */
294 if (unlikely(opt->srr)) {
295 struct in_device *in_dev = __in_dev_get_rcu(dev);
296 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
297 goto drop;
298
299 if (ip_options_rcv_srr(skb))
300 goto drop;
301 }
302
303 return 0;
304
305inhdr_error:
306 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
307drop:
308 return -1;
309}
310
Bart De Schuymere179e632010-04-15 12:26:39 +0200311/* Fill in the header for fragmented IP packets handled by
312 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700313 */
314int nf_bridge_copy_header(struct sk_buff *skb)
315{
316 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200317 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700318
Bart De Schuymere179e632010-04-15 12:26:39 +0200319 nf_bridge_update_protocol(skb);
320 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700321 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700322 if (err)
323 return err;
324
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300325 skb_copy_to_linear_data_offset(skb, -header_size,
326 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700327 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700328 return 0;
329}
330
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331/* PF_BRIDGE/PRE_ROUTING *********************************************/
332/* Undo the changes made for ip6tables PREROUTING and continue the
333 * bridge PRE_ROUTING hook. */
334static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
335{
336 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000337 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 if (nf_bridge->mask & BRNF_PKT_TYPE) {
340 skb->pkt_type = PACKET_OTHERHOST;
341 nf_bridge->mask ^= BRNF_PKT_TYPE;
342 }
343 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
344
Eric Dumazet511c3f92009-06-02 05:14:27 +0000345 rt = bridge_parent_rtable(nf_bridge->physindev);
346 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700347 kfree_skb(skb);
348 return 0;
349 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200350 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
352 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200353 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700354 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100355 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 br_handle_frame_finish, 1);
357
358 return 0;
359}
360
Bart De Schuymere179e632010-04-15 12:26:39 +0200361/* Obtain the correct destination MAC address, while preserving the original
362 * source MAC address. If we already know this address, we just copy it. If we
363 * don't, we use the neighbour framework to find out. In both cases, we make
364 * sure that br_handle_frame_finish() is called afterwards.
365 */
366static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
367{
368 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700369 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200370 struct dst_entry *dst;
371
372 skb->dev = bridge_parent(skb->dev);
373 if (!skb->dev)
374 goto free_skb;
375 dst = skb_dst(skb);
David Miller27217452011-12-02 16:52:08 +0000376 neigh = dst_get_neighbour_noref(dst);
David S. Millerf6b72b62011-07-14 07:53:20 -0700377 if (neigh->hh.hh_len) {
378 neigh_hh_bridge(&neigh->hh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200379 skb->dev = nf_bridge->physindev;
380 return br_handle_frame_finish(skb);
David S. Miller8f40b162011-07-17 13:34:11 -0700381 } else {
Bart De Schuymere179e632010-04-15 12:26:39 +0200382 /* the neighbour function below overwrites the complete
383 * MAC header, so we save the Ethernet source address and
384 * protocol number. */
385 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
386 /* tell br_dev_xmit to continue with forwarding */
387 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
David S. Miller8f40b162011-07-17 13:34:11 -0700388 return neigh->output(neigh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200389 }
390free_skb:
391 kfree_skb(skb);
392 return 0;
393}
394
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200396 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 *
398 * There are two cases to consider:
399 * 1. The packet was DNAT'ed to a device in the same bridge
400 * port group as it was received on. We can still bridge
401 * the packet.
402 * 2. The packet was DNAT'ed to a different device, either
403 * a non-bridged device or another bridge port group.
404 * The packet will need to be routed.
405 *
406 * The correct way of distinguishing between these two cases is to
407 * call ip_route_input() and to look at skb->dst->dev, which is
408 * changed to the destination device if ip_route_input() succeeds.
409 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200410 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200412 * If the output device equals the logical bridge device the packet
413 * came in on, we can consider this bridging. The corresponding MAC
414 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 * Otherwise, the packet is considered to be routed and we just
416 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800417 * later be passed up to the IP stack to be routed. For a redirected
418 * packet, ip_route_input() will give back the localhost as output device,
419 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200421 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800423 * This can be because the destination address is martian, in which case
424 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200425 * If IP forwarding is disabled, ip_route_input() will fail, while
426 * ip_route_output_key() can return success. The source
427 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200429 * if IP forwarding is enabled. If the output device equals the logical bridge
430 * device, we proceed as if ip_route_input() succeeded. If it differs from the
431 * logical bridge port or if ip_route_output_key() fails we drop the packet.
432 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433static int br_nf_pre_routing_finish(struct sk_buff *skb)
434{
435 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700436 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000438 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800439 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 if (nf_bridge->mask & BRNF_PKT_TYPE) {
442 skb->pkt_type = PACKET_OTHERHOST;
443 nf_bridge->mask ^= BRNF_PKT_TYPE;
444 }
445 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800447 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200448 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800449
450 /* If err equals -EHOSTUNREACH the error is due to a
451 * martian destination or due to the fact that
452 * forwarding is disabled. For most martian packets,
453 * ip_route_output_key() will fail. It won't fail for 2 types of
454 * martian destinations: loopback destinations and destination
455 * 0.0.0.0. In both cases the packet will be dropped because the
456 * destination is the loopback device and not the bridge. */
457 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
458 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459
David S. Miller78fbfd82011-03-12 00:00:52 -0500460 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
461 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800462 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700463 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800464 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800465 if (rt->dst.dev == dev) {
466 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 goto bridged_dnat;
468 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800469 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800471free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 kfree_skb(skb);
473 return 0;
474 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000475 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200478 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700479 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100480 NF_HOOK_THRESH(NFPROTO_BRIDGE,
481 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 skb, skb->dev, NULL,
483 br_nf_pre_routing_finish_bridge,
484 1);
485 return 0;
486 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800487 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 skb->pkt_type = PACKET_HOST;
489 }
490 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000491 rt = bridge_parent_rtable(nf_bridge->physindev);
492 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700493 kfree_skb(skb);
494 return 0;
495 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200496 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 }
498
499 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200500 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700501 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100502 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 br_handle_frame_finish, 1);
504
505 return 0;
506}
507
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200508static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
509{
510 struct net_device *vlan, *br;
511
512 br = bridge_parent(dev);
513 if (brnf_pass_vlan_indev == 0 || !vlan_tx_tag_present(skb))
514 return br;
515
516 vlan = __vlan_find_dev_deep(br, vlan_tx_tag_get(skb) & VLAN_VID_MASK);
517
518 return vlan ? vlan : br;
519}
520
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800522static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523{
524 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
525
526 if (skb->pkt_type == PACKET_OTHERHOST) {
527 skb->pkt_type = PACKET_HOST;
528 nf_bridge->mask |= BRNF_PKT_TYPE;
529 }
530
531 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
532 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200533 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200534 if (skb->protocol == htons(ETH_P_8021Q))
535 nf_bridge->mask |= BRNF_8021Q;
536 else if (skb->protocol == htons(ETH_P_PPP_SES))
537 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800538
539 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540}
541
542/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
543static int check_hbh_len(struct sk_buff *skb)
544{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700545 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700547 const unsigned char *nh = skb_network_header(skb);
548 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800549 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if ((raw + len) - skb->data > skb_headlen(skb))
552 goto bad;
553
554 off += 2;
555 len -= 2;
556
557 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700558 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700560 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000561 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 optlen = 1;
563 break;
564
565 case IPV6_TLV_PADN:
566 break;
567
568 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700569 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700571 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800572 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700573 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800574 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
576 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800577 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800578 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800579 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700580 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 break;
582 default:
583 if (optlen > len)
584 goto bad;
585 break;
586 }
587 off += optlen;
588 len -= optlen;
589 }
590 if (len == 0)
591 return 0;
592bad:
593 return -1;
594
595}
596
597/* Replicate the checks that IPv6 does on packet reception and pass the packet
598 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
599static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800600 struct sk_buff *skb,
601 const struct net_device *in,
602 const struct net_device *out,
603 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000605 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000609 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
611 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000612 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700614 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615
616 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000617 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
619 pkt_len = ntohs(hdr->payload_len);
620
621 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
622 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000623 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700624 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000625 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 }
627 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000628 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800630 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800631 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800633 if (!setup_pre_routing(skb))
634 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
Bart De Schuymere179e632010-04-15 12:26:39 +0200636 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100637 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 br_nf_pre_routing_finish_ipv6);
639
640 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641}
642
643/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
644 * Replicate the checks that IPv4 does on packet reception.
645 * Set skb->dev to the bridge device (i.e. parent of the
646 * receiving device) to make netfilter happy, the REDIRECT
647 * target in particular. Save the original destination IP
648 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700649static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800650 const struct net_device *in,
651 const struct net_device *out,
652 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200654 struct net_bridge_port *p;
655 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700656 __u32 len = nf_bridge_encap_header_len(skb);
657
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700658 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000659 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
David S. Millere490c1de2010-07-02 22:42:06 -0700661 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200662 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000663 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200664 br = p->br;
665
Florian Westphal739e4502012-03-06 01:22:54 +0000666 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200667 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200669
Patrick McHardyfc385822007-05-03 03:36:16 -0700670 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
672 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200673
674 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Florian Westphal739e4502012-03-06 01:22:54 +0000677 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 return NF_ACCEPT;
679
Patrick McHardyfc385822007-05-03 03:36:16 -0700680 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
Bandan Das462fb2a2010-09-19 09:34:33 +0000682 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000683 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000684
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800685 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800686 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800688 if (!setup_pre_routing(skb))
689 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200691 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100693 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 br_nf_pre_routing_finish);
695
696 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
699
700/* PF_BRIDGE/LOCAL_IN ************************************************/
701/* The packet is locally destined, which requires a real
702 * dst_entry, so detach the fake one. On the way up, the
703 * packet would pass through PRE_ROUTING again (which already
704 * took place when the packet entered the bridge), but we
705 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
706 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700707static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800708 const struct net_device *in,
709 const struct net_device *out,
710 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000712 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return NF_ACCEPT;
714}
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716/* PF_BRIDGE/FORWARD *************************************************/
717static int br_nf_forward_finish(struct sk_buff *skb)
718{
719 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
720 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
Florian Westphal739e4502012-03-06 01:22:54 +0000722 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 in = nf_bridge->physindev;
724 if (nf_bridge->mask & BRNF_PKT_TYPE) {
725 skb->pkt_type = PACKET_OTHERHOST;
726 nf_bridge->mask ^= BRNF_PKT_TYPE;
727 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200728 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 } else {
730 in = *((struct net_device **)(skb->cb));
731 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700732 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200733
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100734 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800735 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737}
738
Florian Westphal739e4502012-03-06 01:22:54 +0000739
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740/* This is the 'purely bridged' case. For IP, we pass the packet to
741 * netfilter with indev and outdev set to the bridge device,
742 * but we are still able to filter on the 'real' indev/outdev
743 * because of the physdev module. For ARP, indev and outdev are the
744 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700745static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800746 const struct net_device *in,
747 const struct net_device *out,
748 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800751 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200752 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
754 if (!skb->nf_bridge)
755 return NF_ACCEPT;
756
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800757 /* Need exclusive nf_bridge_info since we might have multiple
758 * different physoutdevs. */
759 if (!nf_bridge_unshare(skb))
760 return NF_DROP;
761
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800762 parent = bridge_parent(out);
763 if (!parent)
764 return NF_DROP;
765
Florian Westphal739e4502012-03-06 01:22:54 +0000766 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 pf = PF_INET;
Florian Westphal739e4502012-03-06 01:22:54 +0000768 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000770 else
771 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
Herbert Xu3db05fe2007-10-15 00:53:15 -0700773 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 nf_bridge = skb->nf_bridge;
776 if (skb->pkt_type == PACKET_OTHERHOST) {
777 skb->pkt_type = PACKET_HOST;
778 nf_bridge->mask |= BRNF_PKT_TYPE;
779 }
780
Stephen Hemmingercb685522011-05-13 16:03:24 -0400781 if (pf == PF_INET && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000782 return NF_DROP;
783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 /* The physdev module checks on this */
785 nf_bridge->mask |= BRNF_BRIDGED;
786 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200787 if (pf == PF_INET)
788 skb->protocol = htons(ETH_P_IP);
789 else
790 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200792 NF_HOOK(pf, NF_INET_FORWARD, skb, brnf_get_logical_dev(skb, in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800793 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
795 return NF_STOLEN;
796}
797
Herbert Xu3db05fe2007-10-15 00:53:15 -0700798static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800799 const struct net_device *in,
800 const struct net_device *out,
801 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200803 struct net_bridge_port *p;
804 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 struct net_device **d = (struct net_device **)(skb->cb);
806
David S. Millere490c1de2010-07-02 22:42:06 -0700807 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200808 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200810 br = p->br;
811
812 if (!brnf_call_arptables && !br->nf_call_arptables)
813 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814
Florian Westphal739e4502012-03-06 01:22:54 +0000815 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800816 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700818 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 }
820
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300821 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700822 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700823 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return NF_ACCEPT;
825 }
826 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700827 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 (struct net_device *)out, br_nf_forward_finish);
829
830 return NF_STOLEN;
831}
832
Igor Maraviće6373c42011-12-12 02:58:25 +0000833#if IS_ENABLED(CONFIG_NF_CONNTRACK_IPV4)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700834static int br_nf_dev_queue_xmit(struct sk_buff *skb)
835{
Bandan Das462fb2a2010-09-19 09:34:33 +0000836 int ret;
837
Bart De Schuymere179e632010-04-15 12:26:39 +0200838 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200839 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700840 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000841 if (br_parse_ip_options(skb))
842 /* Drop invalid packet */
843 return NF_DROP;
844 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700845 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000846 ret = br_dev_queue_push_xmit(skb);
847
848 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700849}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200850#else
851static int br_nf_dev_queue_xmit(struct sk_buff *skb)
852{
853 return br_dev_queue_push_xmit(skb);
854}
855#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
857/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700858static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800859 const struct net_device *in,
860 const struct net_device *out,
861 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700863 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200865 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200867 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800868 return NF_ACCEPT;
869
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800870 if (!realoutdev)
871 return NF_DROP;
872
Florian Westphal739e4502012-03-06 01:22:54 +0000873 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 pf = PF_INET;
Florian Westphal739e4502012-03-06 01:22:54 +0000875 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000877 else
878 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
881 * about the value of skb->pkt_type. */
882 if (skb->pkt_type == PACKET_OTHERHOST) {
883 skb->pkt_type = PACKET_HOST;
884 nf_bridge->mask |= BRNF_PKT_TYPE;
885 }
886
Patrick McHardyfc385822007-05-03 03:36:16 -0700887 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200889 if (pf == PF_INET)
890 skb->protocol = htons(ETH_P_IP);
891 else
892 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800894 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700895 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
897 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898}
899
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900/* IP/SABOTAGE *****************************************************/
901/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
902 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700903static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800904 const struct net_device *in,
905 const struct net_device *out,
906 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700908 if (skb->nf_bridge &&
909 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 return NF_STOP;
911 }
912
913 return NF_ACCEPT;
914}
915
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200916/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
917 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800918static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000919 {
920 .hook = br_nf_pre_routing,
921 .owner = THIS_MODULE,
922 .pf = PF_BRIDGE,
923 .hooknum = NF_BR_PRE_ROUTING,
924 .priority = NF_BR_PRI_BRNF,
925 },
926 {
927 .hook = br_nf_local_in,
928 .owner = THIS_MODULE,
929 .pf = PF_BRIDGE,
930 .hooknum = NF_BR_LOCAL_IN,
931 .priority = NF_BR_PRI_BRNF,
932 },
933 {
934 .hook = br_nf_forward_ip,
935 .owner = THIS_MODULE,
936 .pf = PF_BRIDGE,
937 .hooknum = NF_BR_FORWARD,
938 .priority = NF_BR_PRI_BRNF - 1,
939 },
940 {
941 .hook = br_nf_forward_arp,
942 .owner = THIS_MODULE,
943 .pf = PF_BRIDGE,
944 .hooknum = NF_BR_FORWARD,
945 .priority = NF_BR_PRI_BRNF,
946 },
947 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000948 .hook = br_nf_post_routing,
949 .owner = THIS_MODULE,
950 .pf = PF_BRIDGE,
951 .hooknum = NF_BR_POST_ROUTING,
952 .priority = NF_BR_PRI_LAST,
953 },
954 {
955 .hook = ip_sabotage_in,
956 .owner = THIS_MODULE,
957 .pf = PF_INET,
958 .hooknum = NF_INET_PRE_ROUTING,
959 .priority = NF_IP_PRI_FIRST,
960 },
961 {
962 .hook = ip_sabotage_in,
963 .owner = THIS_MODULE,
964 .pf = PF_INET6,
965 .hooknum = NF_INET_PRE_ROUTING,
966 .priority = NF_IP6_PRI_FIRST,
967 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968};
969
970#ifdef CONFIG_SYSCTL
971static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700972int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800973 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974{
975 int ret;
976
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700977 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978
979 if (write && *(int *)(ctl->data))
980 *(int *)(ctl->data) = 1;
981 return ret;
982}
983
984static ctl_table brnf_table[] = {
985 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 .procname = "bridge-nf-call-arptables",
987 .data = &brnf_call_arptables,
988 .maxlen = sizeof(int),
989 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800990 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 },
992 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 .procname = "bridge-nf-call-iptables",
994 .data = &brnf_call_iptables,
995 .maxlen = sizeof(int),
996 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800997 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 },
999 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 .procname = "bridge-nf-call-ip6tables",
1001 .data = &brnf_call_ip6tables,
1002 .maxlen = sizeof(int),
1003 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001004 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 },
1006 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007 .procname = "bridge-nf-filter-vlan-tagged",
1008 .data = &brnf_filter_vlan_tagged,
1009 .maxlen = sizeof(int),
1010 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001011 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 },
Michael Milner516299d2007-04-12 22:14:23 -07001013 {
Michael Milner516299d2007-04-12 22:14:23 -07001014 .procname = "bridge-nf-filter-pppoe-tagged",
1015 .data = &brnf_filter_pppoe_tagged,
1016 .maxlen = sizeof(int),
1017 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001018 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001019 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001020 {
1021 .procname = "bridge-nf-pass-vlan-input-dev",
1022 .data = &brnf_pass_vlan_indev,
1023 .maxlen = sizeof(int),
1024 .mode = 0644,
1025 .proc_handler = brnf_sysctl_call_tables,
1026 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001027 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029#endif
1030
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001031int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001033 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
Eric Dumazetfc66f952010-10-08 06:37:34 +00001035 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001036 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001038
1039 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1040 if (ret < 0) {
1041 dst_entries_destroy(&fake_dst_ops);
1042 return ret;
1043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001045 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001047 printk(KERN_WARNING
1048 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001049 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001050 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001051 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 }
1053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 return 0;
1056}
1057
1058void br_netfilter_fini(void)
1059{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001060 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001062 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001064 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065}