blob: 056b67b0e2778fdce7bd80a2bf4ede2d552c0e1d [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{
tanxiaojuna97bfc12013-12-19 13:28:11 +080033 return ((p->flags & BR_HAIRPIN_MODE) || skb->dev != p->dev) &&
Vlad Yasevich85f46c62013-02-13 12:00:11 +000034 br_allowed_egress(p->br, nbp_get_vlan_info(p), skb) &&
tanxiaojuna97bfc12013-12-19 13:28:11 +080035 p->state == BR_STATE_FORWARDING;
Linus Torvalds1da177e2005-04-16 15:20:36 -070036}
37
38int br_dev_queue_push_xmit(struct sk_buff *skb)
39{
Changli Gaof88de8d2010-12-25 03:41:30 +000040 /* ip_fragment doesn't copy the MAC header */
41 if (nf_bridge_maybe_copy_header(skb) ||
Vlad Yasevichf6367b42014-03-27 17:32:30 -040042 !is_skb_forwardable(skb->dev, skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 kfree_skb(skb);
Changli Gaof88de8d2010-12-25 03:41:30 +000044 } else {
45 skb_push(skb, ETH_HLEN);
Peter Huang (Peng)a881e962012-04-19 20:12:51 +000046 br_drop_fake_rtable(skb);
Changli Gaof88de8d2010-12-25 03:41:30 +000047 dev_queue_xmit(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 }
49
50 return 0;
51}
52
53int br_forward_finish(struct sk_buff *skb)
54{
Jan Engelhardt713aefa2010-03-23 04:07:21 +010055 return NF_HOOK(NFPROTO_BRIDGE, NF_BR_POST_ROUTING, skb, NULL, skb->dev,
Stephen Hemminger9ef513b2006-05-25 15:58:54 -070056 br_dev_queue_push_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60static void __br_deliver(const struct net_bridge_port *to, struct sk_buff *skb)
61{
Vlad Yasevich78851982013-02-13 12:00:14 +000062 skb = br_handle_vlan(to->br, nbp_get_vlan_info(to), skb);
63 if (!skb)
64 return;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 skb->dev = to->dev;
Herbert Xu91d2c342010-06-10 16:12:50 +000067
Amerigo Wange15c3c222012-08-10 01:24:45 +000068 if (unlikely(netpoll_tx_running(to->br->dev))) {
Vlad Yasevichf6367b42014-03-27 17:32:30 -040069 if (!is_skb_forwardable(skb->dev, skb))
Herbert Xu91d2c342010-06-10 16:12:50 +000070 kfree_skb(skb);
71 else {
72 skb_push(skb, ETH_HLEN);
73 br_netpoll_send_skb(to, skb);
74 }
75 return;
76 }
77
Jan Engelhardt713aefa2010-03-23 04:07:21 +010078 NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_OUT, skb, NULL, skb->dev,
79 br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82static void __br_forward(const struct net_bridge_port *to, struct sk_buff *skb)
83{
84 struct net_device *indev;
85
Herbert Xu4906f992009-02-09 15:07:18 -080086 if (skb_warn_if_lro(skb)) {
87 kfree_skb(skb);
88 return;
89 }
90
Vlad Yasevich78851982013-02-13 12:00:14 +000091 skb = br_handle_vlan(to->br, nbp_get_vlan_info(to), skb);
92 if (!skb)
93 return;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 indev = skb->dev;
96 skb->dev = to->dev;
Herbert Xu35fc92a2007-03-26 23:22:20 -070097 skb_forward_csum(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Jan Engelhardt713aefa2010-03-23 04:07:21 +010099 NF_HOOK(NFPROTO_BRIDGE, NF_BR_FORWARD, skb, indev, skb->dev,
100 br_forward_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101}
102
103/* called with rcu_read_lock */
104void br_deliver(const struct net_bridge_port *to, struct sk_buff *skb)
105{
stephen hemminger43598812011-12-08 07:17:49 +0000106 if (to && should_deliver(to, skb)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 __br_deliver(to, skb);
108 return;
109 }
110
111 kfree_skb(skb);
112}
113
114/* called with rcu_read_lock */
Michael Braun7f7708f2010-03-16 00:26:22 -0700115void br_forward(const struct net_bridge_port *to, struct sk_buff *skb, struct sk_buff *skb0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116{
Herbert Xu4906f992009-02-09 15:07:18 -0800117 if (should_deliver(to, skb)) {
Michael Braun7f7708f2010-03-16 00:26:22 -0700118 if (skb0)
119 deliver_clone(to, skb, __br_forward);
120 else
121 __br_forward(to, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return;
123 }
124
Michael Braun7f7708f2010-03-16 00:26:22 -0700125 if (!skb0)
126 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127}
128
David S. Miller87faf3c2010-03-16 14:37:47 -0700129static int deliver_clone(const struct net_bridge_port *prev,
130 struct sk_buff *skb,
Herbert Xu025d89c2010-02-27 19:41:43 +0000131 void (*__packet_hook)(const struct net_bridge_port *p,
132 struct sk_buff *skb))
133{
Herbert Xufed396a2010-06-15 21:43:07 -0700134 struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
135
Herbert Xu025d89c2010-02-27 19:41:43 +0000136 skb = skb_clone(skb, GFP_ATOMIC);
137 if (!skb) {
Herbert Xu025d89c2010-02-27 19:41:43 +0000138 dev->stats.tx_dropped++;
139 return -ENOMEM;
140 }
141
142 __packet_hook(prev, skb);
143 return 0;
144}
145
146static struct net_bridge_port *maybe_deliver(
147 struct net_bridge_port *prev, struct net_bridge_port *p,
148 struct sk_buff *skb,
149 void (*__packet_hook)(const struct net_bridge_port *p,
150 struct sk_buff *skb))
151{
152 int err;
153
154 if (!should_deliver(p, skb))
155 return prev;
156
157 if (!prev)
158 goto out;
159
160 err = deliver_clone(prev, skb, __packet_hook);
161 if (err)
162 return ERR_PTR(err);
163
164out:
165 return p;
166}
167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/* called under bridge lock */
Herbert Xue081e1e2007-09-16 16:20:48 -0700169static void br_flood(struct net_bridge *br, struct sk_buff *skb,
Herbert Xub33084b2010-02-27 19:41:41 +0000170 struct sk_buff *skb0,
171 void (*__packet_hook)(const struct net_bridge_port *p,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400172 struct sk_buff *skb),
173 bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 struct net_bridge_port *p;
176 struct net_bridge_port *prev;
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 prev = NULL;
179
180 list_for_each_entry_rcu(p, &br->port_list, list) {
Vlad Yasevich867a5942013-06-05 10:08:01 -0400181 /* Do not flood unicast traffic to ports that turn it off */
182 if (unicast && !(p->flags & BR_FLOOD))
183 continue;
Herbert Xu025d89c2010-02-27 19:41:43 +0000184 prev = maybe_deliver(prev, p, skb, __packet_hook);
185 if (IS_ERR(prev))
186 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188
Herbert Xub33084b2010-02-27 19:41:41 +0000189 if (!prev)
190 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191
Herbert Xu025d89c2010-02-27 19:41:43 +0000192 if (skb0)
193 deliver_clone(prev, skb, __packet_hook);
194 else
195 __packet_hook(prev, skb);
Herbert Xub33084b2010-02-27 19:41:41 +0000196 return;
197
198out:
199 if (!skb0)
200 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201}
202
203
204/* called with rcu_read_lock */
Vlad Yasevich867a5942013-06-05 10:08:01 -0400205void br_flood_deliver(struct net_bridge *br, struct sk_buff *skb, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
Vlad Yasevich867a5942013-06-05 10:08:01 -0400207 br_flood(br, skb, NULL, __br_deliver, unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208}
209
210/* called under bridge lock */
Herbert Xub33084b2010-02-27 19:41:41 +0000211void br_flood_forward(struct net_bridge *br, struct sk_buff *skb,
Vlad Yasevich867a5942013-06-05 10:08:01 -0400212 struct sk_buff *skb2, bool unicast)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213{
Vlad Yasevich867a5942013-06-05 10:08:01 -0400214 br_flood(br, skb, skb2, __br_forward, unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
Herbert Xu5cb5e942010-02-27 19:41:46 +0000216
217#ifdef CONFIG_BRIDGE_IGMP_SNOOPING
218/* called with rcu_read_lock */
219static void br_multicast_flood(struct net_bridge_mdb_entry *mdst,
220 struct sk_buff *skb, struct sk_buff *skb0,
221 void (*__packet_hook)(
222 const struct net_bridge_port *p,
223 struct sk_buff *skb))
224{
225 struct net_device *dev = BR_INPUT_SKB_CB(skb)->brdev;
226 struct net_bridge *br = netdev_priv(dev);
stephen hemmingerafe01592010-04-27 15:01:07 +0000227 struct net_bridge_port *prev = NULL;
Herbert Xu5cb5e942010-02-27 19:41:46 +0000228 struct net_bridge_port_group *p;
229 struct hlist_node *rp;
230
Eric Dumazete8051682010-11-15 06:38:10 +0000231 rp = rcu_dereference(hlist_first_rcu(&br->router_list));
stephen hemminger83f6a742010-04-27 15:01:06 +0000232 p = mdst ? rcu_dereference(mdst->ports) : NULL;
Herbert Xu5cb5e942010-02-27 19:41:46 +0000233 while (p || rp) {
stephen hemmingerafe01592010-04-27 15:01:07 +0000234 struct net_bridge_port *port, *lport, *rport;
235
Herbert Xu5cb5e942010-02-27 19:41:46 +0000236 lport = p ? p->port : NULL;
237 rport = rp ? hlist_entry(rp, struct net_bridge_port, rlist) :
238 NULL;
239
240 port = (unsigned long)lport > (unsigned long)rport ?
241 lport : rport;
242
243 prev = maybe_deliver(prev, port, skb, __packet_hook);
244 if (IS_ERR(prev))
245 goto out;
246
247 if ((unsigned long)lport >= (unsigned long)port)
stephen hemminger83f6a742010-04-27 15:01:06 +0000248 p = rcu_dereference(p->next);
Herbert Xu5cb5e942010-02-27 19:41:46 +0000249 if ((unsigned long)rport >= (unsigned long)port)
Eric Dumazete8051682010-11-15 06:38:10 +0000250 rp = rcu_dereference(hlist_next_rcu(rp));
Herbert Xu5cb5e942010-02-27 19:41:46 +0000251 }
252
253 if (!prev)
254 goto out;
255
256 if (skb0)
257 deliver_clone(prev, skb, __packet_hook);
258 else
259 __packet_hook(prev, skb);
260 return;
261
262out:
263 if (!skb0)
264 kfree_skb(skb);
265}
266
267/* called with rcu_read_lock */
268void br_multicast_deliver(struct net_bridge_mdb_entry *mdst,
269 struct sk_buff *skb)
270{
271 br_multicast_flood(mdst, skb, NULL, __br_deliver);
272}
273
274/* called with rcu_read_lock */
275void br_multicast_forward(struct net_bridge_mdb_entry *mdst,
276 struct sk_buff *skb, struct sk_buff *skb2)
277{
278 br_multicast_flood(mdst, skb, skb2, __br_forward);
279}
280#endif