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