blob: f54404ddee53b1063de368c50e0f7a1615540d08 [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
Changli Gaod8d1f302010-06-10 23:31:35 -0700120 atomic_set(&rt->dst.__refcnt, 1);
121 rt->dst.dev = br->dev;
122 rt->dst.path = &rt->dst;
123 rt->dst.metrics[RTAX_MTU - 1] = 1500;
124 rt->dst.flags = DST_NOXFRM;
125 rt->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{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000130 if (!br_port_exists(dev))
131 return NULL;
132 return &br_port_get_rcu(dev)->br->fake_rtable;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700133}
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{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000137 if (!br_port_exists(dev))
138 return NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800139
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000140 return br_port_get_rcu(dev)->br->dev;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800141}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800143static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
144{
145 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
146 if (likely(skb->nf_bridge))
147 atomic_set(&(skb->nf_bridge->use), 1);
148
149 return skb->nf_bridge;
150}
151
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800152static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
153{
154 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
155
156 if (atomic_read(&nf_bridge->use) > 1) {
157 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
158
159 if (tmp) {
160 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
161 atomic_set(&tmp->use, 1);
162 nf_bridge_put(nf_bridge);
163 }
164 nf_bridge = tmp;
165 }
166 return nf_bridge;
167}
168
Patrick McHardyfc385822007-05-03 03:36:16 -0700169static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
170{
171 unsigned int len = nf_bridge_encap_header_len(skb);
172
173 skb_push(skb, len);
174 skb->network_header -= len;
175}
176
177static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
178{
179 unsigned int len = nf_bridge_encap_header_len(skb);
180
181 skb_pull(skb, len);
182 skb->network_header += len;
183}
184
185static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
186{
187 unsigned int len = nf_bridge_encap_header_len(skb);
188
189 skb_pull_rcsum(skb, len);
190 skb->network_header += len;
191}
192
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800193static inline void nf_bridge_save_header(struct sk_buff *skb)
194{
Patrick McHardyfc385822007-05-03 03:36:16 -0700195 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800196
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300197 skb_copy_from_linear_data_offset(skb, -header_size,
198 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800199}
200
Bart De Schuymere179e632010-04-15 12:26:39 +0200201static inline void nf_bridge_update_protocol(struct sk_buff *skb)
202{
203 if (skb->nf_bridge->mask & BRNF_8021Q)
204 skb->protocol = htons(ETH_P_8021Q);
205 else if (skb->nf_bridge->mask & BRNF_PPPoE)
206 skb->protocol = htons(ETH_P_PPP_SES);
207}
208
209/* Fill in the header for fragmented IP packets handled by
210 * the IPv4 connection tracking code.
Stephen Hemminger073176212006-08-29 17:48:17 -0700211 */
212int nf_bridge_copy_header(struct sk_buff *skb)
213{
214 int err;
Bart De Schuymere179e632010-04-15 12:26:39 +0200215 unsigned int header_size;
Stephen Hemminger073176212006-08-29 17:48:17 -0700216
Bart De Schuymere179e632010-04-15 12:26:39 +0200217 nf_bridge_update_protocol(skb);
218 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Herbert Xud9cc2042007-09-16 16:21:16 -0700219 err = skb_cow_head(skb, header_size);
Stephen Hemminger073176212006-08-29 17:48:17 -0700220 if (err)
221 return err;
222
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300223 skb_copy_to_linear_data_offset(skb, -header_size,
224 skb->nf_bridge->data, header_size);
Patrick McHardyfc385822007-05-03 03:36:16 -0700225 __skb_push(skb, nf_bridge_encap_header_len(skb));
Stephen Hemminger073176212006-08-29 17:48:17 -0700226 return 0;
227}
228
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229/* PF_BRIDGE/PRE_ROUTING *********************************************/
230/* Undo the changes made for ip6tables PREROUTING and continue the
231 * bridge PRE_ROUTING hook. */
232static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
233{
234 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000235 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 if (nf_bridge->mask & BRNF_PKT_TYPE) {
238 skb->pkt_type = PACKET_OTHERHOST;
239 nf_bridge->mask ^= BRNF_PKT_TYPE;
240 }
241 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
242
Eric Dumazet511c3f92009-06-02 05:14:27 +0000243 rt = bridge_parent_rtable(nf_bridge->physindev);
244 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700245 kfree_skb(skb);
246 return 0;
247 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700248 dst_hold(&rt->dst);
249 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
251 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200252 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700253 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100254 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 br_handle_frame_finish, 1);
256
257 return 0;
258}
259
Bart De Schuymere179e632010-04-15 12:26:39 +0200260/* Obtain the correct destination MAC address, while preserving the original
261 * source MAC address. If we already know this address, we just copy it. If we
262 * don't, we use the neighbour framework to find out. In both cases, we make
263 * sure that br_handle_frame_finish() is called afterwards.
264 */
265static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
266{
267 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
268 struct dst_entry *dst;
269
270 skb->dev = bridge_parent(skb->dev);
271 if (!skb->dev)
272 goto free_skb;
273 dst = skb_dst(skb);
274 if (dst->hh) {
275 neigh_hh_bridge(dst->hh, skb);
276 skb->dev = nf_bridge->physindev;
277 return br_handle_frame_finish(skb);
278 } else if (dst->neighbour) {
279 /* the neighbour function below overwrites the complete
280 * MAC header, so we save the Ethernet source address and
281 * protocol number. */
282 skb_copy_from_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN), skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
283 /* tell br_dev_xmit to continue with forwarding */
284 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
285 return dst->neighbour->output(skb);
286 }
287free_skb:
288 kfree_skb(skb);
289 return 0;
290}
291
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200293 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
295 * There are two cases to consider:
296 * 1. The packet was DNAT'ed to a device in the same bridge
297 * port group as it was received on. We can still bridge
298 * the packet.
299 * 2. The packet was DNAT'ed to a different device, either
300 * a non-bridged device or another bridge port group.
301 * The packet will need to be routed.
302 *
303 * The correct way of distinguishing between these two cases is to
304 * call ip_route_input() and to look at skb->dst->dev, which is
305 * changed to the destination device if ip_route_input() succeeds.
306 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200307 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200309 * If the output device equals the logical bridge device the packet
310 * came in on, we can consider this bridging. The corresponding MAC
311 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 * Otherwise, the packet is considered to be routed and we just
313 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800314 * later be passed up to the IP stack to be routed. For a redirected
315 * packet, ip_route_input() will give back the localhost as output device,
316 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200318 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800320 * This can be because the destination address is martian, in which case
321 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200322 * If IP forwarding is disabled, ip_route_input() will fail, while
323 * ip_route_output_key() can return success. The source
324 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200326 * if IP forwarding is enabled. If the output device equals the logical bridge
327 * device, we proceed as if ip_route_input() succeeded. If it differs from the
328 * logical bridge port or if ip_route_output_key() fails we drop the packet.
329 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330static int br_nf_pre_routing_finish(struct sk_buff *skb)
331{
332 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700333 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000335 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800336 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (nf_bridge->mask & BRNF_PKT_TYPE) {
339 skb->pkt_type = PACKET_OTHERHOST;
340 nf_bridge->mask ^= BRNF_PKT_TYPE;
341 }
342 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800344 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800345 struct flowi fl = {
346 .nl_u = {
347 .ip4_u = {
348 .daddr = iph->daddr,
349 .saddr = 0,
350 .tos = RT_TOS(iph->tos) },
351 },
352 .proto = 0,
353 };
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200354 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800355
356 /* If err equals -EHOSTUNREACH the error is due to a
357 * martian destination or due to the fact that
358 * forwarding is disabled. For most martian packets,
359 * ip_route_output_key() will fail. It won't fail for 2 types of
360 * martian destinations: loopback destinations and destination
361 * 0.0.0.0. In both cases the packet will be dropped because the
362 * destination is the loopback device and not the bridge. */
363 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
364 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
Alexey Dobriyan249b6202008-11-04 14:31:29 +0100366 if (!ip_route_output_key(dev_net(dev), &rt, &fl)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700367 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800368 * require ip_forwarding. */
369 if (((struct dst_entry *)rt)->dev == dev) {
Eric Dumazetadf30902009-06-02 05:19:30 +0000370 skb_dst_set(skb, (struct dst_entry *)rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 goto bridged_dnat;
372 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 dst_release((struct dst_entry *)rt);
374 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800375free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 kfree_skb(skb);
377 return 0;
378 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000379 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200382 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700383 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100384 NF_HOOK_THRESH(NFPROTO_BRIDGE,
385 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 skb, skb->dev, NULL,
387 br_nf_pre_routing_finish_bridge,
388 1);
389 return 0;
390 }
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800391 memcpy(eth_hdr(skb)->h_dest, dev->dev_addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 skb->pkt_type = PACKET_HOST;
393 }
394 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000395 rt = bridge_parent_rtable(nf_bridge->physindev);
396 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700397 kfree_skb(skb);
398 return 0;
399 }
Changli Gaod8d1f302010-06-10 23:31:35 -0700400 dst_hold(&rt->dst);
401 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 }
403
404 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200405 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700406 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100407 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 br_handle_frame_finish, 1);
409
410 return 0;
411}
412
413/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800414static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
416 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
417
418 if (skb->pkt_type == PACKET_OTHERHOST) {
419 skb->pkt_type = PACKET_HOST;
420 nf_bridge->mask |= BRNF_PKT_TYPE;
421 }
422
423 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
424 nf_bridge->physindev = skb->dev;
425 skb->dev = bridge_parent(skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200426 if (skb->protocol == htons(ETH_P_8021Q))
427 nf_bridge->mask |= BRNF_8021Q;
428 else if (skb->protocol == htons(ETH_P_PPP_SES))
429 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800430
431 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
434/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
435static int check_hbh_len(struct sk_buff *skb)
436{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700437 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700439 const unsigned char *nh = skb_network_header(skb);
440 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800441 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 if ((raw + len) - skb->data > skb_headlen(skb))
444 goto bad;
445
446 off += 2;
447 len -= 2;
448
449 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700450 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700452 switch (nh[off]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 case IPV6_TLV_PAD0:
454 optlen = 1;
455 break;
456
457 case IPV6_TLV_PADN:
458 break;
459
460 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700461 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700463 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800464 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700465 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800466 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
468 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800469 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800470 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800471 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700472 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 break;
474 default:
475 if (optlen > len)
476 goto bad;
477 break;
478 }
479 off += optlen;
480 len -= optlen;
481 }
482 if (len == 0)
483 return 0;
484bad:
485 return -1;
486
487}
488
489/* Replicate the checks that IPv6 does on packet reception and pass the packet
490 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
491static unsigned int br_nf_pre_routing_ipv6(unsigned int hook,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800492 struct sk_buff *skb,
493 const struct net_device *in,
494 const struct net_device *out,
495 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 struct ipv6hdr *hdr;
498 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500 if (skb->len < sizeof(struct ipv6hdr))
501 goto inhdr_error;
502
503 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
504 goto inhdr_error;
505
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700506 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508 if (hdr->version != 6)
509 goto inhdr_error;
510
511 pkt_len = ntohs(hdr->payload_len);
512
513 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
514 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
515 goto inhdr_error;
Herbert Xub38dfee2006-06-09 16:13:01 -0700516 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
517 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800520 goto inhdr_error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800522 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800523 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800525 if (!setup_pre_routing(skb))
526 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Bart De Schuymere179e632010-04-15 12:26:39 +0200528 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100529 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 br_nf_pre_routing_finish_ipv6);
531
532 return NF_STOLEN;
533
534inhdr_error:
535 return NF_DROP;
536}
537
538/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
539 * Replicate the checks that IPv4 does on packet reception.
540 * Set skb->dev to the bridge device (i.e. parent of the
541 * receiving device) to make netfilter happy, the REDIRECT
542 * target in particular. Save the original destination IP
543 * address to be able to detect DNAT afterwards. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700544static unsigned int br_nf_pre_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800545 const struct net_device *in,
546 const struct net_device *out,
547 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548{
549 struct iphdr *iph;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700550 __u32 len = nf_bridge_encap_header_len(skb);
551
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700552 if (unlikely(!pskb_may_pull(skb, len)))
553 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Michael Milner516299d2007-04-12 22:14:23 -0700555 if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
556 IS_PPPOE_IPV6(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557#ifdef CONFIG_SYSCTL
558 if (!brnf_call_ip6tables)
559 return NF_ACCEPT;
560#endif
Patrick McHardyfc385822007-05-03 03:36:16 -0700561 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 return br_nf_pre_routing_ipv6(hook, skb, in, out, okfn);
563 }
564#ifdef CONFIG_SYSCTL
565 if (!brnf_call_iptables)
566 return NF_ACCEPT;
567#endif
568
Michael Milner516299d2007-04-12 22:14:23 -0700569 if (skb->protocol != htons(ETH_P_IP) && !IS_VLAN_IP(skb) &&
570 !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return NF_ACCEPT;
572
Patrick McHardyfc385822007-05-03 03:36:16 -0700573 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
576 goto inhdr_error;
577
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700578 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (iph->ihl < 5 || iph->version != 4)
580 goto inhdr_error;
581
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800582 if (!pskb_may_pull(skb, 4 * iph->ihl))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 goto inhdr_error;
584
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700585 iph = ip_hdr(skb);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800586 if (ip_fast_csum((__u8 *) iph, iph->ihl) != 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 goto inhdr_error;
588
589 len = ntohs(iph->tot_len);
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800590 if (skb->len < len || len < 4 * iph->ihl)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 goto inhdr_error;
592
Herbert Xub38dfee2006-06-09 16:13:01 -0700593 pskb_trim_rcsum(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800595 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800596 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800598 if (!setup_pre_routing(skb))
599 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 store_orig_dstaddr(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200601 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100603 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 br_nf_pre_routing_finish);
605
606 return NF_STOLEN;
607
608inhdr_error:
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800609// IP_INC_STATS_BH(IpInHdrErrors);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610out:
611 return NF_DROP;
612}
613
614
615/* PF_BRIDGE/LOCAL_IN ************************************************/
616/* The packet is locally destined, which requires a real
617 * dst_entry, so detach the fake one. On the way up, the
618 * packet would pass through PRE_ROUTING again (which already
619 * took place when the packet entered the bridge), but we
620 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
621 * prevent this from happening. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700622static unsigned int br_nf_local_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800623 const struct net_device *in,
624 const struct net_device *out,
625 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700626{
Eric Dumazet511c3f92009-06-02 05:14:27 +0000627 struct rtable *rt = skb_rtable(skb);
628
Eric Dumazetadf30902009-06-02 05:19:30 +0000629 if (rt && rt == bridge_parent_rtable(in))
630 skb_dst_drop(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631
632 return NF_ACCEPT;
633}
634
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635/* PF_BRIDGE/FORWARD *************************************************/
636static int br_nf_forward_finish(struct sk_buff *skb)
637{
638 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
639 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800641 if (skb->protocol != htons(ETH_P_ARP) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 in = nf_bridge->physindev;
643 if (nf_bridge->mask & BRNF_PKT_TYPE) {
644 skb->pkt_type = PACKET_OTHERHOST;
645 nf_bridge->mask ^= BRNF_PKT_TYPE;
646 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200647 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 } else {
649 in = *((struct net_device **)(skb->cb));
650 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700651 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200652
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100653 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800654 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 return 0;
656}
657
658/* This is the 'purely bridged' case. For IP, we pass the packet to
659 * netfilter with indev and outdev set to the bridge device,
660 * but we are still able to filter on the 'real' indev/outdev
661 * because of the physdev module. For ARP, indev and outdev are the
662 * bridge ports. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700663static unsigned int br_nf_forward_ip(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800664 const struct net_device *in,
665 const struct net_device *out,
666 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800669 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200670 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
672 if (!skb->nf_bridge)
673 return NF_ACCEPT;
674
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800675 /* Need exclusive nf_bridge_info since we might have multiple
676 * different physoutdevs. */
677 if (!nf_bridge_unshare(skb))
678 return NF_DROP;
679
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800680 parent = bridge_parent(out);
681 if (!parent)
682 return NF_DROP;
683
Michael Milner516299d2007-04-12 22:14:23 -0700684 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
685 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000687 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
688 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000690 else
691 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Herbert Xu3db05fe2007-10-15 00:53:15 -0700693 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 nf_bridge = skb->nf_bridge;
696 if (skb->pkt_type == PACKET_OTHERHOST) {
697 skb->pkt_type = PACKET_HOST;
698 nf_bridge->mask |= BRNF_PKT_TYPE;
699 }
700
701 /* The physdev module checks on this */
702 nf_bridge->mask |= BRNF_BRIDGED;
703 nf_bridge->physoutdev = skb->dev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200704 if (pf == PF_INET)
705 skb->protocol = htons(ETH_P_IP);
706 else
707 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800709 NF_HOOK(pf, NF_INET_FORWARD, skb, bridge_parent(in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800710 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
712 return NF_STOLEN;
713}
714
Herbert Xu3db05fe2007-10-15 00:53:15 -0700715static unsigned int br_nf_forward_arp(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800716 const struct net_device *in,
717 const struct net_device *out,
718 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 struct net_device **d = (struct net_device **)(skb->cb);
721
722#ifdef CONFIG_SYSCTL
723 if (!brnf_call_arptables)
724 return NF_ACCEPT;
725#endif
726
Stephen Hemmingerf8a26022006-03-20 22:57:46 -0800727 if (skb->protocol != htons(ETH_P_ARP)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800728 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700730 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 }
732
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300733 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700734 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700735 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return NF_ACCEPT;
737 }
738 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700739 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 (struct net_device *)out, br_nf_forward_finish);
741
742 return NF_STOLEN;
743}
744
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200745#if defined(CONFIG_NF_CONNTRACK_IPV4) || defined(CONFIG_NF_CONNTRACK_IPV4_MODULE)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700746static int br_nf_dev_queue_xmit(struct sk_buff *skb)
747{
Bart De Schuymere179e632010-04-15 12:26:39 +0200748 if (skb->nfct != NULL && skb->protocol == htons(ETH_P_IP) &&
Bart De Schuymer6c79bf02010-04-20 16:22:01 +0200749 skb->len + nf_bridge_mtu_reduction(skb) > skb->dev->mtu &&
Herbert Xu89114af2006-07-08 13:34:32 -0700750 !skb_is_gso(skb))
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700751 return ip_fragment(skb, br_dev_queue_push_xmit);
752 else
753 return br_dev_queue_push_xmit(skb);
754}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200755#else
756static int br_nf_dev_queue_xmit(struct sk_buff *skb)
757{
758 return br_dev_queue_push_xmit(skb);
759}
760#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762/* PF_BRIDGE/POST_ROUTING ********************************************/
Herbert Xu3db05fe2007-10-15 00:53:15 -0700763static unsigned int br_nf_post_routing(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800764 const struct net_device *in,
765 const struct net_device *out,
766 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700768 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200770 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200772 if (!nf_bridge || !(nf_bridge->mask & BRNF_BRIDGED))
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800773 return NF_ACCEPT;
774
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800775 if (!realoutdev)
776 return NF_DROP;
777
Michael Milner516299d2007-04-12 22:14:23 -0700778 if (skb->protocol == htons(ETH_P_IP) || IS_VLAN_IP(skb) ||
779 IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 pf = PF_INET;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000781 else if (skb->protocol == htons(ETH_P_IPV6) || IS_VLAN_IPV6(skb) ||
782 IS_PPPOE_IPV6(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 pf = PF_INET6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000784 else
785 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
788 * about the value of skb->pkt_type. */
789 if (skb->pkt_type == PACKET_OTHERHOST) {
790 skb->pkt_type = PACKET_HOST;
791 nf_bridge->mask |= BRNF_PKT_TYPE;
792 }
793
Patrick McHardyfc385822007-05-03 03:36:16 -0700794 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 nf_bridge_save_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200796 if (pf == PF_INET)
797 skb->protocol = htons(ETH_P_IP);
798 else
799 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800801 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700802 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
804 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805}
806
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807/* IP/SABOTAGE *****************************************************/
808/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
809 * for the second time. */
Herbert Xu3db05fe2007-10-15 00:53:15 -0700810static unsigned int ip_sabotage_in(unsigned int hook, struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800811 const struct net_device *in,
812 const struct net_device *out,
813 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700815 if (skb->nf_bridge &&
816 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 return NF_STOP;
818 }
819
820 return NF_ACCEPT;
821}
822
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200823/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
824 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800825static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000826 {
827 .hook = br_nf_pre_routing,
828 .owner = THIS_MODULE,
829 .pf = PF_BRIDGE,
830 .hooknum = NF_BR_PRE_ROUTING,
831 .priority = NF_BR_PRI_BRNF,
832 },
833 {
834 .hook = br_nf_local_in,
835 .owner = THIS_MODULE,
836 .pf = PF_BRIDGE,
837 .hooknum = NF_BR_LOCAL_IN,
838 .priority = NF_BR_PRI_BRNF,
839 },
840 {
841 .hook = br_nf_forward_ip,
842 .owner = THIS_MODULE,
843 .pf = PF_BRIDGE,
844 .hooknum = NF_BR_FORWARD,
845 .priority = NF_BR_PRI_BRNF - 1,
846 },
847 {
848 .hook = br_nf_forward_arp,
849 .owner = THIS_MODULE,
850 .pf = PF_BRIDGE,
851 .hooknum = NF_BR_FORWARD,
852 .priority = NF_BR_PRI_BRNF,
853 },
854 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000855 .hook = br_nf_post_routing,
856 .owner = THIS_MODULE,
857 .pf = PF_BRIDGE,
858 .hooknum = NF_BR_POST_ROUTING,
859 .priority = NF_BR_PRI_LAST,
860 },
861 {
862 .hook = ip_sabotage_in,
863 .owner = THIS_MODULE,
864 .pf = PF_INET,
865 .hooknum = NF_INET_PRE_ROUTING,
866 .priority = NF_IP_PRI_FIRST,
867 },
868 {
869 .hook = ip_sabotage_in,
870 .owner = THIS_MODULE,
871 .pf = PF_INET6,
872 .hooknum = NF_INET_PRE_ROUTING,
873 .priority = NF_IP6_PRI_FIRST,
874 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875};
876
877#ifdef CONFIG_SYSCTL
878static
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700879int brnf_sysctl_call_tables(ctl_table * ctl, int write,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800880 void __user * buffer, size_t * lenp, loff_t * ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881{
882 int ret;
883
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700884 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
886 if (write && *(int *)(ctl->data))
887 *(int *)(ctl->data) = 1;
888 return ret;
889}
890
891static ctl_table brnf_table[] = {
892 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 .procname = "bridge-nf-call-arptables",
894 .data = &brnf_call_arptables,
895 .maxlen = sizeof(int),
896 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800897 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 },
899 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 .procname = "bridge-nf-call-iptables",
901 .data = &brnf_call_iptables,
902 .maxlen = sizeof(int),
903 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800904 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 },
906 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 .procname = "bridge-nf-call-ip6tables",
908 .data = &brnf_call_ip6tables,
909 .maxlen = sizeof(int),
910 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800911 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 },
913 {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 .procname = "bridge-nf-filter-vlan-tagged",
915 .data = &brnf_filter_vlan_tagged,
916 .maxlen = sizeof(int),
917 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800918 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 },
Michael Milner516299d2007-04-12 22:14:23 -0700920 {
Michael Milner516299d2007-04-12 22:14:23 -0700921 .procname = "bridge-nf-filter-pppoe-tagged",
922 .data = &brnf_filter_pppoe_tagged,
923 .maxlen = sizeof(int),
924 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -0800925 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -0700926 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800927 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928};
929
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800930static struct ctl_path brnf_path[] = {
Eric W. Biedermanf8572d82009-11-05 13:32:03 -0800931 { .procname = "net", },
932 { .procname = "bridge", },
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800933 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934};
935#endif
936
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800937int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800939 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800941 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
942 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944#ifdef CONFIG_SYSCTL
Pavel Emelyanovb5ccd792008-01-09 00:30:05 -0800945 brnf_sysctl_header = register_sysctl_paths(brnf_path, brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800947 printk(KERN_WARNING
948 "br_netfilter: can't register to sysctl.\n");
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800949 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
950 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 }
952#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 return 0;
955}
956
957void br_netfilter_fini(void)
958{
Patrick McHardy5eb87f42007-02-07 15:07:22 -0800959 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960#ifdef CONFIG_SYSCTL
961 unregister_sysctl_table(brnf_sysctl_header);
962#endif
963}