br_fdb.c 33.8 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0-or-later
L
Linus Torvalds 已提交
2 3 4 5 6 7 8 9 10 11
/*
 *	Forwarding database
 *	Linux ethernet bridge
 *
 *	Authors:
 *	Lennert Buytenhek		<buytenh@gnu.org>
 */

#include <linux/kernel.h>
#include <linux/init.h>
12
#include <linux/rculist.h>
L
Linus Torvalds 已提交
13 14 15 16 17
#include <linux/spinlock.h>
#include <linux/times.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/jhash.h>
18
#include <linux/random.h>
19
#include <linux/slab.h>
A
Arun Sharma 已提交
20
#include <linux/atomic.h>
21
#include <asm/unaligned.h>
22
#include <linux/if_vlan.h>
23
#include <net/switchdev.h>
24
#include <trace/events/bridge.h>
L
Linus Torvalds 已提交
25 26
#include "br_private.h"

27 28 29 30 31 32 33
static const struct rhashtable_params br_fdb_rht_params = {
	.head_offset = offsetof(struct net_bridge_fdb_entry, rhnode),
	.key_offset = offsetof(struct net_bridge_fdb_entry, key),
	.key_len = sizeof(struct net_bridge_fdb_key),
	.automatic_shrinking = true,
};

34
static struct kmem_cache *br_fdb_cache __read_mostly;
L
Linus Torvalds 已提交
35
static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
36
		      const unsigned char *addr, u16 vid);
37
static void fdb_notify(struct net_bridge *br,
38
		       const struct net_bridge_fdb_entry *, int, bool);
L
Linus Torvalds 已提交
39

40
int __init br_fdb_init(void)
L
Linus Torvalds 已提交
41 42 43 44
{
	br_fdb_cache = kmem_cache_create("bridge_fdb_cache",
					 sizeof(struct net_bridge_fdb_entry),
					 0,
45
					 SLAB_HWCACHE_ALIGN, NULL);
46 47 48 49
	if (!br_fdb_cache)
		return -ENOMEM;

	return 0;
L
Linus Torvalds 已提交
50 51
}

A
Andrew Morton 已提交
52
void br_fdb_fini(void)
L
Linus Torvalds 已提交
53 54 55 56
{
	kmem_cache_destroy(br_fdb_cache);
}

57 58 59 60 61 62 63 64 65
int br_fdb_hash_init(struct net_bridge *br)
{
	return rhashtable_init(&br->fdb_hash_tbl, &br_fdb_rht_params);
}

void br_fdb_hash_fini(struct net_bridge *br)
{
	rhashtable_destroy(&br->fdb_hash_tbl);
}
L
Linus Torvalds 已提交
66 67 68 69

/* if topology_changing then use forward_delay (default 15 sec)
 * otherwise keep longer (default 5 minutes)
 */
70
static inline unsigned long hold_time(const struct net_bridge *br)
L
Linus Torvalds 已提交
71 72 73 74
{
	return br->topology_change ? br->forward_delay : br->ageing_time;
}

75
static inline int has_expired(const struct net_bridge *br,
L
Linus Torvalds 已提交
76 77
				  const struct net_bridge_fdb_entry *fdb)
{
78
	return !test_bit(BR_FDB_STATIC, &fdb->flags) &&
79
	       !test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags) &&
80
	       time_before_eq(fdb->updated + hold_time(br), jiffies);
L
Linus Torvalds 已提交
81 82
}

83 84 85 86 87 88 89
static void fdb_rcu_free(struct rcu_head *head)
{
	struct net_bridge_fdb_entry *ent
		= container_of(head, struct net_bridge_fdb_entry, rcu);
	kmem_cache_free(br_fdb_cache, ent);
}

90
static struct net_bridge_fdb_entry *fdb_find_rcu(struct rhashtable *tbl,
91 92 93
						 const unsigned char *addr,
						 __u16 vid)
{
94
	struct net_bridge_fdb_key key;
95

96 97
	WARN_ON_ONCE(!rcu_read_lock_held());

98 99
	key.vlan_id = vid;
	memcpy(key.addr.addr, addr, sizeof(key.addr.addr));
100

101
	return rhashtable_lookup(tbl, &key, br_fdb_rht_params);
102 103 104 105 106 107 108 109 110
}

/* requires bridge hash_lock */
static struct net_bridge_fdb_entry *br_fdb_find(struct net_bridge *br,
						const unsigned char *addr,
						__u16 vid)
{
	struct net_bridge_fdb_entry *fdb;

111
	lockdep_assert_held_once(&br->hash_lock);
112

113
	rcu_read_lock();
114
	fdb = fdb_find_rcu(&br->fdb_hash_tbl, addr, vid);
115 116 117 118 119
	rcu_read_unlock();

	return fdb;
}

120 121 122 123 124 125 126 127 128 129 130 131 132 133
struct net_device *br_fdb_find_port(const struct net_device *br_dev,
				    const unsigned char *addr,
				    __u16 vid)
{
	struct net_bridge_fdb_entry *f;
	struct net_device *dev = NULL;
	struct net_bridge *br;

	ASSERT_RTNL();

	if (!netif_is_bridge_master(br_dev))
		return NULL;

	br = netdev_priv(br_dev);
134 135
	rcu_read_lock();
	f = br_fdb_find_rcu(br, addr, vid);
136 137
	if (f && f->dst)
		dev = f->dst->dev;
138
	rcu_read_unlock();
139 140 141 142 143

	return dev;
}
EXPORT_SYMBOL_GPL(br_fdb_find_port);

144 145 146 147
struct net_bridge_fdb_entry *br_fdb_find_rcu(struct net_bridge *br,
					     const unsigned char *addr,
					     __u16 vid)
{
148
	return fdb_find_rcu(&br->fdb_hash_tbl, addr, vid);
149 150
}

151 152 153 154 155
/* When a static FDB entry is added, the mac address from the entry is
 * added to the bridge private HW address list and all required ports
 * are then updated with the new information.
 * Called under RTNL.
 */
156
static void fdb_add_hw_addr(struct net_bridge *br, const unsigned char *addr)
157 158
{
	int err;
159
	struct net_bridge_port *p;
160 161 162 163 164 165 166 167 168 169 170 171 172

	ASSERT_RTNL();

	list_for_each_entry(p, &br->port_list, list) {
		if (!br_promisc_port(p)) {
			err = dev_uc_add(p->dev, addr);
			if (err)
				goto undo;
		}
	}

	return;
undo:
173 174 175
	list_for_each_entry_continue_reverse(p, &br->port_list, list) {
		if (!br_promisc_port(p))
			dev_uc_del(p->dev, addr);
176 177 178 179 180 181 182 183
	}
}

/* When a static FDB entry is deleted, the HW address from that entry is
 * also removed from the bridge private HW address list and updates all
 * the ports with needed information.
 * Called under RTNL.
 */
184
static void fdb_del_hw_addr(struct net_bridge *br, const unsigned char *addr)
185 186 187 188 189 190 191 192 193 194 195
{
	struct net_bridge_port *p;

	ASSERT_RTNL();

	list_for_each_entry(p, &br->port_list, list) {
		if (!br_promisc_port(p))
			dev_uc_del(p->dev, addr);
	}
}

196 197
static void fdb_delete(struct net_bridge *br, struct net_bridge_fdb_entry *f,
		       bool swdev_notify)
L
Linus Torvalds 已提交
198
{
199 200
	trace_fdb_delete(br, f);

201
	if (test_bit(BR_FDB_STATIC, &f->flags))
202
		fdb_del_hw_addr(br, f->key.addr.addr);
203

204 205 206
	hlist_del_init_rcu(&f->fdb_node);
	rhashtable_remove_fast(&br->fdb_hash_tbl, &f->rhnode,
			       br_fdb_rht_params);
207
	fdb_notify(br, f, RTM_DELNEIGH, swdev_notify);
208
	call_rcu(&f->rcu, fdb_rcu_free);
L
Linus Torvalds 已提交
209 210
}

211 212 213 214 215
/* Delete a local entry if no other port had the same address. */
static void fdb_delete_local(struct net_bridge *br,
			     const struct net_bridge_port *p,
			     struct net_bridge_fdb_entry *f)
{
216
	const unsigned char *addr = f->key.addr.addr;
217 218
	struct net_bridge_vlan_group *vg;
	const struct net_bridge_vlan *v;
219
	struct net_bridge_port *op;
220
	u16 vid = f->key.vlan_id;
221 222 223

	/* Maybe another port has same hw addr? */
	list_for_each_entry(op, &br->port_list, list) {
224
		vg = nbp_vlan_group(op);
225
		if (op != p && ether_addr_equal(op->dev->dev_addr, addr) &&
226
		    (!vid || br_vlan_find(vg, vid))) {
227
			f->dst = op;
228
			clear_bit(BR_FDB_ADDED_BY_USER, &f->flags);
229 230 231 232
			return;
		}
	}

233 234
	vg = br_vlan_group(br);
	v = br_vlan_find(vg, vid);
235 236
	/* Maybe bridge device has same hw addr? */
	if (p && ether_addr_equal(br->dev->dev_addr, addr) &&
237
	    (!vid || (v && br_vlan_should_use(v)))) {
238
		f->dst = NULL;
239
		clear_bit(BR_FDB_ADDED_BY_USER, &f->flags);
240 241 242
		return;
	}

243
	fdb_delete(br, f, true);
244 245
}

246 247 248 249 250 251 252
void br_fdb_find_delete_local(struct net_bridge *br,
			      const struct net_bridge_port *p,
			      const unsigned char *addr, u16 vid)
{
	struct net_bridge_fdb_entry *f;

	spin_lock_bh(&br->hash_lock);
253
	f = br_fdb_find(br, addr, vid);
254
	if (f && test_bit(BR_FDB_LOCAL, &f->flags) &&
255
	    !test_bit(BR_FDB_ADDED_BY_USER, &f->flags) && f->dst == p)
256 257 258 259
		fdb_delete_local(br, p, f);
	spin_unlock_bh(&br->hash_lock);
}

L
Linus Torvalds 已提交
260 261
void br_fdb_changeaddr(struct net_bridge_port *p, const unsigned char *newaddr)
{
262
	struct net_bridge_vlan_group *vg;
263
	struct net_bridge_fdb_entry *f;
L
Linus Torvalds 已提交
264
	struct net_bridge *br = p->br;
265
	struct net_bridge_vlan *v;
266

L
Linus Torvalds 已提交
267
	spin_lock_bh(&br->hash_lock);
268
	vg = nbp_vlan_group(p);
269
	hlist_for_each_entry(f, &br->fdb_list, fdb_node) {
270
		if (f->dst == p && test_bit(BR_FDB_LOCAL, &f->flags) &&
271
		    !test_bit(BR_FDB_ADDED_BY_USER, &f->flags)) {
272 273 274 275 276 277 278 279 280
			/* delete old one */
			fdb_delete_local(br, p, f);

			/* if this port has no vlan information
			 * configured, we can safely be done at
			 * this point.
			 */
			if (!vg || !vg->num_vlans)
				goto insert;
L
Linus Torvalds 已提交
281 282 283
		}
	}

284 285 286 287
insert:
	/* insert new address,  may fail if invalid address or dup. */
	fdb_insert(br, p, newaddr, 0);

288
	if (!vg || !vg->num_vlans)
289 290 291 292 293 294
		goto done;

	/* Now add entries for every VLAN configured on the port.
	 * This function runs under RTNL so the bitmap will not change
	 * from under us.
	 */
295 296
	list_for_each_entry(v, &vg->vlan_list, vlist)
		fdb_insert(br, p, newaddr, v->vid);
297

298
done:
L
Linus Torvalds 已提交
299 300 301
	spin_unlock_bh(&br->hash_lock);
}

302 303
void br_fdb_change_mac_address(struct net_bridge *br, const u8 *newaddr)
{
304
	struct net_bridge_vlan_group *vg;
305
	struct net_bridge_fdb_entry *f;
306
	struct net_bridge_vlan *v;
307

308 309
	spin_lock_bh(&br->hash_lock);

310
	/* If old entry was unassociated with any port, then delete it. */
311
	f = br_fdb_find(br, br->dev->dev_addr, 0);
312
	if (f && test_bit(BR_FDB_LOCAL, &f->flags) &&
313
	    !f->dst && !test_bit(BR_FDB_ADDED_BY_USER, &f->flags))
314
		fdb_delete_local(br, NULL, f);
315

316
	fdb_insert(br, NULL, newaddr, 0);
317 318 319
	vg = br_vlan_group(br);
	if (!vg || !vg->num_vlans)
		goto out;
320 321 322 323
	/* Now remove and add entries for every VLAN configured on the
	 * bridge.  This function runs under RTNL so the bitmap will not
	 * change from under us.
	 */
324
	list_for_each_entry(v, &vg->vlan_list, vlist) {
325 326
		if (!br_vlan_should_use(v))
			continue;
327
		f = br_fdb_find(br, br->dev->dev_addr, v->vid);
328
		if (f && test_bit(BR_FDB_LOCAL, &f->flags) &&
329
		    !f->dst && !test_bit(BR_FDB_ADDED_BY_USER, &f->flags))
330
			fdb_delete_local(br, NULL, f);
331
		fdb_insert(br, NULL, newaddr, v->vid);
332
	}
333 334
out:
	spin_unlock_bh(&br->hash_lock);
335 336
}

337
void br_fdb_cleanup(struct work_struct *work)
L
Linus Torvalds 已提交
338
{
339 340
	struct net_bridge *br = container_of(work, struct net_bridge,
					     gc_work.work);
341
	struct net_bridge_fdb_entry *f = NULL;
L
Linus Torvalds 已提交
342
	unsigned long delay = hold_time(br);
343 344
	unsigned long work_delay = delay;
	unsigned long now = jiffies;
L
Linus Torvalds 已提交
345

346 347 348 349 350 351
	/* this part is tricky, in order to avoid blocking learning and
	 * consequently forwarding, we rely on rcu to delete objects with
	 * delayed freeing allowing us to continue traversing
	 */
	rcu_read_lock();
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
352
		unsigned long this_timer = f->updated + delay;
L
Linus Torvalds 已提交
353

354
		if (test_bit(BR_FDB_STATIC, &f->flags) ||
355 356 357 358 359 360 361 362 363
		    test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &f->flags)) {
			if (test_bit(BR_FDB_NOTIFY, &f->flags)) {
				if (time_after(this_timer, now))
					work_delay = min(work_delay,
							 this_timer - now);
				else if (!test_and_set_bit(BR_FDB_NOTIFY_INACTIVE,
							   &f->flags))
					fdb_notify(br, f, RTM_NEWNEIGH, false);
			}
364
			continue;
365 366
		}

367 368 369 370 371
		if (time_after(this_timer, now)) {
			work_delay = min(work_delay, this_timer - now);
		} else {
			spin_lock_bh(&br->hash_lock);
			if (!hlist_unhashed(&f->fdb_node))
372
				fdb_delete(br, f, true);
373
			spin_unlock_bh(&br->hash_lock);
L
Linus Torvalds 已提交
374 375
		}
	}
376
	rcu_read_unlock();
L
Linus Torvalds 已提交
377

378 379 380
	/* Cleanup minimum 10 milliseconds apart */
	work_delay = max_t(unsigned long, work_delay, msecs_to_jiffies(10));
	mod_delayed_work(system_long_wq, &br->gc_work, work_delay);
L
Linus Torvalds 已提交
381 382
}

383 384 385
/* Completely flush all dynamic entries in forwarding database.*/
void br_fdb_flush(struct net_bridge *br)
{
386 387
	struct net_bridge_fdb_entry *f;
	struct hlist_node *tmp;
388 389

	spin_lock_bh(&br->hash_lock);
390
	hlist_for_each_entry_safe(f, tmp, &br->fdb_list, fdb_node) {
391
		if (!test_bit(BR_FDB_STATIC, &f->flags))
392
			fdb_delete(br, f, true);
393 394 395
	}
	spin_unlock_bh(&br->hash_lock);
}
396

L
Lucas De Marchi 已提交
397
/* Flush all entries referring to a specific port.
398
 * if do_all is set also flush static entries
399
 * if vid is set delete all entries that match the vlan_id
400
 */
401 402
void br_fdb_delete_by_port(struct net_bridge *br,
			   const struct net_bridge_port *p,
403
			   u16 vid,
404
			   int do_all)
L
Linus Torvalds 已提交
405
{
406 407
	struct net_bridge_fdb_entry *f;
	struct hlist_node *tmp;
L
Linus Torvalds 已提交
408 409

	spin_lock_bh(&br->hash_lock);
410 411 412
	hlist_for_each_entry_safe(f, tmp, &br->fdb_list, fdb_node) {
		if (f->dst != p)
			continue;
413

414
		if (!do_all)
415
			if (test_bit(BR_FDB_STATIC, &f->flags) ||
416 417
			    (test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &f->flags) &&
			     !test_bit(BR_FDB_OFFLOADED, &f->flags)) ||
418
			    (vid && f->key.vlan_id != vid))
L
Linus Torvalds 已提交
419 420
				continue;

421
		if (test_bit(BR_FDB_LOCAL, &f->flags))
422 423
			fdb_delete_local(br, p, f);
		else
424
			fdb_delete(br, f, true);
L
Linus Torvalds 已提交
425 426 427 428
	}
	spin_unlock_bh(&br->hash_lock);
}

I
Igor Maravić 已提交
429
#if IS_ENABLED(CONFIG_ATM_LANE)
430 431 432
/* Interface used by ATM LANE hook to test
 * if an addr is on some other bridge port */
int br_fdb_test_addr(struct net_device *dev, unsigned char *addr)
L
Linus Torvalds 已提交
433 434
{
	struct net_bridge_fdb_entry *fdb;
435
	struct net_bridge_port *port;
436 437
	int ret;

L
Linus Torvalds 已提交
438
	rcu_read_lock();
439 440 441 442
	port = br_port_get_rcu(dev);
	if (!port)
		ret = 0;
	else {
443
		fdb = br_fdb_find_rcu(port->br, addr, 0);
444
		ret = fdb && fdb->dst && fdb->dst->dev != dev &&
445 446
			fdb->dst->state == BR_STATE_FORWARDING;
	}
L
Linus Torvalds 已提交
447 448
	rcu_read_unlock();

449
	return ret;
L
Linus Torvalds 已提交
450
}
451
#endif /* CONFIG_ATM_LANE */
L
Linus Torvalds 已提交
452 453

/*
454
 * Fill buffer with forwarding table records in
L
Linus Torvalds 已提交
455 456 457 458 459 460
 * the API format.
 */
int br_fdb_fillbuf(struct net_bridge *br, void *buf,
		   unsigned long maxnum, unsigned long skip)
{
	struct net_bridge_fdb_entry *f;
461 462
	struct __fdb_entry *fe = buf;
	int num = 0;
L
Linus Torvalds 已提交
463 464 465 466

	memset(buf, 0, maxnum*sizeof(struct __fdb_entry));

	rcu_read_lock();
467 468 469
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
		if (num >= maxnum)
			break;
L
Linus Torvalds 已提交
470

471 472
		if (has_expired(br, f))
			continue;
L
Linus Torvalds 已提交
473

474 475 476
		/* ignore pseudo entry for local MAC address */
		if (!f->dst)
			continue;
477

478 479 480 481
		if (skip) {
			--skip;
			continue;
		}
L
Linus Torvalds 已提交
482

483 484
		/* convert from internal format to API */
		memcpy(fe->mac_addr, f->key.addr.addr, ETH_ALEN);
485

486 487 488
		/* due to ABI compat need to split into hi/lo */
		fe->port_no = f->dst->port_no;
		fe->port_hi = f->dst->port_no >> 8;
489

490
		fe->is_local = test_bit(BR_FDB_LOCAL, &f->flags);
491
		if (!test_bit(BR_FDB_STATIC, &f->flags))
492 493 494
			fe->ageing_timer_value = jiffies_delta_to_clock_t(jiffies - f->updated);
		++fe;
		++num;
L
Linus Torvalds 已提交
495 496 497 498 499 500
	}
	rcu_read_unlock();

	return num;
}

501
static struct net_bridge_fdb_entry *fdb_create(struct net_bridge *br,
L
Linus Torvalds 已提交
502
					       struct net_bridge_port *source,
503
					       const unsigned char *addr,
504
					       __u16 vid,
505
					       unsigned long flags)
L
Linus Torvalds 已提交
506 507 508 509 510
{
	struct net_bridge_fdb_entry *fdb;

	fdb = kmem_cache_alloc(br_fdb_cache, GFP_ATOMIC);
	if (fdb) {
511
		memcpy(fdb->key.addr.addr, addr, ETH_ALEN);
L
Linus Torvalds 已提交
512
		fdb->dst = source;
513
		fdb->key.vlan_id = vid;
514
		fdb->flags = flags;
515
		fdb->updated = fdb->used = jiffies;
516 517 518 519 520 521 522 523
		if (rhashtable_lookup_insert_fast(&br->fdb_hash_tbl,
						  &fdb->rhnode,
						  br_fdb_rht_params)) {
			kmem_cache_free(br_fdb_cache, fdb);
			fdb = NULL;
		} else {
			hlist_add_head_rcu(&fdb->fdb_node, &br->fdb_list);
		}
L
Linus Torvalds 已提交
524 525 526 527 528
	}
	return fdb;
}

static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
529
		  const unsigned char *addr, u16 vid)
L
Linus Torvalds 已提交
530 531 532 533 534 535
{
	struct net_bridge_fdb_entry *fdb;

	if (!is_valid_ether_addr(addr))
		return -EINVAL;

536
	fdb = br_fdb_find(br, addr, vid);
L
Linus Torvalds 已提交
537
	if (fdb) {
538
		/* it is okay to have multiple ports with same
L
Linus Torvalds 已提交
539 540
		 * address, just use the first one.
		 */
541
		if (test_bit(BR_FDB_LOCAL, &fdb->flags))
L
Linus Torvalds 已提交
542
			return 0;
543 544
		br_warn(br, "adding interface %s with same address as a received packet (addr:%pM, vlan:%u)\n",
		       source ? source->dev->name : br->dev->name, addr, vid);
545
		fdb_delete(br, fdb, true);
546
	}
L
Linus Torvalds 已提交
547

548 549
	fdb = fdb_create(br, source, addr, vid,
			 BIT(BR_FDB_LOCAL) | BIT(BR_FDB_STATIC));
550
	if (!fdb)
L
Linus Torvalds 已提交
551 552
		return -ENOMEM;

553
	fdb_add_hw_addr(br, addr);
554
	fdb_notify(br, fdb, RTM_NEWNEIGH, true);
L
Linus Torvalds 已提交
555 556 557
	return 0;
}

558
/* Add entry for local address of interface */
L
Linus Torvalds 已提交
559
int br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
560
		  const unsigned char *addr, u16 vid)
L
Linus Torvalds 已提交
561 562 563 564
{
	int ret;

	spin_lock_bh(&br->hash_lock);
565
	ret = fdb_insert(br, source, addr, vid);
L
Linus Torvalds 已提交
566 567 568 569
	spin_unlock_bh(&br->hash_lock);
	return ret;
}

570 571 572 573 574 575 576
/* returns true if the fdb was modified */
static bool __fdb_mark_active(struct net_bridge_fdb_entry *fdb)
{
	return !!(test_bit(BR_FDB_NOTIFY_INACTIVE, &fdb->flags) &&
		  test_and_clear_bit(BR_FDB_NOTIFY_INACTIVE, &fdb->flags));
}

L
Linus Torvalds 已提交
577
void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source,
578
		   const unsigned char *addr, u16 vid, unsigned long flags)
L
Linus Torvalds 已提交
579 580 581 582 583 584 585
{
	struct net_bridge_fdb_entry *fdb;

	/* some users want to always flood. */
	if (hold_time(br) == 0)
		return;

586
	fdb = fdb_find_rcu(&br->fdb_hash_tbl, addr, vid);
L
Linus Torvalds 已提交
587 588
	if (likely(fdb)) {
		/* attempt to update an entry for a local interface */
589
		if (unlikely(test_bit(BR_FDB_LOCAL, &fdb->flags))) {
590
			if (net_ratelimit())
591 592
				br_warn(br, "received packet on %s with own address as source address (addr:%pM, vlan:%u)\n",
					source->dev->name, addr, vid);
L
Linus Torvalds 已提交
593
		} else {
594
			unsigned long now = jiffies;
595 596 597 598 599 600
			bool fdb_modified = false;

			if (now != fdb->updated) {
				fdb->updated = now;
				fdb_modified = __fdb_mark_active(fdb);
			}
601

L
Linus Torvalds 已提交
602
			/* fastpath: update of existing entry */
603 604
			if (unlikely(source != fdb->dst &&
				     !test_bit(BR_FDB_STICKY, &fdb->flags))) {
605
				br_switchdev_fdb_notify(fdb, RTM_DELNEIGH);
606 607
				fdb->dst = source;
				fdb_modified = true;
608
				/* Take over HW learned entry */
609 610 611 612
				if (unlikely(test_bit(BR_FDB_ADDED_BY_EXT_LEARN,
						      &fdb->flags)))
					clear_bit(BR_FDB_ADDED_BY_EXT_LEARN,
						  &fdb->flags);
613
			}
614

615
			if (unlikely(test_bit(BR_FDB_ADDED_BY_USER, &flags)))
616
				set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
617
			if (unlikely(fdb_modified)) {
618
				trace_br_fdb_update(br, source, addr, vid, flags);
619
				fdb_notify(br, fdb, RTM_NEWNEIGH, true);
620
			}
L
Linus Torvalds 已提交
621 622
		}
	} else {
623
		spin_lock(&br->hash_lock);
624
		fdb = fdb_create(br, source, addr, vid, flags);
625
		if (fdb) {
626
			trace_br_fdb_update(br, source, addr, vid, flags);
627
			fdb_notify(br, fdb, RTM_NEWNEIGH, true);
S
stephen hemminger 已提交
628
		}
L
Linus Torvalds 已提交
629 630 631
		/* else  we lose race and someone else inserts
		 * it first, don't bother updating
		 */
632
		spin_unlock(&br->hash_lock);
L
Linus Torvalds 已提交
633 634
	}
}
635

636 637
static int fdb_to_nud(const struct net_bridge *br,
		      const struct net_bridge_fdb_entry *fdb)
638
{
639
	if (test_bit(BR_FDB_LOCAL, &fdb->flags))
640
		return NUD_PERMANENT;
641
	else if (test_bit(BR_FDB_STATIC, &fdb->flags))
642
		return NUD_NOARP;
643
	else if (has_expired(br, fdb))
644 645 646 647 648
		return NUD_STALE;
	else
		return NUD_REACHABLE;
}

649
static int fdb_fill_info(struct sk_buff *skb, const struct net_bridge *br,
650
			 const struct net_bridge_fdb_entry *fdb,
651
			 u32 portid, u32 seq, int type, unsigned int flags)
652 653 654 655 656 657
{
	unsigned long now = jiffies;
	struct nda_cacheinfo ci;
	struct nlmsghdr *nlh;
	struct ndmsg *ndm;

658
	nlh = nlmsg_put(skb, portid, seq, type, sizeof(*ndm), flags);
659 660 661 662 663 664 665
	if (nlh == NULL)
		return -EMSGSIZE;

	ndm = nlmsg_data(nlh);
	ndm->ndm_family	 = AF_BRIDGE;
	ndm->ndm_pad1    = 0;
	ndm->ndm_pad2    = 0;
666
	ndm->ndm_flags	 = 0;
667
	ndm->ndm_type	 = 0;
668
	ndm->ndm_ifindex = fdb->dst ? fdb->dst->dev->ifindex : br->dev->ifindex;
669
	ndm->ndm_state   = fdb_to_nud(br, fdb);
670

671
	if (test_bit(BR_FDB_OFFLOADED, &fdb->flags))
672
		ndm->ndm_flags |= NTF_OFFLOADED;
673
	if (test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags))
674
		ndm->ndm_flags |= NTF_EXT_LEARNED;
675
	if (test_bit(BR_FDB_STICKY, &fdb->flags))
676
		ndm->ndm_flags |= NTF_STICKY;
677

678
	if (nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->key.addr))
D
David S. Miller 已提交
679
		goto nla_put_failure;
680 681
	if (nla_put_u32(skb, NDA_MASTER, br->dev->ifindex))
		goto nla_put_failure;
682 683 684 685
	ci.ndm_used	 = jiffies_to_clock_t(now - fdb->used);
	ci.ndm_confirmed = 0;
	ci.ndm_updated	 = jiffies_to_clock_t(now - fdb->updated);
	ci.ndm_refcnt	 = 0;
D
David S. Miller 已提交
686 687
	if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
		goto nla_put_failure;
688

689 690
	if (fdb->key.vlan_id && nla_put(skb, NDA_VLAN, sizeof(u16),
					&fdb->key.vlan_id))
691 692
		goto nla_put_failure;

693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709
	if (test_bit(BR_FDB_NOTIFY, &fdb->flags)) {
		struct nlattr *nest = nla_nest_start(skb, NDA_FDB_EXT_ATTRS);
		u8 notify_bits = FDB_NOTIFY_BIT;

		if (!nest)
			goto nla_put_failure;
		if (test_bit(BR_FDB_NOTIFY_INACTIVE, &fdb->flags))
			notify_bits |= FDB_NOTIFY_INACTIVE_BIT;

		if (nla_put_u8(skb, NFEA_ACTIVITY_NOTIFY, notify_bits)) {
			nla_nest_cancel(skb, nest);
			goto nla_put_failure;
		}

		nla_nest_end(skb, nest);
	}

710 711
	nlmsg_end(skb, nlh);
	return 0;
712 713 714 715 716 717 718 719 720 721

nla_put_failure:
	nlmsg_cancel(skb, nlh);
	return -EMSGSIZE;
}

static inline size_t fdb_nlmsg_size(void)
{
	return NLMSG_ALIGN(sizeof(struct ndmsg))
		+ nla_total_size(ETH_ALEN) /* NDA_LLADDR */
722
		+ nla_total_size(sizeof(u32)) /* NDA_MASTER */
723
		+ nla_total_size(sizeof(u16)) /* NDA_VLAN */
724 725 726
		+ nla_total_size(sizeof(struct nda_cacheinfo))
		+ nla_total_size(0) /* NDA_FDB_EXT_ATTRS */
		+ nla_total_size(sizeof(u8)); /* NFEA_ACTIVITY_NOTIFY */
727 728
}

729
static int br_fdb_replay_one(struct notifier_block *nb,
730
			     const struct net_bridge_fdb_entry *fdb,
731 732
			     struct net_device *dev, unsigned long action,
			     const void *ctx)
733 734 735 736 737 738 739 740
{
	struct switchdev_notifier_fdb_info item;
	int err;

	item.addr = fdb->key.addr.addr;
	item.vid = fdb->key.vlan_id;
	item.added_by_user = test_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
	item.offloaded = test_bit(BR_FDB_OFFLOADED, &fdb->flags);
741
	item.is_local = test_bit(BR_FDB_LOCAL, &fdb->flags);
742
	item.info.dev = dev;
743
	item.info.ctx = ctx;
744

745
	err = nb->notifier_call(nb, action, &item);
746 747 748
	return notifier_to_errno(err);
}

749
int br_fdb_replay(const struct net_device *br_dev, const struct net_device *dev,
750
		  const void *ctx, bool adding, struct notifier_block *nb)
751 752 753
{
	struct net_bridge_fdb_entry *fdb;
	struct net_bridge *br;
754
	unsigned long action;
755 756 757 758 759 760 761
	int err = 0;

	if (!netif_is_bridge_master(br_dev) || !netif_is_bridge_port(dev))
		return -EINVAL;

	br = netdev_priv(br_dev);

762 763 764 765 766
	if (adding)
		action = SWITCHDEV_FDB_ADD_TO_DEVICE;
	else
		action = SWITCHDEV_FDB_DEL_TO_DEVICE;

767 768 769
	rcu_read_lock();

	hlist_for_each_entry_rcu(fdb, &br->fdb_list, fdb_node) {
770
		const struct net_bridge_port *dst = READ_ONCE(fdb->dst);
771 772 773 774 775 776
		struct net_device *dst_dev;

		dst_dev = dst ? dst->dev : br->dev;
		if (dst_dev != br_dev && dst_dev != dev)
			continue;

777
		err = br_fdb_replay_one(nb, fdb, dst_dev, action, ctx);
778 779 780 781 782 783 784 785 786 787
		if (err)
			break;
	}

	rcu_read_unlock();

	return err;
}
EXPORT_SYMBOL_GPL(br_fdb_replay);

788
static void fdb_notify(struct net_bridge *br,
789 790
		       const struct net_bridge_fdb_entry *fdb, int type,
		       bool swdev_notify)
791
{
792
	struct net *net = dev_net(br->dev);
793 794 795
	struct sk_buff *skb;
	int err = -ENOBUFS;

796 797
	if (swdev_notify)
		br_switchdev_fdb_notify(fdb, type);
798

799 800 801 802
	skb = nlmsg_new(fdb_nlmsg_size(), GFP_ATOMIC);
	if (skb == NULL)
		goto errout;

803
	err = fdb_fill_info(skb, br, fdb, 0, 0, type, 0);
804 805 806 807 808 809 810 811 812
	if (err < 0) {
		/* -EMSGSIZE implies BUG in fdb_nlmsg_size() */
		WARN_ON(err == -EMSGSIZE);
		kfree_skb(skb);
		goto errout;
	}
	rtnl_notify(skb, net, 0, RTNLGRP_NEIGH, NULL, GFP_ATOMIC);
	return;
errout:
813
	rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
814 815 816
}

/* Dump information about entries, in response to GETNEIGH */
817 818 819
int br_fdb_dump(struct sk_buff *skb,
		struct netlink_callback *cb,
		struct net_device *dev,
820
		struct net_device *filter_dev,
821
		int *idx)
822
{
823
	struct net_bridge *br = netdev_priv(dev);
824
	struct net_bridge_fdb_entry *f;
825
	int err = 0;
826

827
	if (!(dev->priv_flags & IFF_EBRIDGE))
828
		return err;
829

830 831 832
	if (!filter_dev) {
		err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx);
		if (err < 0)
833
			return err;
834
	}
835

836 837 838 839 840 841
	rcu_read_lock();
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
		if (*idx < cb->args[2])
			goto skip;
		if (filter_dev && (!f->dst || f->dst->dev != filter_dev)) {
			if (filter_dev != dev)
842
				goto skip;
843 844 845 846 847 848
			/* !f->dst is a special case for bridge
			 * It means the MAC belongs to the bridge
			 * Therefore need a little more filtering
			 * we only want to dump the !f->dst case
			 */
			if (f->dst)
849
				goto skip;
850
		}
851 852 853 854 855 856 857 858 859 860 861 862
		if (!filter_dev && f->dst)
			goto skip;

		err = fdb_fill_info(skb, br, f,
				    NETLINK_CB(cb->skb).portid,
				    cb->nlh->nlmsg_seq,
				    RTM_NEWNEIGH,
				    NLM_F_MULTI);
		if (err < 0)
			break;
skip:
		*idx += 1;
863
	}
864
	rcu_read_unlock();
865

866
	return err;
867
}
868

R
Roopa Prabhu 已提交
869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894
int br_fdb_get(struct sk_buff *skb,
	       struct nlattr *tb[],
	       struct net_device *dev,
	       const unsigned char *addr,
	       u16 vid, u32 portid, u32 seq,
	       struct netlink_ext_ack *extack)
{
	struct net_bridge *br = netdev_priv(dev);
	struct net_bridge_fdb_entry *f;
	int err = 0;

	rcu_read_lock();
	f = br_fdb_find_rcu(br, addr, vid);
	if (!f) {
		NL_SET_ERR_MSG(extack, "Fdb entry not found");
		err = -ENOENT;
		goto errout;
	}

	err = fdb_fill_info(skb, br, f, portid, seq,
			    RTM_NEWNEIGH, 0);
errout:
	rcu_read_unlock();
	return err;
}

895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
/* returns true if the fdb is modified */
static bool fdb_handle_notify(struct net_bridge_fdb_entry *fdb, u8 notify)
{
	bool modified = false;

	/* allow to mark an entry as inactive, usually done on creation */
	if ((notify & FDB_NOTIFY_INACTIVE_BIT) &&
	    !test_and_set_bit(BR_FDB_NOTIFY_INACTIVE, &fdb->flags))
		modified = true;

	if ((notify & FDB_NOTIFY_BIT) &&
	    !test_and_set_bit(BR_FDB_NOTIFY, &fdb->flags)) {
		/* enabled activity tracking */
		modified = true;
	} else if (!(notify & FDB_NOTIFY_BIT) &&
		   test_and_clear_bit(BR_FDB_NOTIFY, &fdb->flags)) {
		/* disabled activity tracking, clear notify state */
		clear_bit(BR_FDB_NOTIFY_INACTIVE, &fdb->flags);
		modified = true;
	}

	return modified;
}

S
stephen hemminger 已提交
919
/* Update (create or replace) forwarding database entry */
920
static int fdb_add_entry(struct net_bridge *br, struct net_bridge_port *source,
921 922
			 const u8 *addr, struct ndmsg *ndm, u16 flags, u16 vid,
			 struct nlattr *nfea_tb[])
923
{
924
	bool is_sticky = !!(ndm->ndm_flags & NTF_STICKY);
925
	bool refresh = !nfea_tb[NFEA_DONT_REFRESH];
926
	struct net_bridge_fdb_entry *fdb;
927
	u16 state = ndm->ndm_state;
928
	bool modified = false;
929
	u8 notify = 0;
930

931
	/* If the port cannot learn allow only local and static entries */
932
	if (source && !(state & NUD_PERMANENT) && !(state & NUD_NOARP) &&
933 934 935 936
	    !(source->state == BR_STATE_LEARNING ||
	      source->state == BR_STATE_FORWARDING))
		return -EPERM;

937 938 939 940 941 942
	if (!source && !(state & NUD_PERMANENT)) {
		pr_info("bridge: RTM_NEWNEIGH %s without NUD_PERMANENT\n",
			br->dev->name);
		return -EINVAL;
	}

943 944 945
	if (is_sticky && (state & NUD_PERMANENT))
		return -EINVAL;

946 947 948 949 950 951 952
	if (nfea_tb[NFEA_ACTIVITY_NOTIFY]) {
		notify = nla_get_u8(nfea_tb[NFEA_ACTIVITY_NOTIFY]);
		if ((notify & ~BR_FDB_NOTIFY_SETTABLE_BITS) ||
		    (notify & BR_FDB_NOTIFY_SETTABLE_BITS) == FDB_NOTIFY_INACTIVE_BIT)
			return -EINVAL;
	}

953
	fdb = br_fdb_find(br, addr, vid);
954 955 956
	if (fdb == NULL) {
		if (!(flags & NLM_F_CREATE))
			return -ENOENT;
957

958
		fdb = fdb_create(br, source, addr, vid, 0);
959 960
		if (!fdb)
			return -ENOMEM;
961 962

		modified = true;
963 964 965
	} else {
		if (flags & NLM_F_EXCL)
			return -EEXIST;
966 967 968 969 970

		if (fdb->dst != source) {
			fdb->dst = source;
			modified = true;
		}
S
stephen hemminger 已提交
971 972
	}

973
	if (fdb_to_nud(br, fdb) != state) {
974
		if (state & NUD_PERMANENT) {
975
			set_bit(BR_FDB_LOCAL, &fdb->flags);
976
			if (!test_and_set_bit(BR_FDB_STATIC, &fdb->flags))
977
				fdb_add_hw_addr(br, addr);
978
		} else if (state & NUD_NOARP) {
979
			clear_bit(BR_FDB_LOCAL, &fdb->flags);
980
			if (!test_and_set_bit(BR_FDB_STATIC, &fdb->flags))
981
				fdb_add_hw_addr(br, addr);
982
		} else {
983
			clear_bit(BR_FDB_LOCAL, &fdb->flags);
984
			if (test_and_clear_bit(BR_FDB_STATIC, &fdb->flags))
985
				fdb_del_hw_addr(br, addr);
986
		}
987

988 989
		modified = true;
	}
990

991 992
	if (is_sticky != test_bit(BR_FDB_STICKY, &fdb->flags)) {
		change_bit(BR_FDB_STICKY, &fdb->flags);
993 994 995
		modified = true;
	}

996 997 998
	if (fdb_handle_notify(fdb, notify))
		modified = true;

999
	set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
1000 1001 1002

	fdb->used = jiffies;
	if (modified) {
1003 1004
		if (refresh)
			fdb->updated = jiffies;
1005
		fdb_notify(br, fdb, RTM_NEWNEIGH, true);
1006
	}
1007 1008 1009 1010

	return 0;
}

1011 1012
static int __br_fdb_add(struct ndmsg *ndm, struct net_bridge *br,
			struct net_bridge_port *p, const unsigned char *addr,
1013
			u16 nlh_flags, u16 vid, struct nlattr *nfea_tb[])
1014 1015 1016 1017
{
	int err = 0;

	if (ndm->ndm_flags & NTF_USE) {
1018 1019 1020 1021 1022
		if (!p) {
			pr_info("bridge: RTM_NEWNEIGH %s with NTF_USE is not supported\n",
				br->dev->name);
			return -EINVAL;
		}
1023 1024 1025
		if (!nbp_state_should_learn(p))
			return 0;

1026
		local_bh_disable();
1027
		rcu_read_lock();
1028
		br_fdb_update(br, p, addr, vid, BIT(BR_FDB_ADDED_BY_USER));
1029
		rcu_read_unlock();
1030
		local_bh_enable();
1031
	} else if (ndm->ndm_flags & NTF_EXT_LEARNED) {
1032
		err = br_fdb_external_learn_add(br, p, addr, vid, true);
1033
	} else {
1034
		spin_lock_bh(&br->hash_lock);
1035
		err = fdb_add_entry(br, p, addr, ndm, nlh_flags, vid, nfea_tb);
1036
		spin_unlock_bh(&br->hash_lock);
1037 1038 1039 1040 1041
	}

	return err;
}

1042 1043
static const struct nla_policy br_nda_fdb_pol[NFEA_MAX + 1] = {
	[NFEA_ACTIVITY_NOTIFY]	= { .type = NLA_U8 },
1044
	[NFEA_DONT_REFRESH]	= { .type = NLA_FLAG },
1045 1046
};

1047
/* Add new permanent fdb entry with RTM_NEWNEIGH */
1048 1049
int br_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
	       struct net_device *dev,
1050 1051
	       const unsigned char *addr, u16 vid, u16 nlh_flags,
	       struct netlink_ext_ack *extack)
1052
{
1053
	struct nlattr *nfea_tb[NFEA_MAX + 1], *attr;
1054
	struct net_bridge_vlan_group *vg;
1055
	struct net_bridge_port *p = NULL;
1056
	struct net_bridge_vlan *v;
1057
	struct net_bridge *br = NULL;
1058
	int err = 0;
1059

1060 1061
	trace_br_fdb_add(ndm, dev, addr, vid, nlh_flags);

S
stephen hemminger 已提交
1062 1063 1064 1065 1066
	if (!(ndm->ndm_state & (NUD_PERMANENT|NUD_NOARP|NUD_REACHABLE))) {
		pr_info("bridge: RTM_NEWNEIGH with invalid state %#x\n", ndm->ndm_state);
		return -EINVAL;
	}

1067 1068 1069 1070 1071
	if (is_zero_ether_addr(addr)) {
		pr_info("bridge: RTM_NEWNEIGH with invalid ether address\n");
		return -EINVAL;
	}

1072 1073 1074 1075 1076 1077 1078 1079 1080 1081
	if (dev->priv_flags & IFF_EBRIDGE) {
		br = netdev_priv(dev);
		vg = br_vlan_group(br);
	} else {
		p = br_port_get_rtnl(dev);
		if (!p) {
			pr_info("bridge: RTM_NEWNEIGH %s not a bridge port\n",
				dev->name);
			return -EINVAL;
		}
1082
		br = p->br;
1083
		vg = nbp_vlan_group(p);
1084 1085
	}

1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
	if (tb[NDA_FDB_EXT_ATTRS]) {
		attr = tb[NDA_FDB_EXT_ATTRS];
		err = nla_parse_nested(nfea_tb, NFEA_MAX, attr,
				       br_nda_fdb_pol, extack);
		if (err)
			return err;
	} else {
		memset(nfea_tb, 0, sizeof(struct nlattr *) * (NFEA_MAX + 1));
	}

1096
	if (vid) {
1097
		v = br_vlan_find(vg, vid);
1098 1099
		if (!v || !br_vlan_should_use(v)) {
			pr_info("bridge: RTM_NEWNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
1100 1101 1102 1103
			return -EINVAL;
		}

		/* VID was specified, so use it. */
1104
		err = __br_fdb_add(ndm, br, p, addr, nlh_flags, vid, nfea_tb);
S
stephen hemminger 已提交
1105
	} else {
1106
		err = __br_fdb_add(ndm, br, p, addr, nlh_flags, 0, nfea_tb);
1107
		if (err || !vg || !vg->num_vlans)
1108 1109 1110 1111 1112 1113
			goto out;

		/* We have vlans configured on this port and user didn't
		 * specify a VLAN.  To be nice, add/update entry for every
		 * vlan on this port.
		 */
1114
		list_for_each_entry(v, &vg->vlan_list, vlist) {
1115 1116
			if (!br_vlan_should_use(v))
				continue;
1117 1118
			err = __br_fdb_add(ndm, br, p, addr, nlh_flags, v->vid,
					   nfea_tb);
1119 1120 1121
			if (err)
				goto out;
		}
S
stephen hemminger 已提交
1122
	}
1123

1124
out:
1125 1126 1127
	return err;
}

1128 1129
static int fdb_delete_by_addr_and_port(struct net_bridge *br,
				       const struct net_bridge_port *p,
1130
				       const u8 *addr, u16 vlan)
1131 1132 1133
{
	struct net_bridge_fdb_entry *fdb;

1134
	fdb = br_fdb_find(br, addr, vlan);
1135
	if (!fdb || fdb->dst != p)
1136 1137
		return -ENOENT;

1138
	fdb_delete(br, fdb, true);
1139

1140 1141 1142
	return 0;
}

1143 1144
static int __br_fdb_delete(struct net_bridge *br,
			   const struct net_bridge_port *p,
1145 1146 1147 1148
			   const unsigned char *addr, u16 vid)
{
	int err;

1149 1150 1151
	spin_lock_bh(&br->hash_lock);
	err = fdb_delete_by_addr_and_port(br, p, addr, vid);
	spin_unlock_bh(&br->hash_lock);
1152 1153 1154 1155

	return err;
}

1156
/* Remove neighbor entry with RTM_DELNEIGH */
1157 1158
int br_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
		  struct net_device *dev,
1159
		  const unsigned char *addr, u16 vid)
1160
{
1161
	struct net_bridge_vlan_group *vg;
1162
	struct net_bridge_port *p = NULL;
1163
	struct net_bridge_vlan *v;
1164
	struct net_bridge *br;
1165
	int err;
1166

1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
	if (dev->priv_flags & IFF_EBRIDGE) {
		br = netdev_priv(dev);
		vg = br_vlan_group(br);
	} else {
		p = br_port_get_rtnl(dev);
		if (!p) {
			pr_info("bridge: RTM_DELNEIGH %s not a bridge port\n",
				dev->name);
			return -EINVAL;
		}
		vg = nbp_vlan_group(p);
1178
		br = p->br;
1179 1180
	}

1181
	if (vid) {
1182 1183
		v = br_vlan_find(vg, vid);
		if (!v) {
1184
			pr_info("bridge: RTM_DELNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
1185 1186
			return -EINVAL;
		}
1187

1188
		err = __br_fdb_delete(br, p, addr, vid);
1189
	} else {
1190
		err = -ENOENT;
1191
		err &= __br_fdb_delete(br, p, addr, 0);
1192
		if (!vg || !vg->num_vlans)
1193
			return err;
1194

1195 1196 1197
		list_for_each_entry(v, &vg->vlan_list, vlist) {
			if (!br_vlan_should_use(v))
				continue;
1198
			err &= __br_fdb_delete(br, p, addr, v->vid);
1199
		}
1200
	}
1201

1202 1203
	return err;
}
1204 1205 1206

int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1207
	struct net_bridge_fdb_entry *f, *tmp;
1208
	int err = 0;
1209 1210 1211

	ASSERT_RTNL();

1212 1213 1214 1215
	/* the key here is that static entries change only under rtnl */
	rcu_read_lock();
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
		/* We only care for static entries */
1216
		if (!test_bit(BR_FDB_STATIC, &f->flags))
1217 1218 1219 1220
			continue;
		err = dev_uc_add(p->dev, f->key.addr.addr);
		if (err)
			goto rollback;
1221
	}
1222 1223
done:
	rcu_read_unlock();
1224

1225
	return err;
1226

1227 1228 1229
rollback:
	hlist_for_each_entry_rcu(tmp, &br->fdb_list, fdb_node) {
		/* We only care for static entries */
1230
		if (!test_bit(BR_FDB_STATIC, &tmp->flags))
1231 1232 1233 1234
			continue;
		if (tmp == f)
			break;
		dev_uc_del(p->dev, tmp->key.addr.addr);
1235
	}
1236 1237

	goto done;
1238 1239 1240 1241
}

void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1242
	struct net_bridge_fdb_entry *f;
1243 1244 1245

	ASSERT_RTNL();

1246 1247 1248
	rcu_read_lock();
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
		/* We only care for static entries */
1249
		if (!test_bit(BR_FDB_STATIC, &f->flags))
1250
			continue;
1251

1252
		dev_uc_del(p->dev, f->key.addr.addr);
1253
	}
1254
	rcu_read_unlock();
1255
}
1256

1257
int br_fdb_external_learn_add(struct net_bridge *br, struct net_bridge_port *p,
1258 1259
			      const unsigned char *addr, u16 vid,
			      bool swdev_notify)
1260 1261
{
	struct net_bridge_fdb_entry *fdb;
1262
	bool modified = false;
1263 1264
	int err = 0;

1265 1266
	trace_br_fdb_external_learn_add(br, p, addr, vid);

1267 1268
	spin_lock_bh(&br->hash_lock);

1269
	fdb = br_fdb_find(br, addr, vid);
1270
	if (!fdb) {
1271 1272 1273 1274 1275
		unsigned long flags = BIT(BR_FDB_ADDED_BY_EXT_LEARN);

		if (swdev_notify)
			flags |= BIT(BR_FDB_ADDED_BY_USER);
		fdb = fdb_create(br, p, addr, vid, flags);
1276 1277 1278 1279
		if (!fdb) {
			err = -ENOMEM;
			goto err_unlock;
		}
1280
		fdb_notify(br, fdb, RTM_NEWNEIGH, swdev_notify);
1281
	} else {
1282
		fdb->updated = jiffies;
1283 1284 1285 1286 1287 1288

		if (fdb->dst != p) {
			fdb->dst = p;
			modified = true;
		}

1289
		if (test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags)) {
1290 1291
			/* Refresh entry */
			fdb->used = jiffies;
1292
		} else if (!test_bit(BR_FDB_ADDED_BY_USER, &fdb->flags)) {
1293
			/* Take over SW learned entry */
1294
			set_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags);
1295 1296 1297
			modified = true;
		}

1298
		if (swdev_notify)
1299
			set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
1300

1301
		if (modified)
1302
			fdb_notify(br, fdb, RTM_NEWNEIGH, swdev_notify);
1303 1304 1305 1306 1307 1308 1309 1310
	}

err_unlock:
	spin_unlock_bh(&br->hash_lock);

	return err;
}

1311
int br_fdb_external_learn_del(struct net_bridge *br, struct net_bridge_port *p,
1312 1313
			      const unsigned char *addr, u16 vid,
			      bool swdev_notify)
1314 1315 1316 1317 1318 1319
{
	struct net_bridge_fdb_entry *fdb;
	int err = 0;

	spin_lock_bh(&br->hash_lock);

1320
	fdb = br_fdb_find(br, addr, vid);
1321
	if (fdb && test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags))
1322
		fdb_delete(br, fdb, swdev_notify);
1323 1324 1325 1326 1327 1328 1329
	else
		err = -ENOENT;

	spin_unlock_bh(&br->hash_lock);

	return err;
}
1330 1331

void br_fdb_offloaded_set(struct net_bridge *br, struct net_bridge_port *p,
1332
			  const unsigned char *addr, u16 vid, bool offloaded)
1333 1334 1335 1336 1337 1338
{
	struct net_bridge_fdb_entry *fdb;

	spin_lock_bh(&br->hash_lock);

	fdb = br_fdb_find(br, addr, vid);
1339 1340
	if (fdb && offloaded != test_bit(BR_FDB_OFFLOADED, &fdb->flags))
		change_bit(BR_FDB_OFFLOADED, &fdb->flags);
1341 1342 1343

	spin_unlock_bh(&br->hash_lock);
}
P
Petr Machata 已提交
1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358

void br_fdb_clear_offload(const struct net_device *dev, u16 vid)
{
	struct net_bridge_fdb_entry *f;
	struct net_bridge_port *p;

	ASSERT_RTNL();

	p = br_port_get_rtnl(dev);
	if (!p)
		return;

	spin_lock_bh(&p->br->hash_lock);
	hlist_for_each_entry(f, &p->br->fdb_list, fdb_node) {
		if (f->dst == p && f->key.vlan_id == vid)
1359
			clear_bit(BR_FDB_OFFLOADED, &f->flags);
P
Petr Machata 已提交
1360 1361 1362 1363
	}
	spin_unlock_bh(&p->br->hash_lock);
}
EXPORT_SYMBOL_GPL(br_fdb_clear_offload);