blob: 45b57b173f70ff2ca1c6b37cabc4e0ef6681e13f [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;
David S. Millerdefb3512010-12-08 21:16:57 -0800127 dst_metric_set(&rt->dst, RTAX_MTU, 1500);
Changli Gaod8d1f302010-06-10 23:31:35 -0700128 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{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000134 struct net_bridge_port *port;
135
136 port = br_port_get_rcu(dev);
137 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700138}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800140static inline struct net_device *bridge_parent(const struct net_device *dev)
141{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000142 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800143
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000144 port = br_port_get_rcu(dev);
145 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800148static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
149{
150 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
151 if (likely(skb->nf_bridge))
152 atomic_set(&(skb->nf_bridge->use), 1);
153
154 return skb->nf_bridge;
155}
156
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800157static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
158{
159 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
160
161 if (atomic_read(&nf_bridge->use) > 1) {
162 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
163
164 if (tmp) {
165 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
166 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800167 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000168 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800169 nf_bridge = tmp;
170 }
171 return nf_bridge;
172}
173
Patrick McHardyfc385822007-05-03 03:36:16 -0700174static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
175{
176 unsigned int len = nf_bridge_encap_header_len(skb);
177
178 skb_push(skb, len);
179 skb->network_header -= len;
180}
181
182static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
183{
184 unsigned int len = nf_bridge_encap_header_len(skb);
185
186 skb_pull(skb, len);
187 skb->network_header += len;
188}
189
190static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
191{
192 unsigned int len = nf_bridge_encap_header_len(skb);
193
194 skb_pull_rcsum(skb, len);
195 skb->network_header += len;
196}
197
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800198static inline void nf_bridge_save_header(struct sk_buff *skb)
199{
Patrick McHardyfc385822007-05-03 03:36:16 -0700200 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800201
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300202 skb_copy_from_linear_data_offset(skb, -header_size,
203 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800204}
205
Bart De Schuymere179e632010-04-15 12:26:39 +0200206static inline void nf_bridge_update_protocol(struct sk_buff *skb)
207{
208 if (skb->nf_bridge->mask & BRNF_8021Q)
209 skb->protocol = htons(ETH_P_8021Q);
210 else if (skb->nf_bridge->mask & BRNF_PPPoE)
211 skb->protocol = htons(ETH_P_PPP_SES);
212}
213
Bandan Das462fb2a2010-09-19 09:34:33 +0000214/* When handing a packet over to the IP layer
215 * check whether we have a skb that is in the
216 * expected format
217 */
218
stephen hemmingerd0280232010-10-18 14:03:21 +0000219static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000220{
221 struct ip_options *opt;
222 struct iphdr *iph;
223 struct net_device *dev = skb->dev;
224 u32 len;
225
226 iph = ip_hdr(skb);
227 opt = &(IPCB(skb)->opt);
228
229 /* Basic sanity checks */
230 if (iph->ihl < 5 || iph->version != 4)
231 goto inhdr_error;
232
233 if (!pskb_may_pull(skb, iph->ihl*4))
234 goto inhdr_error;
235
236 iph = ip_hdr(skb);
237 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
238 goto inhdr_error;
239
240 len = ntohs(iph->tot_len);
241 if (skb->len < len) {
242 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
243 goto drop;
244 } else if (len < (iph->ihl*4))
245 goto inhdr_error;
246
247 if (pskb_trim_rcsum(skb, len)) {
248 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
249 goto drop;
250 }
251
252 /* Zero out the CB buffer if no options present */
253 if (iph->ihl == 5) {
254 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
255 return 0;
256 }
257
258 opt->optlen = iph->ihl*4 - sizeof(struct iphdr);
259 if (ip_options_compile(dev_net(dev), opt, skb))
260 goto inhdr_error;
261
262 /* Check correct handling of SRR option */
263 if (unlikely(opt->srr)) {
264 struct in_device *in_dev = __in_dev_get_rcu(dev);
265 if (in_dev && !IN_DEV_SOURCE_ROUTE(in_dev))
266 goto drop;
267
268 if (ip_options_rcv_srr(skb))
269 goto drop;
270 }
271
272 return 0;
273
274inhdr_error:
275 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
276drop:
277 return -1;
278}
279
Bart De Schuymere179e632010-04-15 12:26:39 +0200280/* Fill in the header for fragmented IP packets handled by
281 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700282 */
283int nf_bridge_copy_header(struct sk_buff *skb)
284{
285 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200286 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700287
Bart De Schuymere179e632010-04-15 12:26:39 +0200288 nf_bridge_update_protocol(skb);
289 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700290 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700291 if (err)
292 return err;
293
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300294 skb_copy_to_linear_data_offset(skb, -header_size,
295 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700296 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700297 return 0;
298}
299
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300/* PF_BRIDGE/PRE_ROUTING *********************************************/
301/* Undo the changes made for ip6tables PREROUTING and continue the
302 * bridge PRE_ROUTING hook. */
303static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
304{
305 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000306 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 if (nf_bridge->mask & BRNF_PKT_TYPE) {
309 skb->pkt_type = PACKET_OTHERHOST;
310 nf_bridge->mask ^= BRNF_PKT_TYPE;
311 }
312 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
313
Eric Dumazet511c3f92009-06-02 05:14:27 +0000314 rt = bridge_parent_rtable(nf_bridge->physindev);
315 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700316 kfree_skb(skb);
317 return 0;
318 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200319 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
321 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200322 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700323 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100324 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 br_handle_frame_finish, 1);
326
327 return 0;
328}
329
Bart De Schuymere179e632010-04-15 12:26:39 +0200330/* Obtain the correct destination MAC address, while preserving the original
331 * source MAC address. If we already know this address, we just copy it. If we
332 * don't, we use the neighbour framework to find out. In both cases, we make
333 * sure that br_handle_frame_finish() is called afterwards.
334 */
335static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
336{
337 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
338 struct dst_entry *dst;
339
340 skb->dev = bridge_parent(skb->dev);
341 if (!skb->dev)
342 goto free_skb;
343 dst = skb_dst(skb);
344 if (dst->hh) {
345 neigh_hh_bridge(dst->hh, skb);
346 skb->dev = nf_bridge->physindev;
347 return br_handle_frame_finish(skb);
348 } else if (dst->neighbour) {
349 /* the neighbour function below overwrites the complete
350 * MAC header, so we save the Ethernet source address and
351 * protocol number. */
352 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
353 /* tell br_dev_xmit to continue with forwarding */
354 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
355 return dst->neighbour->output(skb);
356 }
357free_skb:
358 kfree_skb(skb);
359 return 0;
360}
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200363 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
365 * There are two cases to consider:
366 * 1. The packet was DNAT'ed to a device in the same bridge
367 * port group as it was received on. We can still bridge
368 * the packet.
369 * 2. The packet was DNAT'ed to a different device, either
370 * a non-bridged device or another bridge port group.
371 * The packet will need to be routed.
372 *
373 * The correct way of distinguishing between these two cases is to
374 * call ip_route_input() and to look at skb->dst->dev, which is
375 * changed to the destination device if ip_route_input() succeeds.
376 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200377 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200379 * If the output device equals the logical bridge device the packet
380 * came in on, we can consider this bridging. The corresponding MAC
381 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 * Otherwise, the packet is considered to be routed and we just
383 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800384 * later be passed up to the IP stack to be routed. For a redirected
385 * packet, ip_route_input() will give back the localhost as output device,
386 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200388 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800390 * This can be because the destination address is martian, in which case
391 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200392 * If IP forwarding is disabled, ip_route_input() will fail, while
393 * ip_route_output_key() can return success. The source
394 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200396 * if IP forwarding is enabled. If the output device equals the logical bridge
397 * device, we proceed as if ip_route_input() succeeded. If it differs from the
398 * logical bridge port or if ip_route_output_key() fails we drop the packet.
399 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400static int br_nf_pre_routing_finish(struct sk_buff *skb)
401{
402 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700403 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000405 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800406 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (nf_bridge->mask & BRNF_PKT_TYPE) {
409 skb->pkt_type = PACKET_OTHERHOST;
410 nf_bridge->mask ^= BRNF_PKT_TYPE;
411 }
412 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800414 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800415 struct flowi fl = {
Changli Gao58116622010-11-12 18:43:55 +0000416 .fl4_dst = iph->daddr,
417 .fl4_tos = RT_TOS(iph->tos),
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800418 };
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200419 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800420
421 /* If err equals -EHOSTUNREACH the error is due to a
422 * martian destination or due to the fact that
423 * forwarding is disabled. For most martian packets,
424 * ip_route_output_key() will fail. It won't fail for 2 types of
425 * martian destinations: loopback destinations and destination
426 * 0.0.0.0. In both cases the packet will be dropped because the
427 * destination is the loopback device and not the bridge. */
428 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
429 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
David S. Millerb23dd4f2011-03-02 14:31:35 -0800431 rt = ip_route_output_key(dev_net(dev), &fl);
432 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700433 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800434 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800435 if (rt->dst.dev == dev) {
436 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 goto bridged_dnat;
438 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800439 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800441free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 kfree_skb(skb);
443 return 0;
444 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000445 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200448 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700449 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100450 NF_HOOK_THRESH(NFPROTO_BRIDGE,
451 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 skb, skb->dev, NULL,
453 br_nf_pre_routing_finish_bridge,
454 1);
455 return 0;
456 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800457 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 skb->pkt_type = PACKET_HOST;
459 }
460 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000461 rt = bridge_parent_rtable(nf_bridge->physindev);
462 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700463 kfree_skb(skb);
464 return 0;
465 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200466 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 }
468
469 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200470 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700471 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100472 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 br_handle_frame_finish, 1);
474
475 return 0;
476}
477
478/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800479static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
481 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
482
483 if (skb->pkt_type == PACKET_OTHERHOST) {
484 skb->pkt_type = PACKET_HOST;
485 nf_bridge->mask |= BRNF_PKT_TYPE;
486 }
487
488 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
489 nf_bridge->physindev = skb->dev;
490 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200491 if (skb->protocol == htons(ETH_P_8021Q))
492 nf_bridge->mask |= BRNF_8021Q;
493 else if (skb->protocol == htons(ETH_P_PPP_SES))
494 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800495
496 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
498
499/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
500static int check_hbh_len(struct sk_buff *skb)
501{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700502 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700504 const unsigned char *nh = skb_network_header(skb);
505 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800506 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if ((raw + len) - skb->data > skb_headlen(skb))
509 goto bad;
510
511 off += 2;
512 len -= 2;
513
514 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700515 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700517 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 case IPV6_TLV_PAD0:
519 optlen = 1;
520 break;
521
522 case IPV6_TLV_PADN:
523 break;
524
525 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700526 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700528 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800529 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700530 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800531 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
533 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800534 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800535 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800536 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700537 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 break;
539 default:
540 if (optlen > len)
541 goto bad;
542 break;
543 }
544 off += optlen;
545 len -= optlen;
546 }
547 if (len == 0)
548 return 0;
549bad:
550 return -1;
551
552}
553
554/* Replicate the checks that IPv6 does on packet reception and pass the packet
555 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
556static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800557 struct sk_buff *skb,
558 const struct net_device *in,
559 const struct net_device *out,
560 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561{
562 struct ipv6hdr *hdr;
563 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
565 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000566 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000569 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700571 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000574 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575
576 pkt_len = ntohs(hdr->payload_len);
577
578 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
579 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000580 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700581 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000582 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
584 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000585 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800587 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800588 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800590 if (!setup_pre_routing(skb))
591 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592
Bart De Schuymere179e632010-04-15 12:26:39 +0200593 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100594 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 br_nf_pre_routing_finish_ipv6);
596
597 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
601 * Replicate the checks that IPv4 does on packet reception.
602 * Set skb->dev to the bridge device (i.e. parent of the
603 * receiving device) to make netfilter happy, the REDIRECT
604 * target in particular. Save the original destination IP
605 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700606static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800607 const struct net_device *in,
608 const struct net_device *out,
609 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200611 struct net_bridge_port *p;
612 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700613 __u32 len = nf_bridge_encap_header_len(skb);
614
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700615 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000616 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617
David S. Millere490c1de2010-07-02 22:42:06 -0700618 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200619 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000620 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200621 br = p->br;
622
Michael Milner516299d2007-04-12 22:14:23 -0700623 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
624 IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200625 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200627
Patrick McHardyfc385822007-05-03 03:36:16 -0700628 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
630 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200631
632 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Michael Milner516299d2007-04-12 22:14:23 -0700635 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
636 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return NF_ACCEPT;
638
Patrick McHardyfc385822007-05-03 03:36:16 -0700639 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Bandan Das462fb2a2010-09-19 09:34:33 +0000641 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000642 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000643
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800644 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800645 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800647 if (!setup_pre_routing(skb))
648 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200650 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100652 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 br_nf_pre_routing_finish);
654
655 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656}
657
658
659/* PF_BRIDGE/LOCAL_IN ************************************************/
660/* The packet is locally destined, which requires a real
661 * dst_entry, so detach the fake one. On the way up, the
662 * packet would pass through PRE_ROUTING again (which already
663 * took place when the packet entered the bridge), but we
664 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
665 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700666static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800667 const struct net_device *in,
668 const struct net_device *out,
669 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000671 struct rtable *rt = skb_rtable(skb);
672
Eric Dumazetadf30902009-06-02 05:19:30 +0000673 if (rt && rt == bridge_parent_rtable(in))
674 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
676 return NF_ACCEPT;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/* PF_BRIDGE/FORWARD *************************************************/
680static int br_nf_forward_finish(struct sk_buff *skb)
681{
682 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
683 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800685 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 in = nf_bridge->physindev;
687 if (nf_bridge->mask & BRNF_PKT_TYPE) {
688 skb->pkt_type = PACKET_OTHERHOST;
689 nf_bridge->mask ^= BRNF_PKT_TYPE;
690 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200691 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 } else {
693 in = *((struct net_device **)(skb->cb));
694 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700695 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200696
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100697 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800698 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 return 0;
700}
701
702/* This is the 'purely bridged' case. For IP, we pass the packet to
703 * netfilter with indev and outdev set to the bridge device,
704 * but we are still able to filter on the 'real' indev/outdev
705 * because of the physdev module. For ARP, indev and outdev are the
706 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700707static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800708 const struct net_device *in,
709 const struct net_device *out,
710 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800713 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200714 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716 if (!skb->nf_bridge)
717 return NF_ACCEPT;
718
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800719 /* Need exclusive nf_bridge_info since we might have multiple
720 * different physoutdevs. */
721 if (!nf_bridge_unshare(skb))
722 return NF_DROP;
723
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800724 parent = bridge_parent(out);
725 if (!parent)
726 return NF_DROP;
727
Michael Milner516299d2007-04-12 22:14:23 -0700728 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
729 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000731 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
732 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000734 else
735 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736
Herbert Xu3db05fe2007-10-15 00:53:15 -0700737 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 nf_bridge = skb->nf_bridge;
740 if (skb->pkt_type == PACKET_OTHERHOST) {
741 skb->pkt_type = PACKET_HOST;
742 nf_bridge->mask |= BRNF_PKT_TYPE;
743 }
744
745 /* The physdev module checks on this */
746 nf_bridge->mask |= BRNF_BRIDGED;
747 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200748 if (pf == PF_INET)
749 skb->protocol = htons(ETH_P_IP);
750 else
751 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800753 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800754 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755
756 return NF_STOLEN;
757}
758
Herbert Xu3db05fe2007-10-15 00:53:15 -0700759static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800760 const struct net_device *in,
761 const struct net_device *out,
762 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200764 struct net_bridge_port *p;
765 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct net_device **d = (struct net_device **)(skb->cb);
767
David S. Millere490c1de2010-07-02 22:42:06 -0700768 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200769 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200771 br = p->br;
772
773 if (!brnf_call_arptables && !br->nf_call_arptables)
774 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800776 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800777 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700779 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300782 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700783 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700784 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return NF_ACCEPT;
786 }
787 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700788 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 (struct net_device *)out, br_nf_forward_finish);
790
791 return NF_STOLEN;
792}
793
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200794#if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700795static int br_nf_dev_queue_xmit(struct sk_buff *skb)
796{
Bandan Das462fb2a2010-09-19 09:34:33 +0000797 int ret;
798
Bart De Schuymere179e632010-04-15 12:26:39 +0200799 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200800 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
David S. Miller87f94b42010-09-01 18:06:39 -0700801 !skb_is_gso(skb)) {
Bandan Das462fb2a2010-09-19 09:34:33 +0000802 if (br_parse_ip_options(skb))
803 /* Drop invalid packet */
804 return NF_DROP;
805 ret = ip_fragment(skb, br_dev_queue_push_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700806 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000807 ret = br_dev_queue_push_xmit(skb);
808
809 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700810}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200811#else
812static int br_nf_dev_queue_xmit(struct sk_buff *skb)
813{
814 return br_dev_queue_push_xmit(skb);
815}
816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
818/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700819static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800820 const struct net_device *in,
821 const struct net_device *out,
822 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700824 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200826 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200828 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800829 return NF_ACCEPT;
830
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800831 if (!realoutdev)
832 return NF_DROP;
833
Michael Milner516299d2007-04-12 22:14:23 -0700834 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
835 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000837 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
838 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000840 else
841 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
844 * about the value of skb->pkt_type. */
845 if (skb->pkt_type == PACKET_OTHERHOST) {
846 skb->pkt_type = PACKET_HOST;
847 nf_bridge->mask |= BRNF_PKT_TYPE;
848 }
849
Patrick McHardyfc385822007-05-03 03:36:16 -0700850 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200852 if (pf == PF_INET)
853 skb->protocol = htons(ETH_P_IP);
854 else
855 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800857 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700858 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861}
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/* IP/SABOTAGE *****************************************************/
864/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
865 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700866static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800867 const struct net_device *in,
868 const struct net_device *out,
869 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700871 if (skb->nf_bridge &&
872 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 return NF_STOP;
874 }
875
876 return NF_ACCEPT;
877}
878
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200879/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
880 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800881static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000882 {
883 .hook = br_nf_pre_routing,
884 .owner = THIS_MODULE,
885 .pf = PF_BRIDGE,
886 .hooknum = NF_BR_PRE_ROUTING,
887 .priority = NF_BR_PRI_BRNF,
888 },
889 {
890 .hook = br_nf_local_in,
891 .owner = THIS_MODULE,
892 .pf = PF_BRIDGE,
893 .hooknum = NF_BR_LOCAL_IN,
894 .priority = NF_BR_PRI_BRNF,
895 },
896 {
897 .hook = br_nf_forward_ip,
898 .owner = THIS_MODULE,
899 .pf = PF_BRIDGE,
900 .hooknum = NF_BR_FORWARD,
901 .priority = NF_BR_PRI_BRNF - 1,
902 },
903 {
904 .hook = br_nf_forward_arp,
905 .owner = THIS_MODULE,
906 .pf = PF_BRIDGE,
907 .hooknum = NF_BR_FORWARD,
908 .priority = NF_BR_PRI_BRNF,
909 },
910 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000911 .hook = br_nf_post_routing,
912 .owner = THIS_MODULE,
913 .pf = PF_BRIDGE,
914 .hooknum = NF_BR_POST_ROUTING,
915 .priority = NF_BR_PRI_LAST,
916 },
917 {
918 .hook = ip_sabotage_in,
919 .owner = THIS_MODULE,
920 .pf = PF_INET,
921 .hooknum = NF_INET_PRE_ROUTING,
922 .priority = NF_IP_PRI_FIRST,
923 },
924 {
925 .hook = ip_sabotage_in,
926 .owner = THIS_MODULE,
927 .pf = PF_INET6,
928 .hooknum = NF_INET_PRE_ROUTING,
929 .priority = NF_IP6_PRI_FIRST,
930 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931};
932
933#ifdef CONFIG_SYSCTL
934static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700935int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800936 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937{
938 int ret;
939
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700940 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941
942 if (write && *(int *)(ctl->data))
943 *(int *)(ctl->data) = 1;
944 return ret;
945}
946
947static ctl_table brnf_table[] = {
948 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 .procname = "bridge-nf-call-arptables",
950 .data = &brnf_call_arptables,
951 .maxlen = sizeof(int),
952 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800953 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 },
955 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 .procname = "bridge-nf-call-iptables",
957 .data = &brnf_call_iptables,
958 .maxlen = sizeof(int),
959 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800960 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 },
962 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963 .procname = "bridge-nf-call-ip6tables",
964 .data = &brnf_call_ip6tables,
965 .maxlen = sizeof(int),
966 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800967 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 },
969 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 .procname = "bridge-nf-filter-vlan-tagged",
971 .data = &brnf_filter_vlan_tagged,
972 .maxlen = sizeof(int),
973 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800974 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 },
Michael Milner516299d2007-04-12 22:14:23 -0700976 {
Michael Milner516299d2007-04-12 22:14:23 -0700977 .procname = "bridge-nf-filter-pppoe-tagged",
978 .data = &brnf_filter_pppoe_tagged,
979 .maxlen = sizeof(int),
980 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800981 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -0700982 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800983 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700984};
985
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800986static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800987 { .procname = "net", },
988 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800989 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990};
991#endif
992
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800993int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994{
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800995 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996
Eric Dumazetfc66f952010-10-08 06:37:34 +0000997 ret = dst_entries_init(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800998 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001000
1001 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1002 if (ret < 0) {
1003 dst_entries_destroy(&fake_dst_ops);
1004 return ret;
1005 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001007 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001009 printk(KERN_WARNING
1010 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001011 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Eric Dumazetfc66f952010-10-08 06:37:34 +00001012 dst_entries_destroy(&fake_dst_ops);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001013 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014 }
1015#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return 0;
1018}
1019
1020void br_netfilter_fini(void)
1021{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001022 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023#ifdef CONFIG_SYSCTL
1024 unregister_sysctl_table(brnf_sysctl_header);
1025#endif
Eric Dumazetfc66f952010-10-08 06:37:34 +00001026 dst_entries_destroy(&fake_dst_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027}