blob: 6fd5522df696ce744558a4db82803c34394eed6f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Handle incoming frames
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
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/kernel.h>
16#include <linux/netdevice.h>
17#include <linux/etherdevice.h>
18#include <linux/netfilter_bridge.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040019#include <linux/export.h>
Vlad Yasevicha37b85c2013-02-13 12:00:10 +000020#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include "br_private.h"
22
Eric Dumazeta386f992010-11-15 06:38:11 +000023/* Hook for brouter */
24br_should_route_hook_t __rcu *br_should_route_hook __read_mostly;
25EXPORT_SYMBOL(br_should_route_hook);
26
Herbert Xu68b7c892010-02-27 19:41:40 +000027static int br_pass_frame_up(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028{
Herbert Xu68b7c892010-02-27 19:41:40 +000029 struct net_device *indev, *brdev = BR_INPUT_SKB_CB(skb)->brdev;
stephen hemminger14bb4782010-03-02 13:32:09 +000030 struct net_bridge *br = netdev_priv(brdev);
Li RongQing8f849852014-01-04 13:57:59 +080031 struct pcpu_sw_netstats *brstats = this_cpu_ptr(br->stats);
Vlad Yasevichfc92f742014-03-27 21:51:18 -040032 struct net_port_vlans *pv;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Eric Dumazet406818f2010-06-23 13:00:48 -070034 u64_stats_update_begin(&brstats->syncp);
stephen hemminger14bb4782010-03-02 13:32:09 +000035 brstats->rx_packets++;
36 brstats->rx_bytes += skb->len;
Eric Dumazet406818f2010-06-23 13:00:48 -070037 u64_stats_update_end(&brstats->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
Vlad Yasevich85f46c62013-02-13 12:00:11 +000039 /* Bridge is just like any other port. Make sure the
40 * packet is allowed except in promisc modue when someone
41 * may be running packet capture.
42 */
Vlad Yasevichfc92f742014-03-27 21:51:18 -040043 pv = br_get_vlan_info(br);
Vlad Yasevich85f46c62013-02-13 12:00:11 +000044 if (!(brdev->flags & IFF_PROMISC) &&
Vlad Yasevichfc92f742014-03-27 21:51:18 -040045 !br_allowed_egress(br, pv, skb)) {
Vlad Yasevich85f46c62013-02-13 12:00:11 +000046 kfree_skb(skb);
47 return NET_RX_DROP;
48 }
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 indev = skb->dev;
Pavel Emelyanova339f1c2008-05-21 14:13:47 -070051 skb->dev = brdev;
Vlad Yasevichfc92f742014-03-27 21:51:18 -040052 skb = br_handle_vlan(br, pv, skb);
53 if (!skb)
54 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
Jan Engelhardt713aefa2010-03-23 04:07:21 +010056 return NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, indev, NULL,
Herbert Xu68b7c892010-02-27 19:41:40 +000057 netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
stephen hemmingereeaf61d2010-07-27 08:26:30 +000060/* note: already called with rcu_read_lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070061int br_handle_frame_finish(struct sk_buff *skb)
62{
63 const unsigned char *dest = eth_hdr(skb)->h_dest;
Jiri Pirkof350a0a82010-06-15 06:50:45 +000064 struct net_bridge_port *p = br_port_get_rcu(skb->dev);
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080065 struct net_bridge *br;
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 struct net_bridge_fdb_entry *dst;
Herbert Xuc4fcb782010-02-27 19:41:48 +000067 struct net_bridge_mdb_entry *mdst;
Herbert Xue081e1e2007-09-16 16:20:48 -070068 struct sk_buff *skb2;
Vlad Yasevich867a5942013-06-05 10:08:01 -040069 bool unicast = true;
Vlad Yasevich78851982013-02-13 12:00:14 +000070 u16 vid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080072 if (!p || p->state == BR_STATE_DISABLED)
73 goto drop;
Stephen Hemminger85967bb2005-05-29 14:15:55 -070074
Vlad Yasevich78851982013-02-13 12:00:14 +000075 if (!br_allowed_ingress(p->br, nbp_get_vlan_info(p), skb, &vid))
Toshiaki Makitaeb707612014-04-09 17:00:30 +090076 goto out;
Vlad Yasevicha37b85c2013-02-13 12:00:10 +000077
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080078 /* insert into forwarding database after filtering to avoid spoofing */
79 br = p->br;
Vlad Yasevich9ba18892013-06-05 10:08:00 -040080 if (p->flags & BR_LEARNING)
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +090081 br_fdb_update(br, p, eth_hdr(skb)->h_source, vid, false);
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080082
Herbert Xu44661462011-07-05 13:58:33 +000083 if (!is_broadcast_ether_addr(dest) && is_multicast_ether_addr(dest) &&
Vlad Yasevich06499092013-10-28 15:45:07 -040084 br_multicast_rcv(br, p, skb, vid))
Herbert Xuc4fcb782010-02-27 19:41:48 +000085 goto drop;
86
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080087 if (p->state == BR_STATE_LEARNING)
88 goto drop;
Stephen Hemminger0e5eaba2005-12-21 19:00:18 -080089
Herbert Xu68b7c892010-02-27 19:41:40 +000090 BR_INPUT_SKB_CB(skb)->brdev = br->dev;
91
Herbert Xue081e1e2007-09-16 16:20:48 -070092 /* The packet skb2 goes to the local host (NULL to skip). */
93 skb2 = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Herbert Xue081e1e2007-09-16 16:20:48 -070095 if (br->dev->flags & IFF_PROMISC)
96 skb2 = skb;
97
98 dst = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Vlad Yasevich867a5942013-06-05 10:08:01 -0400100 if (is_broadcast_ether_addr(dest)) {
Herbert Xu44661462011-07-05 13:58:33 +0000101 skb2 = skb;
Vlad Yasevich867a5942013-06-05 10:08:01 -0400102 unicast = false;
103 } else if (is_multicast_ether_addr(dest)) {
Cong Wangfbca58a2013-03-07 03:05:33 +0000104 mdst = br_mdb_get(br, skb, vid);
Linus Lüssingb00589a2013-08-01 01:06:20 +0200105 if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
Linus Lüssingcc0fdd82013-08-30 17:28:17 +0200106 br_multicast_querier_exists(br, eth_hdr(skb))) {
Herbert Xu8a870172011-02-12 01:05:42 -0800107 if ((mdst && mdst->mglist) ||
Herbert Xuc4fcb782010-02-27 19:41:48 +0000108 br_multicast_is_router(br))
109 skb2 = skb;
110 br_multicast_forward(mdst, skb, skb2);
111 skb = NULL;
112 if (!skb2)
113 goto out;
114 } else
115 skb2 = skb;
116
Vlad Yasevich867a5942013-06-05 10:08:01 -0400117 unicast = false;
Pavel Emelyanova339f1c2008-05-21 14:13:47 -0700118 br->dev->stats.multicast++;
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000119 } else if ((dst = __br_fdb_get(br, dest, vid)) &&
120 dst->is_local) {
Herbert Xue081e1e2007-09-16 16:20:48 -0700121 skb2 = skb;
122 /* Do not forward the packet since it's local. */
123 skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Herbert Xue081e1e2007-09-16 16:20:48 -0700126 if (skb) {
stephen hemminger7cd88612011-04-04 14:03:28 +0000127 if (dst) {
128 dst->used = jiffies;
Michael Braun7f7708f2010-03-16 00:26:22 -0700129 br_forward(dst->dst, skb, skb2);
stephen hemminger7cd88612011-04-04 14:03:28 +0000130 } else
Vlad Yasevich867a5942013-06-05 10:08:01 -0400131 br_flood_forward(br, skb, skb2, unicast);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132 }
133
Herbert Xu87557c12010-02-27 19:41:39 +0000134 if (skb2)
Herbert Xu68b7c892010-02-27 19:41:40 +0000135 return br_pass_frame_up(skb2);
Herbert Xu87557c12010-02-27 19:41:39 +0000136
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137out:
138 return 0;
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -0800139drop:
140 kfree_skb(skb);
141 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200143EXPORT_SYMBOL_GPL(br_handle_frame_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
stephen hemmingereeaf61d2010-07-27 08:26:30 +0000145/* note: already called with rcu_read_lock */
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800146static int br_handle_local_finish(struct sk_buff *skb)
147{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000148 struct net_bridge_port *p = br_port_get_rcu(skb->dev);
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000149 u16 vid = 0;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800150
Toshiaki Makitae0d79682014-05-26 15:15:53 +0900151 /* check if vlan is allowed, to avoid spoofing */
152 if (p->flags & BR_LEARNING && br_should_learn(p, skb, &vid))
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900153 br_fdb_update(p->br, p, eth_hdr(skb)->h_source, vid, false);
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800154 return 0; /* process further */
155}
156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
Stephen Hemminger6229e362007-03-21 13:38:47 -0700158 * Return NULL if skb is handled
stephen hemmingereeaf61d2010-07-27 08:26:30 +0000159 * note: already called with rcu_read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 */
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000161rx_handler_result_t br_handle_frame(struct sk_buff **pskb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162{
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000163 struct net_bridge_port *p;
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000164 struct sk_buff *skb = *pskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165 const unsigned char *dest = eth_hdr(skb)->h_dest;
Eric Dumazeta386f992010-11-15 06:38:11 +0000166 br_should_route_hook_t *rhook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Simon Hormanc2368e72010-08-22 17:35:32 +0000168 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000169 return RX_HANDLER_PASS;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000170
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 if (!is_valid_ether_addr(eth_hdr(skb)->h_source))
Stephen Hemminger467aea02007-03-21 13:42:06 -0700172 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Herbert Xu7b995652007-10-14 00:39:01 -0700174 skb = skb_share_check(skb, GFP_ATOMIC);
175 if (!skb)
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000176 return RX_HANDLER_CONSUMED;
Herbert Xu7b995652007-10-14 00:39:01 -0700177
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000178 p = br_port_get_rcu(skb->dev);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000179
Ben Hutchings46acc462012-11-01 09:11:11 +0000180 if (unlikely(is_link_local_ether_addr(dest))) {
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900181 u16 fwd_mask = p->br->group_fwd_mask_required;
182
stephen hemminger515853c2011-10-03 18:14:46 +0000183 /*
184 * See IEEE 802.1D Table 7-10 Reserved addresses
185 *
186 * Assignment Value
187 * Bridge Group Address 01-80-C2-00-00-00
188 * (MAC Control) 802.3 01-80-C2-00-00-01
189 * (Link Aggregation) 802.3 01-80-C2-00-00-02
190 * 802.1X PAE address 01-80-C2-00-00-03
191 *
192 * 802.1AB LLDP 01-80-C2-00-00-0E
193 *
194 * Others reserved for future standardization
195 */
196 switch (dest[5]) {
197 case 0x00: /* Bridge Group Address */
198 /* If STP is turned off,
199 then must forward to keep loop detection */
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900200 if (p->br->stp_enabled == BR_NO_STP ||
201 fwd_mask & (1u << dest[5]))
stephen hemminger515853c2011-10-03 18:14:46 +0000202 goto forward;
203 break;
204
205 case 0x01: /* IEEE MAC (Pause) */
Stephen Hemminger2111f8b2007-04-25 22:05:55 -0700206 goto drop;
207
stephen hemminger515853c2011-10-03 18:14:46 +0000208 default:
209 /* Allow selective forwarding for most other protocols */
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900210 fwd_mask |= p->br->group_fwd_mask;
211 if (fwd_mask & (1u << dest[5]))
stephen hemminger515853c2011-10-03 18:14:46 +0000212 goto forward;
213 }
Stephen Hemmingera598f6a2009-05-15 06:10:13 +0000214
stephen hemminger515853c2011-10-03 18:14:46 +0000215 /* Deliver packet to local host only */
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100216 if (NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, skb, skb->dev,
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000217 NULL, br_handle_local_finish)) {
218 return RX_HANDLER_CONSUMED; /* consumed by filter */
219 } else {
220 *pskb = skb;
221 return RX_HANDLER_PASS; /* continue processing */
222 }
Stephen Hemminger2111f8b2007-04-25 22:05:55 -0700223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224
Stephen Hemmingera598f6a2009-05-15 06:10:13 +0000225forward:
Stephen Hemminger467aea02007-03-21 13:42:06 -0700226 switch (p->state) {
227 case BR_STATE_FORWARDING:
Pavel Emelyanov82de3822007-11-29 23:58:58 +1100228 rhook = rcu_dereference(br_should_route_hook);
Eric Dumazeta386f992010-11-15 06:38:11 +0000229 if (rhook) {
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000230 if ((*rhook)(skb)) {
231 *pskb = skb;
232 return RX_HANDLER_PASS;
233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 dest = eth_hdr(skb)->h_dest;
235 }
Stephen Hemminger467aea02007-03-21 13:42:06 -0700236 /* fall through */
237 case BR_STATE_LEARNING:
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000238 if (ether_addr_equal(p->br->dev->dev_addr, dest))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239 skb->pkt_type = PACKET_HOST;
240
Jan Engelhardt713aefa2010-03-23 04:07:21 +0100241 NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 br_handle_frame_finish);
Stephen Hemminger467aea02007-03-21 13:42:06 -0700243 break;
244 default:
245drop:
246 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000248 return RX_HANDLER_CONSUMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}