blob: 1d2eb32d82702e00635137ba5123eec90d71fce1 [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
Florian Westphal38330782015-04-02 14:31:43 +0200127static struct nf_bridge_info *nf_bridge_info_get(const struct sk_buff *skb)
128{
129 return skb->nf_bridge;
130}
131
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200132static void nf_bridge_info_free(struct sk_buff *skb)
133{
134 if (skb->nf_bridge) {
135 nf_bridge_put(skb->nf_bridge);
136 skb->nf_bridge = NULL;
137 }
138}
139
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700140static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
141{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000142 struct net_bridge_port *port;
143
144 port = br_port_get_rcu(dev);
145 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800148static inline struct net_device *bridge_parent(const struct net_device *dev)
149{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000150 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800151
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000152 port = br_port_get_rcu(dev);
153 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800154}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800156static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
157{
158 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
159 if (likely(skb->nf_bridge))
160 atomic_set(&(skb->nf_bridge->use), 1);
161
162 return skb->nf_bridge;
163}
164
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800165static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
166{
167 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
168
169 if (atomic_read(&nf_bridge->use) > 1) {
170 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
171
172 if (tmp) {
173 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
174 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800175 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000176 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800177 nf_bridge = tmp;
178 }
179 return nf_bridge;
180}
181
Florian Westphal8d045162015-03-18 20:55:31 +0100182static unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
183{
184 switch (skb->protocol) {
185 case __cpu_to_be16(ETH_P_8021Q):
186 return VLAN_HLEN;
187 case __cpu_to_be16(ETH_P_PPP_SES):
188 return PPPOE_SES_HLEN;
189 default:
190 return 0;
191 }
192}
193
Patrick McHardyfc385822007-05-03 03:36:16 -0700194static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
195{
196 unsigned int len = nf_bridge_encap_header_len(skb);
197
198 skb_push(skb, len);
199 skb->network_header -= len;
200}
201
202static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
203{
204 unsigned int len = nf_bridge_encap_header_len(skb);
205
206 skb_pull(skb, len);
207 skb->network_header += len;
208}
209
210static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
211{
212 unsigned int len = nf_bridge_encap_header_len(skb);
213
214 skb_pull_rcsum(skb, len);
215 skb->network_header += len;
216}
217
Bandan Das462fb2a2010-09-19 09:34:33 +0000218/* When handing a packet over to the IP layer
219 * check whether we have a skb that is in the
220 * expected format
221 */
222
stephen hemmingerd0280232010-10-18 14:03:21 +0000223static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000224{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000225 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000226 struct net_device *dev = skb->dev;
227 u32 len;
228
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000229 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
230 goto inhdr_error;
231
Bandan Das462fb2a2010-09-19 09:34:33 +0000232 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000233
234 /* Basic sanity checks */
235 if (iph->ihl < 5 || iph->version != 4)
236 goto inhdr_error;
237
238 if (!pskb_may_pull(skb, iph->ihl*4))
239 goto inhdr_error;
240
241 iph = ip_hdr(skb);
242 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
243 goto inhdr_error;
244
245 len = ntohs(iph->tot_len);
246 if (skb->len < len) {
247 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
248 goto drop;
249 } else if (len < (iph->ihl*4))
250 goto inhdr_error;
251
252 if (pskb_trim_rcsum(skb, len)) {
253 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
254 goto drop;
255 }
256
Eric Dumazetf8e98812011-04-12 13:39:14 -0700257 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800258 /* We should really parse IP options here but until
259 * somebody who actually uses IP options complains to
260 * us we'll just silently ignore the options because
261 * we're lazy!
262 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000263 return 0;
264
265inhdr_error:
266 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
267drop:
268 return -1;
269}
270
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100271static void nf_bridge_update_protocol(struct sk_buff *skb)
272{
Florian Westphal3eaf4022015-04-02 14:31:44 +0200273 switch (skb->nf_bridge->orig_proto) {
274 case BRNF_PROTO_8021Q:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100275 skb->protocol = htons(ETH_P_8021Q);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200276 break;
277 case BRNF_PROTO_PPPOE:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100278 skb->protocol = htons(ETH_P_PPP_SES);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200279 break;
280 case BRNF_PROTO_UNCHANGED:
281 break;
282 }
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100283}
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285/* PF_BRIDGE/PRE_ROUTING *********************************************/
286/* Undo the changes made for ip6tables PREROUTING and continue the
287 * bridge PRE_ROUTING hook. */
David Miller7026b1d2015-04-05 22:19:04 -0400288static int br_nf_pre_routing_finish_ipv6(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289{
Florian Westphal38330782015-04-02 14:31:43 +0200290 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000291 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292
Florian Westphala1e67952015-04-02 14:31:45 +0200293 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200295 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 }
297 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
298
Eric Dumazet511c3f92009-06-02 05:14:27 +0000299 rt = bridge_parent_rtable(nf_bridge->physindev);
300 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700301 kfree_skb(skb);
302 return 0;
303 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200304 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
306 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200307 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700308 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400309 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
310 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 br_handle_frame_finish, 1);
312
313 return 0;
314}
315
Bart De Schuymere179e632010-04-15 12:26:39 +0200316/* Obtain the correct destination MAC address, while preserving the original
317 * source MAC address. If we already know this address, we just copy it. If we
318 * don't, we use the neighbour framework to find out. In both cases, we make
319 * sure that br_handle_frame_finish() is called afterwards.
320 */
David Miller7026b1d2015-04-05 22:19:04 -0400321static int br_nf_pre_routing_finish_bridge(struct sock *sk, struct sk_buff *skb)
Bart De Schuymere179e632010-04-15 12:26:39 +0200322{
David S. Millerf6b72b62011-07-14 07:53:20 -0700323 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200324 struct dst_entry *dst;
325
326 skb->dev = bridge_parent(skb->dev);
327 if (!skb->dev)
328 goto free_skb;
329 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700330 neigh = dst_neigh_lookup_skb(dst, skb);
331 if (neigh) {
Florian Westphal38330782015-04-02 14:31:43 +0200332 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700333 int ret;
334
335 if (neigh->hh.hh_len) {
336 neigh_hh_bridge(&neigh->hh, skb);
337 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400338 ret = br_handle_frame_finish(sk, skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700339 } else {
340 /* the neighbour function below overwrites the complete
341 * MAC header, so we save the Ethernet source address and
342 * protocol number.
343 */
344 skb_copy_from_linear_data_offset(skb,
345 -(ETH_HLEN-ETH_ALEN),
Florian Westphale70deec2015-04-02 14:31:40 +0200346 nf_bridge->neigh_header,
David S. Millerf9d75162012-07-02 22:12:59 -0700347 ETH_HLEN-ETH_ALEN);
348 /* tell br_dev_xmit to continue with forwarding */
349 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800350 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700351 ret = neigh->output(neigh, skb);
352 }
353 neigh_release(neigh);
354 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200355 }
356free_skb:
357 kfree_skb(skb);
358 return 0;
359}
360
Florian Westphalc055d5b2015-03-10 05:08:19 +0100361static bool dnat_took_place(const struct sk_buff *skb)
362{
363#if IS_ENABLED(CONFIG_NF_CONNTRACK)
364 enum ip_conntrack_info ctinfo;
365 struct nf_conn *ct;
366
367 ct = nf_ct_get(skb, &ctinfo);
368 if (!ct || nf_ct_is_untracked(ct))
369 return false;
370
371 return test_bit(IPS_DST_NAT_BIT, &ct->status);
372#else
373 return false;
374#endif
375}
376
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200378 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 *
380 * There are two cases to consider:
381 * 1. The packet was DNAT'ed to a device in the same bridge
382 * port group as it was received on. We can still bridge
383 * the packet.
384 * 2. The packet was DNAT'ed to a different device, either
385 * a non-bridged device or another bridge port group.
386 * The packet will need to be routed.
387 *
388 * The correct way of distinguishing between these two cases is to
389 * call ip_route_input() and to look at skb->dst->dev, which is
390 * changed to the destination device if ip_route_input() succeeds.
391 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200392 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200394 * If the output device equals the logical bridge device the packet
395 * came in on, we can consider this bridging. The corresponding MAC
396 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * Otherwise, the packet is considered to be routed and we just
398 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800399 * later be passed up to the IP stack to be routed. For a redirected
400 * packet, ip_route_input() will give back the localhost as output device,
401 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200403 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800405 * This can be because the destination address is martian, in which case
406 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200407 * If IP forwarding is disabled, ip_route_input() will fail, while
408 * ip_route_output_key() can return success. The source
409 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200411 * if IP forwarding is enabled. If the output device equals the logical bridge
412 * device, we proceed as if ip_route_input() succeeded. If it differs from the
413 * logical bridge port or if ip_route_output_key() fails we drop the packet.
414 */
David Miller7026b1d2015-04-05 22:19:04 -0400415static int br_nf_pre_routing_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416{
417 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700418 struct iphdr *iph = ip_hdr(skb);
Florian Westphal38330782015-04-02 14:31:43 +0200419 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000420 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800421 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800422 int frag_max_size;
423
424 frag_max_size = IPCB(skb)->frag_max_size;
425 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Florian Westphala1e67952015-04-02 14:31:45 +0200427 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200429 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 }
431 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800433 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200434 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800435
436 /* If err equals -EHOSTUNREACH the error is due to a
437 * martian destination or due to the fact that
438 * forwarding is disabled. For most martian packets,
439 * ip_route_output_key() will fail. It won't fail for 2 types of
440 * martian destinations: loopback destinations and destination
441 * 0.0.0.0. In both cases the packet will be dropped because the
442 * destination is the loopback device and not the bridge. */
443 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
444 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
David S. Miller78fbfd82011-03-12 00:00:52 -0500446 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
447 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800448 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700449 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800450 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800451 if (rt->dst.dev == dev) {
452 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 goto bridged_dnat;
454 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800455 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800457free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 kfree_skb(skb);
459 return 0;
460 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000461 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200464 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700465 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100466 NF_HOOK_THRESH(NFPROTO_BRIDGE,
467 NF_BR_PRE_ROUTING,
David Miller7026b1d2015-04-05 22:19:04 -0400468 sk, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 br_nf_pre_routing_finish_bridge,
470 1);
471 return 0;
472 }
Joe Perches04091142014-02-23 00:05:26 -0800473 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 skb->pkt_type = PACKET_HOST;
475 }
476 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000477 rt = bridge_parent_rtable(nf_bridge->physindev);
478 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700479 kfree_skb(skb);
480 return 0;
481 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200482 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 }
484
485 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200486 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700487 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400488 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
489 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 br_handle_frame_finish, 1);
491
492 return 0;
493}
494
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200495static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
496{
497 struct net_device *vlan, *br;
498
499 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100500 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200501 return br;
502
dingtianhongf06c7f92014-05-09 14:58:05 +0800503 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100504 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200505
506 return vlan ? vlan : br;
507}
508
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800510static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
Florian Westphal38330782015-04-02 14:31:43 +0200512 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 if (skb->pkt_type == PACKET_OTHERHOST) {
515 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200516 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 }
518
519 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
520 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200521 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200522
Bart De Schuymere179e632010-04-15 12:26:39 +0200523 if (skb->protocol == htons(ETH_P_8021Q))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200524 nf_bridge->orig_proto = BRNF_PROTO_8021Q;
Bart De Schuymere179e632010-04-15 12:26:39 +0200525 else if (skb->protocol == htons(ETH_P_PPP_SES))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200526 nf_bridge->orig_proto = BRNF_PROTO_PPPOE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800527
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200528 /* Must drop socket now because of tproxy. */
529 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800530 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
533/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
534static int check_hbh_len(struct sk_buff *skb)
535{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700536 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700538 const unsigned char *nh = skb_network_header(skb);
539 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800540 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
542 if ((raw + len) - skb->data > skb_headlen(skb))
543 goto bad;
544
545 off += 2;
546 len -= 2;
547
548 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700549 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700551 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000552 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 optlen = 1;
554 break;
555
556 case IPV6_TLV_PADN:
557 break;
558
559 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700560 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700562 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800563 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700564 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800565 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
567 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800568 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800569 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800570 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700571 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 break;
573 default:
574 if (optlen > len)
575 goto bad;
576 break;
577 }
578 off += optlen;
579 len -= optlen;
580 }
581 if (len == 0)
582 return 0;
583bad:
584 return -1;
585
586}
587
588/* Replicate the checks that IPv6 does on packet reception and pass the packet
589 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200590static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800591 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400592 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000594 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000598 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000601 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700603 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604
605 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000606 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 pkt_len = ntohs(hdr->payload_len);
609
610 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
611 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000612 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700613 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000614 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 }
616 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000617 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800619 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800620 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800622 if (!setup_pre_routing(skb))
623 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624
Bart De Schuymere179e632010-04-15 12:26:39 +0200625 skb->protocol = htons(ETH_P_IPV6);
David Miller7026b1d2015-04-05 22:19:04 -0400626 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, state->sk, skb,
627 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 br_nf_pre_routing_finish_ipv6);
629
630 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631}
632
633/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
634 * Replicate the checks that IPv4 does on packet reception.
635 * Set skb->dev to the bridge device (i.e. parent of the
636 * receiving device) to make netfilter happy, the REDIRECT
637 * target in particular. Save the original destination IP
638 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200639static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
640 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400641 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200643 struct net_bridge_port *p;
644 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700645 __u32 len = nf_bridge_encap_header_len(skb);
646
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700647 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000648 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
David S. Miller238e54c2015-04-03 20:32:56 -0400650 p = br_port_get_rcu(state->in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200651 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000652 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200653 br = p->br;
654
Florian Westphal739e4502012-03-06 01:22:54 +0000655 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200656 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200658
Patrick McHardyfc385822007-05-03 03:36:16 -0700659 nf_bridge_pull_encap_header_rcsum(skb);
David S. Miller238e54c2015-04-03 20:32:56 -0400660 return br_nf_pre_routing_ipv6(ops, skb, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200662
663 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Florian Westphal739e4502012-03-06 01:22:54 +0000666 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return NF_ACCEPT;
668
Patrick McHardyfc385822007-05-03 03:36:16 -0700669 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670
Bandan Das462fb2a2010-09-19 09:34:33 +0000671 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000672 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000673
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800674 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800675 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800677 if (!setup_pre_routing(skb))
678 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100679
Bart De Schuymere179e632010-04-15 12:26:39 +0200680 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
David Miller7026b1d2015-04-05 22:19:04 -0400682 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, state->sk, skb,
683 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 br_nf_pre_routing_finish);
685
686 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
689
690/* PF_BRIDGE/LOCAL_IN ************************************************/
691/* The packet is locally destined, which requires a real
692 * dst_entry, so detach the fake one. On the way up, the
693 * packet would pass through PRE_ROUTING again (which already
694 * took place when the packet entered the bridge), but we
695 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
696 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200697static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
698 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400699 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000701 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 return NF_ACCEPT;
703}
704
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705/* PF_BRIDGE/FORWARD *************************************************/
David Miller7026b1d2015-04-05 22:19:04 -0400706static int br_nf_forward_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Florian Westphal38330782015-04-02 14:31:43 +0200708 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710
Florian Westphal739e4502012-03-06 01:22:54 +0000711 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Florian Westphal0b67c432015-04-01 22:36:27 +0200712 int frag_max_size;
713
714 if (skb->protocol == htons(ETH_P_IP)) {
715 frag_max_size = IPCB(skb)->frag_max_size;
716 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
717 }
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 in = nf_bridge->physindev;
Florian Westphala1e67952015-04-02 14:31:45 +0200720 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200722 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200724 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 } else {
726 in = *((struct net_device **)(skb->cb));
727 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700728 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200729
David Miller7026b1d2015-04-05 22:19:04 -0400730 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, sk, skb,
731 in, skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 return 0;
733}
734
Florian Westphal739e4502012-03-06 01:22:54 +0000735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736/* This is the 'purely bridged' case. For IP, we pass the packet to
737 * netfilter with indev and outdev set to the bridge device,
738 * but we are still able to filter on the 'real' indev/outdev
739 * because of the physdev module. For ARP, indev and outdev are the
740 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200741static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
742 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400743 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800746 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200747 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
749 if (!skb->nf_bridge)
750 return NF_ACCEPT;
751
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800752 /* Need exclusive nf_bridge_info since we might have multiple
753 * different physoutdevs. */
754 if (!nf_bridge_unshare(skb))
755 return NF_DROP;
756
Florian Westphal38330782015-04-02 14:31:43 +0200757 nf_bridge = nf_bridge_info_get(skb);
758 if (!nf_bridge)
759 return NF_DROP;
760
David S. Miller238e54c2015-04-03 20:32:56 -0400761 parent = bridge_parent(state->out);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800762 if (!parent)
763 return NF_DROP;
764
Florian Westphal739e4502012-03-06 01:22:54 +0000765 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000766 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000767 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000768 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000769 else
770 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Herbert Xu3db05fe2007-10-15 00:53:15 -0700772 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (skb->pkt_type == PACKET_OTHERHOST) {
775 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200776 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 }
778
Florian Westphal0b67c432015-04-01 22:36:27 +0200779 if (pf == NFPROTO_IPV4) {
780 int frag_max = BR_INPUT_SKB_CB(skb)->frag_max_size;
781
782 if (br_parse_ip_options(skb))
783 return NF_DROP;
784
785 IPCB(skb)->frag_max_size = frag_max;
786 }
Herbert Xu6b1e9602011-03-18 05:27:28 +0000787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000789 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200790 skb->protocol = htons(ETH_P_IP);
791 else
792 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
David Miller7026b1d2015-04-05 22:19:04 -0400794 NF_HOOK(pf, NF_INET_FORWARD, NULL, skb,
795 brnf_get_logical_dev(skb, state->in),
David S. Miller238e54c2015-04-03 20:32:56 -0400796 parent, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797
798 return NF_STOLEN;
799}
800
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200801static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
802 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400803 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200805 struct net_bridge_port *p;
806 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 struct net_device **d = (struct net_device **)(skb->cb);
808
David S. Miller238e54c2015-04-03 20:32:56 -0400809 p = br_port_get_rcu(state->out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200810 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200812 br = p->br;
813
814 if (!brnf_call_arptables && !br->nf_call_arptables)
815 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Florian Westphal739e4502012-03-06 01:22:54 +0000817 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800818 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700820 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300823 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700824 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700825 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return NF_ACCEPT;
827 }
David S. Miller238e54c2015-04-03 20:32:56 -0400828 *d = state->in;
David Miller7026b1d2015-04-05 22:19:04 -0400829 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, state->sk, skb,
830 state->in, state->out, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832 return NF_STOLEN;
833}
834
Vasily Averinaff09ce2014-05-05 00:17:48 +0400835#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
David Miller7026b1d2015-04-05 22:19:04 -0400836static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100837{
Florian Westphale70deec2015-04-02 14:31:40 +0200838 struct brnf_frag_data *data;
839 int err;
840
841 data = this_cpu_ptr(&brnf_frag_data_storage);
842 err = skb_cow_head(skb, data->size);
843
844 if (err) {
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100845 kfree_skb(skb);
846 return 0;
847 }
848
Florian Westphale70deec2015-04-02 14:31:40 +0200849 skb_copy_to_linear_data_offset(skb, -data->size, data->mac, data->size);
850 __skb_push(skb, data->encap_size);
851
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200852 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400853 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100854}
855
Andy Zhou49d16b22015-05-15 14:15:37 -0700856static int br_nf_ip_fragment(struct sock *sk, struct sk_buff *skb,
857 int (*output)(struct sock *, struct sk_buff *))
858{
859 unsigned int mtu = ip_skb_dst_mtu(skb);
860 struct iphdr *iph = ip_hdr(skb);
861 struct rtable *rt = skb_rtable(skb);
862 struct net_device *dev = rt->dst.dev;
863
864 if (unlikely(((iph->frag_off & htons(IP_DF)) && !skb->ignore_df) ||
865 (IPCB(skb)->frag_max_size &&
866 IPCB(skb)->frag_max_size > mtu))) {
867 IP_INC_STATS(dev_net(dev), IPSTATS_MIB_FRAGFAILS);
868 kfree_skb(skb);
869 return -EMSGSIZE;
870 }
871
872 return ip_do_fragment(sk, skb, output);
873}
874
David Miller7026b1d2015-04-05 22:19:04 -0400875static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700876{
Bandan Das462fb2a2010-09-19 09:34:33 +0000877 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800878 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100879 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000880
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200881 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP)) {
882 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400883 return br_dev_queue_push_xmit(sk, skb);
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200884 }
Florian Westphal7a8d8312015-03-05 00:52:36 +0100885
886 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800887 /* This is wrong! We should preserve the original fragment
888 * boundaries by preserving frag_list rather than refragmenting.
889 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100890 if (skb->len + mtu_reserved > skb->dev->mtu) {
Florian Westphale70deec2015-04-02 14:31:40 +0200891 struct brnf_frag_data *data;
892
Herbert Xu93fdd472014-10-05 12:00:22 +0800893 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000894 if (br_parse_ip_options(skb))
895 /* Drop invalid packet */
896 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800897 IPCB(skb)->frag_max_size = frag_max_size;
Florian Westphale70deec2015-04-02 14:31:40 +0200898
899 nf_bridge_update_protocol(skb);
900
901 data = this_cpu_ptr(&brnf_frag_data_storage);
902 data->encap_size = nf_bridge_encap_header_len(skb);
903 data->size = ETH_HLEN + data->encap_size;
904
905 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
906 data->size);
907
Andy Zhou49d16b22015-05-15 14:15:37 -0700908 ret = br_nf_ip_fragment(sk, skb, br_nf_push_frag_xmit);
Florian Westphale70deec2015-04-02 14:31:40 +0200909 } else {
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200910 nf_bridge_info_free(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400911 ret = br_dev_queue_push_xmit(sk, skb);
Florian Westphale70deec2015-04-02 14:31:40 +0200912 }
Bandan Das462fb2a2010-09-19 09:34:33 +0000913
914 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700915}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200916#else
David Miller7026b1d2015-04-05 22:19:04 -0400917static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200918{
Florian Westphala9fcc6a2015-05-03 22:06:07 +0200919 nf_bridge_info_free(skb);
920 return br_dev_queue_push_xmit(sk, skb);
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200921}
922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
924/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200925static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
926 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400927 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Florian Westphal38330782015-04-02 14:31:43 +0200929 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200931 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100933 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
934 * on a bridge, but was delivered locally and is now being routed:
935 *
936 * POST_ROUTING was already invoked from the ip stack.
937 */
938 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800939 return NF_ACCEPT;
940
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800941 if (!realoutdev)
942 return NF_DROP;
943
Florian Westphal739e4502012-03-06 01:22:54 +0000944 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000945 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000946 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000947 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000948 else
949 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
952 * about the value of skb->pkt_type. */
953 if (skb->pkt_type == PACKET_OTHERHOST) {
954 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200955 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 }
957
Patrick McHardyfc385822007-05-03 03:36:16 -0700958 nf_bridge_pull_encap_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000959 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200960 skb->protocol = htons(ETH_P_IP);
961 else
962 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
David Miller7026b1d2015-04-05 22:19:04 -0400964 NF_HOOK(pf, NF_INET_POST_ROUTING, state->sk, skb,
965 NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700966 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967
968 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969}
970
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971/* IP/SABOTAGE *****************************************************/
972/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
973 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200974static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
975 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400976 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700978 if (skb->nf_bridge &&
979 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return NF_STOP;
981 }
982
983 return NF_ACCEPT;
984}
985
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100986/* This is called when br_netfilter has called into iptables/netfilter,
987 * and DNAT has taken place on a bridge-forwarded packet.
988 *
989 * neigh->output has created a new MAC header, with local br0 MAC
990 * as saddr.
991 *
992 * This restores the original MAC saddr of the bridged packet
993 * before invoking bridge forward logic to transmit the packet.
994 */
995static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
996{
Florian Westphal38330782015-04-02 14:31:43 +0200997 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100998
999 skb_pull(skb, ETH_HLEN);
1000 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
1001
Florian Westphale70deec2015-04-02 14:31:40 +02001002 BUILD_BUG_ON(sizeof(nf_bridge->neigh_header) != (ETH_HLEN - ETH_ALEN));
1003
1004 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN - ETH_ALEN),
1005 nf_bridge->neigh_header,
1006 ETH_HLEN - ETH_ALEN);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001007 skb->dev = nf_bridge->physindev;
Florian Westphal7fb48c52015-05-03 22:05:28 +02001008
1009 nf_bridge->physoutdev = NULL;
David Miller7026b1d2015-04-05 22:19:04 -04001010 br_handle_frame_finish(NULL, skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001011}
1012
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001013static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001014{
1015 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
1016 br_nf_pre_routing_finish_bridge_slow(skb);
1017 return 1;
1018 }
1019 return 0;
1020}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001021
1022static const struct nf_br_ops br_ops = {
1023 .br_dev_xmit_hook = br_nf_dev_xmit,
1024};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +01001025
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +02001026void br_netfilter_enable(void)
1027{
1028}
1029EXPORT_SYMBOL_GPL(br_netfilter_enable);
1030
Bart De Schuymerea2d9b42010-04-15 12:14:51 +02001031/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
1032 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -08001033static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001034 {
1035 .hook = br_nf_pre_routing,
1036 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001037 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001038 .hooknum = NF_BR_PRE_ROUTING,
1039 .priority = NF_BR_PRI_BRNF,
1040 },
1041 {
1042 .hook = br_nf_local_in,
1043 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001044 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001045 .hooknum = NF_BR_LOCAL_IN,
1046 .priority = NF_BR_PRI_BRNF,
1047 },
1048 {
1049 .hook = br_nf_forward_ip,
1050 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001051 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001052 .hooknum = NF_BR_FORWARD,
1053 .priority = NF_BR_PRI_BRNF - 1,
1054 },
1055 {
1056 .hook = br_nf_forward_arp,
1057 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001058 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001059 .hooknum = NF_BR_FORWARD,
1060 .priority = NF_BR_PRI_BRNF,
1061 },
1062 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001063 .hook = br_nf_post_routing,
1064 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001065 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001066 .hooknum = NF_BR_POST_ROUTING,
1067 .priority = NF_BR_PRI_LAST,
1068 },
1069 {
1070 .hook = ip_sabotage_in,
1071 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001072 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001073 .hooknum = NF_INET_PRE_ROUTING,
1074 .priority = NF_IP_PRI_FIRST,
1075 },
1076 {
1077 .hook = ip_sabotage_in,
1078 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001079 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001080 .hooknum = NF_INET_PRE_ROUTING,
1081 .priority = NF_IP6_PRI_FIRST,
1082 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083};
1084
1085#ifdef CONFIG_SYSCTL
1086static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001087int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001088 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089{
1090 int ret;
1091
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001092 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 if (write && *(int *)(ctl->data))
1095 *(int *)(ctl->data) = 1;
1096 return ret;
1097}
1098
Joe Perchesfe2c6332013-06-11 23:04:25 -07001099static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 .procname = "bridge-nf-call-arptables",
1102 .data = &brnf_call_arptables,
1103 .maxlen = sizeof(int),
1104 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001105 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 },
1107 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108 .procname = "bridge-nf-call-iptables",
1109 .data = &brnf_call_iptables,
1110 .maxlen = sizeof(int),
1111 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001112 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 },
1114 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 .procname = "bridge-nf-call-ip6tables",
1116 .data = &brnf_call_ip6tables,
1117 .maxlen = sizeof(int),
1118 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001119 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 },
1121 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 .procname = "bridge-nf-filter-vlan-tagged",
1123 .data = &brnf_filter_vlan_tagged,
1124 .maxlen = sizeof(int),
1125 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001126 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 },
Michael Milner516299d2007-04-12 22:14:23 -07001128 {
Michael Milner516299d2007-04-12 22:14:23 -07001129 .procname = "bridge-nf-filter-pppoe-tagged",
1130 .data = &brnf_filter_pppoe_tagged,
1131 .maxlen = sizeof(int),
1132 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001133 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001134 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001135 {
1136 .procname = "bridge-nf-pass-vlan-input-dev",
1137 .data = &brnf_pass_vlan_indev,
1138 .maxlen = sizeof(int),
1139 .mode = 0644,
1140 .proc_handler = brnf_sysctl_call_tables,
1141 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001142 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144#endif
1145
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001146static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001148 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001150 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001151 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001153
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001155 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001157 printk(KERN_WARNING
1158 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001159 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1160 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 }
1162#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001163 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001165 return 0;
1166}
1167
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001168static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001169{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001170 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001171 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001173 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001176
1177module_init(br_netfilter_init);
1178module_exit(br_netfilter_fini);
1179
1180MODULE_LICENSE("GPL");
1181MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1182MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1183MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");