br_input.c 7.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 *	Handle incoming frames
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Lennert Buytenhek		<buytenh@gnu.org>
 *
 *	This program is free software; you can redistribute it and/or
 *	modify it under the terms of the GNU General Public License
 *	as published by the Free Software Foundation; either version
 *	2 of the License, or (at your option) any later version.
 */

14
#include <linux/slab.h>
L
Linus Torvalds 已提交
15 16 17 18
#include <linux/kernel.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/netfilter_bridge.h>
19 20
#include <linux/neighbour.h>
#include <net/arp.h>
21
#include <linux/export.h>
22
#include <linux/rculist.h>
L
Linus Torvalds 已提交
23 24
#include "br_private.h"

25 26 27 28
/* Hook for brouter */
br_should_route_hook_t __rcu *br_should_route_hook __read_mostly;
EXPORT_SYMBOL(br_should_route_hook);

29
static int br_pass_frame_up(struct sk_buff *skb)
L
Linus Torvalds 已提交
30
{
31
	struct net_device *indev, *brdev = BR_INPUT_SKB_CB(skb)->brdev;
32
	struct net_bridge *br = netdev_priv(brdev);
33
	struct pcpu_sw_netstats *brstats = this_cpu_ptr(br->stats);
34
	struct net_port_vlans *pv;
L
Linus Torvalds 已提交
35

E
Eric Dumazet 已提交
36
	u64_stats_update_begin(&brstats->syncp);
37 38
	brstats->rx_packets++;
	brstats->rx_bytes += skb->len;
E
Eric Dumazet 已提交
39
	u64_stats_update_end(&brstats->syncp);
L
Linus Torvalds 已提交
40

41 42 43 44
	/* Bridge is just like any other port.  Make sure the
	 * packet is allowed except in promisc modue when someone
	 * may be running packet capture.
	 */
45
	pv = br_get_vlan_info(br);
46
	if (!(brdev->flags & IFF_PROMISC) &&
47
	    !br_allowed_egress(br, pv, skb)) {
48 49 50 51
		kfree_skb(skb);
		return NET_RX_DROP;
	}

L
Linus Torvalds 已提交
52
	indev = skb->dev;
53
	skb->dev = brdev;
54 55 56
	skb = br_handle_vlan(br, pv, skb);
	if (!skb)
		return NET_RX_DROP;
L
Linus Torvalds 已提交
57

58
	return NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, indev, NULL,
59
		       netif_receive_skb);
L
Linus Torvalds 已提交
60 61
}

62
static void br_do_proxy_arp(struct sk_buff *skb, struct net_bridge *br,
63
			    u16 vid, struct net_bridge_port *p)
64 65 66 67 68 69 70
{
	struct net_device *dev = br->dev;
	struct neighbour *n;
	struct arphdr *parp;
	u8 *arpptr, *sha;
	__be32 sip, tip;

71 72
	BR_INPUT_SKB_CB(skb)->proxyarp_replied = false;

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
	if (dev->flags & IFF_NOARP)
		return;

	if (!pskb_may_pull(skb, arp_hdr_len(dev))) {
		dev->stats.tx_dropped++;
		return;
	}
	parp = arp_hdr(skb);

	if (parp->ar_pro != htons(ETH_P_IP) ||
	    parp->ar_op != htons(ARPOP_REQUEST) ||
	    parp->ar_hln != dev->addr_len ||
	    parp->ar_pln != 4)
		return;

	arpptr = (u8 *)parp + sizeof(struct arphdr);
	sha = arpptr;
	arpptr += dev->addr_len;	/* sha */
	memcpy(&sip, arpptr, sizeof(sip));
	arpptr += sizeof(sip);
	arpptr += dev->addr_len;	/* tha */
	memcpy(&tip, arpptr, sizeof(tip));

	if (ipv4_is_loopback(tip) ||
	    ipv4_is_multicast(tip))
		return;

	n = neigh_lookup(&arp_tbl, &tip, dev);
	if (n) {
		struct net_bridge_fdb_entry *f;

		if (!(n->nud_state & NUD_VALID)) {
			neigh_release(n);
			return;
		}

		f = __br_fdb_get(br, n->ha, vid);
110 111
		if (f && ((p->flags & BR_PROXYARP) ||
			  (f->dst && (f->dst->flags & BR_PROXYARP_WIFI)))) {
112 113
			arp_send(ARPOP_REPLY, ETH_P_ARP, sip, skb->dev, tip,
				 sha, n->ha, sha);
114 115
			BR_INPUT_SKB_CB(skb)->proxyarp_replied = true;
		}
116 117 118 119 120

		neigh_release(n);
	}
}

121
/* note: already called with rcu_read_lock */
L
Linus Torvalds 已提交
122 123 124
int br_handle_frame_finish(struct sk_buff *skb)
{
	const unsigned char *dest = eth_hdr(skb)->h_dest;
125
	struct net_bridge_port *p = br_port_get_rcu(skb->dev);
126
	struct net_bridge *br;
L
Linus Torvalds 已提交
127
	struct net_bridge_fdb_entry *dst;
128
	struct net_bridge_mdb_entry *mdst;
129
	struct sk_buff *skb2;
130
	bool unicast = true;
131
	u16 vid = 0;
L
Linus Torvalds 已提交
132

133 134 135
	if (!p || p->state == BR_STATE_DISABLED)
		goto drop;

136
	if (!br_allowed_ingress(p->br, nbp_get_vlan_info(p), skb, &vid))
137
		goto out;
138

139
	/* insert into forwarding database after filtering to avoid spoofing */
140
	br = p->br;
141
	if (p->flags & BR_LEARNING)
142
		br_fdb_update(br, p, eth_hdr(skb)->h_source, vid, false);
143

144
	if (!is_broadcast_ether_addr(dest) && is_multicast_ether_addr(dest) &&
145
	    br_multicast_rcv(br, p, skb, vid))
146 147
		goto drop;

148 149
	if (p->state == BR_STATE_LEARNING)
		goto drop;
150

151 152
	BR_INPUT_SKB_CB(skb)->brdev = br->dev;

153 154
	/* The packet skb2 goes to the local host (NULL to skip). */
	skb2 = NULL;
L
Linus Torvalds 已提交
155

156 157 158 159
	if (br->dev->flags & IFF_PROMISC)
		skb2 = skb;

	dst = NULL;
L
Linus Torvalds 已提交
160

161 162
	if (IS_ENABLED(CONFIG_INET) && skb->protocol == htons(ETH_P_ARP))
		br_do_proxy_arp(skb, br, vid, p);
163

164
	if (is_broadcast_ether_addr(dest)) {
165
		skb2 = skb;
166 167
		unicast = false;
	} else if (is_multicast_ether_addr(dest)) {
168
		mdst = br_mdb_get(br, skb, vid);
169
		if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
170
		    br_multicast_querier_exists(br, eth_hdr(skb))) {
171
			if ((mdst && mdst->mglist) ||
172 173 174 175 176 177 178 179 180
			    br_multicast_is_router(br))
				skb2 = skb;
			br_multicast_forward(mdst, skb, skb2);
			skb = NULL;
			if (!skb2)
				goto out;
		} else
			skb2 = skb;

181
		unicast = false;
182
		br->dev->stats.multicast++;
183 184
	} else if ((dst = __br_fdb_get(br, dest, vid)) &&
			dst->is_local) {
185 186 187
		skb2 = skb;
		/* Do not forward the packet since it's local. */
		skb = NULL;
L
Linus Torvalds 已提交
188 189
	}

190
	if (skb) {
191 192
		if (dst) {
			dst->used = jiffies;
193
			br_forward(dst->dst, skb, skb2);
194
		} else
195
			br_flood_forward(br, skb, skb2, unicast);
196
	}
L
Linus Torvalds 已提交
197

198
	if (skb2)
199
		return br_pass_frame_up(skb2);
200

L
Linus Torvalds 已提交
201 202
out:
	return 0;
203 204 205
drop:
	kfree_skb(skb);
	goto out;
L
Linus Torvalds 已提交
206
}
207
EXPORT_SYMBOL_GPL(br_handle_frame_finish);
L
Linus Torvalds 已提交
208

209
/* note: already called with rcu_read_lock */
210 211
static int br_handle_local_finish(struct sk_buff *skb)
{
212
	struct net_bridge_port *p = br_port_get_rcu(skb->dev);
213
	u16 vid = 0;
214

215 216
	/* check if vlan is allowed, to avoid spoofing */
	if (p->flags & BR_LEARNING && br_should_learn(p, skb, &vid))
217
		br_fdb_update(p->br, p, eth_hdr(skb)->h_source, vid, false);
218 219 220
	return 0;	 /* process further */
}

L
Linus Torvalds 已提交
221
/*
222
 * Return NULL if skb is handled
223
 * note: already called with rcu_read_lock
L
Linus Torvalds 已提交
224
 */
225
rx_handler_result_t br_handle_frame(struct sk_buff **pskb)
L
Linus Torvalds 已提交
226
{
227
	struct net_bridge_port *p;
228
	struct sk_buff *skb = *pskb;
L
Linus Torvalds 已提交
229
	const unsigned char *dest = eth_hdr(skb)->h_dest;
230
	br_should_route_hook_t *rhook;
L
Linus Torvalds 已提交
231

232
	if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
233
		return RX_HANDLER_PASS;
234

L
Linus Torvalds 已提交
235
	if (!is_valid_ether_addr(eth_hdr(skb)->h_source))
236
		goto drop;
L
Linus Torvalds 已提交
237

H
Herbert Xu 已提交
238 239
	skb = skb_share_check(skb, GFP_ATOMIC);
	if (!skb)
240
		return RX_HANDLER_CONSUMED;
H
Herbert Xu 已提交
241

242
	p = br_port_get_rcu(skb->dev);
243

244
	if (unlikely(is_link_local_ether_addr(dest))) {
245 246
		u16 fwd_mask = p->br->group_fwd_mask_required;

247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
		/*
		 * See IEEE 802.1D Table 7-10 Reserved addresses
		 *
		 * Assignment		 		Value
		 * Bridge Group Address		01-80-C2-00-00-00
		 * (MAC Control) 802.3		01-80-C2-00-00-01
		 * (Link Aggregation) 802.3	01-80-C2-00-00-02
		 * 802.1X PAE address		01-80-C2-00-00-03
		 *
		 * 802.1AB LLDP 		01-80-C2-00-00-0E
		 *
		 * Others reserved for future standardization
		 */
		switch (dest[5]) {
		case 0x00:	/* Bridge Group Address */
			/* If STP is turned off,
			   then must forward to keep loop detection */
264 265
			if (p->br->stp_enabled == BR_NO_STP ||
			    fwd_mask & (1u << dest[5]))
266 267 268 269
				goto forward;
			break;

		case 0x01:	/* IEEE MAC (Pause) */
S
Stephen Hemminger 已提交
270 271
			goto drop;

272 273
		default:
			/* Allow selective forwarding for most other protocols */
274 275
			fwd_mask |= p->br->group_fwd_mask;
			if (fwd_mask & (1u << dest[5]))
276 277
				goto forward;
		}
278

279
		/* Deliver packet to local host only */
280
		if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,
281 282 283 284 285 286
			    NULL, br_handle_local_finish)) {
			return RX_HANDLER_CONSUMED; /* consumed by filter */
		} else {
			*pskb = skb;
			return RX_HANDLER_PASS;	/* continue processing */
		}
S
Stephen Hemminger 已提交
287
	}
L
Linus Torvalds 已提交
288

289
forward:
290 291
	switch (p->state) {
	case BR_STATE_FORWARDING:
292
		rhook = rcu_dereference(br_should_route_hook);
293
		if (rhook) {
294 295 296 297
			if ((*rhook)(skb)) {
				*pskb = skb;
				return RX_HANDLER_PASS;
			}
L
Linus Torvalds 已提交
298 299
			dest = eth_hdr(skb)->h_dest;
		}
300 301
		/* fall through */
	case BR_STATE_LEARNING:
302
		if (ether_addr_equal(p->br->dev->dev_addr, dest))
L
Linus Torvalds 已提交
303 304
			skb->pkt_type = PACKET_HOST;

305
		NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
L
Linus Torvalds 已提交
306
			br_handle_frame_finish);
307 308 309 310
		break;
	default:
drop:
		kfree_skb(skb);
L
Linus Torvalds 已提交
311
	}
312
	return RX_HANDLER_CONSUMED;
L
Linus Torvalds 已提交
313
}