blob: 865fd7634b673d4233c8a6758e2426db55696514 [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
107static struct dst_ops fake_dst_ops = {
108 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800109 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800110 .update_pmtu = fake_update_pmtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800111};
112
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700113/*
114 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 * Currently, we fill in the PMTU entry because netfilter
116 * refragmentation needs it, and the rt_flags entry because
117 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700118 * require us to fill additional fields.
119 */
120void br_netfilter_rtable_init(struct net_bridge *br)
121{
122 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Changli Gaod8d1f302010-06-10 23:31:35 -0700124 atomic_set(&rt->dst.__refcnt, 1);
125 rt->dst.dev = br->dev;
126 rt->dst.path = &rt->dst;
127 rt->dst.metrics[RTAX_MTU - 1] = 1500;
128 rt->dst.flags = DST_NOXFRM;
129 rt->dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700130}
131
132static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
133{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000134 if (!br_port_exists(dev))
135 return NULL;
136 return &br_port_get_rcu(dev)->br->fake_rtable;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700137}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800139static inline struct net_device *bridge_parent(const struct net_device *dev)
140{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000141 if (!br_port_exists(dev))
142 return NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800143
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000144 return br_port_get_rcu(dev)->br->dev;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800145}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800147static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
148{
149 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
150 if (likely(skb->nf_bridge))
151 atomic_set(&(skb->nf_bridge->use), 1);
152
153 return skb->nf_bridge;
154}
155
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800156static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
157{
158 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
159
160 if (atomic_read(&nf_bridge->use) > 1) {
161 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
162
163 if (tmp) {
164 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
165 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800166 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000167 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800168 nf_bridge = tmp;
169 }
170 return nf_bridge;
171}
172
Patrick McHardyfc385822007-05-03 03:36:16 -0700173static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
174{
175 unsigned int len = nf_bridge_encap_header_len(skb);
176
177 skb_push(skb, len);
178 skb->network_header -= len;
179}
180
181static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
182{
183 unsigned int len = nf_bridge_encap_header_len(skb);
184
185 skb_pull(skb, len);
186 skb->network_header += len;
187}
188
189static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
190{
191 unsigned int len = nf_bridge_encap_header_len(skb);
192
193 skb_pull_rcsum(skb, len);
194 skb->network_header += len;
195}
196
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800197static inline void nf_bridge_save_header(struct sk_buff *skb)
198{
Patrick McHardyfc385822007-05-03 03:36:16 -0700199 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800200
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300201 skb_copy_from_linear_data_offset(skb, -header_size,
202 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800203}
204
Bart De Schuymere179e632010-04-15 12:26:39 +0200205static inline void nf_bridge_update_protocol(struct sk_buff *skb)
206{
207 if (skb->nf_bridge->mask & BRNF_8021Q)
208 skb->protocol = htons(ETH_P_8021Q);
209 else if (skb->nf_bridge->mask & BRNF_PPPoE)
210 skb->protocol = htons(ETH_P_PPP_SES);
211}
212
Bandan Das462fb2a2010-09-19 09:34:33 +0000213/* When handing a packet over to the IP layer
214 * check whether we have a skb that is in the
215 * expected format
216 */
217
stephen hemmingerd0280232010-10-18 14:03:21 +0000218static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000219{
220 struct ip_options *opt;
221 struct iphdr *iph;
222 struct net_device *dev = skb->dev;
223 u32 len;
224
225 iph = ip_hdr(skb);
226 opt = &(IPCB(skb)->opt);
227
228 /* Basic sanity checks */
229 if (iph->ihl < 5 || iph->version != 4)
230 goto inhdr_error;
231
232 if (!pskb_may_pull(skb, iph->ihl*4))
233 goto inhdr_error;
234
235 iph = ip_hdr(skb);
236 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
237 goto inhdr_error;
238
239 len = ntohs(iph->tot_len);
240 if (skb->len < len) {
241 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
242 goto drop;
243 } else if (len < (iph->ihl*4))
244 goto inhdr_error;
245
246 if (pskb_trim_rcsum(skb, len)) {
247 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
248 goto drop;
249 }
250
251 /* Zero out the CB buffer if no options present */
252 if (iph->ihl == 5) {
253 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
254 return 0;
255 }
256
257 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
258 if (ip_options_compile(dev_net(dev), opt, skb))
259 goto inhdr_error;
260
261 /* Check correct handling of SRR option */
262 if (unlikely(opt->srr)) {
263 struct in_device *in_dev = __in_dev_get_rcu(dev);
264 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
265 goto drop;
266
267 if (ip_options_rcv_srr(skb))
268 goto drop;
269 }
270
271 return 0;
272
273inhdr_error:
274 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
275drop:
276 return -1;
277}
278
Bart De Schuymere179e632010-04-15 12:26:39 +0200279/* Fill in the header for fragmented IP packets handled by
280 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700281 */
282int nf_bridge_copy_header(struct sk_buff *skb)
283{
284 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200285 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700286
Bart De Schuymere179e632010-04-15 12:26:39 +0200287 nf_bridge_update_protocol(skb);
288 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700289 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700290 if (err)
291 return err;
292
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300293 skb_copy_to_linear_data_offset(skb, -header_size,
294 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700295 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700296 return 0;
297}
298
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299/* PF_BRIDGE/PRE_ROUTING *********************************************/
300/* Undo the changes made for ip6tables PREROUTING and continue the
301 * bridge PRE_ROUTING hook. */
302static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
303{
304 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000305 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 if (nf_bridge->mask & BRNF_PKT_TYPE) {
308 skb->pkt_type = PACKET_OTHERHOST;
309 nf_bridge->mask ^= BRNF_PKT_TYPE;
310 }
311 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
312
Eric Dumazet511c3f92009-06-02 05:14:27 +0000313 rt = bridge_parent_rtable(nf_bridge->physindev);
314 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700315 kfree_skb(skb);
316 return 0;
317 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200318 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
320 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200321 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700322 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100323 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 br_handle_frame_finish, 1);
325
326 return 0;
327}
328
Bart De Schuymere179e632010-04-15 12:26:39 +0200329/* Obtain the correct destination MAC address, while preserving the original
330 * source MAC address. If we already know this address, we just copy it. If we
331 * don't, we use the neighbour framework to find out. In both cases, we make
332 * sure that br_handle_frame_finish() is called afterwards.
333 */
334static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
335{
336 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
337 struct dst_entry *dst;
338
339 skb->dev = bridge_parent(skb->dev);
340 if (!skb->dev)
341 goto free_skb;
342 dst = skb_dst(skb);
343 if (dst->hh) {
344 neigh_hh_bridge(dst->hh, skb);
345 skb->dev = nf_bridge->physindev;
346 return br_handle_frame_finish(skb);
347 } else if (dst->neighbour) {
348 /* the neighbour function below overwrites the complete
349 * MAC header, so we save the Ethernet source address and
350 * protocol number. */
351 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
352 /* tell br_dev_xmit to continue with forwarding */
353 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
354 return dst->neighbour->output(skb);
355 }
356free_skb:
357 kfree_skb(skb);
358 return 0;
359}
360
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200362 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 *
364 * There are two cases to consider:
365 * 1. The packet was DNAT'ed to a device in the same bridge
366 * port group as it was received on. We can still bridge
367 * the packet.
368 * 2. The packet was DNAT'ed to a different device, either
369 * a non-bridged device or another bridge port group.
370 * The packet will need to be routed.
371 *
372 * The correct way of distinguishing between these two cases is to
373 * call ip_route_input() and to look at skb->dst->dev, which is
374 * changed to the destination device if ip_route_input() succeeds.
375 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200376 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200378 * If the output device equals the logical bridge device the packet
379 * came in on, we can consider this bridging. The corresponding MAC
380 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 * Otherwise, the packet is considered to be routed and we just
382 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800383 * later be passed up to the IP stack to be routed. For a redirected
384 * packet, ip_route_input() will give back the localhost as output device,
385 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200387 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800389 * This can be because the destination address is martian, in which case
390 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200391 * If IP forwarding is disabled, ip_route_input() will fail, while
392 * ip_route_output_key() can return success. The source
393 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200395 * if IP forwarding is enabled. If the output device equals the logical bridge
396 * device, we proceed as if ip_route_input() succeeded. If it differs from the
397 * logical bridge port or if ip_route_output_key() fails we drop the packet.
398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399static int br_nf_pre_routing_finish(struct sk_buff *skb)
400{
401 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700402 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000404 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800405 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (nf_bridge->mask & BRNF_PKT_TYPE) {
408 skb->pkt_type = PACKET_OTHERHOST;
409 nf_bridge->mask ^= BRNF_PKT_TYPE;
410 }
411 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800413 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800414 struct flowi fl = {
415 .nl_u = {
416 .ip4_u = {
417 .daddr = iph->daddr,
418 .saddr = 0,
419 .tos = RT_TOS(iph->tos) },
420 },
421 .proto = 0,
422 };
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200423 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800424
425 /* If err equals -EHOSTUNREACH the error is due to a
426 * martian destination or due to the fact that
427 * forwarding is disabled. For most martian packets,
428 * ip_route_output_key() will fail. It won't fail for 2 types of
429 * martian destinations: loopback destinations and destination
430 * 0.0.0.0. In both cases the packet will be dropped because the
431 * destination is the loopback device and not the bridge. */
432 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
433 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Alexey Dobriyan249b6202008-11-04 14:31:29 +0100435 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700436 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800437 * require ip_forwarding. */
438 if (((struct dst_entry *)rt)->dev == dev) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000439 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 goto bridged_dnat;
441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 dst_release((struct dst_entry *)rt);
443 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800444free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 kfree_skb(skb);
446 return 0;
447 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000448 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200451 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700452 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100453 NF_HOOK_THRESH(NFPROTO_BRIDGE,
454 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 skb, skb->dev, NULL,
456 br_nf_pre_routing_finish_bridge,
457 1);
458 return 0;
459 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800460 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 skb->pkt_type = PACKET_HOST;
462 }
463 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000464 rt = bridge_parent_rtable(nf_bridge->physindev);
465 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700466 kfree_skb(skb);
467 return 0;
468 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200469 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 }
471
472 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200473 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700474 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100475 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 br_handle_frame_finish, 1);
477
478 return 0;
479}
480
481/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800482static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
484 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
485
486 if (skb->pkt_type == PACKET_OTHERHOST) {
487 skb->pkt_type = PACKET_HOST;
488 nf_bridge->mask |= BRNF_PKT_TYPE;
489 }
490
491 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
492 nf_bridge->physindev = skb->dev;
493 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200494 if (skb->protocol == htons(ETH_P_8021Q))
495 nf_bridge->mask |= BRNF_8021Q;
496 else if (skb->protocol == htons(ETH_P_PPP_SES))
497 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800498
499 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500}
501
502/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
503static int check_hbh_len(struct sk_buff *skb)
504{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700505 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700507 const unsigned char *nh = skb_network_header(skb);
508 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800509 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 if ((raw + len) - skb->data > skb_headlen(skb))
512 goto bad;
513
514 off += 2;
515 len -= 2;
516
517 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700518 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700520 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 case IPV6_TLV_PAD0:
522 optlen = 1;
523 break;
524
525 case IPV6_TLV_PADN:
526 break;
527
528 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700529 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700531 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800532 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700533 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800534 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
536 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800537 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800538 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800539 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700540 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 break;
542 default:
543 if (optlen > len)
544 goto bad;
545 break;
546 }
547 off += optlen;
548 len -= optlen;
549 }
550 if (len == 0)
551 return 0;
552bad:
553 return -1;
554
555}
556
557/* Replicate the checks that IPv6 does on packet reception and pass the packet
558 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
559static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800560 struct sk_buff *skb,
561 const struct net_device *in,
562 const struct net_device *out,
563 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 struct ipv6hdr *hdr;
566 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (skb->len < sizeof(struct ipv6hdr))
569 goto inhdr_error;
570
571 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
572 goto inhdr_error;
573
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700574 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 if (hdr->version != 6)
577 goto inhdr_error;
578
579 pkt_len = ntohs(hdr->payload_len);
580
581 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
582 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
583 goto inhdr_error;
Herbert Xub38dfee2006-06-09 16:13:01 -0700584 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
585 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 }
587 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800588 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800590 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800591 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800593 if (!setup_pre_routing(skb))
594 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Bart De Schuymere179e632010-04-15 12:26:39 +0200596 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100597 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 br_nf_pre_routing_finish_ipv6);
599
600 return NF_STOLEN;
601
602inhdr_error:
603 return NF_DROP;
604}
605
606/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
607 * Replicate the checks that IPv4 does on packet reception.
608 * Set skb->dev to the bridge device (i.e. parent of the
609 * receiving device) to make netfilter happy, the REDIRECT
610 * target in particular. Save the original destination IP
611 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700612static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800613 const struct net_device *in,
614 const struct net_device *out,
615 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200617 struct net_bridge_port *p;
618 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700619 __u32 len = nf_bridge_encap_header_len(skb);
620
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700621 if (unlikely(!pskb_may_pull(skb, len)))
622 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
David S. Millere490c1de2010-07-02 22:42:06 -0700624 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200625 if (p == NULL)
626 goto out;
627 br = p->br;
628
Michael Milner516299d2007-04-12 22:14:23 -0700629 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
630 IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200631 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200633
Patrick McHardyfc385822007-05-03 03:36:16 -0700634 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
636 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200637
638 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Michael Milner516299d2007-04-12 22:14:23 -0700641 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
642 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 return NF_ACCEPT;
644
Patrick McHardyfc385822007-05-03 03:36:16 -0700645 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Bandan Das462fb2a2010-09-19 09:34:33 +0000647 if (br_parse_ip_options(skb))
648 /* Drop invalid packet */
649 goto out;
Herbert Xu17762062010-07-05 21:29:28 +0000650
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800651 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800652 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800654 if (!setup_pre_routing(skb))
655 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200657 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100659 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 br_nf_pre_routing_finish);
661
662 return NF_STOLEN;
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664out:
665 return NF_DROP;
666}
667
668
669/* PF_BRIDGE/LOCAL_IN ************************************************/
670/* The packet is locally destined, which requires a real
671 * dst_entry, so detach the fake one. On the way up, the
672 * packet would pass through PRE_ROUTING again (which already
673 * took place when the packet entered the bridge), but we
674 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
675 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700676static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800677 const struct net_device *in,
678 const struct net_device *out,
679 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000681 struct rtable *rt = skb_rtable(skb);
682
Eric Dumazetadf30902009-06-02 05:19:30 +0000683 if (rt && rt == bridge_parent_rtable(in))
684 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
686 return NF_ACCEPT;
687}
688
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689/* PF_BRIDGE/FORWARD *************************************************/
690static int br_nf_forward_finish(struct sk_buff *skb)
691{
692 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
693 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800695 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 in = nf_bridge->physindev;
697 if (nf_bridge->mask & BRNF_PKT_TYPE) {
698 skb->pkt_type = PACKET_OTHERHOST;
699 nf_bridge->mask ^= BRNF_PKT_TYPE;
700 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200701 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 } else {
703 in = *((struct net_device **)(skb->cb));
704 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700705 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200706
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100707 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800708 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return 0;
710}
711
712/* This is the 'purely bridged' case. For IP, we pass the packet to
713 * netfilter with indev and outdev set to the bridge device,
714 * but we are still able to filter on the 'real' indev/outdev
715 * because of the physdev module. For ARP, indev and outdev are the
716 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700717static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800718 const struct net_device *in,
719 const struct net_device *out,
720 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800723 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200724 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 if (!skb->nf_bridge)
727 return NF_ACCEPT;
728
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800729 /* Need exclusive nf_bridge_info since we might have multiple
730 * different physoutdevs. */
731 if (!nf_bridge_unshare(skb))
732 return NF_DROP;
733
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800734 parent = bridge_parent(out);
735 if (!parent)
736 return NF_DROP;
737
Michael Milner516299d2007-04-12 22:14:23 -0700738 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
739 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000741 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
742 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000744 else
745 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Herbert Xu3db05fe2007-10-15 00:53:15 -0700747 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 nf_bridge = skb->nf_bridge;
750 if (skb->pkt_type == PACKET_OTHERHOST) {
751 skb->pkt_type = PACKET_HOST;
752 nf_bridge->mask |= BRNF_PKT_TYPE;
753 }
754
755 /* The physdev module checks on this */
756 nf_bridge->mask |= BRNF_BRIDGED;
757 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200758 if (pf == PF_INET)
759 skb->protocol = htons(ETH_P_IP);
760 else
761 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800763 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800764 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 return NF_STOLEN;
767}
768
Herbert Xu3db05fe2007-10-15 00:53:15 -0700769static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800770 const struct net_device *in,
771 const struct net_device *out,
772 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200774 struct net_bridge_port *p;
775 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct net_device **d = (struct net_device **)(skb->cb);
777
David S. Millere490c1de2010-07-02 22:42:06 -0700778 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200779 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200781 br = p->br;
782
783 if (!brnf_call_arptables && !br->nf_call_arptables)
784 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800786 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800787 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700789 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
791
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300792 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700793 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700794 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 return NF_ACCEPT;
796 }
797 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700798 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 (struct net_device *)out, br_nf_forward_finish);
800
801 return NF_STOLEN;
802}
803
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200804#if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700805static int br_nf_dev_queue_xmit(struct sk_buff *skb)
806{
Bandan Das462fb2a2010-09-19 09:34:33 +0000807 int ret;
808
Bart De Schuymere179e632010-04-15 12:26:39 +0200809 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200810 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700811 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000812 if (br_parse_ip_options(skb))
813 /* Drop invalid packet */
814 return NF_DROP;
815 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700816 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000817 ret = br_dev_queue_push_xmit(skb);
818
819 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700820}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200821#else
822static int br_nf_dev_queue_xmit(struct sk_buff *skb)
823{
824 return br_dev_queue_push_xmit(skb);
825}
826#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
828/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700829static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800830 const struct net_device *in,
831 const struct net_device *out,
832 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700834 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200836 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200838 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800839 return NF_ACCEPT;
840
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800841 if (!realoutdev)
842 return NF_DROP;
843
Michael Milner516299d2007-04-12 22:14:23 -0700844 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
845 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000847 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
848 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000850 else
851 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
854 * about the value of skb->pkt_type. */
855 if (skb->pkt_type == PACKET_OTHERHOST) {
856 skb->pkt_type = PACKET_HOST;
857 nf_bridge->mask |= BRNF_PKT_TYPE;
858 }
859
Patrick McHardyfc385822007-05-03 03:36:16 -0700860 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200862 if (pf == PF_INET)
863 skb->protocol = htons(ETH_P_IP);
864 else
865 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800867 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700868 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869
870 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873/* IP/SABOTAGE *****************************************************/
874/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
875 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700876static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800877 const struct net_device *in,
878 const struct net_device *out,
879 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700881 if (skb->nf_bridge &&
882 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return NF_STOP;
884 }
885
886 return NF_ACCEPT;
887}
888
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200889/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
890 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800891static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000892 {
893 .hook = br_nf_pre_routing,
894 .owner = THIS_MODULE,
895 .pf = PF_BRIDGE,
896 .hooknum = NF_BR_PRE_ROUTING,
897 .priority = NF_BR_PRI_BRNF,
898 },
899 {
900 .hook = br_nf_local_in,
901 .owner = THIS_MODULE,
902 .pf = PF_BRIDGE,
903 .hooknum = NF_BR_LOCAL_IN,
904 .priority = NF_BR_PRI_BRNF,
905 },
906 {
907 .hook = br_nf_forward_ip,
908 .owner = THIS_MODULE,
909 .pf = PF_BRIDGE,
910 .hooknum = NF_BR_FORWARD,
911 .priority = NF_BR_PRI_BRNF - 1,
912 },
913 {
914 .hook = br_nf_forward_arp,
915 .owner = THIS_MODULE,
916 .pf = PF_BRIDGE,
917 .hooknum = NF_BR_FORWARD,
918 .priority = NF_BR_PRI_BRNF,
919 },
920 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000921 .hook = br_nf_post_routing,
922 .owner = THIS_MODULE,
923 .pf = PF_BRIDGE,
924 .hooknum = NF_BR_POST_ROUTING,
925 .priority = NF_BR_PRI_LAST,
926 },
927 {
928 .hook = ip_sabotage_in,
929 .owner = THIS_MODULE,
930 .pf = PF_INET,
931 .hooknum = NF_INET_PRE_ROUTING,
932 .priority = NF_IP_PRI_FIRST,
933 },
934 {
935 .hook = ip_sabotage_in,
936 .owner = THIS_MODULE,
937 .pf = PF_INET6,
938 .hooknum = NF_INET_PRE_ROUTING,
939 .priority = NF_IP6_PRI_FIRST,
940 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941};
942
943#ifdef CONFIG_SYSCTL
944static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700945int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800946 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947{
948 int ret;
949
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700950 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951
952 if (write && *(int *)(ctl->data))
953 *(int *)(ctl->data) = 1;
954 return ret;
955}
956
957static ctl_table brnf_table[] = {
958 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 .procname = "bridge-nf-call-arptables",
960 .data = &brnf_call_arptables,
961 .maxlen = sizeof(int),
962 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800963 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 },
965 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 .procname = "bridge-nf-call-iptables",
967 .data = &brnf_call_iptables,
968 .maxlen = sizeof(int),
969 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800970 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 },
972 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 .procname = "bridge-nf-call-ip6tables",
974 .data = &brnf_call_ip6tables,
975 .maxlen = sizeof(int),
976 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800977 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 },
979 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 .procname = "bridge-nf-filter-vlan-tagged",
981 .data = &brnf_filter_vlan_tagged,
982 .maxlen = sizeof(int),
983 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800984 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 },
Michael Milner516299d2007-04-12 22:14:23 -0700986 {
Michael Milner516299d2007-04-12 22:14:23 -0700987 .procname = "bridge-nf-filter-pppoe-tagged",
988 .data = &brnf_filter_pppoe_tagged,
989 .maxlen = sizeof(int),
990 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800991 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -0700992 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800993 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994};
995
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800996static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800997 { .procname = "net", },
998 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800999 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000};
1001#endif
1002
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001003int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001005 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Eric Dumazetfc66f952010-10-08 06:37:34 +00001007 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001008 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001010
1011 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1012 if (ret < 0) {
1013 dst_entries_destroy(&fake_dst_ops);
1014 return ret;
1015 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001017 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001019 printk(KERN_WARNING
1020 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001021 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001022 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001023 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 }
1025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 return 0;
1028}
1029
1030void br_netfilter_fini(void)
1031{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001032 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#ifdef CONFIG_SYSCTL
1034 unregister_sysctl_table(brnf_sysctl_header);
1035#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001036 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037}