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);
L
Linus Torvalds 已提交
32

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

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

48 49 50 51
	skb = br_handle_vlan(br, br_get_vlan_info(br), skb);
	if (!skb)
		return NET_RX_DROP;

L
Linus Torvalds 已提交
52
	indev = skb->dev;
53
	skb->dev = brdev;
L
Linus Torvalds 已提交
54

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

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

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

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

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

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

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

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

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

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

	dst = NULL;
L
Linus Torvalds 已提交
98

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

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

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

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

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

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

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

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

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

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

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

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

178
	if (unlikely(is_link_local_ether_addr(dest))) {
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
		/*
		 * 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 已提交
201 202
			goto drop;

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

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

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

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