blob: 907a82e9023d1d4cb09a82c677afad229657ca34 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Handle firewalling
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer (maintainer) <bdschuym@pandora.be>
8 *
9 * Changes:
10 * Apr 29 2003: physdev module support (bdschuym)
11 * Jun 19 2003: let arptables see bridged ARP traffic (bdschuym)
12 * Oct 06 2003: filter encapsulated IP/ARP VLAN traffic on untagged bridge
13 * (bdschuym)
14 * Sep 01 2004: add IPv6 filtering (bdschuym)
15 *
16 * This program is free software; you can redistribute it and/or
17 * modify it under the terms of the GNU General Public License
18 * as published by the Free Software Foundation; either version
19 * 2 of the License, or (at your option) any later version.
20 *
21 * Lennert dedicates this file to Kerstin Wurdinger.
22 */
23
24#include <linux/module.h>
25#include <linux/kernel.h>
26#include <linux/ip.h>
27#include <linux/netdevice.h>
28#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020029#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/if_ether.h>
31#include <linux/if_vlan.h>
Michael Milner516299d2007-04-12 22:14:23 -070032#include <linux/if_pppox.h>
33#include <linux/ppp_defs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/netfilter_bridge.h>
35#include <linux/netfilter_ipv4.h>
36#include <linux/netfilter_ipv6.h>
37#include <linux/netfilter_arp.h>
38#include <linux/in_route.h>
Bart De Schuymerf216f082006-12-05 13:45:21 -080039#include <linux/inetdevice.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#include <net/ip.h>
42#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020043#include <net/route.h>
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046#include "br_private.h"
47#ifdef CONFIG_SYSCTL
48#include <linux/sysctl.h>
49#endif
50
51#define skb_origaddr(skb) (((struct bridge_skb_cb *) \
52 (skb->nf_bridge->data))->daddr.ipv4)
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -070053#define store_orig_dstaddr(skb) (skb_origaddr(skb) = ip_hdr(skb)->daddr)
54#define dnat_took_place(skb) (skb_origaddr(skb) != ip_hdr(skb)->daddr)
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifdef CONFIG_SYSCTL
57static struct ctl_table_header *brnf_sysctl_header;
Brian Haley9c1ea142006-09-18 00:03:41 -070058static int brnf_call_iptables __read_mostly = 1;
59static int brnf_call_ip6tables __read_mostly = 1;
60static int brnf_call_arptables __read_mostly = 1;
Herbert Xu47e0e1c2009-01-12 00:06:03 +000061static int brnf_filter_vlan_tagged __read_mostly = 0;
62static int brnf_filter_pppoe_tagged __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#else
Herbert Xu47e0e1c2009-01-12 00:06:03 +000064#define brnf_filter_vlan_tagged 0
65#define brnf_filter_pppoe_tagged 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#endif
67
Dave Jonesb6f99a22007-03-22 12:27:49 -070068static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080069{
70 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
71}
72
73#define IS_VLAN_IP(skb) \
74 (skb->protocol == htons(ETH_P_8021Q) && \
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090075 vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080076 brnf_filter_vlan_tagged)
77
78#define IS_VLAN_IPV6(skb) \
79 (skb->protocol == htons(ETH_P_8021Q) && \
80 vlan_proto(skb) == htons(ETH_P_IPV6) &&\
81 brnf_filter_vlan_tagged)
82
83#define IS_VLAN_ARP(skb) \
84 (skb->protocol == htons(ETH_P_8021Q) && \
85 vlan_proto(skb) == htons(ETH_P_ARP) && \
86 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070087
Michael Milner516299d2007-04-12 22:14:23 -070088static inline __be16 pppoe_proto(const struct sk_buff *skb)
89{
90 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
91 sizeof(struct pppoe_hdr)));
92}
93
94#define IS_PPPOE_IP(skb) \
95 (skb->protocol == htons(ETH_P_PPP_SES) && \
96 pppoe_proto(skb) == htons(PPP_IP) && \
97 brnf_filter_pppoe_tagged)
98
99#define IS_PPPOE_IPV6(skb) \
100 (skb->protocol == htons(ETH_P_PPP_SES) && \
101 pppoe_proto(skb) == htons(PPP_IPV6) && \
102 brnf_filter_pppoe_tagged)
103
Herbert Xu631339f2008-11-24 16:06:50 -0800104static void fake_update_pmtu(struct dst_entry *dst, u32 mtu)
105{
106}
107
108static struct dst_ops fake_dst_ops = {
109 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800110 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800111 .update_pmtu = fake_update_pmtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800112 .entries = ATOMIC_INIT(0),
113};
114
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700115/*
116 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * Currently, we fill in the PMTU entry because netfilter
118 * refragmentation needs it, and the rt_flags entry because
119 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700120 * require us to fill additional fields.
121 */
122void br_netfilter_rtable_init(struct net_bridge *br)
123{
124 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700126 atomic_set(&rt->u.dst.__refcnt, 1);
Rami Rosenad619802008-08-05 01:21:22 -0700127 rt->u.dst.dev = br->dev;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700128 rt->u.dst.path = &rt->u.dst;
129 rt->u.dst.metrics[RTAX_MTU - 1] = 1500;
130 rt->u.dst.flags = DST_NOXFRM;
Herbert Xu631339f2008-11-24 16:06:50 -0800131 rt->u.dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700132}
133
134static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
135{
136 struct net_bridge_port *port = rcu_dereference(dev->br_port);
137
138 return port ? &port->br->fake_rtable : NULL;
139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800141static inline struct net_device *bridge_parent(const struct net_device *dev)
142{
143 struct net_bridge_port *port = rcu_dereference(dev->br_port);
144
145 return port ? port->br->dev : NULL;
146}
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);
167 nf_bridge_put(nf_bridge);
168 }
169 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
Stephen Hemminger073176212006-08-29 17:48:17 -0700206/*
207 * When forwarding bridge frames, we save a copy of the original
208 * header before processing.
209 */
210int nf_bridge_copy_header(struct sk_buff *skb)
211{
212 int err;
Patrick McHardyfc385822007-05-03 03:36:16 -0700213 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemminger073176212006-08-29 17:48:17 -0700214
Herbert Xud9cc2042007-09-16 16:21:16 -0700215 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700216 if (err)
217 return err;
218
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300219 skb_copy_to_linear_data_offset(skb, -header_size,
220 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700221 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700222 return 0;
223}
224
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225/* PF_BRIDGE/PRE_ROUTING *********************************************/
226/* Undo the changes made for ip6tables PREROUTING and continue the
227 * bridge PRE_ROUTING hook. */
228static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
229{
230 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000231 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 if (nf_bridge->mask & BRNF_PKT_TYPE) {
234 skb->pkt_type = PACKET_OTHERHOST;
235 nf_bridge->mask ^= BRNF_PKT_TYPE;
236 }
237 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
238
Eric Dumazet511c3f92009-06-02 05:14:27 +0000239 rt = bridge_parent_rtable(nf_bridge->physindev);
240 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700241 kfree_skb(skb);
242 return 0;
243 }
Eric Dumazet511c3f92009-06-02 05:14:27 +0000244 dst_hold(&rt->u.dst);
Eric Dumazetadf30902009-06-02 05:19:30 +0000245 skb_dst_set(skb, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 skb->dev = nf_bridge->physindev;
Patrick McHardyfc385822007-05-03 03:36:16 -0700248 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
250 br_handle_frame_finish, 1);
251
252 return 0;
253}
254
255static void __br_dnat_complain(void)
256{
257 static unsigned long last_complaint;
258
259 if (jiffies - last_complaint >= 5 * HZ) {
260 printk(KERN_WARNING "Performing cross-bridge DNAT requires IP "
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800261 "forwarding to be enabled\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 last_complaint = jiffies;
263 }
264}
265
266/* This requires some explaining. If DNAT has taken place,
267 * we will need to fix up the destination Ethernet address,
268 * and this is a tricky process.
269 *
270 * There are two cases to consider:
271 * 1. The packet was DNAT'ed to a device in the same bridge
272 * port group as it was received on. We can still bridge
273 * the packet.
274 * 2. The packet was DNAT'ed to a different device, either
275 * a non-bridged device or another bridge port group.
276 * The packet will need to be routed.
277 *
278 * The correct way of distinguishing between these two cases is to
279 * call ip_route_input() and to look at skb->dst->dev, which is
280 * changed to the destination device if ip_route_input() succeeds.
281 *
282 * Let us first consider the case that ip_route_input() succeeds:
283 *
284 * If skb->dst->dev equals the logical bridge device the packet
Patrick McHardy2948d2e2008-01-11 18:02:18 -0800285 * came in on, we can consider this bridging. The packet is passed
286 * through the neighbour output function to build a new destination
287 * MAC address, which will make the packet enter br_nf_local_out()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 * not much later. In that function it is assured that the iptables
289 * FORWARD chain is traversed for the packet.
290 *
291 * Otherwise, the packet is considered to be routed and we just
292 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800293 * later be passed up to the IP stack to be routed. For a redirected
294 * packet, ip_route_input() will give back the localhost as output device,
295 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 *
297 * Let us now consider the case that ip_route_input() fails:
298 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800299 * This can be because the destination address is martian, in which case
300 * the packet will be dropped.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 * After a "echo '0' > /proc/sys/net/ipv4/ip_forward" ip_route_input()
302 * will fail, while __ip_route_output_key() will return success. The source
303 * address for __ip_route_output_key() is set to zero, so __ip_route_output_key
304 * thinks we're handling a locally generated packet and won't care
305 * if IP forwarding is allowed. We send a warning message to the users's
306 * log telling her to put IP forwarding on.
307 *
308 * ip_route_input() will also fail if there is no route available.
309 * In that case we just drop the packet.
310 *
311 * --Lennert, 20020411
312 * --Bart, 20020416 (updated)
Bart De Schuymerf216f082006-12-05 13:45:21 -0800313 * --Bart, 20021007 (updated)
314 * --Bart, 20062711 (updated) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
316{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (skb->pkt_type == PACKET_OTHERHOST) {
318 skb->pkt_type = PACKET_HOST;
319 skb->nf_bridge->mask |= BRNF_PKT_TYPE;
320 }
321 skb->nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
322
323 skb->dev = bridge_parent(skb->dev);
Patrick McHardy2948d2e2008-01-11 18:02:18 -0800324 if (skb->dev) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000325 struct dst_entry *dst = skb_dst(skb);
Patrick McHardy2948d2e2008-01-11 18:02:18 -0800326
Patrick McHardyfc385822007-05-03 03:36:16 -0700327 nf_bridge_pull_encap_header(skb);
Patrick McHardy2948d2e2008-01-11 18:02:18 -0800328
329 if (dst->hh)
330 return neigh_hh_output(dst->hh, skb);
331 else if (dst->neighbour)
332 return dst->neighbour->output(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
Patrick McHardy2948d2e2008-01-11 18:02:18 -0800334 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 return 0;
336}
337
338static int br_nf_pre_routing_finish(struct sk_buff *skb)
339{
340 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700341 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000343 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800344 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 if (nf_bridge->mask & BRNF_PKT_TYPE) {
347 skb->pkt_type = PACKET_OTHERHOST;
348 nf_bridge->mask ^= BRNF_PKT_TYPE;
349 }
350 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800352 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800353 struct flowi fl = {
354 .nl_u = {
355 .ip4_u = {
356 .daddr = iph->daddr,
357 .saddr = 0,
358 .tos = RT_TOS(iph->tos) },
359 },
360 .proto = 0,
361 };
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200362 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800363
364 /* If err equals -EHOSTUNREACH the error is due to a
365 * martian destination or due to the fact that
366 * forwarding is disabled. For most martian packets,
367 * ip_route_output_key() will fail. It won't fail for 2 types of
368 * martian destinations: loopback destinations and destination
369 * 0.0.0.0. In both cases the packet will be dropped because the
370 * destination is the loopback device and not the bridge. */
371 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
372 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Alexey Dobriyan249b6202008-11-04 14:31:29 +0100374 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700375 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800376 * require ip_forwarding. */
377 if (((struct dst_entry *)rt)->dev == dev) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000378 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 goto bridged_dnat;
380 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800381 /* we are sure that forwarding is disabled, so printing
382 * this message is no problem. Note that the packet could
383 * still have a martian destination address, in which case
384 * the packet could be dropped even if forwarding were enabled */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 __br_dnat_complain();
386 dst_release((struct dst_entry *)rt);
387 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800388free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 kfree_skb(skb);
390 return 0;
391 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000392 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393bridged_dnat:
394 /* Tell br_nf_local_out this is a
395 * bridged frame */
396 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
397 skb->dev = nf_bridge->physindev;
Patrick McHardyfc385822007-05-03 03:36:16 -0700398 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING,
400 skb, skb->dev, NULL,
401 br_nf_pre_routing_finish_bridge,
402 1);
403 return 0;
404 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800405 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 skb->pkt_type = PACKET_HOST;
407 }
408 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000409 rt = bridge_parent_rtable(nf_bridge->physindev);
410 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700411 kfree_skb(skb);
412 return 0;
413 }
Eric Dumazet511c3f92009-06-02 05:14:27 +0000414 dst_hold(&rt->u.dst);
Eric Dumazetadf30902009-06-02 05:19:30 +0000415 skb_dst_set(skb, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 }
417
418 skb->dev = nf_bridge->physindev;
Patrick McHardyfc385822007-05-03 03:36:16 -0700419 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
421 br_handle_frame_finish, 1);
422
423 return 0;
424}
425
426/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800427static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
429 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
430
431 if (skb->pkt_type == PACKET_OTHERHOST) {
432 skb->pkt_type = PACKET_HOST;
433 nf_bridge->mask |= BRNF_PKT_TYPE;
434 }
435
436 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
437 nf_bridge->physindev = skb->dev;
438 skb->dev = bridge_parent(skb->dev);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800439
440 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
443/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
444static int check_hbh_len(struct sk_buff *skb)
445{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700446 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700448 const unsigned char *nh = skb_network_header(skb);
449 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800450 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452 if ((raw + len) - skb->data > skb_headlen(skb))
453 goto bad;
454
455 off += 2;
456 len -= 2;
457
458 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700459 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700461 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 case IPV6_TLV_PAD0:
463 optlen = 1;
464 break;
465
466 case IPV6_TLV_PADN:
467 break;
468
469 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700470 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700472 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800473 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700474 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800475 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
477 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800478 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800479 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800480 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700481 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 break;
483 default:
484 if (optlen > len)
485 goto bad;
486 break;
487 }
488 off += optlen;
489 len -= optlen;
490 }
491 if (len == 0)
492 return 0;
493bad:
494 return -1;
495
496}
497
498/* Replicate the checks that IPv6 does on packet reception and pass the packet
499 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
500static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800501 struct sk_buff *skb,
502 const struct net_device *in,
503 const struct net_device *out,
504 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
506 struct ipv6hdr *hdr;
507 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 if (skb->len < sizeof(struct ipv6hdr))
510 goto inhdr_error;
511
512 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
513 goto inhdr_error;
514
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700515 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if (hdr->version != 6)
518 goto inhdr_error;
519
520 pkt_len = ntohs(hdr->payload_len);
521
522 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
523 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
524 goto inhdr_error;
Herbert Xub38dfee2006-06-09 16:13:01 -0700525 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
526 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 }
528 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800529 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800531 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800532 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800534 if (!setup_pre_routing(skb))
535 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800537 NF_HOOK(PF_INET6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 br_nf_pre_routing_finish_ipv6);
539
540 return NF_STOLEN;
541
542inhdr_error:
543 return NF_DROP;
544}
545
546/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
547 * Replicate the checks that IPv4 does on packet reception.
548 * Set skb->dev to the bridge device (i.e. parent of the
549 * receiving device) to make netfilter happy, the REDIRECT
550 * target in particular. Save the original destination IP
551 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700552static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800553 const struct net_device *in,
554 const struct net_device *out,
555 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
557 struct iphdr *iph;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700558 __u32 len = nf_bridge_encap_header_len(skb);
559
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700560 if (unlikely(!pskb_may_pull(skb, len)))
561 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Michael Milner516299d2007-04-12 22:14:23 -0700563 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
564 IS_PPPOE_IPV6(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#ifdef CONFIG_SYSCTL
566 if (!brnf_call_ip6tables)
567 return NF_ACCEPT;
568#endif
Patrick McHardyfc385822007-05-03 03:36:16 -0700569 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
571 }
572#ifdef CONFIG_SYSCTL
573 if (!brnf_call_iptables)
574 return NF_ACCEPT;
575#endif
576
Michael Milner516299d2007-04-12 22:14:23 -0700577 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
578 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 return NF_ACCEPT;
580
Patrick McHardyfc385822007-05-03 03:36:16 -0700581 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
584 goto inhdr_error;
585
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700586 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 if (iph->ihl < 5 || iph->version != 4)
588 goto inhdr_error;
589
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800590 if (!pskb_may_pull(skb, 4 * iph->ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 goto inhdr_error;
592
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700593 iph = ip_hdr(skb);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800594 if (ip_fast_csum((__u8 *) iph, iph->ihl) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 goto inhdr_error;
596
597 len = ntohs(iph->tot_len);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800598 if (skb->len < len || len < 4 * iph->ihl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 goto inhdr_error;
600
Herbert Xub38dfee2006-06-09 16:13:01 -0700601 pskb_trim_rcsum(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800603 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800604 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800606 if (!setup_pre_routing(skb))
607 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 store_orig_dstaddr(skb);
609
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800610 NF_HOOK(PF_INET, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 br_nf_pre_routing_finish);
612
613 return NF_STOLEN;
614
615inhdr_error:
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800616// IP_INC_STATS_BH(IpInHdrErrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617out:
618 return NF_DROP;
619}
620
621
622/* PF_BRIDGE/LOCAL_IN ************************************************/
623/* The packet is locally destined, which requires a real
624 * dst_entry, so detach the fake one. On the way up, the
625 * packet would pass through PRE_ROUTING again (which already
626 * took place when the packet entered the bridge), but we
627 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
628 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700629static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800630 const struct net_device *in,
631 const struct net_device *out,
632 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000634 struct rtable *rt = skb_rtable(skb);
635
Eric Dumazetadf30902009-06-02 05:19:30 +0000636 if (rt && rt == bridge_parent_rtable(in))
637 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639 return NF_ACCEPT;
640}
641
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642/* PF_BRIDGE/FORWARD *************************************************/
643static int br_nf_forward_finish(struct sk_buff *skb)
644{
645 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
646 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800648 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 in = nf_bridge->physindev;
650 if (nf_bridge->mask & BRNF_PKT_TYPE) {
651 skb->pkt_type = PACKET_OTHERHOST;
652 nf_bridge->mask ^= BRNF_PKT_TYPE;
653 }
654 } else {
655 in = *((struct net_device **)(skb->cb));
656 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700657 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 NF_HOOK_THRESH(PF_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800659 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return 0;
661}
662
663/* This is the 'purely bridged' case. For IP, we pass the packet to
664 * netfilter with indev and outdev set to the bridge device,
665 * but we are still able to filter on the 'real' indev/outdev
666 * because of the physdev module. For ARP, indev and outdev are the
667 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700668static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800669 const struct net_device *in,
670 const struct net_device *out,
671 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800674 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200675 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677 if (!skb->nf_bridge)
678 return NF_ACCEPT;
679
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800680 /* Need exclusive nf_bridge_info since we might have multiple
681 * different physoutdevs. */
682 if (!nf_bridge_unshare(skb))
683 return NF_DROP;
684
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800685 parent = bridge_parent(out);
686 if (!parent)
687 return NF_DROP;
688
Michael Milner516299d2007-04-12 22:14:23 -0700689 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
690 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000692 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
693 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000695 else
696 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Herbert Xu3db05fe2007-10-15 00:53:15 -0700698 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 nf_bridge = skb->nf_bridge;
701 if (skb->pkt_type == PACKET_OTHERHOST) {
702 skb->pkt_type = PACKET_HOST;
703 nf_bridge->mask |= BRNF_PKT_TYPE;
704 }
705
706 /* The physdev module checks on this */
707 nf_bridge->mask |= BRNF_BRIDGED;
708 nf_bridge->physoutdev = skb->dev;
709
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800710 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800711 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713 return NF_STOLEN;
714}
715
Herbert Xu3db05fe2007-10-15 00:53:15 -0700716static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800717 const struct net_device *in,
718 const struct net_device *out,
719 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct net_device **d = (struct net_device **)(skb->cb);
722
723#ifdef CONFIG_SYSCTL
724 if (!brnf_call_arptables)
725 return NF_ACCEPT;
726#endif
727
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800728 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800729 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700731 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 }
733
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300734 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700735 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700736 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return NF_ACCEPT;
738 }
739 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700740 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 (struct net_device *)out, br_nf_forward_finish);
742
743 return NF_STOLEN;
744}
745
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800746/* PF_BRIDGE/LOCAL_OUT ***********************************************
747 *
748 * This function sees both locally originated IP packets and forwarded
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * IP packets (in both cases the destination device is a bridge
750 * device). It also sees bridged-and-DNAT'ed packets.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 *
752 * If (nf_bridge->mask & BRNF_BRIDGED_DNAT) then the packet is bridged
753 * and we fake the PF_BRIDGE/FORWARD hook. The function br_nf_forward()
754 * will then fake the PF_INET/FORWARD hook. br_nf_local_out() has priority
755 * NF_BR_PRI_FIRST, so no relevant PF_BRIDGE/INPUT functions have been nor
756 * will be executed.
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800757 */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700758static unsigned int br_nf_local_out(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800759 const struct net_device *in,
760 const struct net_device *out,
761 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800763 struct net_device *realindev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct nf_bridge_info *nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
766 if (!skb->nf_bridge)
767 return NF_ACCEPT;
768
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800769 /* Need exclusive nf_bridge_info since we might have multiple
770 * different physoutdevs. */
771 if (!nf_bridge_unshare(skb))
772 return NF_DROP;
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 nf_bridge = skb->nf_bridge;
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800775 if (!(nf_bridge->mask & BRNF_BRIDGED_DNAT))
776 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 /* Bridged, take PF_BRIDGE/FORWARD.
779 * (see big note in front of br_nf_pre_routing_finish) */
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800780 nf_bridge->physoutdev = skb->dev;
781 realindev = nf_bridge->physindev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800783 if (nf_bridge->mask & BRNF_PKT_TYPE) {
784 skb->pkt_type = PACKET_OTHERHOST;
785 nf_bridge->mask ^= BRNF_PKT_TYPE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700787 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Patrick McHardy2bf540b2006-12-13 16:54:25 -0800789 NF_HOOK(PF_BRIDGE, NF_BR_FORWARD, skb, realindev, skb->dev,
790 br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 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{
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200797 if (skb->nfct != NULL &&
798 (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb)) &&
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700799 skb->len > skb->dev->mtu &&
Herbert Xu89114af2006-07-08 13:34:32 -0700800 !skb_is_gso(skb))
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700801 return ip_fragment(skb, br_dev_queue_push_xmit);
802 else
803 return br_dev_queue_push_xmit(skb);
804}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200805#else
806static int br_nf_dev_queue_xmit(struct sk_buff *skb)
807{
808 return br_dev_queue_push_xmit(skb);
809}
810#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811
812/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700813static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800814 const struct net_device *in,
815 const struct net_device *out,
816 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700818 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200820 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822#ifdef CONFIG_NETFILTER_DEBUG
823 /* Be very paranoid. This probably won't happen anymore, but let's
824 * keep the check just to be sure... */
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700825 if (skb_mac_header(skb) < skb->head ||
826 skb_mac_header(skb) + ETH_HLEN > skb->data) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 printk(KERN_CRIT "br_netfilter: Argh!! br_nf_post_routing: "
Stephen Hemminger8394e9b2006-08-29 17:49:31 -0700828 "bad mac.raw pointer.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829 goto print_error;
830 }
831#endif
832
833 if (!nf_bridge)
834 return NF_ACCEPT;
835
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800836 if (!(nf_bridge->mask & (BRNF_BRIDGED | BRNF_BRIDGED_DNAT)))
837 return NF_ACCEPT;
838
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800839 if (!realoutdev)
840 return NF_DROP;
841
Michael Milner516299d2007-04-12 22:14:23 -0700842 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
843 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000845 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
846 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000848 else
849 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851#ifdef CONFIG_NETFILTER_DEBUG
Eric Dumazetadf30902009-06-02 05:19:30 +0000852 if (skb_dst(skb) == NULL) {
Stephen Hemminger8394e9b2006-08-29 17:49:31 -0700853 printk(KERN_INFO "br_netfilter post_routing: skb->dst == NULL\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 goto print_error;
855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856#endif
857
858 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
859 * about the value of skb->pkt_type. */
860 if (skb->pkt_type == PACKET_OTHERHOST) {
861 skb->pkt_type = PACKET_HOST;
862 nf_bridge->mask |= BRNF_PKT_TYPE;
863 }
864
Patrick McHardyfc385822007-05-03 03:36:16 -0700865 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 nf_bridge_save_header(skb);
867
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800868 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700869 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
871 return NF_STOLEN;
872
873#ifdef CONFIG_NETFILTER_DEBUG
874print_error:
875 if (skb->dev != NULL) {
876 printk("[%s]", skb->dev->name);
Stephen Hemminger178a3252006-02-13 15:43:58 -0800877 if (realoutdev)
878 printk("[%s]", realoutdev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 }
Arnaldo Carvalho de Melo98e399f2007-03-19 15:33:04 -0700880 printk(" head:%p, raw:%p, data:%p\n", skb->head, skb_mac_header(skb),
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800881 skb->data);
Stephen Hemminger8394e9b2006-08-29 17:49:31 -0700882 dump_stack();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 return NF_ACCEPT;
884#endif
885}
886
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887/* IP/SABOTAGE *****************************************************/
888/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
889 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700890static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800891 const struct net_device *in,
892 const struct net_device *out,
893 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700895 if (skb->nf_bridge &&
896 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 return NF_STOP;
898 }
899
900 return NF_ACCEPT;
901}
902
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903/* For br_nf_local_out we need (prio = NF_BR_PRI_FIRST), to insure that innocent
904 * PF_BRIDGE/NF_BR_LOCAL_OUT functions don't get bridged traffic as input.
905 * For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
906 * ip_refrag() can return NF_STOLEN. */
Patrick McHardy19994142007-12-05 01:23:00 -0800907static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000908 {
909 .hook = br_nf_pre_routing,
910 .owner = THIS_MODULE,
911 .pf = PF_BRIDGE,
912 .hooknum = NF_BR_PRE_ROUTING,
913 .priority = NF_BR_PRI_BRNF,
914 },
915 {
916 .hook = br_nf_local_in,
917 .owner = THIS_MODULE,
918 .pf = PF_BRIDGE,
919 .hooknum = NF_BR_LOCAL_IN,
920 .priority = NF_BR_PRI_BRNF,
921 },
922 {
923 .hook = br_nf_forward_ip,
924 .owner = THIS_MODULE,
925 .pf = PF_BRIDGE,
926 .hooknum = NF_BR_FORWARD,
927 .priority = NF_BR_PRI_BRNF - 1,
928 },
929 {
930 .hook = br_nf_forward_arp,
931 .owner = THIS_MODULE,
932 .pf = PF_BRIDGE,
933 .hooknum = NF_BR_FORWARD,
934 .priority = NF_BR_PRI_BRNF,
935 },
936 {
937 .hook = br_nf_local_out,
938 .owner = THIS_MODULE,
939 .pf = PF_BRIDGE,
940 .hooknum = NF_BR_LOCAL_OUT,
941 .priority = NF_BR_PRI_FIRST,
942 },
943 {
944 .hook = br_nf_post_routing,
945 .owner = THIS_MODULE,
946 .pf = PF_BRIDGE,
947 .hooknum = NF_BR_POST_ROUTING,
948 .priority = NF_BR_PRI_LAST,
949 },
950 {
951 .hook = ip_sabotage_in,
952 .owner = THIS_MODULE,
953 .pf = PF_INET,
954 .hooknum = NF_INET_PRE_ROUTING,
955 .priority = NF_IP_PRI_FIRST,
956 },
957 {
958 .hook = ip_sabotage_in,
959 .owner = THIS_MODULE,
960 .pf = PF_INET6,
961 .hooknum = NF_INET_PRE_ROUTING,
962 .priority = NF_IP6_PRI_FIRST,
963 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964};
965
966#ifdef CONFIG_SYSCTL
967static
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800968int brnf_sysctl_call_tables(ctl_table * ctl, int write, struct file *filp,
969 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
971 int ret;
972
973 ret = proc_dointvec(ctl, write, filp, buffer, lenp, ppos);
974
975 if (write && *(int *)(ctl->data))
976 *(int *)(ctl->data) = 1;
977 return ret;
978}
979
980static ctl_table brnf_table[] = {
981 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 .procname = "bridge-nf-call-arptables",
983 .data = &brnf_call_arptables,
984 .maxlen = sizeof(int),
985 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800986 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 },
988 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 .procname = "bridge-nf-call-iptables",
990 .data = &brnf_call_iptables,
991 .maxlen = sizeof(int),
992 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800993 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 },
995 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 .procname = "bridge-nf-call-ip6tables",
997 .data = &brnf_call_ip6tables,
998 .maxlen = sizeof(int),
999 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001000 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 },
1002 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 .procname = "bridge-nf-filter-vlan-tagged",
1004 .data = &brnf_filter_vlan_tagged,
1005 .maxlen = sizeof(int),
1006 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001007 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 },
Michael Milner516299d2007-04-12 22:14:23 -07001009 {
Michael Milner516299d2007-04-12 22:14:23 -07001010 .procname = "bridge-nf-filter-pppoe-tagged",
1011 .data = &brnf_filter_pppoe_tagged,
1012 .maxlen = sizeof(int),
1013 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001014 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001015 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001016 { .ctl_name = 0 }
1017};
1018
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001019static struct ctl_path brnf_path[] = {
1020 { .procname = "net", .ctl_name = CTL_NET, },
1021 { .procname = "bridge", .ctl_name = NET_BRIDGE, },
1022 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023};
1024#endif
1025
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001026int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001028 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001030 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1031 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -08001034 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001036 printk(KERN_WARNING
1037 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001038 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1039 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 }
1041#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001043 return 0;
1044}
1045
1046void br_netfilter_fini(void)
1047{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001048 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049#ifdef CONFIG_SYSCTL
1050 unregister_sysctl_table(brnf_sysctl_header);
1051#endif
1052}