blob: df0f114fb8cb8c8e4ebdb4009fde8c2908f7d2b4 [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
David S. Miller6700c272012-07-17 03:29:28 -0700114static void fake_update_pmtu(struct dst_entry *dst, struct sock *sk,
115 struct sk_buff *skb, u32 mtu)
Herbert Xu631339f2008-11-24 16:06:50 -0800116{
117}
118
David S. Miller6700c272012-07-17 03:29:28 -0700119static void fake_redirect(struct dst_entry *dst, struct sock *sk,
120 struct sk_buff *skb)
David S. Millerb587ee32012-07-12 00:39:24 -0700121{
122}
123
Alexander Holler6407d742011-06-07 00:51:35 -0700124static u32 *fake_cow_metrics(struct dst_entry *dst, unsigned long old)
125{
126 return NULL;
127}
128
David S. Millerf894cbf2012-07-02 21:52:24 -0700129static struct neighbour *fake_neigh_lookup(const struct dst_entry *dst,
130 struct sk_buff *skb,
131 const void *daddr)
David S. Millerd3aaeb32011-07-18 00:40:17 -0700132{
133 return NULL;
134}
135
Eric Dumazeta13861a2011-12-21 20:00:32 +0000136static unsigned int fake_mtu(const struct dst_entry *dst)
137{
138 return dst->dev->mtu;
139}
140
Herbert Xu631339f2008-11-24 16:06:50 -0800141static struct dst_ops fake_dst_ops = {
142 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800143 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800144 .update_pmtu = fake_update_pmtu,
David S. Millerb587ee32012-07-12 00:39:24 -0700145 .redirect = fake_redirect,
Alexander Holler6407d742011-06-07 00:51:35 -0700146 .cow_metrics = fake_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700147 .neigh_lookup = fake_neigh_lookup,
Eric Dumazeta13861a2011-12-21 20:00:32 +0000148 .mtu = fake_mtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800149};
150
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700151/*
152 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * Currently, we fill in the PMTU entry because netfilter
154 * refragmentation needs it, and the rt_flags entry because
155 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700156 * require us to fill additional fields.
157 */
Eric Dumazet33eb9872011-05-24 13:32:18 -0400158static const u32 br_dst_default_metrics[RTAX_MAX] = {
159 [RTAX_MTU - 1] = 1500,
160};
161
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700162void br_netfilter_rtable_init(struct net_bridge *br)
163{
164 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165
Changli Gaod8d1f302010-06-10 23:31:35 -0700166 atomic_set(&rt->dst.__refcnt, 1);
167 rt->dst.dev = br->dev;
168 rt->dst.path = &rt->dst;
Eric Dumazet33eb9872011-05-24 13:32:18 -0400169 dst_init_metrics(&rt->dst, br_dst_default_metrics, true);
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000170 rt->dst.flags = DST_NOXFRM | DST_NOPEER | DST_FAKE_RTABLE;
Changli Gaod8d1f302010-06-10 23:31:35 -0700171 rt->dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700172}
173
174static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
175{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000176 struct net_bridge_port *port;
177
178 port = br_port_get_rcu(dev);
179 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700180}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800182static inline struct net_device *bridge_parent(const struct net_device *dev)
183{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000184 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800185
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000186 port = br_port_get_rcu(dev);
187 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800190static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
191{
192 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
193 if (likely(skb->nf_bridge))
194 atomic_set(&(skb->nf_bridge->use), 1);
195
196 return skb->nf_bridge;
197}
198
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800199static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
200{
201 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
202
203 if (atomic_read(&nf_bridge->use) > 1) {
204 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
205
206 if (tmp) {
207 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
208 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800209 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000210 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800211 nf_bridge = tmp;
212 }
213 return nf_bridge;
214}
215
Patrick McHardyfc385822007-05-03 03:36:16 -0700216static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
217{
218 unsigned int len = nf_bridge_encap_header_len(skb);
219
220 skb_push(skb, len);
221 skb->network_header -= len;
222}
223
224static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
225{
226 unsigned int len = nf_bridge_encap_header_len(skb);
227
228 skb_pull(skb, len);
229 skb->network_header += len;
230}
231
232static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
233{
234 unsigned int len = nf_bridge_encap_header_len(skb);
235
236 skb_pull_rcsum(skb, len);
237 skb->network_header += len;
238}
239
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800240static inline void nf_bridge_save_header(struct sk_buff *skb)
241{
Patrick McHardyfc385822007-05-03 03:36:16 -0700242 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800243
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300244 skb_copy_from_linear_data_offset(skb, -header_size,
245 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800246}
247
Bart De Schuymere179e632010-04-15 12:26:39 +0200248static inline void nf_bridge_update_protocol(struct sk_buff *skb)
249{
250 if (skb->nf_bridge->mask & BRNF_8021Q)
251 skb->protocol = htons(ETH_P_8021Q);
252 else if (skb->nf_bridge->mask & BRNF_PPPoE)
253 skb->protocol = htons(ETH_P_PPP_SES);
254}
255
Bandan Das462fb2a2010-09-19 09:34:33 +0000256/* When handing a packet over to the IP layer
257 * check whether we have a skb that is in the
258 * expected format
259 */
260
stephen hemmingerd0280232010-10-18 14:03:21 +0000261static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000262{
263 struct ip_options *opt;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000264 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000265 struct net_device *dev = skb->dev;
266 u32 len;
267
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000268 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
269 goto inhdr_error;
270
Bandan Das462fb2a2010-09-19 09:34:33 +0000271 iph = ip_hdr(skb);
272 opt = &(IPCB(skb)->opt);
273
274 /* Basic sanity checks */
275 if (iph->ihl < 5 || iph->version != 4)
276 goto inhdr_error;
277
278 if (!pskb_may_pull(skb, iph->ihl*4))
279 goto inhdr_error;
280
281 iph = ip_hdr(skb);
282 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
283 goto inhdr_error;
284
285 len = ntohs(iph->tot_len);
286 if (skb->len < len) {
287 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
288 goto drop;
289 } else if (len < (iph->ihl*4))
290 goto inhdr_error;
291
292 if (pskb_trim_rcsum(skb, len)) {
293 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
294 goto drop;
295 }
296
Eric Dumazetf8e98812011-04-12 13:39:14 -0700297 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
298 if (iph->ihl == 5)
Bandan Das462fb2a2010-09-19 09:34:33 +0000299 return 0;
Bandan Das462fb2a2010-09-19 09:34:33 +0000300
301 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
302 if (ip_options_compile(dev_net(dev), opt, skb))
303 goto inhdr_error;
304
305 /* Check correct handling of SRR option */
306 if (unlikely(opt->srr)) {
307 struct in_device *in_dev = __in_dev_get_rcu(dev);
308 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
309 goto drop;
310
311 if (ip_options_rcv_srr(skb))
312 goto drop;
313 }
314
315 return 0;
316
317inhdr_error:
318 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
319drop:
320 return -1;
321}
322
Bart De Schuymere179e632010-04-15 12:26:39 +0200323/* Fill in the header for fragmented IP packets handled by
324 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700325 */
326int nf_bridge_copy_header(struct sk_buff *skb)
327{
328 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200329 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700330
Bart De Schuymere179e632010-04-15 12:26:39 +0200331 nf_bridge_update_protocol(skb);
332 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700333 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700334 if (err)
335 return err;
336
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300337 skb_copy_to_linear_data_offset(skb, -header_size,
338 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700339 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700340 return 0;
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343/* PF_BRIDGE/PRE_ROUTING *********************************************/
344/* Undo the changes made for ip6tables PREROUTING and continue the
345 * bridge PRE_ROUTING hook. */
346static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
347{
348 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000349 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (nf_bridge->mask & BRNF_PKT_TYPE) {
352 skb->pkt_type = PACKET_OTHERHOST;
353 nf_bridge->mask ^= BRNF_PKT_TYPE;
354 }
355 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
356
Eric Dumazet511c3f92009-06-02 05:14:27 +0000357 rt = bridge_parent_rtable(nf_bridge->physindev);
358 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700359 kfree_skb(skb);
360 return 0;
361 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200362 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
364 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200365 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700366 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100367 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 br_handle_frame_finish, 1);
369
370 return 0;
371}
372
Bart De Schuymere179e632010-04-15 12:26:39 +0200373/* Obtain the correct destination MAC address, while preserving the original
374 * source MAC address. If we already know this address, we just copy it. If we
375 * don't, we use the neighbour framework to find out. In both cases, we make
376 * sure that br_handle_frame_finish() is called afterwards.
377 */
378static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
379{
380 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700381 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200382 struct dst_entry *dst;
383
384 skb->dev = bridge_parent(skb->dev);
385 if (!skb->dev)
386 goto free_skb;
387 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700388 neigh = dst_neigh_lookup_skb(dst, skb);
389 if (neigh) {
390 int ret;
391
392 if (neigh->hh.hh_len) {
393 neigh_hh_bridge(&neigh->hh, skb);
394 skb->dev = nf_bridge->physindev;
395 ret = br_handle_frame_finish(skb);
396 } else {
397 /* the neighbour function below overwrites the complete
398 * MAC header, so we save the Ethernet source address and
399 * protocol number.
400 */
401 skb_copy_from_linear_data_offset(skb,
402 -(ETH_HLEN-ETH_ALEN),
403 skb->nf_bridge->data,
404 ETH_HLEN-ETH_ALEN);
405 /* tell br_dev_xmit to continue with forwarding */
406 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
407 ret = neigh->output(neigh, skb);
408 }
409 neigh_release(neigh);
410 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200411 }
412free_skb:
413 kfree_skb(skb);
414 return 0;
415}
416
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200418 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
420 * There are two cases to consider:
421 * 1. The packet was DNAT'ed to a device in the same bridge
422 * port group as it was received on. We can still bridge
423 * the packet.
424 * 2. The packet was DNAT'ed to a different device, either
425 * a non-bridged device or another bridge port group.
426 * The packet will need to be routed.
427 *
428 * The correct way of distinguishing between these two cases is to
429 * call ip_route_input() and to look at skb->dst->dev, which is
430 * changed to the destination device if ip_route_input() succeeds.
431 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200432 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200434 * If the output device equals the logical bridge device the packet
435 * came in on, we can consider this bridging. The corresponding MAC
436 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * Otherwise, the packet is considered to be routed and we just
438 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800439 * later be passed up to the IP stack to be routed. For a redirected
440 * packet, ip_route_input() will give back the localhost as output device,
441 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200443 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800445 * This can be because the destination address is martian, in which case
446 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200447 * If IP forwarding is disabled, ip_route_input() will fail, while
448 * ip_route_output_key() can return success. The source
449 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200451 * if IP forwarding is enabled. If the output device equals the logical bridge
452 * device, we proceed as if ip_route_input() succeeded. If it differs from the
453 * logical bridge port or if ip_route_output_key() fails we drop the packet.
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455static int br_nf_pre_routing_finish(struct sk_buff *skb)
456{
457 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700458 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000460 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800461 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 if (nf_bridge->mask & BRNF_PKT_TYPE) {
464 skb->pkt_type = PACKET_OTHERHOST;
465 nf_bridge->mask ^= BRNF_PKT_TYPE;
466 }
467 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800469 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200470 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800471
472 /* If err equals -EHOSTUNREACH the error is due to a
473 * martian destination or due to the fact that
474 * forwarding is disabled. For most martian packets,
475 * ip_route_output_key() will fail. It won't fail for 2 types of
476 * martian destinations: loopback destinations and destination
477 * 0.0.0.0. In both cases the packet will be dropped because the
478 * destination is the loopback device and not the bridge. */
479 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
480 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
David S. Miller78fbfd82011-03-12 00:00:52 -0500482 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
483 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800484 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700485 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800486 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800487 if (rt->dst.dev == dev) {
488 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 goto bridged_dnat;
490 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800491 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800493free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 kfree_skb(skb);
495 return 0;
496 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000497 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 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,
503 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 skb, skb->dev, NULL,
505 br_nf_pre_routing_finish_bridge,
506 1);
507 return 0;
508 }
Joe Perches04091142014-02-23 00:05:26 -0800509 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 skb->pkt_type = PACKET_HOST;
511 }
512 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000513 rt = bridge_parent_rtable(nf_bridge->physindev);
514 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700515 kfree_skb(skb);
516 return 0;
517 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200518 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 }
520
521 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200522 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700523 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100524 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525 br_handle_frame_finish, 1);
526
527 return 0;
528}
529
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200530static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
531{
532 struct net_device *vlan, *br;
533
534 br = bridge_parent(dev);
535 if (brnf_pass_vlan_indev == 0 || !vlan_tx_tag_present(skb))
536 return br;
537
Patrick McHardy86a9bad2013-04-19 02:04:30 +0000538 vlan = __vlan_find_dev_deep(br, skb->vlan_proto,
Patrick McHardy1fd9b1f2013-04-19 02:04:29 +0000539 vlan_tx_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200540
541 return vlan ? vlan : br;
542}
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800545static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
548
549 if (skb->pkt_type == PACKET_OTHERHOST) {
550 skb->pkt_type = PACKET_HOST;
551 nf_bridge->mask |= BRNF_PKT_TYPE;
552 }
553
554 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
555 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200556 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200557 if (skb->protocol == htons(ETH_P_8021Q))
558 nf_bridge->mask |= BRNF_8021Q;
559 else if (skb->protocol == htons(ETH_P_PPP_SES))
560 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800561
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200562 /* Must drop socket now because of tproxy. */
563 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800564 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565}
566
567/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
568static int check_hbh_len(struct sk_buff *skb)
569{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700570 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700572 const unsigned char *nh = skb_network_header(skb);
573 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800574 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 if ((raw + len) - skb->data > skb_headlen(skb))
577 goto bad;
578
579 off += 2;
580 len -= 2;
581
582 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700583 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700585 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000586 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 optlen = 1;
588 break;
589
590 case IPV6_TLV_PADN:
591 break;
592
593 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700594 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700596 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800597 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700598 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800599 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
601 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800602 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800603 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800604 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700605 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 break;
607 default:
608 if (optlen > len)
609 goto bad;
610 break;
611 }
612 off += optlen;
613 len -= optlen;
614 }
615 if (len == 0)
616 return 0;
617bad:
618 return -1;
619
620}
621
622/* Replicate the checks that IPv6 does on packet reception and pass the packet
623 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200624static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800625 struct sk_buff *skb,
626 const struct net_device *in,
627 const struct net_device *out,
628 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000630 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632
633 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000634 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635
636 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000637 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700639 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000642 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643
644 pkt_len = ntohs(hdr->payload_len);
645
646 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
647 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000648 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700649 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000650 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 }
652 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000653 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800655 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800656 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800658 if (!setup_pre_routing(skb))
659 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Bart De Schuymere179e632010-04-15 12:26:39 +0200661 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100662 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 br_nf_pre_routing_finish_ipv6);
664
665 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
667
668/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
669 * Replicate the checks that IPv4 does on packet reception.
670 * Set skb->dev to the bridge device (i.e. parent of the
671 * receiving device) to make netfilter happy, the REDIRECT
672 * target in particular. Save the original destination IP
673 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200674static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
675 struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800676 const struct net_device *in,
677 const struct net_device *out,
678 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200680 struct net_bridge_port *p;
681 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700682 __u32 len = nf_bridge_encap_header_len(skb);
683
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700684 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000685 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
David S. Millere490c1de2010-07-02 22:42:06 -0700687 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200688 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000689 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200690 br = p->br;
691
Florian Westphal739e4502012-03-06 01:22:54 +0000692 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200693 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200695
Patrick McHardyfc385822007-05-03 03:36:16 -0700696 nf_bridge_pull_encap_header_rcsum(skb);
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200697 return br_nf_pre_routing_ipv6(ops, skb, in, out, okfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200699
700 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Florian Westphal739e4502012-03-06 01:22:54 +0000703 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 return NF_ACCEPT;
705
Patrick McHardyfc385822007-05-03 03:36:16 -0700706 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Bandan Das462fb2a2010-09-19 09:34:33 +0000708 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000709 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000710
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800711 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800712 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800714 if (!setup_pre_routing(skb))
715 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200717 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100719 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 br_nf_pre_routing_finish);
721
722 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
725
726/* PF_BRIDGE/LOCAL_IN ************************************************/
727/* The packet is locally destined, which requires a real
728 * dst_entry, so detach the fake one. On the way up, the
729 * packet would pass through PRE_ROUTING again (which already
730 * took place when the packet entered the bridge), but we
731 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
732 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200733static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
734 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{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000739 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 return NF_ACCEPT;
741}
742
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743/* PF_BRIDGE/FORWARD *************************************************/
744static int br_nf_forward_finish(struct sk_buff *skb)
745{
746 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
747 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Florian Westphal739e4502012-03-06 01:22:54 +0000749 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750 in = nf_bridge->physindev;
751 if (nf_bridge->mask & BRNF_PKT_TYPE) {
752 skb->pkt_type = PACKET_OTHERHOST;
753 nf_bridge->mask ^= BRNF_PKT_TYPE;
754 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200755 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 } else {
757 in = *((struct net_device **)(skb->cb));
758 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700759 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200760
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100761 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800762 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return 0;
764}
765
Florian Westphal739e4502012-03-06 01:22:54 +0000766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767/* This is the 'purely bridged' case. For IP, we pass the packet to
768 * netfilter with indev and outdev set to the bridge device,
769 * but we are still able to filter on the 'real' indev/outdev
770 * because of the physdev module. For ARP, indev and outdev are the
771 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200772static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
773 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800774 const struct net_device *in,
775 const struct net_device *out,
776 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800779 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200780 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (!skb->nf_bridge)
783 return NF_ACCEPT;
784
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800785 /* Need exclusive nf_bridge_info since we might have multiple
786 * different physoutdevs. */
787 if (!nf_bridge_unshare(skb))
788 return NF_DROP;
789
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800790 parent = bridge_parent(out);
791 if (!parent)
792 return NF_DROP;
793
Florian Westphal739e4502012-03-06 01:22:54 +0000794 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000795 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000796 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000797 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000798 else
799 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Herbert Xu3db05fe2007-10-15 00:53:15 -0700801 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 nf_bridge = skb->nf_bridge;
804 if (skb->pkt_type == PACKET_OTHERHOST) {
805 skb->pkt_type = PACKET_HOST;
806 nf_bridge->mask |= BRNF_PKT_TYPE;
807 }
808
Alban Crequyaa740f42012-05-14 03:56:36 +0000809 if (pf == NFPROTO_IPV4 && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000810 return NF_DROP;
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /* The physdev module checks on this */
813 nf_bridge->mask |= BRNF_BRIDGED;
814 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000815 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200816 skb->protocol = htons(ETH_P_IP);
817 else
818 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200820 NF_HOOK(pf, NF_INET_FORWARD, skb, brnf_get_logical_dev(skb, in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800821 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822
823 return NF_STOLEN;
824}
825
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200826static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
827 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800828 const struct net_device *in,
829 const struct net_device *out,
830 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200832 struct net_bridge_port *p;
833 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834 struct net_device **d = (struct net_device **)(skb->cb);
835
David S. Millere490c1de2010-07-02 22:42:06 -0700836 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200837 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200839 br = p->br;
840
841 if (!brnf_call_arptables && !br->nf_call_arptables)
842 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Florian Westphal739e4502012-03-06 01:22:54 +0000844 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800845 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700847 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 }
849
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300850 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700851 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700852 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 return NF_ACCEPT;
854 }
855 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700856 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 (struct net_device *)out, br_nf_forward_finish);
858
859 return NF_STOLEN;
860}
861
Igor Maraviće6373c42011-12-12 02:58:25 +0000862#if IS_ENABLED(CONFIG_NF_CONNTRACK_IPV4)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700863static int br_nf_dev_queue_xmit(struct sk_buff *skb)
864{
Bandan Das462fb2a2010-09-19 09:34:33 +0000865 int ret;
866
Bart De Schuymere179e632010-04-15 12:26:39 +0200867 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200868 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700869 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000870 if (br_parse_ip_options(skb))
871 /* Drop invalid packet */
872 return NF_DROP;
873 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700874 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000875 ret = br_dev_queue_push_xmit(skb);
876
877 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700878}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200879#else
880static int br_nf_dev_queue_xmit(struct sk_buff *skb)
881{
882 return br_dev_queue_push_xmit(skb);
883}
884#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200887static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
888 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800889 const struct net_device *in,
890 const struct net_device *out,
891 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700893 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200895 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200897 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800898 return NF_ACCEPT;
899
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800900 if (!realoutdev)
901 return NF_DROP;
902
Florian Westphal739e4502012-03-06 01:22:54 +0000903 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000904 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000905 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000906 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000907 else
908 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
911 * about the value of skb->pkt_type. */
912 if (skb->pkt_type == PACKET_OTHERHOST) {
913 skb->pkt_type = PACKET_HOST;
914 nf_bridge->mask |= BRNF_PKT_TYPE;
915 }
916
Patrick McHardyfc385822007-05-03 03:36:16 -0700917 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 nf_bridge_save_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000919 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200920 skb->protocol = htons(ETH_P_IP);
921 else
922 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800924 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700925 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/* IP/SABOTAGE *****************************************************/
931/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
932 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200933static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
934 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800935 const struct net_device *in,
936 const struct net_device *out,
937 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700939 if (skb->nf_bridge &&
940 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return NF_STOP;
942 }
943
944 return NF_ACCEPT;
945}
946
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200947/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
948 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800949static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000950 {
951 .hook = br_nf_pre_routing,
952 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000953 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000954 .hooknum = NF_BR_PRE_ROUTING,
955 .priority = NF_BR_PRI_BRNF,
956 },
957 {
958 .hook = br_nf_local_in,
959 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000960 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000961 .hooknum = NF_BR_LOCAL_IN,
962 .priority = NF_BR_PRI_BRNF,
963 },
964 {
965 .hook = br_nf_forward_ip,
966 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000967 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000968 .hooknum = NF_BR_FORWARD,
969 .priority = NF_BR_PRI_BRNF - 1,
970 },
971 {
972 .hook = br_nf_forward_arp,
973 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000974 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000975 .hooknum = NF_BR_FORWARD,
976 .priority = NF_BR_PRI_BRNF,
977 },
978 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000979 .hook = br_nf_post_routing,
980 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000981 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000982 .hooknum = NF_BR_POST_ROUTING,
983 .priority = NF_BR_PRI_LAST,
984 },
985 {
986 .hook = ip_sabotage_in,
987 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000988 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000989 .hooknum = NF_INET_PRE_ROUTING,
990 .priority = NF_IP_PRI_FIRST,
991 },
992 {
993 .hook = ip_sabotage_in,
994 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000995 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000996 .hooknum = NF_INET_PRE_ROUTING,
997 .priority = NF_IP6_PRI_FIRST,
998 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999};
1000
1001#ifdef CONFIG_SYSCTL
1002static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001003int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001004 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005{
1006 int ret;
1007
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001008 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 if (write && *(int *)(ctl->data))
1011 *(int *)(ctl->data) = 1;
1012 return ret;
1013}
1014
Joe Perchesfe2c6332013-06-11 23:04:25 -07001015static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 .procname = "bridge-nf-call-arptables",
1018 .data = &brnf_call_arptables,
1019 .maxlen = sizeof(int),
1020 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001021 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 },
1023 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 .procname = "bridge-nf-call-iptables",
1025 .data = &brnf_call_iptables,
1026 .maxlen = sizeof(int),
1027 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001028 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 },
1030 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 .procname = "bridge-nf-call-ip6tables",
1032 .data = &brnf_call_ip6tables,
1033 .maxlen = sizeof(int),
1034 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001035 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 },
1037 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 .procname = "bridge-nf-filter-vlan-tagged",
1039 .data = &brnf_filter_vlan_tagged,
1040 .maxlen = sizeof(int),
1041 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001042 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 },
Michael Milner516299d2007-04-12 22:14:23 -07001044 {
Michael Milner516299d2007-04-12 22:14:23 -07001045 .procname = "bridge-nf-filter-pppoe-tagged",
1046 .data = &brnf_filter_pppoe_tagged,
1047 .maxlen = sizeof(int),
1048 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001049 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001050 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001051 {
1052 .procname = "bridge-nf-pass-vlan-input-dev",
1053 .data = &brnf_pass_vlan_indev,
1054 .maxlen = sizeof(int),
1055 .mode = 0644,
1056 .proc_handler = brnf_sysctl_call_tables,
1057 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001058 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060#endif
1061
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001062int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001064 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065
Eric Dumazetfc66f952010-10-08 06:37:34 +00001066 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001067 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001069
1070 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1071 if (ret < 0) {
1072 dst_entries_destroy(&fake_dst_ops);
1073 return ret;
1074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001076 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001078 printk(KERN_WARNING
1079 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001080 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001081 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001082 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 return 0;
1087}
1088
1089void br_netfilter_fini(void)
1090{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001091 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001093 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001095 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096}