blob: 834dfabb30f93c81ac38de33258677f341c706d0 [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
Dave Jonesb6f99a22007-03-22 12:27:49 -070065static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080066{
Jesse Gross13937912010-10-20 13:56:01 +000067 if (vlan_tx_tag_present(skb))
68 return skb->protocol;
69 else if (skb->protocol == htons(ETH_P_8021Q))
70 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
71 else
72 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080073}
74
75#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000076 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080077 brnf_filter_vlan_tagged)
78
79#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000080 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080081 brnf_filter_vlan_tagged)
82
83#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000084 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080085 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Michael Milner516299d2007-04-12 22:14:23 -070087static inline __be16 pppoe_proto(const struct sk_buff *skb)
88{
89 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
90 sizeof(struct pppoe_hdr)));
91}
92
93#define IS_PPPOE_IP(skb) \
94 (skb->protocol == htons(ETH_P_PPP_SES) && \
95 pppoe_proto(skb) == htons(PPP_IP) && \
96 brnf_filter_pppoe_tagged)
97
98#define IS_PPPOE_IPV6(skb) \
99 (skb->protocol == htons(ETH_P_PPP_SES) && \
100 pppoe_proto(skb) == htons(PPP_IPV6) && \
101 brnf_filter_pppoe_tagged)
102
Herbert Xu631339f2008-11-24 16:06:50 -0800103static void fake_update_pmtu(struct dst_entry *dst, u32 mtu)
104{
105}
106
Alexander Holler6407d742011-06-07 00:51:35 -0700107static u32 *fake_cow_metrics(struct dst_entry *dst, unsigned long old)
108{
109 return NULL;
110}
111
David S. Millerd3aaeb32011-07-18 00:40:17 -0700112static struct neighbour *fake_neigh_lookup(const struct dst_entry *dst, const void *daddr)
113{
114 return NULL;
115}
116
Herbert Xu631339f2008-11-24 16:06:50 -0800117static struct dst_ops fake_dst_ops = {
118 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800119 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800120 .update_pmtu = fake_update_pmtu,
Alexander Holler6407d742011-06-07 00:51:35 -0700121 .cow_metrics = fake_cow_metrics,
David S. Millerd3aaeb32011-07-18 00:40:17 -0700122 .neigh_lookup = fake_neigh_lookup,
Herbert Xu631339f2008-11-24 16:06:50 -0800123};
124
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700125/*
126 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 * Currently, we fill in the PMTU entry because netfilter
128 * refragmentation needs it, and the rt_flags entry because
129 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700130 * require us to fill additional fields.
131 */
Eric Dumazet33eb9872011-05-24 13:32:18 -0400132static const u32 br_dst_default_metrics[RTAX_MAX] = {
133 [RTAX_MTU - 1] = 1500,
134};
135
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700136void br_netfilter_rtable_init(struct net_bridge *br)
137{
138 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Changli Gaod8d1f302010-06-10 23:31:35 -0700140 atomic_set(&rt->dst.__refcnt, 1);
141 rt->dst.dev = br->dev;
142 rt->dst.path = &rt->dst;
Eric Dumazet33eb9872011-05-24 13:32:18 -0400143 dst_init_metrics(&rt->dst, br_dst_default_metrics, true);
Changli Gaod8d1f302010-06-10 23:31:35 -0700144 rt->dst.flags = DST_NOXFRM;
145 rt->dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700146}
147
148static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
149{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000150 struct net_bridge_port *port;
151
152 port = br_port_get_rcu(dev);
153 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800156static inline struct net_device *bridge_parent(const struct net_device *dev)
157{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000158 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800159
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000160 port = br_port_get_rcu(dev);
161 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800162}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800164static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
165{
166 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
167 if (likely(skb->nf_bridge))
168 atomic_set(&(skb->nf_bridge->use), 1);
169
170 return skb->nf_bridge;
171}
172
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800173static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
174{
175 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
176
177 if (atomic_read(&nf_bridge->use) > 1) {
178 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
179
180 if (tmp) {
181 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
182 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800183 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000184 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800185 nf_bridge = tmp;
186 }
187 return nf_bridge;
188}
189
Patrick McHardyfc385822007-05-03 03:36:16 -0700190static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
191{
192 unsigned int len = nf_bridge_encap_header_len(skb);
193
194 skb_push(skb, len);
195 skb->network_header -= len;
196}
197
198static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
199{
200 unsigned int len = nf_bridge_encap_header_len(skb);
201
202 skb_pull(skb, len);
203 skb->network_header += len;
204}
205
206static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
207{
208 unsigned int len = nf_bridge_encap_header_len(skb);
209
210 skb_pull_rcsum(skb, len);
211 skb->network_header += len;
212}
213
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800214static inline void nf_bridge_save_header(struct sk_buff *skb)
215{
Patrick McHardyfc385822007-05-03 03:36:16 -0700216 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800217
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300218 skb_copy_from_linear_data_offset(skb, -header_size,
219 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800220}
221
Bart De Schuymere179e632010-04-15 12:26:39 +0200222static inline void nf_bridge_update_protocol(struct sk_buff *skb)
223{
224 if (skb->nf_bridge->mask & BRNF_8021Q)
225 skb->protocol = htons(ETH_P_8021Q);
226 else if (skb->nf_bridge->mask & BRNF_PPPoE)
227 skb->protocol = htons(ETH_P_PPP_SES);
228}
229
Bandan Das462fb2a2010-09-19 09:34:33 +0000230/* When handing a packet over to the IP layer
231 * check whether we have a skb that is in the
232 * expected format
233 */
234
stephen hemmingerd0280232010-10-18 14:03:21 +0000235static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000236{
237 struct ip_options *opt;
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000238 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000239 struct net_device *dev = skb->dev;
240 u32 len;
241
242 iph = ip_hdr(skb);
243 opt = &(IPCB(skb)->opt);
244
245 /* Basic sanity checks */
246 if (iph->ihl < 5 || iph->version != 4)
247 goto inhdr_error;
248
249 if (!pskb_may_pull(skb, iph->ihl*4))
250 goto inhdr_error;
251
252 iph = ip_hdr(skb);
253 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
254 goto inhdr_error;
255
256 len = ntohs(iph->tot_len);
257 if (skb->len < len) {
258 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
259 goto drop;
260 } else if (len < (iph->ihl*4))
261 goto inhdr_error;
262
263 if (pskb_trim_rcsum(skb, len)) {
264 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
265 goto drop;
266 }
267
Eric Dumazetf8e98812011-04-12 13:39:14 -0700268 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
269 if (iph->ihl == 5)
Bandan Das462fb2a2010-09-19 09:34:33 +0000270 return 0;
Bandan Das462fb2a2010-09-19 09:34:33 +0000271
272 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
273 if (ip_options_compile(dev_net(dev), opt, skb))
274 goto inhdr_error;
275
276 /* Check correct handling of SRR option */
277 if (unlikely(opt->srr)) {
278 struct in_device *in_dev = __in_dev_get_rcu(dev);
279 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
280 goto drop;
281
282 if (ip_options_rcv_srr(skb))
283 goto drop;
284 }
285
286 return 0;
287
288inhdr_error:
289 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
290drop:
291 return -1;
292}
293
Bart De Schuymere179e632010-04-15 12:26:39 +0200294/* Fill in the header for fragmented IP packets handled by
295 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700296 */
297int nf_bridge_copy_header(struct sk_buff *skb)
298{
299 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200300 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700301
Bart De Schuymere179e632010-04-15 12:26:39 +0200302 nf_bridge_update_protocol(skb);
303 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700304 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700305 if (err)
306 return err;
307
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300308 skb_copy_to_linear_data_offset(skb, -header_size,
309 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700310 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700311 return 0;
312}
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314/* PF_BRIDGE/PRE_ROUTING *********************************************/
315/* Undo the changes made for ip6tables PREROUTING and continue the
316 * bridge PRE_ROUTING hook. */
317static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
318{
319 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000320 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 if (nf_bridge->mask & BRNF_PKT_TYPE) {
323 skb->pkt_type = PACKET_OTHERHOST;
324 nf_bridge->mask ^= BRNF_PKT_TYPE;
325 }
326 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
327
Eric Dumazet511c3f92009-06-02 05:14:27 +0000328 rt = bridge_parent_rtable(nf_bridge->physindev);
329 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700330 kfree_skb(skb);
331 return 0;
332 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200333 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200336 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700337 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100338 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 br_handle_frame_finish, 1);
340
341 return 0;
342}
343
Bart De Schuymere179e632010-04-15 12:26:39 +0200344/* Obtain the correct destination MAC address, while preserving the original
345 * source MAC address. If we already know this address, we just copy it. If we
346 * don't, we use the neighbour framework to find out. In both cases, we make
347 * sure that br_handle_frame_finish() is called afterwards.
348 */
349static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
350{
351 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700352 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200353 struct dst_entry *dst;
354
355 skb->dev = bridge_parent(skb->dev);
356 if (!skb->dev)
357 goto free_skb;
358 dst = skb_dst(skb);
David Miller27217452011-12-02 16:52:08 +0000359 neigh = dst_get_neighbour_noref(dst);
David S. Millerf6b72b62011-07-14 07:53:20 -0700360 if (neigh->hh.hh_len) {
361 neigh_hh_bridge(&neigh->hh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200362 skb->dev = nf_bridge->physindev;
363 return br_handle_frame_finish(skb);
David S. Miller8f40b162011-07-17 13:34:11 -0700364 } else {
Bart De Schuymere179e632010-04-15 12:26:39 +0200365 /* the neighbour function below overwrites the complete
366 * MAC header, so we save the Ethernet source address and
367 * protocol number. */
368 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
369 /* tell br_dev_xmit to continue with forwarding */
370 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
David S. Miller8f40b162011-07-17 13:34:11 -0700371 return neigh->output(neigh, skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200372 }
373free_skb:
374 kfree_skb(skb);
375 return 0;
376}
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200379 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
381 * There are two cases to consider:
382 * 1. The packet was DNAT'ed to a device in the same bridge
383 * port group as it was received on. We can still bridge
384 * the packet.
385 * 2. The packet was DNAT'ed to a different device, either
386 * a non-bridged device or another bridge port group.
387 * The packet will need to be routed.
388 *
389 * The correct way of distinguishing between these two cases is to
390 * call ip_route_input() and to look at skb->dst->dev, which is
391 * changed to the destination device if ip_route_input() succeeds.
392 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200393 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200395 * If the output device equals the logical bridge device the packet
396 * came in on, we can consider this bridging. The corresponding MAC
397 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 * Otherwise, the packet is considered to be routed and we just
399 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800400 * later be passed up to the IP stack to be routed. For a redirected
401 * packet, ip_route_input() will give back the localhost as output device,
402 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200404 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800406 * This can be because the destination address is martian, in which case
407 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200408 * If IP forwarding is disabled, ip_route_input() will fail, while
409 * ip_route_output_key() can return success. The source
410 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200412 * if IP forwarding is enabled. If the output device equals the logical bridge
413 * device, we proceed as if ip_route_input() succeeded. If it differs from the
414 * logical bridge port or if ip_route_output_key() fails we drop the packet.
415 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416static int br_nf_pre_routing_finish(struct sk_buff *skb)
417{
418 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700419 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000421 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800422 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (nf_bridge->mask & BRNF_PKT_TYPE) {
425 skb->pkt_type = PACKET_OTHERHOST;
426 nf_bridge->mask ^= BRNF_PKT_TYPE;
427 }
428 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800430 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200431 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800432
433 /* If err equals -EHOSTUNREACH the error is due to a
434 * martian destination or due to the fact that
435 * forwarding is disabled. For most martian packets,
436 * ip_route_output_key() will fail. It won't fail for 2 types of
437 * martian destinations: loopback destinations and destination
438 * 0.0.0.0. In both cases the packet will be dropped because the
439 * destination is the loopback device and not the bridge. */
440 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
441 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
David S. Miller78fbfd82011-03-12 00:00:52 -0500443 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
444 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800445 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700446 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800447 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800448 if (rt->dst.dev == dev) {
449 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 goto bridged_dnat;
451 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800452 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800454free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 kfree_skb(skb);
456 return 0;
457 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000458 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200461 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700462 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100463 NF_HOOK_THRESH(NFPROTO_BRIDGE,
464 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 skb, skb->dev, NULL,
466 br_nf_pre_routing_finish_bridge,
467 1);
468 return 0;
469 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800470 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 skb->pkt_type = PACKET_HOST;
472 }
473 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000474 rt = bridge_parent_rtable(nf_bridge->physindev);
475 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700476 kfree_skb(skb);
477 return 0;
478 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200479 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 }
481
482 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200483 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700484 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100485 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 br_handle_frame_finish, 1);
487
488 return 0;
489}
490
491/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800492static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
494 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
495
496 if (skb->pkt_type == PACKET_OTHERHOST) {
497 skb->pkt_type = PACKET_HOST;
498 nf_bridge->mask |= BRNF_PKT_TYPE;
499 }
500
501 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
502 nf_bridge->physindev = skb->dev;
503 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200504 if (skb->protocol == htons(ETH_P_8021Q))
505 nf_bridge->mask |= BRNF_8021Q;
506 else if (skb->protocol == htons(ETH_P_PPP_SES))
507 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800508
509 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510}
511
512/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
513static int check_hbh_len(struct sk_buff *skb)
514{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700515 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700517 const unsigned char *nh = skb_network_header(skb);
518 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800519 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 if ((raw + len) - skb->data > skb_headlen(skb))
522 goto bad;
523
524 off += 2;
525 len -= 2;
526
527 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700528 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700530 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 case IPV6_TLV_PAD0:
532 optlen = 1;
533 break;
534
535 case IPV6_TLV_PADN:
536 break;
537
538 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700539 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700541 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800542 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700543 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800544 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
546 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800547 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800548 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800549 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700550 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551 break;
552 default:
553 if (optlen > len)
554 goto bad;
555 break;
556 }
557 off += optlen;
558 len -= optlen;
559 }
560 if (len == 0)
561 return 0;
562bad:
563 return -1;
564
565}
566
567/* Replicate the checks that IPv6 does on packet reception and pass the packet
568 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
569static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800570 struct sk_buff *skb,
571 const struct net_device *in,
572 const struct net_device *out,
573 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000575 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000579 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
581 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000582 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700584 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585
586 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000587 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 pkt_len = ntohs(hdr->payload_len);
590
591 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
592 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000593 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700594 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000595 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000598 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800600 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800601 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800603 if (!setup_pre_routing(skb))
604 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605
Bart De Schuymere179e632010-04-15 12:26:39 +0200606 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100607 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 br_nf_pre_routing_finish_ipv6);
609
610 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611}
612
613/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
614 * Replicate the checks that IPv4 does on packet reception.
615 * Set skb->dev to the bridge device (i.e. parent of the
616 * receiving device) to make netfilter happy, the REDIRECT
617 * target in particular. Save the original destination IP
618 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700619static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800620 const struct net_device *in,
621 const struct net_device *out,
622 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200624 struct net_bridge_port *p;
625 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700626 __u32 len = nf_bridge_encap_header_len(skb);
627
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700628 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000629 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
David S. Millere490c1de2010-07-02 22:42:06 -0700631 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200632 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000633 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200634 br = p->br;
635
Michael Milner516299d2007-04-12 22:14:23 -0700636 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
637 IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200638 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200640
Patrick McHardyfc385822007-05-03 03:36:16 -0700641 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
643 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200644
645 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Michael Milner516299d2007-04-12 22:14:23 -0700648 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
649 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return NF_ACCEPT;
651
Patrick McHardyfc385822007-05-03 03:36:16 -0700652 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Bandan Das462fb2a2010-09-19 09:34:33 +0000654 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000655 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000656
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800657 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800658 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800660 if (!setup_pre_routing(skb))
661 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200663 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100665 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 br_nf_pre_routing_finish);
667
668 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669}
670
671
672/* PF_BRIDGE/LOCAL_IN ************************************************/
673/* The packet is locally destined, which requires a real
674 * dst_entry, so detach the fake one. On the way up, the
675 * packet would pass through PRE_ROUTING again (which already
676 * took place when the packet entered the bridge), but we
677 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
678 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700679static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800680 const struct net_device *in,
681 const struct net_device *out,
682 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000684 struct rtable *rt = skb_rtable(skb);
685
Eric Dumazetadf30902009-06-02 05:19:30 +0000686 if (rt && rt == bridge_parent_rtable(in))
687 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689 return NF_ACCEPT;
690}
691
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692/* PF_BRIDGE/FORWARD *************************************************/
693static int br_nf_forward_finish(struct sk_buff *skb)
694{
695 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
696 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800698 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 in = nf_bridge->physindev;
700 if (nf_bridge->mask & BRNF_PKT_TYPE) {
701 skb->pkt_type = PACKET_OTHERHOST;
702 nf_bridge->mask ^= BRNF_PKT_TYPE;
703 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200704 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 } else {
706 in = *((struct net_device **)(skb->cb));
707 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700708 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200709
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100710 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800711 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 return 0;
713}
714
715/* This is the 'purely bridged' case. For IP, we pass the packet to
716 * netfilter with indev and outdev set to the bridge device,
717 * but we are still able to filter on the 'real' indev/outdev
718 * because of the physdev module. For ARP, indev and outdev are the
719 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700720static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800721 const struct net_device *in,
722 const struct net_device *out,
723 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800726 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200727 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
729 if (!skb->nf_bridge)
730 return NF_ACCEPT;
731
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800732 /* Need exclusive nf_bridge_info since we might have multiple
733 * different physoutdevs. */
734 if (!nf_bridge_unshare(skb))
735 return NF_DROP;
736
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800737 parent = bridge_parent(out);
738 if (!parent)
739 return NF_DROP;
740
Michael Milner516299d2007-04-12 22:14:23 -0700741 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
742 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000744 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
745 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000747 else
748 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Herbert Xu3db05fe2007-10-15 00:53:15 -0700750 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 nf_bridge = skb->nf_bridge;
753 if (skb->pkt_type == PACKET_OTHERHOST) {
754 skb->pkt_type = PACKET_HOST;
755 nf_bridge->mask |= BRNF_PKT_TYPE;
756 }
757
Stephen Hemmingercb685522011-05-13 16:03:24 -0400758 if (pf == PF_INET && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000759 return NF_DROP;
760
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761 /* The physdev module checks on this */
762 nf_bridge->mask |= BRNF_BRIDGED;
763 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200764 if (pf == PF_INET)
765 skb->protocol = htons(ETH_P_IP);
766 else
767 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800769 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800770 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772 return NF_STOLEN;
773}
774
Herbert Xu3db05fe2007-10-15 00:53:15 -0700775static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800776 const struct net_device *in,
777 const struct net_device *out,
778 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200780 struct net_bridge_port *p;
781 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct net_device **d = (struct net_device **)(skb->cb);
783
David S. Millere490c1de2010-07-02 22:42:06 -0700784 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200785 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200787 br = p->br;
788
789 if (!brnf_call_arptables && !br->nf_call_arptables)
790 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800792 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800793 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700795 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300798 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700799 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700800 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return NF_ACCEPT;
802 }
803 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700804 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 (struct net_device *)out, br_nf_forward_finish);
806
807 return NF_STOLEN;
808}
809
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200810#if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700811static int br_nf_dev_queue_xmit(struct sk_buff *skb)
812{
Bandan Das462fb2a2010-09-19 09:34:33 +0000813 int ret;
814
Bart De Schuymere179e632010-04-15 12:26:39 +0200815 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200816 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700817 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000818 if (br_parse_ip_options(skb))
819 /* Drop invalid packet */
820 return NF_DROP;
821 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700822 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000823 ret = br_dev_queue_push_xmit(skb);
824
825 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700826}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200827#else
828static int br_nf_dev_queue_xmit(struct sk_buff *skb)
829{
830 return br_dev_queue_push_xmit(skb);
831}
832#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
834/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700835static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800836 const struct net_device *in,
837 const struct net_device *out,
838 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700840 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200842 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200844 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800845 return NF_ACCEPT;
846
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800847 if (!realoutdev)
848 return NF_DROP;
849
Michael Milner516299d2007-04-12 22:14:23 -0700850 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
851 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000853 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
854 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000856 else
857 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
860 * about the value of skb->pkt_type. */
861 if (skb->pkt_type == PACKET_OTHERHOST) {
862 skb->pkt_type = PACKET_HOST;
863 nf_bridge->mask |= BRNF_PKT_TYPE;
864 }
865
Patrick McHardyfc385822007-05-03 03:36:16 -0700866 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200868 if (pf == PF_INET)
869 skb->protocol = htons(ETH_P_IP);
870 else
871 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800873 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700874 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
876 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877}
878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/* IP/SABOTAGE *****************************************************/
880/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
881 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700882static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800883 const struct net_device *in,
884 const struct net_device *out,
885 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700887 if (skb->nf_bridge &&
888 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 return NF_STOP;
890 }
891
892 return NF_ACCEPT;
893}
894
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200895/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
896 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800897static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000898 {
899 .hook = br_nf_pre_routing,
900 .owner = THIS_MODULE,
901 .pf = PF_BRIDGE,
902 .hooknum = NF_BR_PRE_ROUTING,
903 .priority = NF_BR_PRI_BRNF,
904 },
905 {
906 .hook = br_nf_local_in,
907 .owner = THIS_MODULE,
908 .pf = PF_BRIDGE,
909 .hooknum = NF_BR_LOCAL_IN,
910 .priority = NF_BR_PRI_BRNF,
911 },
912 {
913 .hook = br_nf_forward_ip,
914 .owner = THIS_MODULE,
915 .pf = PF_BRIDGE,
916 .hooknum = NF_BR_FORWARD,
917 .priority = NF_BR_PRI_BRNF - 1,
918 },
919 {
920 .hook = br_nf_forward_arp,
921 .owner = THIS_MODULE,
922 .pf = PF_BRIDGE,
923 .hooknum = NF_BR_FORWARD,
924 .priority = NF_BR_PRI_BRNF,
925 },
926 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000927 .hook = br_nf_post_routing,
928 .owner = THIS_MODULE,
929 .pf = PF_BRIDGE,
930 .hooknum = NF_BR_POST_ROUTING,
931 .priority = NF_BR_PRI_LAST,
932 },
933 {
934 .hook = ip_sabotage_in,
935 .owner = THIS_MODULE,
936 .pf = PF_INET,
937 .hooknum = NF_INET_PRE_ROUTING,
938 .priority = NF_IP_PRI_FIRST,
939 },
940 {
941 .hook = ip_sabotage_in,
942 .owner = THIS_MODULE,
943 .pf = PF_INET6,
944 .hooknum = NF_INET_PRE_ROUTING,
945 .priority = NF_IP6_PRI_FIRST,
946 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947};
948
949#ifdef CONFIG_SYSCTL
950static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700951int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800952 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 int ret;
955
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700956 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
958 if (write && *(int *)(ctl->data))
959 *(int *)(ctl->data) = 1;
960 return ret;
961}
962
963static ctl_table brnf_table[] = {
964 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 .procname = "bridge-nf-call-arptables",
966 .data = &brnf_call_arptables,
967 .maxlen = sizeof(int),
968 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800969 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 },
971 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 .procname = "bridge-nf-call-iptables",
973 .data = &brnf_call_iptables,
974 .maxlen = sizeof(int),
975 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800976 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 },
978 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 .procname = "bridge-nf-call-ip6tables",
980 .data = &brnf_call_ip6tables,
981 .maxlen = sizeof(int),
982 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800983 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984 },
985 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 .procname = "bridge-nf-filter-vlan-tagged",
987 .data = &brnf_filter_vlan_tagged,
988 .maxlen = sizeof(int),
989 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800990 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991 },
Michael Milner516299d2007-04-12 22:14:23 -0700992 {
Michael Milner516299d2007-04-12 22:14:23 -0700993 .procname = "bridge-nf-filter-pppoe-tagged",
994 .data = &brnf_filter_pppoe_tagged,
995 .maxlen = sizeof(int),
996 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800997 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -0700998 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800999 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000};
1001
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001002static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001003 { .procname = "net", },
1004 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001005 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006};
1007#endif
1008
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001009int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001011 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
Eric Dumazetfc66f952010-10-08 06:37:34 +00001013 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001014 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001016
1017 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1018 if (ret < 0) {
1019 dst_entries_destroy(&fake_dst_ops);
1020 return ret;
1021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001023 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001025 printk(KERN_WARNING
1026 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001027 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001028 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001029 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 }
1031#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 return 0;
1034}
1035
1036void br_netfilter_fini(void)
1037{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001038 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039#ifdef CONFIG_SYSCTL
1040 unregister_sysctl_table(brnf_sysctl_header);
1041#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001042 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043}