blob: ab0c7cc8448f4824d69b9260e79ede7aac14dd9e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Forwarding database
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
14#include <linux/kernel.h>
15#include <linux/init.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020016#include <linux/rculist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/spinlock.h>
18#include <linux/times.h>
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
21#include <linux/jhash.h>
Stephen Hemminger3f890922007-03-21 13:42:33 -070022#include <linux/random.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
Arun Sharma600634972011-07-26 16:09:06 -070024#include <linux/atomic.h>
Stephen Hemminger3f890922007-03-21 13:42:33 -070025#include <asm/unaligned.h>
Vlad Yasevich2ba071e2013-02-13 12:00:16 +000026#include <linux/if_vlan.h>
Scott Feldmanb4ad7ba2015-06-14 11:33:11 -070027#include <net/switchdev.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include "br_private.h"
29
Christoph Lametere18b8902006-12-06 20:33:20 -080030static struct kmem_cache *br_fdb_cache __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +000032 const unsigned char *addr, u16 vid);
stephen hemminger31e8a49c2011-12-08 07:17:41 +000033static void fdb_notify(struct net_bridge *br,
34 const struct net_bridge_fdb_entry *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Stephen Hemminger3f890922007-03-21 13:42:33 -070036static u32 fdb_salt __read_mostly;
37
Akinobu Mita87a596e2007-04-07 18:57:07 +090038int __init br_fdb_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039{
40 br_fdb_cache = kmem_cache_create("bridge_fdb_cache",
41 sizeof(struct net_bridge_fdb_entry),
42 0,
Paul Mundt20c2df82007-07-20 10:11:58 +090043 SLAB_HWCACHE_ALIGN, NULL);
Akinobu Mita87a596e2007-04-07 18:57:07 +090044 if (!br_fdb_cache)
45 return -ENOMEM;
46
Stephen Hemminger3f890922007-03-21 13:42:33 -070047 get_random_bytes(&fdb_salt, sizeof(fdb_salt));
Akinobu Mita87a596e2007-04-07 18:57:07 +090048 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
Andrew Morton73afc902007-12-05 21:35:23 -080051void br_fdb_fini(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070052{
53 kmem_cache_destroy(br_fdb_cache);
54}
55
56
57/* if topology_changing then use forward_delay (default 15 sec)
58 * otherwise keep longer (default 5 minutes)
59 */
Stephen Hemminger3f890922007-03-21 13:42:33 -070060static inline unsigned long hold_time(const struct net_bridge *br)
Linus Torvalds1da177e2005-04-16 15:20:36 -070061{
62 return br->topology_change ? br->forward_delay : br->ageing_time;
63}
64
Stephen Hemminger3f890922007-03-21 13:42:33 -070065static inline int has_expired(const struct net_bridge *br,
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 const struct net_bridge_fdb_entry *fdb)
67{
Roopa Prabhueda7a5e2017-02-16 13:38:04 -080068 return !fdb->is_static && !fdb->added_by_external_learn &&
stephen hemminger7cd88612011-04-04 14:03:28 +000069 time_before_eq(fdb->updated + hold_time(br), jiffies);
Linus Torvalds1da177e2005-04-16 15:20:36 -070070}
71
Vlad Yasevich2ba071e2013-02-13 12:00:16 +000072static inline int br_mac_hash(const unsigned char *mac, __u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073{
Vlad Yasevich2ba071e2013-02-13 12:00:16 +000074 /* use 1 byte of OUI and 3 bytes of NIC */
Stephen Hemminger3f890922007-03-21 13:42:33 -070075 u32 key = get_unaligned((u32 *)(mac + 2));
Vlad Yasevich2ba071e2013-02-13 12:00:16 +000076 return jhash_2words(key, vid, fdb_salt) & (BR_HASH_SIZE - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077}
78
Michał Mirosławda678292009-06-05 05:35:28 +000079static void fdb_rcu_free(struct rcu_head *head)
80{
81 struct net_bridge_fdb_entry *ent
82 = container_of(head, struct net_bridge_fdb_entry, rcu);
83 kmem_cache_free(br_fdb_cache, ent);
84}
85
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +010086static struct net_bridge_fdb_entry *fdb_find_rcu(struct hlist_head *head,
87 const unsigned char *addr,
88 __u16 vid)
89{
90 struct net_bridge_fdb_entry *f;
91
Nikolay Aleksandrov410b3d42017-02-13 14:59:10 +010092 WARN_ON_ONCE(!rcu_read_lock_held());
93
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +010094 hlist_for_each_entry_rcu(f, head, hlist)
95 if (ether_addr_equal(f->addr.addr, addr) && f->vlan_id == vid)
96 break;
97
98 return f;
99}
100
101/* requires bridge hash_lock */
102static struct net_bridge_fdb_entry *br_fdb_find(struct net_bridge *br,
103 const unsigned char *addr,
104 __u16 vid)
105{
106 struct hlist_head *head = &br->hash[br_mac_hash(addr, vid)];
107 struct net_bridge_fdb_entry *fdb;
108
WANG Congd12c9172017-03-16 10:32:42 -0700109 lockdep_assert_held_once(&br->hash_lock);
Nikolay Aleksandrov410b3d42017-02-13 14:59:10 +0100110
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100111 rcu_read_lock();
112 fdb = fdb_find_rcu(head, addr, vid);
113 rcu_read_unlock();
114
115 return fdb;
116}
117
118struct net_bridge_fdb_entry *br_fdb_find_rcu(struct net_bridge *br,
119 const unsigned char *addr,
120 __u16 vid)
121{
122 struct hlist_head *head = &br->hash[br_mac_hash(addr, vid)];
123
124 return fdb_find_rcu(head, addr, vid);
125}
126
Vlad Yasevich145beee2014-05-16 09:59:19 -0400127/* When a static FDB entry is added, the mac address from the entry is
128 * added to the bridge private HW address list and all required ports
129 * are then updated with the new information.
130 * Called under RTNL.
131 */
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100132static void fdb_add_hw_addr(struct net_bridge *br, const unsigned char *addr)
Vlad Yasevich145beee2014-05-16 09:59:19 -0400133{
134 int err;
Li RongQinga3f5ee72014-06-18 16:07:16 +0800135 struct net_bridge_port *p;
Vlad Yasevich145beee2014-05-16 09:59:19 -0400136
137 ASSERT_RTNL();
138
139 list_for_each_entry(p, &br->port_list, list) {
140 if (!br_promisc_port(p)) {
141 err = dev_uc_add(p->dev, addr);
142 if (err)
143 goto undo;
144 }
145 }
146
147 return;
148undo:
Li RongQinga3f5ee72014-06-18 16:07:16 +0800149 list_for_each_entry_continue_reverse(p, &br->port_list, list) {
150 if (!br_promisc_port(p))
151 dev_uc_del(p->dev, addr);
Vlad Yasevich145beee2014-05-16 09:59:19 -0400152 }
153}
154
155/* When a static FDB entry is deleted, the HW address from that entry is
156 * also removed from the bridge private HW address list and updates all
157 * the ports with needed information.
158 * Called under RTNL.
159 */
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100160static void fdb_del_hw_addr(struct net_bridge *br, const unsigned char *addr)
Vlad Yasevich145beee2014-05-16 09:59:19 -0400161{
162 struct net_bridge_port *p;
163
164 ASSERT_RTNL();
165
166 list_for_each_entry(p, &br->port_list, list) {
167 if (!br_promisc_port(p))
168 dev_uc_del(p->dev, addr);
169 }
170}
171
Scott Feldmanb4ad7ba2015-06-14 11:33:11 -0700172static void fdb_del_external_learn(struct net_bridge_fdb_entry *f)
173{
Jiri Pirko52ba57c2015-10-01 11:03:44 +0200174 struct switchdev_obj_port_fdb fdb = {
Jiri Pirko56607382015-10-14 19:40:53 +0200175 .obj = {
Ido Schimmel6ff64f62015-12-15 16:03:35 +0100176 .orig_dev = f->dst->dev,
Jiri Pirko56607382015-10-14 19:40:53 +0200177 .id = SWITCHDEV_OBJ_ID_PORT_FDB,
178 .flags = SWITCHDEV_F_DEFER,
179 },
Vivien Didelotab069002015-09-29 12:07:17 -0400180 .vid = f->vlan_id,
Scott Feldmanb4ad7ba2015-06-14 11:33:11 -0700181 };
182
Jiri Pirko850d0cb2015-10-14 19:40:51 +0200183 ether_addr_copy(fdb.addr, f->addr.addr);
Jiri Pirko9e8f4a52015-10-01 11:03:46 +0200184 switchdev_port_obj_del(f->dst->dev, &fdb.obj);
Scott Feldmanb4ad7ba2015-06-14 11:33:11 -0700185}
186
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000187static void fdb_delete(struct net_bridge *br, struct net_bridge_fdb_entry *f)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
Vlad Yasevich145beee2014-05-16 09:59:19 -0400189 if (f->is_static)
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100190 fdb_del_hw_addr(br, f->addr.addr);
Vlad Yasevich145beee2014-05-16 09:59:19 -0400191
Scott Feldmanb4ad7ba2015-06-14 11:33:11 -0700192 if (f->added_by_external_learn)
193 fdb_del_external_learn(f);
194
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100195 hlist_del_init_rcu(&f->hlist);
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000196 fdb_notify(br, f, RTM_DELNEIGH);
Michał Mirosławda678292009-06-05 05:35:28 +0000197 call_rcu(&f->rcu, fdb_rcu_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198}
199
Toshiaki Makita960b5892014-02-07 16:48:23 +0900200/* Delete a local entry if no other port had the same address. */
201static void fdb_delete_local(struct net_bridge *br,
202 const struct net_bridge_port *p,
203 struct net_bridge_fdb_entry *f)
204{
205 const unsigned char *addr = f->addr.addr;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200206 struct net_bridge_vlan_group *vg;
207 const struct net_bridge_vlan *v;
Toshiaki Makita960b5892014-02-07 16:48:23 +0900208 struct net_bridge_port *op;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200209 u16 vid = f->vlan_id;
Toshiaki Makita960b5892014-02-07 16:48:23 +0900210
211 /* Maybe another port has same hw addr? */
212 list_for_each_entry(op, &br->port_list, list) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200213 vg = nbp_vlan_group(op);
Toshiaki Makita960b5892014-02-07 16:48:23 +0900214 if (op != p && ether_addr_equal(op->dev->dev_addr, addr) &&
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200215 (!vid || br_vlan_find(vg, vid))) {
Toshiaki Makita960b5892014-02-07 16:48:23 +0900216 f->dst = op;
Toshiaki Makitaa778e6d2014-02-07 16:48:24 +0900217 f->added_by_user = 0;
Toshiaki Makita960b5892014-02-07 16:48:23 +0900218 return;
219 }
220 }
221
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200222 vg = br_vlan_group(br);
223 v = br_vlan_find(vg, vid);
Toshiaki Makita960b5892014-02-07 16:48:23 +0900224 /* Maybe bridge device has same hw addr? */
225 if (p && ether_addr_equal(br->dev->dev_addr, addr) &&
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200226 (!vid || (v && br_vlan_should_use(v)))) {
Toshiaki Makita960b5892014-02-07 16:48:23 +0900227 f->dst = NULL;
Toshiaki Makitaa778e6d2014-02-07 16:48:24 +0900228 f->added_by_user = 0;
Toshiaki Makita960b5892014-02-07 16:48:23 +0900229 return;
230 }
231
232 fdb_delete(br, f);
233}
234
Toshiaki Makita424bb9c2014-02-07 16:48:25 +0900235void br_fdb_find_delete_local(struct net_bridge *br,
236 const struct net_bridge_port *p,
237 const unsigned char *addr, u16 vid)
238{
Toshiaki Makita424bb9c2014-02-07 16:48:25 +0900239 struct net_bridge_fdb_entry *f;
240
241 spin_lock_bh(&br->hash_lock);
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100242 f = br_fdb_find(br, addr, vid);
Toshiaki Makita424bb9c2014-02-07 16:48:25 +0900243 if (f && f->is_local && !f->added_by_user && f->dst == p)
244 fdb_delete_local(br, p, f);
245 spin_unlock_bh(&br->hash_lock);
246}
247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248void br_fdb_changeaddr(struct net_bridge_port *p, const unsigned char *newaddr)
249{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200250 struct net_bridge_vlan_group *vg;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251 struct net_bridge *br = p->br;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200252 struct net_bridge_vlan *v;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 int i;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900254
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 spin_lock_bh(&br->hash_lock);
256
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200257 vg = nbp_vlan_group(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 /* Search all chains since old address/hash is unknown */
259 for (i = 0; i < BR_HASH_SIZE; i++) {
260 struct hlist_node *h;
261 hlist_for_each(h, &br->hash[i]) {
262 struct net_bridge_fdb_entry *f;
263
264 f = hlist_entry(h, struct net_bridge_fdb_entry, hlist);
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900265 if (f->dst == p && f->is_local && !f->added_by_user) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 /* delete old one */
Toshiaki Makita960b5892014-02-07 16:48:23 +0900267 fdb_delete_local(br, p, f);
268
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000269 /* if this port has no vlan information
270 * configured, we can safely be done at
271 * this point.
272 */
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200273 if (!vg || !vg->num_vlans)
Toshiaki Makita28368822014-02-07 16:48:19 +0900274 goto insert;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 }
276 }
277 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
Toshiaki Makita28368822014-02-07 16:48:19 +0900279insert:
280 /* insert new address, may fail if invalid address or dup. */
281 fdb_insert(br, p, newaddr, 0);
282
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200283 if (!vg || !vg->num_vlans)
Toshiaki Makita28368822014-02-07 16:48:19 +0900284 goto done;
285
286 /* Now add entries for every VLAN configured on the port.
287 * This function runs under RTNL so the bitmap will not change
288 * from under us.
289 */
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200290 list_for_each_entry(v, &vg->vlan_list, vlist)
291 fdb_insert(br, p, newaddr, v->vid);
Toshiaki Makita28368822014-02-07 16:48:19 +0900292
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000293done:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 spin_unlock_bh(&br->hash_lock);
295}
296
stephen hemminger43598812011-12-08 07:17:49 +0000297void br_fdb_change_mac_address(struct net_bridge *br, const u8 *newaddr)
298{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200299 struct net_bridge_vlan_group *vg;
stephen hemminger43598812011-12-08 07:17:49 +0000300 struct net_bridge_fdb_entry *f;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200301 struct net_bridge_vlan *v;
stephen hemminger43598812011-12-08 07:17:49 +0000302
Toshiaki Makitaac4c8862014-02-07 16:48:26 +0900303 spin_lock_bh(&br->hash_lock);
304
stephen hemminger43598812011-12-08 07:17:49 +0000305 /* If old entry was unassociated with any port, then delete it. */
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100306 f = br_fdb_find(br, br->dev->dev_addr, 0);
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900307 if (f && f->is_local && !f->dst && !f->added_by_user)
Toshiaki Makita960b5892014-02-07 16:48:23 +0900308 fdb_delete_local(br, NULL, f);
stephen hemminger43598812011-12-08 07:17:49 +0000309
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000310 fdb_insert(br, NULL, newaddr, 0);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200311 vg = br_vlan_group(br);
312 if (!vg || !vg->num_vlans)
313 goto out;
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000314 /* Now remove and add entries for every VLAN configured on the
315 * bridge. This function runs under RTNL so the bitmap will not
316 * change from under us.
317 */
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200318 list_for_each_entry(v, &vg->vlan_list, vlist) {
Toshiaki Makita0b148de2016-06-07 19:14:17 +0900319 if (!br_vlan_should_use(v))
320 continue;
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100321 f = br_fdb_find(br, br->dev->dev_addr, v->vid);
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900322 if (f && f->is_local && !f->dst && !f->added_by_user)
Toshiaki Makita960b5892014-02-07 16:48:23 +0900323 fdb_delete_local(br, NULL, f);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200324 fdb_insert(br, NULL, newaddr, v->vid);
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000325 }
Toshiaki Makitaac4c8862014-02-07 16:48:26 +0900326out:
327 spin_unlock_bh(&br->hash_lock);
stephen hemminger43598812011-12-08 07:17:49 +0000328}
329
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100330void br_fdb_cleanup(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331{
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100332 struct net_bridge *br = container_of(work, struct net_bridge,
333 gc_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 unsigned long delay = hold_time(br);
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100335 unsigned long work_delay = delay;
336 unsigned long now = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 int i;
338
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 for (i = 0; i < BR_HASH_SIZE; i++) {
340 struct net_bridge_fdb_entry *f;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800341 struct hlist_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100343 if (!br->hash[i].first)
344 continue;
345
346 spin_lock_bh(&br->hash_lock);
Sasha Levinb67bfe02013-02-27 17:06:00 -0800347 hlist_for_each_entry_safe(f, n, &br->hash[i], hlist) {
Baruch Even071f7722007-05-31 01:20:45 -0700348 unsigned long this_timer;
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100349
David S. Miller3fcf9012015-02-04 23:52:44 -0800350 if (f->is_static)
Baruch Even071f7722007-05-31 01:20:45 -0700351 continue;
Siva Mannemdcd45e02015-09-23 08:39:19 -0700352 if (f->added_by_external_learn)
353 continue;
stephen hemminger7cd88612011-04-04 14:03:28 +0000354 this_timer = f->updated + delay;
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100355 if (time_after(this_timer, now))
356 work_delay = min(work_delay, this_timer - now);
357 else
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000358 fdb_delete(br, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100360 spin_unlock_bh(&br->hash_lock);
361 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363
Nikolay Aleksandrovf7cdee82017-02-04 18:05:07 +0100364 /* Cleanup minimum 10 milliseconds apart */
365 work_delay = max_t(unsigned long, work_delay, msecs_to_jiffies(10));
366 mod_delayed_work(system_long_wq, &br->gc_work, work_delay);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700369/* Completely flush all dynamic entries in forwarding database.*/
370void br_fdb_flush(struct net_bridge *br)
371{
372 int i;
Stephen Hemminger1a620692006-10-12 14:45:38 -0700373
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700374 spin_lock_bh(&br->hash_lock);
375 for (i = 0; i < BR_HASH_SIZE; i++) {
376 struct net_bridge_fdb_entry *f;
Sasha Levinb67bfe02013-02-27 17:06:00 -0800377 struct hlist_node *n;
378 hlist_for_each_entry_safe(f, n, &br->hash[i], hlist) {
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700379 if (!f->is_static)
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000380 fdb_delete(br, f);
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700381 }
382 }
383 spin_unlock_bh(&br->hash_lock);
384}
385
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300386/* Flush all entries referring to a specific port.
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700387 * if do_all is set also flush static entries
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700388 * if vid is set delete all entries that match the vlan_id
Stephen Hemminger9cf63742007-04-09 12:57:54 -0700389 */
Stephen Hemminger1a620692006-10-12 14:45:38 -0700390void br_fdb_delete_by_port(struct net_bridge *br,
391 const struct net_bridge_port *p,
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700392 u16 vid,
Stephen Hemminger1a620692006-10-12 14:45:38 -0700393 int do_all)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 int i;
396
397 spin_lock_bh(&br->hash_lock);
398 for (i = 0; i < BR_HASH_SIZE; i++) {
399 struct hlist_node *h, *g;
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900400
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 hlist_for_each_safe(h, g, &br->hash[i]) {
402 struct net_bridge_fdb_entry *f
403 = hlist_entry(h, struct net_bridge_fdb_entry, hlist);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900404 if (f->dst != p)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 continue;
406
Nikolay Aleksandrov1ea2d022015-06-23 05:28:16 -0700407 if (!do_all)
408 if (f->is_static || (vid && f->vlan_id != vid))
409 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Toshiaki Makitaa778e6d2014-02-07 16:48:24 +0900411 if (f->is_local)
412 fdb_delete_local(br, p, f);
413 else
414 fdb_delete(br, f);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 }
416 }
417 spin_unlock_bh(&br->hash_lock);
418}
419
Igor Maraviće6373c42011-12-12 02:58:25 +0000420#if IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +0000421/* Interface used by ATM LANE hook to test
422 * if an addr is on some other bridge port */
423int br_fdb_test_addr(struct net_device *dev, unsigned char *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
425 struct net_bridge_fdb_entry *fdb;
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000426 struct net_bridge_port *port;
Michał Mirosławda678292009-06-05 05:35:28 +0000427 int ret;
428
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 rcu_read_lock();
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000430 port = br_port_get_rcu(dev);
431 if (!port)
432 ret = 0;
433 else {
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100434 fdb = br_fdb_find_rcu(port->br, addr, 0);
stephen hemminger43598812011-12-08 07:17:49 +0000435 ret = fdb && fdb->dst && fdb->dst->dev != dev &&
stephen hemmingerb5ed54e2010-11-15 06:38:13 +0000436 fdb->dst->state == BR_STATE_FORWARDING;
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Michał Mirosławda678292009-06-05 05:35:28 +0000440 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
Michał Mirosławda678292009-06-05 05:35:28 +0000442#endif /* CONFIG_ATM_LANE */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/*
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900445 * Fill buffer with forwarding table records in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * the API format.
447 */
448int br_fdb_fillbuf(struct net_bridge *br, void *buf,
449 unsigned long maxnum, unsigned long skip)
450{
451 struct __fdb_entry *fe = buf;
452 int i, num = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 struct net_bridge_fdb_entry *f;
454
455 memset(buf, 0, maxnum*sizeof(struct __fdb_entry));
456
457 rcu_read_lock();
458 for (i = 0; i < BR_HASH_SIZE; i++) {
Sasha Levinb67bfe02013-02-27 17:06:00 -0800459 hlist_for_each_entry_rcu(f, &br->hash[i], hlist) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 if (num >= maxnum)
461 goto out;
462
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900463 if (has_expired(br, f))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 continue;
465
stephen hemminger43598812011-12-08 07:17:49 +0000466 /* ignore pseudo entry for local MAC address */
467 if (!f->dst)
468 continue;
469
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 if (skip) {
471 --skip;
472 continue;
473 }
474
475 /* convert from internal format to API */
476 memcpy(fe->mac_addr, f->addr.addr, ETH_ALEN);
Stephen Hemmingerae4f8fc2008-05-02 16:53:33 -0700477
478 /* due to ABI compat need to split into hi/lo */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 fe->port_no = f->dst->port_no;
Stephen Hemmingerae4f8fc2008-05-02 16:53:33 -0700480 fe->port_hi = f->dst->port_no >> 8;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 fe->is_local = f->is_local;
483 if (!f->is_static)
Eric Dumazeta399a802012-08-08 21:13:53 +0000484 fe->ageing_timer_value = jiffies_delta_to_clock_t(jiffies - f->updated);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 ++fe;
486 ++num;
487 }
488 }
489
490 out:
491 rcu_read_unlock();
492
493 return num;
494}
495
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496static struct net_bridge_fdb_entry *fdb_create(struct hlist_head *head,
497 struct net_bridge_port *source,
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000498 const unsigned char *addr,
Roopa Prabhub7af1472015-10-27 07:52:56 -0700499 __u16 vid,
500 unsigned char is_local,
501 unsigned char is_static)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502{
503 struct net_bridge_fdb_entry *fdb;
504
505 fdb = kmem_cache_alloc(br_fdb_cache, GFP_ATOMIC);
506 if (fdb) {
507 memcpy(fdb->addr.addr, addr, ETH_ALEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 fdb->dst = source;
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000509 fdb->vlan_id = vid;
Roopa Prabhub7af1472015-10-27 07:52:56 -0700510 fdb->is_local = is_local;
511 fdb->is_static = is_static;
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900512 fdb->added_by_user = 0;
Scott Feldmancf6b8e12014-11-28 14:34:21 +0100513 fdb->added_by_external_learn = 0;
stephen hemminger7cd88612011-04-04 14:03:28 +0000514 fdb->updated = fdb->used = jiffies;
Pavel Emelyanov1158f762011-02-04 13:02:36 -0800515 hlist_add_head_rcu(&fdb->hlist, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 }
517 return fdb;
518}
519
520static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000521 const unsigned char *addr, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522{
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000523 struct hlist_head *head = &br->hash[br_mac_hash(addr, vid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 struct net_bridge_fdb_entry *fdb;
525
526 if (!is_valid_ether_addr(addr))
527 return -EINVAL;
528
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100529 fdb = br_fdb_find(br, addr, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (fdb) {
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900531 /* it is okay to have multiple ports with same
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 * address, just use the first one.
533 */
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900534 if (fdb->is_local)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 return 0;
Roopa Prabhude1dfee2016-10-11 16:12:56 -0700536 br_warn(br, "adding interface %s with same address as a received packet (addr:%pM, vlan:%u)\n",
537 source ? source->dev->name : br->dev->name, addr, vid);
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000538 fdb_delete(br, fdb);
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Roopa Prabhub7af1472015-10-27 07:52:56 -0700541 fdb = fdb_create(head, source, addr, vid, 1, 1);
stephen hemminger03e9b642011-04-04 14:03:27 +0000542 if (!fdb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 return -ENOMEM;
544
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100545 fdb_add_hw_addr(br, addr);
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000546 fdb_notify(br, fdb, RTM_NEWNEIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 return 0;
548}
549
stephen hemminger03e9b642011-04-04 14:03:27 +0000550/* Add entry for local address of interface */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551int br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000552 const unsigned char *addr, u16 vid)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 int ret;
555
556 spin_lock_bh(&br->hash_lock);
Vlad Yasevichbc9a25d2013-02-13 12:00:19 +0000557 ret = fdb_insert(br, source, addr, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 spin_unlock_bh(&br->hash_lock);
559 return ret;
560}
561
562void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source,
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900563 const unsigned char *addr, u16 vid, bool added_by_user)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000565 struct hlist_head *head = &br->hash[br_mac_hash(addr, vid)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 struct net_bridge_fdb_entry *fdb;
Jon Maxwellc65c7a32014-05-29 17:27:16 +1000567 bool fdb_modified = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
569 /* some users want to always flood. */
570 if (hold_time(br) == 0)
571 return;
572
Stephen Hemmingerdf1c0b82007-08-30 22:15:35 -0700573 /* ignore packets unless we are using this port */
574 if (!(source->state == BR_STATE_LEARNING ||
575 source->state == BR_STATE_FORWARDING))
576 return;
577
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000578 fdb = fdb_find_rcu(head, addr, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 if (likely(fdb)) {
580 /* attempt to update an entry for a local interface */
581 if (unlikely(fdb->is_local)) {
YOSHIFUJI Hideaki9d6f2292007-02-09 23:24:35 +0900582 if (net_ratelimit())
Roopa Prabhude1dfee2016-10-11 16:12:56 -0700583 br_warn(br, "received packet on %s with own address as source address (addr:%pM, vlan:%u)\n",
584 source->dev->name, addr, vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 } else {
stephen hemmingerca6d4482017-02-07 08:46:46 -0800586 unsigned long now = jiffies;
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 /* fastpath: update of existing entry */
Jon Maxwellc65c7a32014-05-29 17:27:16 +1000589 if (unlikely(source != fdb->dst)) {
590 fdb->dst = source;
591 fdb_modified = true;
Arkadi Sharshevsky58073b32017-04-28 22:39:07 +0300592 /* Take over HW learned entry */
593 if (unlikely(fdb->added_by_external_learn))
594 fdb->added_by_external_learn = 0;
Jon Maxwellc65c7a32014-05-29 17:27:16 +1000595 }
stephen hemmingerca6d4482017-02-07 08:46:46 -0800596 if (now != fdb->updated)
597 fdb->updated = now;
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900598 if (unlikely(added_by_user))
599 fdb->added_by_user = 1;
Jon Maxwellc65c7a32014-05-29 17:27:16 +1000600 if (unlikely(fdb_modified))
601 fdb_notify(br, fdb, RTM_NEWNEIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
603 } else {
Stephen Hemmingerf8ae7372006-03-20 22:58:36 -0800604 spin_lock(&br->hash_lock);
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100605 if (likely(!fdb_find_rcu(head, addr, vid))) {
Roopa Prabhub7af1472015-10-27 07:52:56 -0700606 fdb = fdb_create(head, source, addr, vid, 0, 0);
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900607 if (fdb) {
608 if (unlikely(added_by_user))
609 fdb->added_by_user = 1;
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000610 fdb_notify(br, fdb, RTM_NEWNEIGH);
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900611 }
stephen hemmingerf58ee4e2011-12-06 13:02:24 +0000612 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* else we lose race and someone else inserts
614 * it first, don't bother updating
615 */
Stephen Hemmingerf8ae7372006-03-20 22:58:36 -0800616 spin_unlock(&br->hash_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618}
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000619
Roopa Prabhu37418732015-10-08 10:38:52 -0700620static int fdb_to_nud(const struct net_bridge *br,
621 const struct net_bridge_fdb_entry *fdb)
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000622{
623 if (fdb->is_local)
624 return NUD_PERMANENT;
625 else if (fdb->is_static)
626 return NUD_NOARP;
Roopa Prabhu37418732015-10-08 10:38:52 -0700627 else if (has_expired(br, fdb))
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000628 return NUD_STALE;
629 else
630 return NUD_REACHABLE;
631}
632
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000633static int fdb_fill_info(struct sk_buff *skb, const struct net_bridge *br,
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000634 const struct net_bridge_fdb_entry *fdb,
Eric W. Biederman15e47302012-09-07 20:12:54 +0000635 u32 portid, u32 seq, int type, unsigned int flags)
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000636{
637 unsigned long now = jiffies;
638 struct nda_cacheinfo ci;
639 struct nlmsghdr *nlh;
640 struct ndmsg *ndm;
641
Eric W. Biederman15e47302012-09-07 20:12:54 +0000642 nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000643 if (nlh == NULL)
644 return -EMSGSIZE;
645
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000646 ndm = nlmsg_data(nlh);
647 ndm->ndm_family = AF_BRIDGE;
648 ndm->ndm_pad1 = 0;
649 ndm->ndm_pad2 = 0;
Scott Feldmancf6b8e12014-11-28 14:34:21 +0100650 ndm->ndm_flags = fdb->added_by_external_learn ? NTF_EXT_LEARNED : 0;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000651 ndm->ndm_type = 0;
stephen hemminger43598812011-12-08 07:17:49 +0000652 ndm->ndm_ifindex = fdb->dst ? fdb->dst->dev->ifindex : br->dev->ifindex;
Roopa Prabhu37418732015-10-08 10:38:52 -0700653 ndm->ndm_state = fdb_to_nud(br, fdb);
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000654
David S. Miller2eb812e2012-04-01 20:49:54 -0400655 if (nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->addr))
656 goto nla_put_failure;
Roopa Prabhu41c389d2014-05-27 22:39:37 -0700657 if (nla_put_u32(skb, NDA_MASTER, br->dev->ifindex))
658 goto nla_put_failure;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000659 ci.ndm_used = jiffies_to_clock_t(now - fdb->used);
660 ci.ndm_confirmed = 0;
661 ci.ndm_updated = jiffies_to_clock_t(now - fdb->updated);
662 ci.ndm_refcnt = 0;
David S. Miller2eb812e2012-04-01 20:49:54 -0400663 if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
664 goto nla_put_failure;
Vlad Yasevich1690be62013-02-13 12:00:18 +0000665
Toshiaki Makita47fab412014-07-30 13:31:51 +0900666 if (fdb->vlan_id && nla_put(skb, NDA_VLAN, sizeof(u16), &fdb->vlan_id))
Vlad Yasevich1690be62013-02-13 12:00:18 +0000667 goto nla_put_failure;
668
Johannes Berg053c0952015-01-16 22:09:00 +0100669 nlmsg_end(skb, nlh);
670 return 0;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000671
672nla_put_failure:
673 nlmsg_cancel(skb, nlh);
674 return -EMSGSIZE;
675}
676
677static inline size_t fdb_nlmsg_size(void)
678{
679 return NLMSG_ALIGN(sizeof(struct ndmsg))
680 + nla_total_size(ETH_ALEN) /* NDA_LLADDR */
Roopa Prabhu41c389d2014-05-27 22:39:37 -0700681 + nla_total_size(sizeof(u32)) /* NDA_MASTER */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000682 + nla_total_size(sizeof(u16)) /* NDA_VLAN */
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000683 + nla_total_size(sizeof(struct nda_cacheinfo));
684}
685
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000686static void fdb_notify(struct net_bridge *br,
687 const struct net_bridge_fdb_entry *fdb, int type)
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000688{
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000689 struct net *net = dev_net(br->dev);
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000690 struct sk_buff *skb;
691 int err = -ENOBUFS;
692
693 skb = nlmsg_new(fdb_nlmsg_size(), GFP_ATOMIC);
694 if (skb == NULL)
695 goto errout;
696
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000697 err = fdb_fill_info(skb, br, fdb, 0, 0, type, 0);
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000698 if (err < 0) {
699 /* -EMSGSIZE implies BUG in fdb_nlmsg_size() */
700 WARN_ON(err == -EMSGSIZE);
701 kfree_skb(skb);
702 goto errout;
703 }
704 rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
705 return;
706errout:
tanxiaojun87e823b2013-12-19 13:28:10 +0800707 rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000708}
709
710/* Dump information about entries, in response to GETNEIGH */
John Fastabend77162022012-04-15 06:43:56 +0000711int br_fdb_dump(struct sk_buff *skb,
712 struct netlink_callback *cb,
713 struct net_device *dev,
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400714 struct net_device *filter_dev,
Roopa Prabhud2976532016-08-30 21:56:45 -0700715 int *idx)
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000716{
John Fastabend77162022012-04-15 06:43:56 +0000717 struct net_bridge *br = netdev_priv(dev);
Roopa Prabhud2976532016-08-30 21:56:45 -0700718 int err = 0;
John Fastabend77162022012-04-15 06:43:56 +0000719 int i;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000720
John Fastabend77162022012-04-15 06:43:56 +0000721 if (!(dev->priv_flags & IFF_EBRIDGE))
722 goto out;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000723
Roopa Prabhud2976532016-08-30 21:56:45 -0700724 if (!filter_dev) {
725 err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx);
726 if (err < 0)
727 goto out;
728 }
Hubert Sokolowski6cb69742015-01-05 17:29:21 +0000729
John Fastabend77162022012-04-15 06:43:56 +0000730 for (i = 0; i < BR_HASH_SIZE; i++) {
John Fastabend77162022012-04-15 06:43:56 +0000731 struct net_bridge_fdb_entry *f;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000732
Sasha Levinb67bfe02013-02-27 17:06:00 -0800733 hlist_for_each_entry_rcu(f, &br->hash[i], hlist) {
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +0900734
Roopa Prabhud2976532016-08-30 21:56:45 -0700735 if (*idx < cb->args[2])
John Fastabend77162022012-04-15 06:43:56 +0000736 goto skip;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000737
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -0400738 if (filter_dev &&
739 (!f->dst || f->dst->dev != filter_dev)) {
740 if (filter_dev != dev)
741 goto skip;
Hubert Sokolowski6cb69742015-01-05 17:29:21 +0000742 /* !f->dst is a special case for bridge
Jamal Hadi Salim5e6d2432014-07-10 07:01:59 -0400743 * It means the MAC belongs to the bridge
744 * Therefore need a little more filtering
745 * we only want to dump the !f->dst case
746 */
747 if (f->dst)
748 goto skip;
749 }
Hubert Sokolowski6cb69742015-01-05 17:29:21 +0000750 if (!filter_dev && f->dst)
751 goto skip;
Jamal Hadi Salim5d5eacb2014-07-10 07:01:58 -0400752
MINOURA Makoto / 箕浦 真472681d2016-02-25 14:20:48 +0900753 err = fdb_fill_info(skb, br, f,
754 NETLINK_CB(cb->skb).portid,
755 cb->nlh->nlmsg_seq,
756 RTM_NEWNEIGH,
757 NLM_F_MULTI);
Roopa Prabhud2976532016-08-30 21:56:45 -0700758 if (err < 0)
759 goto out;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000760skip:
Roopa Prabhud2976532016-08-30 21:56:45 -0700761 *idx += 1;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000762 }
763 }
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000764
John Fastabend77162022012-04-15 06:43:56 +0000765out:
Roopa Prabhud2976532016-08-30 21:56:45 -0700766 return err;
stephen hemmingerb078f0d2011-04-04 14:03:30 +0000767}
stephen hemminger36fd2b62011-04-04 14:03:31 +0000768
stephen hemminger292d1392011-11-09 18:30:08 +0000769/* Update (create or replace) forwarding database entry */
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900770static int fdb_add_entry(struct net_bridge *br, struct net_bridge_port *source,
771 const __u8 *addr, __u16 state, __u16 flags, __u16 vid)
stephen hemminger36fd2b62011-04-04 14:03:31 +0000772{
Vlad Yasevich2ba071e2013-02-13 12:00:16 +0000773 struct hlist_head *head = &br->hash[br_mac_hash(addr, vid)];
stephen hemminger36fd2b62011-04-04 14:03:31 +0000774 struct net_bridge_fdb_entry *fdb;
roopab0a397f2013-04-22 12:56:49 +0000775 bool modified = false;
stephen hemminger36fd2b62011-04-04 14:03:31 +0000776
Wilson Kokeb8d7ba2015-05-25 06:39:31 -0700777 /* If the port cannot learn allow only local and static entries */
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900778 if (source && !(state & NUD_PERMANENT) && !(state & NUD_NOARP) &&
Wilson Kokeb8d7ba2015-05-25 06:39:31 -0700779 !(source->state == BR_STATE_LEARNING ||
780 source->state == BR_STATE_FORWARDING))
781 return -EPERM;
782
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900783 if (!source && !(state & NUD_PERMANENT)) {
784 pr_info("bridge: RTM_NEWNEIGH %s without NUD_PERMANENT\n",
785 br->dev->name);
786 return -EINVAL;
787 }
788
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100789 fdb = br_fdb_find(br, addr, vid);
stephen hemminger64af1ba2011-09-30 14:37:27 +0000790 if (fdb == NULL) {
791 if (!(flags & NLM_F_CREATE))
792 return -ENOENT;
stephen hemminger36fd2b62011-04-04 14:03:31 +0000793
Roopa Prabhub7af1472015-10-27 07:52:56 -0700794 fdb = fdb_create(head, source, addr, vid, 0, 0);
stephen hemminger64af1ba2011-09-30 14:37:27 +0000795 if (!fdb)
796 return -ENOMEM;
roopab0a397f2013-04-22 12:56:49 +0000797
798 modified = true;
stephen hemminger64af1ba2011-09-30 14:37:27 +0000799 } else {
800 if (flags & NLM_F_EXCL)
801 return -EEXIST;
roopab0a397f2013-04-22 12:56:49 +0000802
803 if (fdb->dst != source) {
804 fdb->dst = source;
805 modified = true;
806 }
stephen hemminger64af1ba2011-09-30 14:37:27 +0000807 }
stephen hemminger36fd2b62011-04-04 14:03:31 +0000808
Roopa Prabhu37418732015-10-08 10:38:52 -0700809 if (fdb_to_nud(br, fdb) != state) {
Vlad Yasevich145beee2014-05-16 09:59:19 -0400810 if (state & NUD_PERMANENT) {
811 fdb->is_local = 1;
812 if (!fdb->is_static) {
813 fdb->is_static = 1;
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100814 fdb_add_hw_addr(br, addr);
Vlad Yasevich145beee2014-05-16 09:59:19 -0400815 }
816 } else if (state & NUD_NOARP) {
stephen hemminger292d1392011-11-09 18:30:08 +0000817 fdb->is_local = 0;
Vlad Yasevich145beee2014-05-16 09:59:19 -0400818 if (!fdb->is_static) {
819 fdb->is_static = 1;
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100820 fdb_add_hw_addr(br, addr);
Vlad Yasevich145beee2014-05-16 09:59:19 -0400821 }
822 } else {
823 fdb->is_local = 0;
824 if (fdb->is_static) {
825 fdb->is_static = 0;
Jiri Pirko020ec6b2014-11-28 14:34:12 +0100826 fdb_del_hw_addr(br, addr);
Vlad Yasevich145beee2014-05-16 09:59:19 -0400827 }
828 }
stephen hemminger292d1392011-11-09 18:30:08 +0000829
roopab0a397f2013-04-22 12:56:49 +0000830 modified = true;
831 }
Toshiaki Makitaa5642ab2014-02-07 16:48:18 +0900832 fdb->added_by_user = 1;
roopab0a397f2013-04-22 12:56:49 +0000833
834 fdb->used = jiffies;
835 if (modified) {
836 fdb->updated = jiffies;
stephen hemminger31e8a49c2011-12-08 07:17:41 +0000837 fdb_notify(br, fdb, RTM_NEWNEIGH);
stephen hemminger292d1392011-11-09 18:30:08 +0000838 }
839
stephen hemminger36fd2b62011-04-04 14:03:31 +0000840 return 0;
841}
842
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900843static int __br_fdb_add(struct ndmsg *ndm, struct net_bridge *br,
844 struct net_bridge_port *p, const unsigned char *addr,
845 u16 nlh_flags, u16 vid)
Vlad Yasevich1690be62013-02-13 12:00:18 +0000846{
847 int err = 0;
848
849 if (ndm->ndm_flags & NTF_USE) {
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900850 if (!p) {
851 pr_info("bridge: RTM_NEWNEIGH %s with NTF_USE is not supported\n",
852 br->dev->name);
853 return -EINVAL;
854 }
Nikolay Aleksandrovc4c832f2015-06-06 06:49:00 -0700855 local_bh_disable();
Vlad Yasevich1690be62013-02-13 12:00:18 +0000856 rcu_read_lock();
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900857 br_fdb_update(br, p, addr, vid, true);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000858 rcu_read_unlock();
Nikolay Aleksandrovc4c832f2015-06-06 06:49:00 -0700859 local_bh_enable();
Nikolay Aleksandroveb100e02017-03-23 12:27:13 +0200860 } else if (ndm->ndm_flags & NTF_EXT_LEARNED) {
861 err = br_fdb_external_learn_add(br, p, addr, vid);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000862 } else {
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900863 spin_lock_bh(&br->hash_lock);
864 err = fdb_add_entry(br, p, addr, ndm->ndm_state,
Vlad Yasevich1690be62013-02-13 12:00:18 +0000865 nlh_flags, vid);
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900866 spin_unlock_bh(&br->hash_lock);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000867 }
868
869 return err;
870}
871
stephen hemminger36fd2b62011-04-04 14:03:31 +0000872/* Add new permanent fdb entry with RTM_NEWNEIGH */
stephen hemmingeredc7d572012-10-01 12:32:33 +0000873int br_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
874 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100875 const unsigned char *addr, u16 vid, u16 nlh_flags)
stephen hemminger36fd2b62011-04-04 14:03:31 +0000876{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200877 struct net_bridge_vlan_group *vg;
Roopa Prabhu37418732015-10-08 10:38:52 -0700878 struct net_bridge_port *p = NULL;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200879 struct net_bridge_vlan *v;
Roopa Prabhu37418732015-10-08 10:38:52 -0700880 struct net_bridge *br = NULL;
John Fastabend77162022012-04-15 06:43:56 +0000881 int err = 0;
stephen hemminger36fd2b62011-04-04 14:03:31 +0000882
stephen hemminger292d1392011-11-09 18:30:08 +0000883 if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_NOARP|NUD_REACHABLE))) {
884 pr_info("bridge: RTM_NEWNEIGH with invalid state %#x\n", ndm->ndm_state);
885 return -EINVAL;
886 }
887
Stephen Hemminger537f7f82013-06-25 09:34:36 -0700888 if (is_zero_ether_addr(addr)) {
889 pr_info("bridge: RTM_NEWNEIGH with invalid ether address\n");
890 return -EINVAL;
891 }
892
Roopa Prabhu37418732015-10-08 10:38:52 -0700893 if (dev->priv_flags & IFF_EBRIDGE) {
894 br = netdev_priv(dev);
895 vg = br_vlan_group(br);
896 } else {
897 p = br_port_get_rtnl(dev);
898 if (!p) {
899 pr_info("bridge: RTM_NEWNEIGH %s not a bridge port\n",
900 dev->name);
901 return -EINVAL;
902 }
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900903 br = p->br;
Roopa Prabhu37418732015-10-08 10:38:52 -0700904 vg = nbp_vlan_group(p);
stephen hemminger36fd2b62011-04-04 14:03:31 +0000905 }
906
Jiri Pirkof6f64242014-11-28 14:34:15 +0100907 if (vid) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200908 v = br_vlan_find(vg, vid);
Roopa Prabhu37418732015-10-08 10:38:52 -0700909 if (!v || !br_vlan_should_use(v)) {
910 pr_info("bridge: RTM_NEWNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000911 return -EINVAL;
912 }
913
914 /* VID was specified, so use it. */
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900915 err = __br_fdb_add(ndm, br, p, addr, nlh_flags, vid);
stephen hemminger292d1392011-11-09 18:30:08 +0000916 } else {
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900917 err = __br_fdb_add(ndm, br, p, addr, nlh_flags, 0);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200918 if (err || !vg || !vg->num_vlans)
Vlad Yasevich1690be62013-02-13 12:00:18 +0000919 goto out;
Vlad Yasevich1690be62013-02-13 12:00:18 +0000920
921 /* We have vlans configured on this port and user didn't
922 * specify a VLAN. To be nice, add/update entry for every
923 * vlan on this port.
924 */
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200925 list_for_each_entry(v, &vg->vlan_list, vlist) {
Roopa Prabhu37418732015-10-08 10:38:52 -0700926 if (!br_vlan_should_use(v))
927 continue;
Toshiaki Makita7bb90c32016-08-04 11:11:19 +0900928 err = __br_fdb_add(ndm, br, p, addr, nlh_flags, v->vid);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000929 if (err)
930 goto out;
Vlad Yasevich1690be62013-02-13 12:00:18 +0000931 }
stephen hemminger292d1392011-11-09 18:30:08 +0000932 }
stephen hemminger36fd2b62011-04-04 14:03:31 +0000933
Vlad Yasevich1690be62013-02-13 12:00:18 +0000934out:
935 return err;
936}
937
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100938static int fdb_delete_by_addr_and_port(struct net_bridge *br,
939 const struct net_bridge_port *p,
Nikolay Aleksandrov8c86f962015-06-09 03:34:13 -0700940 const u8 *addr, u16 vlan)
Vlad Yasevich1690be62013-02-13 12:00:18 +0000941{
Vlad Yasevich1690be62013-02-13 12:00:18 +0000942 struct net_bridge_fdb_entry *fdb;
943
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +0100944 fdb = br_fdb_find(br, addr, vlan);
Nikolay Aleksandrov8c86f962015-06-09 03:34:13 -0700945 if (!fdb || fdb->dst != p)
Vlad Yasevich1690be62013-02-13 12:00:18 +0000946 return -ENOENT;
947
948 fdb_delete(br, fdb);
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100949
Vlad Yasevich1690be62013-02-13 12:00:18 +0000950 return 0;
951}
952
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100953static int __br_fdb_delete(struct net_bridge *br,
954 const struct net_bridge_port *p,
Vlad Yasevich1690be62013-02-13 12:00:18 +0000955 const unsigned char *addr, u16 vid)
956{
957 int err;
958
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100959 spin_lock_bh(&br->hash_lock);
960 err = fdb_delete_by_addr_and_port(br, p, addr, vid);
961 spin_unlock_bh(&br->hash_lock);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000962
stephen hemminger36fd2b62011-04-04 14:03:31 +0000963 return err;
964}
965
stephen hemminger36fd2b62011-04-04 14:03:31 +0000966/* Remove neighbor entry with RTM_DELNEIGH */
Vlad Yasevich1690be62013-02-13 12:00:18 +0000967int br_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
968 struct net_device *dev,
Jiri Pirkof6f64242014-11-28 14:34:15 +0100969 const unsigned char *addr, u16 vid)
stephen hemminger36fd2b62011-04-04 14:03:31 +0000970{
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200971 struct net_bridge_vlan_group *vg;
Roopa Prabhu37418732015-10-08 10:38:52 -0700972 struct net_bridge_port *p = NULL;
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200973 struct net_bridge_vlan *v;
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100974 struct net_bridge *br;
stephen hemminger36fd2b62011-04-04 14:03:31 +0000975 int err;
976
Roopa Prabhu37418732015-10-08 10:38:52 -0700977 if (dev->priv_flags & IFF_EBRIDGE) {
978 br = netdev_priv(dev);
979 vg = br_vlan_group(br);
980 } else {
981 p = br_port_get_rtnl(dev);
982 if (!p) {
983 pr_info("bridge: RTM_DELNEIGH %s not a bridge port\n",
984 dev->name);
985 return -EINVAL;
986 }
987 vg = nbp_vlan_group(p);
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100988 br = p->br;
stephen hemminger36fd2b62011-04-04 14:03:31 +0000989 }
990
Jiri Pirkof6f64242014-11-28 14:34:15 +0100991 if (vid) {
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +0200992 v = br_vlan_find(vg, vid);
993 if (!v) {
Roopa Prabhu37418732015-10-08 10:38:52 -0700994 pr_info("bridge: RTM_DELNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000995 return -EINVAL;
996 }
stephen hemminger36fd2b62011-04-04 14:03:31 +0000997
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +0100998 err = __br_fdb_delete(br, p, addr, vid);
Vlad Yasevich1690be62013-02-13 12:00:18 +0000999 } else {
Toshiaki Makita25d3b492015-02-09 20:16:17 +09001000 err = -ENOENT;
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +01001001 err &= __br_fdb_delete(br, p, addr, 0);
Nikolay Aleksandrov2594e902015-09-25 19:00:11 +02001002 if (!vg || !vg->num_vlans)
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +01001003 return err;
Vlad Yasevich1690be62013-02-13 12:00:18 +00001004
Roopa Prabhu37418732015-10-08 10:38:52 -07001005 list_for_each_entry(v, &vg->vlan_list, vlist) {
1006 if (!br_vlan_should_use(v))
1007 continue;
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +01001008 err &= __br_fdb_delete(br, p, addr, v->vid);
Roopa Prabhu37418732015-10-08 10:38:52 -07001009 }
Vlad Yasevich1690be62013-02-13 12:00:18 +00001010 }
Nikolay Aleksandrov5019ab52017-02-13 14:59:11 +01001011
stephen hemminger36fd2b62011-04-04 14:03:31 +00001012 return err;
1013}
Vlad Yasevich8db24af2014-05-16 09:59:17 -04001014
1015int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p)
1016{
1017 struct net_bridge_fdb_entry *fdb, *tmp;
1018 int i;
1019 int err;
1020
1021 ASSERT_RTNL();
1022
1023 for (i = 0; i < BR_HASH_SIZE; i++) {
1024 hlist_for_each_entry(fdb, &br->hash[i], hlist) {
1025 /* We only care for static entries */
1026 if (!fdb->is_static)
1027 continue;
1028
1029 err = dev_uc_add(p->dev, fdb->addr.addr);
1030 if (err)
1031 goto rollback;
1032 }
1033 }
1034 return 0;
1035
1036rollback:
1037 for (i = 0; i < BR_HASH_SIZE; i++) {
1038 hlist_for_each_entry(tmp, &br->hash[i], hlist) {
1039 /* If we reached the fdb that failed, we can stop */
1040 if (tmp == fdb)
1041 break;
1042
1043 /* We only care for static entries */
1044 if (!tmp->is_static)
1045 continue;
1046
1047 dev_uc_del(p->dev, tmp->addr.addr);
1048 }
1049 }
1050 return err;
1051}
1052
1053void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p)
1054{
1055 struct net_bridge_fdb_entry *fdb;
1056 int i;
1057
1058 ASSERT_RTNL();
1059
1060 for (i = 0; i < BR_HASH_SIZE; i++) {
1061 hlist_for_each_entry_rcu(fdb, &br->hash[i], hlist) {
1062 /* We only care for static entries */
1063 if (!fdb->is_static)
1064 continue;
1065
1066 dev_uc_del(p->dev, fdb->addr.addr);
1067 }
1068 }
1069}
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001070
Jiri Pirko3aeb6612015-01-15 23:49:37 +01001071int br_fdb_external_learn_add(struct net_bridge *br, struct net_bridge_port *p,
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001072 const unsigned char *addr, u16 vid)
1073{
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001074 struct hlist_head *head;
1075 struct net_bridge_fdb_entry *fdb;
1076 int err = 0;
1077
Jiri Pirko3aeb6612015-01-15 23:49:37 +01001078 ASSERT_RTNL();
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001079 spin_lock_bh(&br->hash_lock);
1080
1081 head = &br->hash[br_mac_hash(addr, vid)];
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +01001082 fdb = br_fdb_find(br, addr, vid);
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001083 if (!fdb) {
Roopa Prabhub7af1472015-10-27 07:52:56 -07001084 fdb = fdb_create(head, p, addr, vid, 0, 0);
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001085 if (!fdb) {
1086 err = -ENOMEM;
1087 goto err_unlock;
1088 }
1089 fdb->added_by_external_learn = 1;
1090 fdb_notify(br, fdb, RTM_NEWNEIGH);
1091 } else if (fdb->added_by_external_learn) {
1092 /* Refresh entry */
1093 fdb->updated = fdb->used = jiffies;
1094 } else if (!fdb->added_by_user) {
1095 /* Take over SW learned entry */
1096 fdb->added_by_external_learn = 1;
1097 fdb->updated = jiffies;
1098 fdb_notify(br, fdb, RTM_NEWNEIGH);
1099 }
1100
1101err_unlock:
1102 spin_unlock_bh(&br->hash_lock);
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001103
1104 return err;
1105}
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001106
Jiri Pirko3aeb6612015-01-15 23:49:37 +01001107int br_fdb_external_learn_del(struct net_bridge *br, struct net_bridge_port *p,
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001108 const unsigned char *addr, u16 vid)
1109{
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001110 struct net_bridge_fdb_entry *fdb;
1111 int err = 0;
1112
Jiri Pirko3aeb6612015-01-15 23:49:37 +01001113 ASSERT_RTNL();
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001114 spin_lock_bh(&br->hash_lock);
1115
Nikolay Aleksandrovbfd0aea2017-02-13 14:59:09 +01001116 fdb = br_fdb_find(br, addr, vid);
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001117 if (fdb && fdb->added_by_external_learn)
1118 fdb_delete(br, fdb);
1119 else
1120 err = -ENOENT;
1121
1122 spin_unlock_bh(&br->hash_lock);
Scott Feldmancf6b8e12014-11-28 14:34:21 +01001123
1124 return err;
1125}