blob: dec4f3817133c879b524a65f0919b5dabcff46ea [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;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057#else
Patrick McHardy4df53d82010-07-02 09:32:57 +020058#define brnf_call_iptables 1
59#define brnf_call_ip6tables 1
60#define brnf_call_arptables 1
Herbert Xu47e0e1c2009-01-12 00:06:03 +000061#define brnf_filter_vlan_tagged 0
62#define brnf_filter_pppoe_tagged 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#endif
64
Florian Westphal739e4502012-03-06 01:22:54 +000065#define IS_IP(skb) \
66 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
67
68#define IS_IPV6(skb) \
69 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
70
71#define IS_ARP(skb) \
72 (!vlan_tx_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
73
Dave Jonesb6f99a22007-03-22 12:27:49 -070074static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080075{
Jesse Gross13937912010-10-20 13:56:01 +000076 if (vlan_tx_tag_present(skb))
77 return skb->protocol;
78 else if (skb->protocol == htons(ETH_P_8021Q))
79 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
80 else
81 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080082}
83
84#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000085 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080086 brnf_filter_vlan_tagged)
87
88#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000089 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080090 brnf_filter_vlan_tagged)
91
92#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000093 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080094 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
Michael Milner516299d2007-04-12 22:14:23 -070096static inline __be16 pppoe_proto(const struct sk_buff *skb)
97{
98 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
99 sizeof(struct pppoe_hdr)));
100}
101
102#define IS_PPPOE_IP(skb) \
103 (skb->protocol == htons(ETH_P_PPP_SES) && \
104 pppoe_proto(skb) == htons(PPP_IP) && \
105 brnf_filter_pppoe_tagged)
106
107#define IS_PPPOE_IPV6(skb) \
108 (skb->protocol == htons(ETH_P_PPP_SES) && \
109 pppoe_proto(skb) == htons(PPP_IPV6) && \
110 brnf_filter_pppoe_tagged)
111
Herbert Xu631339f2008-11-24 16:06:50 -0800112static void fake_update_pmtu(struct dst_entry *dst, u32 mtu)
113{
114}
115
Alexander Holler6407d742011-06-07 00:51:35 -0700116static u32 *fake_cow_metrics(struct dst_entry *dst, unsigned long old)
117{
118 return NULL;
119}
120
David S. Millerd3aaeb32011-07-18 00:40:17 -0700121static struct neighbour *fake_neigh_lookup(const struct dst_entry *dst, const void *daddr)
122{
123 return NULL;
124}
125
Eric Dumazeta13861a2011-12-21 20:00:32 +0000126static unsigned int fake_mtu(const struct dst_entry *dst)
127{
128 return dst->dev->mtu;
129}
130
Herbert Xu631339f2008-11-24 16:06:50 -0800131static struct dst_ops fake_dst_ops = {
132 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800133 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800134 .update_pmtu = fake_update_pmtu,
Alexander Holler6407d742011-06-07 00:51:35 -0700135 .cow_metrics = fake_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700136 .neigh_lookup = fake_neigh_lookup,
Eric Dumazeta13861a2011-12-21 20:00:32 +0000137 .mtu = fake_mtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800138};
139
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700140/*
141 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * Currently, we fill in the PMTU entry because netfilter
143 * refragmentation needs it, and the rt_flags entry because
144 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700145 * require us to fill additional fields.
146 */
Eric Dumazet33eb9872011-05-24 13:32:18 -0400147static const u32 br_dst_default_metrics[RTAX_MAX] = {
148 [RTAX_MTU - 1] = 1500,
149};
150
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700151void br_netfilter_rtable_init(struct net_bridge *br)
152{
153 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Changli Gaod8d1f302010-06-10 23:31:35 -0700155 atomic_set(&rt->dst.__refcnt, 1);
156 rt->dst.dev = br->dev;
157 rt->dst.path = &rt->dst;
Eric Dumazet33eb9872011-05-24 13:32:18 -0400158 dst_init_metrics(&rt->dst, br_dst_default_metrics, true);
Eric Dumazete688a602011-12-22 04:15:53 +0000159 rt->dst.flags = DST_NOXFRM | DST_NOPEER;
Changli Gaod8d1f302010-06-10 23:31:35 -0700160 rt->dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700161}
162
163static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
164{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000165 struct net_bridge_port *port;
166
167 port = br_port_get_rcu(dev);
168 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700169}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800171static inline struct net_device *bridge_parent(const struct net_device *dev)
172{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000173 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800174
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000175 port = br_port_get_rcu(dev);
176 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800179static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
180{
181 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
182 if (likely(skb->nf_bridge))
183 atomic_set(&(skb->nf_bridge->use), 1);
184
185 return skb->nf_bridge;
186}
187
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800188static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
189{
190 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
191
192 if (atomic_read(&nf_bridge->use) > 1) {
193 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
194
195 if (tmp) {
196 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
197 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800198 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000199 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800200 nf_bridge = tmp;
201 }
202 return nf_bridge;
203}
204
Patrick McHardyfc385822007-05-03 03:36:16 -0700205static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
206{
207 unsigned int len = nf_bridge_encap_header_len(skb);
208
209 skb_push(skb, len);
210 skb->network_header -= len;
211}
212
213static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
214{
215 unsigned int len = nf_bridge_encap_header_len(skb);
216
217 skb_pull(skb, len);
218 skb->network_header += len;
219}
220
221static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
222{
223 unsigned int len = nf_bridge_encap_header_len(skb);
224
225 skb_pull_rcsum(skb, len);
226 skb->network_header += len;
227}
228
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800229static inline void nf_bridge_save_header(struct sk_buff *skb)
230{
Patrick McHardyfc385822007-05-03 03:36:16 -0700231 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800232
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300233 skb_copy_from_linear_data_offset(skb, -header_size,
234 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800235}
236
Bart De Schuymere179e632010-04-15 12:26:39 +0200237static inline void nf_bridge_update_protocol(struct sk_buff *skb)
238{
239 if (skb->nf_bridge->mask & BRNF_8021Q)
240 skb->protocol = htons(ETH_P_8021Q);
241 else if (skb->nf_bridge->mask & BRNF_PPPoE)
242 skb->protocol = htons(ETH_P_PPP_SES);
243}
244
Bandan Das462fb2a2010-09-19 09:34:33 +0000245/* When handing a packet over to the IP layer
246 * check whether we have a skb that is in the
247 * expected format
248 */
249
stephen hemmingerd0280232010-10-18 14:03:21 +0000250static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000251{
252 struct ip_options *opt;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000253 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000254 struct net_device *dev = skb->dev;
255 u32 len;
256
257 iph = ip_hdr(skb);
258 opt = &(IPCB(skb)->opt);
259
260 /* Basic sanity checks */
261 if (iph->ihl < 5 || iph->version != 4)
262 goto inhdr_error;
263
264 if (!pskb_may_pull(skb, iph->ihl*4))
265 goto inhdr_error;
266
267 iph = ip_hdr(skb);
268 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
269 goto inhdr_error;
270
271 len = ntohs(iph->tot_len);
272 if (skb->len < len) {
273 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
274 goto drop;
275 } else if (len < (iph->ihl*4))
276 goto inhdr_error;
277
278 if (pskb_trim_rcsum(skb, len)) {
279 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
280 goto drop;
281 }
282
Eric Dumazetf8e98812011-04-12 13:39:14 -0700283 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
284 if (iph->ihl == 5)
Bandan Das462fb2a2010-09-19 09:34:33 +0000285 return 0;
Bandan Das462fb2a2010-09-19 09:34:33 +0000286
287 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
288 if (ip_options_compile(dev_net(dev), opt, skb))
289 goto inhdr_error;
290
291 /* Check correct handling of SRR option */
292 if (unlikely(opt->srr)) {
293 struct in_device *in_dev = __in_dev_get_rcu(dev);
294 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
295 goto drop;
296
297 if (ip_options_rcv_srr(skb))
298 goto drop;
299 }
300
301 return 0;
302
303inhdr_error:
304 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
305drop:
306 return -1;
307}
308
Bart De Schuymere179e632010-04-15 12:26:39 +0200309/* Fill in the header for fragmented IP packets handled by
310 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700311 */
312int nf_bridge_copy_header(struct sk_buff *skb)
313{
314 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200315 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700316
Bart De Schuymere179e632010-04-15 12:26:39 +0200317 nf_bridge_update_protocol(skb);
318 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700319 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700320 if (err)
321 return err;
322
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300323 skb_copy_to_linear_data_offset(skb, -header_size,
324 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700325 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700326 return 0;
327}
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329/* PF_BRIDGE/PRE_ROUTING *********************************************/
330/* Undo the changes made for ip6tables PREROUTING and continue the
331 * bridge PRE_ROUTING hook. */
332static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
333{
334 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000335 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (nf_bridge->mask & BRNF_PKT_TYPE) {
338 skb->pkt_type = PACKET_OTHERHOST;
339 nf_bridge->mask ^= BRNF_PKT_TYPE;
340 }
341 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
342
Eric Dumazet511c3f92009-06-02 05:14:27 +0000343 rt = bridge_parent_rtable(nf_bridge->physindev);
344 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700345 kfree_skb(skb);
346 return 0;
347 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200348 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200351 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700352 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100353 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 br_handle_frame_finish, 1);
355
356 return 0;
357}
358
Bart De Schuymere179e632010-04-15 12:26:39 +0200359/* Obtain the correct destination MAC address, while preserving the original
360 * source MAC address. If we already know this address, we just copy it. If we
361 * don't, we use the neighbour framework to find out. In both cases, we make
362 * sure that br_handle_frame_finish() is called afterwards.
363 */
364static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
365{
366 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700367 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200368 struct dst_entry *dst;
369
370 skb->dev = bridge_parent(skb->dev);
371 if (!skb->dev)
372 goto free_skb;
373 dst = skb_dst(skb);
David Miller27217452011-12-02 16:52:08 +0000374 neigh = dst_get_neighbour_noref(dst);
David S. Millerf6b72b62011-07-14 07:53:20 -0700375 if (neigh->hh.hh_len) {
376 neigh_hh_bridge(&neigh->hh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200377 skb->dev = nf_bridge->physindev;
378 return br_handle_frame_finish(skb);
David S. Miller8f40b162011-07-17 13:34:11 -0700379 } else {
Bart De Schuymere179e632010-04-15 12:26:39 +0200380 /* the neighbour function below overwrites the complete
381 * MAC header, so we save the Ethernet source address and
382 * protocol number. */
383 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
384 /* tell br_dev_xmit to continue with forwarding */
385 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
David S. Miller8f40b162011-07-17 13:34:11 -0700386 return neigh->output(neigh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200387 }
388free_skb:
389 kfree_skb(skb);
390 return 0;
391}
392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200394 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
396 * There are two cases to consider:
397 * 1. The packet was DNAT'ed to a device in the same bridge
398 * port group as it was received on. We can still bridge
399 * the packet.
400 * 2. The packet was DNAT'ed to a different device, either
401 * a non-bridged device or another bridge port group.
402 * The packet will need to be routed.
403 *
404 * The correct way of distinguishing between these two cases is to
405 * call ip_route_input() and to look at skb->dst->dev, which is
406 * changed to the destination device if ip_route_input() succeeds.
407 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200408 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200410 * If the output device equals the logical bridge device the packet
411 * came in on, we can consider this bridging. The corresponding MAC
412 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 * Otherwise, the packet is considered to be routed and we just
414 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800415 * later be passed up to the IP stack to be routed. For a redirected
416 * packet, ip_route_input() will give back the localhost as output device,
417 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200419 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800421 * This can be because the destination address is martian, in which case
422 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200423 * If IP forwarding is disabled, ip_route_input() will fail, while
424 * ip_route_output_key() can return success. The source
425 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200427 * if IP forwarding is enabled. If the output device equals the logical bridge
428 * device, we proceed as if ip_route_input() succeeded. If it differs from the
429 * logical bridge port or if ip_route_output_key() fails we drop the packet.
430 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431static int br_nf_pre_routing_finish(struct sk_buff *skb)
432{
433 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700434 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000436 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800437 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 if (nf_bridge->mask & BRNF_PKT_TYPE) {
440 skb->pkt_type = PACKET_OTHERHOST;
441 nf_bridge->mask ^= BRNF_PKT_TYPE;
442 }
443 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800445 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200446 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800447
448 /* If err equals -EHOSTUNREACH the error is due to a
449 * martian destination or due to the fact that
450 * forwarding is disabled. For most martian packets,
451 * ip_route_output_key() will fail. It won't fail for 2 types of
452 * martian destinations: loopback destinations and destination
453 * 0.0.0.0. In both cases the packet will be dropped because the
454 * destination is the loopback device and not the bridge. */
455 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
456 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
David S. Miller78fbfd82011-03-12 00:00:52 -0500458 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
459 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800460 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700461 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800462 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800463 if (rt->dst.dev == dev) {
464 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 goto bridged_dnat;
466 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800467 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800469free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 kfree_skb(skb);
471 return 0;
472 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000473 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200476 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700477 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100478 NF_HOOK_THRESH(NFPROTO_BRIDGE,
479 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 skb, skb->dev, NULL,
481 br_nf_pre_routing_finish_bridge,
482 1);
483 return 0;
484 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800485 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 skb->pkt_type = PACKET_HOST;
487 }
488 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000489 rt = bridge_parent_rtable(nf_bridge->physindev);
490 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700491 kfree_skb(skb);
492 return 0;
493 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200494 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 }
496
497 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200498 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700499 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100500 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 br_handle_frame_finish, 1);
502
503 return 0;
504}
505
506/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800507static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508{
509 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
510
511 if (skb->pkt_type == PACKET_OTHERHOST) {
512 skb->pkt_type = PACKET_HOST;
513 nf_bridge->mask |= BRNF_PKT_TYPE;
514 }
515
516 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
517 nf_bridge->physindev = skb->dev;
518 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200519 if (skb->protocol == htons(ETH_P_8021Q))
520 nf_bridge->mask |= BRNF_8021Q;
521 else if (skb->protocol == htons(ETH_P_PPP_SES))
522 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800523
524 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525}
526
527/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
528static int check_hbh_len(struct sk_buff *skb)
529{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700530 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700532 const unsigned char *nh = skb_network_header(skb);
533 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800534 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
536 if ((raw + len) - skb->data > skb_headlen(skb))
537 goto bad;
538
539 off += 2;
540 len -= 2;
541
542 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700543 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700545 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 case IPV6_TLV_PAD0:
547 optlen = 1;
548 break;
549
550 case IPV6_TLV_PADN:
551 break;
552
553 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700554 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700556 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800557 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700558 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800559 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
561 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800562 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800563 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800564 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700565 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 break;
567 default:
568 if (optlen > len)
569 goto bad;
570 break;
571 }
572 off += optlen;
573 len -= optlen;
574 }
575 if (len == 0)
576 return 0;
577bad:
578 return -1;
579
580}
581
582/* Replicate the checks that IPv6 does on packet reception and pass the packet
583 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
584static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800585 struct sk_buff *skb,
586 const struct net_device *in,
587 const struct net_device *out,
588 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000590 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
593 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000594 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000597 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700599 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600
601 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000602 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
604 pkt_len = ntohs(hdr->payload_len);
605
606 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
607 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000608 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700609 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000610 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 }
612 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000613 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800615 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800616 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800618 if (!setup_pre_routing(skb))
619 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620
Bart De Schuymere179e632010-04-15 12:26:39 +0200621 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100622 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 br_nf_pre_routing_finish_ipv6);
624
625 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626}
627
628/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
629 * Replicate the checks that IPv4 does on packet reception.
630 * Set skb->dev to the bridge device (i.e. parent of the
631 * receiving device) to make netfilter happy, the REDIRECT
632 * target in particular. Save the original destination IP
633 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700634static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800635 const struct net_device *in,
636 const struct net_device *out,
637 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200639 struct net_bridge_port *p;
640 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700641 __u32 len = nf_bridge_encap_header_len(skb);
642
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700643 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000644 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
David S. Millere490c1de2010-07-02 22:42:06 -0700646 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200647 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000648 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200649 br = p->br;
650
Florian Westphal739e4502012-03-06 01:22:54 +0000651 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200652 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200654
Patrick McHardyfc385822007-05-03 03:36:16 -0700655 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
657 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200658
659 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Florian Westphal739e4502012-03-06 01:22:54 +0000662 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 return NF_ACCEPT;
664
Patrick McHardyfc385822007-05-03 03:36:16 -0700665 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666
Bandan Das462fb2a2010-09-19 09:34:33 +0000667 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000668 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000669
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800670 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800671 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800673 if (!setup_pre_routing(skb))
674 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200676 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100678 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 br_nf_pre_routing_finish);
680
681 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682}
683
684
685/* PF_BRIDGE/LOCAL_IN ************************************************/
686/* The packet is locally destined, which requires a real
687 * dst_entry, so detach the fake one. On the way up, the
688 * packet would pass through PRE_ROUTING again (which already
689 * took place when the packet entered the bridge), but we
690 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
691 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700692static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800693 const struct net_device *in,
694 const struct net_device *out,
695 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000697 struct rtable *rt = skb_rtable(skb);
698
Eric Dumazetadf30902009-06-02 05:19:30 +0000699 if (rt && rt == bridge_parent_rtable(in))
700 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702 return NF_ACCEPT;
703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/* PF_BRIDGE/FORWARD *************************************************/
706static int br_nf_forward_finish(struct sk_buff *skb)
707{
708 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
709 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Florian Westphal739e4502012-03-06 01:22:54 +0000711 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 in = nf_bridge->physindev;
713 if (nf_bridge->mask & BRNF_PKT_TYPE) {
714 skb->pkt_type = PACKET_OTHERHOST;
715 nf_bridge->mask ^= BRNF_PKT_TYPE;
716 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200717 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 } else {
719 in = *((struct net_device **)(skb->cb));
720 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700721 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200722
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100723 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800724 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 return 0;
726}
727
Florian Westphal739e4502012-03-06 01:22:54 +0000728
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729/* This is the 'purely bridged' case. For IP, we pass the packet to
730 * netfilter with indev and outdev set to the bridge device,
731 * but we are still able to filter on the 'real' indev/outdev
732 * because of the physdev module. For ARP, indev and outdev are the
733 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700734static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800735 const struct net_device *in,
736 const struct net_device *out,
737 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800740 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200741 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742
743 if (!skb->nf_bridge)
744 return NF_ACCEPT;
745
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800746 /* Need exclusive nf_bridge_info since we might have multiple
747 * different physoutdevs. */
748 if (!nf_bridge_unshare(skb))
749 return NF_DROP;
750
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800751 parent = bridge_parent(out);
752 if (!parent)
753 return NF_DROP;
754
Florian Westphal739e4502012-03-06 01:22:54 +0000755 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 pf = PF_INET;
Florian Westphal739e4502012-03-06 01:22:54 +0000757 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000759 else
760 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
Herbert Xu3db05fe2007-10-15 00:53:15 -0700762 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 nf_bridge = skb->nf_bridge;
765 if (skb->pkt_type == PACKET_OTHERHOST) {
766 skb->pkt_type = PACKET_HOST;
767 nf_bridge->mask |= BRNF_PKT_TYPE;
768 }
769
Stephen Hemmingercb685522011-05-13 16:03:24 -0400770 if (pf == PF_INET && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000771 return NF_DROP;
772
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 /* The physdev module checks on this */
774 nf_bridge->mask |= BRNF_BRIDGED;
775 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200776 if (pf == PF_INET)
777 skb->protocol = htons(ETH_P_IP);
778 else
779 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800781 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800782 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
784 return NF_STOLEN;
785}
786
Herbert Xu3db05fe2007-10-15 00:53:15 -0700787static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800788 const struct net_device *in,
789 const struct net_device *out,
790 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200792 struct net_bridge_port *p;
793 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 struct net_device **d = (struct net_device **)(skb->cb);
795
David S. Millere490c1de2010-07-02 22:42:06 -0700796 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200797 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200799 br = p->br;
800
801 if (!brnf_call_arptables && !br->nf_call_arptables)
802 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Florian Westphal739e4502012-03-06 01:22:54 +0000804 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800805 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700807 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 }
809
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300810 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700811 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700812 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return NF_ACCEPT;
814 }
815 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700816 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 (struct net_device *)out, br_nf_forward_finish);
818
819 return NF_STOLEN;
820}
821
Igor Maraviće6373c42011-12-12 02:58:25 +0000822#if IS_ENABLED(CONFIG_NF_CONNTRACK_IPV4)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700823static int br_nf_dev_queue_xmit(struct sk_buff *skb)
824{
Bandan Das462fb2a2010-09-19 09:34:33 +0000825 int ret;
826
Bart De Schuymere179e632010-04-15 12:26:39 +0200827 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200828 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700829 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000830 if (br_parse_ip_options(skb))
831 /* Drop invalid packet */
832 return NF_DROP;
833 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700834 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000835 ret = br_dev_queue_push_xmit(skb);
836
837 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700838}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200839#else
840static int br_nf_dev_queue_xmit(struct sk_buff *skb)
841{
842 return br_dev_queue_push_xmit(skb);
843}
844#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
846/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700847static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800848 const struct net_device *in,
849 const struct net_device *out,
850 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700852 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200854 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200856 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800857 return NF_ACCEPT;
858
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800859 if (!realoutdev)
860 return NF_DROP;
861
Florian Westphal739e4502012-03-06 01:22:54 +0000862 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 pf = PF_INET;
Florian Westphal739e4502012-03-06 01:22:54 +0000864 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000866 else
867 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
870 * about the value of skb->pkt_type. */
871 if (skb->pkt_type == PACKET_OTHERHOST) {
872 skb->pkt_type = PACKET_HOST;
873 nf_bridge->mask |= BRNF_PKT_TYPE;
874 }
875
Patrick McHardyfc385822007-05-03 03:36:16 -0700876 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200878 if (pf == PF_INET)
879 skb->protocol = htons(ETH_P_IP);
880 else
881 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800883 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700884 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887}
888
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889/* IP/SABOTAGE *****************************************************/
890/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
891 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700892static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800893 const struct net_device *in,
894 const struct net_device *out,
895 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700897 if (skb->nf_bridge &&
898 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 return NF_STOP;
900 }
901
902 return NF_ACCEPT;
903}
904
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200905/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
906 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800907static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000908 {
909 .hook = br_nf_pre_routing,
910 .owner = THIS_MODULE,
911 .pf = PF_BRIDGE,
912 .hooknum = NF_BR_PRE_ROUTING,
913 .priority = NF_BR_PRI_BRNF,
914 },
915 {
916 .hook = br_nf_local_in,
917 .owner = THIS_MODULE,
918 .pf = PF_BRIDGE,
919 .hooknum = NF_BR_LOCAL_IN,
920 .priority = NF_BR_PRI_BRNF,
921 },
922 {
923 .hook = br_nf_forward_ip,
924 .owner = THIS_MODULE,
925 .pf = PF_BRIDGE,
926 .hooknum = NF_BR_FORWARD,
927 .priority = NF_BR_PRI_BRNF - 1,
928 },
929 {
930 .hook = br_nf_forward_arp,
931 .owner = THIS_MODULE,
932 .pf = PF_BRIDGE,
933 .hooknum = NF_BR_FORWARD,
934 .priority = NF_BR_PRI_BRNF,
935 },
936 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000937 .hook = br_nf_post_routing,
938 .owner = THIS_MODULE,
939 .pf = PF_BRIDGE,
940 .hooknum = NF_BR_POST_ROUTING,
941 .priority = NF_BR_PRI_LAST,
942 },
943 {
944 .hook = ip_sabotage_in,
945 .owner = THIS_MODULE,
946 .pf = PF_INET,
947 .hooknum = NF_INET_PRE_ROUTING,
948 .priority = NF_IP_PRI_FIRST,
949 },
950 {
951 .hook = ip_sabotage_in,
952 .owner = THIS_MODULE,
953 .pf = PF_INET6,
954 .hooknum = NF_INET_PRE_ROUTING,
955 .priority = NF_IP6_PRI_FIRST,
956 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957};
958
959#ifdef CONFIG_SYSCTL
960static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700961int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800962 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963{
964 int ret;
965
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700966 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 if (write && *(int *)(ctl->data))
969 *(int *)(ctl->data) = 1;
970 return ret;
971}
972
973static ctl_table brnf_table[] = {
974 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 .procname = "bridge-nf-call-arptables",
976 .data = &brnf_call_arptables,
977 .maxlen = sizeof(int),
978 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800979 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 },
981 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 .procname = "bridge-nf-call-iptables",
983 .data = &brnf_call_iptables,
984 .maxlen = sizeof(int),
985 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800986 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 },
988 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 .procname = "bridge-nf-call-ip6tables",
990 .data = &brnf_call_ip6tables,
991 .maxlen = sizeof(int),
992 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800993 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 },
995 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 .procname = "bridge-nf-filter-vlan-tagged",
997 .data = &brnf_filter_vlan_tagged,
998 .maxlen = sizeof(int),
999 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001000 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 },
Michael Milner516299d2007-04-12 22:14:23 -07001002 {
Michael Milner516299d2007-04-12 22:14:23 -07001003 .procname = "bridge-nf-filter-pppoe-tagged",
1004 .data = &brnf_filter_pppoe_tagged,
1005 .maxlen = sizeof(int),
1006 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001007 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001008 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001009 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010};
1011
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001012static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001013 { .procname = "net", },
1014 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001015 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016};
1017#endif
1018
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001019int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001021 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Eric Dumazetfc66f952010-10-08 06:37:34 +00001023 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001024 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001026
1027 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1028 if (ret < 0) {
1029 dst_entries_destroy(&fake_dst_ops);
1030 return ret;
1031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001033 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001035 printk(KERN_WARNING
1036 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001037 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001038 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001039 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044}
1045
1046void br_netfilter_fini(void)
1047{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001048 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049#ifdef CONFIG_SYSCTL
1050 unregister_sysctl_table(brnf_sysctl_header);
1051#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001052 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053}