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