blob: 5ea7e56119c13876a8726ffee2e9dc43ce73406f [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>
Kyeyoon Park95850112014-10-23 14:49:17 -070019#include <linux/neighbour.h>
20#include <net/arp.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040021#include <linux/export.h>
Vlad Yasevicha37b85c2013-02-13 12:00:10 +000022#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include "br_private.h"
Roopa Prabhu11538d02017-01-31 22:59:55 -080024#include "br_private_tunnel.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Eric Dumazeta386f992010-11-15 06:38:11 +000026/* Hook for brouter */
27br_should_route_hook_t __rcu *br_should_route_hook __read_mostly;
28EXPORT_SYMBOL(br_should_route_hook);
29
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -050030static int
31br_netif_receive_skb(struct net *net, struct sock *sk, struct sk_buff *skb)
Eric W. Biederman04eb4482015-09-15 20:04:15 -050032{
Florian Westphala13b2082017-03-13 17:38:17 +010033 br_drop_fake_rtable(skb);
Eric W. Biederman04eb4482015-09-15 20:04:15 -050034 return netif_receive_skb(skb);
35}
36
Herbert Xu68b7c892010-02-27 19:41:40 +000037static int br_pass_frame_up(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070038{
Herbert Xu68b7c892010-02-27 19:41:40 +000039 struct net_device *indev, *brdev = BR_INPUT_SKB_CB(skb)->brdev;
stephen hemminger14bb4782010-03-02 13:32:09 +000040 struct net_bridge *br = netdev_priv(brdev);
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020041 struct net_bridge_vlan_group *vg;
Li RongQing8f849852014-01-04 13:57:59 +080042 struct pcpu_sw_netstats *brstats = this_cpu_ptr(br->stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Eric Dumazet406818f2010-06-23 13:00:48 -070044 u64_stats_update_begin(&brstats->syncp);
stephen hemminger14bb4782010-03-02 13:32:09 +000045 brstats->rx_packets++;
46 brstats->rx_bytes += skb->len;
Eric Dumazet406818f2010-06-23 13:00:48 -070047 u64_stats_update_end(&brstats->syncp);
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +020049 vg = br_vlan_group_rcu(br);
Vlad Yasevich85f46c62013-02-13 12:00:11 +000050 /* Bridge is just like any other port. Make sure the
51 * packet is allowed except in promisc modue when someone
52 * may be running packet capture.
53 */
54 if (!(brdev->flags & IFF_PROMISC) &&
Nikolay Aleksandrov2594e9062015-09-25 19:00:11 +020055 !br_allowed_egress(vg, skb)) {
Vlad Yasevich85f46c62013-02-13 12:00:11 +000056 kfree_skb(skb);
57 return NET_RX_DROP;
58 }
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 indev = skb->dev;
Pavel Emelyanova339f1c2008-05-21 14:13:47 -070061 skb->dev = brdev;
Roopa Prabhu11538d02017-01-31 22:59:55 -080062 skb = br_handle_vlan(br, NULL, vg, skb);
Vlad Yasevichfc92f742014-03-27 21:51:18 -040063 if (!skb)
64 return NET_RX_DROP;
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +020065 /* update the multicast stats if the packet is IGMP/MLD */
Nikolay Aleksandrova65056e2016-07-06 12:12:21 -070066 br_multicast_count(br, NULL, skb, br_multicast_igmp_type(skb),
Nikolay Aleksandrov1080ab92016-06-28 16:57:06 +020067 BR_MCAST_DIR_TX);
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Eric W. Biederman29a26a52015-09-15 20:04:16 -050069 return NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN,
70 dev_net(indev), NULL, skb, indev, NULL,
Eric W. Biederman04eb4482015-09-15 20:04:15 -050071 br_netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072}
73
stephen hemmingereeaf61d2010-07-27 08:26:30 +000074/* note: already called with rcu_read_lock */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -050075int br_handle_frame_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
Jiri Pirkof350a0a82010-06-15 06:50:45 +000077 struct net_bridge_port *p = br_port_get_rcu(skb->dev);
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +020078 enum br_pkt_type pkt_type = BR_PKT_UNICAST;
Nikolay Aleksandrov46c07722016-07-14 06:09:59 +030079 struct net_bridge_fdb_entry *dst = NULL;
Herbert Xuc4fcb782010-02-27 19:41:48 +000080 struct net_bridge_mdb_entry *mdst;
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +020081 bool local_rcv, mcast_hit = false;
Nikolay Aleksandrov31a45622017-07-13 16:09:10 +030082 const unsigned char *dest;
Nikolay Aleksandrov46c07722016-07-14 06:09:59 +030083 struct net_bridge *br;
Vlad Yasevich78851982013-02-13 12:00:14 +000084 u16 vid = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080086 if (!p || p->state == BR_STATE_DISABLED)
87 goto drop;
Stephen Hemminger85967bb2005-05-29 14:15:55 -070088
Nikolay Aleksandrov907b1e62015-10-12 21:47:02 +020089 if (!br_allowed_ingress(p->br, nbp_vlan_group_rcu(p), skb, &vid))
Toshiaki Makitaeb707612014-04-09 17:00:30 +090090 goto out;
Vlad Yasevicha37b85c2013-02-13 12:00:10 +000091
Ido Schimmel6bc506b2016-08-25 18:42:37 +020092 nbp_switchdev_frame_mark(p, skb);
93
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080094 /* insert into forwarding database after filtering to avoid spoofing */
95 br = p->br;
Vlad Yasevich9ba18892013-06-05 10:08:00 -040096 if (p->flags & BR_LEARNING)
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +090097 br_fdb_update(br, p, eth_hdr(skb)->h_source, vid, false);
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -080098
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +020099 local_rcv = !!(br->dev->flags & IFF_PROMISC);
Nikolay Aleksandrov31a45622017-07-13 16:09:10 +0300100 dest = eth_hdr(skb)->h_dest;
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200101 if (is_multicast_ether_addr(dest)) {
102 /* by definition the broadcast is also a multicast address */
103 if (is_broadcast_ether_addr(dest)) {
104 pkt_type = BR_PKT_BROADCAST;
105 local_rcv = true;
106 } else {
107 pkt_type = BR_PKT_MULTICAST;
108 if (br_multicast_rcv(br, p, skb, vid))
109 goto drop;
110 }
111 }
Herbert Xuc4fcb782010-02-27 19:41:48 +0000112
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -0800113 if (p->state == BR_STATE_LEARNING)
114 goto drop;
Stephen Hemminger0e5eaba2005-12-21 19:00:18 -0800115
Herbert Xu68b7c892010-02-27 19:41:40 +0000116 BR_INPUT_SKB_CB(skb)->brdev = br->dev;
Nikolay Aleksandrov7d850ab2018-05-24 11:56:48 +0300117 BR_INPUT_SKB_CB(skb)->src_port_isolated = !!(p->flags & BR_ISOLATED);
Herbert Xu68b7c892010-02-27 19:41:40 +0000118
Roopa Prabhu057658c2017-10-06 22:12:38 -0700119 if (IS_ENABLED(CONFIG_INET) &&
120 (skb->protocol == htons(ETH_P_ARP) ||
121 skb->protocol == htons(ETH_P_RARP))) {
122 br_do_proxy_suppress_arp(skb, br, vid, p);
Roopa Prabhued842fa2017-10-06 22:12:39 -0700123 } else if (IS_ENABLED(CONFIG_IPV6) &&
124 skb->protocol == htons(ETH_P_IPV6) &&
Nikolay Aleksandrovc69c2cd2018-09-26 17:01:05 +0300125 br_opt_get(br, BROPT_NEIGH_SUPPRESS_ENABLED) &&
Roopa Prabhued842fa2017-10-06 22:12:39 -0700126 pskb_may_pull(skb, sizeof(struct ipv6hdr) +
127 sizeof(struct nd_msg)) &&
128 ipv6_hdr(skb)->nexthdr == IPPROTO_ICMPV6) {
129 struct nd_msg *msg, _msg;
130
131 msg = br_is_nd_neigh_msg(skb, &_msg);
132 if (msg)
133 br_do_suppress_nd(skb, br, vid, p, msg);
Roopa Prabhu057658c2017-10-06 22:12:38 -0700134 }
Kyeyoon Park95850112014-10-23 14:49:17 -0700135
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200136 switch (pkt_type) {
137 case BR_PKT_MULTICAST:
Cong Wangfbca58a2013-03-07 03:05:33 +0000138 mdst = br_mdb_get(br, skb, vid);
Linus Lüssingb00589a2013-08-01 01:06:20 +0200139 if ((mdst || BR_INPUT_SKB_CB_MROUTERS_ONLY(skb)) &&
Linus Lüssingcc0fdd82013-08-30 17:28:17 +0200140 br_multicast_querier_exists(br, eth_hdr(skb))) {
Andrew Lunnff0fd342017-11-09 23:10:57 +0100141 if ((mdst && mdst->host_joined) ||
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300142 br_multicast_is_router(br)) {
Nikolay Aleksandrovb35c5f62016-07-14 06:10:01 +0300143 local_rcv = true;
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300144 br->dev->stats.multicast++;
145 }
146 mcast_hit = true;
Nikolay Aleksandrov46c07722016-07-14 06:09:59 +0300147 } else {
Nikolay Aleksandrovb35c5f62016-07-14 06:10:01 +0300148 local_rcv = true;
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300149 br->dev->stats.multicast++;
Nikolay Aleksandrov46c07722016-07-14 06:09:59 +0300150 }
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200151 break;
152 case BR_PKT_UNICAST:
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100153 dst = br_fdb_find_rcu(br, dest, vid);
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200154 default:
155 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 }
157
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300158 if (dst) {
stephen hemmingerca6d4482017-02-07 08:46:46 -0800159 unsigned long now = jiffies;
160
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200161 if (dst->is_local)
162 return br_pass_frame_up(skb);
163
stephen hemmingerca6d4482017-02-07 08:46:46 -0800164 if (now != dst->used)
165 dst->used = now;
Nikolay Aleksandrov37b090e2016-07-14 06:10:02 +0300166 br_forward(dst->dst, skb, local_rcv, false);
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300167 } else {
168 if (!mcast_hit)
Nikolay Aleksandrov8addd5e2016-08-31 15:36:51 +0200169 br_flood(br, skb, pkt_type, local_rcv, false);
Nikolay Aleksandrove151aab2016-07-14 06:10:00 +0300170 else
Nikolay Aleksandrov37b090e2016-07-14 06:10:02 +0300171 br_multicast_flood(mdst, skb, local_rcv, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
173
Nikolay Aleksandrovb35c5f62016-07-14 06:10:01 +0300174 if (local_rcv)
175 return br_pass_frame_up(skb);
Herbert Xu87557c12010-02-27 19:41:39 +0000176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177out:
178 return 0;
Stephen Hemmingerb3f1be42006-02-09 17:08:52 -0800179drop:
180 kfree_skb(skb);
181 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182}
Pablo Neira Ayuso34666d42014-09-18 11:29:03 +0200183EXPORT_SYMBOL_GPL(br_handle_frame_finish);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184
Ido Schimmel56fae4042016-06-07 12:06:58 +0300185static void __br_handle_local_finish(struct sk_buff *skb)
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800186{
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000187 struct net_bridge_port *p = br_port_get_rcu(skb->dev);
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000188 u16 vid = 0;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800189
Toshiaki Makitae0d79682014-05-26 15:15:53 +0900190 /* check if vlan is allowed, to avoid spoofing */
Nikolay Aleksandrov70e42722018-11-24 04:34:21 +0200191 if ((p->flags & BR_LEARNING) &&
192 !br_opt_get(p->br, BROPT_NO_LL_LEARN) &&
193 br_should_learn(p, skb, &vid))
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900194 br_fdb_update(p->br, p, eth_hdr(skb)->h_source, vid, false);
Ido Schimmel56fae4042016-06-07 12:06:58 +0300195}
196
197/* note: already called with rcu_read_lock */
198static int br_handle_local_finish(struct net *net, struct sock *sk, struct sk_buff *skb)
199{
200 struct net_bridge_port *p = br_port_get_rcu(skb->dev);
201
202 __br_handle_local_finish(skb);
Florian Westphal8626c562016-03-12 11:14:42 +0100203
204 BR_INPUT_SKB_CB(skb)->brdev = p->br->dev;
205 br_pass_frame_up(skb);
206 return 0;
Stephen Hemmingercf0f02d2006-03-20 22:59:06 -0800207}
208
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209/*
Stephen Hemminger6229e362007-03-21 13:38:47 -0700210 * Return NULL if skb is handled
stephen hemmingereeaf61d2010-07-27 08:26:30 +0000211 * note: already called with rcu_read_lock
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 */
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000213rx_handler_result_t br_handle_frame(struct sk_buff **pskb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000215 struct net_bridge_port *p;
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000216 struct sk_buff *skb = *pskb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 const unsigned char *dest = eth_hdr(skb)->h_dest;
Eric Dumazeta386f992010-11-15 06:38:11 +0000218 br_should_route_hook_t *rhook;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Simon Hormanc2368e72010-08-22 17:35:32 +0000220 if (unlikely(skb->pkt_type == PACKET_LOOPBACK))
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000221 return RX_HANDLER_PASS;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000222
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (!is_valid_ether_addr(eth_hdr(skb)->h_source))
Stephen Hemminger467aea02007-03-21 13:42:06 -0700224 goto drop;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Herbert Xu7b995652007-10-14 00:39:01 -0700226 skb = skb_share_check(skb, GFP_ATOMIC);
227 if (!skb)
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000228 return RX_HANDLER_CONSUMED;
Herbert Xu7b995652007-10-14 00:39:01 -0700229
Jiri Pirkof350a0a82010-06-15 06:50:45 +0000230 p = br_port_get_rcu(skb->dev);
Roopa Prabhu11538d02017-01-31 22:59:55 -0800231 if (p->flags & BR_VLAN_TUNNEL) {
232 if (br_handle_ingress_vlan_tunnel(skb, p,
233 nbp_vlan_group_rcu(p)))
234 goto drop;
235 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +0000236
Ben Hutchings46acc462012-11-01 09:11:11 +0000237 if (unlikely(is_link_local_ether_addr(dest))) {
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900238 u16 fwd_mask = p->br->group_fwd_mask_required;
239
stephen hemminger515853c2011-10-03 18:14:46 +0000240 /*
241 * See IEEE 802.1D Table 7-10 Reserved addresses
242 *
243 * Assignment Value
244 * Bridge Group Address 01-80-C2-00-00-00
245 * (MAC Control) 802.3 01-80-C2-00-00-01
246 * (Link Aggregation) 802.3 01-80-C2-00-00-02
247 * 802.1X PAE address 01-80-C2-00-00-03
248 *
249 * 802.1AB LLDP 01-80-C2-00-00-0E
250 *
251 * Others reserved for future standardization
252 */
Nikolay Aleksandrov5af48b52017-09-27 16:12:44 +0300253 fwd_mask |= p->group_fwd_mask;
stephen hemminger515853c2011-10-03 18:14:46 +0000254 switch (dest[5]) {
255 case 0x00: /* Bridge Group Address */
256 /* If STP is turned off,
257 then must forward to keep loop detection */
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900258 if (p->br->stp_enabled == BR_NO_STP ||
259 fwd_mask & (1u << dest[5]))
stephen hemminger515853c2011-10-03 18:14:46 +0000260 goto forward;
Ido Schimmel56fae4042016-06-07 12:06:58 +0300261 *pskb = skb;
262 __br_handle_local_finish(skb);
263 return RX_HANDLER_PASS;
stephen hemminger515853c2011-10-03 18:14:46 +0000264
265 case 0x01: /* IEEE MAC (Pause) */
Stephen Hemminger2111f8b2007-04-25 22:05:55 -0700266 goto drop;
267
Ido Schimmelbaedbe52016-07-22 14:56:20 +0300268 case 0x0E: /* 802.1AB LLDP */
269 fwd_mask |= p->br->group_fwd_mask;
270 if (fwd_mask & (1u << dest[5]))
271 goto forward;
272 *pskb = skb;
273 __br_handle_local_finish(skb);
274 return RX_HANDLER_PASS;
275
stephen hemminger515853c2011-10-03 18:14:46 +0000276 default:
277 /* Allow selective forwarding for most other protocols */
Toshiaki Makitaf2808d22014-06-10 20:59:24 +0900278 fwd_mask |= p->br->group_fwd_mask;
279 if (fwd_mask & (1u << dest[5]))
stephen hemminger515853c2011-10-03 18:14:46 +0000280 goto forward;
281 }
Stephen Hemmingera598f6a2009-05-15 06:10:13 +0000282
stephen hemminger515853c2011-10-03 18:14:46 +0000283 /* Deliver packet to local host only */
Florian Westphal8626c562016-03-12 11:14:42 +0100284 NF_HOOK(NFPROTO_BRIDGE, NF_BR_LOCAL_IN, dev_net(skb->dev),
285 NULL, skb, skb->dev, NULL, br_handle_local_finish);
286 return RX_HANDLER_CONSUMED;
Stephen Hemminger2111f8b2007-04-25 22:05:55 -0700287 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Stephen Hemmingera598f6a2009-05-15 06:10:13 +0000289forward:
Stephen Hemminger467aea02007-03-21 13:42:06 -0700290 switch (p->state) {
291 case BR_STATE_FORWARDING:
Pavel Emelyanov82de3822007-11-29 23:58:58 +1100292 rhook = rcu_dereference(br_should_route_hook);
Eric Dumazeta386f992010-11-15 06:38:11 +0000293 if (rhook) {
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000294 if ((*rhook)(skb)) {
295 *pskb = skb;
296 return RX_HANDLER_PASS;
297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 dest = eth_hdr(skb)->h_dest;
299 }
Stephen Hemminger467aea02007-03-21 13:42:06 -0700300 /* fall through */
301 case BR_STATE_LEARNING:
Joe Perches9a7b6ef92012-05-08 18:56:49 +0000302 if (ether_addr_equal(p->br->dev->dev_addr, dest))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 skb->pkt_type = PACKET_HOST;
304
Eric W. Biederman29a26a52015-09-15 20:04:16 -0500305 NF_HOOK(NFPROTO_BRIDGE, NF_BR_PRE_ROUTING,
306 dev_net(skb->dev), NULL, skb, skb->dev, NULL,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 br_handle_frame_finish);
Stephen Hemminger467aea02007-03-21 13:42:06 -0700308 break;
309 default:
310drop:
311 kfree_skb(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +0000313 return RX_HANDLER_CONSUMED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314}