blob: acd31c9f21165cf06e36555d20746e027f24dfee [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>
Florian Westphal56768642014-11-13 10:04:16 +010038#include <net/netfilter/br_netfilter.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020039
Florian Westphalc055d5b2015-03-10 05:08:19 +010040#if IS_ENABLED(CONFIG_NF_CONNTRACK)
41#include <net/netfilter/nf_conntrack.h>
42#endif
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "br_private.h"
46#ifdef CONFIG_SYSCTL
47#include <linux/sysctl.h>
48#endif
49
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;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020057static int brnf_pass_vlan_indev __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
Patrick McHardy4df53d82010-07-02 09:32:57 +020059#define brnf_call_iptables 1
60#define brnf_call_ip6tables 1
61#define brnf_call_arptables 1
Herbert Xu47e0e1c2009-01-12 00:06:03 +000062#define brnf_filter_vlan_tagged 0
63#define brnf_filter_pppoe_tagged 0
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020064#define brnf_pass_vlan_indev 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Florian Westphal739e4502012-03-06 01:22:54 +000067#define IS_IP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010068 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
Florian Westphal739e4502012-03-06 01:22:54 +000069
70#define IS_IPV6(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010071 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
Florian Westphal739e4502012-03-06 01:22:54 +000072
73#define IS_ARP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010074 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
Florian Westphal739e4502012-03-06 01:22:54 +000075
Dave Jonesb6f99a22007-03-22 12:27:49 -070076static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080077{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010078 if (skb_vlan_tag_present(skb))
Jesse Gross13937912010-10-20 13:56:01 +000079 return skb->protocol;
80 else if (skb->protocol == htons(ETH_P_8021Q))
81 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
82 else
83 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080084}
85
86#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000087 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080088 brnf_filter_vlan_tagged)
89
90#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000091 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080092 brnf_filter_vlan_tagged)
93
94#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000095 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080096 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Michael Milner516299d2007-04-12 22:14:23 -070098static inline __be16 pppoe_proto(const struct sk_buff *skb)
99{
100 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
101 sizeof(struct pppoe_hdr)));
102}
103
104#define IS_PPPOE_IP(skb) \
105 (skb->protocol == htons(ETH_P_PPP_SES) && \
106 pppoe_proto(skb) == htons(PPP_IP) && \
107 brnf_filter_pppoe_tagged)
108
109#define IS_PPPOE_IPV6(skb) \
110 (skb->protocol == htons(ETH_P_PPP_SES) && \
111 pppoe_proto(skb) == htons(PPP_IPV6) && \
112 brnf_filter_pppoe_tagged)
113
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700114static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
115{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000116 struct net_bridge_port *port;
117
118 port = br_port_get_rcu(dev);
119 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800122static inline struct net_device *bridge_parent(const struct net_device *dev)
123{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000124 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800125
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000126 port = br_port_get_rcu(dev);
127 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800130static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
131{
132 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
133 if (likely(skb->nf_bridge))
134 atomic_set(&(skb->nf_bridge->use), 1);
135
136 return skb->nf_bridge;
137}
138
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800139static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
140{
141 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
142
143 if (atomic_read(&nf_bridge->use) > 1) {
144 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
145
146 if (tmp) {
147 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
148 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800149 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000150 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800151 nf_bridge = tmp;
152 }
153 return nf_bridge;
154}
155
Florian Westphal8d045162015-03-18 20:55:31 +0100156static unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
157{
158 switch (skb->protocol) {
159 case __cpu_to_be16(ETH_P_8021Q):
160 return VLAN_HLEN;
161 case __cpu_to_be16(ETH_P_PPP_SES):
162 return PPPOE_SES_HLEN;
163 default:
164 return 0;
165 }
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
Bandan Das462fb2a2010-09-19 09:34:33 +0000200/* When handing a packet over to the IP layer
201 * check whether we have a skb that is in the
202 * expected format
203 */
204
stephen hemmingerd0280232010-10-18 14:03:21 +0000205static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000206{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000207 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000208 struct net_device *dev = skb->dev;
209 u32 len;
210
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000211 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
212 goto inhdr_error;
213
Bandan Das462fb2a2010-09-19 09:34:33 +0000214 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000215
216 /* Basic sanity checks */
217 if (iph->ihl < 5 || iph->version != 4)
218 goto inhdr_error;
219
220 if (!pskb_may_pull(skb, iph->ihl*4))
221 goto inhdr_error;
222
223 iph = ip_hdr(skb);
224 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
225 goto inhdr_error;
226
227 len = ntohs(iph->tot_len);
228 if (skb->len < len) {
229 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
230 goto drop;
231 } else if (len < (iph->ihl*4))
232 goto inhdr_error;
233
234 if (pskb_trim_rcsum(skb, len)) {
235 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
236 goto drop;
237 }
238
Eric Dumazetf8e98812011-04-12 13:39:14 -0700239 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800240 /* We should really parse IP options here but until
241 * somebody who actually uses IP options complains to
242 * us we'll just silently ignore the options because
243 * we're lazy!
244 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000245 return 0;
246
247inhdr_error:
248 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
249drop:
250 return -1;
251}
252
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100253static void nf_bridge_update_protocol(struct sk_buff *skb)
254{
255 if (skb->nf_bridge->mask & BRNF_8021Q)
256 skb->protocol = htons(ETH_P_8021Q);
257 else if (skb->nf_bridge->mask & BRNF_PPPoE)
258 skb->protocol = htons(ETH_P_PPP_SES);
259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/* PF_BRIDGE/PRE_ROUTING *********************************************/
262/* Undo the changes made for ip6tables PREROUTING and continue the
263 * bridge PRE_ROUTING hook. */
David Miller7026b1d2015-04-05 22:19:04 -0400264static int br_nf_pre_routing_finish_ipv6(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000267 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 if (nf_bridge->mask & BRNF_PKT_TYPE) {
270 skb->pkt_type = PACKET_OTHERHOST;
271 nf_bridge->mask ^= BRNF_PKT_TYPE;
272 }
273 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
274
Eric Dumazet511c3f92009-06-02 05:14:27 +0000275 rt = bridge_parent_rtable(nf_bridge->physindev);
276 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700277 kfree_skb(skb);
278 return 0;
279 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200280 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281
282 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200283 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700284 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400285 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
286 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 br_handle_frame_finish, 1);
288
289 return 0;
290}
291
Bart De Schuymere179e632010-04-15 12:26:39 +0200292/* Obtain the correct destination MAC address, while preserving the original
293 * source MAC address. If we already know this address, we just copy it. If we
294 * don't, we use the neighbour framework to find out. In both cases, we make
295 * sure that br_handle_frame_finish() is called afterwards.
296 */
David Miller7026b1d2015-04-05 22:19:04 -0400297static int br_nf_pre_routing_finish_bridge(struct sock *sk, struct sk_buff *skb)
Bart De Schuymere179e632010-04-15 12:26:39 +0200298{
299 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700300 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200301 struct dst_entry *dst;
302
303 skb->dev = bridge_parent(skb->dev);
304 if (!skb->dev)
305 goto free_skb;
306 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700307 neigh = dst_neigh_lookup_skb(dst, skb);
308 if (neigh) {
309 int ret;
310
311 if (neigh->hh.hh_len) {
312 neigh_hh_bridge(&neigh->hh, skb);
313 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400314 ret = br_handle_frame_finish(sk, skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700315 } else {
316 /* the neighbour function below overwrites the complete
317 * MAC header, so we save the Ethernet source address and
318 * protocol number.
319 */
320 skb_copy_from_linear_data_offset(skb,
321 -(ETH_HLEN-ETH_ALEN),
322 skb->nf_bridge->data,
323 ETH_HLEN-ETH_ALEN);
324 /* tell br_dev_xmit to continue with forwarding */
325 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800326 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700327 ret = neigh->output(neigh, skb);
328 }
329 neigh_release(neigh);
330 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200331 }
332free_skb:
333 kfree_skb(skb);
334 return 0;
335}
336
Florian Westphalc055d5b2015-03-10 05:08:19 +0100337static bool dnat_took_place(const struct sk_buff *skb)
338{
339#if IS_ENABLED(CONFIG_NF_CONNTRACK)
340 enum ip_conntrack_info ctinfo;
341 struct nf_conn *ct;
342
343 ct = nf_ct_get(skb, &ctinfo);
344 if (!ct || nf_ct_is_untracked(ct))
345 return false;
346
347 return test_bit(IPS_DST_NAT_BIT, &ct->status);
348#else
349 return false;
350#endif
351}
352
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200354 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 *
356 * There are two cases to consider:
357 * 1. The packet was DNAT'ed to a device in the same bridge
358 * port group as it was received on. We can still bridge
359 * the packet.
360 * 2. The packet was DNAT'ed to a different device, either
361 * a non-bridged device or another bridge port group.
362 * The packet will need to be routed.
363 *
364 * The correct way of distinguishing between these two cases is to
365 * call ip_route_input() and to look at skb->dst->dev, which is
366 * changed to the destination device if ip_route_input() succeeds.
367 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200368 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200370 * If the output device equals the logical bridge device the packet
371 * came in on, we can consider this bridging. The corresponding MAC
372 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * Otherwise, the packet is considered to be routed and we just
374 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800375 * later be passed up to the IP stack to be routed. For a redirected
376 * packet, ip_route_input() will give back the localhost as output device,
377 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200379 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800381 * This can be because the destination address is martian, in which case
382 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200383 * If IP forwarding is disabled, ip_route_input() will fail, while
384 * ip_route_output_key() can return success. The source
385 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200387 * if IP forwarding is enabled. If the output device equals the logical bridge
388 * device, we proceed as if ip_route_input() succeeded. If it differs from the
389 * logical bridge port or if ip_route_output_key() fails we drop the packet.
390 */
David Miller7026b1d2015-04-05 22:19:04 -0400391static int br_nf_pre_routing_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392{
393 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700394 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000396 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800397 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800398 int frag_max_size;
399
400 frag_max_size = IPCB(skb)->frag_max_size;
401 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 if (nf_bridge->mask & BRNF_PKT_TYPE) {
404 skb->pkt_type = PACKET_OTHERHOST;
405 nf_bridge->mask ^= BRNF_PKT_TYPE;
406 }
407 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800409 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200410 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800411
412 /* If err equals -EHOSTUNREACH the error is due to a
413 * martian destination or due to the fact that
414 * forwarding is disabled. For most martian packets,
415 * ip_route_output_key() will fail. It won't fail for 2 types of
416 * martian destinations: loopback destinations and destination
417 * 0.0.0.0. In both cases the packet will be dropped because the
418 * destination is the loopback device and not the bridge. */
419 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
420 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
David S. Miller78fbfd82011-03-12 00:00:52 -0500422 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
423 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800424 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700425 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800426 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800427 if (rt->dst.dev == dev) {
428 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 goto bridged_dnat;
430 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800431 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800433free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 kfree_skb(skb);
435 return 0;
436 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000437 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200440 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700441 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100442 NF_HOOK_THRESH(NFPROTO_BRIDGE,
443 NF_BR_PRE_ROUTING,
David Miller7026b1d2015-04-05 22:19:04 -0400444 sk, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 br_nf_pre_routing_finish_bridge,
446 1);
447 return 0;
448 }
Joe Perches04091142014-02-23 00:05:26 -0800449 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 skb->pkt_type = PACKET_HOST;
451 }
452 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000453 rt = bridge_parent_rtable(nf_bridge->physindev);
454 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700455 kfree_skb(skb);
456 return 0;
457 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200458 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
460
461 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200462 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700463 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400464 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
465 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 br_handle_frame_finish, 1);
467
468 return 0;
469}
470
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200471static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
472{
473 struct net_device *vlan, *br;
474
475 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100476 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200477 return br;
478
dingtianhongf06c7f92014-05-09 14:58:05 +0800479 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100480 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200481
482 return vlan ? vlan : br;
483}
484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800486static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
489
490 if (skb->pkt_type == PACKET_OTHERHOST) {
491 skb->pkt_type = PACKET_HOST;
492 nf_bridge->mask |= BRNF_PKT_TYPE;
493 }
494
495 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
496 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200497 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200498 if (skb->protocol == htons(ETH_P_8021Q))
499 nf_bridge->mask |= BRNF_8021Q;
500 else if (skb->protocol == htons(ETH_P_PPP_SES))
501 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800502
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200503 /* Must drop socket now because of tproxy. */
504 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800505 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506}
507
508/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
509static int check_hbh_len(struct sk_buff *skb)
510{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700511 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700513 const unsigned char *nh = skb_network_header(skb);
514 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800515 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 if ((raw + len) - skb->data > skb_headlen(skb))
518 goto bad;
519
520 off += 2;
521 len -= 2;
522
523 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700524 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700526 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000527 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 optlen = 1;
529 break;
530
531 case IPV6_TLV_PADN:
532 break;
533
534 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700535 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700537 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800538 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700539 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800540 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
542 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800543 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800544 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800545 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700546 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 break;
548 default:
549 if (optlen > len)
550 goto bad;
551 break;
552 }
553 off += optlen;
554 len -= optlen;
555 }
556 if (len == 0)
557 return 0;
558bad:
559 return -1;
560
561}
562
563/* Replicate the checks that IPv6 does on packet reception and pass the packet
564 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200565static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800566 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400567 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000569 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000573 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000576 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700578 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000581 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
583 pkt_len = ntohs(hdr->payload_len);
584
585 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
586 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000587 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700588 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000589 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
591 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000592 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800594 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800595 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800597 if (!setup_pre_routing(skb))
598 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Bart De Schuymere179e632010-04-15 12:26:39 +0200600 skb->protocol = htons(ETH_P_IPV6);
David Miller7026b1d2015-04-05 22:19:04 -0400601 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, state->sk, skb,
602 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 br_nf_pre_routing_finish_ipv6);
604
605 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
609 * Replicate the checks that IPv4 does on packet reception.
610 * Set skb->dev to the bridge device (i.e. parent of the
611 * receiving device) to make netfilter happy, the REDIRECT
612 * target in particular. Save the original destination IP
613 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200614static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
615 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400616 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200618 struct net_bridge_port *p;
619 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700620 __u32 len = nf_bridge_encap_header_len(skb);
621
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700622 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000623 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
David S. Miller238e54c2015-04-03 20:32:56 -0400625 p = br_port_get_rcu(state->in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200626 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000627 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200628 br = p->br;
629
Florian Westphal739e4502012-03-06 01:22:54 +0000630 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200631 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200633
Patrick McHardyfc385822007-05-03 03:36:16 -0700634 nf_bridge_pull_encap_header_rcsum(skb);
David S. Miller238e54c2015-04-03 20:32:56 -0400635 return br_nf_pre_routing_ipv6(ops, skb, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200637
638 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
Florian Westphal739e4502012-03-06 01:22:54 +0000641 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 return NF_ACCEPT;
643
Patrick McHardyfc385822007-05-03 03:36:16 -0700644 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Bandan Das462fb2a2010-09-19 09:34:33 +0000646 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000647 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000648
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800649 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800650 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800652 if (!setup_pre_routing(skb))
653 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100654
Bart De Schuymere179e632010-04-15 12:26:39 +0200655 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
David Miller7026b1d2015-04-05 22:19:04 -0400657 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, state->sk, skb,
658 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 br_nf_pre_routing_finish);
660
661 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662}
663
664
665/* PF_BRIDGE/LOCAL_IN ************************************************/
666/* The packet is locally destined, which requires a real
667 * dst_entry, so detach the fake one. On the way up, the
668 * packet would pass through PRE_ROUTING again (which already
669 * took place when the packet entered the bridge), but we
670 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
671 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200672static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
673 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400674 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000676 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return NF_ACCEPT;
678}
679
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680/* PF_BRIDGE/FORWARD *************************************************/
David Miller7026b1d2015-04-05 22:19:04 -0400681static int br_nf_forward_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
684 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685
Florian Westphal739e4502012-03-06 01:22:54 +0000686 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687 in = nf_bridge->physindev;
688 if (nf_bridge->mask & BRNF_PKT_TYPE) {
689 skb->pkt_type = PACKET_OTHERHOST;
690 nf_bridge->mask ^= BRNF_PKT_TYPE;
691 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200692 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 } else {
694 in = *((struct net_device **)(skb->cb));
695 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700696 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200697
David Miller7026b1d2015-04-05 22:19:04 -0400698 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, sk, skb,
699 in, skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 return 0;
701}
702
Florian Westphal739e4502012-03-06 01:22:54 +0000703
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704/* This is the 'purely bridged' case. For IP, we pass the packet to
705 * netfilter with indev and outdev set to the bridge device,
706 * but we are still able to filter on the 'real' indev/outdev
707 * because of the physdev module. For ARP, indev and outdev are the
708 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200709static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
710 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400711 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800714 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200715 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 if (!skb->nf_bridge)
718 return NF_ACCEPT;
719
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800720 /* Need exclusive nf_bridge_info since we might have multiple
721 * different physoutdevs. */
722 if (!nf_bridge_unshare(skb))
723 return NF_DROP;
724
David S. Miller238e54c2015-04-03 20:32:56 -0400725 parent = bridge_parent(state->out);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800726 if (!parent)
727 return NF_DROP;
728
Florian Westphal739e4502012-03-06 01:22:54 +0000729 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000730 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000731 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000732 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000733 else
734 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Herbert Xu3db05fe2007-10-15 00:53:15 -0700736 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 nf_bridge = skb->nf_bridge;
739 if (skb->pkt_type == PACKET_OTHERHOST) {
740 skb->pkt_type = PACKET_HOST;
741 nf_bridge->mask |= BRNF_PKT_TYPE;
742 }
743
Alban Crequyaa740f42012-05-14 03:56:36 +0000744 if (pf == NFPROTO_IPV4 && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000745 return NF_DROP;
746
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000748 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200749 skb->protocol = htons(ETH_P_IP);
750 else
751 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
David Miller7026b1d2015-04-05 22:19:04 -0400753 NF_HOOK(pf, NF_INET_FORWARD, NULL, skb,
754 brnf_get_logical_dev(skb, state->in),
David S. Miller238e54c2015-04-03 20:32:56 -0400755 parent, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756
757 return NF_STOLEN;
758}
759
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200760static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
761 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400762 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200764 struct net_bridge_port *p;
765 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 struct net_device **d = (struct net_device **)(skb->cb);
767
David S. Miller238e54c2015-04-03 20:32:56 -0400768 p = br_port_get_rcu(state->out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200769 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200771 br = p->br;
772
773 if (!brnf_call_arptables && !br->nf_call_arptables)
774 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Florian Westphal739e4502012-03-06 01:22:54 +0000776 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800777 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700779 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300782 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700783 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700784 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 return NF_ACCEPT;
786 }
David S. Miller238e54c2015-04-03 20:32:56 -0400787 *d = state->in;
David Miller7026b1d2015-04-05 22:19:04 -0400788 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, state->sk, skb,
789 state->in, state->out, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 return NF_STOLEN;
792}
793
Vasily Averinaff09ce2014-05-05 00:17:48 +0400794#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100795static bool nf_bridge_copy_header(struct sk_buff *skb)
796{
797 int err;
798 unsigned int header_size;
799
800 nf_bridge_update_protocol(skb);
801 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
802 err = skb_cow_head(skb, header_size);
803 if (err)
804 return false;
805
806 skb_copy_to_linear_data_offset(skb, -header_size,
807 skb->nf_bridge->data, header_size);
808 __skb_push(skb, nf_bridge_encap_header_len(skb));
809 return true;
810}
811
David Miller7026b1d2015-04-05 22:19:04 -0400812static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100813{
814 if (!nf_bridge_copy_header(skb)) {
815 kfree_skb(skb);
816 return 0;
817 }
818
David Miller7026b1d2015-04-05 22:19:04 -0400819 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100820}
821
David Miller7026b1d2015-04-05 22:19:04 -0400822static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700823{
Bandan Das462fb2a2010-09-19 09:34:33 +0000824 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800825 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100826 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000827
Florian Westphal7a8d8312015-03-05 00:52:36 +0100828 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP))
David Miller7026b1d2015-04-05 22:19:04 -0400829 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal7a8d8312015-03-05 00:52:36 +0100830
831 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800832 /* This is wrong! We should preserve the original fragment
833 * boundaries by preserving frag_list rather than refragmenting.
834 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100835 if (skb->len + mtu_reserved > skb->dev->mtu) {
Herbert Xu93fdd472014-10-05 12:00:22 +0800836 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000837 if (br_parse_ip_options(skb))
838 /* Drop invalid packet */
839 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800840 IPCB(skb)->frag_max_size = frag_max_size;
David Miller7026b1d2015-04-05 22:19:04 -0400841 ret = ip_fragment(sk, skb, br_nf_push_frag_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700842 } else
David Miller7026b1d2015-04-05 22:19:04 -0400843 ret = br_dev_queue_push_xmit(sk, skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000844
845 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700846}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200847#else
David Miller7026b1d2015-04-05 22:19:04 -0400848static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200849{
David Miller7026b1d2015-04-05 22:19:04 -0400850 return br_dev_queue_push_xmit(sk, skb);
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200851}
852#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853
854/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200855static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
856 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400857 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700859 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200861 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100863 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
864 * on a bridge, but was delivered locally and is now being routed:
865 *
866 * POST_ROUTING was already invoked from the ip stack.
867 */
868 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800869 return NF_ACCEPT;
870
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800871 if (!realoutdev)
872 return NF_DROP;
873
Florian Westphal739e4502012-03-06 01:22:54 +0000874 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000875 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000876 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000877 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000878 else
879 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
882 * about the value of skb->pkt_type. */
883 if (skb->pkt_type == PACKET_OTHERHOST) {
884 skb->pkt_type = PACKET_HOST;
885 nf_bridge->mask |= BRNF_PKT_TYPE;
886 }
887
Patrick McHardyfc385822007-05-03 03:36:16 -0700888 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 nf_bridge_save_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000890 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200891 skb->protocol = htons(ETH_P_IP);
892 else
893 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
David Miller7026b1d2015-04-05 22:19:04 -0400895 NF_HOOK(pf, NF_INET_POST_ROUTING, state->sk, skb,
896 NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700897 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898
899 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900}
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/* IP/SABOTAGE *****************************************************/
903/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
904 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200905static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
906 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400907 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700909 if (skb->nf_bridge &&
910 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 return NF_STOP;
912 }
913
914 return NF_ACCEPT;
915}
916
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100917/* This is called when br_netfilter has called into iptables/netfilter,
918 * and DNAT has taken place on a bridge-forwarded packet.
919 *
920 * neigh->output has created a new MAC header, with local br0 MAC
921 * as saddr.
922 *
923 * This restores the original MAC saddr of the bridged packet
924 * before invoking bridge forward logic to transmit the packet.
925 */
926static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
927{
928 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
929
930 skb_pull(skb, ETH_HLEN);
931 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
932
933 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN),
934 skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
935 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400936 br_handle_frame_finish(NULL, skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100937}
938
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100939static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100940{
941 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
942 br_nf_pre_routing_finish_bridge_slow(skb);
943 return 1;
944 }
945 return 0;
946}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100947
948static const struct nf_br_ops br_ops = {
949 .br_dev_xmit_hook = br_nf_dev_xmit,
950};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100951
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +0200952void br_netfilter_enable(void)
953{
954}
955EXPORT_SYMBOL_GPL(br_netfilter_enable);
956
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200957/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
958 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800959static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000960 {
961 .hook = br_nf_pre_routing,
962 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000963 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000964 .hooknum = NF_BR_PRE_ROUTING,
965 .priority = NF_BR_PRI_BRNF,
966 },
967 {
968 .hook = br_nf_local_in,
969 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000970 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000971 .hooknum = NF_BR_LOCAL_IN,
972 .priority = NF_BR_PRI_BRNF,
973 },
974 {
975 .hook = br_nf_forward_ip,
976 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000977 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000978 .hooknum = NF_BR_FORWARD,
979 .priority = NF_BR_PRI_BRNF - 1,
980 },
981 {
982 .hook = br_nf_forward_arp,
983 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000984 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000985 .hooknum = NF_BR_FORWARD,
986 .priority = NF_BR_PRI_BRNF,
987 },
988 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000989 .hook = br_nf_post_routing,
990 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000991 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000992 .hooknum = NF_BR_POST_ROUTING,
993 .priority = NF_BR_PRI_LAST,
994 },
995 {
996 .hook = ip_sabotage_in,
997 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000998 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000999 .hooknum = NF_INET_PRE_ROUTING,
1000 .priority = NF_IP_PRI_FIRST,
1001 },
1002 {
1003 .hook = ip_sabotage_in,
1004 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001005 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001006 .hooknum = NF_INET_PRE_ROUTING,
1007 .priority = NF_IP6_PRI_FIRST,
1008 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009};
1010
1011#ifdef CONFIG_SYSCTL
1012static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001013int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001014 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015{
1016 int ret;
1017
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001018 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019
1020 if (write && *(int *)(ctl->data))
1021 *(int *)(ctl->data) = 1;
1022 return ret;
1023}
1024
Joe Perchesfe2c6332013-06-11 23:04:25 -07001025static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027 .procname = "bridge-nf-call-arptables",
1028 .data = &brnf_call_arptables,
1029 .maxlen = sizeof(int),
1030 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001031 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032 },
1033 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 .procname = "bridge-nf-call-iptables",
1035 .data = &brnf_call_iptables,
1036 .maxlen = sizeof(int),
1037 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001038 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 },
1040 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 .procname = "bridge-nf-call-ip6tables",
1042 .data = &brnf_call_ip6tables,
1043 .maxlen = sizeof(int),
1044 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001045 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 },
1047 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048 .procname = "bridge-nf-filter-vlan-tagged",
1049 .data = &brnf_filter_vlan_tagged,
1050 .maxlen = sizeof(int),
1051 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001052 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 },
Michael Milner516299d2007-04-12 22:14:23 -07001054 {
Michael Milner516299d2007-04-12 22:14:23 -07001055 .procname = "bridge-nf-filter-pppoe-tagged",
1056 .data = &brnf_filter_pppoe_tagged,
1057 .maxlen = sizeof(int),
1058 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001059 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001060 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001061 {
1062 .procname = "bridge-nf-pass-vlan-input-dev",
1063 .data = &brnf_pass_vlan_indev,
1064 .maxlen = sizeof(int),
1065 .mode = 0644,
1066 .proc_handler = brnf_sysctl_call_tables,
1067 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001068 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070#endif
1071
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001072static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001074 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001076 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001077 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001079
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001081 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001083 printk(KERN_WARNING
1084 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001085 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1086 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 }
1088#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001089 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091 return 0;
1092}
1093
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001094static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001096 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001097 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001099 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001102
1103module_init(br_netfilter_init);
1104module_exit(br_netfilter_fini);
1105
1106MODULE_LICENSE("GPL");
1107MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1108MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1109MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");