blob: ca1cb6704a7867c95c8be653991a4ec587f40a53 [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
Florian Westphale70deec2015-04-02 14:31:40 +0200114/* largest possible L2 header, see br_nf_dev_queue_xmit() */
115#define NF_BRIDGE_MAX_MAC_HEADER_LENGTH (PPPOE_SES_HLEN + ETH_HLEN)
116
117#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
118struct brnf_frag_data {
119 char mac[NF_BRIDGE_MAX_MAC_HEADER_LENGTH];
120 u8 encap_size;
121 u8 size;
122};
123
124static DEFINE_PER_CPU(struct brnf_frag_data, brnf_frag_data_storage);
125#endif
126
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700127static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
128{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000129 struct net_bridge_port *port;
130
131 port = br_port_get_rcu(dev);
132 return port ? &port->br->fake_rtable : NULL;
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{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000137 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800138
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000139 port = br_port_get_rcu(dev);
140 return port ? port->br->dev : NULL;
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);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800162 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000163 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800164 nf_bridge = tmp;
165 }
166 return nf_bridge;
167}
168
Florian Westphal8d045162015-03-18 20:55:31 +0100169static unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
170{
171 switch (skb->protocol) {
172 case __cpu_to_be16(ETH_P_8021Q):
173 return VLAN_HLEN;
174 case __cpu_to_be16(ETH_P_PPP_SES):
175 return PPPOE_SES_HLEN;
176 default:
177 return 0;
178 }
179}
180
Patrick McHardyfc385822007-05-03 03:36:16 -0700181static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
182{
183 unsigned int len = nf_bridge_encap_header_len(skb);
184
185 skb_push(skb, len);
186 skb->network_header -= len;
187}
188
189static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
190{
191 unsigned int len = nf_bridge_encap_header_len(skb);
192
193 skb_pull(skb, len);
194 skb->network_header += len;
195}
196
197static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
198{
199 unsigned int len = nf_bridge_encap_header_len(skb);
200
201 skb_pull_rcsum(skb, len);
202 skb->network_header += len;
203}
204
Bandan Das462fb2a2010-09-19 09:34:33 +0000205/* When handing a packet over to the IP layer
206 * check whether we have a skb that is in the
207 * expected format
208 */
209
stephen hemmingerd0280232010-10-18 14:03:21 +0000210static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000211{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000212 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000213 struct net_device *dev = skb->dev;
214 u32 len;
215
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000216 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
217 goto inhdr_error;
218
Bandan Das462fb2a2010-09-19 09:34:33 +0000219 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000220
221 /* Basic sanity checks */
222 if (iph->ihl < 5 || iph->version != 4)
223 goto inhdr_error;
224
225 if (!pskb_may_pull(skb, iph->ihl*4))
226 goto inhdr_error;
227
228 iph = ip_hdr(skb);
229 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
230 goto inhdr_error;
231
232 len = ntohs(iph->tot_len);
233 if (skb->len < len) {
234 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
235 goto drop;
236 } else if (len < (iph->ihl*4))
237 goto inhdr_error;
238
239 if (pskb_trim_rcsum(skb, len)) {
240 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
241 goto drop;
242 }
243
Eric Dumazetf8e98812011-04-12 13:39:14 -0700244 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800245 /* We should really parse IP options here but until
246 * somebody who actually uses IP options complains to
247 * us we'll just silently ignore the options because
248 * we're lazy!
249 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000250 return 0;
251
252inhdr_error:
253 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
254drop:
255 return -1;
256}
257
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100258static void nf_bridge_update_protocol(struct sk_buff *skb)
259{
260 if (skb->nf_bridge->mask & BRNF_8021Q)
261 skb->protocol = htons(ETH_P_8021Q);
262 else if (skb->nf_bridge->mask & BRNF_PPPoE)
263 skb->protocol = htons(ETH_P_PPP_SES);
264}
265
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266/* PF_BRIDGE/PRE_ROUTING *********************************************/
267/* Undo the changes made for ip6tables PREROUTING and continue the
268 * bridge PRE_ROUTING hook. */
269static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
270{
271 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000272 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 if (nf_bridge->mask & BRNF_PKT_TYPE) {
275 skb->pkt_type = PACKET_OTHERHOST;
276 nf_bridge->mask ^= BRNF_PKT_TYPE;
277 }
278 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
279
Eric Dumazet511c3f92009-06-02 05:14:27 +0000280 rt = bridge_parent_rtable(nf_bridge->physindev);
281 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700282 kfree_skb(skb);
283 return 0;
284 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200285 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
287 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200288 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700289 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100290 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 br_handle_frame_finish, 1);
292
293 return 0;
294}
295
Bart De Schuymere179e632010-04-15 12:26:39 +0200296/* Obtain the correct destination MAC address, while preserving the original
297 * source MAC address. If we already know this address, we just copy it. If we
298 * don't, we use the neighbour framework to find out. In both cases, we make
299 * sure that br_handle_frame_finish() is called afterwards.
300 */
301static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
302{
303 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700304 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200305 struct dst_entry *dst;
306
307 skb->dev = bridge_parent(skb->dev);
308 if (!skb->dev)
309 goto free_skb;
310 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700311 neigh = dst_neigh_lookup_skb(dst, skb);
312 if (neigh) {
313 int ret;
314
315 if (neigh->hh.hh_len) {
316 neigh_hh_bridge(&neigh->hh, skb);
317 skb->dev = nf_bridge->physindev;
318 ret = br_handle_frame_finish(skb);
319 } else {
320 /* the neighbour function below overwrites the complete
321 * MAC header, so we save the Ethernet source address and
322 * protocol number.
323 */
324 skb_copy_from_linear_data_offset(skb,
325 -(ETH_HLEN-ETH_ALEN),
Florian Westphale70deec2015-04-02 14:31:40 +0200326 nf_bridge->neigh_header,
David S. Millerf9d75162012-07-02 22:12:59 -0700327 ETH_HLEN-ETH_ALEN);
328 /* tell br_dev_xmit to continue with forwarding */
329 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800330 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700331 ret = neigh->output(neigh, skb);
332 }
333 neigh_release(neigh);
334 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200335 }
336free_skb:
337 kfree_skb(skb);
338 return 0;
339}
340
Florian Westphalc055d5b2015-03-10 05:08:19 +0100341static bool dnat_took_place(const struct sk_buff *skb)
342{
343#if IS_ENABLED(CONFIG_NF_CONNTRACK)
344 enum ip_conntrack_info ctinfo;
345 struct nf_conn *ct;
346
347 ct = nf_ct_get(skb, &ctinfo);
348 if (!ct || nf_ct_is_untracked(ct))
349 return false;
350
351 return test_bit(IPS_DST_NAT_BIT, &ct->status);
352#else
353 return false;
354#endif
355}
356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200358 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
360 * There are two cases to consider:
361 * 1. The packet was DNAT'ed to a device in the same bridge
362 * port group as it was received on. We can still bridge
363 * the packet.
364 * 2. The packet was DNAT'ed to a different device, either
365 * a non-bridged device or another bridge port group.
366 * The packet will need to be routed.
367 *
368 * The correct way of distinguishing between these two cases is to
369 * call ip_route_input() and to look at skb->dst->dev, which is
370 * changed to the destination device if ip_route_input() succeeds.
371 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200372 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200374 * If the output device equals the logical bridge device the packet
375 * came in on, we can consider this bridging. The corresponding MAC
376 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 * Otherwise, the packet is considered to be routed and we just
378 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800379 * later be passed up to the IP stack to be routed. For a redirected
380 * packet, ip_route_input() will give back the localhost as output device,
381 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200383 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800385 * This can be because the destination address is martian, in which case
386 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200387 * If IP forwarding is disabled, ip_route_input() will fail, while
388 * ip_route_output_key() can return success. The source
389 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200391 * if IP forwarding is enabled. If the output device equals the logical bridge
392 * device, we proceed as if ip_route_input() succeeded. If it differs from the
393 * logical bridge port or if ip_route_output_key() fails we drop the packet.
394 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395static int br_nf_pre_routing_finish(struct sk_buff *skb)
396{
397 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700398 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000400 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800401 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800402 int frag_max_size;
403
404 frag_max_size = IPCB(skb)->frag_max_size;
405 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 if (nf_bridge->mask & BRNF_PKT_TYPE) {
408 skb->pkt_type = PACKET_OTHERHOST;
409 nf_bridge->mask ^= BRNF_PKT_TYPE;
410 }
411 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800413 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200414 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800415
416 /* If err equals -EHOSTUNREACH the error is due to a
417 * martian destination or due to the fact that
418 * forwarding is disabled. For most martian packets,
419 * ip_route_output_key() will fail. It won't fail for 2 types of
420 * martian destinations: loopback destinations and destination
421 * 0.0.0.0. In both cases the packet will be dropped because the
422 * destination is the loopback device and not the bridge. */
423 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
424 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
David S. Miller78fbfd82011-03-12 00:00:52 -0500426 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
427 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800428 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700429 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800430 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800431 if (rt->dst.dev == dev) {
432 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433 goto bridged_dnat;
434 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800435 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800437free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 kfree_skb(skb);
439 return 0;
440 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000441 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200444 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700445 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100446 NF_HOOK_THRESH(NFPROTO_BRIDGE,
447 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 skb, skb->dev, NULL,
449 br_nf_pre_routing_finish_bridge,
450 1);
451 return 0;
452 }
Joe Perches04091142014-02-23 00:05:26 -0800453 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 skb->pkt_type = PACKET_HOST;
455 }
456 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000457 rt = bridge_parent_rtable(nf_bridge->physindev);
458 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700459 kfree_skb(skb);
460 return 0;
461 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200462 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
464
465 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200466 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700467 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100468 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 br_handle_frame_finish, 1);
470
471 return 0;
472}
473
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200474static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
475{
476 struct net_device *vlan, *br;
477
478 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100479 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200480 return br;
481
dingtianhongf06c7f92014-05-09 14:58:05 +0800482 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100483 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200484
485 return vlan ? vlan : br;
486}
487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800489static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
492
493 if (skb->pkt_type == PACKET_OTHERHOST) {
494 skb->pkt_type = PACKET_HOST;
495 nf_bridge->mask |= BRNF_PKT_TYPE;
496 }
497
498 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
499 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200500 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200501 if (skb->protocol == htons(ETH_P_8021Q))
502 nf_bridge->mask |= BRNF_8021Q;
503 else if (skb->protocol == htons(ETH_P_PPP_SES))
504 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800505
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200506 /* Must drop socket now because of tproxy. */
507 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800508 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509}
510
511/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
512static int check_hbh_len(struct sk_buff *skb)
513{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700514 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700516 const unsigned char *nh = skb_network_header(skb);
517 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800518 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520 if ((raw + len) - skb->data > skb_headlen(skb))
521 goto bad;
522
523 off += 2;
524 len -= 2;
525
526 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700527 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700529 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000530 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 optlen = 1;
532 break;
533
534 case IPV6_TLV_PADN:
535 break;
536
537 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700538 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700540 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800541 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700542 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800543 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
545 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800546 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800547 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800548 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700549 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 break;
551 default:
552 if (optlen > len)
553 goto bad;
554 break;
555 }
556 off += optlen;
557 len -= optlen;
558 }
559 if (len == 0)
560 return 0;
561bad:
562 return -1;
563
564}
565
566/* Replicate the checks that IPv6 does on packet reception and pass the packet
567 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200568static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800569 struct sk_buff *skb,
570 const struct net_device *in,
571 const struct net_device *out,
572 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000574 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000578 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579
580 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000581 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700583 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000586 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
588 pkt_len = ntohs(hdr->payload_len);
589
590 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
591 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000592 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700593 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000594 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
596 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000597 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800599 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800600 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800602 if (!setup_pre_routing(skb))
603 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
Bart De Schuymere179e632010-04-15 12:26:39 +0200605 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100606 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 br_nf_pre_routing_finish_ipv6);
608
609 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610}
611
612/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
613 * Replicate the checks that IPv4 does on packet reception.
614 * Set skb->dev to the bridge device (i.e. parent of the
615 * receiving device) to make netfilter happy, the REDIRECT
616 * target in particular. Save the original destination IP
617 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200618static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
619 struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800620 const struct net_device *in,
621 const struct net_device *out,
622 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200624 struct net_bridge_port *p;
625 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700626 __u32 len = nf_bridge_encap_header_len(skb);
627
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700628 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000629 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630
David S. Millere490c1de2010-07-02 22:42:06 -0700631 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200632 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000633 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200634 br = p->br;
635
Florian Westphal739e4502012-03-06 01:22:54 +0000636 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200637 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200639
Patrick McHardyfc385822007-05-03 03:36:16 -0700640 nf_bridge_pull_encap_header_rcsum(skb);
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200641 return br_nf_pre_routing_ipv6(ops, skb, in, out, okfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200643
644 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646
Florian Westphal739e4502012-03-06 01:22:54 +0000647 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 return NF_ACCEPT;
649
Patrick McHardyfc385822007-05-03 03:36:16 -0700650 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
Bandan Das462fb2a2010-09-19 09:34:33 +0000652 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000653 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000654
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800655 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800656 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800658 if (!setup_pre_routing(skb))
659 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100660
Bart De Schuymere179e632010-04-15 12:26:39 +0200661 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100663 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 br_nf_pre_routing_finish);
665
666 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667}
668
669
670/* PF_BRIDGE/LOCAL_IN ************************************************/
671/* The packet is locally destined, which requires a real
672 * dst_entry, so detach the fake one. On the way up, the
673 * packet would pass through PRE_ROUTING again (which already
674 * took place when the packet entered the bridge), but we
675 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
676 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200677static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
678 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800679 const struct net_device *in,
680 const struct net_device *out,
681 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000683 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 return NF_ACCEPT;
685}
686
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687/* PF_BRIDGE/FORWARD *************************************************/
688static int br_nf_forward_finish(struct sk_buff *skb)
689{
690 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
691 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
Florian Westphal739e4502012-03-06 01:22:54 +0000693 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Florian Westphal0b67c432015-04-01 22:36:27 +0200694 int frag_max_size;
695
696 if (skb->protocol == htons(ETH_P_IP)) {
697 frag_max_size = IPCB(skb)->frag_max_size;
698 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
699 }
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 in = nf_bridge->physindev;
702 if (nf_bridge->mask & BRNF_PKT_TYPE) {
703 skb->pkt_type = PACKET_OTHERHOST;
704 nf_bridge->mask ^= BRNF_PKT_TYPE;
705 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200706 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 } else {
708 in = *((struct net_device **)(skb->cb));
709 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700710 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200711
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100712 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800713 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 return 0;
715}
716
Florian Westphal739e4502012-03-06 01:22:54 +0000717
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718/* This is the 'purely bridged' case. For IP, we pass the packet to
719 * netfilter with indev and outdev set to the bridge device,
720 * but we are still able to filter on the 'real' indev/outdev
721 * because of the physdev module. For ARP, indev and outdev are the
722 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200723static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
724 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800725 const struct net_device *in,
726 const struct net_device *out,
727 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800730 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200731 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733 if (!skb->nf_bridge)
734 return NF_ACCEPT;
735
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800736 /* Need exclusive nf_bridge_info since we might have multiple
737 * different physoutdevs. */
738 if (!nf_bridge_unshare(skb))
739 return NF_DROP;
740
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800741 parent = bridge_parent(out);
742 if (!parent)
743 return NF_DROP;
744
Florian Westphal739e4502012-03-06 01:22:54 +0000745 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000746 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000747 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000748 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000749 else
750 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
Herbert Xu3db05fe2007-10-15 00:53:15 -0700752 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 nf_bridge = skb->nf_bridge;
755 if (skb->pkt_type == PACKET_OTHERHOST) {
756 skb->pkt_type = PACKET_HOST;
757 nf_bridge->mask |= BRNF_PKT_TYPE;
758 }
759
Florian Westphal0b67c432015-04-01 22:36:27 +0200760 if (pf == NFPROTO_IPV4) {
761 int frag_max = BR_INPUT_SKB_CB(skb)->frag_max_size;
762
763 if (br_parse_ip_options(skb))
764 return NF_DROP;
765
766 IPCB(skb)->frag_max_size = frag_max;
767 }
Herbert Xu6b1e9602011-03-18 05:27:28 +0000768
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000770 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200771 skb->protocol = htons(ETH_P_IP);
772 else
773 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200775 NF_HOOK(pf, NF_INET_FORWARD, skb, brnf_get_logical_dev(skb, in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800776 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778 return NF_STOLEN;
779}
780
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200781static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
782 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800783 const struct net_device *in,
784 const struct net_device *out,
785 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200787 struct net_bridge_port *p;
788 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct net_device **d = (struct net_device **)(skb->cb);
790
David S. Millere490c1de2010-07-02 22:42:06 -0700791 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200792 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200794 br = p->br;
795
796 if (!brnf_call_arptables && !br->nf_call_arptables)
797 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798
Florian Westphal739e4502012-03-06 01:22:54 +0000799 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800800 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700802 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
804
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300805 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700806 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700807 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return NF_ACCEPT;
809 }
810 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700811 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 (struct net_device *)out, br_nf_forward_finish);
813
814 return NF_STOLEN;
815}
816
Vasily Averinaff09ce2014-05-05 00:17:48 +0400817#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100818static int br_nf_push_frag_xmit(struct sk_buff *skb)
819{
Florian Westphale70deec2015-04-02 14:31:40 +0200820 struct brnf_frag_data *data;
821 int err;
822
823 data = this_cpu_ptr(&brnf_frag_data_storage);
824 err = skb_cow_head(skb, data->size);
825
826 if (err) {
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100827 kfree_skb(skb);
828 return 0;
829 }
830
Florian Westphale70deec2015-04-02 14:31:40 +0200831 skb_copy_to_linear_data_offset(skb, -data->size, data->mac, data->size);
832 __skb_push(skb, data->encap_size);
833
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100834 return br_dev_queue_push_xmit(skb);
835}
836
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700837static int br_nf_dev_queue_xmit(struct sk_buff *skb)
838{
Bandan Das462fb2a2010-09-19 09:34:33 +0000839 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800840 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100841 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000842
Florian Westphal7a8d8312015-03-05 00:52:36 +0100843 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP))
844 return br_dev_queue_push_xmit(skb);
845
846 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800847 /* This is wrong! We should preserve the original fragment
848 * boundaries by preserving frag_list rather than refragmenting.
849 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100850 if (skb->len + mtu_reserved > skb->dev->mtu) {
Florian Westphale70deec2015-04-02 14:31:40 +0200851 struct brnf_frag_data *data;
852
Herbert Xu93fdd472014-10-05 12:00:22 +0800853 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000854 if (br_parse_ip_options(skb))
855 /* Drop invalid packet */
856 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800857 IPCB(skb)->frag_max_size = frag_max_size;
Florian Westphale70deec2015-04-02 14:31:40 +0200858
859 nf_bridge_update_protocol(skb);
860
861 data = this_cpu_ptr(&brnf_frag_data_storage);
862 data->encap_size = nf_bridge_encap_header_len(skb);
863 data->size = ETH_HLEN + data->encap_size;
864
865 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
866 data->size);
867
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100868 ret = ip_fragment(skb, br_nf_push_frag_xmit);
Florian Westphale70deec2015-04-02 14:31:40 +0200869 } else {
Bandan Das462fb2a2010-09-19 09:34:33 +0000870 ret = br_dev_queue_push_xmit(skb);
Florian Westphale70deec2015-04-02 14:31:40 +0200871 }
Bandan Das462fb2a2010-09-19 09:34:33 +0000872
873 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700874}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200875#else
876static int br_nf_dev_queue_xmit(struct sk_buff *skb)
877{
878 return br_dev_queue_push_xmit(skb);
879}
880#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
882/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200883static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
884 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800885 const struct net_device *in,
886 const struct net_device *out,
887 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700889 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200891 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100893 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
894 * on a bridge, but was delivered locally and is now being routed:
895 *
896 * POST_ROUTING was already invoked from the ip stack.
897 */
898 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800899 return NF_ACCEPT;
900
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800901 if (!realoutdev)
902 return NF_DROP;
903
Florian Westphal739e4502012-03-06 01:22:54 +0000904 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000905 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000906 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000907 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000908 else
909 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
912 * about the value of skb->pkt_type. */
913 if (skb->pkt_type == PACKET_OTHERHOST) {
914 skb->pkt_type = PACKET_HOST;
915 nf_bridge->mask |= BRNF_PKT_TYPE;
916 }
917
Patrick McHardyfc385822007-05-03 03:36:16 -0700918 nf_bridge_pull_encap_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000919 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200920 skb->protocol = htons(ETH_P_IP);
921 else
922 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800924 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700925 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928}
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930/* IP/SABOTAGE *****************************************************/
931/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
932 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200933static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
934 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800935 const struct net_device *in,
936 const struct net_device *out,
937 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700939 if (skb->nf_bridge &&
940 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 return NF_STOP;
942 }
943
944 return NF_ACCEPT;
945}
946
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100947/* This is called when br_netfilter has called into iptables/netfilter,
948 * and DNAT has taken place on a bridge-forwarded packet.
949 *
950 * neigh->output has created a new MAC header, with local br0 MAC
951 * as saddr.
952 *
953 * This restores the original MAC saddr of the bridged packet
954 * before invoking bridge forward logic to transmit the packet.
955 */
956static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
957{
958 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
959
960 skb_pull(skb, ETH_HLEN);
961 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
962
Florian Westphale70deec2015-04-02 14:31:40 +0200963 BUILD_BUG_ON(sizeof(nf_bridge->neigh_header) != (ETH_HLEN - ETH_ALEN));
964
965 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN - ETH_ALEN),
966 nf_bridge->neigh_header,
967 ETH_HLEN - ETH_ALEN);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100968 skb->dev = nf_bridge->physindev;
969 br_handle_frame_finish(skb);
970}
971
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100972static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100973{
974 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
975 br_nf_pre_routing_finish_bridge_slow(skb);
976 return 1;
977 }
978 return 0;
979}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100980
981static const struct nf_br_ops br_ops = {
982 .br_dev_xmit_hook = br_nf_dev_xmit,
983};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100984
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +0200985void br_netfilter_enable(void)
986{
987}
988EXPORT_SYMBOL_GPL(br_netfilter_enable);
989
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200990/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
991 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800992static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000993 {
994 .hook = br_nf_pre_routing,
995 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000996 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000997 .hooknum = NF_BR_PRE_ROUTING,
998 .priority = NF_BR_PRI_BRNF,
999 },
1000 {
1001 .hook = br_nf_local_in,
1002 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001003 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001004 .hooknum = NF_BR_LOCAL_IN,
1005 .priority = NF_BR_PRI_BRNF,
1006 },
1007 {
1008 .hook = br_nf_forward_ip,
1009 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001010 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001011 .hooknum = NF_BR_FORWARD,
1012 .priority = NF_BR_PRI_BRNF - 1,
1013 },
1014 {
1015 .hook = br_nf_forward_arp,
1016 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001017 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001018 .hooknum = NF_BR_FORWARD,
1019 .priority = NF_BR_PRI_BRNF,
1020 },
1021 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001022 .hook = br_nf_post_routing,
1023 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001024 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001025 .hooknum = NF_BR_POST_ROUTING,
1026 .priority = NF_BR_PRI_LAST,
1027 },
1028 {
1029 .hook = ip_sabotage_in,
1030 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001031 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001032 .hooknum = NF_INET_PRE_ROUTING,
1033 .priority = NF_IP_PRI_FIRST,
1034 },
1035 {
1036 .hook = ip_sabotage_in,
1037 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001038 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001039 .hooknum = NF_INET_PRE_ROUTING,
1040 .priority = NF_IP6_PRI_FIRST,
1041 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042};
1043
1044#ifdef CONFIG_SYSCTL
1045static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001046int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001047 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048{
1049 int ret;
1050
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001051 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052
1053 if (write && *(int *)(ctl->data))
1054 *(int *)(ctl->data) = 1;
1055 return ret;
1056}
1057
Joe Perchesfe2c6332013-06-11 23:04:25 -07001058static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 .procname = "bridge-nf-call-arptables",
1061 .data = &brnf_call_arptables,
1062 .maxlen = sizeof(int),
1063 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001064 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 },
1066 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .procname = "bridge-nf-call-iptables",
1068 .data = &brnf_call_iptables,
1069 .maxlen = sizeof(int),
1070 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001071 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 },
1073 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 .procname = "bridge-nf-call-ip6tables",
1075 .data = &brnf_call_ip6tables,
1076 .maxlen = sizeof(int),
1077 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001078 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 },
1080 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 .procname = "bridge-nf-filter-vlan-tagged",
1082 .data = &brnf_filter_vlan_tagged,
1083 .maxlen = sizeof(int),
1084 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001085 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 },
Michael Milner516299d2007-04-12 22:14:23 -07001087 {
Michael Milner516299d2007-04-12 22:14:23 -07001088 .procname = "bridge-nf-filter-pppoe-tagged",
1089 .data = &brnf_filter_pppoe_tagged,
1090 .maxlen = sizeof(int),
1091 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001092 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001093 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001094 {
1095 .procname = "bridge-nf-pass-vlan-input-dev",
1096 .data = &brnf_pass_vlan_indev,
1097 .maxlen = sizeof(int),
1098 .mode = 0644,
1099 .proc_handler = brnf_sysctl_call_tables,
1100 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001101 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103#endif
1104
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001105static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001107 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001109 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001110 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001114 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001116 printk(KERN_WARNING
1117 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001118 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1119 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 }
1121#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001122 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 return 0;
1125}
1126
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001127static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001129 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001130 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001132 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001134}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001135
1136module_init(br_netfilter_init);
1137module_exit(br_netfilter_fini);
1138
1139MODULE_LICENSE("GPL");
1140MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1141MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1142MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");