br_fdb.c 32.4 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 void fdb_notify(struct net_bridge *br,
730 731
		       const struct net_bridge_fdb_entry *fdb, int type,
		       bool swdev_notify)
732
{
733
	struct net *net = dev_net(br->dev);
734 735 736
	struct sk_buff *skb;
	int err = -ENOBUFS;

737 738
	if (swdev_notify)
		br_switchdev_fdb_notify(fdb, type);
739

740 741 742 743
	skb = nlmsg_new(fdb_nlmsg_size(), GFP_ATOMIC);
	if (skb == NULL)
		goto errout;

744
	err = fdb_fill_info(skb, br, fdb, 0, 0, type, 0);
745 746 747 748 749 750 751 752 753
	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:
754
	rtnl_set_sk_err(net, RTNLGRP_NEIGH, err);
755 756 757
}

/* Dump information about entries, in response to GETNEIGH */
758 759 760
int br_fdb_dump(struct sk_buff *skb,
		struct netlink_callback *cb,
		struct net_device *dev,
761
		struct net_device *filter_dev,
762
		int *idx)
763
{
764
	struct net_bridge *br = netdev_priv(dev);
765
	struct net_bridge_fdb_entry *f;
766
	int err = 0;
767

768
	if (!(dev->priv_flags & IFF_EBRIDGE))
769
		return err;
770

771 772 773
	if (!filter_dev) {
		err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx);
		if (err < 0)
774
			return err;
775
	}
776

777 778 779 780 781 782
	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)
783
				goto skip;
784 785 786 787 788 789
			/* !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)
790
				goto skip;
791
		}
792 793 794 795 796 797 798 799 800 801 802 803
		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;
804
	}
805
	rcu_read_unlock();
806

807
	return err;
808
}
809

R
Roopa Prabhu 已提交
810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835
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;
}

836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859
/* 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 已提交
860
/* Update (create or replace) forwarding database entry */
861
static int fdb_add_entry(struct net_bridge *br, struct net_bridge_port *source,
862 863
			 const u8 *addr, struct ndmsg *ndm, u16 flags, u16 vid,
			 struct nlattr *nfea_tb[])
864
{
865
	bool is_sticky = !!(ndm->ndm_flags & NTF_STICKY);
866
	bool refresh = !nfea_tb[NFEA_DONT_REFRESH];
867
	struct net_bridge_fdb_entry *fdb;
868
	u16 state = ndm->ndm_state;
869
	bool modified = false;
870
	u8 notify = 0;
871

872
	/* If the port cannot learn allow only local and static entries */
873
	if (source && !(state & NUD_PERMANENT) && !(state & NUD_NOARP) &&
874 875 876 877
	    !(source->state == BR_STATE_LEARNING ||
	      source->state == BR_STATE_FORWARDING))
		return -EPERM;

878 879 880 881 882 883
	if (!source && !(state & NUD_PERMANENT)) {
		pr_info("bridge: RTM_NEWNEIGH %s without NUD_PERMANENT\n",
			br->dev->name);
		return -EINVAL;
	}

884 885 886
	if (is_sticky && (state & NUD_PERMANENT))
		return -EINVAL;

887 888 889 890 891 892 893
	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;
	}

894
	fdb = br_fdb_find(br, addr, vid);
895 896 897
	if (fdb == NULL) {
		if (!(flags & NLM_F_CREATE))
			return -ENOENT;
898

899
		fdb = fdb_create(br, source, addr, vid, 0);
900 901
		if (!fdb)
			return -ENOMEM;
902 903

		modified = true;
904 905 906
	} else {
		if (flags & NLM_F_EXCL)
			return -EEXIST;
907 908 909 910 911

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

914
	if (fdb_to_nud(br, fdb) != state) {
915
		if (state & NUD_PERMANENT) {
916
			set_bit(BR_FDB_LOCAL, &fdb->flags);
917
			if (!test_and_set_bit(BR_FDB_STATIC, &fdb->flags))
918
				fdb_add_hw_addr(br, addr);
919
		} else if (state & NUD_NOARP) {
920
			clear_bit(BR_FDB_LOCAL, &fdb->flags);
921
			if (!test_and_set_bit(BR_FDB_STATIC, &fdb->flags))
922
				fdb_add_hw_addr(br, addr);
923
		} else {
924
			clear_bit(BR_FDB_LOCAL, &fdb->flags);
925
			if (test_and_clear_bit(BR_FDB_STATIC, &fdb->flags))
926
				fdb_del_hw_addr(br, addr);
927
		}
928

929 930
		modified = true;
	}
931

932 933
	if (is_sticky != test_bit(BR_FDB_STICKY, &fdb->flags)) {
		change_bit(BR_FDB_STICKY, &fdb->flags);
934 935 936
		modified = true;
	}

937 938 939
	if (fdb_handle_notify(fdb, notify))
		modified = true;

940
	set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
941 942 943

	fdb->used = jiffies;
	if (modified) {
944 945
		if (refresh)
			fdb->updated = jiffies;
946
		fdb_notify(br, fdb, RTM_NEWNEIGH, true);
947
	}
948 949 950 951

	return 0;
}

952 953
static int __br_fdb_add(struct ndmsg *ndm, struct net_bridge *br,
			struct net_bridge_port *p, const unsigned char *addr,
954
			u16 nlh_flags, u16 vid, struct nlattr *nfea_tb[])
955 956 957 958
{
	int err = 0;

	if (ndm->ndm_flags & NTF_USE) {
959 960 961 962 963
		if (!p) {
			pr_info("bridge: RTM_NEWNEIGH %s with NTF_USE is not supported\n",
				br->dev->name);
			return -EINVAL;
		}
964 965 966
		if (!nbp_state_should_learn(p))
			return 0;

967
		local_bh_disable();
968
		rcu_read_lock();
969
		br_fdb_update(br, p, addr, vid, BIT(BR_FDB_ADDED_BY_USER));
970
		rcu_read_unlock();
971
		local_bh_enable();
972
	} else if (ndm->ndm_flags & NTF_EXT_LEARNED) {
973
		err = br_fdb_external_learn_add(br, p, addr, vid, true);
974
	} else {
975
		spin_lock_bh(&br->hash_lock);
976
		err = fdb_add_entry(br, p, addr, ndm, nlh_flags, vid, nfea_tb);
977
		spin_unlock_bh(&br->hash_lock);
978 979 980 981 982
	}

	return err;
}

983 984
static const struct nla_policy br_nda_fdb_pol[NFEA_MAX + 1] = {
	[NFEA_ACTIVITY_NOTIFY]	= { .type = NLA_U8 },
985
	[NFEA_DONT_REFRESH]	= { .type = NLA_FLAG },
986 987
};

988
/* Add new permanent fdb entry with RTM_NEWNEIGH */
989 990
int br_fdb_add(struct ndmsg *ndm, struct nlattr *tb[],
	       struct net_device *dev,
991 992
	       const unsigned char *addr, u16 vid, u16 nlh_flags,
	       struct netlink_ext_ack *extack)
993
{
994
	struct nlattr *nfea_tb[NFEA_MAX + 1], *attr;
995
	struct net_bridge_vlan_group *vg;
996
	struct net_bridge_port *p = NULL;
997
	struct net_bridge_vlan *v;
998
	struct net_bridge *br = NULL;
999
	int err = 0;
1000

1001 1002
	trace_br_fdb_add(ndm, dev, addr, vid, nlh_flags);

S
stephen hemminger 已提交
1003 1004 1005 1006 1007
	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;
	}

1008 1009 1010 1011 1012
	if (is_zero_ether_addr(addr)) {
		pr_info("bridge: RTM_NEWNEIGH with invalid ether address\n");
		return -EINVAL;
	}

1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
	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;
		}
1023
		br = p->br;
1024
		vg = nbp_vlan_group(p);
1025 1026
	}

1027 1028 1029 1030 1031 1032 1033 1034 1035 1036
	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));
	}

1037
	if (vid) {
1038
		v = br_vlan_find(vg, vid);
1039 1040
		if (!v || !br_vlan_should_use(v)) {
			pr_info("bridge: RTM_NEWNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
1041 1042 1043 1044
			return -EINVAL;
		}

		/* VID was specified, so use it. */
1045
		err = __br_fdb_add(ndm, br, p, addr, nlh_flags, vid, nfea_tb);
S
stephen hemminger 已提交
1046
	} else {
1047
		err = __br_fdb_add(ndm, br, p, addr, nlh_flags, 0, nfea_tb);
1048
		if (err || !vg || !vg->num_vlans)
1049 1050 1051 1052 1053 1054
			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.
		 */
1055
		list_for_each_entry(v, &vg->vlan_list, vlist) {
1056 1057
			if (!br_vlan_should_use(v))
				continue;
1058 1059
			err = __br_fdb_add(ndm, br, p, addr, nlh_flags, v->vid,
					   nfea_tb);
1060 1061 1062
			if (err)
				goto out;
		}
S
stephen hemminger 已提交
1063
	}
1064

1065
out:
1066 1067 1068
	return err;
}

1069 1070
static int fdb_delete_by_addr_and_port(struct net_bridge *br,
				       const struct net_bridge_port *p,
1071
				       const u8 *addr, u16 vlan)
1072 1073 1074
{
	struct net_bridge_fdb_entry *fdb;

1075
	fdb = br_fdb_find(br, addr, vlan);
1076
	if (!fdb || fdb->dst != p)
1077 1078
		return -ENOENT;

1079
	fdb_delete(br, fdb, true);
1080

1081 1082 1083
	return 0;
}

1084 1085
static int __br_fdb_delete(struct net_bridge *br,
			   const struct net_bridge_port *p,
1086 1087 1088 1089
			   const unsigned char *addr, u16 vid)
{
	int err;

1090 1091 1092
	spin_lock_bh(&br->hash_lock);
	err = fdb_delete_by_addr_and_port(br, p, addr, vid);
	spin_unlock_bh(&br->hash_lock);
1093 1094 1095 1096

	return err;
}

1097
/* Remove neighbor entry with RTM_DELNEIGH */
1098 1099
int br_fdb_delete(struct ndmsg *ndm, struct nlattr *tb[],
		  struct net_device *dev,
1100
		  const unsigned char *addr, u16 vid)
1101
{
1102
	struct net_bridge_vlan_group *vg;
1103
	struct net_bridge_port *p = NULL;
1104
	struct net_bridge_vlan *v;
1105
	struct net_bridge *br;
1106
	int err;
1107

1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118
	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);
1119
		br = p->br;
1120 1121
	}

1122
	if (vid) {
1123 1124
		v = br_vlan_find(vg, vid);
		if (!v) {
1125
			pr_info("bridge: RTM_DELNEIGH with unconfigured vlan %d on %s\n", vid, dev->name);
1126 1127
			return -EINVAL;
		}
1128

1129
		err = __br_fdb_delete(br, p, addr, vid);
1130
	} else {
1131
		err = -ENOENT;
1132
		err &= __br_fdb_delete(br, p, addr, 0);
1133
		if (!vg || !vg->num_vlans)
1134
			return err;
1135

1136 1137 1138
		list_for_each_entry(v, &vg->vlan_list, vlist) {
			if (!br_vlan_should_use(v))
				continue;
1139
			err &= __br_fdb_delete(br, p, addr, v->vid);
1140
		}
1141
	}
1142

1143 1144
	return err;
}
1145 1146 1147

int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1148
	struct net_bridge_fdb_entry *f, *tmp;
1149
	int err = 0;
1150 1151 1152

	ASSERT_RTNL();

1153 1154 1155 1156
	/* 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 */
1157
		if (!test_bit(BR_FDB_STATIC, &f->flags))
1158 1159 1160 1161
			continue;
		err = dev_uc_add(p->dev, f->key.addr.addr);
		if (err)
			goto rollback;
1162
	}
1163 1164
done:
	rcu_read_unlock();
1165

1166
	return err;
1167

1168 1169 1170
rollback:
	hlist_for_each_entry_rcu(tmp, &br->fdb_list, fdb_node) {
		/* We only care for static entries */
1171
		if (!test_bit(BR_FDB_STATIC, &tmp->flags))
1172 1173 1174 1175
			continue;
		if (tmp == f)
			break;
		dev_uc_del(p->dev, tmp->key.addr.addr);
1176
	}
1177 1178

	goto done;
1179 1180 1181 1182
}

void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1183
	struct net_bridge_fdb_entry *f;
1184 1185 1186

	ASSERT_RTNL();

1187 1188 1189
	rcu_read_lock();
	hlist_for_each_entry_rcu(f, &br->fdb_list, fdb_node) {
		/* We only care for static entries */
1190
		if (!test_bit(BR_FDB_STATIC, &f->flags))
1191
			continue;
1192

1193
		dev_uc_del(p->dev, f->key.addr.addr);
1194
	}
1195
	rcu_read_unlock();
1196
}
1197

1198
int br_fdb_external_learn_add(struct net_bridge *br, struct net_bridge_port *p,
1199 1200
			      const unsigned char *addr, u16 vid,
			      bool swdev_notify)
1201 1202
{
	struct net_bridge_fdb_entry *fdb;
1203
	bool modified = false;
1204 1205
	int err = 0;

1206 1207
	trace_br_fdb_external_learn_add(br, p, addr, vid);

1208 1209
	spin_lock_bh(&br->hash_lock);

1210
	fdb = br_fdb_find(br, addr, vid);
1211
	if (!fdb) {
1212 1213 1214 1215 1216
		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);
1217 1218 1219 1220
		if (!fdb) {
			err = -ENOMEM;
			goto err_unlock;
		}
1221
		fdb_notify(br, fdb, RTM_NEWNEIGH, swdev_notify);
1222
	} else {
1223
		fdb->updated = jiffies;
1224 1225 1226 1227 1228 1229

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

1230
		if (test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags)) {
1231 1232
			/* Refresh entry */
			fdb->used = jiffies;
1233
		} else if (!test_bit(BR_FDB_ADDED_BY_USER, &fdb->flags)) {
1234
			/* Take over SW learned entry */
1235
			set_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags);
1236 1237 1238
			modified = true;
		}

1239
		if (swdev_notify)
1240
			set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
1241

1242
		if (modified)
1243
			fdb_notify(br, fdb, RTM_NEWNEIGH, swdev_notify);
1244 1245 1246 1247 1248 1249 1250 1251
	}

err_unlock:
	spin_unlock_bh(&br->hash_lock);

	return err;
}

1252
int br_fdb_external_learn_del(struct net_bridge *br, struct net_bridge_port *p,
1253 1254
			      const unsigned char *addr, u16 vid,
			      bool swdev_notify)
1255 1256 1257 1258 1259 1260
{
	struct net_bridge_fdb_entry *fdb;
	int err = 0;

	spin_lock_bh(&br->hash_lock);

1261
	fdb = br_fdb_find(br, addr, vid);
1262
	if (fdb && test_bit(BR_FDB_ADDED_BY_EXT_LEARN, &fdb->flags))
1263
		fdb_delete(br, fdb, swdev_notify);
1264 1265 1266 1267 1268 1269 1270
	else
		err = -ENOENT;

	spin_unlock_bh(&br->hash_lock);

	return err;
}
1271 1272

void br_fdb_offloaded_set(struct net_bridge *br, struct net_bridge_port *p,
1273
			  const unsigned char *addr, u16 vid, bool offloaded)
1274 1275 1276 1277 1278 1279
{
	struct net_bridge_fdb_entry *fdb;

	spin_lock_bh(&br->hash_lock);

	fdb = br_fdb_find(br, addr, vid);
1280 1281
	if (fdb && offloaded != test_bit(BR_FDB_OFFLOADED, &fdb->flags))
		change_bit(BR_FDB_OFFLOADED, &fdb->flags);
1282 1283 1284

	spin_unlock_bh(&br->hash_lock);
}
P
Petr Machata 已提交
1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299

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)
1300
			clear_bit(BR_FDB_OFFLOADED, &f->flags);
P
Petr Machata 已提交
1301 1302 1303 1304
	}
	spin_unlock_bh(&p->br->hash_lock);
}
EXPORT_SYMBOL_GPL(br_fdb_clear_offload);