18 #ifndef included_l2fib_h 19 #define included_l2fib_h 27 #define L2FIB_NUM_BUCKETS (64 * 1024) 28 #define L2FIB_MEMORY_SIZE (512<<20) 31 #define L2FIB_AGE_SCAN_INTERVAL (60.0) 34 #define L2FIB_EVENT_SCAN_DELAY_DEFAULT (0.1) 37 #define L2FIB_EVENT_MAX_MACS_DEFAULT (100) 40 #define L2FIB_EVENT_LEARN_LIMIT_DEFAULT (1000) 46 BVT (clib_bihash) mac_table;
153 temp_a = key->
words.w0;
154 temp_b = key->
words.w1;
174 #if CLIB_ARCH_IS_LITTLE_ENDIAN 179 temp = *((
u64 *) (mac_address)) << 16;
180 temp = (temp & ~0xffff) | (
u64) (bd_index);
186 temp = *((
u64 *) (mac_address)) >> 16;
187 temp = temp | (((
u64) bd_index) << 48);
221 if (key0->
raw == cached_key->
raw)
224 result0->
raw = cached_result->
raw;
229 BVT (clib_bihash_kv) kv;
234 result0->
raw = kv.value;
237 cached_key->
raw = key0->
raw;
238 cached_result->
raw = result0->
raw;
273 if ((key0->
raw == cached_key->
raw) && (key1->
raw == cached_key->
raw))
276 result0->
raw = cached_result->
raw;
277 result1->
raw = cached_result->
raw;
284 BVT (clib_bihash_kv) kv0, kv1;
298 result0->
raw = kv0.value;
299 result1->
raw = kv1.value;
302 cached_key->
raw = key1->
raw;
303 cached_result->
raw = result1->
raw;
338 if ((key0->
raw == cached_key->
raw) && (key1->
raw == cached_key->
raw) &&
339 (key2->
raw == cached_key->
raw) && (key3->
raw == cached_key->
raw))
342 result0->
raw = cached_result->
raw;
343 result1->
raw = cached_result->
raw;
344 result2->
raw = cached_result->
raw;
345 result3->
raw = cached_result->
raw;
354 BVT (clib_bihash_kv) kv0, kv1, kv2, kv3;
374 result0->
raw = kv0.value;
375 result1->
raw = kv1.value;
376 result2->
raw = kv2.value;
377 result3->
raw = kv3.value;
380 cached_key->
raw = key1->
raw;
381 cached_result->
raw = result1->
raw;
390 u32 sw_if_index,
u8 static_mac,
u8 drop_mac,
u8 bvi_mac);
436 BVT (clib_bihash) * get_mac_table (
void);
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
u32 l2fib_del_entry(u8 *mac, u32 bd_index, u32 sw_if_index)
Delete an entry from the l2fib.
static_always_inline u8 * l2fib_swif_seq_num(u32 sw_if_index)
#define static_always_inline
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
void l2fib_flush_all_mac(vlib_main_t *vm)
Flush all non static MACs - flushes all valid BDs.
void l2fib_add_entry(u8 *mac, u32 bd_index, u32 sw_if_index, u8 static_mac, u8 drop_mac, u8 bvi_mac)
Add an entry to the l2fib.
static_always_inline u8 * l2fib_valid_swif_seq_num(u32 sw_if_index)
struct l2fib_entry_key_t::@237::@240 words
BVT(clib_bihash)*get_mac_table(void)
STATIC_ASSERT_SIZEOF(l2fib_entry_key_t, 8)
int clib_bihash_search_inline(clib_bihash *h, clib_bihash_kv *in_out_kv)
Search a bi-hash table.
#define L2FIB_NUM_BUCKETS
static void l2fib_add_fwd_entry(u8 *mac, u32 bd_index, u32 sw_if_index, u8 static_mac, u8 bvi_mac)
void l2fib_flush_bd_mac(vlib_main_t *vm, u32 bd_index)
Flush all non static MACs in a bridge domain.
#define hash_mix32(a0, b0, c0)
static_always_inline void l2fib_lookup_2(BVT(clib_bihash)*mac_table, l2fib_entry_key_t *cached_key, l2fib_entry_result_t *cached_result, u8 *mac0, u8 *mac1, u16 bd_index0, u16 bd_index1, l2fib_entry_key_t *key0, l2fib_entry_key_t *key1, u32 *bucket0, u32 *bucket1, l2fib_entry_result_t *result0, l2fib_entry_result_t *result1)
Lookup the entry for mac and bd_index in the mac table for 2 packets.
void l2fib_clear_table(void)
static void l2fib_add_filter_entry(u8 *mac, u32 bd_index)
void l2fib_table_dump(u32 bd_index, l2fib_entry_key_t **l2fe_key, l2fib_entry_result_t **l2fe_res)
void l2fib_flush_int_mac(vlib_main_t *vm, u32 sw_if_index)
Flush all non static MACs from an interface.
u8 * format_vnet_sw_if_index_name_with_NA(u8 *s, va_list *args)
Format sw_if_index.
static u32 l2fib_compute_hash_bucket(l2fib_entry_key_t *key)
Compute the hash for the given key and return the corresponding bucket index.
static u64 l2fib_make_key(u8 *mac_address, u16 bd_index)
make address sanitizer skip this: The 6-Bytes mac-address is cast into an 8-Bytes u64...
static_always_inline void l2fib_lookup_4(BVT(clib_bihash)*mac_table, l2fib_entry_key_t *cached_key, l2fib_entry_result_t *cached_result, u8 *mac0, u8 *mac1, u8 *mac2, u8 *mac3, u16 bd_index0, u16 bd_index1, u16 bd_index2, u16 bd_index3, l2fib_entry_key_t *key0, l2fib_entry_key_t *key1, l2fib_entry_key_t *key2, l2fib_entry_key_t *key3, u32 *bucket0, u32 *bucket1, u32 *bucket2, u32 *bucket3, l2fib_entry_result_t *result0, l2fib_entry_result_t *result1, l2fib_entry_result_t *result2, l2fib_entry_result_t *result3)
static_always_inline void l2fib_lookup_1(BVT(clib_bihash)*mac_table, l2fib_entry_key_t *cached_key, l2fib_entry_result_t *cached_result, u8 *mac0, u16 bd_index0, l2fib_entry_key_t *key0, u32 *bucket0, l2fib_entry_result_t *result0)
Lookup the entry for mac and bd_index in the mac table for 1 packet.
void l2fib_start_ager_scan(vlib_main_t *vm)
Kick off ager to scan MACs to age/delete MAC entries.