blob: 8fb75f89c4aac6e79aa9f8f41cc3a226b176000b [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
Herbert Xu47e0e1c2009-01-12 00:06:03 +000058#define brnf_filter_vlan_tagged 0
59#define brnf_filter_pppoe_tagged 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#endif
61
Dave Jonesb6f99a22007-03-22 12:27:49 -070062static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080063{
64 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
65}
66
67#define IS_VLAN_IP(skb) \
68 (skb->protocol == htons(ETH_P_8021Q) && \
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090069 vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080070 brnf_filter_vlan_tagged)
71
72#define IS_VLAN_IPV6(skb) \
73 (skb->protocol == htons(ETH_P_8021Q) && \
74 vlan_proto(skb) == htons(ETH_P_IPV6) &&\
75 brnf_filter_vlan_tagged)
76
77#define IS_VLAN_ARP(skb) \
78 (skb->protocol == htons(ETH_P_8021Q) && \
79 vlan_proto(skb) == htons(ETH_P_ARP) && \
80 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
Michael Milner516299d2007-04-12 22:14:23 -070082static inline __be16 pppoe_proto(const struct sk_buff *skb)
83{
84 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
85 sizeof(struct pppoe_hdr)));
86}
87
88#define IS_PPPOE_IP(skb) \
89 (skb->protocol == htons(ETH_P_PPP_SES) && \
90 pppoe_proto(skb) == htons(PPP_IP) && \
91 brnf_filter_pppoe_tagged)
92
93#define IS_PPPOE_IPV6(skb) \
94 (skb->protocol == htons(ETH_P_PPP_SES) && \
95 pppoe_proto(skb) == htons(PPP_IPV6) && \
96 brnf_filter_pppoe_tagged)
97
Herbert Xu631339f2008-11-24 16:06:50 -080098static void fake_update_pmtu(struct dst_entry *dst, u32 mtu)
99{
100}
101
102static struct dst_ops fake_dst_ops = {
103 .family = AF_INET,
Harvey Harrison09640e62009-02-01 00:45:17 -0800104 .protocol = cpu_to_be16(ETH_P_IP),
Herbert Xu631339f2008-11-24 16:06:50 -0800105 .update_pmtu = fake_update_pmtu,
Herbert Xu631339f2008-11-24 16:06:50 -0800106 .entries = ATOMIC_INIT(0),
107};
108
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700109/*
110 * Initialize bogus route table used to keep netfilter happy.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * Currently, we fill in the PMTU entry because netfilter
112 * refragmentation needs it, and the rt_flags entry because
113 * ipt_REJECT needs it. Future netfilter modules might
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700114 * require us to fill additional fields.
115 */
116void br_netfilter_rtable_init(struct net_bridge *br)
117{
118 struct rtable *rt = &br->fake_rtable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700120 atomic_set(&rt->u.dst.__refcnt, 1);
Rami Rosenad619802008-08-05 01:21:22 -0700121 rt->u.dst.dev = br->dev;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700122 rt->u.dst.path = &rt->u.dst;
123 rt->u.dst.metrics[RTAX_MTU - 1] = 1500;
124 rt->u.dst.flags = DST_NOXFRM;
Herbert Xu631339f2008-11-24 16:06:50 -0800125 rt->u.dst.ops = &fake_dst_ops;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700126}
127
128static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
129{
130 struct net_bridge_port *port = rcu_dereference(dev->br_port);
131
132 return port ? &port->br->fake_rtable : NULL;
133}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800135static inline struct net_device *bridge_parent(const struct net_device *dev)
136{
137 struct net_bridge_port *port = rcu_dereference(dev->br_port);
138
139 return port ? port->br->dev : NULL;
140}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800142static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
143{
144 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
145 if (likely(skb->nf_bridge))
146 atomic_set(&(skb->nf_bridge->use), 1);
147
148 return skb->nf_bridge;
149}
150
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800151static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
152{
153 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
154
155 if (atomic_read(&nf_bridge->use) > 1) {
156 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
157
158 if (tmp) {
159 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
160 atomic_set(&tmp->use, 1);
161 nf_bridge_put(nf_bridge);
162 }
163 nf_bridge = tmp;
164 }
165 return nf_bridge;
166}
167
Patrick McHardyfc385822007-05-03 03:36:16 -0700168static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
169{
170 unsigned int len = nf_bridge_encap_header_len(skb);
171
172 skb_push(skb, len);
173 skb->network_header -= len;
174}
175
176static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
177{
178 unsigned int len = nf_bridge_encap_header_len(skb);
179
180 skb_pull(skb, len);
181 skb->network_header += len;
182}
183
184static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
185{
186 unsigned int len = nf_bridge_encap_header_len(skb);
187
188 skb_pull_rcsum(skb, len);
189 skb->network_header += len;
190}
191
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800192static inline void nf_bridge_save_header(struct sk_buff *skb)
193{
Patrick McHardyfc385822007-05-03 03:36:16 -0700194 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800195
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300196 skb_copy_from_linear_data_offset(skb, -header_size,
197 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800198}
199
Bart De Schuymere179e632010-04-15 12:26:39 +0200200static inline void nf_bridge_update_protocol(struct sk_buff *skb)
201{
202 if (skb->nf_bridge->mask & BRNF_8021Q)
203 skb->protocol = htons(ETH_P_8021Q);
204 else if (skb->nf_bridge->mask & BRNF_PPPoE)
205 skb->protocol = htons(ETH_P_PPP_SES);
206}
207
208/* Fill in the header for fragmented IP packets handled by
209 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700210 */
211int nf_bridge_copy_header(struct sk_buff *skb)
212{
213 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200214 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700215
Bart De Schuymere179e632010-04-15 12:26:39 +0200216 nf_bridge_update_protocol(skb);
217 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700218 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700219 if (err)
220 return err;
221
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300222 skb_copy_to_linear_data_offset(skb, -header_size,
223 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700224 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700225 return 0;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228/* PF_BRIDGE/PRE_ROUTING *********************************************/
229/* Undo the changes made for ip6tables PREROUTING and continue the
230 * bridge PRE_ROUTING hook. */
231static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
232{
233 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000234 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 if (nf_bridge->mask & BRNF_PKT_TYPE) {
237 skb->pkt_type = PACKET_OTHERHOST;
238 nf_bridge->mask ^= BRNF_PKT_TYPE;
239 }
240 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
241
Eric Dumazet511c3f92009-06-02 05:14:27 +0000242 rt = bridge_parent_rtable(nf_bridge->physindev);
243 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700244 kfree_skb(skb);
245 return 0;
246 }
Eric Dumazet511c3f92009-06-02 05:14:27 +0000247 dst_hold(&rt->u.dst);
Eric Dumazetadf30902009-06-02 05:19:30 +0000248 skb_dst_set(skb, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249
250 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200251 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700252 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100253 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 br_handle_frame_finish, 1);
255
256 return 0;
257}
258
Bart De Schuymere179e632010-04-15 12:26:39 +0200259/* Obtain the correct destination MAC address, while preserving the original
260 * source MAC address. If we already know this address, we just copy it. If we
261 * don't, we use the neighbour framework to find out. In both cases, we make
262 * sure that br_handle_frame_finish() is called afterwards.
263 */
264static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
265{
266 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
267 struct dst_entry *dst;
268
269 skb->dev = bridge_parent(skb->dev);
270 if (!skb->dev)
271 goto free_skb;
272 dst = skb_dst(skb);
273 if (dst->hh) {
274 neigh_hh_bridge(dst->hh, skb);
275 skb->dev = nf_bridge->physindev;
276 return br_handle_frame_finish(skb);
277 } else if (dst->neighbour) {
278 /* the neighbour function below overwrites the complete
279 * MAC header, so we save the Ethernet source address and
280 * protocol number. */
281 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
282 /* tell br_dev_xmit to continue with forwarding */
283 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
284 return dst->neighbour->output(skb);
285 }
286free_skb:
287 kfree_skb(skb);
288 return 0;
289}
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200292 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 *
294 * There are two cases to consider:
295 * 1. The packet was DNAT'ed to a device in the same bridge
296 * port group as it was received on. We can still bridge
297 * the packet.
298 * 2. The packet was DNAT'ed to a different device, either
299 * a non-bridged device or another bridge port group.
300 * The packet will need to be routed.
301 *
302 * The correct way of distinguishing between these two cases is to
303 * call ip_route_input() and to look at skb->dst->dev, which is
304 * changed to the destination device if ip_route_input() succeeds.
305 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200306 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200308 * If the output device equals the logical bridge device the packet
309 * came in on, we can consider this bridging. The corresponding MAC
310 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 * Otherwise, the packet is considered to be routed and we just
312 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800313 * later be passed up to the IP stack to be routed. For a redirected
314 * packet, ip_route_input() will give back the localhost as output device,
315 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200317 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800319 * This can be because the destination address is martian, in which case
320 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200321 * If IP forwarding is disabled, ip_route_input() will fail, while
322 * ip_route_output_key() can return success. The source
323 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200325 * if IP forwarding is enabled. If the output device equals the logical bridge
326 * device, we proceed as if ip_route_input() succeeded. If it differs from the
327 * logical bridge port or if ip_route_output_key() fails we drop the packet.
328 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329static int br_nf_pre_routing_finish(struct sk_buff *skb)
330{
331 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700332 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000334 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800335 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 if (nf_bridge->mask & BRNF_PKT_TYPE) {
338 skb->pkt_type = PACKET_OTHERHOST;
339 nf_bridge->mask ^= BRNF_PKT_TYPE;
340 }
341 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800343 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800344 struct flowi fl = {
345 .nl_u = {
346 .ip4_u = {
347 .daddr = iph->daddr,
348 .saddr = 0,
349 .tos = RT_TOS(iph->tos) },
350 },
351 .proto = 0,
352 };
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200353 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800354
355 /* If err equals -EHOSTUNREACH the error is due to a
356 * martian destination or due to the fact that
357 * forwarding is disabled. For most martian packets,
358 * ip_route_output_key() will fail. It won't fail for 2 types of
359 * martian destinations: loopback destinations and destination
360 * 0.0.0.0. In both cases the packet will be dropped because the
361 * destination is the loopback device and not the bridge. */
362 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
363 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Alexey Dobriyan249b6202008-11-04 14:31:29 +0100365 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700366 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800367 * require ip_forwarding. */
368 if (((struct dst_entry *)rt)->dev == dev) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000369 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 goto bridged_dnat;
371 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 dst_release((struct dst_entry *)rt);
373 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800374free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 kfree_skb(skb);
376 return 0;
377 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000378 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200381 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700382 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100383 NF_HOOK_THRESH(NFPROTO_BRIDGE,
384 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 skb, skb->dev, NULL,
386 br_nf_pre_routing_finish_bridge,
387 1);
388 return 0;
389 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800390 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 skb->pkt_type = PACKET_HOST;
392 }
393 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000394 rt = bridge_parent_rtable(nf_bridge->physindev);
395 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700396 kfree_skb(skb);
397 return 0;
398 }
Eric Dumazet511c3f92009-06-02 05:14:27 +0000399 dst_hold(&rt->u.dst);
Eric Dumazetadf30902009-06-02 05:19:30 +0000400 skb_dst_set(skb, &rt->u.dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 }
402
403 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200404 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700405 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100406 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 br_handle_frame_finish, 1);
408
409 return 0;
410}
411
412/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800413static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
415 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
416
417 if (skb->pkt_type == PACKET_OTHERHOST) {
418 skb->pkt_type = PACKET_HOST;
419 nf_bridge->mask |= BRNF_PKT_TYPE;
420 }
421
422 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
423 nf_bridge->physindev = skb->dev;
424 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200425 if (skb->protocol == htons(ETH_P_8021Q))
426 nf_bridge->mask |= BRNF_8021Q;
427 else if (skb->protocol == htons(ETH_P_PPP_SES))
428 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800429
430 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
434static int check_hbh_len(struct sk_buff *skb)
435{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700436 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700438 const unsigned char *nh = skb_network_header(skb);
439 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800440 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 if ((raw + len) - skb->data > skb_headlen(skb))
443 goto bad;
444
445 off += 2;
446 len -= 2;
447
448 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700449 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700451 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 case IPV6_TLV_PAD0:
453 optlen = 1;
454 break;
455
456 case IPV6_TLV_PADN:
457 break;
458
459 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700460 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700462 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800463 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700464 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800465 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
467 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800468 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800469 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800470 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700471 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472 break;
473 default:
474 if (optlen > len)
475 goto bad;
476 break;
477 }
478 off += optlen;
479 len -= optlen;
480 }
481 if (len == 0)
482 return 0;
483bad:
484 return -1;
485
486}
487
488/* Replicate the checks that IPv6 does on packet reception and pass the packet
489 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
490static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800491 struct sk_buff *skb,
492 const struct net_device *in,
493 const struct net_device *out,
494 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495{
496 struct ipv6hdr *hdr;
497 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 if (skb->len < sizeof(struct ipv6hdr))
500 goto inhdr_error;
501
502 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
503 goto inhdr_error;
504
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700505 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506
507 if (hdr->version != 6)
508 goto inhdr_error;
509
510 pkt_len = ntohs(hdr->payload_len);
511
512 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
513 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
514 goto inhdr_error;
Herbert Xub38dfee2006-06-09 16:13:01 -0700515 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
516 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800519 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800521 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800522 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800524 if (!setup_pre_routing(skb))
525 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526
Bart De Schuymere179e632010-04-15 12:26:39 +0200527 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100528 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 br_nf_pre_routing_finish_ipv6);
530
531 return NF_STOLEN;
532
533inhdr_error:
534 return NF_DROP;
535}
536
537/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
538 * Replicate the checks that IPv4 does on packet reception.
539 * Set skb->dev to the bridge device (i.e. parent of the
540 * receiving device) to make netfilter happy, the REDIRECT
541 * target in particular. Save the original destination IP
542 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700543static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800544 const struct net_device *in,
545 const struct net_device *out,
546 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547{
548 struct iphdr *iph;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700549 __u32 len = nf_bridge_encap_header_len(skb);
550
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700551 if (unlikely(!pskb_may_pull(skb, len)))
552 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Michael Milner516299d2007-04-12 22:14:23 -0700554 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
555 IS_PPPOE_IPV6(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556#ifdef CONFIG_SYSCTL
557 if (!brnf_call_ip6tables)
558 return NF_ACCEPT;
559#endif
Patrick McHardyfc385822007-05-03 03:36:16 -0700560 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
562 }
563#ifdef CONFIG_SYSCTL
564 if (!brnf_call_iptables)
565 return NF_ACCEPT;
566#endif
567
Michael Milner516299d2007-04-12 22:14:23 -0700568 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
569 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 return NF_ACCEPT;
571
Patrick McHardyfc385822007-05-03 03:36:16 -0700572 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
575 goto inhdr_error;
576
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700577 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 if (iph->ihl < 5 || iph->version != 4)
579 goto inhdr_error;
580
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800581 if (!pskb_may_pull(skb, 4 * iph->ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 goto inhdr_error;
583
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700584 iph = ip_hdr(skb);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800585 if (ip_fast_csum((__u8 *) iph, iph->ihl) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 goto inhdr_error;
587
588 len = ntohs(iph->tot_len);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800589 if (skb->len < len || len < 4 * iph->ihl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 goto inhdr_error;
591
Herbert Xub38dfee2006-06-09 16:13:01 -0700592 pskb_trim_rcsum(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Herbert Xu17762062010-07-05 21:29:28 +0000594 /* BUG: Should really parse the IP options here. */
595 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
596
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800597 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800598 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800600 if (!setup_pre_routing(skb))
601 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200603 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100605 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 br_nf_pre_routing_finish);
607
608 return NF_STOLEN;
609
610inhdr_error:
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800611// IP_INC_STATS_BH(IpInHdrErrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612out:
613 return NF_DROP;
614}
615
616
617/* PF_BRIDGE/LOCAL_IN ************************************************/
618/* The packet is locally destined, which requires a real
619 * dst_entry, so detach the fake one. On the way up, the
620 * packet would pass through PRE_ROUTING again (which already
621 * took place when the packet entered the bridge), but we
622 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
623 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700624static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800625 const struct net_device *in,
626 const struct net_device *out,
627 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000629 struct rtable *rt = skb_rtable(skb);
630
Eric Dumazetadf30902009-06-02 05:19:30 +0000631 if (rt && rt == bridge_parent_rtable(in))
632 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634 return NF_ACCEPT;
635}
636
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637/* PF_BRIDGE/FORWARD *************************************************/
638static int br_nf_forward_finish(struct sk_buff *skb)
639{
640 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
641 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800643 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 in = nf_bridge->physindev;
645 if (nf_bridge->mask & BRNF_PKT_TYPE) {
646 skb->pkt_type = PACKET_OTHERHOST;
647 nf_bridge->mask ^= BRNF_PKT_TYPE;
648 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200649 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 } else {
651 in = *((struct net_device **)(skb->cb));
652 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700653 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200654
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100655 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800656 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return 0;
658}
659
660/* This is the 'purely bridged' case. For IP, we pass the packet to
661 * netfilter with indev and outdev set to the bridge device,
662 * but we are still able to filter on the 'real' indev/outdev
663 * because of the physdev module. For ARP, indev and outdev are the
664 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700665static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800666 const struct net_device *in,
667 const struct net_device *out,
668 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800671 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200672 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674 if (!skb->nf_bridge)
675 return NF_ACCEPT;
676
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800677 /* Need exclusive nf_bridge_info since we might have multiple
678 * different physoutdevs. */
679 if (!nf_bridge_unshare(skb))
680 return NF_DROP;
681
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800682 parent = bridge_parent(out);
683 if (!parent)
684 return NF_DROP;
685
Michael Milner516299d2007-04-12 22:14:23 -0700686 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
687 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000689 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
690 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000692 else
693 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Herbert Xu3db05fe2007-10-15 00:53:15 -0700695 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 nf_bridge = skb->nf_bridge;
698 if (skb->pkt_type == PACKET_OTHERHOST) {
699 skb->pkt_type = PACKET_HOST;
700 nf_bridge->mask |= BRNF_PKT_TYPE;
701 }
702
703 /* The physdev module checks on this */
704 nf_bridge->mask |= BRNF_BRIDGED;
705 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200706 if (pf == PF_INET)
707 skb->protocol = htons(ETH_P_IP);
708 else
709 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800711 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800712 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
714 return NF_STOLEN;
715}
716
Herbert Xu3db05fe2007-10-15 00:53:15 -0700717static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800718 const struct net_device *in,
719 const struct net_device *out,
720 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 struct net_device **d = (struct net_device **)(skb->cb);
723
724#ifdef CONFIG_SYSCTL
725 if (!brnf_call_arptables)
726 return NF_ACCEPT;
727#endif
728
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800729 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800730 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700732 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 }
734
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300735 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700736 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700737 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return NF_ACCEPT;
739 }
740 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700741 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 (struct net_device *)out, br_nf_forward_finish);
743
744 return NF_STOLEN;
745}
746
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200747#if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700748static int br_nf_dev_queue_xmit(struct sk_buff *skb)
749{
Bart De Schuymere179e632010-04-15 12:26:39 +0200750 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200751 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
Herbert Xu89114af2006-07-08 13:34:32 -0700752 !skb_is_gso(skb))
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700753 return ip_fragment(skb, br_dev_queue_push_xmit);
754 else
755 return br_dev_queue_push_xmit(skb);
756}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200757#else
758static int br_nf_dev_queue_xmit(struct sk_buff *skb)
759{
760 return br_dev_queue_push_xmit(skb);
761}
762#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
764/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700765static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800766 const struct net_device *in,
767 const struct net_device *out,
768 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700770 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200772 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200774 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800775 return NF_ACCEPT;
776
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800777 if (!realoutdev)
778 return NF_DROP;
779
Michael Milner516299d2007-04-12 22:14:23 -0700780 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
781 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000783 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
784 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000786 else
787 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
790 * about the value of skb->pkt_type. */
791 if (skb->pkt_type == PACKET_OTHERHOST) {
792 skb->pkt_type = PACKET_HOST;
793 nf_bridge->mask |= BRNF_PKT_TYPE;
794 }
795
Patrick McHardyfc385822007-05-03 03:36:16 -0700796 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200798 if (pf == PF_INET)
799 skb->protocol = htons(ETH_P_IP);
800 else
801 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800803 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700804 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809/* IP/SABOTAGE *****************************************************/
810/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
811 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700812static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800813 const struct net_device *in,
814 const struct net_device *out,
815 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700817 if (skb->nf_bridge &&
818 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return NF_STOP;
820 }
821
822 return NF_ACCEPT;
823}
824
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200825/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
826 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800827static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000828 {
829 .hook = br_nf_pre_routing,
830 .owner = THIS_MODULE,
831 .pf = PF_BRIDGE,
832 .hooknum = NF_BR_PRE_ROUTING,
833 .priority = NF_BR_PRI_BRNF,
834 },
835 {
836 .hook = br_nf_local_in,
837 .owner = THIS_MODULE,
838 .pf = PF_BRIDGE,
839 .hooknum = NF_BR_LOCAL_IN,
840 .priority = NF_BR_PRI_BRNF,
841 },
842 {
843 .hook = br_nf_forward_ip,
844 .owner = THIS_MODULE,
845 .pf = PF_BRIDGE,
846 .hooknum = NF_BR_FORWARD,
847 .priority = NF_BR_PRI_BRNF - 1,
848 },
849 {
850 .hook = br_nf_forward_arp,
851 .owner = THIS_MODULE,
852 .pf = PF_BRIDGE,
853 .hooknum = NF_BR_FORWARD,
854 .priority = NF_BR_PRI_BRNF,
855 },
856 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000857 .hook = br_nf_post_routing,
858 .owner = THIS_MODULE,
859 .pf = PF_BRIDGE,
860 .hooknum = NF_BR_POST_ROUTING,
861 .priority = NF_BR_PRI_LAST,
862 },
863 {
864 .hook = ip_sabotage_in,
865 .owner = THIS_MODULE,
866 .pf = PF_INET,
867 .hooknum = NF_INET_PRE_ROUTING,
868 .priority = NF_IP_PRI_FIRST,
869 },
870 {
871 .hook = ip_sabotage_in,
872 .owner = THIS_MODULE,
873 .pf = PF_INET6,
874 .hooknum = NF_INET_PRE_ROUTING,
875 .priority = NF_IP6_PRI_FIRST,
876 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877};
878
879#ifdef CONFIG_SYSCTL
880static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700881int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800882 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
884 int ret;
885
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700886 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (write && *(int *)(ctl->data))
889 *(int *)(ctl->data) = 1;
890 return ret;
891}
892
893static ctl_table brnf_table[] = {
894 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 .procname = "bridge-nf-call-arptables",
896 .data = &brnf_call_arptables,
897 .maxlen = sizeof(int),
898 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800899 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 },
901 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 .procname = "bridge-nf-call-iptables",
903 .data = &brnf_call_iptables,
904 .maxlen = sizeof(int),
905 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800906 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 },
908 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 .procname = "bridge-nf-call-ip6tables",
910 .data = &brnf_call_ip6tables,
911 .maxlen = sizeof(int),
912 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800913 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 },
915 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 .procname = "bridge-nf-filter-vlan-tagged",
917 .data = &brnf_filter_vlan_tagged,
918 .maxlen = sizeof(int),
919 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800920 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 },
Michael Milner516299d2007-04-12 22:14:23 -0700922 {
Michael Milner516299d2007-04-12 22:14:23 -0700923 .procname = "bridge-nf-filter-pppoe-tagged",
924 .data = &brnf_filter_pppoe_tagged,
925 .maxlen = sizeof(int),
926 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800927 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -0700928 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800929 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930};
931
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800932static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800933 { .procname = "net", },
934 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800935 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936};
937#endif
938
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800939int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800941 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800943 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
944 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800947 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800949 printk(KERN_WARNING
950 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800951 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
952 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 }
954#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 return 0;
957}
958
959void br_netfilter_fini(void)
960{
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800961 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962#ifdef CONFIG_SYSCTL
963 unregister_sysctl_table(brnf_sysctl_header);
964#endif
965}