blob: 6d400f75489e497d42964e024f2f7be1682b4800 [file] [log] [blame]
Neale Ranns5e575b12016-10-03 09:40:25 +01001/*
2 * Copyright (c) 2016 Cisco and/or its affiliates.
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
17#include <vnet/lisp-gpe/lisp_gpe_adjacency.h>
18#include <vnet/lisp-gpe/lisp_gpe_tenant.h>
19#include <vnet/lisp-cp/lisp_cp_dpo.h>
20#include <vnet/fib/fib_table.h>
21#include <vnet/fib/fib_entry.h>
22#include <vnet/fib/fib_path_list.h>
23#include <vnet/fib/ip6_fib.h>
24#include <vnet/fib/ip4_fib.h>
25#include <vnet/dpo/drop_dpo.h>
26#include <vnet/dpo/lookup_dpo.h>
27#include <vnet/dpo/load_balance.h>
28#include <vnet/adj/adj_midchain.h>
29
30/**
31 * @brief Add route to IP4 or IP6 Destination FIB.
32 *
33 * Add a route to the destination FIB that results in the lookup
34 * in the SRC FIB. The SRC FIB is created is it does not yet exist.
35 *
36 * @param[in] dst_table_id Destination FIB Table-ID
37 * @param[in] dst_prefix Destination IP prefix.
38 *
39 * @return src_fib_index The index/ID of the SRC FIB created.
40 */
41static u32
42ip_dst_fib_add_route (u32 dst_fib_index, const ip_prefix_t * dst_prefix)
43{
44 fib_node_index_t src_fib_index;
45 fib_prefix_t dst_fib_prefix;
46 fib_node_index_t dst_fei;
47
48 ASSERT (NULL != dst_prefix);
49
50 ip_prefix_to_fib_prefix (dst_prefix, &dst_fib_prefix);
51
52 /*
53 * lookup the destination prefix in the VRF table and retrieve the
54 * LISP associated data
55 */
56 dst_fei = fib_table_lookup_exact_match (dst_fib_index, &dst_fib_prefix);
57
58 /*
59 * If the FIB entry is not present, or not LISP sourced, add it
60 */
61 if (dst_fei == FIB_NODE_INDEX_INVALID ||
62 NULL == fib_entry_get_source_data (dst_fei, FIB_SOURCE_LISP))
63 {
Neale Ranns948e00f2016-10-20 13:39:34 +010064 dpo_id_t src_lkup_dpo = DPO_INVALID;
Neale Ranns5e575b12016-10-03 09:40:25 +010065
66 /* create a new src FIB. */
67 src_fib_index =
68 fib_table_create_and_lock (dst_fib_prefix.fp_proto,
69 "LISP-src for [%d,%U]",
70 dst_fib_index,
71 format_fib_prefix, &dst_fib_prefix);
Filip Tehlard5fcc462016-10-17 16:20:18 +020072 /*
73 * add src fib default route
74 */
75 fib_prefix_t prefix = {
76 .fp_proto = dst_fib_prefix.fp_proto,
77 };
78 fib_table_entry_special_dpo_add (src_fib_index, &prefix,
79 FIB_SOURCE_LISP,
80 FIB_ENTRY_FLAG_EXCLUSIVE,
81 lisp_cp_dpo_get (fib_proto_to_dpo
82 (dst_fib_prefix.fp_proto)));
Neale Ranns5e575b12016-10-03 09:40:25 +010083 /*
84 * create a data-path object to perform the source address lookup
85 * in the SRC FIB
86 */
87 lookup_dpo_add_or_lock_w_fib_index (src_fib_index,
88 (ip_prefix_version (dst_prefix) ==
89 IP6 ? DPO_PROTO_IP6 :
90 DPO_PROTO_IP4),
Neale Ranns0f26c5a2017-03-01 15:12:11 -080091 LOOKUP_UNICAST,
Neale Ranns5e575b12016-10-03 09:40:25 +010092 LOOKUP_INPUT_SRC_ADDR,
93 LOOKUP_TABLE_FROM_CONFIG,
94 &src_lkup_dpo);
95
96 /*
97 * add the entry to the destination FIB that uses the lookup DPO
98 */
99 dst_fei = fib_table_entry_special_dpo_add (dst_fib_index,
100 &dst_fib_prefix,
101 FIB_SOURCE_LISP,
102 FIB_ENTRY_FLAG_EXCLUSIVE,
103 &src_lkup_dpo);
104
105 /*
106 * the DPO is locked by the FIB entry, and we have no further
107 * need for it.
108 */
109 dpo_unlock (&src_lkup_dpo);
110
111 /*
112 * save the SRC FIB index on the entry so we can retrieve it for
113 * subsequent routes.
114 */
115 fib_entry_set_source_data (dst_fei, FIB_SOURCE_LISP, &src_fib_index);
116 }
117 else
118 {
119 /*
120 * destination FIB entry already present
121 */
122 src_fib_index = *(u32 *) fib_entry_get_source_data (dst_fei,
123 FIB_SOURCE_LISP);
124 }
125
126 return (src_fib_index);
127}
128
129/**
130 * @brief Del route to IP4 or IP6 SD FIB.
131 *
132 * Remove routes from both destination and source FIBs.
133 *
134 * @param[in] src_fib_index The index/ID of the SRC FIB
135 * @param[in] src_prefix Source IP prefix.
136 * @param[in] dst_fib_index The index/ID of the DST FIB
137 * @param[in] dst_prefix Destination IP prefix.
138 */
139static void
140ip_src_dst_fib_del_route (u32 src_fib_index,
141 const ip_prefix_t * src_prefix,
142 u32 dst_fib_index, const ip_prefix_t * dst_prefix)
143{
144 fib_prefix_t dst_fib_prefix, src_fib_prefix;
Florin Coras84794402016-11-29 17:14:06 -0800145 u8 have_default = 0;
146 u32 n_entries;
Neale Ranns5e575b12016-10-03 09:40:25 +0100147
148 ASSERT (NULL != dst_prefix);
149 ASSERT (NULL != src_prefix);
150
151 ip_prefix_to_fib_prefix (dst_prefix, &dst_fib_prefix);
152 ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix);
153
154 fib_table_entry_delete (src_fib_index, &src_fib_prefix, FIB_SOURCE_LISP);
155
Florin Coras84794402016-11-29 17:14:06 -0800156 /* check if only default left or empty */
157 fib_prefix_t default_pref = {
158 .fp_proto = dst_fib_prefix.fp_proto
159 };
160
161 if (fib_table_lookup_exact_match (src_fib_index,
162 &default_pref) != FIB_NODE_INDEX_INVALID)
163 have_default = 1;
164
165 n_entries = fib_table_get_num_entries (src_fib_index,
166 src_fib_prefix.fp_proto,
167 FIB_SOURCE_LISP);
168 if (n_entries == 0 || (have_default && n_entries == 1))
Neale Ranns5e575b12016-10-03 09:40:25 +0100169 {
170 /*
Florin Corasfeeebfe2016-11-27 22:33:01 -0800171 * remove src FIB default route
172 */
Florin Coras84794402016-11-29 17:14:06 -0800173 if (have_default)
174 fib_table_entry_special_remove (src_fib_index, &default_pref,
175 FIB_SOURCE_LISP);
Florin Corasfeeebfe2016-11-27 22:33:01 -0800176
177 /*
178 * there's nothing left now, unlock the source FIB and the
Neale Ranns5e575b12016-10-03 09:40:25 +0100179 * destination route
180 */
181 fib_table_entry_special_remove (dst_fib_index,
182 &dst_fib_prefix, FIB_SOURCE_LISP);
183 fib_table_unlock (src_fib_index, src_fib_prefix.fp_proto);
184 }
185}
186
187/**
188 * @brief Add route to IP4 or IP6 SRC FIB.
189 *
190 * Adds a route to in the LISP SRC FIB with the result of the route
191 * being the DPO passed.
192 *
193 * @param[in] src_fib_index The index/ID of the SRC FIB
194 * @param[in] src_prefix Source IP prefix.
195 * @param[in] src_dpo The DPO the route will link to.
196 */
197static void
198ip_src_fib_add_route_w_dpo (u32 src_fib_index,
199 const ip_prefix_t * src_prefix,
200 const dpo_id_t * src_dpo)
201{
202 fib_prefix_t src_fib_prefix;
203
204 ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix);
205
206 /*
207 * add the entry into the source fib.
208 */
209 fib_node_index_t src_fei;
210
211 src_fei = fib_table_lookup_exact_match (src_fib_index, &src_fib_prefix);
212
213 if (FIB_NODE_INDEX_INVALID == src_fei ||
214 !fib_entry_is_sourced (src_fei, FIB_SOURCE_LISP))
215 {
216 fib_table_entry_special_dpo_add (src_fib_index,
217 &src_fib_prefix,
218 FIB_SOURCE_LISP,
219 FIB_ENTRY_FLAG_EXCLUSIVE, src_dpo);
220 }
221}
222
Neale Ranns5e575b12016-10-03 09:40:25 +0100223static fib_route_path_t *
224lisp_gpe_mk_fib_paths (const lisp_fwd_path_t * paths)
225{
226 const lisp_gpe_adjacency_t *ladj;
227 fib_route_path_t *rpaths = NULL;
228 u8 best_priority;
229 u32 ii;
230
231 vec_validate (rpaths, vec_len (paths) - 1);
232
233 best_priority = paths[0].priority;
234
235 vec_foreach_index (ii, paths)
236 {
237 if (paths[0].priority != best_priority)
238 break;
239
240 ladj = lisp_gpe_adjacency_get (paths[ii].lisp_adj);
241
242 ip_address_to_46 (&ladj->remote_rloc,
243 &rpaths[ii].frp_addr, &rpaths[ii].frp_proto);
244
245 rpaths[ii].frp_sw_if_index = ladj->sw_if_index;
246 rpaths[ii].frp_weight = (paths[ii].weight ? paths[ii].weight : 1);
Neale Ranns5e575b12016-10-03 09:40:25 +0100247 }
248
249 ASSERT (0 != vec_len (rpaths));
250
251 return (rpaths);
252}
253
254/**
255 * @brief Add route to IP4 or IP6 SRC FIB.
256 *
257 * Adds a route to in the LISP SRC FIB for the tunnel.
258 *
259 * @param[in] src_fib_index The index/ID of the SRC FIB
260 * @param[in] src_prefix Source IP prefix.
261 * @param[in] paths The paths from which to construct the
262 * load balance
263 */
264static void
265ip_src_fib_add_route (u32 src_fib_index,
266 const ip_prefix_t * src_prefix,
267 const lisp_fwd_path_t * paths)
268{
269 fib_prefix_t src_fib_prefix;
270 fib_route_path_t *rpaths;
271
272 ip_prefix_to_fib_prefix (src_prefix, &src_fib_prefix);
273
274 rpaths = lisp_gpe_mk_fib_paths (paths);
275
276 fib_table_entry_update (src_fib_index,
277 &src_fib_prefix,
278 FIB_SOURCE_LISP, FIB_ENTRY_FLAG_NONE, rpaths);
279 vec_free (rpaths);
280}
281
282
283static void
284create_fib_entries (lisp_gpe_fwd_entry_t * lfe)
285{
286 dpo_proto_t dproto;
Filip Tehlar25ad0ea2017-04-04 15:26:54 +0200287 ip_prefix_t ippref;
Neale Ranns5e575b12016-10-03 09:40:25 +0100288 dproto = (ip_prefix_version (&lfe->key->rmt.ippref) == IP4 ?
Neale Ranns450cd302016-11-09 17:49:42 +0000289 DPO_PROTO_IP4 : DPO_PROTO_IP6);
Neale Ranns5e575b12016-10-03 09:40:25 +0100290
Filip Tehlar25ad0ea2017-04-04 15:26:54 +0200291 if (lfe->is_src_dst)
292 {
293 lfe->src_fib_index = ip_dst_fib_add_route (lfe->eid_fib_index,
294 &lfe->key->rmt.ippref);
295 memcpy (&ippref, &lfe->key->lcl.ippref, sizeof (ippref));
296 }
297 else
298 {
299 lfe->src_fib_index = lfe->eid_fib_index;
300 memcpy (&ippref, &lfe->key->rmt.ippref, sizeof (ippref));
301 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100302
303 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
304 {
Neale Ranns948e00f2016-10-20 13:39:34 +0100305 dpo_id_t dpo = DPO_INVALID;
Neale Ranns5e575b12016-10-03 09:40:25 +0100306
307 switch (lfe->action)
308 {
309 case LISP_NO_ACTION:
310 /* TODO update timers? */
311 case LISP_FORWARD_NATIVE:
312 /* TODO check if route/next-hop for eid exists in fib and add
313 * more specific for the eid with the next-hop found */
314 case LISP_SEND_MAP_REQUEST:
315 /* insert tunnel that always sends map-request */
316 dpo_copy (&dpo, lisp_cp_dpo_get (dproto));
317 break;
318 case LISP_DROP:
319 /* for drop fwd entries, just add route, no need to add encap tunnel */
320 dpo_copy (&dpo, drop_dpo_get (dproto));
321 break;
322 }
Filip Tehlar25ad0ea2017-04-04 15:26:54 +0200323 ip_src_fib_add_route_w_dpo (lfe->src_fib_index, &ippref, &dpo);
Neale Ranns5e575b12016-10-03 09:40:25 +0100324 dpo_reset (&dpo);
325 }
326 else
327 {
Filip Tehlar25ad0ea2017-04-04 15:26:54 +0200328 ip_src_fib_add_route (lfe->src_fib_index, &ippref, lfe->paths);
Neale Ranns5e575b12016-10-03 09:40:25 +0100329 }
330}
331
332static void
333delete_fib_entries (lisp_gpe_fwd_entry_t * lfe)
334{
Filip Tehlared6b52b2017-03-22 09:02:33 +0100335 fib_prefix_t dst_fib_prefix;
336
337 if (lfe->is_src_dst)
338 ip_src_dst_fib_del_route (lfe->src_fib_index,
339 &lfe->key->lcl.ippref,
340 lfe->eid_fib_index, &lfe->key->rmt.ippref);
341 else
342 {
343 ip_prefix_to_fib_prefix (&lfe->key->rmt.ippref, &dst_fib_prefix);
344 fib_table_entry_delete (lfe->src_fib_index, &dst_fib_prefix,
345 FIB_SOURCE_LISP);
346 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100347}
348
Neale Ranns5e575b12016-10-03 09:40:25 +0100349static lisp_gpe_fwd_entry_t *
350find_fwd_entry (lisp_gpe_main_t * lgm,
351 vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
352 lisp_gpe_fwd_entry_key_t * key)
353{
354 uword *p;
355
356 memset (key, 0, sizeof (*key));
357
358 if (GID_ADDR_IP_PREFIX == gid_address_type (&a->rmt_eid))
359 {
360 /*
361 * the ip version of the source is not set to ip6 when the
362 * source is all zeros. force it.
363 */
364 ip_prefix_version (&gid_address_ippref (&a->lcl_eid)) =
365 ip_prefix_version (&gid_address_ippref (&a->rmt_eid));
366 }
367
368 gid_to_dp_address (&a->rmt_eid, &key->rmt);
369 gid_to_dp_address (&a->lcl_eid, &key->lcl);
370 key->vni = a->vni;
371
372 p = hash_get_mem (lgm->lisp_gpe_fwd_entries, key);
373
374 if (NULL != p)
375 {
376 return (pool_elt_at_index (lgm->lisp_fwd_entry_pool, p[0]));
377 }
378 return (NULL);
379}
380
381static int
382lisp_gpe_fwd_entry_path_sort (void *a1, void *a2)
383{
384 lisp_fwd_path_t *p1 = a1, *p2 = a2;
385
386 return (p1->priority - p2->priority);
387}
388
389static void
390lisp_gpe_fwd_entry_mk_paths (lisp_gpe_fwd_entry_t * lfe,
391 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
392{
Neale Ranns5e575b12016-10-03 09:40:25 +0100393 lisp_fwd_path_t *path;
394 u32 index;
395
Neale Ranns5e575b12016-10-03 09:40:25 +0100396 vec_validate (lfe->paths, vec_len (a->locator_pairs) - 1);
397
398 vec_foreach_index (index, a->locator_pairs)
399 {
400 path = &lfe->paths[index];
401
402 path->priority = a->locator_pairs[index].priority;
403 path->weight = a->locator_pairs[index].weight;
404
405 path->lisp_adj =
406 lisp_gpe_adjacency_find_or_create_and_lock (&a->locator_pairs
407 [index],
Filip Tehlard5fcc462016-10-17 16:20:18 +0200408 a->dp_table, lfe->key->vni);
Neale Ranns5e575b12016-10-03 09:40:25 +0100409 }
410 vec_sort_with_function (lfe->paths, lisp_gpe_fwd_entry_path_sort);
411}
412
Filip Tehlar21511912017-04-07 10:41:42 +0200413void
414vnet_lisp_gpe_add_fwd_counters (vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
415 u32 fwd_entry_index)
416{
417 const lisp_gpe_adjacency_t *ladj;
418 lisp_fwd_path_t *path;
419 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
420 u8 *dummy_elt;
421 lisp_gpe_fwd_entry_t *lfe;
422 lisp_gpe_fwd_entry_key_t fe_key;
423 lisp_stats_key_t key;
424
425 lfe = find_fwd_entry (lgm, a, &fe_key);
426
427 if (LISP_GPE_FWD_ENTRY_TYPE_NORMAL != lfe->type)
428 return;
429
430 memset (&key, 0, sizeof (key));
431 key.fwd_entry_index = fwd_entry_index;
432
433 vec_foreach (path, lfe->paths)
434 {
435 ladj = lisp_gpe_adjacency_get (path->lisp_adj);
436 key.tunnel_index = ladj->tunnel_index;
437 lisp_stats_key_t *key_copy = clib_mem_alloc (sizeof (*key_copy));
438 memcpy (key_copy, &key, sizeof (*key_copy));
439 pool_get (lgm->dummy_stats_pool, dummy_elt);
440 hash_set_mem (lgm->lisp_stats_index_by_key, key_copy,
441 dummy_elt - lgm->dummy_stats_pool);
442
443 vlib_validate_combined_counter (&lgm->counters,
444 dummy_elt - lgm->dummy_stats_pool);
445 vlib_zero_combined_counter (&lgm->counters,
446 dummy_elt - lgm->dummy_stats_pool);
447 }
448}
449
Neale Ranns5e575b12016-10-03 09:40:25 +0100450/**
451 * @brief Add/Delete LISP IP forwarding entry.
452 *
453 * creation of forwarding entries for IP LISP overlay:
454 *
455 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
456 * @param[in] a Parameters for building the forwarding entry.
457 *
458 * @return 0 on success.
459 */
460static int
461add_ip_fwd_entry (lisp_gpe_main_t * lgm,
462 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
463{
464 lisp_gpe_fwd_entry_key_t key;
465 lisp_gpe_fwd_entry_t *lfe;
466 fib_protocol_t fproto;
467
468 lfe = find_fwd_entry (lgm, a, &key);
469
470 if (NULL != lfe)
471 /* don't support updates */
472 return VNET_API_ERROR_INVALID_VALUE;
473
474 pool_get (lgm->lisp_fwd_entry_pool, lfe);
475 memset (lfe, 0, sizeof (*lfe));
476 lfe->key = clib_mem_alloc (sizeof (key));
477 memcpy (lfe->key, &key, sizeof (key));
478
479 hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key,
480 lfe - lgm->lisp_fwd_entry_pool);
481
482 fproto = (IP4 == ip_prefix_version (&fid_addr_ippref (&lfe->key->rmt)) ?
483 FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
484
485 lfe->type = (a->is_negative ?
486 LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE :
487 LISP_GPE_FWD_ENTRY_TYPE_NORMAL);
488 lfe->tenant = lisp_gpe_tenant_find_or_create (lfe->key->vni);
489 lfe->eid_table_id = a->table_id;
490 lfe->eid_fib_index = fib_table_find_or_create_and_lock (fproto,
491 lfe->eid_table_id);
Filip Tehlared6b52b2017-03-22 09:02:33 +0100492 lfe->is_src_dst = a->is_src_dst;
Neale Ranns5e575b12016-10-03 09:40:25 +0100493
494 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
495 {
496 lisp_gpe_fwd_entry_mk_paths (lfe, a);
497 }
498
499 create_fib_entries (lfe);
Neale Ranns5e575b12016-10-03 09:40:25 +0100500 return (0);
501}
502
503static void
504del_ip_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
505{
506 lisp_fwd_path_t *path;
507 fib_protocol_t fproto;
508
509 vec_foreach (path, lfe->paths)
510 {
511 lisp_gpe_adjacency_unlock (path->lisp_adj);
512 }
513
514 delete_fib_entries (lfe);
515
516 fproto = (IP4 == ip_prefix_version (&fid_addr_ippref (&lfe->key->rmt)) ?
517 FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
518 fib_table_unlock (lfe->eid_fib_index, fproto);
519
520 hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
521 clib_mem_free (lfe->key);
522 pool_put (lgm->lisp_fwd_entry_pool, lfe);
523}
524
525/**
526 * @brief Add/Delete LISP IP forwarding entry.
527 *
528 * removal of forwarding entries for IP LISP overlay:
529 *
530 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
531 * @param[in] a Parameters for building the forwarding entry.
532 *
533 * @return 0 on success.
534 */
535static int
536del_ip_fwd_entry (lisp_gpe_main_t * lgm,
537 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
538{
539 lisp_gpe_fwd_entry_key_t key;
540 lisp_gpe_fwd_entry_t *lfe;
541
542 lfe = find_fwd_entry (lgm, a, &key);
543
544 if (NULL == lfe)
545 /* no such entry */
546 return VNET_API_ERROR_INVALID_VALUE;
547
548 del_ip_fwd_entry_i (lgm, lfe);
549
550 return (0);
551}
552
553static void
554make_mac_fib_key (BVT (clib_bihash_kv) * kv, u16 bd_index, u8 src_mac[6],
555 u8 dst_mac[6])
556{
557 kv->key[0] = (((u64) bd_index) << 48) | mac_to_u64 (dst_mac);
558 kv->key[1] = mac_to_u64 (src_mac);
559 kv->key[2] = 0;
560}
561
562/**
563 * @brief Lookup L2 SD FIB entry
564 *
565 * Does a vni + dest + source lookup in the L2 LISP FIB. If the lookup fails
566 * it tries a second time with source set to 0 (i.e., a simple dest lookup).
567 *
568 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
569 * @param[in] bd_index Bridge domain index.
570 * @param[in] src_mac Source mac address.
571 * @param[in] dst_mac Destination mac address.
572 *
573 * @return index of mapping matching the lookup key.
574 */
575index_t
576lisp_l2_fib_lookup (lisp_gpe_main_t * lgm, u16 bd_index, u8 src_mac[6],
577 u8 dst_mac[6])
578{
579 int rv;
580 BVT (clib_bihash_kv) kv, value;
581
582 make_mac_fib_key (&kv, bd_index, src_mac, dst_mac);
583 rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value);
584
585 /* no match, try with src 0, catch all for dst */
586 if (rv != 0)
587 {
588 kv.key[1] = 0;
589 rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value);
590 if (rv == 0)
591 return value.value;
592 }
Filip Tehlard5fcc462016-10-17 16:20:18 +0200593 else
594 return value.value;
Neale Ranns5e575b12016-10-03 09:40:25 +0100595
596 return lisp_gpe_main.l2_lb_cp_lkup.dpoi_index;
597}
598
599/**
600 * @brief Add/del L2 SD FIB entry
601 *
602 * Inserts value in L2 FIB keyed by vni + dest + source. If entry is
603 * overwritten the associated value is returned.
604 *
605 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
606 * @param[in] bd_index Bridge domain index.
607 * @param[in] src_mac Source mac address.
608 * @param[in] dst_mac Destination mac address.
609 * @param[in] val Value to add.
610 * @param[in] is_add Add/del flag.
611 *
612 * @return ~0 or value of overwritten entry.
613 */
614static u32
615lisp_l2_fib_add_del_entry (u16 bd_index, u8 src_mac[6],
616 u8 dst_mac[6], const dpo_id_t * dpo, u8 is_add)
617{
618 lisp_gpe_main_t *lgm = &lisp_gpe_main;
619 BVT (clib_bihash_kv) kv, value;
620 u32 old_val = ~0;
621
622 make_mac_fib_key (&kv, bd_index, src_mac, dst_mac);
623
624 if (BV (clib_bihash_search) (&lgm->l2_fib, &kv, &value) == 0)
625 old_val = value.value;
626
627 if (!is_add)
628 BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 0 /* is_add */ );
629 else
630 {
631 kv.value = dpo->dpoi_index;
632 BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 1 /* is_add */ );
633 }
634 return old_val;
635}
636
637#define L2_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
638#define L2_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20)
639
640static void
641l2_fib_init (lisp_gpe_main_t * lgm)
642{
643 index_t lbi;
644
645 BV (clib_bihash_init) (&lgm->l2_fib, "l2 fib",
646 1 << max_log2 (L2_FIB_DEFAULT_HASH_NUM_BUCKETS),
647 L2_FIB_DEFAULT_HASH_MEMORY_SIZE);
648
649 /*
650 * the result from a 'miss' in a L2 Table
651 */
652 lbi = load_balance_create (1, DPO_PROTO_ETHERNET, 0);
653 load_balance_set_bucket (lbi, 0, lisp_cp_dpo_get (DPO_PROTO_ETHERNET));
654
655 dpo_set (&lgm->l2_lb_cp_lkup, DPO_LOAD_BALANCE, DPO_PROTO_ETHERNET, lbi);
656}
657
658static void
659del_l2_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
660{
661 lisp_fwd_path_t *path;
662
Florin Coras2ccf7682016-10-04 18:03:49 +0300663 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
664 {
665 vec_foreach (path, lfe->paths)
666 {
667 lisp_gpe_adjacency_unlock (path->lisp_adj);
668 }
669 fib_path_list_child_remove (lfe->l2.path_list_index,
670 lfe->l2.child_index);
671 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100672
673 lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index,
674 fid_addr_mac (&lfe->key->lcl),
675 fid_addr_mac (&lfe->key->rmt), NULL, 0);
676
Neale Ranns5e575b12016-10-03 09:40:25 +0100677 hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
678 clib_mem_free (lfe->key);
679 pool_put (lgm->lisp_fwd_entry_pool, lfe);
680}
681
682/**
683 * @brief Delete LISP L2 forwarding entry.
684 *
685 * Coordinates the removal of forwarding entries for L2 LISP overlay:
686 *
687 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
688 * @param[in] a Parameters for building the forwarding entry.
689 *
690 * @return 0 on success.
691 */
692static int
693del_l2_fwd_entry (lisp_gpe_main_t * lgm,
694 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
695{
696 lisp_gpe_fwd_entry_key_t key;
697 lisp_gpe_fwd_entry_t *lfe;
698
699 lfe = find_fwd_entry (lgm, a, &key);
700
Florin Coras2ccf7682016-10-04 18:03:49 +0300701 if (NULL == lfe)
Neale Ranns5e575b12016-10-03 09:40:25 +0100702 return VNET_API_ERROR_INVALID_VALUE;
703
704 del_l2_fwd_entry_i (lgm, lfe);
705
706 return (0);
707}
708
709/**
Florin Corasce1b4c72017-01-26 14:25:34 -0800710 * @brief Construct and insert the forwarding information used by an L2 entry
Neale Ranns5e575b12016-10-03 09:40:25 +0100711 */
712static void
713lisp_gpe_l2_update_fwding (lisp_gpe_fwd_entry_t * lfe)
714{
715 lisp_gpe_main_t *lgm = &lisp_gpe_main;
Neale Ranns948e00f2016-10-20 13:39:34 +0100716 dpo_id_t dpo = DPO_INVALID;
Neale Ranns5e575b12016-10-03 09:40:25 +0100717
718 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
719 {
720 fib_path_list_contribute_forwarding (lfe->l2.path_list_index,
721 FIB_FORW_CHAIN_TYPE_ETHERNET,
722 &lfe->l2.dpo);
723 dpo_copy (&dpo, &lfe->l2.dpo);
724 }
725 else
726 {
Florin Corasce1b4c72017-01-26 14:25:34 -0800727 switch (lfe->action)
728 {
729 case SEND_MAP_REQUEST:
730 dpo_copy (&dpo, &lgm->l2_lb_cp_lkup);
731 break;
732 case NO_ACTION:
733 case FORWARD_NATIVE:
734 case DROP:
735 dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_ETHERNET));
736 }
Neale Ranns5e575b12016-10-03 09:40:25 +0100737 }
738
739 /* add entry to l2 lisp fib */
740 lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index,
741 fid_addr_mac (&lfe->key->lcl),
742 fid_addr_mac (&lfe->key->rmt), &dpo, 1);
743
744 dpo_reset (&dpo);
745}
746
747/**
748 * @brief Add LISP L2 forwarding entry.
749 *
750 * Coordinates the creation of forwarding entries for L2 LISP overlay:
751 * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB.
752 *
753 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
754 * @param[in] a Parameters for building the forwarding entry.
755 *
756 * @return 0 on success.
757 */
758static int
759add_l2_fwd_entry (lisp_gpe_main_t * lgm,
760 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
761{
762 lisp_gpe_fwd_entry_key_t key;
763 bd_main_t *bdm = &bd_main;
764 lisp_gpe_fwd_entry_t *lfe;
765 uword *bd_indexp;
766
767 bd_indexp = hash_get (bdm->bd_index_by_bd_id, a->bd_id);
768 if (!bd_indexp)
769 {
770 clib_warning ("bridge domain %d doesn't exist", a->bd_id);
771 return -1;
772 }
773
774 lfe = find_fwd_entry (lgm, a, &key);
775
776 if (NULL != lfe)
777 /* don't support updates */
778 return VNET_API_ERROR_INVALID_VALUE;
779
780 pool_get (lgm->lisp_fwd_entry_pool, lfe);
781 memset (lfe, 0, sizeof (*lfe));
782 lfe->key = clib_mem_alloc (sizeof (key));
783 memcpy (lfe->key, &key, sizeof (key));
784
785 hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key,
786 lfe - lgm->lisp_fwd_entry_pool);
787
788 lfe->type = (a->is_negative ?
789 LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE :
790 LISP_GPE_FWD_ENTRY_TYPE_NORMAL);
791 lfe->l2.eid_bd_id = a->bd_id;
792 lfe->l2.eid_bd_index = bd_indexp[0];
793 lfe->tenant = lisp_gpe_tenant_find_or_create (lfe->key->vni);
794
795 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
796 {
797 fib_route_path_t *rpaths;
798
799 /*
800 * Make the sorted array of LISP paths with their resp. adjacency
801 */
802 lisp_gpe_fwd_entry_mk_paths (lfe, a);
803
804 /*
805 * From the LISP paths, construct a FIB path list that will
806 * contribute a load-balance.
807 */
808 rpaths = lisp_gpe_mk_fib_paths (lfe->paths);
809
810 lfe->l2.path_list_index =
811 fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths);
812
813 /*
814 * become a child of the path-list so we receive updates when
815 * its forwarding state changes. this includes an implicit lock.
816 */
817 lfe->l2.child_index =
818 fib_path_list_child_add (lfe->l2.path_list_index,
819 FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
820 lfe - lgm->lisp_fwd_entry_pool);
821 }
822 else
823 {
824 lfe->action = a->action;
825 }
826
827 lisp_gpe_l2_update_fwding (lfe);
828
829 return 0;
830}
831
832/**
Florin Corasce1b4c72017-01-26 14:25:34 -0800833 * @brief Lookup NSH SD FIB entry
834 *
835 * Does an SPI+SI lookup in the NSH LISP FIB.
836 *
837 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
838 * @param[in] spi_si SPI + SI.
839 *
840 * @return next node index.
841 */
842const dpo_id_t *
Florin Coras263440e2017-02-22 23:38:08 -0800843lisp_nsh_fib_lookup (lisp_gpe_main_t * lgm, u32 spi_si_net_order)
Florin Corasce1b4c72017-01-26 14:25:34 -0800844{
845 int rv;
846 BVT (clib_bihash_kv) kv, value;
847
848 memset (&kv, 0, sizeof (kv));
Florin Coras263440e2017-02-22 23:38:08 -0800849 kv.key[0] = spi_si_net_order;
Florin Corasce1b4c72017-01-26 14:25:34 -0800850 rv = BV (clib_bihash_search_inline_2) (&lgm->nsh_fib, &kv, &value);
851
852 if (rv != 0)
853 {
854 return lgm->nsh_cp_lkup;
855 }
856 else
857 {
858 lisp_gpe_fwd_entry_t *lfe;
859 lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, value.value);
860 return &lfe->nsh.choice;
861 }
862}
863
864/**
865 * @brief Add/del NSH FIB entry
866 *
867 * Inserts value in NSH FIB keyed by SPI+SI. If entry is
868 * overwritten the associated value is returned.
869 *
870 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
871 * @param[in] spi_si SPI + SI.
872 * @param[in] dpo Load balanced mapped to SPI + SI
873 *
874 * @return ~0 or value of overwritten entry.
875 */
876static u32
Florin Coras263440e2017-02-22 23:38:08 -0800877lisp_nsh_fib_add_del_entry (u32 spi_si_host_order, u32 lfei, u8 is_add)
Florin Corasce1b4c72017-01-26 14:25:34 -0800878{
879 lisp_gpe_main_t *lgm = &lisp_gpe_main;
880 BVT (clib_bihash_kv) kv, value;
881 u32 old_val = ~0;
882
883 memset (&kv, 0, sizeof (kv));
Florin Coras263440e2017-02-22 23:38:08 -0800884 kv.key[0] = clib_host_to_net_u32 (spi_si_host_order);
Florin Corasce1b4c72017-01-26 14:25:34 -0800885 kv.value = 0ULL;
886
887 if (BV (clib_bihash_search) (&lgm->nsh_fib, &kv, &value) == 0)
888 old_val = value.value;
889
890 if (!is_add)
891 BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 0 /* is_add */ );
892 else
893 {
894 kv.value = lfei;
895 BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 1 /* is_add */ );
896 }
897 return old_val;
898}
899
900#define NSH_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
901#define NSH_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20)
902
903static void
904nsh_fib_init (lisp_gpe_main_t * lgm)
905{
906 BV (clib_bihash_init) (&lgm->nsh_fib, "nsh fib",
907 1 << max_log2 (NSH_FIB_DEFAULT_HASH_NUM_BUCKETS),
908 NSH_FIB_DEFAULT_HASH_MEMORY_SIZE);
909
910 /*
911 * the result from a 'miss' in a NSH Table
912 */
913 lgm->nsh_cp_lkup = lisp_cp_dpo_get (DPO_PROTO_NSH);
914}
915
916static void
917del_nsh_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
918{
919 lisp_fwd_path_t *path;
920
921 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
922 {
923 vec_foreach (path, lfe->paths)
924 {
925 lisp_gpe_adjacency_unlock (path->lisp_adj);
926 }
927 fib_path_list_child_remove (lfe->nsh.path_list_index,
928 lfe->nsh.child_index);
929 dpo_reset (&lfe->nsh.choice);
930 }
931
932 lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt), (u32) ~ 0, 0);
933
934 hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
935 clib_mem_free (lfe->key);
936 pool_put (lgm->lisp_fwd_entry_pool, lfe);
937}
938
939/**
940 * @brief Delete LISP NSH forwarding entry.
941 *
942 * Coordinates the removal of forwarding entries for NSH LISP overlay:
943 *
944 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
945 * @param[in] a Parameters for building the forwarding entry.
946 *
947 * @return 0 on success.
948 */
949static int
950del_nsh_fwd_entry (lisp_gpe_main_t * lgm,
951 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
952{
953 lisp_gpe_fwd_entry_key_t key;
954 lisp_gpe_fwd_entry_t *lfe;
955
956 lfe = find_fwd_entry (lgm, a, &key);
957
958 if (NULL == lfe)
959 return VNET_API_ERROR_INVALID_VALUE;
960
961 del_nsh_fwd_entry_i (lgm, lfe);
962
963 return (0);
964}
965
966/**
967 * @brief Construct and insert the forwarding information used by an NSH entry
968 */
969static void
970lisp_gpe_nsh_update_fwding (lisp_gpe_fwd_entry_t * lfe)
971{
972 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
973 dpo_id_t dpo = DPO_INVALID;
974 vnet_hw_interface_t *hi;
975 uword *hip;
976
977 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
978 {
979 fib_path_list_contribute_forwarding (lfe->nsh.path_list_index,
980 FIB_FORW_CHAIN_TYPE_NSH,
981 &lfe->nsh.dpo);
982
983 /*
984 * LISP encap is always the same for this SPI+SI so we do that hash now
985 * and stack on the choice.
986 */
987 if (DPO_LOAD_BALANCE == lfe->nsh.dpo.dpoi_type)
988 {
989 const dpo_id_t *tmp;
990 const load_balance_t *lb;
991 int hash;
992
993 lb = load_balance_get (lfe->nsh.dpo.dpoi_index);
994 hash = fid_addr_nsh (&lfe->key->rmt) % lb->lb_n_buckets;
995 tmp =
996 load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
997
998 dpo_copy (&dpo, tmp);
999 }
1000 }
1001 else
1002 {
1003 switch (lfe->action)
1004 {
1005 case SEND_MAP_REQUEST:
1006 dpo_copy (&dpo, lgm->nsh_cp_lkup);
1007 break;
1008 case NO_ACTION:
1009 case FORWARD_NATIVE:
1010 case DROP:
1011 dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_NSH));
1012 }
1013 }
1014
1015 /* We have only one nsh-lisp interface (no NSH virtualization) */
1016 hip = hash_get (lgm->nsh_ifaces.hw_if_index_by_dp_table, 0);
Shwetha Bhandarib05f1f02017-02-14 10:39:06 +05301017 if (hip)
1018 {
1019 hi = vnet_get_hw_interface (lgm->vnet_main, hip[0]);
1020 dpo_stack_from_node (hi->tx_node_index, &lfe->nsh.choice, &dpo);
1021 }
Florin Corasce1b4c72017-01-26 14:25:34 -08001022 /* add entry to nsh lisp fib */
1023 lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt),
1024 lfe - lgm->lisp_fwd_entry_pool, 1);
Florin Corasce1b4c72017-01-26 14:25:34 -08001025 dpo_reset (&dpo);
Shwetha Bhandarib05f1f02017-02-14 10:39:06 +05301026
Florin Corasce1b4c72017-01-26 14:25:34 -08001027}
1028
1029/**
1030 * @brief Add LISP NSH forwarding entry.
1031 *
1032 * Coordinates the creation of forwarding entries for L2 LISP overlay:
1033 * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB.
1034 *
1035 * @param[in] lgm Reference to @ref lisp_gpe_main_t.
1036 * @param[in] a Parameters for building the forwarding entry.
1037 *
1038 * @return 0 on success.
1039 */
1040static int
1041add_nsh_fwd_entry (lisp_gpe_main_t * lgm,
1042 vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
1043{
1044 lisp_gpe_fwd_entry_key_t key;
1045 lisp_gpe_fwd_entry_t *lfe;
1046
1047 lfe = find_fwd_entry (lgm, a, &key);
1048
1049 if (NULL != lfe)
1050 /* don't support updates */
1051 return VNET_API_ERROR_INVALID_VALUE;
1052
1053 pool_get (lgm->lisp_fwd_entry_pool, lfe);
1054 memset (lfe, 0, sizeof (*lfe));
1055 lfe->key = clib_mem_alloc (sizeof (key));
1056 memcpy (lfe->key, &key, sizeof (key));
1057
1058 hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key,
1059 lfe - lgm->lisp_fwd_entry_pool);
1060
1061 lfe->type = (a->is_negative ?
1062 LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE :
1063 LISP_GPE_FWD_ENTRY_TYPE_NORMAL);
1064 lfe->tenant = 0;
1065
1066 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
1067 {
1068 fib_route_path_t *rpaths;
1069
1070 /*
1071 * Make the sorted array of LISP paths with their resp. adjacency
1072 */
1073 lisp_gpe_fwd_entry_mk_paths (lfe, a);
1074
1075 /*
1076 * From the LISP paths, construct a FIB path list that will
1077 * contribute a load-balance.
1078 */
1079 rpaths = lisp_gpe_mk_fib_paths (lfe->paths);
1080
1081 lfe->nsh.path_list_index =
1082 fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths);
1083
1084 /*
1085 * become a child of the path-list so we receive updates when
1086 * its forwarding state changes. this includes an implicit lock.
1087 */
1088 lfe->nsh.child_index =
1089 fib_path_list_child_add (lfe->nsh.path_list_index,
1090 FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
1091 lfe - lgm->lisp_fwd_entry_pool);
1092 }
1093 else
1094 {
1095 lfe->action = a->action;
1096 }
1097
1098 lisp_gpe_nsh_update_fwding (lfe);
1099
1100 return 0;
1101}
1102
1103/**
Neale Ranns5e575b12016-10-03 09:40:25 +01001104 * @brief conver from the embedded fib_node_t struct to the LSIP entry
1105 */
1106static lisp_gpe_fwd_entry_t *
1107lisp_gpe_fwd_entry_from_fib_node (fib_node_t * node)
1108{
1109 return ((lisp_gpe_fwd_entry_t *) (((char *) node) -
1110 STRUCT_OFFSET_OF (lisp_gpe_fwd_entry_t,
1111 node)));
1112}
1113
1114/**
1115 * @brief Function invoked during a backwalk of the FIB graph
1116 */
1117static fib_node_back_walk_rc_t
1118lisp_gpe_fib_node_back_walk (fib_node_t * node,
1119 fib_node_back_walk_ctx_t * ctx)
1120{
Florin Corasce1b4c72017-01-26 14:25:34 -08001121 lisp_gpe_fwd_entry_t *lfe = lisp_gpe_fwd_entry_from_fib_node (node);
1122
1123 if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_MAC)
1124 lisp_gpe_l2_update_fwding (lfe);
1125 else if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_NSH)
1126 lisp_gpe_nsh_update_fwding (lfe);
Neale Ranns5e575b12016-10-03 09:40:25 +01001127
1128 return (FIB_NODE_BACK_WALK_CONTINUE);
1129}
1130
1131/**
1132 * @brief Get a fib_node_t struct from the index of a LISP fwd entry
1133 */
1134static fib_node_t *
1135lisp_gpe_fwd_entry_get_fib_node (fib_node_index_t index)
1136{
1137 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1138 lisp_gpe_fwd_entry_t *lfe;
1139
1140 lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index);
1141
1142 return (&(lfe->node));
1143}
1144
1145/**
1146 * @brief An indication from the graph that the last lock has gone
1147 */
1148static void
1149lisp_gpe_fwd_entry_fib_node_last_lock_gone (fib_node_t * node)
1150{
1151 /* We don't manage the locks of the LISP objects via the graph, since
1152 * this object has no children. so this is a no-op. */
1153}
1154
1155/**
1156 * @brief Virtual function table to register with FIB for the LISP type
1157 */
1158const static fib_node_vft_t lisp_fwd_vft = {
1159 .fnv_get = lisp_gpe_fwd_entry_get_fib_node,
1160 .fnv_last_lock = lisp_gpe_fwd_entry_fib_node_last_lock_gone,
1161 .fnv_back_walk = lisp_gpe_fib_node_back_walk,
1162};
1163
1164/**
1165 * @brief Forwarding entry create/remove dispatcher.
1166 *
1167 * Calls l2 or l3 forwarding entry add/del function based on input data.
1168 *
1169 * @param[in] a Forwarding entry parameters.
1170 * @param[out] hw_if_indexp NOT USED
1171 *
1172 * @return 0 on success.
1173 */
1174int
1175vnet_lisp_gpe_add_del_fwd_entry (vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
1176 u32 * hw_if_indexp)
1177{
1178 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1179 u8 type;
1180
1181 if (vnet_lisp_gpe_enable_disable_status () == 0)
1182 {
1183 clib_warning ("LISP is disabled!");
1184 return VNET_API_ERROR_LISP_DISABLED;
1185 }
1186
1187 type = gid_address_type (&a->rmt_eid);
1188 switch (type)
1189 {
1190 case GID_ADDR_IP_PREFIX:
1191 if (a->is_add)
1192 return add_ip_fwd_entry (lgm, a);
1193 else
1194 return del_ip_fwd_entry (lgm, a);
1195 break;
1196 case GID_ADDR_MAC:
1197 if (a->is_add)
1198 return add_l2_fwd_entry (lgm, a);
1199 else
1200 return del_l2_fwd_entry (lgm, a);
Florin Corasce1b4c72017-01-26 14:25:34 -08001201 case GID_ADDR_NSH:
1202 if (a->is_add)
1203 return add_nsh_fwd_entry (lgm, a);
1204 else
1205 return del_nsh_fwd_entry (lgm, a);
Neale Ranns5e575b12016-10-03 09:40:25 +01001206 default:
1207 clib_warning ("Forwarding entries for type %d not supported!", type);
1208 return -1;
1209 }
1210}
1211
Filip Tehlar21511912017-04-07 10:41:42 +02001212int
Filip Tehlar4868ff62017-03-09 16:48:39 +01001213vnet_lisp_flush_stats (void)
1214{
1215 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
Filip Tehlar21511912017-04-07 10:41:42 +02001216 vlib_combined_counter_main_t *cm = &lgm->counters;
1217 u32 i;
Filip Tehlar4868ff62017-03-09 16:48:39 +01001218
Filip Tehlar21511912017-04-07 10:41:42 +02001219 for (i = 0; i < vlib_combined_counter_n_counters (cm); i++)
1220 vlib_zero_combined_counter (cm, i);
1221
1222 return 0;
Filip Tehlar4868ff62017-03-09 16:48:39 +01001223}
1224
1225static void
1226lisp_del_adj_stats (lisp_gpe_main_t * lgm, u32 fwd_entry_index, u32 ti)
1227{
1228 hash_pair_t *hp;
1229 lisp_stats_key_t key;
1230 void *key_copy;
1231 uword *p;
Filip Tehlar21511912017-04-07 10:41:42 +02001232 u8 *s;
Filip Tehlar4868ff62017-03-09 16:48:39 +01001233
1234 memset (&key, 0, sizeof (key));
1235 key.fwd_entry_index = fwd_entry_index;
1236 key.tunnel_index = ti;
1237
1238 p = hash_get_mem (lgm->lisp_stats_index_by_key, &key);
1239 if (p)
1240 {
Filip Tehlar21511912017-04-07 10:41:42 +02001241 s = pool_elt_at_index (lgm->dummy_stats_pool, p[0]);
Filip Tehlar4868ff62017-03-09 16:48:39 +01001242 hp = hash_get_pair (lgm->lisp_stats_index_by_key, &key);
1243 key_copy = (void *) (hp->key);
1244 hash_unset_mem (lgm->lisp_stats_index_by_key, &key);
1245 clib_mem_free (key_copy);
Filip Tehlar21511912017-04-07 10:41:42 +02001246 pool_put (lgm->dummy_stats_pool, s);
Filip Tehlar4868ff62017-03-09 16:48:39 +01001247 }
1248}
1249
1250void
Filip Tehlar21511912017-04-07 10:41:42 +02001251vnet_lisp_gpe_del_fwd_counters (vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
1252 u32 fwd_entry_index)
Filip Tehlar4868ff62017-03-09 16:48:39 +01001253{
1254 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1255 lisp_gpe_fwd_entry_key_t fe_key;
1256 lisp_gpe_fwd_entry_t *lfe;
1257 lisp_fwd_path_t *path;
1258 const lisp_gpe_adjacency_t *ladj;
1259
1260 lfe = find_fwd_entry (lgm, a, &fe_key);
1261 if (!lfe)
1262 return;
1263
1264 if (LISP_GPE_FWD_ENTRY_TYPE_NORMAL != lfe->type)
1265 return;
1266
1267 vec_foreach (path, lfe->paths)
1268 {
1269 ladj = lisp_gpe_adjacency_get (path->lisp_adj);
1270 lisp_del_adj_stats (lgm, fwd_entry_index, ladj->tunnel_index);
1271 }
1272}
1273
Neale Ranns5e575b12016-10-03 09:40:25 +01001274/**
1275 * @brief Flush all the forwrding entries
1276 */
1277void
1278vnet_lisp_gpe_fwd_entry_flush (void)
1279{
1280 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1281 lisp_gpe_fwd_entry_t *lfe;
1282
1283 /* *INDENT-OFF* */
1284 pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1285 ({
1286 switch (fid_addr_type(&lfe->key->rmt))
1287 {
1288 case FID_ADDR_MAC:
1289 del_l2_fwd_entry_i (lgm, lfe);
1290 break;
1291 case FID_ADDR_IP_PREF:
1292 del_ip_fwd_entry_i (lgm, lfe);
1293 break;
Florin Corasce1b4c72017-01-26 14:25:34 -08001294 case FID_ADDR_NSH:
1295 del_nsh_fwd_entry_i (lgm, lfe);
1296 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01001297 }
1298 }));
1299 /* *INDENT-ON* */
1300}
1301
1302static u8 *
1303format_lisp_fwd_path (u8 * s, va_list ap)
1304{
1305 lisp_fwd_path_t *lfp = va_arg (ap, lisp_fwd_path_t *);
1306
Filip Tehlarc3af7bf2017-01-13 14:13:09 +01001307 s = format (s, "weight:%d ", lfp->weight);
Neale Ranns5e575b12016-10-03 09:40:25 +01001308 s = format (s, "adj:[%U]\n",
1309 format_lisp_gpe_adjacency,
1310 lisp_gpe_adjacency_get (lfp->lisp_adj),
1311 LISP_GPE_ADJ_FORMAT_FLAG_NONE);
1312
1313 return (s);
1314}
1315
1316typedef enum lisp_gpe_fwd_entry_format_flag_t_
1317{
1318 LISP_GPE_FWD_ENTRY_FORMAT_NONE = (0 << 0),
1319 LISP_GPE_FWD_ENTRY_FORMAT_DETAIL = (1 << 1),
1320} lisp_gpe_fwd_entry_format_flag_t;
1321
1322
1323static u8 *
1324format_lisp_gpe_fwd_entry (u8 * s, va_list ap)
1325{
1326 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1327 lisp_gpe_fwd_entry_t *lfe = va_arg (ap, lisp_gpe_fwd_entry_t *);
1328 lisp_gpe_fwd_entry_format_flag_t flags =
1329 va_arg (ap, lisp_gpe_fwd_entry_format_flag_t);
1330
1331 s = format (s, "VNI:%d VRF:%d EID: %U -> %U [index:%d]",
1332 lfe->key->vni, lfe->eid_table_id,
1333 format_fid_address, &lfe->key->lcl,
1334 format_fid_address, &lfe->key->rmt,
1335 lfe - lgm->lisp_fwd_entry_pool);
1336
1337 if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
1338 {
1339 s = format (s, "\n Negative - action:%U",
1340 format_negative_mapping_action, lfe->action);
1341 }
1342 else
1343 {
1344 lisp_fwd_path_t *path;
1345
1346 s = format (s, "\n via:");
1347 vec_foreach (path, lfe->paths)
1348 {
1349 s = format (s, "\n %U", format_lisp_fwd_path, path);
1350 }
1351 }
1352
1353 if (flags & LISP_GPE_FWD_ENTRY_FORMAT_DETAIL)
1354 {
1355 switch (fid_addr_type (&lfe->key->rmt))
1356 {
1357 case FID_ADDR_MAC:
1358 s = format (s, " fib-path-list:%d\n", lfe->l2.path_list_index);
1359 s = format (s, " dpo:%U\n", format_dpo_id, &lfe->l2.dpo, 0);
1360 break;
Florin Corasce1b4c72017-01-26 14:25:34 -08001361 case FID_ADDR_NSH:
1362 s = format (s, " fib-path-list:%d\n", lfe->nsh.path_list_index);
1363 s = format (s, " dpo:%U\n", format_dpo_id, &lfe->nsh.dpo, 0);
1364 break;
Neale Ranns5e575b12016-10-03 09:40:25 +01001365 case FID_ADDR_IP_PREF:
1366 break;
1367 }
1368 }
1369
1370 return (s);
1371}
1372
1373static clib_error_t *
1374lisp_gpe_fwd_entry_show (vlib_main_t * vm,
1375 unformat_input_t * input, vlib_cli_command_t * cmd)
1376{
1377 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1378 lisp_gpe_fwd_entry_t *lfe;
1379 index_t index;
1380 u32 vni = ~0;
1381
1382 if (unformat (input, "vni %d", &vni))
1383 ;
1384 else if (unformat (input, "%d", &index))
1385 {
1386 if (!pool_is_free_index (lgm->lisp_fwd_entry_pool, index))
1387 {
1388 lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index);
1389
1390 vlib_cli_output (vm, "[%d@] %U",
1391 index,
1392 format_lisp_gpe_fwd_entry, lfe,
1393 LISP_GPE_FWD_ENTRY_FORMAT_DETAIL);
1394 }
1395 else
1396 {
1397 vlib_cli_output (vm, "entry %d invalid", index);
1398 }
1399
1400 return (NULL);
1401 }
1402
1403 /* *INDENT-OFF* */
1404 pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1405 ({
1406 if ((vni == ~0) ||
1407 (lfe->key->vni == vni))
1408 vlib_cli_output (vm, "%U", format_lisp_gpe_fwd_entry, lfe,
1409 LISP_GPE_FWD_ENTRY_FORMAT_NONE);
1410 }));
1411 /* *INDENT-ON* */
1412
1413 return (NULL);
1414}
1415
1416/* *INDENT-OFF* */
1417VLIB_CLI_COMMAND (lisp_gpe_fwd_entry_show_command, static) = {
Filip Tehlar82786c42017-02-20 15:20:37 +01001418 .path = "show gpe entry",
1419 .short_help = "show gpe entry vni <vni> vrf <vrf> [leid <leid>] reid <reid>",
Neale Ranns5e575b12016-10-03 09:40:25 +01001420 .function = lisp_gpe_fwd_entry_show,
1421};
1422/* *INDENT-ON* */
1423
1424clib_error_t *
1425lisp_gpe_fwd_entry_init (vlib_main_t * vm)
1426{
1427 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1428 clib_error_t *error = NULL;
1429
1430 if ((error = vlib_call_init_function (vm, lisp_cp_dpo_module_init)))
1431 return (error);
1432
1433 l2_fib_init (lgm);
Florin Corasce1b4c72017-01-26 14:25:34 -08001434 nsh_fib_init (lgm);
Neale Ranns5e575b12016-10-03 09:40:25 +01001435
1436 fib_node_register_type (FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, &lisp_fwd_vft);
1437
1438 return (error);
1439}
1440
Filip Tehlar5fae99c2017-01-18 12:57:37 +01001441lisp_api_gpe_fwd_entry_t *
1442vnet_lisp_gpe_fwd_entries_get_by_vni (u32 vni)
1443{
1444 lisp_gpe_main_t *lgm = &lisp_gpe_main;
1445 lisp_gpe_fwd_entry_t *lfe;
1446 lisp_api_gpe_fwd_entry_t *entries = 0, e;
1447
1448 /* *INDENT-OFF* */
1449 pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1450 ({
1451 if (lfe->key->vni == vni)
1452 {
1453 memset (&e, 0, sizeof (e));
1454 e.dp_table = lfe->eid_table_id;
1455 e.vni = lfe->key->vni;
1456 e.fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool;
1457 memcpy (&e.reid, &lfe->key->rmt, sizeof (e.reid));
1458 memcpy (&e.leid, &lfe->key->lcl, sizeof (e.leid));
1459 vec_add1 (entries, e);
1460 }
1461 }));
1462 /* *INDENT-ON* */
1463
1464 return entries;
1465}
1466
Neale Ranns5e575b12016-10-03 09:40:25 +01001467VLIB_INIT_FUNCTION (lisp_gpe_fwd_entry_init);
1468
1469/*
1470 * fd.io coding-style-patch-verification: ON
1471 *
1472 * Local Variables:
1473 * eval: (c-set-style "gnu")
1474 * End:
1475 */