blob: ab55e2472beb0e44dece07e327f2e0eb8d3f502c [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
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700132static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
133{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000134 struct net_bridge_port *port;
135
136 port = br_port_get_rcu(dev);
137 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700138}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800140static inline struct net_device *bridge_parent(const struct net_device *dev)
141{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000142 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800143
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000144 port = br_port_get_rcu(dev);
145 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800146}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800148static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
149{
150 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
151 if (likely(skb->nf_bridge))
152 atomic_set(&(skb->nf_bridge->use), 1);
153
154 return skb->nf_bridge;
155}
156
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800157static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
158{
159 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
160
161 if (atomic_read(&nf_bridge->use) > 1) {
162 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
163
164 if (tmp) {
165 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
166 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800167 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000168 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800169 nf_bridge = tmp;
170 }
171 return nf_bridge;
172}
173
Florian Westphal8d045162015-03-18 20:55:31 +0100174static unsigned int nf_bridge_encap_header_len(const struct sk_buff *skb)
175{
176 switch (skb->protocol) {
177 case __cpu_to_be16(ETH_P_8021Q):
178 return VLAN_HLEN;
179 case __cpu_to_be16(ETH_P_PPP_SES):
180 return PPPOE_SES_HLEN;
181 default:
182 return 0;
183 }
184}
185
Patrick McHardyfc385822007-05-03 03:36:16 -0700186static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
187{
188 unsigned int len = nf_bridge_encap_header_len(skb);
189
190 skb_push(skb, len);
191 skb->network_header -= len;
192}
193
194static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
195{
196 unsigned int len = nf_bridge_encap_header_len(skb);
197
198 skb_pull(skb, len);
199 skb->network_header += len;
200}
201
202static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
203{
204 unsigned int len = nf_bridge_encap_header_len(skb);
205
206 skb_pull_rcsum(skb, len);
207 skb->network_header += len;
208}
209
Bandan Das462fb2a2010-09-19 09:34:33 +0000210/* When handing a packet over to the IP layer
211 * check whether we have a skb that is in the
212 * expected format
213 */
214
stephen hemmingerd0280232010-10-18 14:03:21 +0000215static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000216{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000217 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000218 struct net_device *dev = skb->dev;
219 u32 len;
220
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000221 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
222 goto inhdr_error;
223
Bandan Das462fb2a2010-09-19 09:34:33 +0000224 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000225
226 /* Basic sanity checks */
227 if (iph->ihl < 5 || iph->version != 4)
228 goto inhdr_error;
229
230 if (!pskb_may_pull(skb, iph->ihl*4))
231 goto inhdr_error;
232
233 iph = ip_hdr(skb);
234 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
235 goto inhdr_error;
236
237 len = ntohs(iph->tot_len);
238 if (skb->len < len) {
239 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
240 goto drop;
241 } else if (len < (iph->ihl*4))
242 goto inhdr_error;
243
244 if (pskb_trim_rcsum(skb, len)) {
245 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
246 goto drop;
247 }
248
Eric Dumazetf8e98812011-04-12 13:39:14 -0700249 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800250 /* We should really parse IP options here but until
251 * somebody who actually uses IP options complains to
252 * us we'll just silently ignore the options because
253 * we're lazy!
254 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000255 return 0;
256
257inhdr_error:
258 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
259drop:
260 return -1;
261}
262
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100263static void nf_bridge_update_protocol(struct sk_buff *skb)
264{
Florian Westphal3eaf4022015-04-02 14:31:44 +0200265 switch (skb->nf_bridge->orig_proto) {
266 case BRNF_PROTO_8021Q:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100267 skb->protocol = htons(ETH_P_8021Q);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200268 break;
269 case BRNF_PROTO_PPPOE:
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100270 skb->protocol = htons(ETH_P_PPP_SES);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200271 break;
272 case BRNF_PROTO_UNCHANGED:
273 break;
274 }
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100275}
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/* PF_BRIDGE/PRE_ROUTING *********************************************/
278/* Undo the changes made for ip6tables PREROUTING and continue the
279 * bridge PRE_ROUTING hook. */
David Miller7026b1d2015-04-05 22:19:04 -0400280static int br_nf_pre_routing_finish_ipv6(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281{
Florian Westphal38330782015-04-02 14:31:43 +0200282 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000283 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Florian Westphala1e67952015-04-02 14:31:45 +0200285 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200287 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
290
Eric Dumazet511c3f92009-06-02 05:14:27 +0000291 rt = bridge_parent_rtable(nf_bridge->physindev);
292 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700293 kfree_skb(skb);
294 return 0;
295 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200296 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
298 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200299 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700300 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400301 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
302 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 br_handle_frame_finish, 1);
304
305 return 0;
306}
307
Bart De Schuymere179e632010-04-15 12:26:39 +0200308/* Obtain the correct destination MAC address, while preserving the original
309 * source MAC address. If we already know this address, we just copy it. If we
310 * don't, we use the neighbour framework to find out. In both cases, we make
311 * sure that br_handle_frame_finish() is called afterwards.
312 */
David Miller7026b1d2015-04-05 22:19:04 -0400313static int br_nf_pre_routing_finish_bridge(struct sock *sk, struct sk_buff *skb)
Bart De Schuymere179e632010-04-15 12:26:39 +0200314{
David S. Millerf6b72b62011-07-14 07:53:20 -0700315 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200316 struct dst_entry *dst;
317
318 skb->dev = bridge_parent(skb->dev);
319 if (!skb->dev)
320 goto free_skb;
321 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700322 neigh = dst_neigh_lookup_skb(dst, skb);
323 if (neigh) {
Florian Westphal38330782015-04-02 14:31:43 +0200324 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700325 int ret;
326
327 if (neigh->hh.hh_len) {
328 neigh_hh_bridge(&neigh->hh, skb);
329 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400330 ret = br_handle_frame_finish(sk, skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700331 } else {
332 /* the neighbour function below overwrites the complete
333 * MAC header, so we save the Ethernet source address and
334 * protocol number.
335 */
336 skb_copy_from_linear_data_offset(skb,
337 -(ETH_HLEN-ETH_ALEN),
Florian Westphale70deec2015-04-02 14:31:40 +0200338 nf_bridge->neigh_header,
David S. Millerf9d75162012-07-02 22:12:59 -0700339 ETH_HLEN-ETH_ALEN);
340 /* tell br_dev_xmit to continue with forwarding */
341 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800342 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700343 ret = neigh->output(neigh, skb);
344 }
345 neigh_release(neigh);
346 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200347 }
348free_skb:
349 kfree_skb(skb);
350 return 0;
351}
352
Florian Westphalc055d5b2015-03-10 05:08:19 +0100353static bool dnat_took_place(const struct sk_buff *skb)
354{
355#if IS_ENABLED(CONFIG_NF_CONNTRACK)
356 enum ip_conntrack_info ctinfo;
357 struct nf_conn *ct;
358
359 ct = nf_ct_get(skb, &ctinfo);
360 if (!ct || nf_ct_is_untracked(ct))
361 return false;
362
363 return test_bit(IPS_DST_NAT_BIT, &ct->status);
364#else
365 return false;
366#endif
367}
368
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200370 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *
372 * There are two cases to consider:
373 * 1. The packet was DNAT'ed to a device in the same bridge
374 * port group as it was received on. We can still bridge
375 * the packet.
376 * 2. The packet was DNAT'ed to a different device, either
377 * a non-bridged device or another bridge port group.
378 * The packet will need to be routed.
379 *
380 * The correct way of distinguishing between these two cases is to
381 * call ip_route_input() and to look at skb->dst->dev, which is
382 * changed to the destination device if ip_route_input() succeeds.
383 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200384 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200386 * If the output device equals the logical bridge device the packet
387 * came in on, we can consider this bridging. The corresponding MAC
388 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 * Otherwise, the packet is considered to be routed and we just
390 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800391 * later be passed up to the IP stack to be routed. For a redirected
392 * packet, ip_route_input() will give back the localhost as output device,
393 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200395 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800397 * This can be because the destination address is martian, in which case
398 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200399 * If IP forwarding is disabled, ip_route_input() will fail, while
400 * ip_route_output_key() can return success. The source
401 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200403 * if IP forwarding is enabled. If the output device equals the logical bridge
404 * device, we proceed as if ip_route_input() succeeded. If it differs from the
405 * logical bridge port or if ip_route_output_key() fails we drop the packet.
406 */
David Miller7026b1d2015-04-05 22:19:04 -0400407static int br_nf_pre_routing_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408{
409 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700410 struct iphdr *iph = ip_hdr(skb);
Florian Westphal38330782015-04-02 14:31:43 +0200411 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Eric Dumazet511c3f92009-06-02 05:14:27 +0000412 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800413 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800414 int frag_max_size;
415
416 frag_max_size = IPCB(skb)->frag_max_size;
417 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
Florian Westphala1e67952015-04-02 14:31:45 +0200419 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200421 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 }
423 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800425 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200426 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800427
428 /* If err equals -EHOSTUNREACH the error is due to a
429 * martian destination or due to the fact that
430 * forwarding is disabled. For most martian packets,
431 * ip_route_output_key() will fail. It won't fail for 2 types of
432 * martian destinations: loopback destinations and destination
433 * 0.0.0.0. In both cases the packet will be dropped because the
434 * destination is the loopback device and not the bridge. */
435 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
436 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437
David S. Miller78fbfd82011-03-12 00:00:52 -0500438 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
439 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800440 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700441 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800442 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800443 if (rt->dst.dev == dev) {
444 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 goto bridged_dnat;
446 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800447 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800449free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 kfree_skb(skb);
451 return 0;
452 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000453 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200456 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700457 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100458 NF_HOOK_THRESH(NFPROTO_BRIDGE,
459 NF_BR_PRE_ROUTING,
David Miller7026b1d2015-04-05 22:19:04 -0400460 sk, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 br_nf_pre_routing_finish_bridge,
462 1);
463 return 0;
464 }
Joe Perches04091142014-02-23 00:05:26 -0800465 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 skb->pkt_type = PACKET_HOST;
467 }
468 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000469 rt = bridge_parent_rtable(nf_bridge->physindev);
470 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700471 kfree_skb(skb);
472 return 0;
473 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200474 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 }
476
477 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200478 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700479 nf_bridge_push_encap_header(skb);
David Miller7026b1d2015-04-05 22:19:04 -0400480 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, sk, skb,
481 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 br_handle_frame_finish, 1);
483
484 return 0;
485}
486
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200487static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
488{
489 struct net_device *vlan, *br;
490
491 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100492 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200493 return br;
494
dingtianhongf06c7f92014-05-09 14:58:05 +0800495 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100496 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200497
498 return vlan ? vlan : br;
499}
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800502static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Florian Westphal38330782015-04-02 14:31:43 +0200504 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506 if (skb->pkt_type == PACKET_OTHERHOST) {
507 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200508 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 }
510
511 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
512 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200513 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Florian Westphal3eaf4022015-04-02 14:31:44 +0200514
Bart De Schuymere179e632010-04-15 12:26:39 +0200515 if (skb->protocol == htons(ETH_P_8021Q))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200516 nf_bridge->orig_proto = BRNF_PROTO_8021Q;
Bart De Schuymere179e632010-04-15 12:26:39 +0200517 else if (skb->protocol == htons(ETH_P_PPP_SES))
Florian Westphal3eaf4022015-04-02 14:31:44 +0200518 nf_bridge->orig_proto = BRNF_PROTO_PPPOE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800519
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200520 /* Must drop socket now because of tproxy. */
521 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800522 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
525/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
526static int check_hbh_len(struct sk_buff *skb)
527{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700528 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700530 const unsigned char *nh = skb_network_header(skb);
531 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800532 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533
534 if ((raw + len) - skb->data > skb_headlen(skb))
535 goto bad;
536
537 off += 2;
538 len -= 2;
539
540 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700541 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700543 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000544 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 optlen = 1;
546 break;
547
548 case IPV6_TLV_PADN:
549 break;
550
551 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700552 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700554 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800555 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700556 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800557 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
559 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800560 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800561 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800562 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700563 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 break;
565 default:
566 if (optlen > len)
567 goto bad;
568 break;
569 }
570 off += optlen;
571 len -= optlen;
572 }
573 if (len == 0)
574 return 0;
575bad:
576 return -1;
577
578}
579
580/* Replicate the checks that IPv6 does on packet reception and pass the packet
581 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200582static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800583 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400584 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000586 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
589 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000590 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591
592 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000593 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700595 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
597 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000598 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600 pkt_len = ntohs(hdr->payload_len);
601
602 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
603 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000604 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700605 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000606 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 }
608 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000609 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800611 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800612 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800614 if (!setup_pre_routing(skb))
615 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Bart De Schuymere179e632010-04-15 12:26:39 +0200617 skb->protocol = htons(ETH_P_IPV6);
David Miller7026b1d2015-04-05 22:19:04 -0400618 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, state->sk, skb,
619 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 br_nf_pre_routing_finish_ipv6);
621
622 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623}
624
625/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
626 * Replicate the checks that IPv4 does on packet reception.
627 * Set skb->dev to the bridge device (i.e. parent of the
628 * receiving device) to make netfilter happy, the REDIRECT
629 * target in particular. Save the original destination IP
630 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200631static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
632 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400633 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200635 struct net_bridge_port *p;
636 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700637 __u32 len = nf_bridge_encap_header_len(skb);
638
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700639 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000640 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
David S. Miller238e54c2015-04-03 20:32:56 -0400642 p = br_port_get_rcu(state->in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200643 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000644 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200645 br = p->br;
646
Florian Westphal739e4502012-03-06 01:22:54 +0000647 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200648 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200650
Patrick McHardyfc385822007-05-03 03:36:16 -0700651 nf_bridge_pull_encap_header_rcsum(skb);
David S. Miller238e54c2015-04-03 20:32:56 -0400652 return br_nf_pre_routing_ipv6(ops, skb, state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200654
655 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Florian Westphal739e4502012-03-06 01:22:54 +0000658 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return NF_ACCEPT;
660
Patrick McHardyfc385822007-05-03 03:36:16 -0700661 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Bandan Das462fb2a2010-09-19 09:34:33 +0000663 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000664 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000665
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800666 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800667 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800669 if (!setup_pre_routing(skb))
670 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100671
Bart De Schuymere179e632010-04-15 12:26:39 +0200672 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Miller7026b1d2015-04-05 22:19:04 -0400674 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, state->sk, skb,
675 skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 br_nf_pre_routing_finish);
677
678 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679}
680
681
682/* PF_BRIDGE/LOCAL_IN ************************************************/
683/* The packet is locally destined, which requires a real
684 * dst_entry, so detach the fake one. On the way up, the
685 * packet would pass through PRE_ROUTING again (which already
686 * took place when the packet entered the bridge), but we
687 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
688 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200689static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
690 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400691 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000693 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return NF_ACCEPT;
695}
696
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697/* PF_BRIDGE/FORWARD *************************************************/
David Miller7026b1d2015-04-05 22:19:04 -0400698static int br_nf_forward_finish(struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699{
Florian Westphal38330782015-04-02 14:31:43 +0200700 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702
Florian Westphal739e4502012-03-06 01:22:54 +0000703 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Florian Westphal0b67c432015-04-01 22:36:27 +0200704 int frag_max_size;
705
706 if (skb->protocol == htons(ETH_P_IP)) {
707 frag_max_size = IPCB(skb)->frag_max_size;
708 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
709 }
710
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 in = nf_bridge->physindev;
Florian Westphala1e67952015-04-02 14:31:45 +0200712 if (nf_bridge->pkt_otherhost) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 skb->pkt_type = PACKET_OTHERHOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200714 nf_bridge->pkt_otherhost = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200716 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 } else {
718 in = *((struct net_device **)(skb->cb));
719 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700720 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200721
David Miller7026b1d2015-04-05 22:19:04 -0400722 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, sk, skb,
723 in, skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 return 0;
725}
726
Florian Westphal739e4502012-03-06 01:22:54 +0000727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/* This is the 'purely bridged' case. For IP, we pass the packet to
729 * netfilter with indev and outdev set to the bridge device,
730 * but we are still able to filter on the 'real' indev/outdev
731 * because of the physdev module. For ARP, indev and outdev are the
732 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200733static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
734 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400735 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800738 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200739 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
741 if (!skb->nf_bridge)
742 return NF_ACCEPT;
743
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800744 /* Need exclusive nf_bridge_info since we might have multiple
745 * different physoutdevs. */
746 if (!nf_bridge_unshare(skb))
747 return NF_DROP;
748
Florian Westphal38330782015-04-02 14:31:43 +0200749 nf_bridge = nf_bridge_info_get(skb);
750 if (!nf_bridge)
751 return NF_DROP;
752
David S. Miller238e54c2015-04-03 20:32:56 -0400753 parent = bridge_parent(state->out);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800754 if (!parent)
755 return NF_DROP;
756
Florian Westphal739e4502012-03-06 01:22:54 +0000757 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000758 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000759 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000760 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000761 else
762 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763
Herbert Xu3db05fe2007-10-15 00:53:15 -0700764 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 if (skb->pkt_type == PACKET_OTHERHOST) {
767 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200768 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
Florian Westphal0b67c432015-04-01 22:36:27 +0200771 if (pf == NFPROTO_IPV4) {
772 int frag_max = BR_INPUT_SKB_CB(skb)->frag_max_size;
773
774 if (br_parse_ip_options(skb))
775 return NF_DROP;
776
777 IPCB(skb)->frag_max_size = frag_max;
778 }
Herbert Xu6b1e9602011-03-18 05:27:28 +0000779
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000781 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200782 skb->protocol = htons(ETH_P_IP);
783 else
784 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
David Miller7026b1d2015-04-05 22:19:04 -0400786 NF_HOOK(pf, NF_INET_FORWARD, NULL, skb,
787 brnf_get_logical_dev(skb, state->in),
David S. Miller238e54c2015-04-03 20:32:56 -0400788 parent, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
790 return NF_STOLEN;
791}
792
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200793static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
794 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400795 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200797 struct net_bridge_port *p;
798 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 struct net_device **d = (struct net_device **)(skb->cb);
800
David S. Miller238e54c2015-04-03 20:32:56 -0400801 p = br_port_get_rcu(state->out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200802 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200804 br = p->br;
805
806 if (!brnf_call_arptables && !br->nf_call_arptables)
807 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Florian Westphal739e4502012-03-06 01:22:54 +0000809 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800810 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700812 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
814
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300815 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700816 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700817 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return NF_ACCEPT;
819 }
David S. Miller238e54c2015-04-03 20:32:56 -0400820 *d = state->in;
David Miller7026b1d2015-04-05 22:19:04 -0400821 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, state->sk, skb,
822 state->in, state->out, br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823
824 return NF_STOLEN;
825}
826
Vasily Averinaff09ce2014-05-05 00:17:48 +0400827#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
David Miller7026b1d2015-04-05 22:19:04 -0400828static int br_nf_push_frag_xmit(struct sock *sk, struct sk_buff *skb)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100829{
Florian Westphale70deec2015-04-02 14:31:40 +0200830 struct brnf_frag_data *data;
831 int err;
832
833 data = this_cpu_ptr(&brnf_frag_data_storage);
834 err = skb_cow_head(skb, data->size);
835
836 if (err) {
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100837 kfree_skb(skb);
838 return 0;
839 }
840
Florian Westphale70deec2015-04-02 14:31:40 +0200841 skb_copy_to_linear_data_offset(skb, -data->size, data->mac, data->size);
842 __skb_push(skb, data->encap_size);
843
David Miller7026b1d2015-04-05 22:19:04 -0400844 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100845}
846
David Miller7026b1d2015-04-05 22:19:04 -0400847static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700848{
Bandan Das462fb2a2010-09-19 09:34:33 +0000849 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800850 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100851 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000852
Florian Westphal7a8d8312015-03-05 00:52:36 +0100853 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP))
David Miller7026b1d2015-04-05 22:19:04 -0400854 return br_dev_queue_push_xmit(sk, skb);
Florian Westphal7a8d8312015-03-05 00:52:36 +0100855
856 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800857 /* This is wrong! We should preserve the original fragment
858 * boundaries by preserving frag_list rather than refragmenting.
859 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100860 if (skb->len + mtu_reserved > skb->dev->mtu) {
Florian Westphale70deec2015-04-02 14:31:40 +0200861 struct brnf_frag_data *data;
862
Herbert Xu93fdd472014-10-05 12:00:22 +0800863 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000864 if (br_parse_ip_options(skb))
865 /* Drop invalid packet */
866 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800867 IPCB(skb)->frag_max_size = frag_max_size;
Florian Westphale70deec2015-04-02 14:31:40 +0200868
869 nf_bridge_update_protocol(skb);
870
871 data = this_cpu_ptr(&brnf_frag_data_storage);
872 data->encap_size = nf_bridge_encap_header_len(skb);
873 data->size = ETH_HLEN + data->encap_size;
874
875 skb_copy_from_linear_data_offset(skb, -data->size, data->mac,
876 data->size);
877
David Miller7026b1d2015-04-05 22:19:04 -0400878 ret = ip_fragment(sk, skb, br_nf_push_frag_xmit);
Florian Westphale70deec2015-04-02 14:31:40 +0200879 } else {
David Miller7026b1d2015-04-05 22:19:04 -0400880 ret = br_dev_queue_push_xmit(sk, skb);
Florian Westphale70deec2015-04-02 14:31:40 +0200881 }
Bandan Das462fb2a2010-09-19 09:34:33 +0000882
883 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700884}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200885#else
David Miller7026b1d2015-04-05 22:19:04 -0400886static int br_nf_dev_queue_xmit(struct sock *sk, struct sk_buff *skb)
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200887{
David Miller7026b1d2015-04-05 22:19:04 -0400888 return br_dev_queue_push_xmit(sk, skb);
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200889}
890#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
892/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200893static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
894 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400895 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896{
Florian Westphal38330782015-04-02 14:31:43 +0200897 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200899 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100901 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
902 * on a bridge, but was delivered locally and is now being routed:
903 *
904 * POST_ROUTING was already invoked from the ip stack.
905 */
906 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800907 return NF_ACCEPT;
908
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800909 if (!realoutdev)
910 return NF_DROP;
911
Florian Westphal739e4502012-03-06 01:22:54 +0000912 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000913 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000914 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000915 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000916 else
917 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
920 * about the value of skb->pkt_type. */
921 if (skb->pkt_type == PACKET_OTHERHOST) {
922 skb->pkt_type = PACKET_HOST;
Florian Westphala1e67952015-04-02 14:31:45 +0200923 nf_bridge->pkt_otherhost = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 }
925
Patrick McHardyfc385822007-05-03 03:36:16 -0700926 nf_bridge_pull_encap_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000927 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200928 skb->protocol = htons(ETH_P_IP);
929 else
930 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
David Miller7026b1d2015-04-05 22:19:04 -0400932 NF_HOOK(pf, NF_INET_POST_ROUTING, state->sk, skb,
933 NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700934 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935
936 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937}
938
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939/* IP/SABOTAGE *****************************************************/
940/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
941 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200942static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
943 struct sk_buff *skb,
David S. Miller238e54c2015-04-03 20:32:56 -0400944 const struct nf_hook_state *state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700946 if (skb->nf_bridge &&
947 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return NF_STOP;
949 }
950
951 return NF_ACCEPT;
952}
953
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100954/* This is called when br_netfilter has called into iptables/netfilter,
955 * and DNAT has taken place on a bridge-forwarded packet.
956 *
957 * neigh->output has created a new MAC header, with local br0 MAC
958 * as saddr.
959 *
960 * This restores the original MAC saddr of the bridged packet
961 * before invoking bridge forward logic to transmit the packet.
962 */
963static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
964{
Florian Westphal38330782015-04-02 14:31:43 +0200965 struct nf_bridge_info *nf_bridge = nf_bridge_info_get(skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100966
967 skb_pull(skb, ETH_HLEN);
968 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
969
Florian Westphale70deec2015-04-02 14:31:40 +0200970 BUILD_BUG_ON(sizeof(nf_bridge->neigh_header) != (ETH_HLEN - ETH_ALEN));
971
972 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN - ETH_ALEN),
973 nf_bridge->neigh_header,
974 ETH_HLEN - ETH_ALEN);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100975 skb->dev = nf_bridge->physindev;
David Miller7026b1d2015-04-05 22:19:04 -0400976 br_handle_frame_finish(NULL, skb);
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100977}
978
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100979static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100980{
981 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
982 br_nf_pre_routing_finish_bridge_slow(skb);
983 return 1;
984 }
985 return 0;
986}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100987
988static const struct nf_br_ops br_ops = {
989 .br_dev_xmit_hook = br_nf_dev_xmit,
990};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100991
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +0200992void br_netfilter_enable(void)
993{
994}
995EXPORT_SYMBOL_GPL(br_netfilter_enable);
996
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200997/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
998 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800999static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001000 {
1001 .hook = br_nf_pre_routing,
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_PRE_ROUTING,
1005 .priority = NF_BR_PRI_BRNF,
1006 },
1007 {
1008 .hook = br_nf_local_in,
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_LOCAL_IN,
1012 .priority = NF_BR_PRI_BRNF,
1013 },
1014 {
1015 .hook = br_nf_forward_ip,
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 - 1,
1020 },
1021 {
1022 .hook = br_nf_forward_arp,
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_FORWARD,
1026 .priority = NF_BR_PRI_BRNF,
1027 },
1028 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001029 .hook = br_nf_post_routing,
1030 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001031 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001032 .hooknum = NF_BR_POST_ROUTING,
1033 .priority = NF_BR_PRI_LAST,
1034 },
1035 {
1036 .hook = ip_sabotage_in,
1037 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001038 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001039 .hooknum = NF_INET_PRE_ROUTING,
1040 .priority = NF_IP_PRI_FIRST,
1041 },
1042 {
1043 .hook = ip_sabotage_in,
1044 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001045 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001046 .hooknum = NF_INET_PRE_ROUTING,
1047 .priority = NF_IP6_PRI_FIRST,
1048 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049};
1050
1051#ifdef CONFIG_SYSCTL
1052static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001053int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001054 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055{
1056 int ret;
1057
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001058 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059
1060 if (write && *(int *)(ctl->data))
1061 *(int *)(ctl->data) = 1;
1062 return ret;
1063}
1064
Joe Perchesfe2c6332013-06-11 23:04:25 -07001065static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 .procname = "bridge-nf-call-arptables",
1068 .data = &brnf_call_arptables,
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-iptables",
1075 .data = &brnf_call_iptables,
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-call-ip6tables",
1082 .data = &brnf_call_ip6tables,
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 },
1087 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088 .procname = "bridge-nf-filter-vlan-tagged",
1089 .data = &brnf_filter_vlan_tagged,
1090 .maxlen = sizeof(int),
1091 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001092 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 },
Michael Milner516299d2007-04-12 22:14:23 -07001094 {
Michael Milner516299d2007-04-12 22:14:23 -07001095 .procname = "bridge-nf-filter-pppoe-tagged",
1096 .data = &brnf_filter_pppoe_tagged,
1097 .maxlen = sizeof(int),
1098 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001099 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001100 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001101 {
1102 .procname = "bridge-nf-pass-vlan-input-dev",
1103 .data = &brnf_pass_vlan_indev,
1104 .maxlen = sizeof(int),
1105 .mode = 0644,
1106 .proc_handler = brnf_sysctl_call_tables,
1107 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001108 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110#endif
1111
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001112static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001114 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001116 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001117 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001119
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001121 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001123 printk(KERN_WARNING
1124 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001125 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1126 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 }
1128#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001129 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 return 0;
1132}
1133
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001134static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001136 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001137 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001139 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001142
1143module_init(br_netfilter_init);
1144module_exit(br_netfilter_fini);
1145
1146MODULE_LICENSE("GPL");
1147MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1148MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1149MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");