blob: fcdb86dd5a239cceb0fb79d8e422f6fc56d14f0a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Forwarding decision
3 * Linux ethernet bridge
4 *
5 * Authors:
6 * Lennert Buytenhek <buytenh@gnu.org>
7 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
Herbert Xu025d89c2010-02-27 19:41:43 +000014#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/kernel.h>
17#include <linux/netdevice.h>
WANG Congc06ee962010-05-06 00:48:24 -070018#include <linux/netpoll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/skbuff.h>
Stephen Hemminger85ca7192006-04-26 02:39:19 -070020#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/netfilter_bridge.h>
22#include "br_private.h"
23
David S. Miller87faf3c2010-03-16 14:37:47 -070024static int deliver_clone(const struct net_bridge_port *prev,
25 struct sk_buff *skb,
Michael Braun7f7708f2010-03-16 00:26:22 -070026 void (*__packet_hook)(const struct net_bridge_port *p,
27 struct sk_buff *skb));
28
tanxiaojun1a81a2e2013-12-16 21:32:46 +080029/* Don't forward packets to originating port or forwarding disabled */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +090030static inline int should_deliver(const struct net_bridge_port *p,
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 const struct sk_buff *skb)
32{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020033 struct net_bridge_vlan_group *vg;
34
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +020035 vg = nbp_vlan_group_rcu(p);
tanxiaojuna97bfc12013-12-19 13:28:11 +080036 return ((p->flags & BR_HAIRPIN_MODE) || skb->dev != p->dev) &&
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020037 br_allowed_egress(vg, skb) && p->state == BR_STATE_FORWARDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
39
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -050040int br_dev_queue_push_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041{
Toshiaki Makitadf356d52015-07-28 19:05:37 +090042 if (!is_skb_forwardable(skb->dev, skb))
43 goto drop;
44
45 skb_push(skb, ETH_HLEN);
46 br_drop_fake_rtable(skb);
47 skb_sender_cpu_clear(skb);
48
49 if (skb->ip_summed == CHECKSUM_PARTIAL &&
50 (skb->protocol == htons(ETH_P_8021Q) ||
51 skb->protocol == htons(ETH_P_8021AD))) {
52 int depth;
53
54 if (!__vlan_get_protocol(skb, skb->protocol, &depth))
55 goto drop;
56
57 skb_set_network_header(skb, depth);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 }
59
Toshiaki Makitadf356d52015-07-28 19:05:37 +090060 dev_queue_xmit(skb);
61
62 return 0;
63
64drop:
65 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 return 0;
67}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +020068EXPORT_SYMBOL_GPL(br_dev_queue_push_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -050070int br_forward_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071{
Eric W. Biederman29a26a52015-09-15 20:04:16 -050072 return NF_HOOK(NFPROTO_BRIDGE, NF_BR_POST_ROUTING,
73 net, sk, skb, NULL, skb->dev,
Stephen Hemminger9ef513b2006-05-25 15:58:54 -070074 br_dev_queue_push_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +020077EXPORT_SYMBOL_GPL(br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79static void __br_deliver(const struct net_bridge_port *to, struct sk_buff *skb)
80{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020081 struct net_bridge_vlan_group *vg;
82
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +020083 vg = nbp_vlan_group_rcu(to);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +020084 skb = br_handle_vlan(to->br, vg, skb);
Vlad Yasevich78851982013-02-13 12:00:14 +000085 if (!skb)
86 return;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 skb->dev = to->dev;
Herbert Xu91d2c342010-06-10 16:12:50 +000089
Amerigo Wange15c3c222012-08-10 01:24:45 +000090 if (unlikely(netpoll_tx_running(to->br->dev))) {
Vlad Yasevichf6367b42014-03-27 17:32:30 -040091 if (!is_skb_forwardable(skb->dev, skb))
Herbert Xu91d2c342010-06-10 16:12:50 +000092 kfree_skb(skb);
93 else {
94 skb_push(skb, ETH_HLEN);
95 br_netpoll_send_skb(to, skb);
96 }
97 return;
98 }
99
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500100 NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_OUT,
101 dev_net(skb->dev), NULL, skb,NULL, skb->dev,
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100102 br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103}
104
105static void __br_forward(const struct net_bridge_port *to, struct sk_buff *skb)
106{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200107 struct net_bridge_vlan_group *vg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 struct net_device *indev;
109
Herbert Xu4906f992009-02-09 15:07:18 -0800110 if (skb_warn_if_lro(skb)) {
111 kfree_skb(skb);
112 return;
113 }
114
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +0200115 vg = nbp_vlan_group_rcu(to);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200116 skb = br_handle_vlan(to->br, vg, skb);
Vlad Yasevich78851982013-02-13 12:00:14 +0000117 if (!skb)
118 return;
119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 indev = skb->dev;
121 skb->dev = to->dev;
Herbert Xu35fc92a2007-03-26 23:22:20 -0700122 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500124 NF_HOOK(NFPROTO_BRIDGE, NF_BR_FORWARD,
125 dev_net(indev), NULL, skb, indev, skb->dev,
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100126 br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
129/* called with rcu_read_lock */
130void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb)
131{
stephen hemminger43598812011-12-08 07:17:49 +0000132 if (to && should_deliver(to, skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 __br_deliver(to, skb);
134 return;
135 }
136
137 kfree_skb(skb);
138}
Pablo Neira Ayuso523b9292014-10-25 18:40:26 +0200139EXPORT_SYMBOL_GPL(br_deliver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141/* called with rcu_read_lock */
Michael Braun7f7708f2010-03-16 00:26:22 -0700142void br_forward(const struct net_bridge_port *to, struct sk_buff *skb, struct sk_buff *skb0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143{
Roopa Prabhub7af1472015-10-27 07:52:56 -0700144 if (to && should_deliver(to, skb)) {
Michael Braun7f7708f2010-03-16 00:26:22 -0700145 if (skb0)
146 deliver_clone(to, skb, __br_forward);
147 else
148 __br_forward(to, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return;
150 }
151
Michael Braun7f7708f2010-03-16 00:26:22 -0700152 if (!skb0)
153 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154}
155
David S. Miller87faf3c2010-03-16 14:37:47 -0700156static int deliver_clone(const struct net_bridge_port *prev,
157 struct sk_buff *skb,
Herbert Xu025d89c2010-02-27 19:41:43 +0000158 void (*__packet_hook)(const struct net_bridge_port *p,
159 struct sk_buff *skb))
160{
Herbert Xufed396a2010-06-15 21:43:07 -0700161 struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
162
Herbert Xu025d89c2010-02-27 19:41:43 +0000163 skb = skb_clone(skb, GFP_ATOMIC);
164 if (!skb) {
Herbert Xu025d89c2010-02-27 19:41:43 +0000165 dev->stats.tx_dropped++;
166 return -ENOMEM;
167 }
168
169 __packet_hook(prev, skb);
170 return 0;
171}
172
173static struct net_bridge_port *maybe_deliver(
174 struct net_bridge_port *prev, struct net_bridge_port *p,
175 struct sk_buff *skb,
176 void (*__packet_hook)(const struct net_bridge_port *p,
177 struct sk_buff *skb))
178{
179 int err;
180
181 if (!should_deliver(p, skb))
182 return prev;
183
184 if (!prev)
185 goto out;
186
187 err = deliver_clone(prev, skb, __packet_hook);
188 if (err)
189 return ERR_PTR(err);
190
191out:
192 return p;
193}
194
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195/* called under bridge lock */
Herbert Xue081e1e2007-09-16 16:20:48 -0700196static void br_flood(struct net_bridge *br, struct sk_buff *skb,
Herbert Xub33084b2010-02-27 19:41:41 +0000197 struct sk_buff *skb0,
198 void (*__packet_hook)(const struct net_bridge_port *p,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400199 struct sk_buff *skb),
200 bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201{
202 struct net_bridge_port *p;
203 struct net_bridge_port *prev;
204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 prev = NULL;
206
207 list_for_each_entry_rcu(p, &br->port_list, list) {
Vlad Yasevich867a5942013-06-05 10:08:01 -0400208 /* Do not flood unicast traffic to ports that turn it off */
209 if (unicast && !(p->flags & BR_FLOOD))
210 continue;
Kyeyoon Park95850112014-10-23 14:49:17 -0700211
212 /* Do not flood to ports that enable proxy ARP */
213 if (p->flags & BR_PROXYARP)
214 continue;
Jouni Malinen842a9ae2015-03-04 12:54:21 +0200215 if ((p->flags & BR_PROXYARP_WIFI) &&
216 BR_INPUT_SKB_CB(skb)->proxyarp_replied)
217 continue;
Kyeyoon Park95850112014-10-23 14:49:17 -0700218
Herbert Xu025d89c2010-02-27 19:41:43 +0000219 prev = maybe_deliver(prev, p, skb, __packet_hook);
220 if (IS_ERR(prev))
221 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 }
223
Herbert Xub33084b2010-02-27 19:41:41 +0000224 if (!prev)
225 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226
Herbert Xu025d89c2010-02-27 19:41:43 +0000227 if (skb0)
228 deliver_clone(prev, skb, __packet_hook);
229 else
230 __packet_hook(prev, skb);
Herbert Xub33084b2010-02-27 19:41:41 +0000231 return;
232
233out:
234 if (!skb0)
235 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238
239/* called with rcu_read_lock */
Vlad Yasevich867a5942013-06-05 10:08:01 -0400240void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Vlad Yasevich867a5942013-06-05 10:08:01 -0400242 br_flood(br, skb, NULL, __br_deliver, unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
245/* called under bridge lock */
Herbert Xub33084b2010-02-27 19:41:41 +0000246void br_flood_forward(struct net_bridge *br, struct sk_buff *skb,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400247 struct sk_buff *skb2, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
Vlad Yasevich867a5942013-06-05 10:08:01 -0400249 br_flood(br, skb, skb2, __br_forward, unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
Herbert Xu5cb5e942010-02-27 19:41:46 +0000251
252#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
253/* called with rcu_read_lock */
254static void br_multicast_flood(struct net_bridge_mdb_entry *mdst,
255 struct sk_buff *skb, struct sk_buff *skb0,
256 void (*__packet_hook)(
257 const struct net_bridge_port *p,
258 struct sk_buff *skb))
259{
260 struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
261 struct net_bridge *br = netdev_priv(dev);
stephen hemmingerafe01592010-04-27 15:01:07 +0000262 struct net_bridge_port *prev = NULL;
Herbert Xu5cb5e942010-02-27 19:41:46 +0000263 struct net_bridge_port_group *p;
264 struct hlist_node *rp;
265
Eric Dumazete8051682010-11-15 06:38:10 +0000266 rp = rcu_dereference(hlist_first_rcu(&br->router_list));
stephen hemminger83f6a742010-04-27 15:01:06 +0000267 p = mdst ? rcu_dereference(mdst->ports) : NULL;
Herbert Xu5cb5e942010-02-27 19:41:46 +0000268 while (p || rp) {
stephen hemmingerafe01592010-04-27 15:01:07 +0000269 struct net_bridge_port *port, *lport, *rport;
270
Herbert Xu5cb5e942010-02-27 19:41:46 +0000271 lport = p ? p->port : NULL;
272 rport = rp ? hlist_entry(rp, struct net_bridge_port, rlist) :
273 NULL;
274
275 port = (unsigned long)lport > (unsigned long)rport ?
276 lport : rport;
277
278 prev = maybe_deliver(prev, port, skb, __packet_hook);
279 if (IS_ERR(prev))
280 goto out;
281
282 if ((unsigned long)lport >= (unsigned long)port)
stephen hemminger83f6a742010-04-27 15:01:06 +0000283 p = rcu_dereference(p->next);
Herbert Xu5cb5e942010-02-27 19:41:46 +0000284 if ((unsigned long)rport >= (unsigned long)port)
Eric Dumazete8051682010-11-15 06:38:10 +0000285 rp = rcu_dereference(hlist_next_rcu(rp));
Herbert Xu5cb5e942010-02-27 19:41:46 +0000286 }
287
288 if (!prev)
289 goto out;
290
291 if (skb0)
292 deliver_clone(prev, skb, __packet_hook);
293 else
294 __packet_hook(prev, skb);
295 return;
296
297out:
298 if (!skb0)
299 kfree_skb(skb);
300}
301
302/* called with rcu_read_lock */
303void br_multicast_deliver(struct net_bridge_mdb_entry *mdst,
304 struct sk_buff *skb)
305{
306 br_multicast_flood(mdst, skb, NULL, __br_deliver);
307}
308
309/* called with rcu_read_lock */
310void br_multicast_forward(struct net_bridge_mdb_entry *mdst,
311 struct sk_buff *skb, struct sk_buff *skb2)
312{
313 br_multicast_flood(mdst, skb, skb2, __br_forward);
314}
315#endif