blob: 7e49d74baf8abc8c10d6c28091bab2366e7c602e [file] [log] [blame]
Ed Warnickecb9cada2015-12-08 15:45:58 -07001/*
2 * l2_fib.h : layer 2 forwarding table (aka mac table)
3 *
4 * Copyright (c) 2013 Cisco and/or its affiliates.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at:
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 */
17
18#ifndef included_l2fib_h
19#define included_l2fib_h
20
21#include <vlib/vlib.h>
22#include <vppinfra/bihash_8_8.h>
23
24/*
25 * The size of the hash table
26 */
27#define L2FIB_NUM_BUCKETS (64 * 1024)
28#define L2FIB_MEMORY_SIZE (256<<20)
29
30/*
31 * The L2fib key is the mac address and bridge domain ID
32 */
Dave Barach97d8dc22016-08-15 15:31:15 -040033typedef struct
34{
35 union
36 {
37 struct
38 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070039 u16 bd_index;
Dave Barach97d8dc22016-08-15 15:31:15 -040040 u8 mac[6];
Ed Warnickecb9cada2015-12-08 15:45:58 -070041 } fields;
Dave Barach97d8dc22016-08-15 15:31:15 -040042 struct
43 {
Ed Warnickecb9cada2015-12-08 15:45:58 -070044 u32 w0;
45 u32 w1;
46 } words;
47 u64 raw;
48 };
49} l2fib_entry_key_t;
50
Damjan Mariond171d482016-12-05 14:16:38 +010051STATIC_ASSERT_SIZEOF (l2fib_entry_key_t, 8);
52
Dave Barach97d8dc22016-08-15 15:31:15 -040053/*
Ed Warnickecb9cada2015-12-08 15:45:58 -070054 * The l2fib entry results
55 */
Dave Barach97d8dc22016-08-15 15:31:15 -040056typedef struct
57{
58 union
59 {
60 struct
61 {
62 u32 sw_if_index; /* output sw_if_index (L3 interface if bvi==1) */
Ed Warnickecb9cada2015-12-08 15:45:58 -070063
Dave Barach97d8dc22016-08-15 15:31:15 -040064 u8 static_mac:1; /* static mac, no dataplane learning */
65 u8 bvi:1; /* mac is for a bridged virtual interface */
66 u8 filter:1; /* drop packets to/from this mac */
Damjan Mariond171d482016-12-05 14:16:38 +010067 u8 unused1:5;
Dave Barach97d8dc22016-08-15 15:31:15 -040068 u8 timestamp; /* timestamp for aging */
John Loda1f2c72017-03-24 20:11:15 -040069 u8 int_sn; /* interface seq num */
70 u8 bd_sn; /* bridge domain seq num */
Ed Warnickecb9cada2015-12-08 15:45:58 -070071 } fields;
72 u64 raw;
73 };
74} l2fib_entry_result_t;
75
Damjan Mariond171d482016-12-05 14:16:38 +010076STATIC_ASSERT_SIZEOF (l2fib_entry_result_t, 8);
Ed Warnickecb9cada2015-12-08 15:45:58 -070077
Dave Barach97d8dc22016-08-15 15:31:15 -040078/**
79 * Compute the hash for the given key and return
80 * the corresponding bucket index
81 */
82always_inline u32
83l2fib_compute_hash_bucket (l2fib_entry_key_t * key)
84{
Ed Warnickecb9cada2015-12-08 15:45:58 -070085 u32 result;
86 u32 temp_a;
87 u32 temp_b;
88
Dave Barach97d8dc22016-08-15 15:31:15 -040089 result = 0xa5a5a5a5; /* some seed */
Ed Warnickecb9cada2015-12-08 15:45:58 -070090 temp_a = key->words.w0;
91 temp_b = key->words.w1;
Dave Barach97d8dc22016-08-15 15:31:15 -040092 hash_mix32 (temp_a, temp_b, result);
Ed Warnickecb9cada2015-12-08 15:45:58 -070093
94 return result % L2FIB_NUM_BUCKETS;
95}
96
Dave Barach97d8dc22016-08-15 15:31:15 -040097always_inline u64
98l2fib_make_key (u8 * mac_address, u16 bd_index)
99{
Ed Warnickecb9cada2015-12-08 15:45:58 -0700100 u64 temp;
101
Dave Barach97d8dc22016-08-15 15:31:15 -0400102 /*
103 * The mac address in memory is A:B:C:D:E:F
104 * The bd id in register is H:L
105 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700106#if CLIB_ARCH_IS_LITTLE_ENDIAN
Dave Barach97d8dc22016-08-15 15:31:15 -0400107 /*
108 * Create the in-register key as F:E:D:C:B:A:H:L
109 * In memory the key is L:H:A:B:C:D:E:F
110 */
Damjan Marion30230dd2016-11-24 22:20:05 +0100111 temp = *((u64 *) (mac_address)) << 16;
Dave Barach97d8dc22016-08-15 15:31:15 -0400112 temp = (temp & ~0xffff) | (u64) (bd_index);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700113#else
Dave Barach97d8dc22016-08-15 15:31:15 -0400114 /*
115 * Create the in-register key as H:L:A:B:C:D:E:F
116 * In memory the key is H:L:A:B:C:D:E:F
117 */
118 temp = *((u64 *) (mac_address)) >> 16;
119 temp = temp | (((u64) bd_index) << 48);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700120#endif
121
122 return temp;
123}
124
125
126
Dave Barach97d8dc22016-08-15 15:31:15 -0400127/**
128 * Lookup the entry for mac and bd_index in the mac table for 1 packet.
129 * Cached_key and cached_result are used as a one-entry cache.
130 * The function reads and updates them as needed.
131 *
132 * mac0 and bd_index0 are the keys. The entry is written to result0.
133 * If the entry was not found, result0 is set to ~0.
134 *
135 * key0 and bucket0 return with the computed key and hash bucket,
136 * convenient if the entry needs to be updated afterward.
137 * If the cached_result was used, bucket0 is set to ~0.
138 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700139
140static_always_inline void
Dave Barach97d8dc22016-08-15 15:31:15 -0400141l2fib_lookup_1 (BVT (clib_bihash) * mac_table,
142 l2fib_entry_key_t * cached_key,
143 l2fib_entry_result_t * cached_result,
144 u8 * mac0,
145 u16 bd_index0,
146 l2fib_entry_key_t * key0,
147 u32 * bucket0, l2fib_entry_result_t * result0)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700148{
Dave Barach97d8dc22016-08-15 15:31:15 -0400149 /* set up key */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700150 key0->raw = l2fib_make_key (mac0, bd_index0);
151 *bucket0 = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700152
Dave Barach97d8dc22016-08-15 15:31:15 -0400153 if (key0->raw == cached_key->raw)
154 {
155 /* Hit in the one-entry cache */
156 result0->raw = cached_result->raw;
157 }
158 else
159 {
160 /* Do a regular mac table lookup */
161 BVT (clib_bihash_kv) kv;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700162
Dave Barach97d8dc22016-08-15 15:31:15 -0400163 kv.key = key0->raw;
164 kv.value = ~0ULL;
165 BV (clib_bihash_search_inline) (mac_table, &kv);
166 result0->raw = kv.value;
167
168 /* Update one-entry cache */
169 cached_key->raw = key0->raw;
170 cached_result->raw = result0->raw;
171 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700172}
173
174
Dave Barach97d8dc22016-08-15 15:31:15 -0400175/**
176 * Lookup the entry for mac and bd_index in the mac table for 2 packets.
177 * The lookups for the two packets are interleaved.
178 *
179 * Cached_key and cached_result are used as a one-entry cache.
180 * The function reads and updates them as needed.
181 *
182 * mac0 and bd_index0 are the keys. The entry is written to result0.
183 * If the entry was not found, result0 is set to ~0. The same
184 * holds for mac1/bd_index1/result1.
185 */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700186static_always_inline void
Dave Barach97d8dc22016-08-15 15:31:15 -0400187l2fib_lookup_2 (BVT (clib_bihash) * mac_table,
188 l2fib_entry_key_t * cached_key,
189 l2fib_entry_result_t * cached_result,
190 u8 * mac0,
191 u8 * mac1,
192 u16 bd_index0,
193 u16 bd_index1,
194 l2fib_entry_key_t * key0,
195 l2fib_entry_key_t * key1,
196 u32 * bucket0,
197 u32 * bucket1,
198 l2fib_entry_result_t * result0,
199 l2fib_entry_result_t * result1)
Ed Warnickecb9cada2015-12-08 15:45:58 -0700200{
Dave Barach97d8dc22016-08-15 15:31:15 -0400201 /* set up key */
Ed Warnickecb9cada2015-12-08 15:45:58 -0700202 key0->raw = l2fib_make_key (mac0, bd_index0);
203 key1->raw = l2fib_make_key (mac1, bd_index1);
204
Dave Barach97d8dc22016-08-15 15:31:15 -0400205 if ((key0->raw == cached_key->raw) && (key1->raw == cached_key->raw))
206 {
207 /* Both hit in the one-entry cache */
208 result0->raw = cached_result->raw;
209 result1->raw = cached_result->raw;
210 *bucket0 = ~0;
211 *bucket1 = ~0;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700212
Dave Barach97d8dc22016-08-15 15:31:15 -0400213 }
214 else
215 {
216 BVT (clib_bihash_kv) kv0, kv1;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700217
Dave Barach97d8dc22016-08-15 15:31:15 -0400218 /*
219 * Do a regular mac table lookup
220 * Interleave lookups for packet 0 and packet 1
221 */
222 kv0.key = key0->raw;
223 kv1.key = key1->raw;
224 kv0.value = ~0ULL;
225 kv1.value = ~0ULL;
Ed Warnickecb9cada2015-12-08 15:45:58 -0700226
Dave Barach97d8dc22016-08-15 15:31:15 -0400227 BV (clib_bihash_search_inline) (mac_table, &kv0);
228 BV (clib_bihash_search_inline) (mac_table, &kv1);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700229
Dave Barach97d8dc22016-08-15 15:31:15 -0400230 result0->raw = kv0.value;
231 result1->raw = kv1.value;
232
233 /* Update one-entry cache */
234 cached_key->raw = key1->raw;
235 cached_result->raw = result1->raw;
236 }
Ed Warnickecb9cada2015-12-08 15:45:58 -0700237}
238
Damjan Mariondaa2cd12016-11-22 21:10:25 -0800239static_always_inline void
240l2fib_lookup_4 (BVT (clib_bihash) * mac_table,
241 l2fib_entry_key_t * cached_key,
242 l2fib_entry_result_t * cached_result,
243 u8 * mac0,
244 u8 * mac1,
245 u8 * mac2,
246 u8 * mac3,
247 u16 bd_index0,
248 u16 bd_index1,
249 u16 bd_index2,
250 u16 bd_index3,
251 l2fib_entry_key_t * key0,
252 l2fib_entry_key_t * key1,
253 l2fib_entry_key_t * key2,
254 l2fib_entry_key_t * key3,
255 u32 * bucket0,
256 u32 * bucket1,
257 u32 * bucket2,
258 u32 * bucket3,
259 l2fib_entry_result_t * result0,
260 l2fib_entry_result_t * result1,
261 l2fib_entry_result_t * result2,
262 l2fib_entry_result_t * result3)
263{
264 /* set up key */
265 key0->raw = l2fib_make_key (mac0, bd_index0);
266 key1->raw = l2fib_make_key (mac1, bd_index1);
267 key2->raw = l2fib_make_key (mac2, bd_index2);
268 key3->raw = l2fib_make_key (mac3, bd_index3);
269
270 if ((key0->raw == cached_key->raw) && (key1->raw == cached_key->raw) &&
271 (key2->raw == cached_key->raw) && (key3->raw == cached_key->raw))
272 {
273 /* Both hit in the one-entry cache */
274 result0->raw = cached_result->raw;
275 result1->raw = cached_result->raw;
276 result2->raw = cached_result->raw;
277 result3->raw = cached_result->raw;
278 *bucket0 = ~0;
279 *bucket1 = ~0;
280 *bucket2 = ~0;
281 *bucket3 = ~0;
282
283 }
284 else
285 {
286 BVT (clib_bihash_kv) kv0, kv1, kv2, kv3;
287
288 /*
289 * Do a regular mac table lookup
290 * Interleave lookups for packet 0 and packet 1
291 */
292 kv0.key = key0->raw;
293 kv1.key = key1->raw;
294 kv2.key = key2->raw;
295 kv3.key = key3->raw;
296 kv0.value = ~0ULL;
297 kv1.value = ~0ULL;
298 kv2.value = ~0ULL;
299 kv3.value = ~0ULL;
300
301 BV (clib_bihash_search_inline) (mac_table, &kv0);
302 BV (clib_bihash_search_inline) (mac_table, &kv1);
303 BV (clib_bihash_search_inline) (mac_table, &kv2);
304 BV (clib_bihash_search_inline) (mac_table, &kv3);
305
306 result0->raw = kv0.value;
307 result1->raw = kv1.value;
308 result2->raw = kv2.value;
309 result3->raw = kv3.value;
310
311 /* Update one-entry cache */
312 cached_key->raw = key1->raw;
313 cached_result->raw = result1->raw;
314 }
315}
Ed Warnickecb9cada2015-12-08 15:45:58 -0700316
John Loda1f2c72017-03-24 20:11:15 -0400317void l2fib_clear_table (uint keep_static);
318
319void
320l2fib_add_entry (u64 mac,
321 u32 bd_index,
322 u32 sw_if_index, u32 static_mac, u32 drop_mac, u32 bvi_mac);
323
324u32 l2fib_del_entry (u64 mac, u32 bd_index);
325
326void l2fib_start_ager_scan (vlib_main_t * vm);
327
328void l2fib_flush_int_mac (vlib_main_t * vm, u32 sw_if_index);
329
330void l2fib_flush_bd_mac (vlib_main_t * vm, u32 bd_index);
331
332void
333l2fib_table_dump (u32 bd_index, l2fib_entry_key_t ** l2fe_key,
334 l2fib_entry_result_t ** l2fe_res);
335
336u8 *format_vnet_sw_if_index_name_with_NA (u8 * s, va_list * args);
337
Dave Barach97d8dc22016-08-15 15:31:15 -0400338BVT (clib_bihash) * get_mac_table (void);
Ed Warnickecb9cada2015-12-08 15:45:58 -0700339
340#endif
Dave Barach97d8dc22016-08-15 15:31:15 -0400341
342/*
343 * fd.io coding-style-patch-verification: ON
344 *
345 * Local Variables:
346 * eval: (c-set-style "gnu")
347 * End:
348 */