LISP-GPE: add dump call for VNIs in use
[vpp.git] / src / vnet / lisp-gpe / lisp_gpe_fwd_entry.c
1 /*
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  */
41 static u32
42 ip_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     {
64       dpo_id_t src_lkup_dpo = DPO_INVALID;
65
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);
72       /*
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)));
83       /*
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),
91                                           LOOKUP_UNICAST,
92                                           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  */
139 static void
140 ip_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;
145   u8 have_default = 0;
146   u32 n_entries;
147
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
156   /* 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))
169     {
170       /*
171        * remove src FIB default route
172        */
173       if (have_default)
174         fib_table_entry_special_remove (src_fib_index, &default_pref,
175                                         FIB_SOURCE_LISP);
176
177       /*
178        * there's nothing left now, unlock the source FIB and the
179        * 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  */
197 static void
198 ip_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
223 static fib_route_path_t *
224 lisp_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);
247   }
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  */
264 static void
265 ip_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
283 static void
284 create_fib_entries (lisp_gpe_fwd_entry_t * lfe)
285 {
286   dpo_proto_t dproto;
287   ip_prefix_t ippref;
288   dproto = (ip_prefix_version (&lfe->key->rmt.ippref) == IP4 ?
289             DPO_PROTO_IP4 : DPO_PROTO_IP6);
290
291   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     }
302
303   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
304     {
305       dpo_id_t dpo = DPO_INVALID;
306
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         }
323       ip_src_fib_add_route_w_dpo (lfe->src_fib_index, &ippref, &dpo);
324       dpo_reset (&dpo);
325     }
326   else
327     {
328       ip_src_fib_add_route (lfe->src_fib_index, &ippref, lfe->paths);
329     }
330 }
331
332 static void
333 delete_fib_entries (lisp_gpe_fwd_entry_t * lfe)
334 {
335   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     }
347 }
348
349 static lisp_gpe_fwd_entry_t *
350 find_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
381 static int
382 lisp_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
389 static void
390 lisp_gpe_fwd_entry_mk_paths (lisp_gpe_fwd_entry_t * lfe,
391                              vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
392 {
393   lisp_fwd_path_t *path;
394   u32 index;
395
396   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],
408                                                   a->dp_table, lfe->key->vni);
409   }
410   vec_sort_with_function (lfe->paths, lisp_gpe_fwd_entry_path_sort);
411 }
412
413 void
414 vnet_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
450 /**
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  */
460 static int
461 add_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);
492   lfe->is_src_dst = a->is_src_dst;
493
494   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
495     {
496       lisp_gpe_fwd_entry_mk_paths (lfe, a);
497     }
498   else
499     {
500       lfe->action = a->action;
501     }
502
503   create_fib_entries (lfe);
504   return (0);
505 }
506
507 static void
508 del_ip_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
509 {
510   lisp_fwd_path_t *path;
511   fib_protocol_t fproto;
512
513   vec_foreach (path, lfe->paths)
514   {
515     lisp_gpe_adjacency_unlock (path->lisp_adj);
516   }
517
518   delete_fib_entries (lfe);
519
520   fproto = (IP4 == ip_prefix_version (&fid_addr_ippref (&lfe->key->rmt)) ?
521             FIB_PROTOCOL_IP4 : FIB_PROTOCOL_IP6);
522   fib_table_unlock (lfe->eid_fib_index, fproto);
523
524   hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
525   clib_mem_free (lfe->key);
526   pool_put (lgm->lisp_fwd_entry_pool, lfe);
527 }
528
529 /**
530  * @brief Add/Delete LISP IP forwarding entry.
531  *
532  * removal of forwarding entries for IP LISP overlay:
533  *
534  * @param[in]   lgm     Reference to @ref lisp_gpe_main_t.
535  * @param[in]   a       Parameters for building the forwarding entry.
536  *
537  * @return 0 on success.
538  */
539 static int
540 del_ip_fwd_entry (lisp_gpe_main_t * lgm,
541                   vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
542 {
543   lisp_gpe_fwd_entry_key_t key;
544   lisp_gpe_fwd_entry_t *lfe;
545
546   lfe = find_fwd_entry (lgm, a, &key);
547
548   if (NULL == lfe)
549     /* no such entry */
550     return VNET_API_ERROR_INVALID_VALUE;
551
552   del_ip_fwd_entry_i (lgm, lfe);
553
554   return (0);
555 }
556
557 static void
558 make_mac_fib_key (BVT (clib_bihash_kv) * kv, u16 bd_index, u8 src_mac[6],
559                   u8 dst_mac[6])
560 {
561   kv->key[0] = (((u64) bd_index) << 48) | mac_to_u64 (dst_mac);
562   kv->key[1] = mac_to_u64 (src_mac);
563   kv->key[2] = 0;
564 }
565
566 /**
567  * @brief Lookup L2 SD FIB entry
568  *
569  * Does a vni + dest + source lookup in the L2 LISP FIB. If the lookup fails
570  * it tries a second time with source set to 0 (i.e., a simple dest lookup).
571  *
572  * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
573  * @param[in]   bd_index        Bridge domain index.
574  * @param[in]   src_mac         Source mac address.
575  * @param[in]   dst_mac         Destination mac address.
576  *
577  * @return index of mapping matching the lookup key.
578  */
579 index_t
580 lisp_l2_fib_lookup (lisp_gpe_main_t * lgm, u16 bd_index, u8 src_mac[6],
581                     u8 dst_mac[6])
582 {
583   int rv;
584   BVT (clib_bihash_kv) kv, value;
585
586   make_mac_fib_key (&kv, bd_index, src_mac, dst_mac);
587   rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value);
588
589   /* no match, try with src 0, catch all for dst */
590   if (rv != 0)
591     {
592       kv.key[1] = 0;
593       rv = BV (clib_bihash_search_inline_2) (&lgm->l2_fib, &kv, &value);
594       if (rv == 0)
595         return value.value;
596     }
597   else
598     return value.value;
599
600   return lisp_gpe_main.l2_lb_cp_lkup.dpoi_index;
601 }
602
603 /**
604  * @brief Add/del L2 SD FIB entry
605  *
606  * Inserts value in L2 FIB keyed by vni + dest + source. If entry is
607  * overwritten the associated value is returned.
608  *
609  * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
610  * @param[in]   bd_index        Bridge domain index.
611  * @param[in]   src_mac         Source mac address.
612  * @param[in]   dst_mac         Destination mac address.
613  * @param[in]   val             Value to add.
614  * @param[in]   is_add          Add/del flag.
615  *
616  * @return ~0 or value of overwritten entry.
617  */
618 static u32
619 lisp_l2_fib_add_del_entry (u16 bd_index, u8 src_mac[6],
620                            u8 dst_mac[6], const dpo_id_t * dpo, u8 is_add)
621 {
622   lisp_gpe_main_t *lgm = &lisp_gpe_main;
623   BVT (clib_bihash_kv) kv, value;
624   u32 old_val = ~0;
625
626   make_mac_fib_key (&kv, bd_index, src_mac, dst_mac);
627
628   if (BV (clib_bihash_search) (&lgm->l2_fib, &kv, &value) == 0)
629     old_val = value.value;
630
631   if (!is_add)
632     BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 0 /* is_add */ );
633   else
634     {
635       kv.value = dpo->dpoi_index;
636       BV (clib_bihash_add_del) (&lgm->l2_fib, &kv, 1 /* is_add */ );
637     }
638   return old_val;
639 }
640
641 #define L2_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
642 #define L2_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20)
643
644 static void
645 l2_fib_init (lisp_gpe_main_t * lgm)
646 {
647   index_t lbi;
648
649   BV (clib_bihash_init) (&lgm->l2_fib, "l2 fib",
650                          1 << max_log2 (L2_FIB_DEFAULT_HASH_NUM_BUCKETS),
651                          L2_FIB_DEFAULT_HASH_MEMORY_SIZE);
652
653   /*
654    * the result from a 'miss' in a L2 Table
655    */
656   lbi = load_balance_create (1, DPO_PROTO_ETHERNET, 0);
657   load_balance_set_bucket (lbi, 0, lisp_cp_dpo_get (DPO_PROTO_ETHERNET));
658
659   dpo_set (&lgm->l2_lb_cp_lkup, DPO_LOAD_BALANCE, DPO_PROTO_ETHERNET, lbi);
660 }
661
662 static void
663 del_l2_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
664 {
665   lisp_fwd_path_t *path;
666
667   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
668     {
669       vec_foreach (path, lfe->paths)
670       {
671         lisp_gpe_adjacency_unlock (path->lisp_adj);
672       }
673       fib_path_list_child_remove (lfe->l2.path_list_index,
674                                   lfe->l2.child_index);
675     }
676
677   lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index,
678                              fid_addr_mac (&lfe->key->lcl),
679                              fid_addr_mac (&lfe->key->rmt), NULL, 0);
680
681   hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
682   clib_mem_free (lfe->key);
683   pool_put (lgm->lisp_fwd_entry_pool, lfe);
684 }
685
686 /**
687  * @brief Delete LISP L2 forwarding entry.
688  *
689  * Coordinates the removal of forwarding entries for L2 LISP overlay:
690  *
691  * @param[in]   lgm     Reference to @ref lisp_gpe_main_t.
692  * @param[in]   a       Parameters for building the forwarding entry.
693  *
694  * @return 0 on success.
695  */
696 static int
697 del_l2_fwd_entry (lisp_gpe_main_t * lgm,
698                   vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
699 {
700   lisp_gpe_fwd_entry_key_t key;
701   lisp_gpe_fwd_entry_t *lfe;
702
703   lfe = find_fwd_entry (lgm, a, &key);
704
705   if (NULL == lfe)
706     return VNET_API_ERROR_INVALID_VALUE;
707
708   del_l2_fwd_entry_i (lgm, lfe);
709
710   return (0);
711 }
712
713 /**
714  * @brief Construct and insert the forwarding information used by an L2 entry
715  */
716 static void
717 lisp_gpe_l2_update_fwding (lisp_gpe_fwd_entry_t * lfe)
718 {
719   lisp_gpe_main_t *lgm = &lisp_gpe_main;
720   dpo_id_t dpo = DPO_INVALID;
721
722   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
723     {
724       fib_path_list_contribute_forwarding (lfe->l2.path_list_index,
725                                            FIB_FORW_CHAIN_TYPE_ETHERNET,
726                                            &lfe->l2.dpo);
727       dpo_copy (&dpo, &lfe->l2.dpo);
728     }
729   else
730     {
731       switch (lfe->action)
732         {
733         case SEND_MAP_REQUEST:
734           dpo_copy (&dpo, &lgm->l2_lb_cp_lkup);
735           break;
736         case NO_ACTION:
737         case FORWARD_NATIVE:
738         case DROP:
739           dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_ETHERNET));
740         }
741     }
742
743   /* add entry to l2 lisp fib */
744   lisp_l2_fib_add_del_entry (lfe->l2.eid_bd_index,
745                              fid_addr_mac (&lfe->key->lcl),
746                              fid_addr_mac (&lfe->key->rmt), &dpo, 1);
747
748   dpo_reset (&dpo);
749 }
750
751 /**
752  * @brief Add LISP L2 forwarding entry.
753  *
754  * Coordinates the creation of forwarding entries for L2 LISP overlay:
755  * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB.
756  *
757  * @param[in]   lgm     Reference to @ref lisp_gpe_main_t.
758  * @param[in]   a       Parameters for building the forwarding entry.
759  *
760  * @return 0 on success.
761  */
762 static int
763 add_l2_fwd_entry (lisp_gpe_main_t * lgm,
764                   vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
765 {
766   lisp_gpe_fwd_entry_key_t key;
767   bd_main_t *bdm = &bd_main;
768   lisp_gpe_fwd_entry_t *lfe;
769   uword *bd_indexp;
770
771   bd_indexp = hash_get (bdm->bd_index_by_bd_id, a->bd_id);
772   if (!bd_indexp)
773     {
774       clib_warning ("bridge domain %d doesn't exist", a->bd_id);
775       return -1;
776     }
777
778   lfe = find_fwd_entry (lgm, a, &key);
779
780   if (NULL != lfe)
781     /* don't support updates */
782     return VNET_API_ERROR_INVALID_VALUE;
783
784   pool_get (lgm->lisp_fwd_entry_pool, lfe);
785   memset (lfe, 0, sizeof (*lfe));
786   lfe->key = clib_mem_alloc (sizeof (key));
787   memcpy (lfe->key, &key, sizeof (key));
788
789   hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key,
790                 lfe - lgm->lisp_fwd_entry_pool);
791
792   lfe->type = (a->is_negative ?
793                LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE :
794                LISP_GPE_FWD_ENTRY_TYPE_NORMAL);
795   lfe->l2.eid_bd_id = a->bd_id;
796   lfe->l2.eid_bd_index = bd_indexp[0];
797   lfe->tenant = lisp_gpe_tenant_find_or_create (lfe->key->vni);
798
799   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
800     {
801       fib_route_path_t *rpaths;
802
803       /*
804        * Make the sorted array of LISP paths with their resp. adjacency
805        */
806       lisp_gpe_fwd_entry_mk_paths (lfe, a);
807
808       /*
809        * From the LISP paths, construct a FIB path list that will
810        * contribute a load-balance.
811        */
812       rpaths = lisp_gpe_mk_fib_paths (lfe->paths);
813
814       lfe->l2.path_list_index =
815         fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths);
816
817       /*
818        * become a child of the path-list so we receive updates when
819        * its forwarding state changes. this includes an implicit lock.
820        */
821       lfe->l2.child_index =
822         fib_path_list_child_add (lfe->l2.path_list_index,
823                                  FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
824                                  lfe - lgm->lisp_fwd_entry_pool);
825     }
826   else
827     {
828       lfe->action = a->action;
829     }
830
831   lisp_gpe_l2_update_fwding (lfe);
832
833   return 0;
834 }
835
836 /**
837  * @brief Lookup NSH SD FIB entry
838  *
839  * Does an SPI+SI lookup in the NSH LISP FIB.
840  *
841  * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
842  * @param[in]   spi_si          SPI + SI.
843  *
844  * @return next node index.
845  */
846 const dpo_id_t *
847 lisp_nsh_fib_lookup (lisp_gpe_main_t * lgm, u32 spi_si_net_order)
848 {
849   int rv;
850   BVT (clib_bihash_kv) kv, value;
851
852   memset (&kv, 0, sizeof (kv));
853   kv.key[0] = spi_si_net_order;
854   rv = BV (clib_bihash_search_inline_2) (&lgm->nsh_fib, &kv, &value);
855
856   if (rv != 0)
857     {
858       return lgm->nsh_cp_lkup;
859     }
860   else
861     {
862       lisp_gpe_fwd_entry_t *lfe;
863       lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, value.value);
864       return &lfe->nsh.choice;
865     }
866 }
867
868 /**
869  * @brief Add/del NSH FIB entry
870  *
871  * Inserts value in NSH FIB keyed by SPI+SI. If entry is
872  * overwritten the associated value is returned.
873  *
874  * @param[in]   lgm             Reference to @ref lisp_gpe_main_t.
875  * @param[in]   spi_si          SPI + SI.
876  * @param[in]   dpo             Load balanced mapped to SPI + SI
877  *
878  * @return ~0 or value of overwritten entry.
879  */
880 static u32
881 lisp_nsh_fib_add_del_entry (u32 spi_si_host_order, u32 lfei, u8 is_add)
882 {
883   lisp_gpe_main_t *lgm = &lisp_gpe_main;
884   BVT (clib_bihash_kv) kv, value;
885   u32 old_val = ~0;
886
887   memset (&kv, 0, sizeof (kv));
888   kv.key[0] = clib_host_to_net_u32 (spi_si_host_order);
889   kv.value = 0ULL;
890
891   if (BV (clib_bihash_search) (&lgm->nsh_fib, &kv, &value) == 0)
892     old_val = value.value;
893
894   if (!is_add)
895     BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 0 /* is_add */ );
896   else
897     {
898       kv.value = lfei;
899       BV (clib_bihash_add_del) (&lgm->nsh_fib, &kv, 1 /* is_add */ );
900     }
901   return old_val;
902 }
903
904 #define NSH_FIB_DEFAULT_HASH_NUM_BUCKETS (64 * 1024)
905 #define NSH_FIB_DEFAULT_HASH_MEMORY_SIZE (32<<20)
906
907 static void
908 nsh_fib_init (lisp_gpe_main_t * lgm)
909 {
910   BV (clib_bihash_init) (&lgm->nsh_fib, "nsh fib",
911                          1 << max_log2 (NSH_FIB_DEFAULT_HASH_NUM_BUCKETS),
912                          NSH_FIB_DEFAULT_HASH_MEMORY_SIZE);
913
914   /*
915    * the result from a 'miss' in a NSH Table
916    */
917   lgm->nsh_cp_lkup = lisp_cp_dpo_get (DPO_PROTO_NSH);
918 }
919
920 static void
921 del_nsh_fwd_entry_i (lisp_gpe_main_t * lgm, lisp_gpe_fwd_entry_t * lfe)
922 {
923   lisp_fwd_path_t *path;
924
925   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
926     {
927       vec_foreach (path, lfe->paths)
928       {
929         lisp_gpe_adjacency_unlock (path->lisp_adj);
930       }
931       fib_path_list_child_remove (lfe->nsh.path_list_index,
932                                   lfe->nsh.child_index);
933       dpo_reset (&lfe->nsh.choice);
934     }
935
936   lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt), (u32) ~ 0, 0);
937
938   hash_unset_mem (lgm->lisp_gpe_fwd_entries, lfe->key);
939   clib_mem_free (lfe->key);
940   pool_put (lgm->lisp_fwd_entry_pool, lfe);
941 }
942
943 /**
944  * @brief Delete LISP NSH forwarding entry.
945  *
946  * Coordinates the removal of forwarding entries for NSH LISP overlay:
947  *
948  * @param[in]   lgm     Reference to @ref lisp_gpe_main_t.
949  * @param[in]   a       Parameters for building the forwarding entry.
950  *
951  * @return 0 on success.
952  */
953 static int
954 del_nsh_fwd_entry (lisp_gpe_main_t * lgm,
955                    vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
956 {
957   lisp_gpe_fwd_entry_key_t key;
958   lisp_gpe_fwd_entry_t *lfe;
959
960   lfe = find_fwd_entry (lgm, a, &key);
961
962   if (NULL == lfe)
963     return VNET_API_ERROR_INVALID_VALUE;
964
965   del_nsh_fwd_entry_i (lgm, lfe);
966
967   return (0);
968 }
969
970 /**
971  * @brief Construct and insert the forwarding information used by an NSH entry
972  */
973 static void
974 lisp_gpe_nsh_update_fwding (lisp_gpe_fwd_entry_t * lfe)
975 {
976   lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
977   dpo_id_t dpo = DPO_INVALID;
978   vnet_hw_interface_t *hi;
979   uword *hip;
980
981   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
982     {
983       fib_path_list_contribute_forwarding (lfe->nsh.path_list_index,
984                                            FIB_FORW_CHAIN_TYPE_NSH,
985                                            &lfe->nsh.dpo);
986
987       /*
988        * LISP encap is always the same for this SPI+SI so we do that hash now
989        * and stack on the choice.
990        */
991       if (DPO_LOAD_BALANCE == lfe->nsh.dpo.dpoi_type)
992         {
993           const dpo_id_t *tmp;
994           const load_balance_t *lb;
995           int hash;
996
997           lb = load_balance_get (lfe->nsh.dpo.dpoi_index);
998           hash = fid_addr_nsh (&lfe->key->rmt) % lb->lb_n_buckets;
999           tmp =
1000             load_balance_get_bucket_i (lb, hash & lb->lb_n_buckets_minus_1);
1001
1002           dpo_copy (&dpo, tmp);
1003         }
1004     }
1005   else
1006     {
1007       switch (lfe->action)
1008         {
1009         case SEND_MAP_REQUEST:
1010           dpo_copy (&dpo, lgm->nsh_cp_lkup);
1011           break;
1012         case NO_ACTION:
1013         case FORWARD_NATIVE:
1014         case DROP:
1015           dpo_copy (&dpo, drop_dpo_get (DPO_PROTO_NSH));
1016         }
1017     }
1018
1019   /* We have only one nsh-lisp interface (no NSH virtualization) */
1020   hip = hash_get (lgm->nsh_ifaces.hw_if_index_by_dp_table, 0);
1021   if (hip)
1022     {
1023       hi = vnet_get_hw_interface (lgm->vnet_main, hip[0]);
1024       dpo_stack_from_node (hi->tx_node_index, &lfe->nsh.choice, &dpo);
1025     }
1026   /* add entry to nsh lisp fib */
1027   lisp_nsh_fib_add_del_entry (fid_addr_nsh (&lfe->key->rmt),
1028                               lfe - lgm->lisp_fwd_entry_pool, 1);
1029   dpo_reset (&dpo);
1030
1031 }
1032
1033 /**
1034  * @brief Add LISP NSH forwarding entry.
1035  *
1036  * Coordinates the creation of forwarding entries for L2 LISP overlay:
1037  * creates lisp-gpe tunnel and injects new entry in Source/Dest L2 FIB.
1038  *
1039  * @param[in]   lgm     Reference to @ref lisp_gpe_main_t.
1040  * @param[in]   a       Parameters for building the forwarding entry.
1041  *
1042  * @return 0 on success.
1043  */
1044 static int
1045 add_nsh_fwd_entry (lisp_gpe_main_t * lgm,
1046                    vnet_lisp_gpe_add_del_fwd_entry_args_t * a)
1047 {
1048   lisp_gpe_fwd_entry_key_t key;
1049   lisp_gpe_fwd_entry_t *lfe;
1050
1051   lfe = find_fwd_entry (lgm, a, &key);
1052
1053   if (NULL != lfe)
1054     /* don't support updates */
1055     return VNET_API_ERROR_INVALID_VALUE;
1056
1057   pool_get (lgm->lisp_fwd_entry_pool, lfe);
1058   memset (lfe, 0, sizeof (*lfe));
1059   lfe->key = clib_mem_alloc (sizeof (key));
1060   memcpy (lfe->key, &key, sizeof (key));
1061
1062   hash_set_mem (lgm->lisp_gpe_fwd_entries, lfe->key,
1063                 lfe - lgm->lisp_fwd_entry_pool);
1064
1065   lfe->type = (a->is_negative ?
1066                LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE :
1067                LISP_GPE_FWD_ENTRY_TYPE_NORMAL);
1068   lfe->tenant = 0;
1069
1070   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE != lfe->type)
1071     {
1072       fib_route_path_t *rpaths;
1073
1074       /*
1075        * Make the sorted array of LISP paths with their resp. adjacency
1076        */
1077       lisp_gpe_fwd_entry_mk_paths (lfe, a);
1078
1079       /*
1080        * From the LISP paths, construct a FIB path list that will
1081        * contribute a load-balance.
1082        */
1083       rpaths = lisp_gpe_mk_fib_paths (lfe->paths);
1084
1085       lfe->nsh.path_list_index =
1086         fib_path_list_create (FIB_PATH_LIST_FLAG_NONE, rpaths);
1087
1088       /*
1089        * become a child of the path-list so we receive updates when
1090        * its forwarding state changes. this includes an implicit lock.
1091        */
1092       lfe->nsh.child_index =
1093         fib_path_list_child_add (lfe->nsh.path_list_index,
1094                                  FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY,
1095                                  lfe - lgm->lisp_fwd_entry_pool);
1096     }
1097   else
1098     {
1099       lfe->action = a->action;
1100     }
1101
1102   lisp_gpe_nsh_update_fwding (lfe);
1103
1104   return 0;
1105 }
1106
1107 /**
1108  * @brief conver from the embedded fib_node_t struct to the LSIP entry
1109  */
1110 static lisp_gpe_fwd_entry_t *
1111 lisp_gpe_fwd_entry_from_fib_node (fib_node_t * node)
1112 {
1113   return ((lisp_gpe_fwd_entry_t *) (((char *) node) -
1114                                     STRUCT_OFFSET_OF (lisp_gpe_fwd_entry_t,
1115                                                       node)));
1116 }
1117
1118 /**
1119  * @brief Function invoked during a backwalk of the FIB graph
1120  */
1121 static fib_node_back_walk_rc_t
1122 lisp_gpe_fib_node_back_walk (fib_node_t * node,
1123                              fib_node_back_walk_ctx_t * ctx)
1124 {
1125   lisp_gpe_fwd_entry_t *lfe = lisp_gpe_fwd_entry_from_fib_node (node);
1126
1127   if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_MAC)
1128     lisp_gpe_l2_update_fwding (lfe);
1129   else if (fid_addr_type (&lfe->key->rmt) == FID_ADDR_NSH)
1130     lisp_gpe_nsh_update_fwding (lfe);
1131
1132   return (FIB_NODE_BACK_WALK_CONTINUE);
1133 }
1134
1135 /**
1136  * @brief Get a fib_node_t struct from the index of a LISP fwd entry
1137  */
1138 static fib_node_t *
1139 lisp_gpe_fwd_entry_get_fib_node (fib_node_index_t index)
1140 {
1141   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1142   lisp_gpe_fwd_entry_t *lfe;
1143
1144   lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index);
1145
1146   return (&(lfe->node));
1147 }
1148
1149 /**
1150  * @brief An indication from the graph that the last lock has gone
1151  */
1152 static void
1153 lisp_gpe_fwd_entry_fib_node_last_lock_gone (fib_node_t * node)
1154 {
1155   /* We don't manage the locks of the LISP objects via the graph, since
1156    * this object has no children. so this is a no-op. */
1157 }
1158
1159 /**
1160  * @brief Virtual function table to register with FIB for the LISP type
1161  */
1162 const static fib_node_vft_t lisp_fwd_vft = {
1163   .fnv_get = lisp_gpe_fwd_entry_get_fib_node,
1164   .fnv_last_lock = lisp_gpe_fwd_entry_fib_node_last_lock_gone,
1165   .fnv_back_walk = lisp_gpe_fib_node_back_walk,
1166 };
1167
1168 /**
1169  * @brief Forwarding entry create/remove dispatcher.
1170  *
1171  * Calls l2 or l3 forwarding entry add/del function based on input data.
1172  *
1173  * @param[in]   a       Forwarding entry parameters.
1174  * @param[out]  hw_if_indexp    NOT USED
1175  *
1176  * @return 0 on success.
1177  */
1178 int
1179 vnet_lisp_gpe_add_del_fwd_entry (vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
1180                                  u32 * hw_if_indexp)
1181 {
1182   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1183   u8 type;
1184
1185   if (vnet_lisp_gpe_enable_disable_status () == 0)
1186     {
1187       clib_warning ("LISP is disabled!");
1188       return VNET_API_ERROR_LISP_DISABLED;
1189     }
1190
1191   type = gid_address_type (&a->rmt_eid);
1192   switch (type)
1193     {
1194     case GID_ADDR_IP_PREFIX:
1195       if (a->is_add)
1196         return add_ip_fwd_entry (lgm, a);
1197       else
1198         return del_ip_fwd_entry (lgm, a);
1199       break;
1200     case GID_ADDR_MAC:
1201       if (a->is_add)
1202         return add_l2_fwd_entry (lgm, a);
1203       else
1204         return del_l2_fwd_entry (lgm, a);
1205     case GID_ADDR_NSH:
1206       if (a->is_add)
1207         return add_nsh_fwd_entry (lgm, a);
1208       else
1209         return del_nsh_fwd_entry (lgm, a);
1210     default:
1211       clib_warning ("Forwarding entries for type %d not supported!", type);
1212       return -1;
1213     }
1214 }
1215
1216 int
1217 vnet_lisp_flush_stats (void)
1218 {
1219   lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
1220   vlib_combined_counter_main_t *cm = &lgm->counters;
1221   u32 i;
1222
1223   for (i = 0; i < vlib_combined_counter_n_counters (cm); i++)
1224     vlib_zero_combined_counter (cm, i);
1225
1226   return 0;
1227 }
1228
1229 static void
1230 lisp_del_adj_stats (lisp_gpe_main_t * lgm, u32 fwd_entry_index, u32 ti)
1231 {
1232   hash_pair_t *hp;
1233   lisp_stats_key_t key;
1234   void *key_copy;
1235   uword *p;
1236   u8 *s;
1237
1238   memset (&key, 0, sizeof (key));
1239   key.fwd_entry_index = fwd_entry_index;
1240   key.tunnel_index = ti;
1241
1242   p = hash_get_mem (lgm->lisp_stats_index_by_key, &key);
1243   if (p)
1244     {
1245       s = pool_elt_at_index (lgm->dummy_stats_pool, p[0]);
1246       hp = hash_get_pair (lgm->lisp_stats_index_by_key, &key);
1247       key_copy = (void *) (hp->key);
1248       hash_unset_mem (lgm->lisp_stats_index_by_key, &key);
1249       clib_mem_free (key_copy);
1250       pool_put (lgm->dummy_stats_pool, s);
1251     }
1252 }
1253
1254 void
1255 vnet_lisp_gpe_del_fwd_counters (vnet_lisp_gpe_add_del_fwd_entry_args_t * a,
1256                                 u32 fwd_entry_index)
1257 {
1258   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1259   lisp_gpe_fwd_entry_key_t fe_key;
1260   lisp_gpe_fwd_entry_t *lfe;
1261   lisp_fwd_path_t *path;
1262   const lisp_gpe_adjacency_t *ladj;
1263
1264   lfe = find_fwd_entry (lgm, a, &fe_key);
1265   if (!lfe)
1266     return;
1267
1268   if (LISP_GPE_FWD_ENTRY_TYPE_NORMAL != lfe->type)
1269     return;
1270
1271   vec_foreach (path, lfe->paths)
1272   {
1273     ladj = lisp_gpe_adjacency_get (path->lisp_adj);
1274     lisp_del_adj_stats (lgm, fwd_entry_index, ladj->tunnel_index);
1275   }
1276 }
1277
1278 /**
1279  * @brief Flush all the forwrding entries
1280  */
1281 void
1282 vnet_lisp_gpe_fwd_entry_flush (void)
1283 {
1284   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1285   lisp_gpe_fwd_entry_t *lfe;
1286
1287   /* *INDENT-OFF* */
1288   pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1289   ({
1290     switch (fid_addr_type(&lfe->key->rmt))
1291       {
1292       case FID_ADDR_MAC:
1293         del_l2_fwd_entry_i (lgm, lfe);
1294         break;
1295       case FID_ADDR_IP_PREF:
1296         del_ip_fwd_entry_i (lgm, lfe);
1297         break;
1298       case FID_ADDR_NSH:
1299         del_nsh_fwd_entry_i (lgm, lfe);
1300         break;
1301       }
1302   }));
1303   /* *INDENT-ON* */
1304 }
1305
1306 static u8 *
1307 format_lisp_fwd_path (u8 * s, va_list ap)
1308 {
1309   lisp_fwd_path_t *lfp = va_arg (ap, lisp_fwd_path_t *);
1310
1311   s = format (s, "weight:%d ", lfp->weight);
1312   s = format (s, "adj:[%U]\n",
1313               format_lisp_gpe_adjacency,
1314               lisp_gpe_adjacency_get (lfp->lisp_adj),
1315               LISP_GPE_ADJ_FORMAT_FLAG_NONE);
1316
1317   return (s);
1318 }
1319
1320 typedef enum lisp_gpe_fwd_entry_format_flag_t_
1321 {
1322   LISP_GPE_FWD_ENTRY_FORMAT_NONE = (0 << 0),
1323   LISP_GPE_FWD_ENTRY_FORMAT_DETAIL = (1 << 1),
1324 } lisp_gpe_fwd_entry_format_flag_t;
1325
1326
1327 static u8 *
1328 format_lisp_gpe_fwd_entry (u8 * s, va_list ap)
1329 {
1330   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1331   lisp_gpe_fwd_entry_t *lfe = va_arg (ap, lisp_gpe_fwd_entry_t *);
1332   lisp_gpe_fwd_entry_format_flag_t flags =
1333     va_arg (ap, lisp_gpe_fwd_entry_format_flag_t);
1334
1335   s = format (s, "VNI:%d VRF:%d EID: %U -> %U  [index:%d]",
1336               lfe->key->vni, lfe->eid_table_id,
1337               format_fid_address, &lfe->key->lcl,
1338               format_fid_address, &lfe->key->rmt,
1339               lfe - lgm->lisp_fwd_entry_pool);
1340
1341   if (LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE == lfe->type)
1342     {
1343       s = format (s, "\n Negative - action:%U",
1344                   format_negative_mapping_action, lfe->action);
1345     }
1346   else
1347     {
1348       lisp_fwd_path_t *path;
1349
1350       s = format (s, "\n via:");
1351       vec_foreach (path, lfe->paths)
1352       {
1353         s = format (s, "\n  %U", format_lisp_fwd_path, path);
1354       }
1355     }
1356
1357   if (flags & LISP_GPE_FWD_ENTRY_FORMAT_DETAIL)
1358     {
1359       switch (fid_addr_type (&lfe->key->rmt))
1360         {
1361         case FID_ADDR_MAC:
1362           s = format (s, " fib-path-list:%d\n", lfe->l2.path_list_index);
1363           s = format (s, " dpo:%U\n", format_dpo_id, &lfe->l2.dpo, 0);
1364           break;
1365         case FID_ADDR_NSH:
1366           s = format (s, " fib-path-list:%d\n", lfe->nsh.path_list_index);
1367           s = format (s, " dpo:%U\n", format_dpo_id, &lfe->nsh.dpo, 0);
1368           break;
1369         case FID_ADDR_IP_PREF:
1370           break;
1371         }
1372     }
1373
1374   return (s);
1375 }
1376
1377 static clib_error_t *
1378 lisp_gpe_fwd_entry_show (vlib_main_t * vm,
1379                          unformat_input_t * input, vlib_cli_command_t * cmd)
1380 {
1381   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1382   lisp_gpe_fwd_entry_t *lfe;
1383   index_t index;
1384   u32 vni = ~0;
1385
1386   if (unformat (input, "vni %d", &vni))
1387     ;
1388   else if (unformat (input, "%d", &index))
1389     {
1390       if (!pool_is_free_index (lgm->lisp_fwd_entry_pool, index))
1391         {
1392           lfe = pool_elt_at_index (lgm->lisp_fwd_entry_pool, index);
1393
1394           vlib_cli_output (vm, "[%d@] %U",
1395                            index,
1396                            format_lisp_gpe_fwd_entry, lfe,
1397                            LISP_GPE_FWD_ENTRY_FORMAT_DETAIL);
1398         }
1399       else
1400         {
1401           vlib_cli_output (vm, "entry %d invalid", index);
1402         }
1403
1404       return (NULL);
1405     }
1406
1407   /* *INDENT-OFF* */
1408   pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1409   ({
1410     if ((vni == ~0) ||
1411         (lfe->key->vni == vni))
1412       vlib_cli_output (vm, "%U", format_lisp_gpe_fwd_entry, lfe,
1413                        LISP_GPE_FWD_ENTRY_FORMAT_NONE);
1414   }));
1415   /* *INDENT-ON* */
1416
1417   return (NULL);
1418 }
1419
1420 /* *INDENT-OFF* */
1421 VLIB_CLI_COMMAND (lisp_gpe_fwd_entry_show_command, static) = {
1422   .path = "show gpe entry",
1423   .short_help = "show gpe entry vni <vni> vrf <vrf> [leid <leid>] reid <reid>",
1424   .function = lisp_gpe_fwd_entry_show,
1425 };
1426 /* *INDENT-ON* */
1427
1428 clib_error_t *
1429 lisp_gpe_fwd_entry_init (vlib_main_t * vm)
1430 {
1431   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1432   clib_error_t *error = NULL;
1433
1434   if ((error = vlib_call_init_function (vm, lisp_cp_dpo_module_init)))
1435     return (error);
1436
1437   l2_fib_init (lgm);
1438   nsh_fib_init (lgm);
1439
1440   fib_node_register_type (FIB_NODE_TYPE_LISP_GPE_FWD_ENTRY, &lisp_fwd_vft);
1441
1442   return (error);
1443 }
1444
1445 u32 *
1446 vnet_lisp_gpe_get_fwd_entry_vnis (void)
1447 {
1448   lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
1449   lisp_gpe_fwd_entry_t *lfe;
1450   u32 *vnis = 0;
1451
1452   /* *INDENT-OFF* */
1453   pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1454   ({
1455     hash_set (vnis, lfe->key->vni, 0);
1456   }));
1457   /* *INDENT-ON* */
1458
1459   return vnis;
1460 }
1461
1462 lisp_api_gpe_fwd_entry_t *
1463 vnet_lisp_gpe_fwd_entries_get_by_vni (u32 vni)
1464 {
1465   lisp_gpe_main_t *lgm = &lisp_gpe_main;
1466   lisp_gpe_fwd_entry_t *lfe;
1467   lisp_api_gpe_fwd_entry_t *entries = 0, e;
1468
1469   /* *INDENT-OFF* */
1470   pool_foreach (lfe, lgm->lisp_fwd_entry_pool,
1471   ({
1472     if (lfe->key->vni == vni)
1473       {
1474         memset (&e, 0, sizeof (e));
1475         e.dp_table = lfe->eid_table_id;
1476         e.vni = lfe->key->vni;
1477         if (lfe->type == LISP_GPE_FWD_ENTRY_TYPE_NEGATIVE)
1478           e.action = lfe->action;
1479         e.fwd_entry_index = lfe - lgm->lisp_fwd_entry_pool;
1480         memcpy (&e.reid, &lfe->key->rmt, sizeof (e.reid));
1481         memcpy (&e.leid, &lfe->key->lcl, sizeof (e.leid));
1482         vec_add1 (entries, e);
1483       }
1484   }));
1485   /* *INDENT-ON* */
1486
1487   return entries;
1488 }
1489
1490 VLIB_INIT_FUNCTION (lisp_gpe_fwd_entry_init);
1491
1492 /*
1493  * fd.io coding-style-patch-verification: ON
1494  *
1495  * Local Variables:
1496  * eval: (c-set-style "gnu")
1497  * End:
1498  */