blob: bd2d24d1ff216529f57872f5871228cc9ad77e28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Handle firewalling
3 * Linux ethernet bridge
4 *
5 * Authors:
Bart De Schuymer82379082010-04-13 11:40:41 +02006 * Lennert Buytenhek <buytenh@gnu.org>
7 * Bart De Schuymer <bdschuym@pandora.be>
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or (at your option) any later version.
13 *
14 * Lennert dedicates this file to Kerstin Wurdinger.
15 */
16
17#include <linux/module.h>
18#include <linux/kernel.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/ip.h>
21#include <linux/netdevice.h>
22#include <linux/skbuff.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020023#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/if_ether.h>
25#include <linux/if_vlan.h>
Michael Milner516299d2007-04-12 22:14:23 -070026#include <linux/if_pppox.h>
27#include <linux/ppp_defs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/netfilter_bridge.h>
29#include <linux/netfilter_ipv4.h>
30#include <linux/netfilter_ipv6.h>
31#include <linux/netfilter_arp.h>
32#include <linux/in_route.h>
Bart De Schuymerf216f082006-12-05 13:45:21 -080033#include <linux/inetdevice.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020034
Linus Torvalds1da177e2005-04-16 15:20:36 -070035#include <net/ip.h>
36#include <net/ipv6.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020037#include <net/route.h>
Florian Westphal56768642014-11-13 10:04:16 +010038#include <net/netfilter/br_netfilter.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020039
Florian Westphalc055d5b2015-03-10 05:08:19 +010040#if IS_ENABLED(CONFIG_NF_CONNTRACK)
41#include <net/netfilter/nf_conntrack.h>
42#endif
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "br_private.h"
46#ifdef CONFIG_SYSCTL
47#include <linux/sysctl.h>
48#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050#ifdef CONFIG_SYSCTL
51static struct ctl_table_header *brnf_sysctl_header;
Brian Haley9c1ea142006-09-18 00:03:41 -070052static int brnf_call_iptables __read_mostly = 1;
53static int brnf_call_ip6tables __read_mostly = 1;
54static int brnf_call_arptables __read_mostly = 1;
Herbert Xu47e0e1c2009-01-12 00:06:03 +000055static int brnf_filter_vlan_tagged __read_mostly = 0;
56static int brnf_filter_pppoe_tagged __read_mostly = 0;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020057static int brnf_pass_vlan_indev __read_mostly = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#else
Patrick McHardy4df53d82010-07-02 09:32:57 +020059#define brnf_call_iptables 1
60#define brnf_call_ip6tables 1
61#define brnf_call_arptables 1
Herbert Xu47e0e1c2009-01-12 00:06:03 +000062#define brnf_filter_vlan_tagged 0
63#define brnf_filter_pppoe_tagged 0
Pablo Neira Ayuso49816822012-05-08 19:36:44 +020064#define brnf_pass_vlan_indev 0
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#endif
66
Florian Westphal739e4502012-03-06 01:22:54 +000067#define IS_IP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010068 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IP))
Florian Westphal739e4502012-03-06 01:22:54 +000069
70#define IS_IPV6(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010071 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_IPV6))
Florian Westphal739e4502012-03-06 01:22:54 +000072
73#define IS_ARP(skb) \
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010074 (!skb_vlan_tag_present(skb) && skb->protocol == htons(ETH_P_ARP))
Florian Westphal739e4502012-03-06 01:22:54 +000075
Dave Jonesb6f99a22007-03-22 12:27:49 -070076static inline __be16 vlan_proto(const struct sk_buff *skb)
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080077{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010078 if (skb_vlan_tag_present(skb))
Jesse Gross13937912010-10-20 13:56:01 +000079 return skb->protocol;
80 else if (skb->protocol == htons(ETH_P_8021Q))
81 return vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
82 else
83 return 0;
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080084}
85
86#define IS_VLAN_IP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000087 (vlan_proto(skb) == htons(ETH_P_IP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080088 brnf_filter_vlan_tagged)
89
90#define IS_VLAN_IPV6(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000091 (vlan_proto(skb) == htons(ETH_P_IPV6) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080092 brnf_filter_vlan_tagged)
93
94#define IS_VLAN_ARP(skb) \
Jesse Gross13937912010-10-20 13:56:01 +000095 (vlan_proto(skb) == htons(ETH_P_ARP) && \
Stephen Hemminger8b42ec32006-03-20 22:58:05 -080096 brnf_filter_vlan_tagged)
Linus Torvalds1da177e2005-04-16 15:20:36 -070097
Michael Milner516299d2007-04-12 22:14:23 -070098static inline __be16 pppoe_proto(const struct sk_buff *skb)
99{
100 return *((__be16 *)(skb_mac_header(skb) + ETH_HLEN +
101 sizeof(struct pppoe_hdr)));
102}
103
104#define IS_PPPOE_IP(skb) \
105 (skb->protocol == htons(ETH_P_PPP_SES) && \
106 pppoe_proto(skb) == htons(PPP_IP) && \
107 brnf_filter_pppoe_tagged)
108
109#define IS_PPPOE_IPV6(skb) \
110 (skb->protocol == htons(ETH_P_PPP_SES) && \
111 pppoe_proto(skb) == htons(PPP_IPV6) && \
112 brnf_filter_pppoe_tagged)
113
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700114static inline struct rtable *bridge_parent_rtable(const struct net_device *dev)
115{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000116 struct net_bridge_port *port;
117
118 port = br_port_get_rcu(dev);
119 return port ? &port->br->fake_rtable : NULL;
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700120}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800122static inline struct net_device *bridge_parent(const struct net_device *dev)
123{
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000124 struct net_bridge_port *port;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800125
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000126 port = br_port_get_rcu(dev);
127 return port ? port->br->dev : NULL;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800128}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800130static inline struct nf_bridge_info *nf_bridge_alloc(struct sk_buff *skb)
131{
132 skb->nf_bridge = kzalloc(sizeof(struct nf_bridge_info), GFP_ATOMIC);
133 if (likely(skb->nf_bridge))
134 atomic_set(&(skb->nf_bridge->use), 1);
135
136 return skb->nf_bridge;
137}
138
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800139static inline struct nf_bridge_info *nf_bridge_unshare(struct sk_buff *skb)
140{
141 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
142
143 if (atomic_read(&nf_bridge->use) > 1) {
144 struct nf_bridge_info *tmp = nf_bridge_alloc(skb);
145
146 if (tmp) {
147 memcpy(tmp, nf_bridge, sizeof(struct nf_bridge_info));
148 atomic_set(&tmp->use, 1);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800149 }
Changli Gao4c3a76a2010-08-22 19:03:26 +0000150 nf_bridge_put(nf_bridge);
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800151 nf_bridge = tmp;
152 }
153 return nf_bridge;
154}
155
Patrick McHardyfc385822007-05-03 03:36:16 -0700156static inline void nf_bridge_push_encap_header(struct sk_buff *skb)
157{
158 unsigned int len = nf_bridge_encap_header_len(skb);
159
160 skb_push(skb, len);
161 skb->network_header -= len;
162}
163
164static inline void nf_bridge_pull_encap_header(struct sk_buff *skb)
165{
166 unsigned int len = nf_bridge_encap_header_len(skb);
167
168 skb_pull(skb, len);
169 skb->network_header += len;
170}
171
172static inline void nf_bridge_pull_encap_header_rcsum(struct sk_buff *skb)
173{
174 unsigned int len = nf_bridge_encap_header_len(skb);
175
176 skb_pull_rcsum(skb, len);
177 skb->network_header += len;
178}
179
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800180static inline void nf_bridge_save_header(struct sk_buff *skb)
181{
Patrick McHardyfc385822007-05-03 03:36:16 -0700182 int header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800183
Arnaldo Carvalho de Melod626f622007-03-27 18:55:52 -0300184 skb_copy_from_linear_data_offset(skb, -header_size,
185 skb->nf_bridge->data, header_size);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800186}
187
Bandan Das462fb2a2010-09-19 09:34:33 +0000188/* When handing a packet over to the IP layer
189 * check whether we have a skb that is in the
190 * expected format
191 */
192
stephen hemmingerd0280232010-10-18 14:03:21 +0000193static int br_parse_ip_options(struct sk_buff *skb)
Bandan Das462fb2a2010-09-19 09:34:33 +0000194{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000195 const struct iphdr *iph;
Bandan Das462fb2a2010-09-19 09:34:33 +0000196 struct net_device *dev = skb->dev;
197 u32 len;
198
Sarveshwar Bandi6caab7b2012-10-10 01:15:01 +0000199 if (!pskb_may_pull(skb, sizeof(struct iphdr)))
200 goto inhdr_error;
201
Bandan Das462fb2a2010-09-19 09:34:33 +0000202 iph = ip_hdr(skb);
Bandan Das462fb2a2010-09-19 09:34:33 +0000203
204 /* Basic sanity checks */
205 if (iph->ihl < 5 || iph->version != 4)
206 goto inhdr_error;
207
208 if (!pskb_may_pull(skb, iph->ihl*4))
209 goto inhdr_error;
210
211 iph = ip_hdr(skb);
212 if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
213 goto inhdr_error;
214
215 len = ntohs(iph->tot_len);
216 if (skb->len < len) {
217 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INTRUNCATEDPKTS);
218 goto drop;
219 } else if (len < (iph->ihl*4))
220 goto inhdr_error;
221
222 if (pskb_trim_rcsum(skb, len)) {
223 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INDISCARDS);
224 goto drop;
225 }
226
Eric Dumazetf8e98812011-04-12 13:39:14 -0700227 memset(IPCB(skb), 0, sizeof(struct inet_skb_parm));
Herbert Xu7677e862014-10-04 22:18:02 +0800228 /* We should really parse IP options here but until
229 * somebody who actually uses IP options complains to
230 * us we'll just silently ignore the options because
231 * we're lazy!
232 */
Bandan Das462fb2a2010-09-19 09:34:33 +0000233 return 0;
234
235inhdr_error:
236 IP_INC_STATS_BH(dev_net(dev), IPSTATS_MIB_INHDRERRORS);
237drop:
238 return -1;
239}
240
Florian Westphal4a9d2f22015-03-05 00:52:34 +0100241static void nf_bridge_update_protocol(struct sk_buff *skb)
242{
243 if (skb->nf_bridge->mask & BRNF_8021Q)
244 skb->protocol = htons(ETH_P_8021Q);
245 else if (skb->nf_bridge->mask & BRNF_PPPoE)
246 skb->protocol = htons(ETH_P_PPP_SES);
247}
248
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249/* PF_BRIDGE/PRE_ROUTING *********************************************/
250/* Undo the changes made for ip6tables PREROUTING and continue the
251 * bridge PRE_ROUTING hook. */
252static int br_nf_pre_routing_finish_ipv6(struct sk_buff *skb)
253{
254 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000255 struct rtable *rt;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 if (nf_bridge->mask & BRNF_PKT_TYPE) {
258 skb->pkt_type = PACKET_OTHERHOST;
259 nf_bridge->mask ^= BRNF_PKT_TYPE;
260 }
261 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
262
Eric Dumazet511c3f92009-06-02 05:14:27 +0000263 rt = bridge_parent_rtable(nf_bridge->physindev);
264 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700265 kfree_skb(skb);
266 return 0;
267 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200268 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269
270 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200271 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700272 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100273 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 br_handle_frame_finish, 1);
275
276 return 0;
277}
278
Bart De Schuymere179e632010-04-15 12:26:39 +0200279/* Obtain the correct destination MAC address, while preserving the original
280 * source MAC address. If we already know this address, we just copy it. If we
281 * don't, we use the neighbour framework to find out. In both cases, we make
282 * sure that br_handle_frame_finish() is called afterwards.
283 */
284static int br_nf_pre_routing_finish_bridge(struct sk_buff *skb)
285{
286 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
David S. Millerf6b72b62011-07-14 07:53:20 -0700287 struct neighbour *neigh;
Bart De Schuymere179e632010-04-15 12:26:39 +0200288 struct dst_entry *dst;
289
290 skb->dev = bridge_parent(skb->dev);
291 if (!skb->dev)
292 goto free_skb;
293 dst = skb_dst(skb);
David S. Millerf9d75162012-07-02 22:12:59 -0700294 neigh = dst_neigh_lookup_skb(dst, skb);
295 if (neigh) {
296 int ret;
297
298 if (neigh->hh.hh_len) {
299 neigh_hh_bridge(&neigh->hh, skb);
300 skb->dev = nf_bridge->physindev;
301 ret = br_handle_frame_finish(skb);
302 } else {
303 /* the neighbour function below overwrites the complete
304 * MAC header, so we save the Ethernet source address and
305 * protocol number.
306 */
307 skb_copy_from_linear_data_offset(skb,
308 -(ETH_HLEN-ETH_ALEN),
309 skb->nf_bridge->data,
310 ETH_HLEN-ETH_ALEN);
311 /* tell br_dev_xmit to continue with forwarding */
312 nf_bridge->mask |= BRNF_BRIDGED_DNAT;
Herbert Xu93fdd472014-10-05 12:00:22 +0800313 /* FIXME Need to refragment */
David S. Millerf9d75162012-07-02 22:12:59 -0700314 ret = neigh->output(neigh, skb);
315 }
316 neigh_release(neigh);
317 return ret;
Bart De Schuymere179e632010-04-15 12:26:39 +0200318 }
319free_skb:
320 kfree_skb(skb);
321 return 0;
322}
323
Florian Westphalc055d5b2015-03-10 05:08:19 +0100324static bool dnat_took_place(const struct sk_buff *skb)
325{
326#if IS_ENABLED(CONFIG_NF_CONNTRACK)
327 enum ip_conntrack_info ctinfo;
328 struct nf_conn *ct;
329
330 ct = nf_ct_get(skb, &ctinfo);
331 if (!ct || nf_ct_is_untracked(ct))
332 return false;
333
334 return test_bit(IPS_DST_NAT_BIT, &ct->status);
335#else
336 return false;
337#endif
338}
339
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340/* This requires some explaining. If DNAT has taken place,
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200341 * we will need to fix up the destination Ethernet address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 *
343 * There are two cases to consider:
344 * 1. The packet was DNAT'ed to a device in the same bridge
345 * port group as it was received on. We can still bridge
346 * the packet.
347 * 2. The packet was DNAT'ed to a different device, either
348 * a non-bridged device or another bridge port group.
349 * The packet will need to be routed.
350 *
351 * The correct way of distinguishing between these two cases is to
352 * call ip_route_input() and to look at skb->dst->dev, which is
353 * changed to the destination device if ip_route_input() succeeds.
354 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200355 * Let's first consider the case that ip_route_input() succeeds:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200357 * If the output device equals the logical bridge device the packet
358 * came in on, we can consider this bridging. The corresponding MAC
359 * address will be obtained in br_nf_pre_routing_finish_bridge.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 * Otherwise, the packet is considered to be routed and we just
361 * change the destination MAC address so that the packet will
Bart De Schuymerf216f082006-12-05 13:45:21 -0800362 * later be passed up to the IP stack to be routed. For a redirected
363 * packet, ip_route_input() will give back the localhost as output device,
364 * which differs from the bridge device.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200366 * Let's now consider the case that ip_route_input() fails:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
Bart De Schuymerf216f082006-12-05 13:45:21 -0800368 * This can be because the destination address is martian, in which case
369 * the packet will be dropped.
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200370 * If IP forwarding is disabled, ip_route_input() will fail, while
371 * ip_route_output_key() can return success. The source
372 * address for ip_route_output_key() is set to zero, so ip_route_output_key()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 * thinks we're handling a locally generated packet and won't care
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200374 * if IP forwarding is enabled. If the output device equals the logical bridge
375 * device, we proceed as if ip_route_input() succeeded. If it differs from the
376 * logical bridge port or if ip_route_output_key() fails we drop the packet.
377 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378static int br_nf_pre_routing_finish(struct sk_buff *skb)
379{
380 struct net_device *dev = skb->dev;
Arnaldo Carvalho de Meloeddc9ec2007-04-20 22:47:35 -0700381 struct iphdr *iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Eric Dumazet511c3f92009-06-02 05:14:27 +0000383 struct rtable *rt;
Bart De Schuymerf216f082006-12-05 13:45:21 -0800384 int err;
Herbert Xu93fdd472014-10-05 12:00:22 +0800385 int frag_max_size;
386
387 frag_max_size = IPCB(skb)->frag_max_size;
388 BR_INPUT_SKB_CB(skb)->frag_max_size = frag_max_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 if (nf_bridge->mask & BRNF_PKT_TYPE) {
391 skb->pkt_type = PACKET_OTHERHOST;
392 nf_bridge->mask ^= BRNF_PKT_TYPE;
393 }
394 nf_bridge->mask ^= BRNF_NF_BRIDGE_PREROUTING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 if (dnat_took_place(skb)) {
Bart De Schuymerf216f082006-12-05 13:45:21 -0800396 if ((err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos, dev))) {
Eric Dumazetf3abc9b2009-08-24 19:35:38 +0200397 struct in_device *in_dev = __in_dev_get_rcu(dev);
Bart De Schuymerf216f082006-12-05 13:45:21 -0800398
399 /* If err equals -EHOSTUNREACH the error is due to a
400 * martian destination or due to the fact that
401 * forwarding is disabled. For most martian packets,
402 * ip_route_output_key() will fail. It won't fail for 2 types of
403 * martian destinations: loopback destinations and destination
404 * 0.0.0.0. In both cases the packet will be dropped because the
405 * destination is the loopback device and not the bridge. */
406 if (err != -EHOSTUNREACH || !in_dev || IN_DEV_FORWARD(in_dev))
407 goto free_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
David S. Miller78fbfd82011-03-12 00:00:52 -0500409 rt = ip_route_output(dev_net(dev), iph->daddr, 0,
410 RT_TOS(iph->tos), 0);
David S. Millerb23dd4f2011-03-02 14:31:35 -0800411 if (!IS_ERR(rt)) {
Bart De Schuymer1c011be2005-09-14 20:55:16 -0700412 /* - Bridged-and-DNAT'ed traffic doesn't
Bart De Schuymerf216f082006-12-05 13:45:21 -0800413 * require ip_forwarding. */
David S. Millerb23dd4f2011-03-02 14:31:35 -0800414 if (rt->dst.dev == dev) {
415 skb_dst_set(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 goto bridged_dnat;
417 }
David S. Millerb23dd4f2011-03-02 14:31:35 -0800418 ip_rt_put(rt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Bart De Schuymerf216f082006-12-05 13:45:21 -0800420free_skb:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 kfree_skb(skb);
422 return 0;
423 } else {
Eric Dumazetadf30902009-06-02 05:19:30 +0000424 if (skb_dst(skb)->dev == dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425bridged_dnat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200427 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700428 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100429 NF_HOOK_THRESH(NFPROTO_BRIDGE,
430 NF_BR_PRE_ROUTING,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 skb, skb->dev, NULL,
432 br_nf_pre_routing_finish_bridge,
433 1);
434 return 0;
435 }
Joe Perches04091142014-02-23 00:05:26 -0800436 ether_addr_copy(eth_hdr(skb)->h_dest, dev->dev_addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 skb->pkt_type = PACKET_HOST;
438 }
439 } else {
Eric Dumazet511c3f92009-06-02 05:14:27 +0000440 rt = bridge_parent_rtable(nf_bridge->physindev);
441 if (!rt) {
Simon Wunderlich4adf0af2008-07-30 16:27:55 -0700442 kfree_skb(skb);
443 return 0;
444 }
Patrick McHardyf9181f42010-06-15 17:31:06 +0200445 skb_dst_set_noref(skb, &rt->dst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 }
447
448 skb->dev = nf_bridge->physindev;
Bart De Schuymere179e632010-04-15 12:26:39 +0200449 nf_bridge_update_protocol(skb);
Patrick McHardyfc385822007-05-03 03:36:16 -0700450 nf_bridge_push_encap_header(skb);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100451 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 br_handle_frame_finish, 1);
453
454 return 0;
455}
456
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200457static struct net_device *brnf_get_logical_dev(struct sk_buff *skb, const struct net_device *dev)
458{
459 struct net_device *vlan, *br;
460
461 br = bridge_parent(dev);
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100462 if (brnf_pass_vlan_indev == 0 || !skb_vlan_tag_present(skb))
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200463 return br;
464
dingtianhongf06c7f92014-05-09 14:58:05 +0800465 vlan = __vlan_find_dev_deep_rcu(br, skb->vlan_proto,
Jiri Pirkodf8a39d2015-01-13 17:13:44 +0100466 skb_vlan_tag_get(skb) & VLAN_VID_MASK);
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200467
468 return vlan ? vlan : br;
469}
470
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471/* Some common code for IPv4/IPv6 */
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800472static struct net_device *setup_pre_routing(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
475
476 if (skb->pkt_type == PACKET_OTHERHOST) {
477 skb->pkt_type = PACKET_HOST;
478 nf_bridge->mask |= BRNF_PKT_TYPE;
479 }
480
481 nf_bridge->mask |= BRNF_NF_BRIDGE_PREROUTING;
482 nf_bridge->physindev = skb->dev;
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200483 skb->dev = brnf_get_logical_dev(skb, skb->dev);
Bart De Schuymere179e632010-04-15 12:26:39 +0200484 if (skb->protocol == htons(ETH_P_8021Q))
485 nf_bridge->mask |= BRNF_8021Q;
486 else if (skb->protocol == htons(ETH_P_PPP_SES))
487 nf_bridge->mask |= BRNF_PPPoE;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800488
Florian Westphal6b8dbcf2013-10-24 21:32:42 +0200489 /* Must drop socket now because of tproxy. */
490 skb_orphan(skb);
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800491 return skb->dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492}
493
494/* We only check the length. A bridge shouldn't do any hop-by-hop stuff anyway */
495static int check_hbh_len(struct sk_buff *skb)
496{
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700497 unsigned char *raw = (u8 *)(ipv6_hdr(skb) + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 u32 pkt_len;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700499 const unsigned char *nh = skb_network_header(skb);
500 int off = raw - nh;
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800501 int len = (raw[1] + 1) << 3;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502
503 if ((raw + len) - skb->data > skb_headlen(skb))
504 goto bad;
505
506 off += 2;
507 len -= 2;
508
509 while (len > 0) {
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700510 int optlen = nh[off + 1] + 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700512 switch (nh[off]) {
Eldad Zack1de5a712012-05-17 06:00:25 +0000513 case IPV6_TLV_PAD1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 optlen = 1;
515 break;
516
517 case IPV6_TLV_PADN:
518 break;
519
520 case IPV6_TLV_JUMBO:
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700521 if (nh[off + 1] != 4 || (off & 3) != 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700523 pkt_len = ntohl(*(__be32 *) (nh + off + 2));
Bart De Schuymerb0366482005-12-19 14:00:08 -0800524 if (pkt_len <= IPV6_MAXPLEN ||
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700525 ipv6_hdr(skb)->payload_len)
Bart De Schuymerb0366482005-12-19 14:00:08 -0800526 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 if (pkt_len > skb->len - sizeof(struct ipv6hdr))
528 goto bad;
Bart De Schuymerb0366482005-12-19 14:00:08 -0800529 if (pskb_trim_rcsum(skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800530 pkt_len + sizeof(struct ipv6hdr)))
Bart De Schuymerb0366482005-12-19 14:00:08 -0800531 goto bad;
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -0700532 nh = skb_network_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 break;
534 default:
535 if (optlen > len)
536 goto bad;
537 break;
538 }
539 off += optlen;
540 len -= optlen;
541 }
542 if (len == 0)
543 return 0;
544bad:
545 return -1;
546
547}
548
549/* Replicate the checks that IPv6 does on packet reception and pass the packet
550 * to ip6tables, which doesn't support NAT, so things are fairly simple. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200551static unsigned int br_nf_pre_routing_ipv6(const struct nf_hook_ops *ops,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800552 struct sk_buff *skb,
553 const struct net_device *in,
554 const struct net_device *out,
555 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556{
Eric Dumazetb71d1d42011-04-22 04:53:02 +0000557 const struct ipv6hdr *hdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 u32 pkt_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559
560 if (skb->len < sizeof(struct ipv6hdr))
Herbert Xudeef4b52010-12-09 17:38:11 +0000561 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
563 if (!pskb_may_pull(skb, sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000564 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
Arnaldo Carvalho de Melo0660e032007-04-25 17:54:47 -0700566 hdr = ipv6_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567
568 if (hdr->version != 6)
Herbert Xudeef4b52010-12-09 17:38:11 +0000569 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570
571 pkt_len = ntohs(hdr->payload_len);
572
573 if (pkt_len || hdr->nexthdr != NEXTHDR_HOP) {
574 if (pkt_len + sizeof(struct ipv6hdr) > skb->len)
Herbert Xudeef4b52010-12-09 17:38:11 +0000575 return NF_DROP;
Herbert Xub38dfee2006-06-09 16:13:01 -0700576 if (pskb_trim_rcsum(skb, pkt_len + sizeof(struct ipv6hdr)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000577 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579 if (hdr->nexthdr == NEXTHDR_HOP && check_hbh_len(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000580 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800582 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800583 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800585 if (!setup_pre_routing(skb))
586 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
Bart De Schuymere179e632010-04-15 12:26:39 +0200588 skb->protocol = htons(ETH_P_IPV6);
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100589 NF_HOOK(NFPROTO_IPV6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 br_nf_pre_routing_finish_ipv6);
591
592 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593}
594
595/* Direct IPv6 traffic to br_nf_pre_routing_ipv6.
596 * Replicate the checks that IPv4 does on packet reception.
597 * Set skb->dev to the bridge device (i.e. parent of the
598 * receiving device) to make netfilter happy, the REDIRECT
599 * target in particular. Save the original destination IP
600 * address to be able to detect DNAT afterwards. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200601static unsigned int br_nf_pre_routing(const struct nf_hook_ops *ops,
602 struct sk_buff *skb,
Stephen Hemmingeree02b3a2006-01-06 13:13:29 -0800603 const struct net_device *in,
604 const struct net_device *out,
605 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200607 struct net_bridge_port *p;
608 struct net_bridge *br;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700609 __u32 len = nf_bridge_encap_header_len(skb);
610
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700611 if (unlikely(!pskb_may_pull(skb, len)))
Herbert Xudeef4b52010-12-09 17:38:11 +0000612 return NF_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
David S. Millere490c1de2010-07-02 22:42:06 -0700614 p = br_port_get_rcu(in);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200615 if (p == NULL)
Herbert Xudeef4b52010-12-09 17:38:11 +0000616 return NF_DROP;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200617 br = p->br;
618
Florian Westphal739e4502012-03-06 01:22:54 +0000619 if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb)) {
Patrick McHardy4df53d82010-07-02 09:32:57 +0200620 if (!brnf_call_ip6tables && !br->nf_call_ip6tables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200622
Patrick McHardyfc385822007-05-03 03:36:16 -0700623 nf_bridge_pull_encap_header_rcsum(skb);
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200624 return br_nf_pre_routing_ipv6(ops, skb, in, out, okfn);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 }
Patrick McHardy4df53d82010-07-02 09:32:57 +0200626
627 if (!brnf_call_iptables && !br->nf_call_iptables)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629
Florian Westphal739e4502012-03-06 01:22:54 +0000630 if (!IS_IP(skb) && !IS_VLAN_IP(skb) && !IS_PPPOE_IP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return NF_ACCEPT;
632
Patrick McHardyfc385822007-05-03 03:36:16 -0700633 nf_bridge_pull_encap_header_rcsum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634
Bandan Das462fb2a2010-09-19 09:34:33 +0000635 if (br_parse_ip_options(skb))
Herbert Xudeef4b52010-12-09 17:38:11 +0000636 return NF_DROP;
Herbert Xu17762062010-07-05 21:29:28 +0000637
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800638 nf_bridge_put(skb->nf_bridge);
Stephen Hemmingerfdeabde2006-03-20 22:58:21 -0800639 if (!nf_bridge_alloc(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 return NF_DROP;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800641 if (!setup_pre_routing(skb))
642 return NF_DROP;
Florian Westphalc055d5b2015-03-10 05:08:19 +0100643
Bart De Schuymere179e632010-04-15 12:26:39 +0200644 skb->protocol = htons(ETH_P_IP);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100646 NF_HOOK(NFPROTO_IPV4, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647 br_nf_pre_routing_finish);
648
649 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652
653/* PF_BRIDGE/LOCAL_IN ************************************************/
654/* The packet is locally destined, which requires a real
655 * dst_entry, so detach the fake one. On the way up, the
656 * packet would pass through PRE_ROUTING again (which already
657 * took place when the packet entered the bridge), but we
658 * register an IPv4 PRE_ROUTING 'sabotage' hook that will
659 * prevent this from happening. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200660static unsigned int br_nf_local_in(const struct nf_hook_ops *ops,
661 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800662 const struct net_device *in,
663 const struct net_device *out,
664 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Peter Huang (Peng)a881e962012-04-19 20:12:51 +0000666 br_drop_fake_rtable(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 return NF_ACCEPT;
668}
669
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670/* PF_BRIDGE/FORWARD *************************************************/
671static int br_nf_forward_finish(struct sk_buff *skb)
672{
673 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
674 struct net_device *in;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Florian Westphal739e4502012-03-06 01:22:54 +0000676 if (!IS_ARP(skb) && !IS_VLAN_ARP(skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 in = nf_bridge->physindev;
678 if (nf_bridge->mask & BRNF_PKT_TYPE) {
679 skb->pkt_type = PACKET_OTHERHOST;
680 nf_bridge->mask ^= BRNF_PKT_TYPE;
681 }
Bart De Schuymere94c6742010-05-13 14:55:34 +0200682 nf_bridge_update_protocol(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 } else {
684 in = *((struct net_device **)(skb->cb));
685 }
Patrick McHardyfc385822007-05-03 03:36:16 -0700686 nf_bridge_push_encap_header(skb);
Bart De Schuymere179e632010-04-15 12:26:39 +0200687
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100688 NF_HOOK_THRESH(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, in,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800689 skb->dev, br_forward_finish, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 return 0;
691}
692
Florian Westphal739e4502012-03-06 01:22:54 +0000693
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694/* This is the 'purely bridged' case. For IP, we pass the packet to
695 * netfilter with indev and outdev set to the bridge device,
696 * but we are still able to filter on the 'real' indev/outdev
697 * because of the physdev module. For ARP, indev and outdev are the
698 * bridge ports. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200699static unsigned int br_nf_forward_ip(const struct nf_hook_ops *ops,
700 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800701 const struct net_device *in,
702 const struct net_device *out,
703 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 struct nf_bridge_info *nf_bridge;
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800706 struct net_device *parent;
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200707 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709 if (!skb->nf_bridge)
710 return NF_ACCEPT;
711
Patrick McHardy2dc2f202008-01-20 06:25:48 -0800712 /* Need exclusive nf_bridge_info since we might have multiple
713 * different physoutdevs. */
714 if (!nf_bridge_unshare(skb))
715 return NF_DROP;
716
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800717 parent = bridge_parent(out);
718 if (!parent)
719 return NF_DROP;
720
Florian Westphal739e4502012-03-06 01:22:54 +0000721 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000722 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000723 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000724 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000725 else
726 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Herbert Xu3db05fe2007-10-15 00:53:15 -0700728 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 nf_bridge = skb->nf_bridge;
731 if (skb->pkt_type == PACKET_OTHERHOST) {
732 skb->pkt_type = PACKET_HOST;
733 nf_bridge->mask |= BRNF_PKT_TYPE;
734 }
735
Alban Crequyaa740f42012-05-14 03:56:36 +0000736 if (pf == NFPROTO_IPV4 && br_parse_ip_options(skb))
Herbert Xu6b1e9602011-03-18 05:27:28 +0000737 return NF_DROP;
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 nf_bridge->physoutdev = skb->dev;
Alban Crequyaa740f42012-05-14 03:56:36 +0000740 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200741 skb->protocol = htons(ETH_P_IP);
742 else
743 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
Pablo Neira Ayuso49816822012-05-08 19:36:44 +0200745 NF_HOOK(pf, NF_INET_FORWARD, skb, brnf_get_logical_dev(skb, in), parent,
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800746 br_nf_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
748 return NF_STOLEN;
749}
750
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200751static unsigned int br_nf_forward_arp(const struct nf_hook_ops *ops,
752 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800753 const struct net_device *in,
754 const struct net_device *out,
755 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756{
Patrick McHardy4df53d82010-07-02 09:32:57 +0200757 struct net_bridge_port *p;
758 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 struct net_device **d = (struct net_device **)(skb->cb);
760
David S. Millere490c1de2010-07-02 22:42:06 -0700761 p = br_port_get_rcu(out);
Patrick McHardy4df53d82010-07-02 09:32:57 +0200762 if (p == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 return NF_ACCEPT;
Patrick McHardy4df53d82010-07-02 09:32:57 +0200764 br = p->br;
765
766 if (!brnf_call_arptables && !br->nf_call_arptables)
767 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Florian Westphal739e4502012-03-06 01:22:54 +0000769 if (!IS_ARP(skb)) {
Stephen Hemminger8b42ec32006-03-20 22:58:05 -0800770 if (!IS_VLAN_ARP(skb))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 return NF_ACCEPT;
Herbert Xu3db05fe2007-10-15 00:53:15 -0700772 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774
Arnaldo Carvalho de Melod0a92be2007-03-12 20:56:31 -0300775 if (arp_hdr(skb)->ar_pln != 4) {
Patrick McHardyfc385822007-05-03 03:36:16 -0700776 if (IS_VLAN_ARP(skb))
Herbert Xu3db05fe2007-10-15 00:53:15 -0700777 nf_bridge_push_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 return NF_ACCEPT;
779 }
780 *d = (struct net_device *)in;
Jan Engelhardtfdc93142008-10-20 03:34:51 -0700781 NF_HOOK(NFPROTO_ARP, NF_ARP_FORWARD, skb, (struct net_device *)in,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 (struct net_device *)out, br_nf_forward_finish);
783
784 return NF_STOLEN;
785}
786
Vasily Averinaff09ce2014-05-05 00:17:48 +0400787#if IS_ENABLED(CONFIG_NF_DEFRAG_IPV4)
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100788static bool nf_bridge_copy_header(struct sk_buff *skb)
789{
790 int err;
791 unsigned int header_size;
792
793 nf_bridge_update_protocol(skb);
794 header_size = ETH_HLEN + nf_bridge_encap_header_len(skb);
795 err = skb_cow_head(skb, header_size);
796 if (err)
797 return false;
798
799 skb_copy_to_linear_data_offset(skb, -header_size,
800 skb->nf_bridge->data, header_size);
801 __skb_push(skb, nf_bridge_encap_header_len(skb));
802 return true;
803}
804
805static int br_nf_push_frag_xmit(struct sk_buff *skb)
806{
807 if (!nf_bridge_copy_header(skb)) {
808 kfree_skb(skb);
809 return 0;
810 }
811
812 return br_dev_queue_push_xmit(skb);
813}
814
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700815static int br_nf_dev_queue_xmit(struct sk_buff *skb)
816{
Bandan Das462fb2a2010-09-19 09:34:33 +0000817 int ret;
Herbert Xu93fdd472014-10-05 12:00:22 +0800818 int frag_max_size;
Florian Westphal7a8d8312015-03-05 00:52:36 +0100819 unsigned int mtu_reserved;
Bandan Das462fb2a2010-09-19 09:34:33 +0000820
Florian Westphal7a8d8312015-03-05 00:52:36 +0100821 if (skb_is_gso(skb) || skb->protocol != htons(ETH_P_IP))
822 return br_dev_queue_push_xmit(skb);
823
824 mtu_reserved = nf_bridge_mtu_reduction(skb);
Herbert Xu93fdd472014-10-05 12:00:22 +0800825 /* This is wrong! We should preserve the original fragment
826 * boundaries by preserving frag_list rather than refragmenting.
827 */
Florian Westphal7a8d8312015-03-05 00:52:36 +0100828 if (skb->len + mtu_reserved > skb->dev->mtu) {
Herbert Xu93fdd472014-10-05 12:00:22 +0800829 frag_max_size = BR_INPUT_SKB_CB(skb)->frag_max_size;
Bandan Das462fb2a2010-09-19 09:34:33 +0000830 if (br_parse_ip_options(skb))
831 /* Drop invalid packet */
832 return NF_DROP;
Herbert Xu93fdd472014-10-05 12:00:22 +0800833 IPCB(skb)->frag_max_size = frag_max_size;
Florian Westphal8bd63cf2015-03-05 00:52:33 +0100834 ret = ip_fragment(skb, br_nf_push_frag_xmit);
David S. Miller87f94b42010-09-01 18:06:39 -0700835 } else
Bandan Das462fb2a2010-09-19 09:34:33 +0000836 ret = br_dev_queue_push_xmit(skb);
837
838 return ret;
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700839}
hummerbliss@gmail.comc197fac2009-04-20 17:12:35 +0200840#else
841static int br_nf_dev_queue_xmit(struct sk_buff *skb)
842{
843 return br_dev_queue_push_xmit(skb);
844}
845#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
847/* PF_BRIDGE/POST_ROUTING ********************************************/
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200848static unsigned int br_nf_post_routing(const struct nf_hook_ops *ops,
849 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800850 const struct net_device *in,
851 const struct net_device *out,
852 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700854 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct net_device *realoutdev = bridge_parent(skb->dev);
Jan Engelhardt76108ce2008-10-08 11:35:00 +0200856 u_int8_t pf;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Florian Westphale4bb9bc2015-03-10 10:36:48 +0100858 /* if nf_bridge is set, but ->physoutdev is NULL, this packet came in
859 * on a bridge, but was delivered locally and is now being routed:
860 *
861 * POST_ROUTING was already invoked from the ip stack.
862 */
863 if (!nf_bridge || !nf_bridge->physoutdev)
Patrick McHardy81d9dda2007-11-13 02:58:44 -0800864 return NF_ACCEPT;
865
Stephen Hemminger5dce9712006-02-09 17:09:38 -0800866 if (!realoutdev)
867 return NF_DROP;
868
Florian Westphal739e4502012-03-06 01:22:54 +0000869 if (IS_IP(skb) || IS_VLAN_IP(skb) || IS_PPPOE_IP(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000870 pf = NFPROTO_IPV4;
Florian Westphal739e4502012-03-06 01:22:54 +0000871 else if (IS_IPV6(skb) || IS_VLAN_IPV6(skb) || IS_PPPOE_IPV6(skb))
Alban Crequyaa740f42012-05-14 03:56:36 +0000872 pf = NFPROTO_IPV6;
Herbert Xua2bd40a2009-01-12 00:06:02 +0000873 else
874 return NF_ACCEPT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 /* We assume any code from br_dev_queue_push_xmit onwards doesn't care
877 * about the value of skb->pkt_type. */
878 if (skb->pkt_type == PACKET_OTHERHOST) {
879 skb->pkt_type = PACKET_HOST;
880 nf_bridge->mask |= BRNF_PKT_TYPE;
881 }
882
Patrick McHardyfc385822007-05-03 03:36:16 -0700883 nf_bridge_pull_encap_header(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 nf_bridge_save_header(skb);
Alban Crequyaa740f42012-05-14 03:56:36 +0000885 if (pf == NFPROTO_IPV4)
Bart De Schuymere179e632010-04-15 12:26:39 +0200886 skb->protocol = htons(ETH_P_IP);
887 else
888 skb->protocol = htons(ETH_P_IPV6);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
Patrick McHardy6e23ae22007-11-19 18:53:30 -0800890 NF_HOOK(pf, NF_INET_POST_ROUTING, skb, NULL, realoutdev,
Patrick McHardy2e2f7ae2006-04-04 13:42:35 -0700891 br_nf_dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 return NF_STOLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894}
895
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896/* IP/SABOTAGE *****************************************************/
897/* Don't hand locally destined packets to PF_INET(6)/PRE_ROUTING
898 * for the second time. */
Patrick McHardy795aa6e2013-10-10 09:21:55 +0200899static unsigned int ip_sabotage_in(const struct nf_hook_ops *ops,
900 struct sk_buff *skb,
Stephen Hemminger789bc3e2006-03-20 22:57:32 -0800901 const struct net_device *in,
902 const struct net_device *out,
903 int (*okfn)(struct sk_buff *))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904{
Herbert Xu3db05fe2007-10-15 00:53:15 -0700905 if (skb->nf_bridge &&
906 !(skb->nf_bridge->mask & BRNF_NF_BRIDGE_PREROUTING)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 return NF_STOP;
908 }
909
910 return NF_ACCEPT;
911}
912
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100913/* This is called when br_netfilter has called into iptables/netfilter,
914 * and DNAT has taken place on a bridge-forwarded packet.
915 *
916 * neigh->output has created a new MAC header, with local br0 MAC
917 * as saddr.
918 *
919 * This restores the original MAC saddr of the bridged packet
920 * before invoking bridge forward logic to transmit the packet.
921 */
922static void br_nf_pre_routing_finish_bridge_slow(struct sk_buff *skb)
923{
924 struct nf_bridge_info *nf_bridge = skb->nf_bridge;
925
926 skb_pull(skb, ETH_HLEN);
927 nf_bridge->mask &= ~BRNF_BRIDGED_DNAT;
928
929 skb_copy_to_linear_data_offset(skb, -(ETH_HLEN-ETH_ALEN),
930 skb->nf_bridge->data, ETH_HLEN-ETH_ALEN);
931 skb->dev = nf_bridge->physindev;
932 br_handle_frame_finish(skb);
933}
934
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100935static int br_nf_dev_xmit(struct sk_buff *skb)
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100936{
937 if (skb->nf_bridge && (skb->nf_bridge->mask & BRNF_BRIDGED_DNAT)) {
938 br_nf_pre_routing_finish_bridge_slow(skb);
939 return 1;
940 }
941 return 0;
942}
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +0100943
944static const struct nf_br_ops br_ops = {
945 .br_dev_xmit_hook = br_nf_dev_xmit,
946};
Pablo Neira Ayusoe5de75b2015-03-09 12:30:12 +0100947
Pablo Neira Ayuso4b7fd5d2014-10-02 11:13:21 +0200948void br_netfilter_enable(void)
949{
950}
951EXPORT_SYMBOL_GPL(br_netfilter_enable);
952
Bart De Schuymerea2d9b42010-04-15 12:14:51 +0200953/* For br_nf_post_routing, we need (prio = NF_BR_PRI_LAST), because
954 * br_dev_queue_push_xmit is called afterwards */
Patrick McHardy19994142007-12-05 01:23:00 -0800955static struct nf_hook_ops br_nf_ops[] __read_mostly = {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000956 {
957 .hook = br_nf_pre_routing,
958 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000959 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000960 .hooknum = NF_BR_PRE_ROUTING,
961 .priority = NF_BR_PRI_BRNF,
962 },
963 {
964 .hook = br_nf_local_in,
965 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000966 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000967 .hooknum = NF_BR_LOCAL_IN,
968 .priority = NF_BR_PRI_BRNF,
969 },
970 {
971 .hook = br_nf_forward_ip,
972 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000973 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000974 .hooknum = NF_BR_FORWARD,
975 .priority = NF_BR_PRI_BRNF - 1,
976 },
977 {
978 .hook = br_nf_forward_arp,
979 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000980 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000981 .hooknum = NF_BR_FORWARD,
982 .priority = NF_BR_PRI_BRNF,
983 },
984 {
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000985 .hook = br_nf_post_routing,
986 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000987 .pf = NFPROTO_BRIDGE,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000988 .hooknum = NF_BR_POST_ROUTING,
989 .priority = NF_BR_PRI_LAST,
990 },
991 {
992 .hook = ip_sabotage_in,
993 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +0000994 .pf = NFPROTO_IPV4,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +0000995 .hooknum = NF_INET_PRE_ROUTING,
996 .priority = NF_IP_PRI_FIRST,
997 },
998 {
999 .hook = ip_sabotage_in,
1000 .owner = THIS_MODULE,
Alban Crequyaa740f42012-05-14 03:56:36 +00001001 .pf = NFPROTO_IPV6,
Cyrill Gorcunov1490fd82009-07-03 20:11:57 +00001002 .hooknum = NF_INET_PRE_ROUTING,
1003 .priority = NF_IP6_PRI_FIRST,
1004 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005};
1006
1007#ifdef CONFIG_SYSCTL
1008static
Joe Perchesfe2c6332013-06-11 23:04:25 -07001009int brnf_sysctl_call_tables(struct ctl_table *ctl, int write,
tanxiaojun56b148e2013-12-19 13:28:13 +08001010 void __user *buffer, size_t *lenp, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 int ret;
1013
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07001014 ret = proc_dointvec(ctl, write, buffer, lenp, ppos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015
1016 if (write && *(int *)(ctl->data))
1017 *(int *)(ctl->data) = 1;
1018 return ret;
1019}
1020
Joe Perchesfe2c6332013-06-11 23:04:25 -07001021static struct ctl_table brnf_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023 .procname = "bridge-nf-call-arptables",
1024 .data = &brnf_call_arptables,
1025 .maxlen = sizeof(int),
1026 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001027 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028 },
1029 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 .procname = "bridge-nf-call-iptables",
1031 .data = &brnf_call_iptables,
1032 .maxlen = sizeof(int),
1033 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001034 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035 },
1036 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 .procname = "bridge-nf-call-ip6tables",
1038 .data = &brnf_call_ip6tables,
1039 .maxlen = sizeof(int),
1040 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001041 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 },
1043 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 .procname = "bridge-nf-filter-vlan-tagged",
1045 .data = &brnf_filter_vlan_tagged,
1046 .maxlen = sizeof(int),
1047 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001048 .proc_handler = brnf_sysctl_call_tables,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 },
Michael Milner516299d2007-04-12 22:14:23 -07001050 {
Michael Milner516299d2007-04-12 22:14:23 -07001051 .procname = "bridge-nf-filter-pppoe-tagged",
1052 .data = &brnf_filter_pppoe_tagged,
1053 .maxlen = sizeof(int),
1054 .mode = 0644,
Alexey Dobriyan6d9f2392008-11-03 18:21:05 -08001055 .proc_handler = brnf_sysctl_call_tables,
Michael Milner516299d2007-04-12 22:14:23 -07001056 },
Pablo Neira Ayuso49816822012-05-08 19:36:44 +02001057 {
1058 .procname = "bridge-nf-pass-vlan-input-dev",
1059 .data = &brnf_pass_vlan_indev,
1060 .maxlen = sizeof(int),
1061 .mode = 0644,
1062 .proc_handler = brnf_sysctl_call_tables,
1063 },
Eric W. Biedermanf8572d82009-11-05 13:32:03 -08001064 { }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066#endif
1067
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001068static int __init br_netfilter_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069{
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001070 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001072 ret = nf_register_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001073 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 return ret;
Eric Dumazetfc66f952010-10-08 06:37:34 +00001075
Linus Torvalds1da177e2005-04-16 15:20:36 -07001076#ifdef CONFIG_SYSCTL
Eric W. Biedermanec8f23c2012-04-19 13:44:49 +00001077 brnf_sysctl_header = register_net_sysctl(&init_net, "net/bridge", brnf_table);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (brnf_sysctl_header == NULL) {
Stephen Hemminger789bc3e2006-03-20 22:57:32 -08001079 printk(KERN_WARNING
1080 "br_netfilter: can't register to sysctl.\n");
Geert Uytterhoeven96727232015-02-12 15:17:27 +01001081 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
1082 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 }
1084#endif
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001085 RCU_INIT_POINTER(nf_br_ops, &br_ops);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 printk(KERN_NOTICE "Bridge firewalling registered\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087 return 0;
1088}
1089
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001090static void __exit br_netfilter_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091{
Pablo Neira Ayuso1a4ba642015-03-10 10:27:18 +01001092 RCU_INIT_POINTER(nf_br_ops, NULL);
Patrick McHardy5eb87f42007-02-07 15:07:22 -08001093 nf_unregister_hooks(br_nf_ops, ARRAY_SIZE(br_nf_ops));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094#ifdef CONFIG_SYSCTL
Eric W. Biederman5dd3df12012-04-19 13:24:33 +00001095 unregister_net_sysctl_table(brnf_sysctl_header);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +02001098
1099module_init(br_netfilter_init);
1100module_exit(br_netfilter_fini);
1101
1102MODULE_LICENSE("GPL");
1103MODULE_AUTHOR("Lennert Buytenhek <buytenh@gnu.org>");
1104MODULE_AUTHOR("Bart De Schuymer <bdschuym@pandora.be>");
1105MODULE_DESCRIPTION("Linux ethernet netfilter firewall bridge");