3 * Linux ethernet bridge
6 * Lennert Buytenhek <buytenh@gnu.org>
8 * $Id: br_fdb.c,v 1.6 2002/01/17 00:57:07 davem Exp $
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License
12 * as published by the Free Software Foundation; either version
13 * 2 of the License, or (at your option) any later version.
16 #include <linux/kernel.h>
17 #include <linux/init.h>
18 #include <linux/spinlock.h>
19 #include <linux/times.h>
20 #include <linux/netdevice.h>
21 #include <linux/etherdevice.h>
22 #include <linux/jhash.h>
23 #include <asm/atomic.h>
24 #include "br_private.h"
26 static struct kmem_cache
*br_fdb_cache __read_mostly
;
27 static int fdb_insert(struct net_bridge
*br
, struct net_bridge_port
*source
,
28 const unsigned char *addr
);
30 void __init
br_fdb_init(void)
32 br_fdb_cache
= kmem_cache_create("bridge_fdb_cache",
33 sizeof(struct net_bridge_fdb_entry
),
35 SLAB_HWCACHE_ALIGN
, NULL
, NULL
);
38 void __exit
br_fdb_fini(void)
40 kmem_cache_destroy(br_fdb_cache
);
44 /* if topology_changing then use forward_delay (default 15 sec)
45 * otherwise keep longer (default 5 minutes)
47 static __inline__
unsigned long hold_time(const struct net_bridge
*br
)
49 return br
->topology_change
? br
->forward_delay
: br
->ageing_time
;
52 static __inline__
int has_expired(const struct net_bridge
*br
,
53 const struct net_bridge_fdb_entry
*fdb
)
55 return !fdb
->is_static
56 && time_before_eq(fdb
->ageing_timer
+ hold_time(br
), jiffies
);
59 static __inline__
int br_mac_hash(const unsigned char *mac
)
61 return jhash(mac
, ETH_ALEN
, 0) & (BR_HASH_SIZE
- 1);
64 static __inline__
void fdb_delete(struct net_bridge_fdb_entry
*f
)
66 hlist_del_rcu(&f
->hlist
);
70 void br_fdb_changeaddr(struct net_bridge_port
*p
, const unsigned char *newaddr
)
72 struct net_bridge
*br
= p
->br
;
75 spin_lock_bh(&br
->hash_lock
);
77 /* Search all chains since old address/hash is unknown */
78 for (i
= 0; i
< BR_HASH_SIZE
; i
++) {
80 hlist_for_each(h
, &br
->hash
[i
]) {
81 struct net_bridge_fdb_entry
*f
;
83 f
= hlist_entry(h
, struct net_bridge_fdb_entry
, hlist
);
84 if (f
->dst
== p
&& f
->is_local
) {
85 /* maybe another port has same hw addr? */
86 struct net_bridge_port
*op
;
87 list_for_each_entry(op
, &br
->port_list
, list
) {
89 !compare_ether_addr(op
->dev
->dev_addr
,
103 /* insert new address, may fail if invalid address or dup. */
104 fdb_insert(br
, p
, newaddr
);
106 spin_unlock_bh(&br
->hash_lock
);
109 void br_fdb_cleanup(unsigned long _data
)
111 struct net_bridge
*br
= (struct net_bridge
*)_data
;
112 unsigned long delay
= hold_time(br
);
115 spin_lock_bh(&br
->hash_lock
);
116 for (i
= 0; i
< BR_HASH_SIZE
; i
++) {
117 struct net_bridge_fdb_entry
*f
;
118 struct hlist_node
*h
, *n
;
120 hlist_for_each_entry_safe(f
, h
, n
, &br
->hash
[i
], hlist
) {
122 time_before_eq(f
->ageing_timer
+ delay
, jiffies
))
126 spin_unlock_bh(&br
->hash_lock
);
128 mod_timer(&br
->gc_timer
, jiffies
+ HZ
/10);
132 void br_fdb_delete_by_port(struct net_bridge
*br
,
133 const struct net_bridge_port
*p
,
138 spin_lock_bh(&br
->hash_lock
);
139 for (i
= 0; i
< BR_HASH_SIZE
; i
++) {
140 struct hlist_node
*h
, *g
;
142 hlist_for_each_safe(h
, g
, &br
->hash
[i
]) {
143 struct net_bridge_fdb_entry
*f
144 = hlist_entry(h
, struct net_bridge_fdb_entry
, hlist
);
148 if (f
->is_static
&& !do_all
)
151 * if multiple ports all have the same device address
152 * then when one port is deleted, assign
153 * the local entry to other port
156 struct net_bridge_port
*op
;
157 list_for_each_entry(op
, &br
->port_list
, list
) {
159 !compare_ether_addr(op
->dev
->dev_addr
,
171 spin_unlock_bh(&br
->hash_lock
);
174 /* No locking or refcounting, assumes caller has no preempt (rcu_read_lock) */
175 struct net_bridge_fdb_entry
*__br_fdb_get(struct net_bridge
*br
,
176 const unsigned char *addr
)
178 struct hlist_node
*h
;
179 struct net_bridge_fdb_entry
*fdb
;
181 hlist_for_each_entry_rcu(fdb
, h
, &br
->hash
[br_mac_hash(addr
)], hlist
) {
182 if (!compare_ether_addr(fdb
->addr
.addr
, addr
)) {
183 if (unlikely(has_expired(br
, fdb
)))
192 /* Interface used by ATM hook that keeps a ref count */
193 struct net_bridge_fdb_entry
*br_fdb_get(struct net_bridge
*br
,
196 struct net_bridge_fdb_entry
*fdb
;
199 fdb
= __br_fdb_get(br
, addr
);
201 atomic_inc(&fdb
->use_count
);
206 static void fdb_rcu_free(struct rcu_head
*head
)
208 struct net_bridge_fdb_entry
*ent
209 = container_of(head
, struct net_bridge_fdb_entry
, rcu
);
210 kmem_cache_free(br_fdb_cache
, ent
);
213 /* Set entry up for deletion with RCU */
214 void br_fdb_put(struct net_bridge_fdb_entry
*ent
)
216 if (atomic_dec_and_test(&ent
->use_count
))
217 call_rcu(&ent
->rcu
, fdb_rcu_free
);
221 * Fill buffer with forwarding table records in
224 int br_fdb_fillbuf(struct net_bridge
*br
, void *buf
,
225 unsigned long maxnum
, unsigned long skip
)
227 struct __fdb_entry
*fe
= buf
;
229 struct hlist_node
*h
;
230 struct net_bridge_fdb_entry
*f
;
232 memset(buf
, 0, maxnum
*sizeof(struct __fdb_entry
));
235 for (i
= 0; i
< BR_HASH_SIZE
; i
++) {
236 hlist_for_each_entry_rcu(f
, h
, &br
->hash
[i
], hlist
) {
240 if (has_expired(br
, f
))
248 /* convert from internal format to API */
249 memcpy(fe
->mac_addr
, f
->addr
.addr
, ETH_ALEN
);
250 fe
->port_no
= f
->dst
->port_no
;
251 fe
->is_local
= f
->is_local
;
253 fe
->ageing_timer_value
= jiffies_to_clock_t(jiffies
- f
->ageing_timer
);
265 static inline struct net_bridge_fdb_entry
*fdb_find(struct hlist_head
*head
,
266 const unsigned char *addr
)
268 struct hlist_node
*h
;
269 struct net_bridge_fdb_entry
*fdb
;
271 hlist_for_each_entry_rcu(fdb
, h
, head
, hlist
) {
272 if (!compare_ether_addr(fdb
->addr
.addr
, addr
))
278 static struct net_bridge_fdb_entry
*fdb_create(struct hlist_head
*head
,
279 struct net_bridge_port
*source
,
280 const unsigned char *addr
,
283 struct net_bridge_fdb_entry
*fdb
;
285 fdb
= kmem_cache_alloc(br_fdb_cache
, GFP_ATOMIC
);
287 memcpy(fdb
->addr
.addr
, addr
, ETH_ALEN
);
288 atomic_set(&fdb
->use_count
, 1);
289 hlist_add_head_rcu(&fdb
->hlist
, head
);
292 fdb
->is_local
= is_local
;
293 fdb
->is_static
= is_local
;
294 fdb
->ageing_timer
= jiffies
;
299 static int fdb_insert(struct net_bridge
*br
, struct net_bridge_port
*source
,
300 const unsigned char *addr
)
302 struct hlist_head
*head
= &br
->hash
[br_mac_hash(addr
)];
303 struct net_bridge_fdb_entry
*fdb
;
305 if (!is_valid_ether_addr(addr
))
308 fdb
= fdb_find(head
, addr
);
310 /* it is okay to have multiple ports with same
311 * address, just use the first one.
316 printk(KERN_WARNING
"%s adding interface with same address "
317 "as a received packet\n",
322 if (!fdb_create(head
, source
, addr
, 1))
328 int br_fdb_insert(struct net_bridge
*br
, struct net_bridge_port
*source
,
329 const unsigned char *addr
)
333 spin_lock_bh(&br
->hash_lock
);
334 ret
= fdb_insert(br
, source
, addr
);
335 spin_unlock_bh(&br
->hash_lock
);
339 void br_fdb_update(struct net_bridge
*br
, struct net_bridge_port
*source
,
340 const unsigned char *addr
)
342 struct hlist_head
*head
= &br
->hash
[br_mac_hash(addr
)];
343 struct net_bridge_fdb_entry
*fdb
;
345 /* some users want to always flood. */
346 if (hold_time(br
) == 0)
349 fdb
= fdb_find(head
, addr
);
351 /* attempt to update an entry for a local interface */
352 if (unlikely(fdb
->is_local
)) {
354 printk(KERN_WARNING
"%s: received packet with "
355 " own address as source address\n",
358 /* fastpath: update of existing entry */
360 fdb
->ageing_timer
= jiffies
;
363 spin_lock(&br
->hash_lock
);
364 if (!fdb_find(head
, addr
))
365 fdb_create(head
, source
, addr
, 0);
366 /* else we lose race and someone else inserts
367 * it first, don't bother updating
369 spin_unlock(&br
->hash_lock
);