br_input.c 5.9 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
#include <linux/export.h>
20
#include <linux/rculist.h>
L
Linus Torvalds 已提交
21 22
#include "br_private.h"

23 24 25 26
/* Hook for brouter */
br_should_route_hook_t __rcu *br_should_route_hook __read_mostly;
EXPORT_SYMBOL(br_should_route_hook);

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

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

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

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

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

60
/* note: already called with rcu_read_lock */
L
Linus Torvalds 已提交
61 62 63
int br_handle_frame_finish(struct sk_buff *skb)
{
	const unsigned char *dest = eth_hdr(skb)->h_dest;
64
	struct net_bridge_port *p = br_port_get_rcu(skb->dev);
65
	struct net_bridge *br;
L
Linus Torvalds 已提交
66
	struct net_bridge_fdb_entry *dst;
67
	struct net_bridge_mdb_entry *mdst;
68
	struct sk_buff *skb2;
69
	bool unicast = true;
70
	u16 vid = 0;
L
Linus Torvalds 已提交
71

72 73 74
	if (!p || p->state == BR_STATE_DISABLED)
		goto drop;

75
	if (!br_allowed_ingress(p->br, nbp_get_vlan_info(p), skb, &vid))
76
		goto out;
77

78
	/* insert into forwarding database after filtering to avoid spoofing */
79
	br = p->br;
80
	if (p->flags & BR_LEARNING)
81
		br_fdb_update(br, p, eth_hdr(skb)->h_source, vid, false);
82

83
	if (!is_broadcast_ether_addr(dest) && is_multicast_ether_addr(dest) &&
84
	    br_multicast_rcv(br, p, skb, vid))
85 86
		goto drop;

87 88
	if (p->state == BR_STATE_LEARNING)
		goto drop;
89

90 91
	BR_INPUT_SKB_CB(skb)->brdev = br->dev;

92 93
	/* The packet skb2 goes to the local host (NULL to skip). */
	skb2 = NULL;
L
Linus Torvalds 已提交
94

95 96 97 98
	if (br->dev->flags & IFF_PROMISC)
		skb2 = skb;

	dst = NULL;
L
Linus Torvalds 已提交
99

100
	if (is_broadcast_ether_addr(dest)) {
101
		skb2 = skb;
102 103
		unicast = false;
	} else if (is_multicast_ether_addr(dest)) {
104
		mdst = br_mdb_get(br, skb, vid);
105
		if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
106
		    br_multicast_querier_exists(br, eth_hdr(skb))) {
107
			if ((mdst && mdst->mglist) ||
108 109 110 111 112 113 114 115 116
			    br_multicast_is_router(br))
				skb2 = skb;
			br_multicast_forward(mdst, skb, skb2);
			skb = NULL;
			if (!skb2)
				goto out;
		} else
			skb2 = skb;

117
		unicast = false;
118
		br->dev->stats.multicast++;
119 120
	} else if ((dst = __br_fdb_get(br, dest, vid)) &&
			dst->is_local) {
121 122 123
		skb2 = skb;
		/* Do not forward the packet since it's local. */
		skb = NULL;
L
Linus Torvalds 已提交
124 125
	}

126
	if (skb) {
127 128
		if (dst) {
			dst->used = jiffies;
129
			br_forward(dst->dst, skb, skb2);
130
		} else
131
			br_flood_forward(br, skb, skb2, unicast);
132
	}
L
Linus Torvalds 已提交
133

134
	if (skb2)
135
		return br_pass_frame_up(skb2);
136

L
Linus Torvalds 已提交
137 138
out:
	return 0;
139 140 141
drop:
	kfree_skb(skb);
	goto out;
L
Linus Torvalds 已提交
142 143
}

144
/* note: already called with rcu_read_lock */
145 146
static int br_handle_local_finish(struct sk_buff *skb)
{
147
	struct net_bridge_port *p = br_port_get_rcu(skb->dev);
148
	u16 vid = 0;
149

150
	br_vlan_get_tag(skb, &vid);
151
	if (p->flags & BR_LEARNING)
152
		br_fdb_update(p->br, p, eth_hdr(skb)->h_source, vid, false);
153 154 155
	return 0;	 /* process further */
}

L
Linus Torvalds 已提交
156
/*
157
 * Return NULL if skb is handled
158
 * note: already called with rcu_read_lock
L
Linus Torvalds 已提交
159
 */
160
rx_handler_result_t br_handle_frame(struct sk_buff **pskb)
L
Linus Torvalds 已提交
161
{
162
	struct net_bridge_port *p;
163
	struct sk_buff *skb = *pskb;
L
Linus Torvalds 已提交
164
	const unsigned char *dest = eth_hdr(skb)->h_dest;
165
	br_should_route_hook_t *rhook;
L
Linus Torvalds 已提交
166

167
	if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
168
		return RX_HANDLER_PASS;
169

L
Linus Torvalds 已提交
170
	if (!is_valid_ether_addr(eth_hdr(skb)->h_source))
171
		goto drop;
L
Linus Torvalds 已提交
172

H
Herbert Xu 已提交
173 174
	skb = skb_share_check(skb, GFP_ATOMIC);
	if (!skb)
175
		return RX_HANDLER_CONSUMED;
H
Herbert Xu 已提交
176

177
	p = br_port_get_rcu(skb->dev);
178

179
	if (unlikely(is_link_local_ether_addr(dest))) {
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
		/*
		 * 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 */
			if (p->br->stp_enabled == BR_NO_STP)
				goto forward;
			break;

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

204 205 206 207 208
		default:
			/* Allow selective forwarding for most other protocols */
			if (p->br->group_fwd_mask & (1u << dest[5]))
				goto forward;
		}
209

210
		/* Deliver packet to local host only */
211
		if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,
212 213 214 215 216 217
			    NULL, br_handle_local_finish)) {
			return RX_HANDLER_CONSUMED; /* consumed by filter */
		} else {
			*pskb = skb;
			return RX_HANDLER_PASS;	/* continue processing */
		}
S
Stephen Hemminger 已提交
218
	}
L
Linus Torvalds 已提交
219

220
forward:
221 222
	switch (p->state) {
	case BR_STATE_FORWARDING:
223
		rhook = rcu_dereference(br_should_route_hook);
224
		if (rhook) {
225 226 227 228
			if ((*rhook)(skb)) {
				*pskb = skb;
				return RX_HANDLER_PASS;
			}
L
Linus Torvalds 已提交
229 230
			dest = eth_hdr(skb)->h_dest;
		}
231 232
		/* fall through */
	case BR_STATE_LEARNING:
233
		if (ether_addr_equal(p->br->dev->dev_addr, dest))
L
Linus Torvalds 已提交
234 235
			skb->pkt_type = PACKET_HOST;

236
		NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
L
Linus Torvalds 已提交
237
			br_handle_frame_finish);
238 239 240 241
		break;
	default:
drop:
		kfree_skb(skb);
L
Linus Torvalds 已提交
242
	}
243
	return RX_HANDLER_CONSUMED;
L
Linus Torvalds 已提交
244
}