c96ff71c348c1c4b97bea878f46a8e8ad6d05ed3
[vpp.git] / vnet / vnet / lisp-cp / control.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-cp/control.h>
17 #include <vnet/lisp-cp/packets.h>
18 #include <vnet/lisp-cp/lisp_msg_serdes.h>
19 #include <vnet/lisp-gpe/lisp_gpe.h>
20
21 static void
22 add_fwd_entry (lisp_cp_main_t* lcm, u32 src_map_index, u32 dst_map_index);
23
24 static void
25 del_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index);
26
27 static u8
28 compare_locators (lisp_cp_main_t *lcm, u32 * old_ls_indexes,
29                   locator_t * new_locators);
30
31 /* Stores mapping in map-cache. It does NOT program data plane forwarding for
32  * remote/learned mappings. */
33 int
34 vnet_lisp_add_del_mapping (vnet_lisp_add_del_mapping_args_t * a,
35                            u32 * map_index_result)
36 {
37   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
38   u32 mi, * map_indexp, map_index, i;
39   mapping_t * m, * old_map;
40   u32 ** eid_indexes;
41
42   mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->deid);
43   old_map = mi != ~0 ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
44   if (a->is_add)
45     {
46       /* TODO check if overwriting and take appropriate actions */
47       if (mi != GID_LOOKUP_MISS && !gid_address_cmp (&old_map->eid,
48                                                      &a->deid))
49         {
50           clib_warning("eid %U found in the eid-table", format_ip_address,
51                        &a->deid);
52           return VNET_API_ERROR_VALUE_EXIST;
53         }
54
55       pool_get(lcm->mapping_pool, m);
56       m->eid = a->deid;
57       m->locator_set_index = a->locator_set_index;
58       m->ttl = a->ttl;
59       m->action = a->action;
60       m->local = a->local;
61
62       map_index = m - lcm->mapping_pool;
63       gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->deid, map_index,
64                               1);
65
66       if (pool_is_free_index(lcm->locator_set_pool, a->locator_set_index))
67         {
68           clib_warning("Locator set with index %d doesn't exist",
69                        a->locator_set_index);
70           return VNET_API_ERROR_INVALID_VALUE;
71         }
72
73       /* add eid to list of eids supported by locator-set */
74       vec_validate (lcm->locator_set_to_eids, a->locator_set_index);
75       eid_indexes = vec_elt_at_index(lcm->locator_set_to_eids,
76                                      a->locator_set_index);
77       vec_add1(eid_indexes[0], map_index);
78
79       if (a->local)
80         {
81           /* mark as local */
82           vec_add1(lcm->local_mappings_indexes, map_index);
83         }
84       map_index_result[0] = map_index;
85     }
86   else
87     {
88       if (mi == GID_LOOKUP_MISS)
89         {
90           clib_warning("eid %U not found in the eid-table", format_ip_address,
91                        &a->deid);
92           return VNET_API_ERROR_INVALID_VALUE;
93         }
94
95       /* clear locator-set to eids binding */
96       eid_indexes = vec_elt_at_index(lcm->locator_set_to_eids,
97                                      a->locator_set_index);
98       for (i = 0; i < vec_len(eid_indexes[0]); i++)
99         {
100           map_indexp = vec_elt_at_index(eid_indexes[0], i);
101           if (map_indexp[0] == mi)
102               break;
103         }
104       vec_del1(eid_indexes[0], i);
105
106       /* remove local mark if needed */
107       m = pool_elt_at_index(lcm->mapping_pool, mi);
108       if (m->local)
109         {
110           u32 k, * lm_indexp;
111           for (k = 0; k < vec_len(lcm->local_mappings_indexes); k++)
112             {
113               lm_indexp = vec_elt_at_index(lcm->local_mappings_indexes, k);
114               if (lm_indexp[0] == mi)
115                 break;
116             }
117           vec_del1(lcm->local_mappings_indexes, k);
118         }
119       else
120         {
121           /* remove tunnel ??? */
122         }
123
124       /* remove mapping from dictionary */
125       gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->deid, 0, 0);
126       pool_put_index (lcm->mapping_pool, mi);
127     }
128
129   return 0;
130 }
131
132 /* Stores mapping in map-cache and programs data plane for local mappings. */
133 int
134 vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
135                                  u32 * map_index_result)
136 {
137   uword * table_id, * refc;
138   u32 rv, vni;
139   vnet_lisp_gpe_add_del_iface_args_t _ai, *ai = &_ai;
140   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
141
142   vni = gid_address_vni(&a->deid);
143
144   /* store/remove mapping from map-cache */
145   rv = vnet_lisp_add_del_mapping (a, map_index_result);
146   if (rv)
147     return rv;
148
149   table_id = hash_get(lcm->table_id_by_vni, vni);
150
151   if (!table_id)
152     {
153       clib_warning ("vni %d not associated to a vrf!", vni);
154       return VNET_API_ERROR_INVALID_VALUE;
155     }
156
157   refc = hash_get(lcm->dp_if_refcount_by_vni, vni);
158
159   /* enable/disable data-plane interface */
160   if (a->is_add)
161     {
162       /* create interface or update refcount */
163       if (!refc)
164         {
165           ai->is_add = 1;
166           ai->vni = vni;
167           ai->table_id = table_id[0];
168           vnet_lisp_gpe_add_del_iface (ai, 0);
169
170           /* counts the number of eids in a vni that use the interface */
171           hash_set(lcm->dp_if_refcount_by_vni, vni, 1);
172         }
173       else
174         {
175           refc[0]++;
176         }
177     }
178   else
179     {
180       /* since this is a remove for an existing eid, the iface should exist */
181       ASSERT(refc != 0);
182       refc[0]--;
183
184       /* remove iface if needed */
185       if (refc[0] == 0)
186         {
187           ai->is_add = 0;
188           ai->vni = vni;
189           ai->table_id = table_id[0];
190           vnet_lisp_gpe_add_del_iface (ai, 0);
191           hash_unset (lcm->dp_if_refcount_by_vni, vni);
192         }
193     }
194
195   return rv;
196 }
197
198 static clib_error_t *
199 lisp_add_del_local_eid_command_fn (vlib_main_t * vm, unformat_input_t * input,
200                                    vlib_cli_command_t * cmd)
201 {
202   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
203   unformat_input_t _line_input, * line_input = &_line_input;
204   u8 is_add = 1;
205   gid_address_t eid;
206   ip_prefix_t * prefp = &gid_address_ippref(&eid);
207   gid_address_t * eids = 0;
208   clib_error_t * error = 0;
209   u8 * locator_set_name = 0;
210   u32 locator_set_index = 0, map_index = 0;
211   uword * p;
212   vnet_lisp_add_del_mapping_args_t _a, * a = &_a;
213
214   gid_address_type (&eid) = GID_ADDR_IP_PREFIX;
215
216   /* Get a line of input. */
217   if (! unformat_user (input, unformat_line_input, line_input))
218     return 0;
219
220   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
221     {
222       if (unformat (line_input, "add"))
223         is_add = 1;
224       else if (unformat (line_input, "del"))
225         is_add = 0;
226       else if (unformat (line_input, "eid %U", unformat_ip_prefix, prefp))
227         {
228           vec_add1(eids, eid);
229         }
230       else if (unformat (line_input, "locator-set %_%v%_", &locator_set_name))
231         {
232           p = hash_get_mem(lcm->locator_set_index_by_name, locator_set_name);
233           if (!p)
234             {
235               error = clib_error_return(0, "locator-set %s doesn't exist",
236                                         locator_set_name);
237               goto done;
238             }
239           locator_set_index = p[0];
240         }
241       else
242         {
243           error = unformat_parse_error(line_input);
244           goto done;
245         }
246     }
247
248   /* XXX treat batch configuration */
249   a->deid = eid;
250   a->is_add = is_add;
251   a->locator_set_index = locator_set_index;
252   a->local = 1;
253
254   vnet_lisp_add_del_local_mapping (a, &map_index);
255  done:
256   vec_free(eids);
257   if (locator_set_name)
258     vec_free (locator_set_name);
259   return error;
260 }
261
262 VLIB_CLI_COMMAND (lisp_add_del_local_eid_command) = {
263     .path = "lisp eid-table",
264     .short_help = "lisp eid-table add/del eid <eid> locator-set <locator-set>",
265     .function = lisp_add_del_local_eid_command_fn,
266 };
267
268 static int
269 lisp_add_del_negative_static_mapping (gid_address_t * deid,
270     vnet_lisp_add_del_locator_set_args_t * ls, u8 action, u8 is_add)
271 {
272   uword * p;
273   mapping_t * map;
274   u32 mi = ~0;
275   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
276   uword * refc;
277   vnet_lisp_add_del_mapping_args_t _dm_args, * dm_args = &_dm_args;
278   int rv = 0;
279   u32 ls_index = 0, dst_map_index;
280   vnet_lisp_gpe_add_del_iface_args_t _ai, *ai = &_ai;
281
282   memset (dm_args, 0, sizeof (dm_args[0]));
283   u32 vni = gid_address_vni (deid);
284   refc = hash_get (lcm->dp_if_refcount_by_vni, vni);
285
286   p = hash_get (lcm->table_id_by_vni, vni);
287   if (!p)
288     {
289       clib_warning ("vni %d not associated to a vrf!", vni);
290       return VNET_API_ERROR_INVALID_VALUE;
291     }
292
293   if (is_add)
294     {
295       vnet_lisp_add_del_locator_set (ls, &ls_index);
296       /* add mapping */
297       gid_address_copy (&dm_args->deid, deid);
298       dm_args->is_add = 1;
299       dm_args->action = action;
300       dm_args->locator_set_index = ls_index;
301
302       /* create interface or update refcount */
303       if (!refc)
304         {
305           vnet_lisp_gpe_add_del_iface_args_t _ai, *ai = &_ai;
306           ai->is_add = 1;
307           ai->vni = vni;
308           ai->table_id = p[0];
309           vnet_lisp_gpe_add_del_iface (ai, 0);
310
311           /* counts the number of eids in a vni that use the interface */
312           hash_set (lcm->dp_if_refcount_by_vni, vni, 1);
313         }
314       else
315         refc[0]++;
316
317       rv = vnet_lisp_add_del_local_mapping (dm_args, &dst_map_index);
318       if (!rv)
319         add_fwd_entry (lcm, lcm->pitr_map_index, dst_map_index);
320     }
321   else
322     {
323       mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, deid);
324       if ((u32)~0 == mi)
325         {
326           clib_warning ("eid %U marked for removal, but not found in "
327                         "map-cache!", unformat_gid_address, deid);
328           return VNET_API_ERROR_INVALID_VALUE;
329         }
330
331       /* delete forwarding entry */
332       del_fwd_entry (lcm, 0, mi);
333
334       dm_args->is_add = 0;
335       gid_address_copy (&dm_args->deid, deid);
336       map = pool_elt_at_index (lcm->mapping_pool, mi);
337       dm_args->locator_set_index = map->locator_set_index;
338
339       /* delete mapping associated to fwd entry */
340       vnet_lisp_add_del_mapping (dm_args, 0);
341
342       refc = hash_get (lcm->dp_if_refcount_by_vni, vni);
343       ASSERT(refc != 0);
344       refc[0]--;
345
346       /* remove iface if needed */
347       if (refc[0] == 0)
348         {
349           ai->is_add = 0;
350           ai->vni = vni;
351           ai->table_id = p[0];
352           vnet_lisp_gpe_add_del_iface (ai, 0);
353           hash_unset (lcm->dp_if_refcount_by_vni, vni);
354         }
355     }
356   return rv;
357 }
358
359 /**
360  * Adds/removes/updates static remote mapping.
361  *
362  * This function also modifies forwarding entries if needed.
363  *
364  * @param deid destination EID
365  * @param seid source EID
366  * @param rlocs vector of remote locators
367  * @param action action for negative map-reply
368  * @param is_add add mapping if non-zero, delete otherwise
369  * @param del_all if set, delete all remote mappings
370  * @return return code
371  */
372 int
373 vnet_lisp_add_del_remote_mapping (gid_address_t * deid, gid_address_t * seid,
374                                   ip_address_t * rlocs, u8 action, u8 is_add,
375                                   u8 del_all)
376 {
377   vnet_lisp_add_del_mapping_args_t _dm_args, * dm_args = &_dm_args;
378   vnet_lisp_add_del_mapping_args_t _sm_args, * sm_args = &_sm_args;
379   vnet_lisp_add_del_locator_set_args_t _ls, * ls = &_ls;
380   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
381   u32 mi, ls_index = 0, dst_map_index, src_map_index;
382   locator_t loc;
383   ip_address_t * dl;
384   int rc = -1;
385
386   if (del_all)
387     return vnet_lisp_clear_all_remote_mappings ();
388
389   memset (sm_args, 0, sizeof (sm_args[0]));
390   memset (dm_args, 0, sizeof (dm_args[0]));
391   memset (ls, 0, sizeof (ls[0]));
392
393   /* prepare remote locator set */
394   vec_foreach (dl, rlocs)
395     {
396       memset (&loc, 0, sizeof (loc));
397       gid_address_ip (&loc.address) = dl[0];
398       vec_add1 (ls->locators, loc);
399     }
400   src_map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid);
401
402   mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, deid);
403   /* new mapping */
404   if ((u32)~0 == mi)
405     {
406       ls->is_add = 1;
407       ls->index = ~0;
408
409       /* process a negative mapping */
410       if (0 == vec_len (rlocs))
411         return lisp_add_del_negative_static_mapping (deid, ls,
412                                                      action, is_add);
413
414       if ((u32)~0 == src_map_index)
415         {
416           clib_warning ("seid %U not found!", format_gid_address, seid);
417           goto done;
418         }
419
420       if (!is_add)
421         {
422           clib_warning ("deid %U marked for removal but not "
423                         "found!", format_gid_address, deid);
424           goto done;
425         }
426
427       vnet_lisp_add_del_locator_set (ls, &ls_index);
428
429       /* add mapping */
430       gid_address_copy (&dm_args->deid, deid);
431       dm_args->is_add = 1;
432       dm_args->action = action;
433       dm_args->locator_set_index = ls_index;
434       vnet_lisp_add_del_mapping (dm_args, &dst_map_index);
435
436       /* add fwd tunnel */
437       add_fwd_entry (lcm, src_map_index, dst_map_index);
438     }
439   else
440     {
441       /* delete mapping */
442       if (!is_add)
443         {
444           /* delete forwarding entry */
445           del_fwd_entry (lcm, 0, mi);
446           dm_args->is_add = 0;
447           gid_address_copy (&dm_args->deid, deid);
448           mapping_t * map = pool_elt_at_index (lcm->mapping_pool, mi);
449           dm_args->locator_set_index = map->locator_set_index;
450
451           /* delete mapping associated to fwd entry */
452           vnet_lisp_add_del_mapping (dm_args, 0);
453
454           ls->is_add = 0;
455           ls->index = map->locator_set_index;
456           /* delete locator set */
457           vnet_lisp_add_del_locator_set (ls, 0);
458         }
459       /* update existing locator set */
460       else
461         {
462           if ((u32)~0 == src_map_index)
463             {
464               clib_warning ("seid %U not found!", format_gid_address, seid);
465               goto done;
466             }
467
468           mapping_t * old_map;
469           locator_set_t * old_ls;
470           old_map = pool_elt_at_index (lcm->mapping_pool, mi);
471
472           /* update mapping attributes */
473           old_map->action = action;
474
475           old_ls = pool_elt_at_index(lcm->locator_set_pool,
476                                      old_map->locator_set_index);
477           if (compare_locators (lcm, old_ls->locator_indices,
478                                 ls->locators))
479             {
480               /* set locator-set index to overwrite */
481               ls->is_add = 1;
482               ls->index = old_map->locator_set_index;
483               vnet_lisp_add_del_locator_set (ls, 0);
484               add_fwd_entry (lcm, src_map_index, mi);
485             }
486         }
487     }
488   /* success */
489   rc = 0;
490 done:
491   vec_free (ls->locators);
492   return rc;
493 }
494
495 int
496 vnet_lisp_clear_all_remote_mappings (void)
497 {
498   int rv = 0;
499   u32 mi, * map_indices = 0, * map_indexp;
500   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
501   vnet_lisp_add_del_mapping_args_t _dm_args, * dm_args = &_dm_args;
502   vnet_lisp_add_del_locator_set_args_t _ls, * ls = &_ls;
503
504   pool_foreach_index (mi, lcm->mapping_pool,
505     ({
506       vec_add1 (map_indices, mi);
507     }));
508
509   vec_foreach (map_indexp, map_indices)
510     {
511       mapping_t * map = pool_elt_at_index (lcm->mapping_pool, map_indexp[0]);
512       if (!map->local)
513         {
514           del_fwd_entry (lcm, 0, map_indexp[0]);
515
516           dm_args->is_add = 0;
517           gid_address_copy (&dm_args->deid, &map->eid);
518           dm_args->locator_set_index = map->locator_set_index;
519
520           /* delete mapping associated to fwd entry */
521           vnet_lisp_add_del_mapping (dm_args, 0);
522
523           ls->is_add = 0;
524           ls->local = 0;
525           ls->index = map->locator_set_index;
526           /* delete locator set */
527           rv = vnet_lisp_add_del_locator_set (ls, 0);
528           if (rv != 0)
529             goto cleanup;
530         }
531     }
532
533 cleanup:
534   if (map_indices)
535     vec_free (map_indices);
536   return rv;
537 }
538
539 /**
540  * Handler for add/del remote mapping CLI.
541  *
542  * @param vm vlib context
543  * @param input input from user
544  * @param cmd cmd
545  * @return pointer to clib error structure
546  */
547 static clib_error_t *
548 lisp_add_del_remote_mapping_command_fn (vlib_main_t * vm,
549                                         unformat_input_t * input,
550                                         vlib_cli_command_t * cmd)
551 {
552   clib_error_t * error = 0;
553   unformat_input_t _line_input, * line_input = &_line_input;
554   u8 is_add = 1, del_all = 0;
555   ip_address_t rloc, * rlocs = 0;
556   ip_prefix_t * deid_ippref, * seid_ippref;
557   gid_address_t seid, deid;
558   u8 deid_set = 0, seid_set = 0;
559   u8 * s = 0;
560   u32 vni, action = ~0;
561
562   /* Get a line of input. */
563   if (! unformat_user (input, unformat_line_input, line_input))
564     return 0;
565
566   memset (&deid, 0, sizeof (deid));
567   memset (&seid, 0, sizeof (seid));
568
569   seid_ippref = &gid_address_ippref(&seid);
570   deid_ippref = &gid_address_ippref(&deid);
571
572   gid_address_type (&deid) = GID_ADDR_IP_PREFIX;
573   gid_address_type (&seid) = GID_ADDR_IP_PREFIX;
574
575   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
576     {
577       if (unformat (line_input, "del-all"))
578         del_all = 1;
579       else if (unformat (line_input, "del"))
580         is_add = 0;
581       else if (unformat (line_input, "add"))
582         ;
583       else if (unformat (line_input, "deid %U",
584                          unformat_ip_prefix, deid_ippref))
585         {
586           deid_set = 1;
587         }
588       else if (unformat (line_input, "vni %u", &vni))
589         {
590           gid_address_set_vni (&seid, vni);
591           gid_address_set_vni (&deid, vni);
592         }
593       else if (unformat (line_input, "seid %U",
594                          unformat_ip_prefix, seid_ippref))
595         {
596           seid_set = 1;
597         }
598       else if (unformat (line_input, "rloc %U", unformat_ip_address, &rloc))
599         vec_add1 (rlocs, rloc);
600       else if (unformat (line_input, "action %s", &s))
601         {
602           if (!strcmp ((char *)s, "no-action"))
603             action = ACTION_NONE;
604           if (!strcmp ((char *)s, "natively-forward"))
605             action = ACTION_NATIVELY_FORWARDED;
606           if (!strcmp ((char *)s, "send-map-request"))
607             action = ACTION_SEND_MAP_REQUEST;
608           else if (!strcmp ((char *)s, "drop"))
609             action = ACTION_DROP;
610           else
611             {
612               clib_warning ("invalid action: '%s'", s);
613               goto done;
614             }
615         }
616       else
617         {
618           clib_warning ("parse error");
619           goto done;
620         }
621     }
622
623   if (!del_all)
624     {
625       if (!deid_set)
626         {
627           clib_warning ("missing deid!");
628           goto done;
629         }
630
631       /* if seid not set, make sure the ip version is the same as that of the
632        * deid. This ensures the seid to be configured will be either 0/0 or
633        * ::/0 */
634       if (!seid_set)
635         ip_prefix_version(seid_ippref) = ip_prefix_version(deid_ippref);
636
637       if (is_add &&
638           (ip_prefix_version (deid_ippref) != ip_prefix_version(seid_ippref)))
639         {
640           clib_warning ("source and destination EIDs are not"
641                         " in the same IP family!");
642           goto done;
643         }
644
645       if (is_add && (~0 == action)
646           && 0 == vec_len (rlocs))
647         {
648           clib_warning ("no action set for negative map-reply!");
649           goto done;
650         }
651     }
652
653   int rv = vnet_lisp_add_del_remote_mapping (&deid, &seid, rlocs,
654                                              action, is_add, del_all);
655   if (rv)
656     clib_warning ("failed to %s remote mapping!",
657                   is_add ? "add" : "delete");
658
659 done:
660   unformat_free (line_input);
661   if (s)
662     vec_free (s);
663   return error;
664 }
665
666 VLIB_CLI_COMMAND (lisp_add_del_remote_mapping_command) = {
667     .path = "lisp remote-mapping",
668     .short_help = "lisp remote-mapping add|del [del-all] vni <vni>"
669      "deid <dest-eid> seid <src-eid> [action <no-action|natively-forward|"
670      "send-map-request|drop>] rloc <dst-locator> [rloc <dst-locator> ... ]",
671     .function = lisp_add_del_remote_mapping_command_fn,
672 };
673
674 static clib_error_t *
675 lisp_show_map_resolvers_command_fn (vlib_main_t * vm,
676                                     unformat_input_t * input,
677                                     vlib_cli_command_t * cmd)
678 {
679   ip_address_t * addr;
680   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
681
682   vec_foreach (addr, lcm->map_resolvers)
683     {
684       vlib_cli_output (vm, "%U", format_ip_address, addr);
685     }
686   return 0;
687 }
688
689 VLIB_CLI_COMMAND (lisp_show_map_resolvers_command) = {
690     .path = "show lisp map-resolvers",
691     .short_help = "show lisp map-resolvers",
692     .function = lisp_show_map_resolvers_command_fn,
693 };
694
695 int
696 vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add)
697 {
698   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
699   u32 locator_set_index = ~0;
700   mapping_t * m;
701   uword * p;
702
703   p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
704   if (!p)
705     {
706       clib_warning ("locator-set %v doesn't exist", locator_set_name);
707       return -1;
708     }
709   locator_set_index = p[0];
710
711   if (is_add)
712     {
713       pool_get (lcm->mapping_pool, m);
714       m->locator_set_index = locator_set_index;
715       m->local = 1;
716       lcm->pitr_map_index = m - lcm->mapping_pool;
717
718       /* enable pitr mode */
719       lcm->lisp_pitr = 1;
720     }
721   else
722     {
723       /* remove pitr mapping */
724       pool_put_index (lcm->mapping_pool, lcm->pitr_map_index);
725
726       /* disable pitr mode */
727       lcm->lisp_pitr = 0;
728     }
729   return 0;
730 }
731
732 static clib_error_t *
733 lisp_pitr_set_locator_set_command_fn (vlib_main_t * vm,
734                                       unformat_input_t * input,
735                                       vlib_cli_command_t * cmd)
736 {
737   u8 locator_name_set = 0;
738   u8 * locator_set_name = 0;
739   u8 is_add = 1;
740   unformat_input_t _line_input, * line_input = &_line_input;
741
742   /* Get a line of input. */
743   if (! unformat_user (input, unformat_line_input, line_input))
744     return 0;
745
746   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
747     {
748       if (unformat (line_input, "ls %_%v%_", &locator_set_name))
749         locator_name_set = 1;
750       else if (unformat (line_input, "disable"))
751         is_add = 0;
752       else
753         return clib_error_return (0, "parse error");
754     }
755
756   if (!locator_name_set)
757     {
758       clib_warning ("No locator set specified!");
759       goto done;
760     }
761   vnet_lisp_pitr_set_locator_set (locator_set_name, is_add);
762
763 done:
764   if (locator_set_name)
765     vec_free (locator_set_name);
766   return 0;
767 }
768
769 VLIB_CLI_COMMAND (lisp_pitr_set_locator_set_command) = {
770     .path = "lisp pitr",
771     .short_help = "lisp pitr [disable] ls <locator-set-name>",
772     .function = lisp_pitr_set_locator_set_command_fn,
773 };
774
775 static clib_error_t *
776 lisp_show_local_eid_table_command_fn (vlib_main_t * vm,
777                                       unformat_input_t * input,
778                                       vlib_cli_command_t * cmd)
779 {
780   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
781   mapping_t * mapit;
782
783   vlib_cli_output (vm, "%=20s%=16s", "EID", "Locator");
784   pool_foreach (mapit, lcm->mapping_pool,
785   ({
786     u8 * msg = 0;
787     locator_set_t * ls = pool_elt_at_index (lcm->locator_set_pool,
788                                             mapit->locator_set_index);
789     vlib_cli_output (vm, "%-16U%16v", format_gid_address, &mapit->eid,
790                      ls->name);
791     vec_free (msg);
792   }));
793
794   return 0;
795 }
796
797 VLIB_CLI_COMMAND (lisp_cp_show_local_eid_table_command) = {
798     .path = "show lisp eid-table",
799     .short_help = "Shows local EID table",
800     .function = lisp_show_local_eid_table_command_fn,
801 };
802
803 /* cleans locator to locator-set data and removes locators not part of
804  * any locator-set */
805 static void
806 clean_locator_to_locator_set (lisp_cp_main_t * lcm, u32 lsi)
807 {
808   u32 i, j, *loc_indexp, *ls_indexp, **ls_indexes, *to_be_deleted = 0;
809   locator_set_t * ls = pool_elt_at_index(lcm->locator_set_pool, lsi);
810   for (i = 0; i < vec_len(ls->locator_indices); i++)
811     {
812       loc_indexp = vec_elt_at_index(ls->locator_indices, i);
813       ls_indexes = vec_elt_at_index(lcm->locator_to_locator_sets,
814                                     loc_indexp[0]);
815       for (j = 0; j < vec_len(ls_indexes[0]); j++)
816         {
817           ls_indexp = vec_elt_at_index(ls_indexes[0], j);
818           if (ls_indexp[0] == lsi)
819             break;
820         }
821
822       /* delete index for removed locator-set*/
823       vec_del1(ls_indexes[0], j);
824
825       /* delete locator if it's part of no locator-set */
826       if (vec_len (ls_indexes[0]) == 0)
827         {
828           pool_put_index (lcm->locator_pool, loc_indexp[0]);
829           vec_add1 (to_be_deleted, i);
830         }
831     }
832
833   if (to_be_deleted)
834     {
835       for (i = 0; i < vec_len (to_be_deleted); i++)
836         {
837           loc_indexp = vec_elt_at_index (to_be_deleted, i);
838           vec_del1 (ls->locator_indices, loc_indexp[0]);
839         }
840       vec_free (to_be_deleted);
841     }
842 }
843
844 static inline
845 uword *get_locator_set_index(vnet_lisp_add_del_locator_set_args_t * a,
846                              uword * p)
847 {
848   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
849
850   ASSERT(a != NULL);
851   ASSERT(p != NULL);
852
853   /* find locator-set */
854   if (a->local)
855     {
856       p = hash_get_mem(lcm->locator_set_index_by_name, a->name);
857     }
858   else
859     {
860       *p = a->index;
861     }
862
863   return p;
864 }
865
866 static inline
867 int is_locator_in_locator_set(lisp_cp_main_t * lcm, locator_set_t * ls,
868                               locator_t * loc)
869 {
870   locator_t * itloc;
871   u32 * locit;
872
873   ASSERT(ls != NULL);
874   ASSERT(loc != NULL);
875
876   vec_foreach(locit, ls->locator_indices)
877     {
878       itloc = pool_elt_at_index(lcm->locator_pool, locit[0]);
879       if (itloc->sw_if_index == loc->sw_if_index ||
880           !gid_address_cmp(&itloc->address, &loc->address))
881         {
882           clib_warning("Duplicate locator");
883           return VNET_API_ERROR_VALUE_EXIST;
884         }
885     }
886
887   return 0;
888 }
889
890 static inline
891 void remove_locator_from_locator_set(locator_set_t * ls, u32 * locit,
892                                      u32 ls_index, u32 loc_id)
893 {
894   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
895   u32 ** ls_indexes = NULL;
896
897   ASSERT(ls != NULL);
898   ASSERT(locit != NULL);
899
900   ls_indexes = vec_elt_at_index(lcm->locator_to_locator_sets,
901                                 locit[0]);
902   pool_put_index(lcm->locator_pool, locit[0]);
903   vec_del1(ls->locator_indices, loc_id);
904   vec_del1(ls_indexes[0], ls_index);
905 }
906
907 int
908 vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
909                            locator_set_t * ls, u32 * ls_result)
910 {
911   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
912   locator_t * loc = NULL, *itloc = NULL;
913   uword _p = (u32)~0, * p = &_p;
914   u32 loc_index = ~0, ls_index = ~0, * locit = NULL, ** ls_indexes = NULL;
915   u32 loc_id = ~0;
916   int ret = 0;
917
918   ASSERT(a != NULL);
919
920   p = get_locator_set_index(a, p);
921   if (!p)
922     {
923       clib_warning("locator-set %v doesn't exist", a->name);
924       return VNET_API_ERROR_INVALID_ARGUMENT;
925     }
926
927   if (ls == 0)
928     {
929       ls = pool_elt_at_index(lcm->locator_set_pool, p[0]);
930       if (!ls)
931         {
932           clib_warning("locator-set %d to be overwritten doesn't exist!",
933                        p[0]);
934           return VNET_API_ERROR_INVALID_ARGUMENT;
935         }
936     }
937
938   if (a->is_add)
939     {
940
941         if (ls_result)
942           ls_result[0] = p[0];
943
944         /* allocate locators */
945         vec_foreach (itloc, a->locators)
946           {
947             ret = is_locator_in_locator_set(lcm, ls, itloc);
948             if (0 != ret)
949               {
950                 return ret;
951               }
952
953             pool_get(lcm->locator_pool, loc);
954             loc[0] = itloc[0];
955             loc_index = loc - lcm->locator_pool;
956
957             vec_add1(ls->locator_indices, loc_index);
958
959             vec_validate (lcm->locator_to_locator_sets, loc_index);
960             ls_indexes = vec_elt_at_index(lcm->locator_to_locator_sets,
961                                           loc_index);
962             vec_add1(ls_indexes[0], ls_index);
963           }
964       }
965     else
966       {
967         ls_index = p[0];
968
969         itloc = a->locators;
970         loc_id = 0;
971         vec_foreach (locit, ls->locator_indices)
972           {
973             loc = pool_elt_at_index(lcm->locator_pool, locit[0]);
974
975             if (loc->local && loc->sw_if_index == itloc->sw_if_index)
976               {
977                 remove_locator_from_locator_set(ls, locit,
978                                                 ls_index, loc_id);
979               }
980             if (0 == loc->local &&
981                 !gid_address_cmp(&loc->address, &itloc->address))
982               {
983                 remove_locator_from_locator_set(ls, locit,
984                                                 ls_index, loc_id);
985               }
986
987             loc_id++;
988           }
989       }
990
991   return 0;
992 }
993
994 int
995 vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
996                                u32 * ls_result)
997 {
998   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
999   locator_set_t * ls;
1000   uword _p = (u32)~0, * p = &_p;
1001   u32 ls_index;
1002   u32 ** eid_indexes;
1003   int ret = 0;
1004
1005   if (a->is_add)
1006     {
1007       p = get_locator_set_index(a, p);
1008
1009       /* overwrite */
1010       if (p && p[0] != (u32)~0)
1011         {
1012           ls = pool_elt_at_index(lcm->locator_set_pool, p[0]);
1013           if (!ls)
1014             {
1015               clib_warning("locator-set %d to be overwritten doesn't exist!",
1016                            p[0]);
1017               return -1;
1018             }
1019
1020           /* clean locator to locator-set vectors and remove locators if
1021            * they're not part of another locator-set */
1022           clean_locator_to_locator_set (lcm, p[0]);
1023
1024           /* remove locator indices from locator set */
1025           vec_free(ls->locator_indices);
1026
1027           ls_index = p[0];
1028
1029           if (ls_result)
1030             ls_result[0] = p[0];
1031         }
1032       /* new locator-set */
1033       else
1034         {
1035           pool_get(lcm->locator_set_pool, ls);
1036           memset(ls, 0, sizeof(*ls));
1037           ls_index = ls - lcm->locator_set_pool;
1038
1039           if (a->local)
1040             {
1041               ls->name = vec_dup(a->name);
1042
1043               if (!lcm->locator_set_index_by_name)
1044                 lcm->locator_set_index_by_name = hash_create_vec(
1045                     /* size */0, sizeof(ls->name[0]), sizeof(uword));
1046               hash_set_mem(lcm->locator_set_index_by_name, ls->name, ls_index);
1047
1048               /* mark as local locator-set */
1049               vec_add1(lcm->local_locator_set_indexes, ls_index);
1050             }
1051           ls->local = a->local;
1052           if (ls_result)
1053             ls_result[0] = ls_index;
1054         }
1055
1056       ret = vnet_lisp_add_del_locator(a, ls, NULL);
1057       if (0 != ret)
1058         {
1059           return ret;
1060         }
1061     }
1062   else
1063     {
1064       p = get_locator_set_index(a, p);
1065       if (!p)
1066         {
1067           clib_warning("locator-set %v doesn't exists", a->name);
1068           return -1;
1069         }
1070
1071       ls = pool_elt_at_index(lcm->locator_set_pool, p[0]);
1072       if (!ls)
1073         {
1074           clib_warning("locator-set with index %d doesn't exists", p[0]);
1075           return -1;
1076         }
1077
1078       if (vec_len(lcm->locator_set_to_eids) != 0)
1079       {
1080           eid_indexes = vec_elt_at_index(lcm->locator_set_to_eids, p[0]);
1081           if (vec_len(eid_indexes[0]) != 0)
1082           {
1083               clib_warning ("Can't delete a locator that supports a mapping!");
1084               return -1;
1085           }
1086       }
1087
1088       /* clean locator to locator-sets data */
1089       clean_locator_to_locator_set (lcm, p[0]);
1090
1091       if (ls->local)
1092         {
1093           u32 it, lsi;
1094
1095           vec_foreach_index(it, lcm->local_locator_set_indexes)
1096           {
1097             lsi = vec_elt(lcm->local_locator_set_indexes, it);
1098             if (lsi == p[0])
1099               {
1100                 vec_del1(lcm->local_locator_set_indexes, it);
1101                 break;
1102               }
1103           }
1104           hash_unset_mem(lcm->locator_set_index_by_name, ls->name);
1105         }
1106       vec_free(ls->name);
1107       vec_free(ls->locator_indices);
1108       pool_put(lcm->locator_set_pool, ls);
1109     }
1110   return 0;
1111 }
1112
1113 clib_error_t *
1114 vnet_lisp_enable_disable (u8 is_enabled)
1115 {
1116   vnet_lisp_gpe_add_del_iface_args_t _ai, * ai= &_ai;
1117   uword * table_id, * refc;
1118   u32 i;
1119   clib_error_t * error = 0;
1120   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
1121   vnet_lisp_gpe_enable_disable_args_t _a, * a = &_a;
1122
1123   a->is_en = is_enabled;
1124   error = vnet_lisp_gpe_enable_disable (a);
1125   if (error)
1126     {
1127       return clib_error_return (0, "failed to %s data-plane!",
1128                                 a->is_en ? "enable" : "disable");
1129     }
1130
1131   if (is_enabled)
1132     {
1133       /* enable all ifaces */
1134       for (i = 0; i < vec_len (lcm->local_mappings_indexes); i++)
1135         {
1136           mapping_t * m = vec_elt_at_index (lcm->mapping_pool, i);
1137           ai->is_add = 1;
1138           ai->vni = gid_address_vni (&m->eid);
1139
1140           refc = hash_get (lcm->dp_if_refcount_by_vni, ai->vni);
1141           if (!refc)
1142             {
1143               table_id = hash_get (lcm->table_id_by_vni, ai->vni);
1144               if (table_id)
1145                 {
1146                   ai->table_id = table_id[0];
1147                   /* enables interface and adds defaults */
1148                   vnet_lisp_gpe_add_del_iface (ai, 0);
1149                 }
1150               else
1151                 return clib_error_return (0, "no table_id found for vni %u!",
1152                                           ai->vni);
1153
1154               hash_set (lcm->dp_if_refcount_by_vni, ai->vni, 1);
1155             }
1156           else
1157             {
1158               refc[0]++;
1159             }
1160         }
1161     }
1162   else
1163     {
1164       /* clear refcount table */
1165       hash_free (lcm->dp_if_refcount_by_vni);
1166       hash_free (lcm->fwd_entry_by_mapping_index);
1167       pool_free (lcm->fwd_entry_pool);
1168     }
1169
1170   /* update global flag */
1171   lcm->is_enabled = is_enabled;
1172
1173   return 0;
1174 }
1175
1176 static clib_error_t *
1177 lisp_enable_disable_command_fn (vlib_main_t * vm, unformat_input_t * input,
1178                                    vlib_cli_command_t * cmd)
1179 {
1180   unformat_input_t _line_input, * line_input = &_line_input;
1181   u8 is_enabled = 0;
1182   u8 is_set = 0;
1183
1184   /* Get a line of input. */
1185   if (! unformat_user (input, unformat_line_input, line_input))
1186     return 0;
1187
1188   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1189     {
1190       if (unformat (line_input, "enable"))
1191         {
1192           is_set = 1;
1193           is_enabled = 1;
1194         }
1195       else if (unformat (line_input, "disable"))
1196         is_set = 1;
1197       else
1198         {
1199           return clib_error_return (0, "parse error: '%U'",
1200                                    format_unformat_error, line_input);
1201         }
1202     }
1203
1204   if (!is_set)
1205       return clib_error_return (0, "state not set");
1206
1207   return vnet_lisp_enable_disable (is_enabled);
1208 }
1209
1210 VLIB_CLI_COMMAND (lisp_cp_enable_disable_command) = {
1211     .path = "lisp",
1212     .short_help = "lisp [enable|disable]",
1213     .function = lisp_enable_disable_command_fn,
1214 };
1215
1216 u8
1217 vnet_lisp_enable_disable_status (void)
1218 {
1219   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
1220   return lcm->is_enabled;
1221 }
1222
1223 static u8 *
1224 format_lisp_status (u8 * s, va_list * args)
1225 {
1226   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main ();
1227   return format (s, "%s", lcm->is_enabled ? "enabled" : "disabled");
1228 }
1229
1230 static clib_error_t *
1231 lisp_show_status_command_fn (vlib_main_t * vm, unformat_input_t * input,
1232                              vlib_cli_command_t * cmd)
1233 {
1234   u8 * msg = 0;
1235   msg = format (msg, "feature: %U\ngpe: %U\n",
1236                 format_lisp_status, format_vnet_lisp_gpe_status);
1237   vlib_cli_output (vm, "%v", msg);
1238   vec_free (msg);
1239   return 0;
1240 }
1241
1242 VLIB_CLI_COMMAND (lisp_show_status_command) = {
1243     .path = "show lisp status",
1244     .short_help = "show lisp status",
1245     .function = lisp_show_status_command_fn,
1246 };
1247 static clib_error_t *
1248 lisp_add_del_locator_set_command_fn (vlib_main_t * vm, unformat_input_t * input,
1249                                      vlib_cli_command_t * cmd)
1250 {
1251   lisp_gpe_main_t * lgm = &lisp_gpe_main;
1252   vnet_main_t * vnm = lgm->vnet_main;
1253   unformat_input_t _line_input, * line_input = &_line_input;
1254   u8 is_add = 1;
1255   clib_error_t * error = 0;
1256   u8 * locator_set_name = 0;
1257   locator_t locator, * locators = 0;
1258   vnet_lisp_add_del_locator_set_args_t _a, * a = &_a;
1259   u32 ls_index = 0;
1260
1261   memset(&locator, 0, sizeof(locator));
1262   memset(a, 0, sizeof(a[0]));
1263
1264   /* Get a line of input. */
1265   if (! unformat_user (input, unformat_line_input, line_input))
1266     return 0;
1267
1268   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1269     {
1270       if (unformat (line_input, "add %_%v%_", &locator_set_name))
1271         is_add = 1;
1272       else if (unformat (line_input, "del %_%v%_", &locator_set_name))
1273         is_add = 0;
1274       else if (unformat (line_input, "iface %U p %d w %d",
1275                          unformat_vnet_sw_interface, vnm, &locator.sw_if_index,
1276                          &locator.priority, &locator.weight))
1277         {
1278           locator.local = 1;
1279           vec_add1(locators, locator);
1280         }
1281       else
1282         {
1283           error = unformat_parse_error(line_input);
1284           goto done;
1285         }
1286     }
1287
1288   a->name = locator_set_name;
1289   a->locators = locators;
1290   a->is_add = is_add;
1291   a->local = 1;
1292
1293   vnet_lisp_add_del_locator_set(a, &ls_index);
1294
1295  done:
1296   vec_free(locators);
1297   if (locator_set_name)
1298     vec_free (locator_set_name);
1299   return error;
1300 }
1301
1302 VLIB_CLI_COMMAND (lisp_cp_add_del_locator_set_command) = {
1303     .path = "lisp locator-set",
1304     .short_help = "lisp locator-set add/del <name> iface <iface-name> "
1305         "p <priority> w <weight>",
1306     .function = lisp_add_del_locator_set_command_fn,
1307 };
1308
1309 static clib_error_t *
1310 lisp_cp_show_locator_sets_command_fn (vlib_main_t * vm,
1311                                       unformat_input_t * input,
1312                                       vlib_cli_command_t * cmd)
1313 {
1314   locator_set_t * lsit;
1315   locator_t * loc;
1316   u32 * locit;
1317   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
1318
1319   vlib_cli_output (vm, "%=20s%=16s%=16s%=16s", "Locator-set", "Locator",
1320                    "Priority", "Weight");
1321   pool_foreach (lsit, lcm->locator_set_pool,
1322   ({
1323     u8 * msg = 0;
1324     msg = format (msg, "%-16v", lsit->name);
1325     vec_foreach (locit, lsit->locator_indices)
1326       {
1327         loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1328         if (loc->local)
1329           msg = format (msg, "%16d%16d%16d", loc->sw_if_index, loc->priority,
1330                         loc->weight);
1331         else
1332           msg = format (msg, "%16U%16d%16d", format_gid_address, &loc->address,
1333                         loc->priority, loc->weight);
1334       }
1335     vlib_cli_output (vm, "%v", msg);
1336     vec_free (msg);
1337   }));
1338   return 0;
1339 }
1340
1341 VLIB_CLI_COMMAND (lisp_cp_show_locator_sets_command) = {
1342     .path = "show lisp locator-set",
1343     .short_help = "Shows locator-sets",
1344     .function = lisp_cp_show_locator_sets_command_fn,
1345 };
1346
1347 int
1348 vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a)
1349 {
1350   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
1351   ip_address_t * addr;
1352   u32 i;
1353
1354   if (a->is_add)
1355     {
1356       vec_foreach(addr, lcm->map_resolvers)
1357         {
1358           if (!ip_address_cmp (addr, &a->address))
1359             {
1360               clib_warning("map-resolver %U already exists!", format_ip_address,
1361                            &a->address);
1362               return -1;
1363             }
1364         }
1365       vec_add1(lcm->map_resolvers, a->address);
1366     }
1367   else
1368     {
1369       for (i = 0; i < vec_len(lcm->map_resolvers); i++)
1370         {
1371           addr = vec_elt_at_index(lcm->map_resolvers, i);
1372           if (!ip_address_cmp (addr, &a->address))
1373             {
1374               vec_delete(lcm->map_resolvers, 1, i);
1375               break;
1376             }
1377         }
1378     }
1379   return 0;
1380 }
1381
1382 static clib_error_t *
1383 lisp_add_del_map_resolver_command_fn (vlib_main_t * vm,
1384                                          unformat_input_t * input,
1385                                          vlib_cli_command_t * cmd)
1386 {
1387   unformat_input_t _line_input, * line_input = &_line_input;
1388   u8 is_add = 1;
1389   ip_address_t ip_addr;
1390   clib_error_t * error = 0;
1391   vnet_lisp_add_del_map_resolver_args_t _a, * a = &_a;
1392
1393   /* Get a line of input. */
1394   if (! unformat_user (input, unformat_line_input, line_input))
1395     return 0;
1396
1397   while (unformat_check_input (line_input) != UNFORMAT_END_OF_INPUT)
1398     {
1399       if (unformat (line_input, "add"))
1400         is_add = 1;
1401       else if (unformat (line_input, "del"))
1402         is_add = 0;
1403       else if (unformat (line_input, "%U", unformat_ip_address, &ip_addr))
1404         ;
1405       else
1406         {
1407           error = unformat_parse_error(line_input);
1408           goto done;
1409         }
1410     }
1411   a->is_add = is_add;
1412   a->address = ip_addr;
1413   vnet_lisp_add_del_map_resolver (a);
1414
1415  done:
1416   return error;
1417 }
1418
1419 VLIB_CLI_COMMAND (lisp_add_del_map_resolver_command) = {
1420     .path = "lisp map-resolver",
1421     .short_help = "lisp map-resolver add/del <ip_address>",
1422     .function = lisp_add_del_map_resolver_command_fn,
1423 };
1424
1425 /* Statistics (not really errors) */
1426 #define foreach_lisp_cp_lookup_error           \
1427 _(DROP, "drop")                                \
1428 _(MAP_REQUESTS_SENT, "map-request sent")
1429
1430 static char * lisp_cp_lookup_error_strings[] = {
1431 #define _(sym,string) string,
1432   foreach_lisp_cp_lookup_error
1433 #undef _
1434 };
1435
1436 typedef enum
1437 {
1438 #define _(sym,str) LISP_CP_LOOKUP_ERROR_##sym,
1439     foreach_lisp_cp_lookup_error
1440 #undef _
1441     LISP_CP_LOOKUP_N_ERROR,
1442 } lisp_cp_lookup_error_t;
1443
1444 typedef enum
1445 {
1446   LISP_CP_LOOKUP_NEXT_DROP,
1447   LISP_CP_LOOKUP_NEXT_IP4_LOOKUP,
1448   LISP_CP_LOOKUP_NEXT_IP6_LOOKUP,
1449   LISP_CP_LOOKUP_N_NEXT,
1450 } lisp_cp_lookup_next_t;
1451
1452 typedef struct
1453 {
1454   gid_address_t dst_eid;
1455   ip_address_t map_resolver_ip;
1456 } lisp_cp_lookup_trace_t;
1457
1458 u8 *
1459 format_lisp_cp_lookup_trace (u8 * s, va_list * args)
1460 {
1461   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1462   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1463   lisp_cp_lookup_trace_t * t = va_arg (*args, lisp_cp_lookup_trace_t *);
1464
1465   s = format (s, "LISP-CP-LOOKUP: map-resolver: %U destination eid %U",
1466               format_ip_address, &t->map_resolver_ip, format_gid_address,
1467               &t->dst_eid);
1468   return s;
1469 }
1470
1471 ip_interface_address_t *
1472 ip_interface_get_first_interface_address (ip_lookup_main_t *lm, u32 sw_if_index,
1473                                           u8 loop)
1474 {
1475   vnet_main_t *vnm = vnet_get_main ();
1476   vnet_sw_interface_t * swif = vnet_get_sw_interface (vnm, sw_if_index);
1477   if (loop && swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
1478     sw_if_index = swif->unnumbered_sw_if_index;
1479   u32 ia =
1480       (vec_len((lm)->if_address_pool_index_by_sw_if_index) > (sw_if_index)) ?
1481           vec_elt((lm)->if_address_pool_index_by_sw_if_index, (sw_if_index)) :
1482           (u32) ~0;
1483   return pool_elt_at_index((lm)->if_address_pool, ia);
1484 }
1485
1486 void *
1487 ip_interface_get_first_address (ip_lookup_main_t * lm, u32 sw_if_index,
1488                                 u8 version)
1489 {
1490   ip_interface_address_t * ia;
1491
1492   ia = ip_interface_get_first_interface_address (lm, sw_if_index, 1);
1493   if (!ia)
1494     return 0;
1495   return ip_interface_address_get_address (lm, ia);
1496 }
1497
1498 int
1499 ip_interface_get_first_ip_address (lisp_cp_main_t * lcm, u32 sw_if_index,
1500                                    u8 version, ip_address_t * result)
1501 {
1502   ip_lookup_main_t * lm;
1503   void * addr;
1504
1505   lm = (version == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
1506   addr = ip_interface_get_first_address (lm, sw_if_index, version);
1507   if (!addr)
1508     return 0;
1509
1510   ip_address_set (result, addr, version);
1511   return 1;
1512 }
1513
1514 static u32
1515 ip_fib_lookup_with_table (lisp_cp_main_t * lcm, u32 fib_index,
1516                           ip_address_t * dst)
1517 {
1518   if (ip_addr_version (dst) == IP4)
1519       return ip4_fib_lookup_with_table (lcm->im4, fib_index, &ip_addr_v4(dst),
1520                                         0);
1521   else
1522       return ip6_fib_lookup_with_table (lcm->im6, fib_index, &ip_addr_v6(dst));
1523 }
1524
1525 u32
1526 ip_fib_get_egress_iface_for_dst_with_lm (lisp_cp_main_t * lcm,
1527                                          ip_address_t * dst,
1528                                          ip_lookup_main_t * lm)
1529 {
1530   u32 adj_index;
1531   ip_adjacency_t * adj;
1532
1533   adj_index = ip_fib_lookup_with_table (lcm, 0, dst);
1534   adj = ip_get_adjacency (lm, adj_index);
1535
1536   if (adj == 0)
1537     return ~0;
1538
1539   /* we only want outgoing routes */
1540   if (adj->lookup_next_index != IP_LOOKUP_NEXT_ARP
1541       && adj->lookup_next_index != IP_LOOKUP_NEXT_REWRITE)
1542     return ~0;
1543
1544   return adj->rewrite_header.sw_if_index;
1545 }
1546
1547 /**
1548  * Find the sw_if_index of the interface that would be used to egress towards
1549  * dst.
1550  */
1551 u32
1552 ip_fib_get_egress_iface_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst)
1553 {
1554   ip_lookup_main_t * lm;
1555
1556   lm = ip_addr_version (dst) == IP4 ?
1557       &lcm->im4->lookup_main : &lcm->im6->lookup_main;
1558
1559   return ip_fib_get_egress_iface_for_dst_with_lm (lcm, dst, lm);
1560 }
1561
1562 /**
1563  * Find first IP of the interface that would be used to egress towards dst.
1564  * Returns 1 if the address is found 0 otherwise.
1565  */
1566 int
1567 ip_fib_get_first_egress_ip_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst,
1568                                     ip_address_t * result)
1569 {
1570   u32 si;
1571   ip_lookup_main_t * lm;
1572   void * addr = 0;
1573   u8 ipver;
1574
1575   ASSERT(result != 0);
1576
1577   ipver = ip_addr_version(dst);
1578
1579   lm = (ipver == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
1580   si = ip_fib_get_egress_iface_for_dst_with_lm (lcm, dst, lm);
1581
1582   if ((u32) ~0 == si)
1583     return 0;
1584
1585   /* find the first ip address */
1586   addr = ip_interface_get_first_address (lm, si, ipver);
1587   if (0 == addr)
1588     return 0;
1589
1590   ip_address_set (result, addr, ipver);
1591   return 1;
1592 }
1593
1594 int
1595 get_mr_and_local_iface_ip (lisp_cp_main_t * lcm, ip_address_t * mr_ip,
1596                            ip_address_t * sloc)
1597 {
1598   ip_address_t * mrit;
1599
1600   if (vec_len(lcm->map_resolvers) == 0)
1601     {
1602       clib_warning("No map-resolver configured");
1603       return 0;
1604     }
1605
1606   /* find the first mr ip we have a route to and the ip of the
1607    * iface that has a route to it */
1608   vec_foreach(mrit, lcm->map_resolvers)
1609     {
1610       if (0 != ip_fib_get_first_egress_ip_for_dst (lcm, mrit, sloc)) {
1611           ip_address_copy(mr_ip, mrit);
1612           return 1;
1613       }
1614     }
1615
1616   clib_warning("Can't find map-resolver and local interface ip!");
1617   return 0;
1618 }
1619
1620 static gid_address_t *
1621 build_itr_rloc_list (lisp_cp_main_t * lcm, locator_set_t * loc_set)
1622 {
1623   void * addr;
1624   u32 i;
1625   locator_t * loc;
1626   u32 * loc_indexp;
1627   ip_interface_address_t * ia = 0;
1628   gid_address_t gid_data, * gid = &gid_data;
1629   gid_address_t * rlocs = 0;
1630   ip_prefix_t * ippref = &gid_address_ippref (gid);
1631   ip_address_t * rloc = &ip_prefix_addr (ippref);
1632
1633   gid_address_type (gid) = GID_ADDR_IP_PREFIX;
1634   for (i = 0; i < vec_len(loc_set->locator_indices); i++)
1635     {
1636       loc_indexp = vec_elt_at_index(loc_set->locator_indices, i);
1637       loc = pool_elt_at_index (lcm->locator_pool, loc_indexp[0]);
1638
1639       /* Add ipv4 locators first TODO sort them */
1640       foreach_ip_interface_address (&lcm->im4->lookup_main, ia,
1641                                     loc->sw_if_index, 1 /* unnumbered */,
1642       ({
1643         addr = ip_interface_address_get_address (&lcm->im4->lookup_main, ia);
1644         ip_address_set (rloc, addr, IP4);
1645         ip_prefix_len (ippref) = 32;
1646         vec_add1 (rlocs, gid[0]);
1647       }));
1648
1649       /* Add ipv6 locators */
1650       foreach_ip_interface_address (&lcm->im6->lookup_main, ia,
1651                                     loc->sw_if_index, 1 /* unnumbered */,
1652       ({
1653         addr = ip_interface_address_get_address (&lcm->im6->lookup_main, ia);
1654         ip_address_set (rloc, addr, IP6);
1655         ip_prefix_len (ippref) = 128;
1656         vec_add1 (rlocs, gid[0]);
1657       }));
1658     }
1659   return rlocs;
1660 }
1661
1662 static vlib_buffer_t *
1663 build_encapsulated_map_request (vlib_main_t * vm, lisp_cp_main_t *lcm,
1664                                 gid_address_t * seid, gid_address_t * deid,
1665                                 locator_set_t * loc_set, ip_address_t * mr_ip,
1666                                 ip_address_t * sloc, u8 is_smr_invoked,
1667                                 u64 *nonce_res, u32 * bi_res)
1668 {
1669   vlib_buffer_t * b;
1670   u32 bi;
1671   gid_address_t * rlocs = 0;
1672
1673   if (vlib_buffer_alloc (vm, &bi, 1) != 1)
1674     {
1675       clib_warning ("Can't allocate buffer for Map-Request!");
1676       return 0;
1677     }
1678
1679   b = vlib_get_buffer (vm, bi);
1680
1681   /* leave some space for the encap headers */
1682   vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
1683
1684   /* get rlocs */
1685   rlocs = build_itr_rloc_list (lcm, loc_set);
1686
1687   /* put lisp msg */
1688   lisp_msg_put_mreq (lcm, b, seid, deid, rlocs, is_smr_invoked, nonce_res);
1689
1690   /* push ecm: udp-ip-lisp */
1691   lisp_msg_push_ecm (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, seid, deid);
1692
1693   /* push outer ip header */
1694   pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
1695                        mr_ip);
1696
1697   bi_res[0] = bi;
1698
1699   vec_free(rlocs);
1700   return b;
1701 }
1702
1703 static void
1704 send_encapsulated_map_request (vlib_main_t * vm, lisp_cp_main_t *lcm,
1705                                gid_address_t * seid, gid_address_t * deid,
1706                                u8 is_smr_invoked)
1707 {
1708   u32 next_index, bi = 0, * to_next, map_index;
1709   vlib_buffer_t * b;
1710   vlib_frame_t * f;
1711   u64 nonce = 0;
1712   locator_set_t * loc_set;
1713   mapping_t * map;
1714   pending_map_request_t * pmr;
1715   ip_address_t mr_ip, sloc;
1716
1717   /* get locator-set for seid */
1718   if (!lcm->lisp_pitr)
1719     {
1720       map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid);
1721       if (map_index == ~0)
1722         {
1723           clib_warning("No local mapping found in eid-table for %U!",
1724                        format_gid_address, seid);
1725           return;
1726         }
1727
1728       map = pool_elt_at_index (lcm->mapping_pool, map_index);
1729
1730       if (!map->local)
1731         {
1732           clib_warning("Mapping found for src eid %U is not marked as local!",
1733                        format_gid_address, seid);
1734           return;
1735         }
1736     }
1737   else
1738     {
1739       map_index = lcm->pitr_map_index;
1740       map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
1741     }
1742
1743   loc_set = pool_elt_at_index (lcm->locator_set_pool, map->locator_set_index);
1744
1745   /* get local iface ip to use in map-request */
1746   if (0 == get_mr_and_local_iface_ip (lcm, &mr_ip, &sloc))
1747     return;
1748
1749   /* build the encapsulated map request */
1750   b = build_encapsulated_map_request (vm, lcm, seid, deid, loc_set, &mr_ip,
1751                                       &sloc, is_smr_invoked, &nonce, &bi);
1752
1753   if (!b)
1754     return;
1755
1756   /* set fib index and lookup node */
1757   vnet_buffer(b)->sw_if_index[VLIB_TX] = ~0;
1758   next_index = (ip_addr_version(&mr_ip) == IP4) ?
1759       ip4_lookup_node.index : ip6_lookup_node.index;
1760
1761   f = vlib_get_frame_to_node (vm, next_index);
1762
1763   /* Enqueue the packet */
1764   to_next = vlib_frame_vector_args (f);
1765   to_next[0] = bi;
1766   f->n_vectors = 1;
1767   vlib_put_frame_to_node (vm, next_index, f);
1768
1769   /* add map-request to pending requests table */
1770   pool_get(lcm->pending_map_requests_pool, pmr);
1771   gid_address_copy (&pmr->src, seid);
1772   gid_address_copy (&pmr->dst, deid);
1773   pmr->src_mapping_index = map_index;
1774   hash_set(lcm->pending_map_requests_by_nonce, nonce,
1775            pmr - lcm->pending_map_requests_pool);
1776 }
1777
1778 static void
1779 get_src_and_dst (void *hdr, ip_address_t * src, ip_address_t *dst)
1780 {
1781   ip4_header_t * ip4 = hdr;
1782   ip6_header_t * ip6;
1783
1784   if ((ip4->ip_version_and_header_length & 0xF0) == 0x40)
1785     {
1786       ip_address_set(src, &ip4->src_address, IP4);
1787       ip_address_set(dst, &ip4->dst_address, IP4);
1788     }
1789   else
1790     {
1791       ip6 = hdr;
1792       ip_address_set(src, &ip6->src_address, IP6);
1793       ip_address_set(dst, &ip6->dst_address, IP6);
1794     }
1795 }
1796
1797 static uword
1798 lisp_cp_lookup (vlib_main_t * vm, vlib_node_runtime_t * node,
1799               vlib_frame_t * from_frame)
1800 {
1801   u32 * from, * to_next_drop, di, si;
1802   lisp_cp_main_t *lcm = vnet_lisp_cp_get_main();
1803   u32 pkts_mapped = 0;
1804   uword n_left_from, n_left_to_next_drop;
1805
1806   from = vlib_frame_vector_args (from_frame);
1807   n_left_from = from_frame->n_vectors;
1808
1809   while (n_left_from > 0)
1810     {
1811       vlib_get_next_frame (vm, node, LISP_CP_LOOKUP_NEXT_DROP,
1812                            to_next_drop, n_left_to_next_drop);
1813
1814       while (n_left_from > 0 && n_left_to_next_drop > 0)
1815         {
1816           u32 pi0;
1817           vlib_buffer_t * p0;
1818           ip4_header_t * ip0;
1819           gid_address_t src, dst;
1820           ip_prefix_t * spref, * dpref;
1821
1822           gid_address_type (&src) = GID_ADDR_IP_PREFIX;
1823           spref = &gid_address_ippref(&src);
1824           gid_address_type (&dst) = GID_ADDR_IP_PREFIX;
1825           dpref = &gid_address_ippref(&dst);
1826
1827           pi0 = from[0];
1828           from += 1;
1829           n_left_from -= 1;
1830           to_next_drop[0] = pi0;
1831           to_next_drop += 1;
1832           n_left_to_next_drop -= 1;
1833
1834           p0 = vlib_get_buffer (vm, pi0);
1835           p0->error = node->errors[LISP_CP_LOOKUP_ERROR_DROP];
1836
1837           /* src/dst eid pair */
1838           ip0 = vlib_buffer_get_current (p0);
1839           get_src_and_dst (ip0, &ip_prefix_addr(spref), &ip_prefix_addr(dpref));
1840           ip_prefix_len(spref) = ip_address_max_len (ip_prefix_version(spref));
1841           ip_prefix_len(dpref) = ip_address_max_len (ip_prefix_version(dpref));
1842
1843           /* if we have remote mapping for destination already in map-chache
1844              add forwarding tunnel directly. If not send a map-request */
1845           di = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
1846           if (~0 != di)
1847             {
1848               mapping_t * m =  vec_elt_at_index (lcm->mapping_pool, di);
1849               /* send a map-request also in case of negative mapping entry
1850                 with corresponding action */
1851               if (m->action == ACTION_SEND_MAP_REQUEST)
1852                 {
1853                   /* send map-request */
1854                   send_encapsulated_map_request (vm, lcm, &src, &dst, 0);
1855                   pkts_mapped++;
1856                 }
1857               else
1858                 {
1859                   si =  gid_dictionary_lookup (&lcm->mapping_index_by_gid,
1860                                                &src);
1861                   if (~0 != si)
1862                     {
1863                       add_fwd_entry (lcm, si, di);
1864                     }
1865                 }
1866             }
1867           else
1868             {
1869               /* send map-request */
1870               send_encapsulated_map_request (vm, lcm, &src, &dst, 0);
1871               pkts_mapped++;
1872             }
1873
1874           if (PREDICT_FALSE(p0->flags & VLIB_BUFFER_IS_TRACED))
1875             {
1876               lisp_cp_lookup_trace_t *tr = vlib_add_trace (vm, node, p0,
1877                                                           sizeof(*tr));
1878
1879               memset(tr, 0, sizeof(*tr));
1880               gid_address_copy (&tr->dst_eid, &dst);
1881               if (vec_len(lcm->map_resolvers) > 0)
1882                 {
1883                   clib_memcpy (&tr->map_resolver_ip,
1884                                vec_elt_at_index(lcm->map_resolvers, 0),
1885                                sizeof(ip_address_t));
1886                 }
1887             }
1888         }
1889
1890       vlib_put_next_frame (vm, node, LISP_CP_LOOKUP_NEXT_DROP, n_left_to_next_drop);
1891     }
1892   vlib_node_increment_counter (vm, node->node_index,
1893                                LISP_CP_LOOKUP_ERROR_MAP_REQUESTS_SENT,
1894                                pkts_mapped);
1895   return from_frame->n_vectors;
1896 }
1897
1898 VLIB_REGISTER_NODE (lisp_cp_lookup_node) = {
1899   .function = lisp_cp_lookup,
1900   .name = "lisp-cp-lookup",
1901   .vector_size = sizeof (u32),
1902   .format_trace = format_lisp_cp_lookup_trace,
1903   .type = VLIB_NODE_TYPE_INTERNAL,
1904
1905   .n_errors = LISP_CP_LOOKUP_N_ERROR,
1906   .error_strings = lisp_cp_lookup_error_strings,
1907
1908   .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
1909
1910   .next_nodes = {
1911       [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
1912       [LISP_CP_LOOKUP_NEXT_IP4_LOOKUP] = "ip4-lookup",
1913       [LISP_CP_LOOKUP_NEXT_IP6_LOOKUP] = "ip6-lookup",
1914   },
1915 };
1916
1917 /* lisp_cp_input statistics */
1918 #define foreach_lisp_cp_input_error                   \
1919 _(DROP, "drop")                                        \
1920 _(MAP_REPLIES_RECEIVED, "map-replies received")
1921
1922 static char * lisp_cp_input_error_strings[] = {
1923 #define _(sym,string) string,
1924   foreach_lisp_cp_input_error
1925 #undef _
1926 };
1927
1928 typedef enum
1929 {
1930 #define _(sym,str) LISP_CP_INPUT_ERROR_##sym,
1931     foreach_lisp_cp_input_error
1932 #undef _
1933     LISP_CP_INPUT_N_ERROR,
1934 } lisp_cp_input_error_t;
1935
1936 typedef enum
1937 {
1938   LISP_CP_INPUT_NEXT_DROP,
1939   LISP_CP_INPUT_N_NEXT,
1940 } lisp_cp_input_next_t;
1941
1942 typedef struct
1943 {
1944   gid_address_t dst_eid;
1945   ip4_address_t map_resolver_ip;
1946 } lisp_cp_input_trace_t;
1947
1948 u8 *
1949 format_lisp_cp_input_trace (u8 * s, va_list * args)
1950 {
1951   CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1952   CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
1953   CLIB_UNUSED(lisp_cp_input_trace_t * t) = va_arg (*args, lisp_cp_input_trace_t *);
1954
1955   s = format (s, "LISP-CP-INPUT: TODO");
1956   return s;
1957 }
1958
1959 static void
1960 del_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index,
1961                u32 dst_map_index)
1962 {
1963   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, * a = &_a;
1964   fwd_entry_t * fe = 0;
1965   uword * feip = 0;
1966   memset(a, 0, sizeof(*a));
1967
1968   feip = hash_get(lcm->fwd_entry_by_mapping_index, dst_map_index);
1969   if (!feip)
1970     return;
1971
1972   fe = pool_elt_at_index(lcm->fwd_entry_pool, feip[0]);
1973
1974   /* delete dp fwd entry */
1975   u32 sw_if_index;
1976   a->is_add = 0;
1977   a->dlocator = fe->dst_loc;
1978   a->slocator = fe->src_loc;
1979   a->vni = gid_address_vni(&a->deid);
1980   gid_address_copy(&a->deid, &fe->deid);
1981
1982   vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
1983
1984   /* delete entry in fwd table */
1985   hash_unset(lcm->fwd_entry_by_mapping_index, dst_map_index);
1986   pool_put(lcm->fwd_entry_pool, fe);
1987 }
1988
1989 /**
1990  * Finds first remote locator with best (lowest) priority that has a local
1991  * peer locator with an underlying route to it.
1992  *
1993  */
1994 static u32
1995 get_locator_pair (lisp_cp_main_t* lcm, mapping_t * lcl_map, mapping_t * rmt_map,
1996                   ip_address_t * lcl_loc, ip_address_t * rmt_loc)
1997 {
1998   u32 i, minp = ~0, limitp = 0, li, check_index = 0, done = 0, esi;
1999   locator_set_t * rmt_ls, * lcl_ls;
2000   ip_address_t _lcl, * lcl = &_lcl;
2001   locator_t * l, * rmt = 0;
2002   uword * checked = 0;
2003
2004   rmt_ls = pool_elt_at_index(lcm->locator_set_pool, rmt_map->locator_set_index);
2005   lcl_ls = pool_elt_at_index(lcm->locator_set_pool, lcl_map->locator_set_index);
2006
2007   if (!rmt_ls || vec_len(rmt_ls->locator_indices) == 0)
2008     return 0;
2009
2010   while (!done)
2011     {
2012       /* find unvisited remote locator with best priority */
2013       for (i = 0; i < vec_len(rmt_ls->locator_indices); i++)
2014         {
2015           if (0 != hash_get(checked, i))
2016             continue;
2017
2018           li = vec_elt(rmt_ls->locator_indices, i);
2019           l = pool_elt_at_index(lcm->locator_pool, li);
2020
2021           /* we don't support non-IP locators for now */
2022           if (gid_address_type(&l->address) != GID_ADDR_IP_PREFIX)
2023             continue;
2024
2025           if (l->priority < minp && l->priority >= limitp)
2026             {
2027               minp = l->priority;
2028               rmt = l;
2029               check_index = i;
2030             }
2031         }
2032       /* check if a local locator with a route to remote locator exists */
2033       if (rmt != 0)
2034         {
2035           esi = ip_fib_get_egress_iface_for_dst (
2036               lcm, &gid_address_ip(&rmt->address));
2037           if ((u32) ~0 == esi)
2038             continue;
2039
2040           for (i = 0; i < vec_len(lcl_ls->locator_indices); i++)
2041             {
2042               li = vec_elt (lcl_ls->locator_indices, i);
2043               locator_t * sl = pool_elt_at_index (lcm->locator_pool, li);
2044
2045               /* found local locator */
2046               if (sl->sw_if_index == esi)
2047                 {
2048                   if (0 == ip_interface_get_first_ip_address (lcm,
2049                              sl->sw_if_index,
2050                              gid_address_ip_version(&rmt->address), lcl))
2051                     continue;
2052
2053                   ip_address_copy(rmt_loc, &gid_address_ip(&rmt->address));
2054                   ip_address_copy(lcl_loc, lcl);
2055                   done = 2;
2056                 }
2057             }
2058
2059           /* skip this remote locator in next searches */
2060           limitp = minp;
2061           hash_set(checked, check_index, 1);
2062         }
2063       else
2064         done = 1;
2065     }
2066   hash_free(checked);
2067   return (done == 2) ? 1 : 0;
2068 }
2069
2070 static void
2071 add_fwd_entry (lisp_cp_main_t* lcm, u32 src_map_index, u32 dst_map_index)
2072 {
2073   mapping_t * src_map, * dst_map;
2074   u32 sw_if_index;
2075   uword * feip = 0, * tidp;
2076   fwd_entry_t* fe;
2077   vnet_lisp_gpe_add_del_fwd_entry_args_t _a, * a = &_a;
2078
2079   memset (a, 0, sizeof(*a));
2080
2081   /* remove entry if it already exists */
2082   feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
2083   if (feip)
2084     del_fwd_entry (lcm, src_map_index, dst_map_index);
2085
2086   src_map = pool_elt_at_index (lcm->mapping_pool, src_map_index);
2087   dst_map = pool_elt_at_index (lcm->mapping_pool, dst_map_index);
2088
2089   gid_address_copy (&a->deid, &dst_map->eid);
2090   a->vni = gid_address_vni(&a->deid);
2091
2092   tidp = hash_get(lcm->table_id_by_vni, a->vni);
2093   if (!tidp)
2094     {
2095       clib_warning("vni %d not associated to a vrf!", a->vni);
2096       return;
2097     }
2098   a->table_id = tidp[0];
2099
2100   /* insert data plane forwarding entry */
2101   a->is_add = 1;
2102
2103   /* find best locator pair that 1) verifies LISP policy 2) are connected */
2104   if (0 == get_locator_pair (lcm, src_map, dst_map, &a->slocator, &a->dlocator))
2105     {
2106       /* negative entry */
2107       a->is_negative = 1;
2108       a->action = dst_map->action;
2109     }
2110
2111   /* TODO remove */
2112   u8 ipver = ip_prefix_version(&gid_address_ippref(&a->deid));
2113   a->decap_next_index = (ipver == IP4) ?
2114           LISP_GPE_INPUT_NEXT_IP4_INPUT : LISP_GPE_INPUT_NEXT_IP6_INPUT;
2115
2116   vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
2117
2118   /* add tunnel to fwd entry table XXX check return value from DP insertion */
2119   pool_get (lcm->fwd_entry_pool, fe);
2120   fe->dst_loc = a->dlocator;
2121   fe->src_loc = a->slocator;
2122   gid_address_copy (&fe->deid, &a->deid);
2123   hash_set (lcm->fwd_entry_by_mapping_index, dst_map_index,
2124             fe - lcm->fwd_entry_pool);
2125 }
2126
2127 /* return 0 if the two locator sets are identical 1 otherwise */
2128 static u8
2129 compare_locators (lisp_cp_main_t *lcm, u32 * old_ls_indexes,
2130                   locator_t * new_locators)
2131 {
2132   u32 i, old_li;
2133   locator_t * old_loc, * new_loc;
2134
2135   if (vec_len (old_ls_indexes) != vec_len(new_locators))
2136     return 1;
2137
2138   for (i = 0; i < vec_len(new_locators); i++)
2139     {
2140       old_li = vec_elt(old_ls_indexes, i);
2141       old_loc = pool_elt_at_index(lcm->locator_pool, old_li);
2142
2143       new_loc = vec_elt_at_index(new_locators, i);
2144
2145       if (locator_cmp (old_loc, new_loc))
2146         return 1;
2147     }
2148   return 0;
2149 }
2150
2151 void
2152 process_map_reply (lisp_cp_main_t * lcm, vlib_buffer_t * b)
2153 {
2154   mapping_t * old_map;
2155   locator_t * loc;
2156   u32 len = 0, i, ls_index = 0;
2157   void * h;
2158   vnet_lisp_add_del_locator_set_args_t _ls_arg, * ls_arg = &_ls_arg;
2159   vnet_lisp_add_del_mapping_args_t _m_args, * m_args = &_m_args;
2160   pending_map_request_t * pmr;
2161   locator_t probed;
2162   map_reply_hdr_t * mrep_hdr;
2163   u64 nonce;
2164   u32 dst_map_index, mi;
2165   uword * pmr_index;
2166
2167   mrep_hdr = vlib_buffer_get_current (b);
2168
2169   /* Check pending requests table and nonce */
2170   nonce = MREP_NONCE(mrep_hdr);
2171   pmr_index = hash_get(lcm->pending_map_requests_by_nonce, nonce);
2172   if (!pmr_index)
2173     {
2174       clib_warning("No pending map-request entry with nonce %lu!", nonce);
2175       return;
2176     }
2177   pmr = pool_elt_at_index(lcm->pending_map_requests_pool, pmr_index[0]);
2178
2179   vlib_buffer_pull (b, sizeof(*mrep_hdr));
2180
2181   for (i = 0; i < MREP_REC_COUNT(mrep_hdr); i++)
2182     {
2183       memset (ls_arg, 0, sizeof(*ls_arg));
2184       memset (m_args, 0, sizeof(*m_args));
2185
2186       h = vlib_buffer_get_current (b);
2187       m_args->ttl = clib_net_to_host_u32 (MAP_REC_TTL(h));
2188       m_args->action = MAP_REC_ACTION(h);
2189       m_args->authoritative = MAP_REC_AUTH(h);
2190
2191       len = lisp_msg_parse_mapping_record (b, &m_args->deid, &ls_arg->locators,
2192                                            &probed);
2193       if (len == ~0)
2194         {
2195           clib_warning ("Failed to parse mapping record!");
2196           vec_foreach (loc, ls_arg->locators)
2197             {
2198               locator_free (loc);
2199             }
2200           vec_free(ls_arg->locators);
2201           return;
2202         }
2203
2204       mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &m_args->deid);
2205       old_map = mi != ~0 ? pool_elt_at_index(lcm->mapping_pool, mi) : 0;
2206
2207       /* if mapping already exists, decide if locators (and forwarding) should
2208        * be updated and be done */
2209       if (old_map != 0 && !gid_address_cmp (&old_map->eid, &m_args->deid))
2210         {
2211           locator_set_t * old_ls;
2212
2213           /* update mapping attributes */
2214           old_map->action = m_args->action;
2215           old_map->authoritative = m_args->authoritative;
2216           old_map->ttl = m_args->ttl;
2217
2218           old_ls = pool_elt_at_index(lcm->locator_set_pool,
2219                                      old_map->locator_set_index);
2220           /* if the two locators are not equal, update them and forwarding
2221            * otherwise there's nothing to be done */
2222           if (compare_locators (lcm, old_ls->locator_indices, ls_arg->locators))
2223             {
2224               /* set locator-set index to overwrite */
2225               ls_arg->is_add = 1;
2226               ls_arg->index = old_map->locator_set_index;
2227               vnet_lisp_add_del_locator_set (ls_arg, 0);
2228               add_fwd_entry (lcm, pmr->src_mapping_index, mi);
2229             }
2230         }
2231       /* new mapping */
2232       else
2233         {
2234           /* add locator-set */
2235           ls_arg->is_add = 1;
2236           ls_arg->index = ~0;
2237           vnet_lisp_add_del_locator_set (ls_arg, &ls_index);
2238
2239           /* add mapping */
2240           m_args->is_add = 1;
2241           m_args->locator_set_index = ls_index;
2242           vnet_lisp_add_del_mapping (m_args, &dst_map_index);
2243
2244           /* add forwarding tunnel */
2245           add_fwd_entry (lcm, pmr->src_mapping_index, dst_map_index);
2246         }
2247       vec_free(ls_arg->locators);
2248     }
2249
2250   /* remove pending map request entry */
2251   hash_unset(lcm->pending_map_requests_by_nonce, nonce);
2252   pool_put(lcm->pending_map_requests_pool, pmr);
2253 }
2254
2255 void
2256 process_map_request (vlib_main_t * vm, lisp_cp_main_t * lcm, vlib_buffer_t * b)
2257 {
2258   map_request_hdr_t * mreq_hdr;
2259   gid_address_t src, dst;
2260 //  u64 nonce;
2261   u32 i, len = 0;
2262   gid_address_t * itr_rlocs = 0, * rloc;
2263
2264   mreq_hdr = vlib_buffer_get_current (b);
2265   vlib_buffer_pull (b, sizeof(*mreq_hdr));
2266
2267 //  nonce = MREQ_NONCE(mreq_hdr);
2268
2269   if (!MREQ_SMR(mreq_hdr)) {
2270       clib_warning("Only SMR Map-Requests supported for now!");
2271       return;
2272   }
2273
2274   /* parse src eid */
2275   len = lisp_msg_parse_addr (b, &src);
2276   if (len == ~0)
2277     return;
2278
2279   /* for now we don't do anything with the itr's rlocs */
2280   len = lisp_msg_parse_itr_rlocs (b, &itr_rlocs, MREQ_ITR_RLOC_COUNT(mreq_hdr) + 1);
2281   if (len == ~0)
2282     return;
2283
2284   /* TODO: RLOCs are currently unused, so free them for now */
2285   vec_foreach (rloc, itr_rlocs)
2286     {
2287       gid_address_free (rloc);
2288     }
2289
2290   /* parse eid records and send SMR-invoked map-requests */
2291   for (i = 0; i < MREQ_REC_COUNT(mreq_hdr); i++)
2292     {
2293       memset(&dst, 0, sizeof(dst));
2294       len = lisp_msg_parse_eid_rec (b, &dst);
2295       if (len == ~0)
2296         {
2297           clib_warning("Can't parse map-request EID-record");
2298           return;
2299         }
2300       /* send SMR-invoked map-requests */
2301       send_encapsulated_map_request (vm, lcm, &dst, &src, /* invoked */ 1);
2302     }
2303 }
2304
2305 static uword
2306 lisp_cp_input (vlib_main_t * vm, vlib_node_runtime_t * node,
2307                vlib_frame_t * from_frame)
2308 {
2309   u32 n_left_from, * from, * to_next_drop;
2310   lisp_msg_type_e type;
2311   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
2312
2313   from = vlib_frame_vector_args (from_frame);
2314   n_left_from = from_frame->n_vectors;
2315
2316
2317   while (n_left_from > 0)
2318     {
2319       u32 n_left_to_next_drop;
2320
2321       vlib_get_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP,
2322                            to_next_drop, n_left_to_next_drop);
2323       while (n_left_from > 0 && n_left_to_next_drop > 0)
2324         {
2325           u32 bi0;
2326           vlib_buffer_t * b0;
2327
2328           bi0 = from[0];
2329           from += 1;
2330           n_left_from -= 1;
2331           to_next_drop[0] = bi0;
2332           to_next_drop += 1;
2333           n_left_to_next_drop -= 1;
2334
2335           b0 = vlib_get_buffer (vm, bi0);
2336
2337           type = lisp_msg_type(vlib_buffer_get_current (b0));
2338           switch (type)
2339             {
2340             case LISP_MAP_REPLY:
2341               process_map_reply (lcm, b0);
2342               break;
2343             case LISP_MAP_REQUEST:
2344               process_map_request(vm, lcm, b0);
2345               break;
2346             default:
2347               clib_warning("Unsupported LISP message type %d", type);
2348               break;
2349             }
2350
2351           b0->error = node->errors[LISP_CP_INPUT_ERROR_DROP];
2352
2353           if (PREDICT_FALSE(b0->flags & VLIB_BUFFER_IS_TRACED))
2354             {
2355
2356             }
2357         }
2358
2359       vlib_put_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP, n_left_to_next_drop);
2360     }
2361   return from_frame->n_vectors;
2362 }
2363
2364 VLIB_REGISTER_NODE (lisp_cp_input_node) = {
2365   .function = lisp_cp_input,
2366   .name = "lisp-cp-input",
2367   .vector_size = sizeof (u32),
2368   .format_trace = format_lisp_cp_input_trace,
2369   .type = VLIB_NODE_TYPE_INTERNAL,
2370
2371   .n_errors = LISP_CP_INPUT_N_ERROR,
2372   .error_strings = lisp_cp_input_error_strings,
2373
2374   .n_next_nodes = LISP_CP_INPUT_N_NEXT,
2375
2376   .next_nodes = {
2377       [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
2378   },
2379 };
2380
2381 clib_error_t *
2382 lisp_cp_init (vlib_main_t *vm)
2383 {
2384   lisp_cp_main_t * lcm = vnet_lisp_cp_get_main();
2385   clib_error_t * error = 0;
2386
2387   if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
2388     return error;
2389
2390   lcm->im4 = &ip4_main;
2391   lcm->im6 = &ip6_main;
2392   lcm->vlib_main = vm;
2393   lcm->vnet_main = vnet_get_main();
2394
2395   gid_dictionary_init (&lcm->mapping_index_by_gid);
2396
2397   /* default vrf mapped to vni 0 */
2398   hash_set(lcm->table_id_by_vni, 0, 0);
2399
2400   udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp,
2401                          lisp_cp_input_node.index, 1 /* is_ip4 */);
2402   udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp6,
2403                          lisp_cp_input_node.index, 0 /* is_ip4 */);
2404
2405   return 0;
2406 }
2407
2408 VLIB_INIT_FUNCTION(lisp_cp_init);