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 kmem_cache_t *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);
131 void br_fdb_delete_by_port(struct net_bridge *br, struct net_bridge_port *p)
135 spin_lock_bh(&br->hash_lock);
136 for (i = 0; i < BR_HASH_SIZE; i++) {
137 struct hlist_node *h, *g;
139 hlist_for_each_safe(h, g, &br->hash[i]) {
140 struct net_bridge_fdb_entry *f
141 = hlist_entry(h, struct net_bridge_fdb_entry, hlist);
146 * if multiple ports all have the same device address
147 * then when one port is deleted, assign
148 * the local entry to other port
151 struct net_bridge_port *op;
152 list_for_each_entry(op, &br->port_list, list) {
154 !compare_ether_addr(op->dev->dev_addr,
166 spin_unlock_bh(&br->hash_lock);
169 /* No locking or refcounting, assumes caller has no preempt (rcu_read_lock) */
170 struct net_bridge_fdb_entry *__br_fdb_get(struct net_bridge *br,
171 const unsigned char *addr)
173 struct hlist_node *h;
174 struct net_bridge_fdb_entry *fdb;
176 hlist_for_each_entry_rcu(fdb, h, &br->hash[br_mac_hash(addr)], hlist) {
177 if (!compare_ether_addr(fdb->addr.addr, addr)) {
178 if (unlikely(has_expired(br, fdb)))
187 /* Interface used by ATM hook that keeps a ref count */
188 struct net_bridge_fdb_entry *br_fdb_get(struct net_bridge *br,
191 struct net_bridge_fdb_entry *fdb;
194 fdb = __br_fdb_get(br, addr);
196 atomic_inc(&fdb->use_count);
201 static void fdb_rcu_free(struct rcu_head *head)
203 struct net_bridge_fdb_entry *ent
204 = container_of(head, struct net_bridge_fdb_entry, rcu);
205 kmem_cache_free(br_fdb_cache, ent);
208 /* Set entry up for deletion with RCU */
209 void br_fdb_put(struct net_bridge_fdb_entry *ent)
211 if (atomic_dec_and_test(&ent->use_count))
212 call_rcu(&ent->rcu, fdb_rcu_free);
216 * Fill buffer with forwarding table records in
219 int br_fdb_fillbuf(struct net_bridge *br, void *buf,
220 unsigned long maxnum, unsigned long skip)
222 struct __fdb_entry *fe = buf;
224 struct hlist_node *h;
225 struct net_bridge_fdb_entry *f;
227 memset(buf, 0, maxnum*sizeof(struct __fdb_entry));
230 for (i = 0; i < BR_HASH_SIZE; i++) {
231 hlist_for_each_entry_rcu(f, h, &br->hash[i], hlist) {
235 if (has_expired(br, f))
243 /* convert from internal format to API */
244 memcpy(fe->mac_addr, f->addr.addr, ETH_ALEN);
245 fe->port_no = f->dst->port_no;
246 fe->is_local = f->is_local;
248 fe->ageing_timer_value = jiffies_to_clock_t(jiffies - f->ageing_timer);
260 static inline struct net_bridge_fdb_entry *fdb_find(struct hlist_head *head,
261 const unsigned char *addr)
263 struct hlist_node *h;
264 struct net_bridge_fdb_entry *fdb;
266 hlist_for_each_entry_rcu(fdb, h, head, hlist) {
267 if (!compare_ether_addr(fdb->addr.addr, addr))
273 static struct net_bridge_fdb_entry *fdb_create(struct hlist_head *head,
274 struct net_bridge_port *source,
275 const unsigned char *addr,
278 struct net_bridge_fdb_entry *fdb;
280 fdb = kmem_cache_alloc(br_fdb_cache, GFP_ATOMIC);
282 memcpy(fdb->addr.addr, addr, ETH_ALEN);
283 atomic_set(&fdb->use_count, 1);
284 hlist_add_head_rcu(&fdb->hlist, head);
287 fdb->is_local = is_local;
288 fdb->is_static = is_local;
289 fdb->ageing_timer = jiffies;
294 static int fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
295 const unsigned char *addr)
297 struct hlist_head *head = &br->hash[br_mac_hash(addr)];
298 struct net_bridge_fdb_entry *fdb;
300 if (!is_valid_ether_addr(addr))
303 fdb = fdb_find(head, addr);
305 /* it is okay to have multiple ports with same
306 * address, just use the first one.
311 printk(KERN_WARNING "%s adding interface with same address "
312 "as a received packet\n",
317 if (!fdb_create(head, source, addr, 1))
323 int br_fdb_insert(struct net_bridge *br, struct net_bridge_port *source,
324 const unsigned char *addr)
328 spin_lock_bh(&br->hash_lock);
329 ret = fdb_insert(br, source, addr);
330 spin_unlock_bh(&br->hash_lock);
334 void br_fdb_update(struct net_bridge *br, struct net_bridge_port *source,
335 const unsigned char *addr)
337 struct hlist_head *head = &br->hash[br_mac_hash(addr)];
338 struct net_bridge_fdb_entry *fdb;
340 /* some users want to always flood. */
341 if (hold_time(br) == 0)
345 fdb = fdb_find(head, addr);
347 /* attempt to update an entry for a local interface */
348 if (unlikely(fdb->is_local)) {
350 printk(KERN_WARNING "%s: received packet with "
351 " own address as source address\n",
354 /* fastpath: update of existing entry */
356 fdb->ageing_timer = jiffies;
359 spin_lock_bh(&br->hash_lock);
360 if (!fdb_find(head, addr))
361 fdb_create(head, source, addr, 0);
362 /* else we lose race and someone else inserts
363 * it first, don't bother updating
365 spin_unlock_bh(&br->hash_lock);