br_fdb.c 32.2 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 416
			if (test_bit(BR_FDB_STATIC, &f->flags) ||
			    (vid && f->key.vlan_id != vid))
L
Linus Torvalds 已提交
417 418
				continue;

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

I
Igor Maravić 已提交
427
#if IS_ENABLED(CONFIG_ATM_LANE)
428 429 430
/* 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 已提交
431 432
{
	struct net_bridge_fdb_entry *fdb;
433
	struct net_bridge_port *port;
434 435
	int ret;

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

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

/*
452
 * Fill buffer with forwarding table records in
L
Linus Torvalds 已提交
453 454 455 456 457 458
 * 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;
459 460
	struct __fdb_entry *fe = buf;
	int num = 0;
L
Linus Torvalds 已提交
461 462 463 464

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

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

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

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

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

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

484 485 486
		/* 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;
487

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

	return num;
}

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

	fdb = kmem_cache_alloc(br_fdb_cache, GFP_ATOMIC);
	if (fdb) {
509
		memcpy(fdb->key.addr.addr, addr, ETH_ALEN);
L
Linus Torvalds 已提交
510
		fdb->dst = source;
511
		fdb->key.vlan_id = vid;
512
		fdb->flags = flags;
513
		fdb->updated = fdb->used = jiffies;
514 515 516 517 518 519 520 521
		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 已提交
522 523 524 525 526
	}
	return fdb;
}

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

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

534
	fdb = br_fdb_find(br, addr, vid);
L
Linus Torvalds 已提交
535
	if (fdb) {
536
		/* it is okay to have multiple ports with same
L
Linus Torvalds 已提交
537 538
		 * address, just use the first one.
		 */
539
		if (test_bit(BR_FDB_LOCAL, &fdb->flags))
L
Linus Torvalds 已提交
540
			return 0;
541 542
		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);
543
		fdb_delete(br, fdb, true);
544
	}
L
Linus Torvalds 已提交
545

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

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

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

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

568 569 570 571 572 573 574
/* 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 已提交
575
void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source,
576
		   const unsigned char *addr, u16 vid, unsigned long flags)
L
Linus Torvalds 已提交
577 578 579 580 581 582 583
{
	struct net_bridge_fdb_entry *fdb;

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

584
	fdb = fdb_find_rcu(&br->fdb_hash_tbl, addr, vid);
L
Linus Torvalds 已提交
585 586
	if (likely(fdb)) {
		/* attempt to update an entry for a local interface */
587
		if (unlikely(test_bit(BR_FDB_LOCAL, &fdb->flags))) {
588
			if (net_ratelimit())
589 590
				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 已提交
591
		} else {
592
			unsigned long now = jiffies;
593 594 595 596 597 598
			bool fdb_modified = false;

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

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

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

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

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

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

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

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

675
	if (nla_put(skb, NDA_LLADDR, ETH_ALEN, &fdb->key.addr))
D
David S. Miller 已提交
676
		goto nla_put_failure;
677 678
	if (nla_put_u32(skb, NDA_MASTER, br->dev->ifindex))
		goto nla_put_failure;
679 680 681 682
	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 已提交
683 684
	if (nla_put(skb, NDA_CACHEINFO, sizeof(ci), &ci))
		goto nla_put_failure;
685

686 687
	if (fdb->key.vlan_id && nla_put(skb, NDA_VLAN, sizeof(u16),
					&fdb->key.vlan_id))
688 689
		goto nla_put_failure;

690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
	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);
	}

707 708
	nlmsg_end(skb, nlh);
	return 0;
709 710 711 712 713 714 715 716 717 718

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 */
719
		+ nla_total_size(sizeof(u32)) /* NDA_MASTER */
720
		+ nla_total_size(sizeof(u16)) /* NDA_VLAN */
721 722 723
		+ nla_total_size(sizeof(struct nda_cacheinfo))
		+ nla_total_size(0) /* NDA_FDB_EXT_ATTRS */
		+ nla_total_size(sizeof(u8)); /* NFEA_ACTIVITY_NOTIFY */
724 725
}

726
static void fdb_notify(struct net_bridge *br,
727 728
		       const struct net_bridge_fdb_entry *fdb, int type,
		       bool swdev_notify)
729
{
730
	struct net *net = dev_net(br->dev);
731 732 733
	struct sk_buff *skb;
	int err = -ENOBUFS;

734 735
	if (swdev_notify)
		br_switchdev_fdb_notify(fdb, type);
736

737 738 739 740
	skb = nlmsg_new(fdb_nlmsg_size(), GFP_ATOMIC);
	if (skb == NULL)
		goto errout;

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

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

765
	if (!(dev->priv_flags & IFF_EBRIDGE))
766
		return err;
767

768 769 770
	if (!filter_dev) {
		err = ndo_dflt_fdb_dump(skb, cb, dev, NULL, idx);
		if (err < 0)
771
			return err;
772
	}
773

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

804
	return err;
805
}
806

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

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

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

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

881 882 883
	if (is_sticky && (state & NUD_PERMANENT))
		return -EINVAL;

884 885 886 887 888 889 890
	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;
	}

891
	fdb = br_fdb_find(br, addr, vid);
892 893 894
	if (fdb == NULL) {
		if (!(flags & NLM_F_CREATE))
			return -ENOENT;
895

896
		fdb = fdb_create(br, source, addr, vid, 0);
897 898
		if (!fdb)
			return -ENOMEM;
899 900

		modified = true;
901 902 903
	} else {
		if (flags & NLM_F_EXCL)
			return -EEXIST;
904 905 906 907 908

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

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

926 927
		modified = true;
	}
928

929 930
	if (is_sticky != test_bit(BR_FDB_STICKY, &fdb->flags)) {
		change_bit(BR_FDB_STICKY, &fdb->flags);
931 932 933
		modified = true;
	}

934 935 936
	if (fdb_handle_notify(fdb, notify))
		modified = true;

937
	set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
938 939 940

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

	return 0;
}

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

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

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

	return err;
}

980 981
static const struct nla_policy br_nda_fdb_pol[NFEA_MAX + 1] = {
	[NFEA_ACTIVITY_NOTIFY]	= { .type = NLA_U8 },
982
	[NFEA_DONT_REFRESH]	= { .type = NLA_FLAG },
983 984
};

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

998 999
	trace_br_fdb_add(ndm, dev, addr, vid, nlh_flags);

S
stephen hemminger 已提交
1000 1001 1002 1003 1004
	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;
	}

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

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

1024 1025 1026 1027 1028 1029 1030 1031 1032 1033
	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));
	}

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

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

1062
out:
1063 1064 1065
	return err;
}

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

1072
	fdb = br_fdb_find(br, addr, vlan);
1073
	if (!fdb || fdb->dst != p)
1074 1075
		return -ENOENT;

1076
	fdb_delete(br, fdb, true);
1077

1078 1079 1080
	return 0;
}

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

1087 1088 1089
	spin_lock_bh(&br->hash_lock);
	err = fdb_delete_by_addr_and_port(br, p, addr, vid);
	spin_unlock_bh(&br->hash_lock);
1090 1091 1092 1093

	return err;
}

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

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

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

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

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

1140 1141
	return err;
}
1142 1143 1144

int br_fdb_sync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1145
	struct net_bridge_fdb_entry *f, *tmp;
1146
	int err = 0;
1147 1148 1149

	ASSERT_RTNL();

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

1163
	return err;
1164

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

	goto done;
1176 1177 1178 1179
}

void br_fdb_unsync_static(struct net_bridge *br, struct net_bridge_port *p)
{
1180
	struct net_bridge_fdb_entry *f;
1181 1182 1183

	ASSERT_RTNL();

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

1190
		dev_uc_del(p->dev, f->key.addr.addr);
1191
	}
1192
	rcu_read_unlock();
1193
}
1194

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

1203 1204
	trace_br_fdb_external_learn_add(br, p, addr, vid);

1205 1206
	spin_lock_bh(&br->hash_lock);

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

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

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

1236
		if (swdev_notify)
1237
			set_bit(BR_FDB_ADDED_BY_USER, &fdb->flags);
1238

1239
		if (modified)
1240
			fdb_notify(br, fdb, RTM_NEWNEIGH, swdev_notify);
1241 1242 1243 1244 1245 1246 1247 1248
	}

err_unlock:
	spin_unlock_bh(&br->hash_lock);

	return err;
}

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

	spin_lock_bh(&br->hash_lock);

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

	spin_unlock_bh(&br->hash_lock);

	return err;
}
1268 1269

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

	spin_lock_bh(&br->hash_lock);

	fdb = br_fdb_find(br, addr, vid);
1277 1278
	if (fdb && offloaded != test_bit(BR_FDB_OFFLOADED, &fdb->flags))
		change_bit(BR_FDB_OFFLOADED, &fdb->flags);
1279 1280 1281

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

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