FD.io VPP  v17.10-9-gd594711
Vector Packet Processing
control.c
Go to the documentation of this file.
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 <vlibmemory/api.h>
17 #include <vnet/lisp-cp/control.h>
18 #include <vnet/lisp-cp/packets.h>
23 #include <vnet/fib/fib_entry.h>
24 #include <vnet/fib/fib_table.h>
26 #include <vnet/ethernet/packet.h>
27 
28 #include <openssl/evp.h>
29 #include <openssl/hmac.h>
30 
31 #define MAX_VALUE_U24 0xffffff
32 
33 /* mapping timer control constants (in seconds) */
34 #define TIME_UNTIL_REFETCH_OR_DELETE 20
35 #define MAPPING_TIMEOUT (((m->ttl) * 60) - TIME_UNTIL_REFETCH_OR_DELETE)
36 
38 
39 u8 *format_lisp_cp_input_trace (u8 * s, va_list * args);
40 static void *send_map_request_thread_fn (void *arg);
41 
42 typedef enum
43 {
47 
48 typedef struct
49 {
55 
56 u8
58 {
60  return lcm->map_request_mode;
61 }
62 
63 static u16
65 {
66  switch (key_id)
67  {
68  case HMAC_SHA_1_96:
69  return SHA1_AUTH_DATA_LEN;
70  case HMAC_SHA_256_128:
71  return SHA256_AUTH_DATA_LEN;
72  default:
73  clib_warning ("unsupported key type: %d!", key_id);
74  return (u16) ~ 0;
75  }
76  return (u16) ~ 0;
77 }
78 
79 static const EVP_MD *
81 {
82  switch (key_id)
83  {
84  case HMAC_SHA_1_96:
85  return EVP_sha1 ();
86  case HMAC_SHA_256_128:
87  return EVP_sha256 ();
88  default:
89  clib_warning ("unsupported encryption key type: %d!", key_id);
90  break;
91  }
92  return 0;
93 }
94 
95 static int
97  u8 smr_invoked, u8 is_resend);
98 
101  u32 sw_if_index, u8 loop)
102 {
103  vnet_main_t *vnm = vnet_get_main ();
104  vnet_sw_interface_t *swif = vnet_get_sw_interface (vnm, sw_if_index);
105  if (loop && swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
106  sw_if_index = swif->unnumbered_sw_if_index;
107  u32 ia =
108  (vec_len ((lm)->if_address_pool_index_by_sw_if_index) > (sw_if_index)) ?
109  vec_elt ((lm)->if_address_pool_index_by_sw_if_index, (sw_if_index)) :
110  (u32) ~ 0;
111  return pool_elt_at_index ((lm)->if_address_pool, ia);
112 }
113 
114 void *
116  u8 version)
117 {
119 
120  ia = ip_interface_get_first_interface_address (lm, sw_if_index, 1);
121  if (!ia)
122  return 0;
123  return ip_interface_address_get_address (lm, ia);
124 }
125 
126 int
128  u8 version, ip_address_t * result)
129 {
130  ip_lookup_main_t *lm;
131  void *addr;
132 
133  lm = (version == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
134  addr = ip_interface_get_first_address (lm, sw_if_index, version);
135  if (!addr)
136  return 0;
137 
138  ip_address_set (result, addr, version);
139  return 1;
140 }
141 
142 /**
143  * convert from a LISP address to a FIB prefix
144  */
145 void
146 ip_address_to_fib_prefix (const ip_address_t * addr, fib_prefix_t * prefix)
147 {
148  if (addr->version == IP4)
149  {
150  prefix->fp_len = 32;
151  prefix->fp_proto = FIB_PROTOCOL_IP4;
152  memset (&prefix->fp_addr.pad, 0, sizeof (prefix->fp_addr.pad));
153  memcpy (&prefix->fp_addr.ip4, &addr->ip, sizeof (prefix->fp_addr.ip4));
154  }
155  else
156  {
157  prefix->fp_len = 128;
158  prefix->fp_proto = FIB_PROTOCOL_IP6;
159  memcpy (&prefix->fp_addr.ip6, &addr->ip, sizeof (prefix->fp_addr.ip6));
160  }
161 }
162 
163 /**
164  * convert from a LISP to a FIB prefix
165  */
166 void
167 ip_prefix_to_fib_prefix (const ip_prefix_t * ip_prefix,
168  fib_prefix_t * fib_prefix)
169 {
170  ip_address_to_fib_prefix (&ip_prefix->addr, fib_prefix);
171  fib_prefix->fp_len = ip_prefix->len;
172 }
173 
174 /**
175  * Find the sw_if_index of the interface that would be used to egress towards
176  * dst.
177  */
178 u32
180 {
181  fib_node_index_t fei;
182  fib_prefix_t prefix;
183 
184  ip_address_to_fib_prefix (dst, &prefix);
185 
186  fei = fib_table_lookup (0, &prefix);
187 
188  return (fib_entry_get_resolving_interface (fei));
189 }
190 
191 /**
192  * Find first IP of the interface that would be used to egress towards dst.
193  * Returns 1 if the address is found 0 otherwise.
194  */
195 int
197  ip_address_t * result)
198 {
199  u32 si;
200  ip_lookup_main_t *lm;
201  void *addr = 0;
202  u8 ipver;
203 
204  ASSERT (result != 0);
205 
206  ipver = ip_addr_version (dst);
207 
208  lm = (ipver == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
209  si = ip_fib_get_egress_iface_for_dst (lcm, dst);
210 
211  if ((u32) ~ 0 == si)
212  return 0;
213 
214  /* find the first ip address */
215  addr = ip_interface_get_first_address (lm, si, ipver);
216  if (0 == addr)
217  return 0;
218 
219  ip_address_set (result, addr, ipver);
220  return 1;
221 }
222 
223 static int
224 dp_add_del_iface (lisp_cp_main_t * lcm, u32 vni, u8 is_l2, u8 is_add)
225 {
226  uword *dp_table;
227 
228  if (!is_l2)
229  {
230  dp_table = hash_get (lcm->table_id_by_vni, vni);
231 
232  if (!dp_table)
233  {
234  clib_warning ("vni %d not associated to a vrf!", vni);
235  return VNET_API_ERROR_INVALID_VALUE;
236  }
237  }
238  else
239  {
240  dp_table = hash_get (lcm->bd_id_by_vni, vni);
241  if (!dp_table)
242  {
243  clib_warning ("vni %d not associated to a bridge domain!", vni);
244  return VNET_API_ERROR_INVALID_VALUE;
245  }
246  }
247 
248  /* enable/disable data-plane interface */
249  if (is_add)
250  {
251  if (is_l2)
252  lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table[0]);
253  else
254  lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table[0]);
255  }
256  else
257  {
258  if (is_l2)
260  else
262  }
263 
264  return 0;
265 }
266 
267 static void
268 dp_del_fwd_entry (lisp_cp_main_t * lcm, u32 dst_map_index)
269 {
271  fwd_entry_t *fe = 0;
272  uword *feip = 0;
273  memset (a, 0, sizeof (*a));
274 
275  feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
276  if (!feip)
277  return;
278 
279  fe = pool_elt_at_index (lcm->fwd_entry_pool, feip[0]);
280 
281  /* delete dp fwd entry */
282  u32 sw_if_index;
283  a->is_add = 0;
284  a->locator_pairs = fe->locator_pairs;
285  a->vni = gid_address_vni (&fe->reid);
286  gid_address_copy (&a->rmt_eid, &fe->reid);
287  if (fe->is_src_dst)
288  gid_address_copy (&a->lcl_eid, &fe->leid);
289 
290  vnet_lisp_gpe_del_fwd_counters (a, feip[0]);
291  vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
292 
293  /* delete entry in fwd table */
294  hash_unset (lcm->fwd_entry_by_mapping_index, dst_map_index);
295  vec_free (fe->locator_pairs);
296  pool_put (lcm->fwd_entry_pool, fe);
297 }
298 
299 /**
300  * Finds first remote locator with best (lowest) priority that has a local
301  * peer locator with an underlying route to it.
302  *
303  */
304 static u32
306  mapping_t * rmt_map, locator_pair_t ** locator_pairs)
307 {
308  u32 i, limitp = 0, li, found = 0, esi;
309  locator_set_t *rmt_ls, *lcl_ls;
310  ip_address_t _lcl_addr, *lcl_addr = &_lcl_addr;
311  locator_t *lp, *rmt = 0;
312  uword *checked = 0;
313  locator_pair_t pair;
314 
315  rmt_ls =
317  lcl_ls =
319 
320  if (!rmt_ls || vec_len (rmt_ls->locator_indices) == 0)
321  return 0;
322 
323  while (1)
324  {
325  rmt = 0;
326 
327  /* find unvisited remote locator with best priority */
328  for (i = 0; i < vec_len (rmt_ls->locator_indices); i++)
329  {
330  if (0 != hash_get (checked, i))
331  continue;
332 
333  li = vec_elt (rmt_ls->locator_indices, i);
334  lp = pool_elt_at_index (lcm->locator_pool, li);
335 
336  /* we don't support non-IP locators for now */
338  continue;
339 
340  if ((found && lp->priority == limitp)
341  || (!found && lp->priority >= limitp))
342  {
343  rmt = lp;
344 
345  /* don't search for locators with lower priority and don't
346  * check this locator again*/
347  limitp = lp->priority;
348  hash_set (checked, i, 1);
349  break;
350  }
351  }
352  /* check if a local locator with a route to remote locator exists */
353  if (rmt != 0)
354  {
355  /* find egress sw_if_index for rmt locator */
356  esi =
358  &gid_address_ip (&rmt->address));
359  if ((u32) ~ 0 == esi)
360  continue;
361 
362  for (i = 0; i < vec_len (lcl_ls->locator_indices); i++)
363  {
364  li = vec_elt (lcl_ls->locator_indices, i);
365  locator_t *sl = pool_elt_at_index (lcm->locator_pool, li);
366 
367  /* found local locator with the needed sw_if_index */
368  if (sl->sw_if_index == esi)
369  {
370  /* and it has an address */
371  if (0 == ip_interface_get_first_ip_address (lcm,
372  sl->sw_if_index,
374  (&rmt->address),
375  lcl_addr))
376  continue;
377 
378  memset (&pair, 0, sizeof (pair));
379  ip_address_copy (&pair.rmt_loc,
380  &gid_address_ip (&rmt->address));
381  ip_address_copy (&pair.lcl_loc, lcl_addr);
382  pair.weight = rmt->weight;
383  pair.priority = rmt->priority;
384  vec_add1 (locator_pairs[0], pair);
385  found = 1;
386  }
387  }
388  }
389  else
390  break;
391  }
392 
393  hash_free (checked);
394  return found;
395 }
396 
397 static void
399  fid_address_t * fid)
400 {
402 
403  dst[0] = src[0];
404 
405  switch (fid_addr_type (fid))
406  {
407  case FID_ADDR_IP_PREF:
409  gid_address_ippref (dst) = fid_addr_ippref (fid);
410  break;
411  case FID_ADDR_MAC:
413  mac_copy (gid_address_mac (dst), fid_addr_mac (fid));
414  break;
415  default:
416  clib_warning ("Unsupported fid type %d!", fid_addr_type (fid));
417  break;
418  }
419 }
420 
421 u8
423 {
425  return lcm->map_registering;
426 }
427 
428 u8
430 {
432  return lcm->rloc_probing;
433 }
434 
435 static void
436 dp_add_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index)
437 {
439  gid_address_t *rmt_eid, *lcl_eid;
440  mapping_t *lcl_map, *rmt_map;
441  u32 sw_if_index, **rmts, rmts_idx;
442  uword *feip = 0, *dpid, *rmts_stored_idxp = 0;
443  fwd_entry_t *fe;
444  u8 type, is_src_dst = 0;
445  int rv;
446 
447  memset (a, 0, sizeof (*a));
448 
449  /* remove entry if it already exists */
450  feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
451  if (feip)
452  dp_del_fwd_entry (lcm, dst_map_index);
453 
454  /*
455  * Determine local mapping and eid
456  */
457  if (lcm->lisp_pitr)
458  lcl_map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
459  else
460  lcl_map = pool_elt_at_index (lcm->mapping_pool, src_map_index);
461  lcl_eid = &lcl_map->eid;
462 
463  /*
464  * Determine remote mapping and eid
465  */
466  rmt_map = pool_elt_at_index (lcm->mapping_pool, dst_map_index);
467  rmt_eid = &rmt_map->eid;
468 
469  /*
470  * Build and insert data plane forwarding entry
471  */
472  a->is_add = 1;
473 
474  if (MR_MODE_SRC_DST == lcm->map_request_mode)
475  {
476  if (GID_ADDR_SRC_DST == gid_address_type (rmt_eid))
477  {
478  gid_address_sd_to_flat (&a->rmt_eid, rmt_eid,
479  &gid_address_sd_dst (rmt_eid));
480  gid_address_sd_to_flat (&a->lcl_eid, rmt_eid,
481  &gid_address_sd_src (rmt_eid));
482  }
483  else
484  {
485  gid_address_copy (&a->rmt_eid, rmt_eid);
486  gid_address_copy (&a->lcl_eid, lcl_eid);
487  }
488  is_src_dst = 1;
489  }
490  else
491  gid_address_copy (&a->rmt_eid, rmt_eid);
492 
493  a->vni = gid_address_vni (&a->rmt_eid);
494  a->is_src_dst = is_src_dst;
495 
496  /* get vrf or bd_index associated to vni */
497  type = gid_address_type (&a->rmt_eid);
498  if (GID_ADDR_IP_PREFIX == type)
499  {
500  dpid = hash_get (lcm->table_id_by_vni, a->vni);
501  if (!dpid)
502  {
503  clib_warning ("vni %d not associated to a vrf!", a->vni);
504  return;
505  }
506  a->table_id = dpid[0];
507  }
508  else if (GID_ADDR_MAC == type)
509  {
510  dpid = hash_get (lcm->bd_id_by_vni, a->vni);
511  if (!dpid)
512  {
513  clib_warning ("vni %d not associated to a bridge domain !", a->vni);
514  return;
515  }
516  a->bd_id = dpid[0];
517  }
518 
519  /* find best locator pair that 1) verifies LISP policy 2) are connected */
520  rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
521 
522  /* Either rmt mapping is negative or we can't find underlay path.
523  * Try again with petr if configured */
524  if (rv == 0 && (lcm->flags & LISP_FLAG_USE_PETR))
525  {
526  rmt_map = lisp_get_petr_mapping (lcm);
527  rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
528  }
529 
530  /* negative entry */
531  if (rv == 0)
532  {
533  a->is_negative = 1;
534  a->action = rmt_map->action;
535  }
536 
537  rv = vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
538  if (rv)
539  {
540  if (a->locator_pairs)
541  vec_free (a->locator_pairs);
542  return;
543  }
544 
545  /* add tunnel to fwd entry table */
546  pool_get (lcm->fwd_entry_pool, fe);
548 
549  fe->locator_pairs = a->locator_pairs;
550  gid_address_copy (&fe->reid, &a->rmt_eid);
551 
552  if (is_src_dst)
553  gid_address_copy (&fe->leid, &a->lcl_eid);
554  else
555  gid_address_copy (&fe->leid, lcl_eid);
556 
557  fe->is_src_dst = is_src_dst;
558  hash_set (lcm->fwd_entry_by_mapping_index, dst_map_index,
559  fe - lcm->fwd_entry_pool);
560 
561  /* Add rmt mapping to the vector of adjacent mappings to lcl mapping */
562  rmts_stored_idxp =
563  hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index);
564  if (!rmts_stored_idxp)
565  {
566  pool_get (lcm->lcl_to_rmt_adjacencies, rmts);
567  memset (rmts, 0, sizeof (*rmts));
568  rmts_idx = rmts - lcm->lcl_to_rmt_adjacencies;
569  hash_set (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index, rmts_idx);
570  }
571  else
572  {
573  rmts_idx = (u32) (*rmts_stored_idxp);
574  rmts = pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idx);
575  }
576  vec_add1 (rmts[0], dst_map_index);
577 }
578 
579 typedef struct
580 {
584 
585 static void *
587 {
588  fwd_entry_mt_arg_t *a = arg;
590  dp_add_fwd_entry (lcm, a->si, a->di);
591  return 0;
592 }
593 
594 static int
596 {
598 
599  memset (&a, 0, sizeof (a));
600  a.si = si;
601  a.di = di;
602 
604  (u8 *) & a, sizeof (a));
605  return 0;
606 }
607 
608 /**
609  * Returns vector of adjacencies.
610  *
611  * The caller must free the vector returned by this function.
612  *
613  * @param vni virtual network identifier
614  * @return vector of adjacencies
615  */
618 {
620  fwd_entry_t *fwd;
621  lisp_adjacency_t *adjs = 0, adj;
622 
623  /* *INDENT-OFF* */
624  pool_foreach(fwd, lcm->fwd_entry_pool,
625  ({
626  if (gid_address_vni (&fwd->reid) != vni)
627  continue;
628 
629  gid_address_copy (&adj.reid, &fwd->reid);
630  gid_address_copy (&adj.leid, &fwd->leid);
631  vec_add1 (adjs, adj);
632  }));
633  /* *INDENT-ON* */
634 
635  return adjs;
636 }
637 
638 static lisp_msmr_t *
639 get_map_server (ip_address_t * a)
640 {
642  lisp_msmr_t *m;
643 
644  vec_foreach (m, lcm->map_servers)
645  {
646  if (!ip_address_cmp (&m->address, a))
647  {
648  return m;
649  }
650  }
651  return 0;
652 }
653 
654 static lisp_msmr_t *
655 get_map_resolver (ip_address_t * a)
656 {
658  lisp_msmr_t *m;
659 
660  vec_foreach (m, lcm->map_resolvers)
661  {
662  if (!ip_address_cmp (&m->address, a))
663  {
664  return m;
665  }
666  }
667  return 0;
668 }
669 
670 int
671 vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add)
672 {
673  u32 i;
675  lisp_msmr_t _ms, *ms = &_ms;
676 
678  {
679  clib_warning ("LISP is disabled!");
680  return VNET_API_ERROR_LISP_DISABLED;
681  }
682 
683  if (is_add)
684  {
685  if (get_map_server (addr))
686  {
687  clib_warning ("map-server %U already exists!", format_ip_address,
688  addr);
689  return -1;
690  }
691 
692  memset (ms, 0, sizeof (*ms));
693  ip_address_copy (&ms->address, addr);
694  vec_add1 (lcm->map_servers, ms[0]);
695 
696  if (vec_len (lcm->map_servers) == 1)
697  lcm->do_map_server_election = 1;
698  }
699  else
700  {
701  for (i = 0; i < vec_len (lcm->map_servers); i++)
702  {
703  ms = vec_elt_at_index (lcm->map_servers, i);
704  if (!ip_address_cmp (&ms->address, addr))
705  {
706  if (!ip_address_cmp (&ms->address, &lcm->active_map_server))
707  lcm->do_map_server_election = 1;
708 
709  vec_del1 (lcm->map_servers, i);
710  break;
711  }
712  }
713  }
714 
715  return 0;
716 }
717 
718 /**
719  * Add/remove mapping to/from map-cache. Overwriting not allowed.
720  */
721 int
723  u32 * map_index_result)
724 {
726  u32 mi, *map_indexp, map_index, i;
727  u32 **rmts = 0, *remote_idxp, rmts_itr, remote_idx;
728  uword *rmts_idxp;
729  mapping_t *m, *old_map;
730  u32 **eid_indexes;
731 
732  if (gid_address_type (&a->eid) == GID_ADDR_NSH)
733  {
734  if (gid_address_vni (&a->eid) != 0)
735  {
736  clib_warning ("Supported only default VNI for NSH!");
737  return VNET_API_ERROR_INVALID_ARGUMENT;
738  }
740  {
741  clib_warning ("SPI is greater than 24bit!");
742  return VNET_API_ERROR_INVALID_ARGUMENT;
743  }
744  }
745 
747  old_map = mi != ~0 ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
748  if (a->is_add)
749  {
750  /* TODO check if overwriting and take appropriate actions */
751  if (mi != GID_LOOKUP_MISS && !gid_address_cmp (&old_map->eid, &a->eid))
752  {
753  clib_warning ("eid %U found in the eid-table", format_gid_address,
754  &a->eid);
755  return VNET_API_ERROR_VALUE_EXIST;
756  }
757 
758  pool_get (lcm->mapping_pool, m);
759  gid_address_copy (&m->eid, &a->eid);
761  m->ttl = a->ttl;
762  m->action = a->action;
763  m->local = a->local;
764  m->is_static = a->is_static;
765  m->key = vec_dup (a->key);
766  m->key_id = a->key_id;
767 
768  map_index = m - lcm->mapping_pool;
769  gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, map_index,
770  1);
771 
773  {
774  clib_warning ("Locator set with index %d doesn't exist",
775  a->locator_set_index);
776  return VNET_API_ERROR_INVALID_VALUE;
777  }
778 
779  /* add eid to list of eids supported by locator-set */
781  eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
782  a->locator_set_index);
783  vec_add1 (eid_indexes[0], map_index);
784 
785  if (a->local)
786  {
787  /* mark as local */
788  vec_add1 (lcm->local_mappings_indexes, map_index);
789  }
790  map_index_result[0] = map_index;
791  }
792  else
793  {
794  if (mi == GID_LOOKUP_MISS)
795  {
796  clib_warning ("eid %U not found in the eid-table",
797  format_gid_address, &a->eid);
798  return VNET_API_ERROR_INVALID_VALUE;
799  }
800 
801  /* clear locator-set to eids binding */
802  eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
803  a->locator_set_index);
804  for (i = 0; i < vec_len (eid_indexes[0]); i++)
805  {
806  map_indexp = vec_elt_at_index (eid_indexes[0], i);
807  if (map_indexp[0] == mi)
808  break;
809  }
810  vec_del1 (eid_indexes[0], i);
811 
812  /* remove local mark if needed */
813  m = pool_elt_at_index (lcm->mapping_pool, mi);
814  if (m->local)
815  {
816  /* Remove adjacencies associated with the local mapping */
817  rmts_idxp = hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, mi);
818  if (rmts_idxp)
819  {
820  rmts =
821  pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idxp[0]);
822  vec_foreach (remote_idxp, rmts[0])
823  {
824  dp_del_fwd_entry (lcm, remote_idxp[0]);
825  }
826  vec_free (rmts[0]);
827  pool_put (lcm->lcl_to_rmt_adjacencies, rmts);
829  }
830 
831  u32 k, *lm_indexp;
832  for (k = 0; k < vec_len (lcm->local_mappings_indexes); k++)
833  {
834  lm_indexp = vec_elt_at_index (lcm->local_mappings_indexes, k);
835  if (lm_indexp[0] == mi)
836  break;
837  }
839  }
840  else
841  {
842  /* Remove remote (if present) from the vectors of lcl-to-rmts
843  * TODO: Address this in a more efficient way.
844  */
845  /* *INDENT-OFF* */
847  ({
848  vec_foreach_index (rmts_itr, rmts[0])
849  {
850  remote_idx = vec_elt (rmts[0], rmts_itr);
851  if (mi == remote_idx)
852  {
853  vec_del1 (rmts[0], rmts_itr);
854  break;
855  }
856  }
857  }));
858  /* *INDENT-ON* */
859  }
860 
861  /* remove mapping from dictionary */
863  gid_address_free (&m->eid);
864  pool_put_index (lcm->mapping_pool, mi);
865  }
866 
867  return 0;
868 }
869 
870 /**
871  * Add/update/delete mapping to/in/from map-cache.
872  */
873 int
875  u32 * map_index_result)
876 {
877  uword *dp_table = 0;
878  u32 vni;
879  u8 type;
880 
882 
884  {
885  clib_warning ("LISP is disabled!");
886  return VNET_API_ERROR_LISP_DISABLED;
887  }
888 
889  vni = gid_address_vni (&a->eid);
890  type = gid_address_type (&a->eid);
891  if (GID_ADDR_IP_PREFIX == type)
892  dp_table = hash_get (lcm->table_id_by_vni, vni);
893  else if (GID_ADDR_MAC == type)
894  dp_table = hash_get (lcm->bd_id_by_vni, vni);
895 
896  if (!dp_table && GID_ADDR_NSH != type)
897  {
898  clib_warning ("vni %d not associated to a %s!", vni,
899  GID_ADDR_IP_PREFIX == type ? "vrf" : "bd");
900  return VNET_API_ERROR_INVALID_VALUE;
901  }
902 
903  /* store/remove mapping from map-cache */
904  return vnet_lisp_map_cache_add_del (a, map_index_result);
905 }
906 
907 static void
908 add_l2_arp_bd (BVT (clib_bihash_kv) * kvp, void *arg)
909 {
910  u32 **ht = arg;
911  u32 version = (u32) kvp->key[0];
912  if (IP6 == version)
913  return;
914 
915  u32 bd = (u32) (kvp->key[0] >> 32);
916  hash_set (ht[0], bd, 0);
917 }
918 
919 u32 *
921 {
923  u32 *bds = 0;
924 
926  add_l2_arp_bd, &bds);
927  return bds;
928 }
929 
930 static void
931 add_ndp_bd (BVT (clib_bihash_kv) * kvp, void *arg)
932 {
933  u32 **ht = arg;
934  u32 version = (u32) kvp->key[0];
935  if (IP4 == version)
936  return;
937 
938  u32 bd = (u32) (kvp->key[0] >> 32);
939  hash_set (ht[0], bd, 0);
940 }
941 
942 u32 *
944 {
946  u32 *bds = 0;
947 
949  add_ndp_bd, &bds);
950  return bds;
951 }
952 
953 typedef struct
954 {
955  void *vector;
958 
959 static void
960 add_l2_arp_entry (BVT (clib_bihash_kv) * kvp, void *arg)
961 {
963  lisp_api_l2_arp_entry_t **vector = a->vector, e;
964 
965  u32 version = (u32) kvp->key[0];
966  if (IP6 == version)
967  return;
968 
969  u32 bd = (u32) (kvp->key[0] >> 32);
970 
971  if (bd == a->bd)
972  {
973  mac_copy (e.mac, (void *) &kvp->value);
974  e.ip4 = (u32) kvp->key[1];
975  vec_add1 (vector[0], e);
976  }
977 }
978 
981 {
982  lisp_api_l2_arp_entry_t *entries = 0;
985 
986  a.vector = &entries;
987  a.bd = bd;
988 
990  add_l2_arp_entry, &a);
991  return entries;
992 }
993 
994 static void
995 add_ndp_entry (BVT (clib_bihash_kv) * kvp, void *arg)
996 {
998  lisp_api_ndp_entry_t **vector = a->vector, e;
999 
1000  u32 version = (u32) kvp->key[0];
1001  if (IP4 == version)
1002  return;
1003 
1004  u32 bd = (u32) (kvp->key[0] >> 32);
1005 
1006  if (bd == a->bd)
1007  {
1008  mac_copy (e.mac, (void *) &kvp->value);
1009  clib_memcpy (e.ip6, &kvp->key[1], 16);
1010  vec_add1 (vector[0], e);
1011  }
1012 }
1013 
1016 {
1017  lisp_api_ndp_entry_t *entries = 0;
1020 
1021  a.vector = &entries;
1022  a.bd = bd;
1023 
1025  add_ndp_entry, &a);
1026  return entries;
1027 }
1028 
1029 int
1031 {
1032  if (vnet_lisp_enable_disable_status () == 0)
1033  {
1034  clib_warning ("LISP is disabled!");
1035  return VNET_API_ERROR_LISP_DISABLED;
1036  }
1037 
1039  int rc = 0;
1040 
1041  u64 res = gid_dictionary_lookup (&lcm->mapping_index_by_gid, key);
1042  if (is_add)
1043  {
1044  if (res != GID_LOOKUP_MISS_L2)
1045  {
1046  clib_warning ("Entry %U exists in DB!", format_gid_address, key);
1047  return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
1048  }
1049  u64 val = mac_to_u64 (mac);
1051  1 /* is_add */ );
1052  }
1053  else
1054  {
1055  if (res == GID_LOOKUP_MISS_L2)
1056  {
1057  clib_warning ("ONE entry %U not found - cannot delete!",
1058  format_gid_address, key);
1059  return -1;
1060  }
1062  0 /* is_add */ );
1063  }
1064 
1065  return rc;
1066 }
1067 
1068 int
1069 vnet_lisp_eid_table_map (u32 vni, u32 dp_id, u8 is_l2, u8 is_add)
1070 {
1072  uword *dp_idp, *vnip, **dp_table_by_vni, **vni_by_dp_table;
1073 
1074  if (vnet_lisp_enable_disable_status () == 0)
1075  {
1076  clib_warning ("LISP is disabled!");
1077  return VNET_API_ERROR_LISP_DISABLED;
1078  }
1079 
1080  dp_table_by_vni = is_l2 ? &lcm->bd_id_by_vni : &lcm->table_id_by_vni;
1081  vni_by_dp_table = is_l2 ? &lcm->vni_by_bd_id : &lcm->vni_by_table_id;
1082 
1083  if (!is_l2 && (vni == 0 || dp_id == 0))
1084  {
1085  clib_warning ("can't add/del default vni-vrf mapping!");
1086  return -1;
1087  }
1088 
1089  dp_idp = hash_get (dp_table_by_vni[0], vni);
1090  vnip = hash_get (vni_by_dp_table[0], dp_id);
1091 
1092  if (is_add)
1093  {
1094  if (dp_idp || vnip)
1095  {
1096  clib_warning ("vni %d or vrf %d already used in vrf/vni "
1097  "mapping!", vni, dp_id);
1098  return -1;
1099  }
1100  hash_set (dp_table_by_vni[0], vni, dp_id);
1101  hash_set (vni_by_dp_table[0], dp_id, vni);
1102 
1103  /* create dp iface */
1104  dp_add_del_iface (lcm, vni, is_l2, 1);
1105  }
1106  else
1107  {
1108  if (!dp_idp || !vnip)
1109  {
1110  clib_warning ("vni %d or vrf %d not used in any vrf/vni! "
1111  "mapping!", vni, dp_id);
1112  return -1;
1113  }
1114  /* remove dp iface */
1115  dp_add_del_iface (lcm, vni, is_l2, 0);
1116 
1117  hash_unset (dp_table_by_vni[0], vni);
1118  hash_unset (vni_by_dp_table[0], dp_id);
1119  }
1120  return 0;
1121 
1122 }
1123 
1124 /* return 0 if the two locator sets are identical 1 otherwise */
1125 static u8
1126 compare_locators (lisp_cp_main_t * lcm, u32 * old_ls_indexes,
1127  locator_t * new_locators)
1128 {
1129  u32 i, old_li;
1130  locator_t *old_loc, *new_loc;
1131 
1132  if (vec_len (old_ls_indexes) != vec_len (new_locators))
1133  return 1;
1134 
1135  for (i = 0; i < vec_len (new_locators); i++)
1136  {
1137  old_li = vec_elt (old_ls_indexes, i);
1138  old_loc = pool_elt_at_index (lcm->locator_pool, old_li);
1139 
1140  new_loc = vec_elt_at_index (new_locators, i);
1141 
1142  if (locator_cmp (old_loc, new_loc))
1143  return 1;
1144  }
1145  return 0;
1146 }
1147 
1148 typedef struct
1149 {
1151  void *lcm;
1154 
1155 /**
1156  * Callback invoked when a sub-prefix is found
1157  */
1158 static void
1160 {
1161  u8 delete = 0;
1162  remove_mapping_args_t *a = arg;
1163  lisp_cp_main_t *lcm = a->lcm;
1164  mapping_t *m;
1165  locator_set_t *ls;
1166 
1167  m = pool_elt_at_index (lcm->mapping_pool, mi);
1168  if (!m)
1169  return;
1170 
1172 
1173  if (a->is_negative)
1174  {
1175  if (0 != vec_len (ls->locator_indices))
1176  delete = 1;
1177  }
1178  else
1179  {
1180  if (0 == vec_len (ls->locator_indices))
1181  delete = 1;
1182  }
1183 
1184  if (delete)
1185  vec_add1 (a->eids_to_be_deleted, m->eid);
1186 }
1187 
1188 /**
1189  * This function searches map cache and looks for IP prefixes that are subset
1190  * of the provided one. If such prefix is found depending on 'is_negative'
1191  * it does follows:
1192  *
1193  * 1) if is_negative is true and found prefix points to positive mapping,
1194  * then the mapping is removed
1195  * 2) if is_negative is false and found prefix points to negative mapping,
1196  * then the mapping is removed
1197  */
1198 static void
1200  u8 is_negative)
1201 {
1202  gid_address_t *e;
1204 
1205  memset (&a, 0, sizeof (a));
1206 
1207  /* do this only in src/dst mode ... */
1208  if (MR_MODE_SRC_DST != lcm->map_request_mode)
1209  return;
1210 
1211  /* ... and only for IP prefix */
1212  if (GID_ADDR_SRC_DST != gid_address_type (eid)
1214  return;
1215 
1216  a.is_negative = is_negative;
1217  a.lcm = lcm;
1218 
1221 
1223  {
1224  vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
1225 
1226  memset (adj_args, 0, sizeof (adj_args[0]));
1227  gid_address_copy (&adj_args->reid, e);
1228  adj_args->is_add = 0;
1229  if (vnet_lisp_add_del_adjacency (adj_args))
1230  clib_warning ("failed to del adjacency!");
1231 
1233  }
1234 
1236 }
1237 
1238 static void
1240 {
1241  timing_wheel_delete (&lcm->wheel, mi);
1242 }
1243 
1244 static int
1245 is_local_ip (lisp_cp_main_t * lcm, ip_address_t * addr)
1246 {
1247  fib_node_index_t fei;
1248  fib_prefix_t prefix;
1250 
1251  ip_address_to_fib_prefix (addr, &prefix);
1252 
1253  fei = fib_table_lookup (0, &prefix);
1254  flags = fib_entry_get_flags (fei);
1255  return (FIB_ENTRY_FLAG_LOCAL & flags);
1256 }
1257 
1258 /**
1259  * Adds/updates mapping. Does not program forwarding.
1260  *
1261  * @param a parameters of the new mapping
1262  * @param rlocs vector of remote locators
1263  * @param res_map_index index of the newly created mapping
1264  * @param locators_changed indicator if locators were updated in the mapping
1265  * @return return code
1266  */
1267 int
1269  locator_t * rlocs,
1270  u32 * res_map_index, u8 * is_updated)
1271 {
1272  vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1274  u32 mi, ls_index = 0, dst_map_index;
1275  mapping_t *old_map;
1276  locator_t *loc;
1277 
1278  if (vnet_lisp_enable_disable_status () == 0)
1279  {
1280  clib_warning ("LISP is disabled!");
1281  return VNET_API_ERROR_LISP_DISABLED;
1282  }
1283 
1284  if (res_map_index)
1285  res_map_index[0] = ~0;
1286  if (is_updated)
1287  is_updated[0] = 0;
1288 
1289  memset (ls_args, 0, sizeof (ls_args[0]));
1290 
1291  ls_args->locators = rlocs;
1293  old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
1294 
1295  /* check if none of the locators match localy configured address */
1296  vec_foreach (loc, rlocs)
1297  {
1298  ip_prefix_t *p = &gid_address_ippref (&loc->address);
1299  if (is_local_ip (lcm, &ip_prefix_addr (p)))
1300  {
1301  clib_warning ("RLOC %U matches a local address!",
1302  format_gid_address, &loc->address);
1303  return VNET_API_ERROR_LISP_RLOC_LOCAL;
1304  }
1305  }
1306 
1307  /* overwrite: if mapping already exists, decide if locators should be
1308  * updated and be done */
1309  if (old_map && gid_address_cmp (&old_map->eid, &a->eid) == 0)
1310  {
1311  if (!a->is_static && (old_map->is_static || old_map->local))
1312  {
1313  /* do not overwrite local or static remote mappings */
1314  clib_warning ("mapping %U rejected due to collision with local "
1315  "or static remote mapping!", format_gid_address,
1316  &a->eid);
1317  return 0;
1318  }
1319 
1320  locator_set_t *old_ls;
1321 
1322  /* update mapping attributes */
1323  old_map->action = a->action;
1324  if (old_map->action != a->action && NULL != is_updated)
1325  is_updated[0] = 1;
1326 
1327  old_map->authoritative = a->authoritative;
1328  old_map->ttl = a->ttl;
1329 
1330  old_ls = pool_elt_at_index (lcm->locator_set_pool,
1331  old_map->locator_set_index);
1332  if (compare_locators (lcm, old_ls->locator_indices, ls_args->locators))
1333  {
1334  /* set locator-set index to overwrite */
1335  ls_args->is_add = 1;
1336  ls_args->index = old_map->locator_set_index;
1337  vnet_lisp_add_del_locator_set (ls_args, 0);
1338  if (is_updated)
1339  is_updated[0] = 1;
1340  }
1341  if (res_map_index)
1342  res_map_index[0] = mi;
1343  }
1344  /* new mapping */
1345  else
1346  {
1347  if (is_updated)
1348  is_updated[0] = 1;
1349  remove_overlapping_sub_prefixes (lcm, &a->eid, 0 == ls_args->locators);
1350 
1351  ls_args->is_add = 1;
1352  ls_args->index = ~0;
1353 
1354  vnet_lisp_add_del_locator_set (ls_args, &ls_index);
1355 
1356  /* add mapping */
1357  a->is_add = 1;
1358  a->locator_set_index = ls_index;
1359  vnet_lisp_map_cache_add_del (a, &dst_map_index);
1360 
1361  if (res_map_index)
1362  res_map_index[0] = dst_map_index;
1363  }
1364 
1365  /* success */
1366  return 0;
1367 }
1368 
1369 /**
1370  * Removes a mapping. Does not program forwarding.
1371  *
1372  * @param eid end-host indetifier
1373  * @param res_map_index index of the removed mapping
1374  * @return return code
1375  */
1376 int
1377 vnet_lisp_del_mapping (gid_address_t * eid, u32 * res_map_index)
1378 {
1380  vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
1381  vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1382  mapping_t *old_map;
1383  u32 mi;
1384 
1385  memset (ls_args, 0, sizeof (ls_args[0]));
1386  memset (m_args, 0, sizeof (m_args[0]));
1387  if (res_map_index)
1388  res_map_index[0] = ~0;
1389 
1390  mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
1391  old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
1392 
1393  if (old_map == 0 || gid_address_cmp (&old_map->eid, eid) != 0)
1394  {
1395  clib_warning ("cannot delete mapping for eid %U",
1396  format_gid_address, eid);
1397  return -1;
1398  }
1399 
1400  m_args->is_add = 0;
1401  gid_address_copy (&m_args->eid, eid);
1402  m_args->locator_set_index = old_map->locator_set_index;
1403 
1404  /* delete mapping associated from map-cache */
1405  vnet_lisp_map_cache_add_del (m_args, 0);
1406 
1407  ls_args->is_add = 0;
1408  ls_args->index = old_map->locator_set_index;
1409 
1410  /* delete locator set */
1411  vnet_lisp_add_del_locator_set (ls_args, 0);
1412 
1413  /* delete timer associated to the mapping if any */
1414  if (old_map->timer_set)
1415  mapping_delete_timer (lcm, mi);
1416 
1417  /* return old mapping index */
1418  if (res_map_index)
1419  res_map_index[0] = mi;
1420 
1421  /* success */
1422  return 0;
1423 }
1424 
1425 int
1427 {
1428  int rv = 0;
1429  u32 mi, *map_indices = 0, *map_indexp;
1431  vnet_lisp_add_del_mapping_args_t _dm_args, *dm_args = &_dm_args;
1432  vnet_lisp_add_del_locator_set_args_t _ls, *ls = &_ls;
1433 
1434  /* *INDENT-OFF* */
1435  pool_foreach_index (mi, lcm->mapping_pool,
1436  ({
1437  vec_add1 (map_indices, mi);
1438  }));
1439  /* *INDENT-ON* */
1440 
1441  vec_foreach (map_indexp, map_indices)
1442  {
1443  mapping_t *map = pool_elt_at_index (lcm->mapping_pool, map_indexp[0]);
1444  if (!map->local)
1445  {
1446  dp_del_fwd_entry (lcm, map_indexp[0]);
1447 
1448  dm_args->is_add = 0;
1449  gid_address_copy (&dm_args->eid, &map->eid);
1450  dm_args->locator_set_index = map->locator_set_index;
1451 
1452  /* delete mapping associated to fwd entry */
1453  vnet_lisp_map_cache_add_del (dm_args, 0);
1454 
1455  ls->is_add = 0;
1456  ls->local = 0;
1457  ls->index = map->locator_set_index;
1458  /* delete locator set */
1459  rv = vnet_lisp_add_del_locator_set (ls, 0);
1460  if (rv != 0)
1461  goto cleanup;
1462  }
1463  }
1464 
1465 cleanup:
1466  if (map_indices)
1467  vec_free (map_indices);
1468  return rv;
1469 }
1470 
1471 /**
1472  * Adds adjacency or removes forwarding entry associated to remote mapping.
1473  * Note that adjacencies are not stored, they only result in forwarding entries
1474  * being created.
1475  */
1476 int
1478 {
1480  u32 local_mi, remote_mi = ~0;
1481 
1482  if (vnet_lisp_enable_disable_status () == 0)
1483  {
1484  clib_warning ("LISP is disabled!");
1485  return VNET_API_ERROR_LISP_DISABLED;
1486  }
1487 
1489  &a->reid, &a->leid);
1490  if (GID_LOOKUP_MISS == remote_mi)
1491  {
1492  clib_warning ("Remote eid %U not found. Cannot add adjacency!",
1493  format_gid_address, &a->reid);
1494 
1495  return -1;
1496  }
1497 
1498  if (a->is_add)
1499  {
1500  /* check if source eid has an associated mapping. If pitr mode is on,
1501  * just use the pitr's mapping */
1502  if (lcm->lisp_pitr)
1503  local_mi = lcm->pitr_map_index;
1504  else
1505  {
1506  if (gid_address_type (&a->reid) == GID_ADDR_NSH)
1507  {
1508  if (lcm->nsh_map_index == ~0)
1509  local_mi = GID_LOOKUP_MISS;
1510  else
1511  local_mi = lcm->nsh_map_index;
1512  }
1513  else
1514  {
1515  local_mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid,
1516  &a->leid);
1517  }
1518  }
1519 
1520  if (GID_LOOKUP_MISS == local_mi)
1521  {
1522  clib_warning ("Local eid %U not found. Cannot add adjacency!",
1523  format_gid_address, &a->leid);
1524 
1525  return -1;
1526  }
1527 
1528  /* update forwarding */
1529  dp_add_fwd_entry (lcm, local_mi, remote_mi);
1530  }
1531  else
1532  dp_del_fwd_entry (lcm, remote_mi);
1533 
1534  return 0;
1535 }
1536 
1537 int
1539 {
1541 
1542  if (vnet_lisp_enable_disable_status () == 0)
1543  {
1544  clib_warning ("LISP is disabled!");
1545  return VNET_API_ERROR_LISP_DISABLED;
1546  }
1547 
1548  if (mode >= _MR_MODE_MAX)
1549  {
1550  clib_warning ("Invalid LISP map request mode %d!", mode);
1551  return VNET_API_ERROR_INVALID_ARGUMENT;
1552  }
1553 
1554  lcm->map_request_mode = mode;
1555  return 0;
1556 }
1557 
1558 int
1559 vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add)
1560 {
1563  u32 locator_set_index = ~0;
1564  mapping_t *m;
1565  uword *p;
1566 
1567  if (vnet_lisp_enable_disable_status () == 0)
1568  {
1569  clib_warning ("LISP is disabled!");
1570  return VNET_API_ERROR_LISP_DISABLED;
1571  }
1572 
1573  if (is_add)
1574  {
1575  if (lcm->nsh_map_index == (u32) ~ 0)
1576  {
1577  p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
1578  if (!p)
1579  {
1580  clib_warning ("locator-set %v doesn't exist", locator_set_name);
1581  return -1;
1582  }
1583  locator_set_index = p[0];
1584 
1585  pool_get (lcm->mapping_pool, m);
1586  memset (m, 0, sizeof *m);
1587  m->locator_set_index = locator_set_index;
1588  m->local = 1;
1589  m->nsh_set = 1;
1590  lcm->nsh_map_index = m - lcm->mapping_pool;
1591 
1592  if (~0 == vnet_lisp_gpe_add_nsh_iface (lgm))
1593  return -1;
1594  }
1595  }
1596  else
1597  {
1598  if (lcm->nsh_map_index != (u32) ~ 0)
1599  {
1600  /* remove NSH mapping */
1602  lcm->nsh_map_index = ~0;
1604  }
1605  }
1606  return 0;
1607 }
1608 
1609 int
1610 vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add)
1611 {
1613  u32 locator_set_index = ~0;
1614  mapping_t *m;
1615  uword *p;
1616 
1617  if (vnet_lisp_enable_disable_status () == 0)
1618  {
1619  clib_warning ("LISP is disabled!");
1620  return VNET_API_ERROR_LISP_DISABLED;
1621  }
1622 
1623  p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
1624  if (!p)
1625  {
1626  clib_warning ("locator-set %v doesn't exist", locator_set_name);
1627  return -1;
1628  }
1629  locator_set_index = p[0];
1630 
1631  if (is_add)
1632  {
1633  pool_get (lcm->mapping_pool, m);
1634  m->locator_set_index = locator_set_index;
1635  m->local = 1;
1636  m->pitr_set = 1;
1637  lcm->pitr_map_index = m - lcm->mapping_pool;
1638 
1639  /* enable pitr mode */
1640  lcm->lisp_pitr = 1;
1641  }
1642  else
1643  {
1644  /* remove pitr mapping */
1646 
1647  /* disable pitr mode */
1648  lcm->lisp_pitr = 0;
1649  }
1650  return 0;
1651 }
1652 
1653 int
1655 {
1657  if (0 == value)
1658  {
1659  return VNET_API_ERROR_INVALID_ARGUMENT;
1660  }
1661 
1662  lcm->max_expired_map_registers = value;
1663  return 0;
1664 }
1665 
1666 u32
1668 {
1670  return lcm->max_expired_map_registers;
1671 }
1672 
1673 /**
1674  * Configure Proxy-ETR
1675  *
1676  * @param ip PETR's IP address
1677  * @param is_add Flag that indicates if this is an addition or removal
1678  *
1679  * return 0 on success
1680  */
1681 int
1682 vnet_lisp_use_petr (ip_address_t * ip, u8 is_add)
1683 {
1685  u32 ls_index = ~0;
1686  mapping_t *m;
1687  vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1688  locator_t loc;
1689 
1690  if (vnet_lisp_enable_disable_status () == 0)
1691  {
1692  clib_warning ("LISP is disabled!");
1693  return VNET_API_ERROR_LISP_DISABLED;
1694  }
1695 
1696  memset (ls_args, 0, sizeof (*ls_args));
1697 
1698  if (is_add)
1699  {
1700  /* Create dummy petr locator-set */
1701  memset (&loc, 0, sizeof (loc));
1702  gid_address_from_ip (&loc.address, ip);
1703  loc.priority = 1;
1704  loc.state = loc.weight = 1;
1705  loc.local = 0;
1706 
1707  ls_args->is_add = 1;
1708  ls_args->index = ~0;
1709  vec_add1 (ls_args->locators, loc);
1710  vnet_lisp_add_del_locator_set (ls_args, &ls_index);
1711 
1712  /* Add petr mapping */
1713  pool_get (lcm->mapping_pool, m);
1714  m->locator_set_index = ls_index;
1715  lcm->petr_map_index = m - lcm->mapping_pool;
1716 
1717  /* Enable use-petr */
1718  lcm->flags |= LISP_FLAG_USE_PETR;
1719  }
1720  else
1721  {
1723 
1724  /* Remove petr locator */
1725  ls_args->is_add = 0;
1726  ls_args->index = m->locator_set_index;
1727  vnet_lisp_add_del_locator_set (ls_args, 0);
1728 
1729  /* Remove petr mapping */
1731 
1732  /* Disable use-petr */
1733  lcm->flags &= ~LISP_FLAG_USE_PETR;
1734  }
1735  return 0;
1736 }
1737 
1738 /* cleans locator to locator-set data and removes locators not part of
1739  * any locator-set */
1740 static void
1742 {
1743  u32 i, j, *loc_indexp, *ls_indexp, **ls_indexes, *to_be_deleted = 0;
1745  for (i = 0; i < vec_len (ls->locator_indices); i++)
1746  {
1747  loc_indexp = vec_elt_at_index (ls->locator_indices, i);
1748  ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
1749  loc_indexp[0]);
1750  for (j = 0; j < vec_len (ls_indexes[0]); j++)
1751  {
1752  ls_indexp = vec_elt_at_index (ls_indexes[0], j);
1753  if (ls_indexp[0] == lsi)
1754  break;
1755  }
1756 
1757  /* delete index for removed locator-set */
1758  vec_del1 (ls_indexes[0], j);
1759 
1760  /* delete locator if it's part of no locator-set */
1761  if (vec_len (ls_indexes[0]) == 0)
1762  {
1763  pool_put_index (lcm->locator_pool, loc_indexp[0]);
1764  vec_add1 (to_be_deleted, i);
1765  }
1766  }
1767 
1768  if (to_be_deleted)
1769  {
1770  for (i = 0; i < vec_len (to_be_deleted); i++)
1771  {
1772  loc_indexp = vec_elt_at_index (to_be_deleted, i);
1773  vec_del1 (ls->locator_indices, loc_indexp[0]);
1774  }
1775  vec_free (to_be_deleted);
1776  }
1777 }
1778 
1779 static inline uword *
1781 {
1783 
1784  ASSERT (a != NULL);
1785  ASSERT (p != NULL);
1786 
1787  /* find locator-set */
1788  if (a->local)
1789  {
1791  }
1792  else
1793  {
1794  *p = a->index;
1795  }
1796 
1797  return p;
1798 }
1799 
1800 static inline int
1802  locator_t * loc)
1803 {
1804  locator_t *itloc;
1805  u32 *locit;
1806 
1807  ASSERT (ls != NULL);
1808  ASSERT (loc != NULL);
1809 
1810  vec_foreach (locit, ls->locator_indices)
1811  {
1812  itloc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1813  if ((ls->local && itloc->sw_if_index == loc->sw_if_index) ||
1814  (!ls->local && !gid_address_cmp (&itloc->address, &loc->address)))
1815  {
1816  clib_warning ("Duplicate locator");
1817  return VNET_API_ERROR_VALUE_EXIST;
1818  }
1819  }
1820 
1821  return 0;
1822 }
1823 
1824 static void
1826  u32 mapping_index, u8 remove_only)
1827 {
1828  fwd_entry_t *fwd;
1829  mapping_t *map;
1831 
1832  map = pool_elt_at_index (lcm->mapping_pool, mapping_index);
1833 
1834  /* *INDENT-OFF* */
1835  pool_foreach(fwd, lcm->fwd_entry_pool,
1836  ({
1837  if ((is_local && 0 == gid_address_cmp (&map->eid, &fwd->leid)) ||
1838  (!is_local && 0 == gid_address_cmp (&map->eid, &fwd->reid)))
1839  {
1840  a->is_add = 0;
1841  gid_address_copy (&a->leid, &fwd->leid);
1842  gid_address_copy (&a->reid, &fwd->reid);
1843 
1844  vnet_lisp_add_del_adjacency (a);
1845 
1846  if (!remove_only)
1847  {
1848  a->is_add = 1;
1849  vnet_lisp_add_del_adjacency (a);
1850  }
1851  }
1852  }));
1853  /* *INDENT-ON* */
1854 }
1855 
1856 static void
1858  u32 ls_index, u8 remove_only)
1859 {
1860  u32 i, *map_indexp;
1861  u32 **eid_indexes;
1862 
1863  if (vec_len (lcm->locator_set_to_eids) <= ls_index)
1864  return;
1865 
1866  eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, ls_index);
1867 
1868  for (i = 0; i < vec_len (eid_indexes[0]); i++)
1869  {
1870  map_indexp = vec_elt_at_index (eid_indexes[0], i);
1871  update_adjacencies_by_map_index (lcm, is_local, map_indexp[0],
1872  remove_only);
1873  }
1874 }
1875 
1876 static inline void
1878  u32 ls_index, u32 loc_id)
1879 {
1881  u32 **ls_indexes = NULL;
1882 
1883  ASSERT (ls != NULL);
1884  ASSERT (locit != NULL);
1885 
1886  ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, locit[0]);
1887  pool_put_index (lcm->locator_pool, locit[0]);
1888  vec_del1 (ls->locator_indices, loc_id);
1889  vec_del1 (ls_indexes[0], ls_index);
1890 }
1891 
1892 int
1894  locator_set_t * ls, u32 * ls_result)
1895 {
1897  locator_t *loc = NULL, *itloc = NULL;
1898  uword _p = (u32) ~ 0, *p = &_p;
1899  u32 loc_index = ~0, ls_index = ~0, *locit = NULL, **ls_indexes = NULL;
1900  u32 loc_id = ~0;
1901  int ret = 0;
1902 
1903  ASSERT (a != NULL);
1904 
1905  if (vnet_lisp_enable_disable_status () == 0)
1906  {
1907  clib_warning ("LISP is disabled!");
1908  return VNET_API_ERROR_LISP_DISABLED;
1909  }
1910 
1911  p = get_locator_set_index (a, p);
1912  if (!p)
1913  {
1914  clib_warning ("locator-set %v doesn't exist", a->name);
1915  return VNET_API_ERROR_INVALID_ARGUMENT;
1916  }
1917 
1918  if (ls == 0)
1919  {
1920  ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
1921  if (!ls)
1922  {
1923  clib_warning ("locator-set %d to be overwritten doesn't exist!",
1924  p[0]);
1925  return VNET_API_ERROR_INVALID_ARGUMENT;
1926  }
1927  }
1928 
1929  if (a->is_add)
1930  {
1931  if (ls_result)
1932  ls_result[0] = p[0];
1933 
1934  /* allocate locators */
1935  vec_foreach (itloc, a->locators)
1936  {
1937  ret = is_locator_in_locator_set (lcm, ls, itloc);
1938  if (0 != ret)
1939  {
1940  return ret;
1941  }
1942 
1943  pool_get (lcm->locator_pool, loc);
1944  loc[0] = itloc[0];
1945  loc_index = loc - lcm->locator_pool;
1946 
1947  vec_add1 (ls->locator_indices, loc_index);
1948 
1949  vec_validate (lcm->locator_to_locator_sets, loc_index);
1950  ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
1951  loc_index);
1952  vec_add1 (ls_indexes[0], p[0]);
1953  }
1954  }
1955  else
1956  {
1957  ls_index = p[0];
1958  u8 removed;
1959 
1960  vec_foreach (itloc, a->locators)
1961  {
1962  removed = 0;
1963  loc_id = 0;
1964  vec_foreach (locit, ls->locator_indices)
1965  {
1966  loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1967 
1968  if (loc->local && loc->sw_if_index == itloc->sw_if_index)
1969  {
1970  removed = 1;
1971  remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
1972  }
1973  if (0 == loc->local &&
1974  !gid_address_cmp (&loc->address, &itloc->address))
1975  {
1976  removed = 1;
1977  remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
1978  }
1979 
1980  if (removed)
1981  {
1982  /* update fwd entries using this locator in DP */
1983  update_fwd_entries_by_locator_set (lcm, loc->local, ls_index,
1984  vec_len (ls->locator_indices)
1985  == 0);
1986  }
1987 
1988  loc_id++;
1989  }
1990  }
1991  }
1992 
1993  return 0;
1994 }
1995 
1996 int
1998  u32 * ls_result)
1999 {
2001  locator_set_t *ls;
2002  uword _p = (u32) ~ 0, *p = &_p;
2003  u32 ls_index;
2004  u32 **eid_indexes;
2005  int ret = 0;
2006 
2007  if (vnet_lisp_enable_disable_status () == 0)
2008  {
2009  clib_warning ("LISP is disabled!");
2010  return VNET_API_ERROR_LISP_DISABLED;
2011  }
2012 
2013  if (a->is_add)
2014  {
2015  p = get_locator_set_index (a, p);
2016 
2017  /* overwrite */
2018  if (p && p[0] != (u32) ~ 0)
2019  {
2020  ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
2021  if (!ls)
2022  {
2023  clib_warning ("locator-set %d to be overwritten doesn't exist!",
2024  p[0]);
2025  return -1;
2026  }
2027 
2028  /* clean locator to locator-set vectors and remove locators if
2029  * they're not part of another locator-set */
2030  clean_locator_to_locator_set (lcm, p[0]);
2031 
2032  /* remove locator indices from locator set */
2033  vec_free (ls->locator_indices);
2034 
2035  ls_index = p[0];
2036 
2037  if (ls_result)
2038  ls_result[0] = p[0];
2039  }
2040  /* new locator-set */
2041  else
2042  {
2043  pool_get (lcm->locator_set_pool, ls);
2044  memset (ls, 0, sizeof (*ls));
2045  ls_index = ls - lcm->locator_set_pool;
2046 
2047  if (a->local)
2048  {
2049  ls->name = vec_dup (a->name);
2050 
2051  if (!lcm->locator_set_index_by_name)
2053  /* size */
2054  0,
2055  sizeof
2056  (ls->name
2057  [0]),
2058  sizeof
2059  (uword));
2061  ls_index);
2062 
2063  /* mark as local locator-set */
2064  vec_add1 (lcm->local_locator_set_indexes, ls_index);
2065  }
2066  ls->local = a->local;
2067  if (ls_result)
2068  ls_result[0] = ls_index;
2069  }
2070 
2071  ret = vnet_lisp_add_del_locator (a, ls, NULL);
2072  if (0 != ret)
2073  {
2074  return ret;
2075  }
2076  }
2077  else
2078  {
2079  p = get_locator_set_index (a, p);
2080  if (!p)
2081  {
2082  clib_warning ("locator-set %v doesn't exists", a->name);
2083  return -1;
2084  }
2085 
2086  ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
2087  if (!ls)
2088  {
2089  clib_warning ("locator-set with index %d doesn't exists", p[0]);
2090  return -1;
2091  }
2092 
2093  if (lcm->mreq_itr_rlocs == p[0])
2094  {
2095  clib_warning ("Can't delete the locator-set used to constrain "
2096  "the itr-rlocs in map-requests!");
2097  return -1;
2098  }
2099 
2100  if (vec_len (lcm->locator_set_to_eids) != 0)
2101  {
2102  eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, p[0]);
2103  if (vec_len (eid_indexes[0]) != 0)
2104  {
2105  clib_warning
2106  ("Can't delete a locator that supports a mapping!");
2107  return -1;
2108  }
2109  }
2110 
2111  /* clean locator to locator-sets data */
2112  clean_locator_to_locator_set (lcm, p[0]);
2113 
2114  if (ls->local)
2115  {
2116  u32 it, lsi;
2117 
2119  {
2120  lsi = vec_elt (lcm->local_locator_set_indexes, it);
2121  if (lsi == p[0])
2122  {
2124  break;
2125  }
2126  }
2128  }
2129  vec_free (ls->name);
2130  vec_free (ls->locator_indices);
2131  pool_put (lcm->locator_set_pool, ls);
2132  }
2133  return 0;
2134 }
2135 
2136 int
2138 {
2140 
2141  lcm->rloc_probing = is_enable;
2142  return 0;
2143 }
2144 
2145 int
2147 {
2149 
2150  lcm->map_registering = is_enable;
2151  return 0;
2152 }
2153 
2154 clib_error_t *
2156 {
2157  u32 vni, dp_table, **rmts;
2158  clib_error_t *error = 0;
2161 
2162  a->is_en = is_enable;
2163  error = vnet_lisp_gpe_enable_disable (a);
2164  if (error)
2165  {
2166  return clib_error_return (0, "failed to %s data-plane!",
2167  a->is_en ? "enable" : "disable");
2168  }
2169 
2170  if (is_enable)
2171  {
2172  /* enable all l2 and l3 ifaces */
2173 
2174  /* *INDENT-OFF* */
2175  hash_foreach(vni, dp_table, lcm->table_id_by_vni, ({
2176  dp_add_del_iface(lcm, vni, 0, 1);
2177  }));
2178  hash_foreach(vni, dp_table, lcm->bd_id_by_vni, ({
2179  dp_add_del_iface(lcm, vni, /* is_l2 */ 1, 1);
2180  }));
2181  /* *INDENT-ON* */
2182  }
2183  else
2184  {
2185  /* clear interface table */
2187  pool_free (lcm->fwd_entry_pool);
2188  /* Clear state tracking rmt-lcl fwd entries */
2189  /* *INDENT-OFF* */
2191  {
2192  vec_free(rmts[0]);
2193  });
2194  /* *INDENT-ON* */
2197  }
2198 
2199  /* update global flag */
2200  lcm->is_enabled = is_enable;
2201 
2202  return 0;
2203 }
2204 
2205 u8
2207 {
2209  return lcm->is_enabled;
2210 }
2211 
2212 int
2214 {
2216  u32 i;
2217  lisp_msmr_t _mr, *mr = &_mr;
2218 
2219  if (vnet_lisp_enable_disable_status () == 0)
2220  {
2221  clib_warning ("LISP is disabled!");
2222  return VNET_API_ERROR_LISP_DISABLED;
2223  }
2224 
2225  if (a->is_add)
2226  {
2227 
2228  if (get_map_resolver (&a->address))
2229  {
2230  clib_warning ("map-resolver %U already exists!", format_ip_address,
2231  &a->address);
2232  return -1;
2233  }
2234 
2235  memset (mr, 0, sizeof (*mr));
2236  ip_address_copy (&mr->address, &a->address);
2237  vec_add1 (lcm->map_resolvers, *mr);
2238 
2239  if (vec_len (lcm->map_resolvers) == 1)
2240  lcm->do_map_resolver_election = 1;
2241  }
2242  else
2243  {
2244  for (i = 0; i < vec_len (lcm->map_resolvers); i++)
2245  {
2246  mr = vec_elt_at_index (lcm->map_resolvers, i);
2247  if (!ip_address_cmp (&mr->address, &a->address))
2248  {
2249  if (!ip_address_cmp (&mr->address, &lcm->active_map_resolver))
2250  lcm->do_map_resolver_election = 1;
2251 
2252  vec_del1 (lcm->map_resolvers, i);
2253  break;
2254  }
2255  }
2256  }
2257  return 0;
2258 }
2259 
2260 int
2262 {
2264  lcm->map_register_ttl = ttl;
2265  return 0;
2266 }
2267 
2268 u32
2270 {
2272  return lcm->map_register_ttl;
2273 }
2274 
2275 int
2277 {
2279  uword *p = 0;
2280 
2281  if (vnet_lisp_enable_disable_status () == 0)
2282  {
2283  clib_warning ("LISP is disabled!");
2284  return VNET_API_ERROR_LISP_DISABLED;
2285  }
2286 
2287  if (a->is_add)
2288  {
2290  if (!p)
2291  {
2292  clib_warning ("locator-set %v doesn't exist", a->locator_set_name);
2293  return VNET_API_ERROR_INVALID_ARGUMENT;
2294  }
2295 
2296  lcm->mreq_itr_rlocs = p[0];
2297  }
2298  else
2299  {
2300  lcm->mreq_itr_rlocs = ~0;
2301  }
2302 
2303  return 0;
2304 }
2305 
2306 /* Statistics (not really errors) */
2307 #define foreach_lisp_cp_lookup_error \
2308 _(DROP, "drop") \
2309 _(MAP_REQUESTS_SENT, "map-request sent") \
2310 _(ARP_REPLY_TX, "ARP replies sent") \
2311 _(NDP_NEIGHBOR_ADVERTISEMENT_TX, \
2312  "neighbor advertisement sent")
2313 
2315 #define _(sym,string) string,
2317 #undef _
2318 };
2319 
2320 typedef enum
2321 {
2322 #define _(sym,str) LISP_CP_LOOKUP_ERROR_##sym,
2324 #undef _
2327 
2328 typedef enum
2329 {
2334 
2335 typedef struct
2336 {
2338  ip_address_t map_resolver_ip;
2340 
2341 u8 *
2342 format_lisp_cp_lookup_trace (u8 * s, va_list * args)
2343 {
2344  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2345  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
2346  lisp_cp_lookup_trace_t *t = va_arg (*args, lisp_cp_lookup_trace_t *);
2347 
2348  s = format (s, "LISP-CP-LOOKUP: map-resolver: %U destination eid %U",
2350  &t->dst_eid);
2351  return s;
2352 }
2353 
2354 int
2355 get_mr_and_local_iface_ip (lisp_cp_main_t * lcm, ip_address_t * mr_ip,
2356  ip_address_t * sloc)
2357 {
2358  lisp_msmr_t *mrit;
2359  ip_address_t *a;
2360 
2361  if (vec_len (lcm->map_resolvers) == 0)
2362  {
2363  clib_warning ("No map-resolver configured");
2364  return 0;
2365  }
2366 
2367  /* find the first mr ip we have a route to and the ip of the
2368  * iface that has a route to it */
2369  vec_foreach (mrit, lcm->map_resolvers)
2370  {
2371  a = &mrit->address;
2372  if (0 != ip_fib_get_first_egress_ip_for_dst (lcm, a, sloc))
2373  {
2374  ip_address_copy (mr_ip, a);
2375 
2376  /* also update globals */
2377  return 1;
2378  }
2379  }
2380 
2381  clib_warning ("Can't find map-resolver and local interface ip!");
2382  return 0;
2383 }
2384 
2385 static gid_address_t *
2387 {
2388  void *addr;
2389  u32 i;
2390  locator_t *loc;
2391  u32 *loc_indexp;
2392  ip_interface_address_t *ia = 0;
2393  gid_address_t gid_data, *gid = &gid_data;
2394  gid_address_t *rlocs = 0;
2395  ip_prefix_t *ippref = &gid_address_ippref (gid);
2396  ip_address_t *rloc = &ip_prefix_addr (ippref);
2397 
2398  memset (gid, 0, sizeof (gid[0]));
2400  for (i = 0; i < vec_len (loc_set->locator_indices); i++)
2401  {
2402  loc_indexp = vec_elt_at_index (loc_set->locator_indices, i);
2403  loc = pool_elt_at_index (lcm->locator_pool, loc_indexp[0]);
2404 
2405  /* Add ipv4 locators first TODO sort them */
2406 
2407  /* *INDENT-OFF* */
2409  loc->sw_if_index, 1 /* unnumbered */,
2410  ({
2411  addr = ip_interface_address_get_address (&lcm->im4->lookup_main, ia);
2412  ip_address_set (rloc, addr, IP4);
2413  ip_prefix_len (ippref) = 32;
2414  ip_prefix_normalize (ippref);
2415  vec_add1 (rlocs, gid[0]);
2416  }));
2417 
2418  /* Add ipv6 locators */
2420  loc->sw_if_index, 1 /* unnumbered */,
2421  ({
2422  addr = ip_interface_address_get_address (&lcm->im6->lookup_main, ia);
2423  ip_address_set (rloc, addr, IP6);
2424  ip_prefix_len (ippref) = 128;
2425  ip_prefix_normalize (ippref);
2426  vec_add1 (rlocs, gid[0]);
2427  }));
2428  /* *INDENT-ON* */
2429 
2430  }
2431  return rlocs;
2432 }
2433 
2434 static vlib_buffer_t *
2436  ip_address_t * sloc, ip_address_t * rloc,
2437  gid_address_t * itr_rlocs, u64 * nonce_res, u32 * bi_res)
2438 {
2439  vlib_buffer_t *b;
2440  u32 bi;
2441  vlib_main_t *vm = lcm->vlib_main;
2442 
2443  if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2444  {
2445  clib_warning ("Can't allocate buffer for Map-Request!");
2446  return 0;
2447  }
2448 
2449  b = vlib_get_buffer (vm, bi);
2450 
2451  /* leave some space for the encap headers */
2453 
2454  /* put lisp msg */
2455  lisp_msg_put_mreq (lcm, b, NULL, deid, itr_rlocs, 0 /* smr invoked */ ,
2456  1 /* rloc probe */ , nonce_res);
2457 
2458  /* push outer ip header */
2460  rloc, 1);
2461 
2462  bi_res[0] = bi;
2463 
2464  return b;
2465 }
2466 
2467 static vlib_buffer_t *
2469  gid_address_t * seid, gid_address_t * deid,
2470  locator_set_t * loc_set, ip_address_t * mr_ip,
2471  ip_address_t * sloc, u8 is_smr_invoked,
2472  u64 * nonce_res, u32 * bi_res)
2473 {
2474  vlib_buffer_t *b;
2475  u32 bi;
2476  gid_address_t *rlocs = 0;
2477  vlib_main_t *vm = lcm->vlib_main;
2478 
2479  if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2480  {
2481  clib_warning ("Can't allocate buffer for Map-Request!");
2482  return 0;
2483  }
2484 
2485  b = vlib_get_buffer (vm, bi);
2486  b->flags = 0;
2487 
2488  /* leave some space for the encap headers */
2490 
2491  /* get rlocs */
2492  rlocs = build_itr_rloc_list (lcm, loc_set);
2493 
2494  if (MR_MODE_SRC_DST == lcm->map_request_mode
2495  && GID_ADDR_SRC_DST != gid_address_type (deid))
2496  {
2497  gid_address_t sd;
2498  memset (&sd, 0, sizeof (sd));
2499  build_src_dst (&sd, seid, deid);
2500  lisp_msg_put_mreq (lcm, b, seid, &sd, rlocs, is_smr_invoked,
2501  0 /* rloc probe */ , nonce_res);
2502  }
2503  else
2504  {
2505  /* put lisp msg */
2506  lisp_msg_put_mreq (lcm, b, seid, deid, rlocs, is_smr_invoked,
2507  0 /* rloc probe */ , nonce_res);
2508  }
2509 
2510  /* push ecm: udp-ip-lisp */
2512 
2513  /* push outer ip header */
2515  mr_ip, 1);
2516 
2517  bi_res[0] = bi;
2518 
2519  vec_free (rlocs);
2520  return b;
2521 }
2522 
2523 static void
2525 {
2527  r->retries_num = 0;
2528 }
2529 
2530 #define foreach_msmr \
2531  _(server) \
2532  _(resolver)
2533 
2534 #define _(name) \
2535 static int \
2536 elect_map_ ## name (lisp_cp_main_t * lcm) \
2537 { \
2538  lisp_msmr_t *mr; \
2539  vec_foreach (mr, lcm->map_ ## name ## s) \
2540  { \
2541  if (!mr->is_down) \
2542  { \
2543  ip_address_copy (&lcm->active_map_ ##name, &mr->address); \
2544  lcm->do_map_ ## name ## _election = 0; \
2545  return 1; \
2546  } \
2547  } \
2548  return 0; \
2549 }
2551 #undef _
2552  static void
2554 {
2555  mapping_t *map;
2556  vec_foreach (map, maps) vec_free (map->locators);
2557 
2558  vec_free (maps);
2559 }
2560 
2561 static void
2562 add_locators (lisp_cp_main_t * lcm, mapping_t * m, u32 locator_set_index,
2563  ip_address_t * probed_loc)
2564 {
2565  u32 *li;
2566  locator_t *loc, new;
2567  ip_interface_address_t *ia = 0;
2568  void *addr;
2569  ip_address_t *new_ip = &gid_address_ip (&new.address);
2570 
2571  m->locators = 0;
2573  locator_set_index);
2574  vec_foreach (li, ls->locator_indices)
2575  {
2576  loc = pool_elt_at_index (lcm->locator_pool, li[0]);
2577  new = loc[0];
2578  if (loc->local)
2579  {
2580  /* *INDENT-OFF* */
2582  loc->sw_if_index, 1 /* unnumbered */,
2583  ({
2584  addr = ip_interface_address_get_address (&lcm->im4->lookup_main,
2585  ia);
2586  ip_address_set (new_ip, addr, IP4);
2587  }));
2588 
2589  /* Add ipv6 locators */
2591  loc->sw_if_index, 1 /* unnumbered */,
2592  ({
2593  addr = ip_interface_address_get_address (&lcm->im6->lookup_main,
2594  ia);
2595  ip_address_set (new_ip, addr, IP6);
2596  }));
2597  /* *INDENT-ON* */
2598 
2599  if (probed_loc && ip_address_cmp (probed_loc, new_ip) == 0)
2600  new.probed = 1;
2601  }
2602  vec_add1 (m->locators, new);
2603  }
2604 }
2605 
2606 static mapping_t *
2608 {
2609  mapping_t *recs = 0, rec, *m;
2610 
2611  /* *INDENT-OFF* */
2612  pool_foreach(m, lcm->mapping_pool,
2613  {
2614  /* for now build only local mappings */
2615  if (!m->local)
2616  continue;
2617 
2618  rec = m[0];
2619  add_locators (lcm, &rec, m->locator_set_index, NULL);
2620  vec_add1 (recs, rec);
2621  });
2622  /* *INDENT-ON* */
2623 
2624  return recs;
2625 }
2626 
2627 static int
2629  lisp_key_type_t key_id, u8 * key,
2630  u16 auth_data_len, u32 msg_len)
2631 {
2632  MREG_KEY_ID (map_reg_hdr) = clib_host_to_net_u16 (key_id);
2633  MREG_AUTH_DATA_LEN (map_reg_hdr) = clib_host_to_net_u16 (auth_data_len);
2634 
2635  unsigned char *result = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
2636  (unsigned char *) map_reg_hdr, msg_len, NULL,
2637  NULL);
2638  clib_memcpy (MREG_DATA (map_reg_hdr), result, auth_data_len);
2639 
2640  return 0;
2641 }
2642 
2643 static vlib_buffer_t *
2644 build_map_register (lisp_cp_main_t * lcm, ip_address_t * sloc,
2645  ip_address_t * ms_ip, u64 * nonce_res, u8 want_map_notif,
2646  mapping_t * records, lisp_key_type_t key_id, u8 * key,
2647  u32 * bi_res)
2648 {
2649  void *map_reg_hdr;
2650  vlib_buffer_t *b;
2651  u32 bi, auth_data_len = 0, msg_len = 0;
2652  vlib_main_t *vm = lcm->vlib_main;
2653 
2654  if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2655  {
2656  clib_warning ("Can't allocate buffer for Map-Register!");
2657  return 0;
2658  }
2659 
2660  b = vlib_get_buffer (vm, bi);
2661 
2662  /* leave some space for the encap headers */
2664 
2665  auth_data_len = auth_data_len_by_key_id (key_id);
2666  map_reg_hdr = lisp_msg_put_map_register (b, records, want_map_notif,
2667  auth_data_len, nonce_res,
2668  &msg_len);
2669 
2670  update_map_register_auth_data (map_reg_hdr, key_id, key, auth_data_len,
2671  msg_len);
2672 
2673  /* push outer ip header */
2675  ms_ip, 1);
2676 
2677  bi_res[0] = bi;
2678  return b;
2679 }
2680 
2681 #define _(name) \
2682 static int \
2683 get_egress_map_ ##name## _ip (lisp_cp_main_t * lcm, ip_address_t * ip) \
2684 { \
2685  lisp_msmr_t *mr; \
2686  while (lcm->do_map_ ## name ## _election \
2687  | (0 == ip_fib_get_first_egress_ip_for_dst \
2688  (lcm, &lcm->active_map_ ##name, ip))) \
2689  { \
2690  if (0 == elect_map_ ## name (lcm)) \
2691  /* all map resolvers/servers are down */ \
2692  { \
2693  /* restart MR/MS checking by marking all of them up */ \
2694  vec_foreach (mr, lcm->map_ ## name ## s) mr->is_down = 0; \
2695  return -1; \
2696  } \
2697  } \
2698  return 0; \
2699 }
2700 
2702 #undef _
2703 /* CP output statistics */
2704 #define foreach_lisp_cp_output_error \
2705 _(MAP_REGISTERS_SENT, "map-registers sent") \
2706 _(MAP_REQUESTS_SENT, "map-requests sent") \
2707 _(RLOC_PROBES_SENT, "rloc-probes sent")
2709 #define _(sym,string) string,
2711 #undef _
2712 };
2713 
2714 typedef enum
2715 {
2716 #define _(sym,str) LISP_CP_OUTPUT_ERROR_##sym,
2718 #undef _
2721 
2722 static uword
2724  vlib_frame_t * from_frame)
2725 {
2726  return 0;
2727 }
2728 
2729 /* dummy node used only for statistics */
2730 /* *INDENT-OFF* */
2732  .function = lisp_cp_output,
2733  .name = "lisp-cp-output",
2734  .vector_size = sizeof (u32),
2735  .format_trace = format_lisp_cp_input_trace,
2736  .type = VLIB_NODE_TYPE_INTERNAL,
2737 
2738  .n_errors = LISP_CP_OUTPUT_N_ERROR,
2739  .error_strings = lisp_cp_output_error_strings,
2740 
2741  .n_next_nodes = LISP_CP_INPUT_N_NEXT,
2742 
2743  .next_nodes = {
2744  [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
2745  },
2746 };
2747 /* *INDENT-ON* */
2748 
2749 static int
2751  u32 local_locator_set_index, ip_address_t * sloc,
2752  ip_address_t * rloc)
2753 {
2754  locator_set_t *ls;
2755  u32 bi;
2756  vlib_buffer_t *b;
2757  vlib_frame_t *f;
2758  u64 nonce = 0;
2759  u32 next_index, *to_next;
2760  gid_address_t *itr_rlocs;
2761 
2762  ls = pool_elt_at_index (lcm->locator_set_pool, local_locator_set_index);
2763  itr_rlocs = build_itr_rloc_list (lcm, ls);
2764 
2765  b = build_map_request (lcm, deid, sloc, rloc, itr_rlocs, &nonce, &bi);
2766  vec_free (itr_rlocs);
2767  if (!b)
2768  return -1;
2769 
2770  vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2771 
2772  next_index = (ip_addr_version (rloc) == IP4) ?
2773  ip4_lookup_node.index : ip6_lookup_node.index;
2774 
2775  f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
2776 
2777  /* Enqueue the packet */
2778  to_next = vlib_frame_vector_args (f);
2779  to_next[0] = bi;
2780  f->n_vectors = 1;
2781  vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
2782 
2783  return 0;
2784 }
2785 
2786 static int
2788 {
2789  u8 lprio = 0;
2790  mapping_t *lm;
2791  fwd_entry_t *e;
2792  locator_pair_t *lp;
2793  u32 si, rloc_probes_sent = 0;
2794 
2795  /* *INDENT-OFF* */
2796  pool_foreach (e, lcm->fwd_entry_pool,
2797  {
2798  if (vec_len (e->locator_pairs) == 0)
2799  continue;
2800 
2801  si = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &e->leid);
2802  if (~0 == si)
2803  {
2804  clib_warning ("internal error: cannot find local eid %U in "
2805  "map-cache!", format_gid_address, &e->leid);
2806  continue;
2807  }
2808  lm = pool_elt_at_index (lcm->mapping_pool, si);
2809 
2810  /* get the best (lowest) priority */
2811  lprio = e->locator_pairs[0].priority;
2812 
2813  /* send rloc-probe for pair(s) with the best remote locator priority */
2814  vec_foreach (lp, e->locator_pairs)
2815  {
2816  if (lp->priority != lprio)
2817  break;
2818 
2819  /* get first remote locator */
2820  send_rloc_probe (lcm, &e->reid, lm->locator_set_index, &lp->lcl_loc,
2821  &lp->rmt_loc);
2822  rloc_probes_sent++;
2823  }
2824  });
2825  /* *INDENT-ON* */
2826 
2828  LISP_CP_OUTPUT_ERROR_RLOC_PROBES_SENT,
2829  rloc_probes_sent);
2830  return 0;
2831 }
2832 
2833 static int
2834 send_map_register (lisp_cp_main_t * lcm, u8 want_map_notif)
2835 {
2837  u32 bi, map_registers_sent = 0;
2838  vlib_buffer_t *b;
2839  ip_address_t sloc;
2840  vlib_frame_t *f;
2841  u64 nonce = 0;
2842  u32 next_index, *to_next;
2843  mapping_t *records, *r, *group, *k;
2844 
2845  if (get_egress_map_server_ip (lcm, &sloc) < 0)
2846  return -1;
2847 
2848  records = build_map_register_record_list (lcm);
2849  if (!records)
2850  return -1;
2851 
2852  vec_foreach (r, records)
2853  {
2854  u8 *key = r->key;
2855  u8 key_id = r->key_id;
2856 
2857  if (!key)
2858  continue; /* no secret key -> map-register cannot be sent */
2859 
2860  group = 0;
2861  vec_add1 (group, r[0]);
2862 
2863  /* group mappings that share common key */
2864  for (k = r + 1; k < vec_end (records); k++)
2865  {
2866  if (k->key_id != r->key_id)
2867  continue;
2868 
2869  if (vec_is_equal (k->key, r->key))
2870  {
2871  vec_add1 (group, k[0]);
2872  k->key = 0; /* don't process this mapping again */
2873  }
2874  }
2875 
2876  b = build_map_register (lcm, &sloc, &lcm->active_map_server, &nonce,
2877  want_map_notif, group, key_id, key, &bi);
2878  vec_free (group);
2879  if (!b)
2880  continue;
2881 
2882  vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2883 
2884  next_index = (ip_addr_version (&lcm->active_map_server) == IP4) ?
2885  ip4_lookup_node.index : ip6_lookup_node.index;
2886 
2887  f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
2888 
2889  /* Enqueue the packet */
2890  to_next = vlib_frame_vector_args (f);
2891  to_next[0] = bi;
2892  f->n_vectors = 1;
2893  vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
2894  map_registers_sent++;
2895 
2897  memset (pmr, 0, sizeof (*pmr));
2900  pmr - lcm->pending_map_registers_pool);
2901  }
2902  free_map_register_records (records);
2903 
2905  LISP_CP_OUTPUT_ERROR_MAP_REGISTERS_SENT,
2906  map_registers_sent);
2907 
2908  return 0;
2909 }
2910 
2911 #define send_encapsulated_map_request(lcm, seid, deid, smr) \
2912  _send_encapsulated_map_request(lcm, seid, deid, smr, 0)
2913 
2914 #define resend_encapsulated_map_request(lcm, seid, deid, smr) \
2915  _send_encapsulated_map_request(lcm, seid, deid, smr, 1)
2916 
2917 static int
2918 _send_encapsulated_map_request (lisp_cp_main_t * lcm,
2919  gid_address_t * seid, gid_address_t * deid,
2920  u8 is_smr_invoked, u8 is_resend)
2921 {
2922  u32 next_index, bi = 0, *to_next, map_index;
2923  vlib_buffer_t *b;
2924  vlib_frame_t *f;
2925  u64 nonce = 0;
2926  locator_set_t *loc_set;
2927  mapping_t *map;
2928  pending_map_request_t *pmr, *duplicate_pmr = 0;
2929  ip_address_t sloc;
2930  u32 ls_index;
2931 
2932  /* if there is already a pending request remember it */
2933 
2934  /* *INDENT-OFF* */
2936  ({
2937  if (!gid_address_cmp (&pmr->src, seid)
2938  && !gid_address_cmp (&pmr->dst, deid))
2939  {
2940  duplicate_pmr = pmr;
2941  break;
2942  }
2943  }));
2944  /* *INDENT-ON* */
2945 
2946  if (!is_resend && duplicate_pmr)
2947  {
2948  /* don't send the request if there is a pending map request already */
2949  return 0;
2950  }
2951 
2952  /* get locator-set for seid */
2953  if (!lcm->lisp_pitr && gid_address_type (deid) != GID_ADDR_NSH)
2954  {
2955  map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid);
2956  if (map_index == ~0)
2957  {
2958  clib_warning ("No local mapping found in eid-table for %U!",
2959  format_gid_address, seid);
2960  return -1;
2961  }
2962 
2963  map = pool_elt_at_index (lcm->mapping_pool, map_index);
2964 
2965  if (!map->local)
2966  {
2967  clib_warning
2968  ("Mapping found for src eid %U is not marked as local!",
2969  format_gid_address, seid);
2970  return -1;
2971  }
2972  ls_index = map->locator_set_index;
2973  }
2974  else
2975  {
2976  if (lcm->lisp_pitr)
2977  {
2978  map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
2979  ls_index = map->locator_set_index;
2980  }
2981  else
2982  {
2983  if (lcm->nsh_map_index == (u32) ~ 0)
2984  {
2985  clib_warning ("No locator-set defined for NSH!");
2986  return -1;
2987  }
2988  else
2989  {
2990  map = pool_elt_at_index (lcm->mapping_pool, lcm->nsh_map_index);
2991  ls_index = map->locator_set_index;
2992  }
2993  }
2994  }
2995 
2996  /* overwrite locator set if map-request itr-rlocs configured */
2997  if (~0 != lcm->mreq_itr_rlocs)
2998  {
2999  ls_index = lcm->mreq_itr_rlocs;
3000  }
3001 
3002  loc_set = pool_elt_at_index (lcm->locator_set_pool, ls_index);
3003 
3004  if (get_egress_map_resolver_ip (lcm, &sloc) < 0)
3005  {
3006  if (duplicate_pmr)
3007  duplicate_pmr->to_be_removed = 1;
3008  return -1;
3009  }
3010 
3011  /* build the encapsulated map request */
3012  b = build_encapsulated_map_request (lcm, seid, deid, loc_set,
3013  &lcm->active_map_resolver,
3014  &sloc, is_smr_invoked, &nonce, &bi);
3015 
3016  if (!b)
3017  return -1;
3018 
3019  /* set fib index to default and lookup node */
3020  vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
3021  next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
3022  ip4_lookup_node.index : ip6_lookup_node.index;
3023 
3024  f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
3025 
3026  /* Enqueue the packet */
3027  to_next = vlib_frame_vector_args (f);
3028  to_next[0] = bi;
3029  f->n_vectors = 1;
3030  vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
3031 
3033  LISP_CP_OUTPUT_ERROR_MAP_REQUESTS_SENT, 1);
3034 
3035  if (duplicate_pmr)
3036  /* if there is a pending request already update it */
3037  {
3038  if (clib_fifo_elts (duplicate_pmr->nonces) >= PENDING_MREQ_QUEUE_LEN)
3039  {
3040  /* remove the oldest nonce */
3041  u64 CLIB_UNUSED (tmp), *nonce_del;
3042  nonce_del = clib_fifo_head (duplicate_pmr->nonces);
3043  hash_unset (lcm->pending_map_requests_by_nonce, nonce_del[0]);
3044  clib_fifo_sub1 (duplicate_pmr->nonces, tmp);
3045  }
3046 
3047  clib_fifo_add1 (duplicate_pmr->nonces, nonce);
3048  hash_set (lcm->pending_map_requests_by_nonce, nonce,
3049  duplicate_pmr - lcm->pending_map_requests_pool);
3050  }
3051  else
3052  {
3053  /* add map-request to pending requests table */
3054  pool_get (lcm->pending_map_requests_pool, pmr);
3055  memset (pmr, 0, sizeof (*pmr));
3056  gid_address_copy (&pmr->src, seid);
3057  gid_address_copy (&pmr->dst, deid);
3058  clib_fifo_add1 (pmr->nonces, nonce);
3059  pmr->is_smr_invoked = is_smr_invoked;
3061  hash_set (lcm->pending_map_requests_by_nonce, nonce,
3062  pmr - lcm->pending_map_requests_pool);
3063  }
3064 
3065  return 0;
3066 }
3067 
3068 static void
3069 get_src_and_dst_ip (void *hdr, ip_address_t * src, ip_address_t * dst)
3070 {
3071  ip4_header_t *ip4 = hdr;
3072  ip6_header_t *ip6;
3073 
3074  if ((ip4->ip_version_and_header_length & 0xF0) == 0x40)
3075  {
3076  ip_address_set (src, &ip4->src_address, IP4);
3077  ip_address_set (dst, &ip4->dst_address, IP4);
3078  }
3079  else
3080  {
3081  ip6 = hdr;
3082  ip_address_set (src, &ip6->src_address, IP6);
3083  ip_address_set (dst, &ip6->dst_address, IP6);
3084  }
3085 }
3086 
3087 static u32
3089  u8 version)
3090 {
3091  uword *vnip;
3092  u32 vni = ~0, table_id = ~0;
3093 
3094  table_id = fib_table_get_table_id_for_sw_if_index ((version ==
3095  IP4 ? FIB_PROTOCOL_IP4 :
3097  vnet_buffer
3098  (b)->sw_if_index
3099  [VLIB_RX]);
3100 
3101  vnip = hash_get (lcm->vni_by_table_id, table_id);
3102  if (vnip)
3103  vni = vnip[0];
3104  else
3105  clib_warning ("vrf %d is not mapped to any vni!", table_id);
3106 
3107  return vni;
3108 }
3109 
3112 {
3113  u32 sw_if_index0;
3114 
3115  l2input_main_t *l2im = &l2input_main;
3116  l2_input_config_t *config;
3117  l2_bridge_domain_t *bd_config;
3118 
3119  sw_if_index0 = vnet_buffer (b)->sw_if_index[VLIB_RX];
3120  config = vec_elt_at_index (l2im->configs, sw_if_index0);
3121  bd_config = vec_elt_at_index (l2im->bd_configs, config->bd_index);
3122 
3123  return bd_config->bd_id;
3124 }
3125 
3128 {
3129  uword *vnip;
3130  u32 vni = ~0;
3132 
3133  vnip = hash_get (lcm->vni_by_bd_id, bd);
3134  if (vnip)
3135  vni = vnip[0];
3136  else
3137  clib_warning ("bridge domain %d is not mapped to any vni!", bd);
3138 
3139  return vni;
3140 }
3141 
3142 void
3144  gid_address_t * src, gid_address_t * dst,
3145  u16 type)
3146 {
3147  ethernet_header_t *eh;
3148  u32 vni = 0;
3149  icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
3150 
3151  memset (src, 0, sizeof (*src));
3152  memset (dst, 0, sizeof (*dst));
3153 
3156 
3157  if (LISP_AFI_IP == type || LISP_AFI_IP6 == type)
3158  {
3159  ip4_header_t *ip;
3160  u8 version, preflen;
3161 
3164 
3165  ip = vlib_buffer_get_current (b);
3166  get_src_and_dst_ip (ip, &gid_address_ip (src), &gid_address_ip (dst));
3167 
3168  version = gid_address_ip_version (src);
3169  preflen = ip_address_max_len (version);
3170  gid_address_ippref_len (src) = preflen;
3171  gid_address_ippref_len (dst) = preflen;
3172 
3173  vni = lisp_get_vni_from_buffer_ip (lcm, b, version);
3174  gid_address_vni (dst) = vni;
3175  gid_address_vni (src) = vni;
3176  }
3177  else if (LISP_AFI_MAC == type)
3178  {
3180 
3181  eh = vlib_buffer_get_current (b);
3182 
3183  if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_ARP)
3184  {
3185  ah = (ethernet_arp_header_t *) (((u8 *) eh) + sizeof (*eh));
3186  if (clib_net_to_host_u16 (ah->opcode)
3187  != ETHERNET_ARP_OPCODE_request)
3188  return;
3189 
3193  &ah->ip4_over_ethernet[1].ip4, 4);
3194  }
3195  else
3196  {
3197  if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_IP6)
3198  {
3199  ip6_header_t *ip;
3200  ip = (ip6_header_t *) (eh + 1);
3201 
3202  if (IP_PROTOCOL_ICMP6 == ip->protocol)
3203  {
3204  icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
3205  ndh = ip6_next_header (ip);
3206  if (ndh->icmp.type == ICMP6_neighbor_solicitation)
3207  {
3208  opt = (void *) (ndh + 1);
3209  if ((opt->header.type !=
3210  ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address)
3211  || (opt->header.n_data_u64s != 1))
3212  return; /* source link layer address option not present */
3213 
3215  gid_address_ndp_bd (dst) =
3218  &ndh->target_address, IP6);
3219  return;
3220  }
3221  }
3222  }
3223 
3226  mac_copy (&gid_address_mac (src), eh->src_address);
3227  mac_copy (&gid_address_mac (dst), eh->dst_address);
3228 
3229  /* get vni */
3230  vni = lisp_get_vni_from_buffer_eth (lcm, b);
3231 
3232  gid_address_vni (dst) = vni;
3233  gid_address_vni (src) = vni;
3234  }
3235  }
3236  else if (LISP_AFI_LCAF == type)
3237  {
3238  lisp_nsh_hdr_t *nh;
3239  eh = vlib_buffer_get_current (b);
3240 
3241  if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_NSH)
3242  {
3243  nh = (lisp_nsh_hdr_t *) (((u8 *) eh) + sizeof (*eh));
3244  u32 spi = clib_net_to_host_u32 (nh->spi_si << 8);
3245  u8 si = (u8) clib_net_to_host_u32 (nh->spi_si);
3246  gid_address_nsh_spi (dst) = spi;
3247  gid_address_nsh_si (dst) = si;
3248 
3251  }
3252  }
3253 }
3254 
3255 static uword
3257  vlib_node_runtime_t * node,
3258  vlib_frame_t * from_frame, int overlay)
3259 {
3260  icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
3261  u32 *from, *to_next, di, si;
3263  u32 next_index;
3264  uword n_left_from, n_left_to_next;
3265  vnet_main_t *vnm = vnet_get_main ();
3266 
3267  from = vlib_frame_vector_args (from_frame);
3268  n_left_from = from_frame->n_vectors;
3269  next_index = node->cached_next_index;
3270 
3271  while (n_left_from > 0)
3272  {
3273  vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
3274 
3275  while (n_left_from > 0 && n_left_to_next > 0)
3276  {
3277  u32 pi0, sw_if_index0, next0;
3278  u64 mac0;
3279  vlib_buffer_t *b0;
3280  gid_address_t src, dst;
3281  ethernet_arp_header_t *arp0;
3282  ethernet_header_t *eth0;
3283  vnet_hw_interface_t *hw_if0;
3284  ethernet_header_t *eh0;
3285  icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
3286  ip6_header_t *ip0;
3287 
3288  pi0 = from[0];
3289  from += 1;
3290  n_left_from -= 1;
3291  to_next[0] = pi0;
3292  to_next += 1;
3293  n_left_to_next -= 1;
3294 
3295  b0 = vlib_get_buffer (vm, pi0);
3296 
3297  /* src/dst eid pair */
3298  get_src_and_dst_eids_from_buffer (lcm, b0, &src, &dst, overlay);
3299 
3300  if (gid_address_type (&dst) == GID_ADDR_ARP)
3301  {
3302  mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
3303  if (GID_LOOKUP_MISS_L2 == mac0)
3304  goto drop;
3305 
3306  /* send ARP reply */
3307  sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3308  vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
3309 
3310  hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
3311 
3312  eth0 = vlib_buffer_get_current (b0);
3313  arp0 = (ethernet_arp_header_t *) (((u8 *) eth0)
3314  + sizeof (*eth0));
3315  arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
3316  arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
3317  clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
3318  (u8 *) & mac0, 6);
3319  clib_memcpy (&arp0->ip4_over_ethernet[0].ip4,
3320  &gid_address_arp_ip4 (&dst), 4);
3321 
3322  /* Hardware must be ethernet-like. */
3323  ASSERT (vec_len (hw_if0->hw_address) == 6);
3324 
3325  clib_memcpy (eth0->dst_address, eth0->src_address, 6);
3326  clib_memcpy (eth0->src_address, hw_if0->hw_address, 6);
3327 
3328  b0->error = node->errors[LISP_CP_LOOKUP_ERROR_ARP_REPLY_TX];
3330  goto enqueue;
3331  }
3332  else if (gid_address_type (&dst) == GID_ADDR_NDP)
3333  {
3334  mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
3335  if (GID_LOOKUP_MISS_L2 == mac0)
3336  goto drop;
3337 
3338  sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3339  vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
3340 
3341  eh0 = vlib_buffer_get_current (b0);
3342  ip0 = (ip6_header_t *) (eh0 + 1);
3343  ndh = ip6_next_header (ip0);
3344  int bogus_length;
3345  ip0->dst_address = ip0->src_address;
3346  ip0->src_address = ndh->target_address;
3347  ip0->hop_limit = 255;
3348  opt = (void *) (ndh + 1);
3349  opt->header.type =
3350  ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
3351  clib_memcpy (opt->ethernet_address, (u8 *) & mac0, 6);
3352  ndh->icmp.type = ICMP6_neighbor_advertisement;
3353  ndh->advertisement_flags = clib_host_to_net_u32
3356  ndh->icmp.checksum = 0;
3357  ndh->icmp.checksum =
3358  ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
3359  &bogus_length);
3360  clib_memcpy (eh0->dst_address, eh0->src_address, 6);
3361  clib_memcpy (eh0->src_address, (u8 *) & mac0, 6);
3362  b0->error =
3363  node->errors
3364  [LISP_CP_LOOKUP_ERROR_NDP_NEIGHBOR_ADVERTISEMENT_TX];
3366  goto enqueue;
3367  }
3368 
3369  /* if we have remote mapping for destination already in map-chache
3370  add forwarding tunnel directly. If not send a map-request */
3372  &src);
3373  if (~0 != di)
3374  {
3375  mapping_t *m = vec_elt_at_index (lcm->mapping_pool, di);
3376  /* send a map-request also in case of negative mapping entry
3377  with corresponding action */
3378  if (m->action == LISP_SEND_MAP_REQUEST)
3379  {
3380  /* send map-request */
3381  queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
3382  0 /* is_resend */ );
3383  }
3384  else
3385  {
3386  if (GID_ADDR_NSH != gid_address_type (&dst))
3387  {
3389  &src);
3390  }
3391  else
3392  si = lcm->nsh_map_index;
3393 
3394  if (~0 != si)
3395  {
3396  dp_add_fwd_entry_from_mt (si, di);
3397  }
3398  }
3399  }
3400  else
3401  {
3402  /* send map-request */
3403  queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
3404  0 /* is_resend */ );
3405  }
3406 
3407  drop:
3408  b0->error = node->errors[LISP_CP_LOOKUP_ERROR_DROP];
3409  next0 = LISP_CP_LOOKUP_NEXT_DROP;
3410  enqueue:
3412  {
3413  lisp_cp_lookup_trace_t *tr = vlib_add_trace (vm, node, b0,
3414  sizeof (*tr));
3415 
3416  memset (tr, 0, sizeof (*tr));
3417  gid_address_copy (&tr->dst_eid, &dst);
3419  &lcm->active_map_resolver);
3420  }
3421  gid_address_free (&dst);
3422  gid_address_free (&src);
3423  vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
3424  to_next,
3425  n_left_to_next, pi0, next0);
3426  }
3427 
3428  vlib_put_next_frame (vm, node, next_index, n_left_to_next);
3429  }
3430  return from_frame->n_vectors;
3431 }
3432 
3433 static uword
3435  vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3436 {
3437  return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP));
3438 }
3439 
3440 static uword
3442  vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3443 {
3444  return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP6));
3445 }
3446 
3447 static uword
3449  vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3450 {
3451  return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_MAC));
3452 }
3453 
3454 static uword
3456  vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3457 {
3458  /* TODO decide if NSH should be propagated as LCAF or not */
3459  return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_LCAF));
3460 }
3461 
3462 /* *INDENT-OFF* */
3464  .function = lisp_cp_lookup_ip4,
3465  .name = "lisp-cp-lookup-ip4",
3466  .vector_size = sizeof (u32),
3467  .format_trace = format_lisp_cp_lookup_trace,
3468  .type = VLIB_NODE_TYPE_INTERNAL,
3469 
3470  .n_errors = LISP_CP_LOOKUP_N_ERROR,
3471  .error_strings = lisp_cp_lookup_error_strings,
3472 
3473  .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3474 
3475  .next_nodes = {
3476  [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
3477  [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
3478  },
3479 };
3480 /* *INDENT-ON* */
3481 
3482 /* *INDENT-OFF* */
3484  .function = lisp_cp_lookup_ip6,
3485  .name = "lisp-cp-lookup-ip6",
3486  .vector_size = sizeof (u32),
3487  .format_trace = format_lisp_cp_lookup_trace,
3488  .type = VLIB_NODE_TYPE_INTERNAL,
3489 
3490  .n_errors = LISP_CP_LOOKUP_N_ERROR,
3491  .error_strings = lisp_cp_lookup_error_strings,
3492 
3493  .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3494 
3495  .next_nodes = {
3496  [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
3497  [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
3498  },
3499 };
3500 /* *INDENT-ON* */
3501 
3502 /* *INDENT-OFF* */
3504  .function = lisp_cp_lookup_l2,
3505  .name = "lisp-cp-lookup-l2",
3506  .vector_size = sizeof (u32),
3507  .format_trace = format_lisp_cp_lookup_trace,
3508  .type = VLIB_NODE_TYPE_INTERNAL,
3509 
3510  .n_errors = LISP_CP_LOOKUP_N_ERROR,
3511  .error_strings = lisp_cp_lookup_error_strings,
3512 
3513  .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3514 
3515  .next_nodes = {
3516  [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
3517  [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
3518  },
3519 };
3520 /* *INDENT-ON* */
3521 
3522 /* *INDENT-OFF* */
3524  .function = lisp_cp_lookup_nsh,
3525  .name = "lisp-cp-lookup-nsh",
3526  .vector_size = sizeof (u32),
3527  .format_trace = format_lisp_cp_lookup_trace,
3528  .type = VLIB_NODE_TYPE_INTERNAL,
3529 
3530  .n_errors = LISP_CP_LOOKUP_N_ERROR,
3531  .error_strings = lisp_cp_lookup_error_strings,
3532 
3533  .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3534 
3535  .next_nodes = {
3536  [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
3537  [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
3538  },
3539 };
3540 /* *INDENT-ON* */
3541 
3542 /* lisp_cp_input statistics */
3543 #define foreach_lisp_cp_input_error \
3544 _(DROP, "drop") \
3545 _(RLOC_PROBE_REQ_RECEIVED, "rloc-probe requests received") \
3546 _(RLOC_PROBE_REP_RECEIVED, "rloc-probe replies received") \
3547 _(MAP_NOTIFIES_RECEIVED, "map-notifies received") \
3548 _(MAP_REPLIES_RECEIVED, "map-replies received")
3549 
3551 #define _(sym,string) string,
3553 #undef _
3554 };
3555 
3556 typedef enum
3557 {
3558 #define _(sym,str) LISP_CP_INPUT_ERROR_##sym,
3560 #undef _
3563 
3564 typedef struct
3565 {
3569 
3570 u8 *
3571 format_lisp_cp_input_trace (u8 * s, va_list * args)
3572 {
3573  CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
3574  CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
3576  va_arg (*args, lisp_cp_input_trace_t *);
3577 
3578  s = format (s, "LISP-CP-INPUT: TODO");
3579  return s;
3580 }
3581 
3582 static void
3584 {
3585  mapping_t *m;
3586  vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
3587  memset (adj_args, 0, sizeof (adj_args[0]));
3588 
3589  m = pool_elt_at_index (lcm->mapping_pool, mi);
3590 
3591  gid_address_copy (&adj_args->reid, &m->eid);
3592  adj_args->is_add = 0;
3593  if (vnet_lisp_add_del_adjacency (adj_args))
3594  clib_warning ("failed to del adjacency!");
3595 
3597  mapping_delete_timer (lcm, mi);
3598 }
3599 
3600 static void
3602  f64 expiration_time)
3603 {
3604  mapping_t *m;
3605  u64 now = clib_cpu_time_now ();
3606  u64 cpu_cps = lcm->vlib_main->clib_time.clocks_per_second;
3607  u64 exp_clock_time = now + expiration_time * cpu_cps;
3608 
3609  m = pool_elt_at_index (lcm->mapping_pool, mi);
3610 
3611  m->timer_set = 1;
3612  timing_wheel_insert (&lcm->wheel, exp_clock_time, mi);
3613 }
3614 
3615 static void
3617 {
3618  int rv;
3620  mapping_t *m = pool_elt_at_index (lcm->mapping_pool, mi);
3621  uword *fei;
3622  fwd_entry_t *fe;
3623  vlib_counter_t c;
3624  u8 have_stats = 0;
3625 
3626  if (m->delete_after_expiration)
3627  {
3628  remove_expired_mapping (lcm, mi);
3629  return;
3630  }
3631 
3632  fei = hash_get (lcm->fwd_entry_by_mapping_index, mi);
3633  if (!fei)
3634  return;
3635 
3636  fe = pool_elt_at_index (lcm->fwd_entry_pool, fei[0]);
3637 
3638  memset (a, 0, sizeof (*a));
3639  a->rmt_eid = fe->reid;
3640  if (fe->is_src_dst)
3641  a->lcl_eid = fe->leid;
3642  a->vni = gid_address_vni (&fe->reid);
3643 
3644  rv = vnet_lisp_gpe_get_fwd_stats (a, &c);
3645  if (0 == rv)
3646  have_stats = 1;
3647 
3648  if (m->almost_expired)
3649  {
3650  m->almost_expired = 0; /* reset flag */
3651  if (have_stats)
3652  {
3653  if (m->packets != c.packets)
3654  {
3655  /* mapping is in use, re-fetch */
3656  map_request_args_t mr_args;
3657  memset (&mr_args, 0, sizeof (mr_args));
3658  mr_args.seid = fe->leid;
3659  mr_args.deid = fe->reid;
3660 
3661  send_map_request_thread_fn (&mr_args);
3662  }
3663  else
3664  remove_expired_mapping (lcm, mi);
3665  }
3666  else
3667  remove_expired_mapping (lcm, mi);
3668  }
3669  else
3670  {
3671  m->almost_expired = 1;
3673 
3674  if (have_stats)
3675  /* save counter */
3676  m->packets = c.packets;
3677  else
3678  m->delete_after_expiration = 1;
3679  }
3680 }
3681 
3682 static void
3684 {
3686  mapping_t *m;
3687  vec_foreach (m, a->mappings)
3688  {
3689  vec_free (m->locators);
3690  gid_address_free (&m->eid);
3691  }
3693 }
3694 
3695 void *
3697 {
3698  mapping_t *m;
3700  u32 dst_map_index = 0;
3701  pending_map_request_t *pmr;
3702  u64 *noncep;
3703  uword *pmr_index;
3704  u8 is_changed = 0;
3705 
3706  if (a->is_rloc_probe)
3707  goto done;
3708 
3709  /* Check pending requests table and nonce */
3710  pmr_index = hash_get (lcm->pending_map_requests_by_nonce, a->nonce);
3711  if (!pmr_index)
3712  {
3713  clib_warning ("No pending map-request entry with nonce %lu!", a->nonce);
3714  goto done;
3715  }
3716  pmr = pool_elt_at_index (lcm->pending_map_requests_pool, pmr_index[0]);
3717 
3718  vec_foreach (m, a->mappings)
3719  {
3720  vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
3721  memset (m_args, 0, sizeof (m_args[0]));
3722  gid_address_copy (&m_args->eid, &m->eid);
3723  m_args->action = m->action;
3724  m_args->authoritative = m->authoritative;
3725  m_args->ttl = m->ttl;
3726  m_args->is_static = 0;
3727 
3728  /* insert/update mappings cache */
3729  vnet_lisp_add_mapping (m_args, m->locators, &dst_map_index, &is_changed);
3730 
3731  if (dst_map_index == (u32) ~ 0)
3732  continue;
3733 
3734  if (is_changed)
3735  {
3736  /* try to program forwarding only if mapping saved or updated */
3737  vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
3738  memset (adj_args, 0, sizeof (adj_args[0]));
3739 
3740  gid_address_copy (&adj_args->leid, &pmr->src);
3741  gid_address_copy (&adj_args->reid, &m->eid);
3742  adj_args->is_add = 1;
3743 
3744  if (vnet_lisp_add_del_adjacency (adj_args))
3745  clib_warning ("failed to add adjacency!");
3746  }
3747 
3748  if ((u32) ~ 0 != m->ttl)
3749  mapping_start_expiration_timer (lcm, dst_map_index,
3750  (m->ttl == 0) ? 0 : MAPPING_TIMEOUT);
3751  }
3752 
3753  /* remove pending map request entry */
3754 
3755  /* *INDENT-OFF* */
3756  clib_fifo_foreach (noncep, pmr->nonces, ({
3757  hash_unset(lcm->pending_map_requests_by_nonce, noncep[0]);
3758  }));
3759  /* *INDENT-ON* */
3760 
3761  clib_fifo_free (pmr->nonces);
3762  pool_put (lcm->pending_map_requests_pool, pmr);
3763 
3764 done:
3765  a->is_free = 1;
3766  return 0;
3767 }
3768 
3769 static int
3771  lisp_key_type_t key_id, u8 * key)
3772 {
3773  u8 *auth_data = 0;
3774  u16 auth_data_len;
3775  int result;
3776 
3777  auth_data_len = auth_data_len_by_key_id (key_id);
3778  if ((u16) ~ 0 == auth_data_len)
3779  {
3780  clib_warning ("invalid length for key_id %d!", key_id);
3781  return 0;
3782  }
3783 
3784  /* save auth data */
3785  vec_validate (auth_data, auth_data_len - 1);
3786  clib_memcpy (auth_data, MNOTIFY_DATA (h), auth_data_len);
3787 
3788  /* clear auth data */
3789  memset (MNOTIFY_DATA (h), 0, auth_data_len);
3790 
3791  /* get hash of the message */
3792  unsigned char *code = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
3793  (unsigned char *) h, msg_len, NULL, NULL);
3794 
3795  result = memcmp (code, auth_data, auth_data_len);
3796 
3797  vec_free (auth_data);
3798 
3799  return !result;
3800 }
3801 
3802 static void
3804 {
3806  uword *pmr_index;
3807 
3808  pmr_index = hash_get (lcm->map_register_messages_by_nonce, a->nonce);
3809  if (!pmr_index)
3810  {
3811  clib_warning ("No pending map-register entry with nonce %lu!",
3812  a->nonce);
3813  return;
3814  }
3815 
3816  a->is_free = 1;
3817  pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]);
3819 
3820  /* reset map-notify counter */
3821  lcm->expired_map_registers = 0;
3822 }
3823 
3824 static mapping_t *
3826 {
3827  u32 mi;
3828 
3830  if (~0 == mi)
3831  {
3832  clib_warning ("eid %U not found in map-cache!", unformat_gid_address,
3833  e);
3834  return 0;
3835  }
3836  return pool_elt_at_index (lcm->mapping_pool, mi);
3837 }
3838 
3839 /**
3840  * When map-notify is received it is necessary that all EIDs in the record
3841  * list share common key. The key is then used to verify authentication
3842  * data in map-notify message.
3843  */
3844 static int
3846  u32 key_id, u8 ** key_out)
3847 {
3848  u32 i, len = vec_len (maps);
3849  mapping_t *m;
3850 
3851  /* get key of the first mapping */
3852  m = get_mapping (lcm, &maps[0].eid);
3853  if (!m || !m->key)
3854  return -1;
3855 
3856  key_out[0] = m->key;
3857 
3858  for (i = 1; i < len; i++)
3859  {
3860  m = get_mapping (lcm, &maps[i].eid);
3861  if (!m || !m->key)
3862  return -1;
3863 
3864  if (key_id != m->key_id || vec_cmp (m->key, key_out[0]))
3865  {
3866  clib_warning ("keys does not match! %v, %v", key_out[0], m->key);
3867  return -1;
3868  }
3869  }
3870  return 0;
3871 }
3872 
3873 static int
3875 {
3876  locator_t *locators = 0;
3877  u32 i, len;
3878  gid_address_t deid;
3879  mapping_t m;
3880  locator_t *loc;
3881 
3882  memset (&m, 0, sizeof (m));
3883 
3884  /* parse record eid */
3885  for (i = 0; i < count; i++)
3886  {
3887  locators = 0;
3888  len = lisp_msg_parse_mapping_record (b, &deid, &locators, NULL);
3889  if (len == ~0)
3890  {
3891  clib_warning ("Failed to parse mapping record!");
3892  vec_foreach (loc, locators) locator_free (loc);
3893  vec_free (locators);
3894  return -1;
3895  }
3896 
3897  m.locators = locators;
3898  gid_address_copy (&m.eid, &deid);
3899  vec_add1 (a->mappings, m);
3900  }
3901 
3902  return 0;
3903 }
3904 
3905 static map_records_arg_t *
3907 {
3909  map_records_arg_t *rec;
3910 
3911  /* Cleanup first */
3912  /* *INDENT-OFF* */
3914  if (rec->is_free)
3915  map_records_arg_free (rec);
3916  }));
3917  /* *INDENT-ON* */
3918 
3920  return rec;
3921 }
3922 
3923 static map_records_arg_t *
3925 {
3926  int rc = 0;
3927  map_notify_hdr_t *mnotif_hdr;
3928  lisp_key_type_t key_id;
3930  u8 *key = 0;
3931  gid_address_t deid;
3932  u16 auth_data_len = 0;
3933  u8 record_count;
3935 
3936  a = map_record_args_get ();
3937  memset (a, 0, sizeof (*a));
3938  mnotif_hdr = vlib_buffer_get_current (b);
3939  vlib_buffer_pull (b, sizeof (*mnotif_hdr));
3940  memset (&deid, 0, sizeof (deid));
3941 
3942  a->nonce = MNOTIFY_NONCE (mnotif_hdr);
3943  key_id = clib_net_to_host_u16 (MNOTIFY_KEY_ID (mnotif_hdr));
3944  auth_data_len = auth_data_len_by_key_id (key_id);
3945 
3946  /* advance buffer by authentication data */
3947  vlib_buffer_pull (b, auth_data_len);
3948 
3949  record_count = MNOTIFY_REC_COUNT (mnotif_hdr);
3950  rc = parse_map_records (b, a, record_count);
3951  if (rc != 0)
3952  {
3954  return 0;
3955  }
3956 
3957  rc = map_record_integrity_check (lcm, a->mappings, key_id, &key);
3958  if (rc != 0)
3959  {
3961  return 0;
3962  }
3963 
3964  /* verify authentication data */
3965  if (!is_auth_data_valid (mnotif_hdr, vlib_buffer_get_tail (b)
3966  - (u8 *) mnotif_hdr, key_id, key))
3967  {
3968  clib_warning ("Map-notify auth data verification failed for nonce "
3969  "0x%lx!", a->nonce);
3971  return 0;
3972  }
3973  return a;
3974 }
3975 
3976 static vlib_buffer_t *
3977 build_map_reply (lisp_cp_main_t * lcm, ip_address_t * sloc,
3978  ip_address_t * dst, u64 nonce, u8 probe_bit,
3979  mapping_t * records, u16 dst_port, u32 * bi_res)
3980 {
3981  vlib_buffer_t *b;
3982  u32 bi;
3983  vlib_main_t *vm = lcm->vlib_main;
3984 
3985  if (vlib_buffer_alloc (vm, &bi, 1) != 1)
3986  {
3987  clib_warning ("Can't allocate buffer for Map-Register!");
3988  return 0;
3989  }
3990 
3991  b = vlib_get_buffer (vm, bi);
3992 
3993  /* leave some space for the encap headers */
3995 
3996  lisp_msg_put_map_reply (b, records, nonce, probe_bit);
3997 
3998  /* push outer ip header */
3999  pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, dst_port, sloc, dst, 1);
4000 
4001  bi_res[0] = bi;
4002  return b;
4003 }
4004 
4005 static int
4006 send_map_reply (lisp_cp_main_t * lcm, u32 mi, ip_address_t * dst,
4007  u8 probe_bit, u64 nonce, u16 dst_port,
4008  ip_address_t * probed_loc)
4009 {
4010  ip_address_t src;
4011  u32 bi;
4012  vlib_buffer_t *b;
4013  vlib_frame_t *f;
4014  u32 next_index, *to_next;
4015  mapping_t *records = 0, *m;
4016 
4017  m = pool_elt_at_index (lcm->mapping_pool, mi);
4018  if (!m)
4019  return -1;
4020 
4021  vec_add1 (records, m[0]);
4022  add_locators (lcm, &records[0], m->locator_set_index, probed_loc);
4023  memset (&src, 0, sizeof (src));
4024 
4025  if (!ip_fib_get_first_egress_ip_for_dst (lcm, dst, &src))
4026  {
4027  clib_warning ("can't find inteface address for %U", format_ip_address,
4028  dst);
4029  return -1;
4030  }
4031 
4032  b = build_map_reply (lcm, &src, dst, nonce, probe_bit, records, dst_port,
4033  &bi);
4034  if (!b)
4035  return -1;
4036  free_map_register_records (records);
4037 
4038  vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
4039  next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
4040  ip4_lookup_node.index : ip6_lookup_node.index;
4041 
4042  f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
4043 
4044  /* Enqueue the packet */
4045  to_next = vlib_frame_vector_args (f);
4046  to_next[0] = bi;
4047  f->n_vectors = 1;
4048  vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
4049  return 0;
4050 }
4051 
4052 static void
4054 {
4055  const i32 start = vnet_buffer (b)->l3_hdr_offset;
4056  if (start < 0 && start < -sizeof (b->pre_data))
4057  {
4058  *ip_hdr = 0;
4059  return;
4060  }
4061 
4062  *ip_hdr = b->data + start;
4063  if ((u8 *) * ip_hdr > (u8 *) vlib_buffer_get_current (b))
4064  *ip_hdr = 0;
4065 }
4066 
4067 void
4069  lisp_cp_main_t * lcm, vlib_buffer_t * b)
4070 {
4071  u8 *ip_hdr = 0;
4072  ip_address_t *dst_loc = 0, probed_loc, src_loc;
4073  mapping_t m;
4074  map_request_hdr_t *mreq_hdr;
4075  gid_address_t src, dst;
4076  u64 nonce;
4077  u32 i, len = 0, rloc_probe_recv = 0;
4078  gid_address_t *itr_rlocs = 0;
4079 
4080  mreq_hdr = vlib_buffer_get_current (b);
4081  if (!MREQ_SMR (mreq_hdr) && !MREQ_RLOC_PROBE (mreq_hdr))
4082  {
4083  clib_warning
4084  ("Only SMR Map-Requests and RLOC probe supported for now!");
4085  return;
4086  }
4087 
4088  vlib_buffer_pull (b, sizeof (*mreq_hdr));
4089  nonce = MREQ_NONCE (mreq_hdr);
4090 
4091  /* parse src eid */
4092  len = lisp_msg_parse_addr (b, &src);
4093  if (len == ~0)
4094  return;
4095 
4096  len = lisp_msg_parse_itr_rlocs (b, &itr_rlocs,
4097  MREQ_ITR_RLOC_COUNT (mreq_hdr) + 1);
4098  if (len == ~0)
4099  goto done;
4100 
4101  /* parse eid records and send SMR-invoked map-requests */
4102  for (i = 0; i < MREQ_REC_COUNT (mreq_hdr); i++)
4103  {
4104  memset (&dst, 0, sizeof (dst));
4105  len = lisp_msg_parse_eid_rec (b, &dst);
4106  if (len == ~0)
4107  {
4108  clib_warning ("Can't parse map-request EID-record");
4109  goto done;
4110  }
4111 
4112  if (MREQ_SMR (mreq_hdr))
4113  {
4114  /* send SMR-invoked map-requests */
4115  queue_map_request (&dst, &src, 1 /* invoked */ , 0 /* resend */ );
4116  }
4117  else if (MREQ_RLOC_PROBE (mreq_hdr))
4118  {
4119  find_ip_header (b, &ip_hdr);
4120  if (!ip_hdr)
4121  {
4122  clib_warning ("Cannot find the IP header!");
4123  goto done;
4124  }
4125  rloc_probe_recv++;
4126  memset (&m, 0, sizeof (m));
4127  u32 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
4128 
4129  // TODO: select best locator; for now use the first one
4130  dst_loc = &gid_address_ip (&itr_rlocs[0]);
4131 
4132  /* get src/dst IP addresses */
4133  get_src_and_dst_ip (ip_hdr, &src_loc, &probed_loc);
4134 
4135  // TODO get source port from buffer
4136  u16 src_port = LISP_CONTROL_PORT;
4137 
4138  send_map_reply (lcm, mi, dst_loc, 1 /* probe-bit */ , nonce,
4139  src_port, &probed_loc);
4140  }
4141  }
4142 
4143 done:
4145  LISP_CP_INPUT_ERROR_RLOC_PROBE_REQ_RECEIVED,
4146  rloc_probe_recv);
4147  vec_free (itr_rlocs);
4148 }
4149 
4152 {
4153  locator_t probed;
4154  gid_address_t deid;
4155  void *h;
4156  u32 i, len = 0;
4157  mapping_t m;
4158  map_reply_hdr_t *mrep_hdr;
4160 
4161  a = map_record_args_get ();
4162  memset (a, 0, sizeof (*a));
4163 
4164  locator_t *locators;
4165 
4166  mrep_hdr = vlib_buffer_get_current (b);
4167  a->nonce = MREP_NONCE (mrep_hdr);
4168  a->is_rloc_probe = MREP_RLOC_PROBE (mrep_hdr);
4169  if (!vlib_buffer_has_space (b, sizeof (*mrep_hdr)))
4170  {
4171  clib_mem_free (a);
4172  return 0;
4173  }
4174  vlib_buffer_pull (b, sizeof (*mrep_hdr));
4175 
4176  for (i = 0; i < MREP_REC_COUNT (mrep_hdr); i++)
4177  {
4178  memset (&m, 0, sizeof (m));
4179  locators = 0;
4180  h = vlib_buffer_get_current (b);
4181 
4182  m.ttl = clib_net_to_host_u32 (MAP_REC_TTL (h));
4183  m.action = MAP_REC_ACTION (h);
4184  m.authoritative = MAP_REC_AUTH (h);
4185 
4186  len = lisp_msg_parse_mapping_record (b, &deid, &locators, &probed);
4187  if (len == ~0)
4188  {
4189  clib_warning ("Failed to parse mapping record!");
4191  return 0;
4192  }
4193 
4194  m.locators = locators;
4195  gid_address_copy (&m.eid, &deid);
4196  vec_add1 (a->mappings, m);
4197  }
4198  return a;
4199 }
4200 
4201 static void
4203 {
4204  vl_api_rpc_call_main_thread (process_map_reply, (u8 *) a, sizeof (*a));
4205 }
4206 
4207 static void
4209 {
4210  vl_api_rpc_call_main_thread (process_map_notify, (u8 *) a, sizeof (a[0]));
4211 }
4212 
4213 static uword
4215  vlib_frame_t * from_frame)
4216 {
4217  u32 n_left_from, *from, *to_next_drop, rloc_probe_rep_recv = 0,
4218  map_notifies_recv = 0;
4219  lisp_msg_type_e type;
4222 
4223  from = vlib_frame_vector_args (from_frame);
4224  n_left_from = from_frame->n_vectors;
4225 
4226 
4227  while (n_left_from > 0)
4228  {
4229  u32 n_left_to_next_drop;
4230 
4232  to_next_drop, n_left_to_next_drop);
4233  while (n_left_from > 0 && n_left_to_next_drop > 0)
4234  {
4235  u32 bi0;
4236  vlib_buffer_t *b0;
4237 
4238  bi0 = from[0];
4239  from += 1;
4240  n_left_from -= 1;
4241  to_next_drop[0] = bi0;
4242  to_next_drop += 1;
4243  n_left_to_next_drop -= 1;
4244 
4245  b0 = vlib_get_buffer (vm, bi0);
4246 
4247  type = lisp_msg_type (vlib_buffer_get_current (b0));
4248  switch (type)
4249  {
4250  case LISP_MAP_REPLY:
4251  a = parse_map_reply (b0);
4252  if (a)
4253  {
4254  if (a->is_rloc_probe)
4255  rloc_probe_rep_recv++;
4257  }
4258  break;
4259  case LISP_MAP_REQUEST:
4260  process_map_request (vm, node, lcm, b0);
4261  break;
4262  case LISP_MAP_NOTIFY:
4263  a = parse_map_notify (b0);
4264  if (a)
4265  {
4266  map_notifies_recv++;
4268  }
4269  break;
4270  default:
4271  clib_warning ("Unsupported LISP message type %d", type);
4272  break;
4273  }
4274 
4275  b0->error = node->errors[LISP_CP_INPUT_ERROR_DROP];
4276 
4278  {
4279 
4280  }
4281  }
4282 
4284  n_left_to_next_drop);
4285  }
4287  LISP_CP_INPUT_ERROR_RLOC_PROBE_REP_RECEIVED,
4288  rloc_probe_rep_recv);
4290  LISP_CP_INPUT_ERROR_MAP_NOTIFIES_RECEIVED,
4291  map_notifies_recv);
4292  return from_frame->n_vectors;
4293 }
4294 
4295 /* *INDENT-OFF* */
4297  .function = lisp_cp_input,
4298  .name = "lisp-cp-input",
4299  .vector_size = sizeof (u32),
4300  .format_trace = format_lisp_cp_input_trace,
4301  .type = VLIB_NODE_TYPE_INTERNAL,
4302 
4303  .n_errors = LISP_CP_INPUT_N_ERROR,
4304  .error_strings = lisp_cp_input_error_strings,
4305 
4306  .n_next_nodes = LISP_CP_INPUT_N_NEXT,
4307 
4308  .next_nodes = {
4309  [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
4310  },
4311 };
4312 /* *INDENT-ON* */
4313 
4314 clib_error_t *
4316 {
4318  clib_error_t *error = 0;
4320  u32 num_threads;
4321 
4322  if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
4323  return error;
4324 
4325  lcm->im4 = &ip4_main;
4326  lcm->im6 = &ip6_main;
4327  lcm->vlib_main = vm;
4328  lcm->vnet_main = vnet_get_main ();
4329  lcm->mreq_itr_rlocs = ~0;
4330  lcm->lisp_pitr = 0;
4331  lcm->flags = 0;
4332  memset (&lcm->active_map_resolver, 0, sizeof (lcm->active_map_resolver));
4333  memset (&lcm->active_map_server, 0, sizeof (lcm->active_map_server));
4334 
4336  lcm->do_map_resolver_election = 1;
4337  lcm->do_map_server_election = 1;
4339 
4340  num_threads = 1 /* main thread */ + vtm->n_threads;
4341  vec_validate (lcm->map_records_args_pool, num_threads - 1);
4342 
4343  /* default vrf mapped to vni 0 */
4344  hash_set (lcm->table_id_by_vni, 0, 0);
4345  hash_set (lcm->vni_by_table_id, 0, 0);
4346 
4347  udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp,
4348  lisp_cp_input_node.index, 1 /* is_ip4 */ );
4349  udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp6,
4350  lisp_cp_input_node.index, 0 /* is_ip4 */ );
4351 
4352  u64 now = clib_cpu_time_now ();
4354  lcm->nsh_map_index = ~0;
4357  lcm->expired_map_registers = 0;
4359  return 0;
4360 }
4361 
4362 static int
4364  lisp_api_stats_t * stat, lisp_stats_key_t * key,
4365  u32 stats_index)
4366 {
4367  vlib_counter_t v;
4369  lisp_gpe_fwd_entry_key_t fwd_key;
4370  const lisp_gpe_tunnel_t *lgt;
4371  fwd_entry_t *fe;
4372 
4373  memset (stat, 0, sizeof (*stat));
4374  memset (&fwd_key, 0, sizeof (fwd_key));
4375 
4377  ASSERT (fe != 0);
4378 
4379  gid_to_dp_address (&fe->reid, &stat->deid);
4380  gid_to_dp_address (&fe->leid, &stat->seid);
4381  stat->vni = gid_address_vni (&fe->reid);
4382 
4383  lgt = lisp_gpe_tunnel_get (key->tunnel_index);
4384  stat->loc_rloc = lgt->key->lcl;
4385  stat->rmt_rloc = lgt->key->rmt;
4386 
4387  vlib_get_combined_counter (cm, stats_index, &v);
4388  stat->counters = v;
4389  return 1;
4390 }
4391 
4394 {
4397  lisp_api_stats_t *stats = 0, stat;
4398  lisp_stats_key_t *key;
4399  u32 index;
4400 
4401  /* *INDENT-OFF* */
4402  hash_foreach_mem (key, index, lgm->lisp_stats_index_by_key,
4403  {
4404  if (lisp_stats_api_fill (lcm, lgm, &stat, key, index))
4405  vec_add1 (stats, stat);
4406  });
4407  /* *INDENT-ON* */
4408 
4409  return stats;
4410 }
4411 
4412 static void *
4414 {
4415  map_request_args_t *a = arg;
4417 
4418  if (a->is_resend)
4420  else
4421  send_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked);
4422 
4423  return 0;
4424 }
4425 
4426 static int
4428  u8 smr_invoked, u8 is_resend)
4429 {
4431 
4432  a.is_resend = is_resend;
4433  gid_address_copy (&a.seid, seid);
4434  gid_address_copy (&a.deid, deid);
4435  a.smr_invoked = smr_invoked;
4436 
4438  (u8 *) & a, sizeof (a));
4439  return 0;
4440 }
4441 
4442 /**
4443  * Take an action with a pending map request depending on expiration time
4444  * and re-try counters.
4445  */
4446 static void
4448 {
4450  lisp_msmr_t *mr;
4451 
4452  if (r->time_to_expire - dt < 0)
4453  /* it's time to decide what to do with this pending request */
4454  {
4455  if (r->retries_num >= NUMBER_OF_RETRIES)
4456  /* too many retries -> assume current map resolver is not available */
4457  {
4459  if (!mr)
4460  {
4461  clib_warning ("Map resolver %U not found - probably deleted "
4462  "by the user recently.", format_ip_address,
4463  &lcm->active_map_resolver);
4464  }
4465  else
4466  {
4467  clib_warning ("map resolver %U is unreachable, ignoring",
4469 
4470  /* mark current map resolver unavailable so it won't be
4471  * selected next time */
4472  mr->is_down = 1;
4473  mr->last_update = vlib_time_now (lcm->vlib_main);
4474  }
4475 
4477  elect_map_resolver (lcm);
4478 
4479  /* try to find a next eligible map resolver and re-send */
4480  queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
4481  1 /* resend */ );
4482  }
4483  else
4484  {
4485  /* try again */
4486  queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
4487  1 /* resend */ );
4488  r->retries_num++;
4490  }
4491  }
4492  else
4493  r->time_to_expire -= dt;
4494 }
4495 
4496 static void
4498 {
4499  u64 *nonce;
4500  pending_map_request_t *pmr;
4501  u32 *to_be_removed = 0, *pmr_index;
4502 
4503  /* *INDENT-OFF* */
4505  ({
4506  if (pmr->to_be_removed)
4507  {
4508  clib_fifo_foreach (nonce, pmr->nonces, ({
4509  hash_unset (lcm->pending_map_requests_by_nonce, nonce[0]);
4510  }));
4511 
4512  vec_add1 (to_be_removed, pmr - lcm->pending_map_requests_pool);
4513  }
4514  }));
4515  /* *INDENT-ON* */
4516 
4517  vec_foreach (pmr_index, to_be_removed)
4518  pool_put_index (lcm->pending_map_requests_pool, pmr_index[0]);
4519 
4520  vec_free (to_be_removed);
4521 }
4522 
4523 static void
4525 {
4526  static f64 time_left = RLOC_PROBING_INTERVAL;
4527 
4528  if (!lcm->is_enabled || !lcm->rloc_probing)
4529  return;
4530 
4531  time_left -= dt;
4532  if (time_left <= 0)
4533  {
4534  time_left = RLOC_PROBING_INTERVAL;
4535  send_rloc_probes (lcm);
4536  }
4537 }
4538 
4539 static int
4541 {
4543  lisp_msmr_t *ms;
4544  del_all[0] = 0;
4545 
4546  r->time_to_expire -= dt;
4547 
4548  if (r->time_to_expire < 0)
4549  {
4550  lcm->expired_map_registers++;
4551 
4553  {
4554  ms = get_map_server (&lcm->active_map_server);
4555  if (!ms)
4556  {
4557  clib_warning ("Map server %U not found - probably deleted "
4558  "by the user recently.", format_ip_address,
4559  &lcm->active_map_server);
4560  }
4561  else
4562  {
4563  clib_warning ("map server %U is unreachable, ignoring",
4565 
4566  /* mark current map server unavailable so it won't be
4567  * elected next time */
4568  ms->is_down = 1;
4569  ms->last_update = vlib_time_now (lcm->vlib_main);
4570  }
4571 
4572  elect_map_server (lcm);
4573 
4574  /* indication for deleting all pending map registers */
4575  del_all[0] = 1;
4576  lcm->expired_map_registers = 0;
4577  return 0;
4578  }
4579  else
4580  {
4581  /* delete pending map register */
4582  return 0;
4583  }
4584  }
4585  return 1;
4586 }
4587 
4588 static void
4590 {
4591  u32 *to_be_removed = 0, *pmr_index;
4592  static f64 time_left = QUICK_MAP_REGISTER_INTERVAL;
4593  static u64 mreg_sent_counter = 0;
4594 
4596  u8 del_all = 0;
4597 
4598  if (!lcm->is_enabled || !lcm->map_registering)
4599  return;
4600 
4601  /* *INDENT-OFF* */
4603  ({
4604  if (!update_pending_map_register (pmr, dt, &del_all))
4605  {
4606  if (del_all)
4607  break;
4608  vec_add1 (to_be_removed, pmr - lcm->pending_map_registers_pool);
4609  }
4610  }));
4611  /* *INDENT-ON* */
4612 
4613  if (del_all)
4614  {
4615  /* delete all pending map register messages so they won't
4616  * trigger another map server election.. */
4617  pool_free (lcm->pending_map_registers_pool);
4618  hash_free (lcm->map_register_messages_by_nonce);
4619 
4620  /* ..and trigger registration against next map server (if any) */
4621  time_left = 0;
4622  }
4623  else
4624  {
4625  vec_foreach (pmr_index, to_be_removed)
4626  pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]);
4627  }
4628 
4629  vec_free (to_be_removed);
4630 
4631  time_left -= dt;
4632  if (time_left <= 0)
4633  {
4634  if (mreg_sent_counter >= QUICK_MAP_REGISTER_MSG_COUNT)
4635  time_left = MAP_REGISTER_INTERVAL;
4636  else
4637  {
4638  mreg_sent_counter++;
4639  time_left = QUICK_MAP_REGISTER_INTERVAL;
4640  }
4641  send_map_register (lcm, 1 /* want map notify */ );
4642  }
4643 }
4644 
4645 static uword
4648 {
4649  u32 *expired = 0;
4650  f64 period = 2.0;
4651  pending_map_request_t *pmr;
4653 
4654  while (1)
4655  {
4657 
4658  /* currently no signals are expected - just wait for clock */
4659  (void) vlib_process_get_events (vm, 0);
4660 
4661  /* *INDENT-OFF* */
4663  ({
4664  if (!pmr->to_be_removed)
4665  update_pending_request (pmr, period);
4666  }));
4667  /* *INDENT-ON* */
4668 
4670 
4671  update_map_register (lcm, period);
4672  update_rloc_probing (lcm, period);
4673 
4674  u64 now = clib_cpu_time_now ();
4675 
4676  expired = timing_wheel_advance (&lcm->wheel, now, expired, 0);
4677  if (vec_len (expired) > 0)
4678  {
4679  u32 *mi = 0;
4680  vec_foreach (mi, expired)
4681  {
4682  process_expired_mapping (lcm, mi[0]);
4683  }
4684  _vec_len (expired) = 0;
4685  }
4686  }
4687 
4688  /* unreachable */
4689  return 0;
4690 }
4691 
4694 {
4696 
4697  if (vnet_lisp_enable_disable_status () == 0)
4698  return VNET_API_ERROR_LISP_DISABLED;
4699 
4700  if (enable)
4701  lcm->flags |= LISP_FLAG_STATS_ENABLED;
4702  else
4703  lcm->flags &= ~LISP_FLAG_STATS_ENABLED;
4704 
4705  return 0;
4706 }
4707 
4708 u8
4710 {
4712 
4713  if (vnet_lisp_enable_disable_status () == 0)
4714  return VNET_API_ERROR_LISP_DISABLED;
4715 
4716  return lcm->flags & LISP_FLAG_STATS_ENABLED;
4717 }
4718 
4719 /* *INDENT-OFF* */
4721  .function = send_map_resolver_service,
4722  .type = VLIB_NODE_TYPE_PROCESS,
4723  .name = "lisp-retry-service",
4724  .process_log2_n_stack_bytes = 16,
4725 };
4726 /* *INDENT-ON* */
4727 
4728 u32
4730 {
4732 
4733  if (protocol < LISP_TRANSPORT_PROTOCOL_UDP ||
4734  protocol > LISP_TRANSPORT_PROTOCOL_API)
4735  return VNET_API_ERROR_INVALID_ARGUMENT;
4736 
4737  lcm->transport_protocol = protocol;
4738  return 0;
4739 }
4740 
4743 {
4745  return lcm->transport_protocol;
4746 }
4747 
4749 
4750 /*
4751  * fd.io coding-style-patch-verification: ON
4752  *
4753  * Local Variables:
4754  * eval: (c-set-style "gnu")
4755  * End:
4756  */
void lisp_gpe_tenant_l2_iface_unlock(u32 vni)
Release the lock held on the tenant&#39;s L3 interface.
#define ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:432
#define MREQ_SMR(h_)
#define foreach_ip_interface_address(lm, a, sw_if_index, loop, body)
Definition: lookup.h:179
#define QUICK_MAP_REGISTER_INTERVAL
Definition: control.h:34
#define MNOTIFY_REC_COUNT(h_)
fib_protocol_t fp_proto
protocol type
Definition: fib_types.h:169
const lisp_gpe_tunnel_t * lisp_gpe_tunnel_get(index_t lgti)
#define VNET_SW_INTERFACE_FLAG_UNNUMBERED
Definition: interface.h:579
#define MREQ_ITR_RLOC_COUNT(h_)
static uword lisp_cp_input(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:4214
#define gid_address_ip_version(_a)
Definition: lisp_types.h:265
#define vec_foreach_index(var, v)
Iterate over vector indices.
map_records_arg_t ** map_records_args_pool
Per thread pool of records shared with thread0.
Definition: control.h:271
void * lisp_msg_put_mreq(lisp_cp_main_t *lcm, vlib_buffer_t *b, gid_address_t *seid, gid_address_t *deid, gid_address_t *rlocs, u8 is_smr_invoked, u8 rloc_probe_set, u64 *nonce)
u8 is_down
Definition: control.h:86
u32 pitr_map_index
Definition: control.h:247
void * lisp_msg_put_map_register(vlib_buffer_t *b, mapping_t *records, u8 want_map_notify, u16 auth_data_len, u64 *nonce, u32 *msg_len)
#define MREP_REC_COUNT(h_)
static int send_map_register(lisp_cp_main_t *lcm, u8 want_map_notif)
Definition: control.c:2834
vnet_api_error_t
Definition: api_errno.h:121
#define hash_set(h, key, value)
Definition: hash.h:254
l2_input_config_t * configs
Definition: l2_input.h:66
static u8 * vlib_buffer_get_tail(vlib_buffer_t *b)
Get pointer to the end of buffer&#39;s data.
Definition: buffer.h:265
sll srl srl sll sra u16x4 i
Definition: vector_sse2.h:337
#define clib_fifo_head(v)
Definition: fifo.h:254
#define gid_address_type(_a)
Definition: lisp_types.h:261
counter_t packets
Definition: lisp_types.h:376
#define CLIB_UNUSED(x)
Definition: clib.h:79
u8 timer_set
Definition: lisp_types.h:375
vlib_node_registration_t lisp_cp_lookup_ip4_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node)
Definition: control.c:3463
map_records_arg_t * parse_map_reply(vlib_buffer_t *b)
Definition: control.c:4151
static void mapping_start_expiration_timer(lisp_cp_main_t *lcm, u32 mi, f64 expiration_time)
Definition: control.c:3601
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:699
#define hash_unset(h, key)
Definition: hash.h:260
u32 * lcl_to_rmt_adjs_by_lcl_idx
Definition: control.h:199
a
Definition: bitmap.h:516
void process_map_request(vlib_main_t *vm, vlib_node_runtime_t *node, lisp_cp_main_t *lcm, vlib_buffer_t *b)
Definition: control.c:4068
gid_address_t deid
Definition: control.c:52
lisp_api_l2_arp_entry_t * vnet_lisp_l2_arp_entries_get_by_bd(u32 bd)
Definition: control.c:980
#define SHA256_AUTH_DATA_LEN
Definition: lisp_types.h:23
lisp_cp_lookup_next_t
Definition: control.c:2328
ip4_address_t src_address
Definition: ip4_packet.h:164
static uword clib_fifo_elts(void *v)
Definition: fifo.h:66
ip_address_t active_map_resolver
Definition: control.h:226
vnet_main_t * vnet_get_main(void)
Definition: misc.c:46
static vnet_hw_interface_t * vnet_get_sup_hw_interface(vnet_main_t *vnm, u32 sw_if_index)
#define RLOC_PROBING_INTERVAL
Definition: control.h:28
u32 bd_id
bridge domain id
Definition: lisp_gpe.h:269
lisp_msmr_t * map_resolvers
Definition: control.h:217
#define MAP_REC_TTL(h)
gid_address_t dst_eid
Definition: control.c:3566
u32 vnet_lisp_set_transport_protocol(u8 protocol)
Definition: control.c:4729
void ip_prefix_to_fib_prefix(const ip_prefix_t *ip_prefix, fib_prefix_t *fib_prefix)
convert from a LISP to a FIB prefix
Definition: control.c:167
#define MREQ_REC_COUNT(h_)
static vlib_buffer_t * build_encapsulated_map_request(lisp_cp_main_t *lcm, gid_address_t *seid, gid_address_t *deid, locator_set_t *loc_set, ip_address_t *mr_ip, ip_address_t *sloc, u8 is_smr_invoked, u64 *nonce_res, u32 *bi_res)
Definition: control.c:2468
locator_pair_t * locator_pairs
Definition: control.h:68
uword * table_id_by_vni
Definition: control.h:236
static void queue_map_notify_for_processing(map_records_arg_t *a)
Definition: control.c:4208
void timing_wheel_init(timing_wheel_t *w, u64 current_cpu_time, f64 cpu_clocks_per_second)
Definition: timing_wheel.c:21
void lisp_gpe_tenant_l3_iface_unlock(u32 vni)
Release the lock held on the tenant&#39;s L3 interface.
clib_error_t * vnet_lisp_gpe_enable_disable(vnet_lisp_gpe_enable_disable_args_t *a)
Enable/disable LISP-GPE.
Definition: lisp_gpe.c:193
#define NULL
Definition: clib.h:55
#define MAPPING_TIMEOUT
Definition: control.c:35
#define foreach_lisp_cp_input_error
Definition: control.c:3543
static uword lisp_cp_lookup_nsh(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:3455
u32 * local_mappings_indexes
Definition: control.h:189
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:221
u32 vnet_lisp_gpe_add_nsh_iface(lisp_gpe_main_t *lgm)
Add LISP-GPE NSH interface.
Definition: interface.c:752
locator_t * locator_pool
Definition: control.h:174
f64 clocks_per_second
Definition: time.h:53
dp_address_t seid
Definition: lisp_gpe.h:103
#define PENDING_MREQ_QUEUE_LEN
Definition: control.h:26
u8 src_address[6]
Definition: packet.h:54
LISP-GPE global state.
Definition: lisp_gpe.h:118
u8 vnet_lisp_get_map_request_mode(void)
Definition: control.c:57
vlib_node_registration_t lisp_cp_lookup_nsh_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_nsh_node)
Definition: control.c:3523
void ip_address_to_fib_prefix(const ip_address_t *addr, fib_prefix_t *prefix)
convert from a LISP address to a FIB prefix
Definition: control.c:146
ip_address_t loc_rloc
Definition: lisp_gpe.h:104
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:518
static uword lisp_cp_output(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:2723
Definition: control.h:63
static u64 clib_cpu_time_now(void)
Definition: time.h:73
static void dp_del_fwd_entry(lisp_cp_main_t *lcm, u32 dst_map_index)
Definition: control.c:268
Combined counter to hold both packets and byte differences.
Definition: counter.h:139
LISP-GPE definitions.
lisp_cp_input_next_t
Definition: control.c:42
#define QUICK_MAP_REGISTER_MSG_COUNT
Definition: control.h:33
#define MREG_KEY_ID(h_)
u32 ip_fib_get_egress_iface_for_dst(lisp_cp_main_t *lcm, ip_address_t *dst)
Find the sw_if_index of the interface that would be used to egress towards dst.
Definition: control.c:179
#define hash_set_mem(h, key, value)
Definition: hash.h:274
static char * lisp_cp_input_error_strings[]
Definition: control.c:3550
ip_lookup_main_t lookup_main
Definition: ip4.h:97
static vnet_sw_interface_t * vnet_get_sw_interface(vnet_main_t *vnm, u32 sw_if_index)
u32 nsh_map_index
Definition: control.h:256
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
void vnet_lisp_gpe_add_fwd_counters(vnet_lisp_gpe_add_del_fwd_entry_args_t *a, u32 fwd_entry_index)
clib_time_t clib_time
Definition: main.h:62
#define SHA1_AUTH_DATA_LEN
Definition: lisp_types.h:22
static void remove_dead_pending_map_requests(lisp_cp_main_t *lcm)
Definition: control.c:4497
void ip_address_copy(ip_address_t *dst, const ip_address_t *src)
Definition: lisp_types.c:886
ip_address_t address
Definition: control.h:88
vnet_api_error_t vnet_lisp_stats_enable_disable(u8 enable)
Definition: control.c:4693
int vnet_lisp_add_mapping(vnet_lisp_add_del_mapping_args_t *a, locator_t *rlocs, u32 *res_map_index, u8 *is_updated)
Adds/updates mapping.
Definition: control.c:1268
void ip_address_set(ip_address_t *dst, const void *src, u8 version)
Definition: lisp_types.c:908
static lisp_msmr_t * get_map_server(ip_address_t *a)
Definition: control.c:639
void timing_wheel_insert(timing_wheel_t *w, u64 insert_cpu_time, u32 user_data)
Definition: timing_wheel.c:294
vlib_error_t * errors
Vector of errors for this node.
Definition: node.h:415
static int update_pending_map_register(pending_map_register_t *r, f64 dt, u8 *del_all)
Definition: control.c:4540
uword * vni_by_table_id
Definition: control.h:237
static void * send_map_request_thread_fn(void *arg)
Definition: control.c:4413
#define pool_get(P, E)
Allocate an object E from a pool P (unspecified alignment).
Definition: pool.h:225
ip6_address_t src_address
Definition: ip6_packet.h:341
u8 vnet_lisp_stats_enable_disable_state(void)
Definition: control.c:4709
#define fid_addr_mac(_a)
Definition: lisp_types.h:134
void gid_dictionary_init(gid_dictionary_t *db)
u8 vnet_lisp_map_register_state_get(void)
Definition: control.c:422
static int send_map_reply(lisp_cp_main_t *lcm, u32 mi, ip_address_t *dst, u8 probe_bit, u64 nonce, u16 dst_port, ip_address_t *probed_loc)
Definition: control.c:4006
void gid_address_from_ip(gid_address_t *g, ip_address_t *ip)
Definition: lisp_types.c:861
int vnet_lisp_set_map_request_mode(u8 mode)
Definition: control.c:1538
static int is_local_ip(lisp_cp_main_t *lcm, ip_address_t *addr)
Definition: control.c:1245
static void clean_locator_to_locator_set(lisp_cp_main_t *lcm, u32 lsi)
Definition: control.c:1741
int vnet_lisp_add_del_adjacency(vnet_lisp_add_del_adjacency_args_t *a)
Adds adjacency or removes forwarding entry associated to remote mapping.
Definition: control.c:1477
static char * lisp_cp_output_error_strings[]
Definition: control.c:2708
#define NUMBER_OF_RETRIES
Definition: control.h:24
vlib_node_registration_t ip4_lookup_node
(constructor) VLIB_REGISTER_NODE (ip4_lookup_node)
Definition: ip4_forward.c:479
#define MNOTIFY_NONCE(h_)
static int update_map_register_auth_data(map_register_hdr_t *map_reg_hdr, lisp_key_type_t key_id, u8 *key, u16 auth_data_len, u32 msg_len)
Definition: control.c:2628
lisp_msmr_t * map_servers
Definition: control.h:220
lisp_transport_protocol_t vnet_lisp_get_transport_protocol(void)
Definition: control.c:4742
#define MREQ_NONCE(h_)
static lisp_gpe_main_t * vnet_lisp_gpe_get_main()
Definition: lisp_gpe.h:183
static void reset_pending_mr_counters(pending_map_request_t *r)
Definition: control.c:2524
u32 ** locator_to_locator_sets
Definition: control.h:180
vlib_main_t * vlib_main
Definition: control.h:286
u32 gid_dictionary_add_del(gid_dictionary_t *db, gid_address_t *key, u64 value, u8 is_add)
#define pool_foreach(VAR, POOL, BODY)
Iterate through pool.
Definition: pool.h:437
ethernet_arp_ip4_over_ethernet_address_t ip4_over_ethernet[2]
Definition: arp_packet.h:136
static void add_ndp_bd(BVT(clib_bihash_kv)*kvp, void *arg)
Definition: control.c:931
#define VLIB_INIT_FUNCTION(x)
Definition: init.h:111
u32 fwd_entry_index
Definition: lisp_gpe.h:95
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:542
#define always_inline
Definition: clib.h:84
int ip_fib_get_first_egress_ip_for_dst(lisp_cp_main_t *lcm, ip_address_t *dst, ip_address_t *result)
Find first IP of the interface that would be used to egress towards dst.
Definition: control.c:196
u8 * key
Definition: lisp_types.h:373
#define ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE
gid_address_t * eids_to_be_deleted
Definition: control.c:1152
ip4_address_t dst_address
Definition: ip4_packet.h:164
ip_address_t rmt_rloc
Definition: lisp_gpe.h:105
u8 dst_address[6]
Definition: packet.h:53
static BVT(clib_bihash)
Definition: adj_nbr.c:26
vlib_combined_counter_main_t counters
Definition: lisp_gpe.h:164
static int dp_add_fwd_entry_from_mt(u32 si, u32 di)
Definition: control.c:595
LISP-GPE fwd entry key.
u8 is_add
Definition: lisp_gpe.h:233
int i32
Definition: types.h:81
#define hash_foreach(key_var, value_var, h, body)
Definition: hash.h:418
void di(unformat_input_t *i)
Definition: unformat.c:163
#define gid_address_sd_src(_a)
Definition: lisp_types.h:278
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
void vnet_lisp_gpe_del_fwd_counters(vnet_lisp_gpe_add_del_fwd_entry_args_t *a, u32 fwd_entry_index)
Aggregrate type for a prefix.
Definition: fib_types.h:160
vlib_frame_t * vlib_get_frame_to_node(vlib_main_t *vm, u32 to_node_index)
Definition: main.c:182
u32 * fwd_entry_by_mapping_index
Definition: control.h:193
#define clib_error_return(e, args...)
Definition: error.h:99
u32 expired_map_registers
Definition: control.h:278
u8 pre_data[VLIB_BUFFER_PRE_DATA_SIZE]
Space for inserting data before buffer start.
Definition: buffer.h:149
static mapping_t * get_mapping(lisp_cp_main_t *lcm, gid_address_t *e)
Definition: control.c:3825
unsigned long u64
Definition: types.h:89
int vnet_lisp_eid_table_map(u32 vni, u32 dp_id, u8 is_l2, u8 is_add)
Definition: control.c:1069
static u32 get_locator_pairs(lisp_cp_main_t *lcm, mapping_t *lcl_map, mapping_t *rmt_map, locator_pair_t **locator_pairs)
Finds first remote locator with best (lowest) priority that has a local peer locator with an underlyi...
Definition: control.c:305
lisp_api_ndp_entry_t * vnet_lisp_ndp_entries_get_by_bd(u32 bd)
Definition: control.c:1015
#define vec_end(v)
End (last data address) of vector.
uword * bd_id_by_vni
Definition: control.h:240
u32 lisp_gpe_tenant_l2_iface_add_or_lock(u32 vni, u32 bd_id)
Add/create and lock a new or find and lock the existing L2 interface for the tenant.
static lisp_cp_main_t * vnet_lisp_cp_get_main()
Definition: control.h:300
u16 fp_len
The mask length.
Definition: fib_types.h:164
#define vlib_call_init_function(vm, x)
Definition: init.h:162
u8 do_map_server_election
Definition: control.h:230
uword * vni_by_bd_id
Definition: control.h:241
u8 delete_after_expiration
Definition: lisp_types.h:370
fib_node_index_t fib_table_lookup(u32 fib_index, const fib_prefix_t *prefix)
Perfom a longest prefix match in the non-forwarding table.
Definition: fib_table.c:66
Definition: lisp_gpe.h:226
gid_address_t src
Definition: control.h:49
u32 petr_map_index
Proxy ETR map index.
Definition: control.h:250
#define ip_addr_version(_a)
Definition: lisp_types.h:56
ip6_main_t * im6
Definition: control.h:285
void gid_to_dp_address(gid_address_t *g, dp_address_t *d)
Definition: lisp_types.c:606
static void update_pending_request(pending_map_request_t *r, f64 dt)
Take an action with a pending map request depending on expiration time and re-try counters...
Definition: control.c:4447
clib_error_t * vnet_lisp_enable_disable(u8 is_enable)
Definition: control.c:2155
#define MAX_EXPIRED_MAP_REGISTERS_DEFAULT
Definition: control.h:40
vlib_node_registration_t lisp_cp_lookup_ip6_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_ip6_node)
Definition: control.c:3483
static void add_locators(lisp_cp_main_t *lcm, mapping_t *m, u32 locator_set_index, ip_address_t *probed_loc)
Definition: control.c:2562
Definition: fib_entry.h:233
void vnet_lisp_gpe_del_nsh_iface(lisp_gpe_main_t *lgm)
Del LISP-GPE NSH interface.
Definition: interface.c:792
#define hash_get(h, key)
Definition: hash.h:248
#define MREQ_RLOC_PROBE(h_)
static void mapping_delete_timer(lisp_cp_main_t *lcm, u32 mi)
Definition: control.c:1239
u8 is_src_dst
Definition: control.h:67
int vnet_lisp_pitr_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1610
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:458
u8 vnet_lisp_rloc_probe_state_get(void)
Definition: control.c:429
static void queue_map_reply_for_processing(map_records_arg_t *a)
Definition: control.c:4202
#define hash_unset_mem(h, key)
Definition: hash.h:280
Common utility functions for IPv4, IPv6 and L2 LISP-GPE tunnels.
lisp_cp_lookup_error_t
Definition: control.c:2320
counter_t packets
packet counter
Definition: counter.h:141
u8 do_map_resolver_election
Definition: control.h:229
#define clib_fifo_sub1(f, e)
Definition: fifo.h:224
u32 table_id
table (vrf) id
Definition: lisp_gpe.h:266
#define gid_address_arp_ndp_ip(_a)
Definition: lisp_types.h:284
static void * vlib_buffer_make_headroom(vlib_buffer_t *b, u8 size)
Make head room, typically for packet headers.
Definition: buffer.h:305
f64 last_update
Definition: control.h:87
ip46_address_t fp_addr
The address type is not deriveable from the fp_addr member.
Definition: fib_types.h:183
void gid_dict_foreach_subprefix(gid_dictionary_t *db, gid_address_t *eid, foreach_subprefix_match_cb_t cb, void *arg)
#define gid_address_mac(_a)
Definition: lisp_types.h:267
static u16 auth_data_len_by_key_id(lisp_key_type_t key_id)
Definition: control.c:64
int get_mr_and_local_iface_ip(lisp_cp_main_t *lcm, ip_address_t *mr_ip, ip_address_t *sloc)
Definition: control.c:2355
#define v
Definition: acl.c:323
int vnet_lisp_map_cache_add_del(vnet_lisp_add_del_mapping_args_t *a, u32 *map_index_result)
Add/remove mapping to/from map-cache.
Definition: control.c:722
#define MAP_REC_AUTH(h)
int vnet_lisp_add_del_local_mapping(vnet_lisp_add_del_mapping_args_t *a, u32 *map_index_result)
Add/update/delete mapping to/in/from map-cache.
Definition: control.c:874
u32 lisp_msg_parse_addr(vlib_buffer_t *b, gid_address_t *eid)
static vlib_node_registration_t lisp_retry_service_node
(constructor) VLIB_REGISTER_NODE (lisp_retry_service_node)
Definition: control.c:4720
vlib_node_registration_t lisp_cp_input_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_input_node)
Definition: control.c:4296
void vlib_put_frame_to_node(vlib_main_t *vm, u32 to_node_index, vlib_frame_t *f)
Definition: main.c:191
#define MNOTIFY_KEY_ID(h_)
static void * vlib_buffer_get_current(vlib_buffer_t *b)
Get pointer to current data to process.
Definition: buffer.h:193
#define hash_free(h)
Definition: hash.h:286
void gid_address_free(gid_address_t *a)
Definition: lisp_types.c:850
vlib_node_registration_t lisp_cp_lookup_l2_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_lookup_l2_node)
Definition: control.c:3503
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:270
#define gid_address_sd_dst_type(_a)
Definition: lisp_types.h:281
#define vec_dup(V)
Return copy of vector (no header, no alignment)
Definition: vec.h:370
static void cleanup(void)
Definition: client.c:90
u8 authoritative
Definition: lisp_types.h:363
lisp_api_stats_t * vnet_lisp_get_stats(void)
Definition: control.c:4393
static void remove_expired_mapping(lisp_cp_main_t *lcm, u32 mi)
Definition: control.c:3583
u32 * local_locator_set_indexes
Definition: control.h:190
#define PREDICT_FALSE(x)
Definition: clib.h:97
static int map_record_integrity_check(lisp_cp_main_t *lcm, mapping_t *maps, u32 key_id, u8 **key_out)
When map-notify is received it is necessary that all EIDs in the record list share common key...
Definition: control.c:3845
uword unformat_gid_address(unformat_input_t *input, va_list *args)
Definition: lisp_types.c:350
gid_address_t reid
Definition: control.h:66
#define vec_del1(v, i)
Delete the element at index I.
Definition: vec.h:801
u8 * format_gid_address(u8 *s, va_list *args)
Definition: lisp_types.c:265
static uword lisp_cp_lookup_ip4(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:3434
ip_address_t lcl_loc
Definition: lisp_types.h:386
volatile u8 is_free
Definition: control.h:154
u8 map_request_mode
Definition: control.h:259
static u8 compare_locators(lisp_cp_main_t *lcm, u32 *old_ls_indexes, locator_t *new_locators)
Definition: control.c:1126
#define foreach_lisp_cp_lookup_error
Definition: control.c:2307
vlib_node_registration_t lisp_cp_output_node
(constructor) VLIB_REGISTER_NODE (lisp_cp_output_node)
Definition: control.c:2731
u32 node_index
Node index.
Definition: node.h:437
#define MAX_LISP_MSG_ENCAP_LEN
#define vlib_validate_buffer_enqueue_x1(vm, node, next_index, to_next, n_left_to_next, bi0, next0)
Finish enqueueing one buffer forward in the graph.
Definition: buffer_node.h:216
#define vlib_get_next_frame(vm, node, next_index, vectors, n_vectors_left)
Get pointer to next frame vector data by (vlib_node_runtime_t, next_index).
Definition: node_funcs.h:364
ip_address_t map_resolver_ip
Definition: control.c:2338
#define hash_foreach_mem(key_var, value_var, h, body)
Definition: hash.h:437
#define TIME_UNTIL_REFETCH_OR_DELETE
Definition: control.c:34
#define MREG_AUTH_DATA_LEN(h_)
void * pkt_push_udp_and_ip(vlib_main_t *vm, vlib_buffer_t *b, u16 sp, u16 dp, ip_address_t *sip, ip_address_t *dip, u8 csum_offload)
Definition: packets.c:171
#define clib_fifo_foreach(v, f, body)
Definition: fifo.h:279
static void process_map_notify(map_records_arg_t *a)
Definition: control.c:3803
vlib_error_t error
Error code for buffers to be enqueued to error handler.
Definition: buffer.h:113
u8 map_registering
Definition: control.h:262
static int queue_map_request(gid_address_t *seid, gid_address_t *deid, u8 smr_invoked, u8 is_resend)
Definition: control.c:4427
static void vlib_node_increment_counter(vlib_main_t *vm, u32 node_index, u32 counter_index, u64 increment)
Definition: node_funcs.h:1158
static void remove_locator_from_locator_set(locator_set_t *ls, u32 *locit, u32 ls_index, u32 loc_id)
Definition: control.c:1877
#define gid_address_ippref(_a)
Definition: lisp_types.h:262
dp_address_t deid
Definition: lisp_gpe.h:102
lisp_adjacency_t * vnet_lisp_adjacencies_get_by_vni(u32 vni)
Returns vector of adjacencies.
Definition: control.c:617
u32 fib_entry_get_resolving_interface(fib_node_index_t entry_index)
Definition: fib_entry.c:1353
u8 is_negative
type of mapping
Definition: lisp_gpe.h:236
static int is_locator_in_locator_set(lisp_cp_main_t *lcm, locator_set_t *ls, locator_t *loc)
Definition: control.c:1801
#define pool_free(p)
Free a pool.
Definition: pool.h:351
u32 lisp_msg_parse_itr_rlocs(vlib_buffer_t *b, gid_address_t **rlocs, u8 rloc_count)
u32 sw_if_index
Definition: lisp_types.h:324
clib_error_t * lisp_cp_init(vlib_main_t *vm)
Definition: control.c:4315
u32 * vnet_lisp_ndp_bds_get(void)
Definition: control.c:943
u32 vni
VNI/tenant id in HOST byte order.
Definition: lisp_gpe.h:260
u8 * format_lisp_cp_input_trace(u8 *s, va_list *args)
Definition: control.c:3571
static vlib_buffer_t * build_map_reply(lisp_cp_main_t *lcm, ip_address_t *sloc, ip_address_t *dst, u64 nonce, u8 probe_bit, mapping_t *records, u16 dst_port, u32 *bi_res)
Definition: control.c:3977
static uword lisp_cp_lookup_l2(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:3448
uword * pending_map_requests_by_nonce
Definition: control.h:205
static void dp_add_fwd_entry(lisp_cp_main_t *lcm, u32 src_map_index, u32 dst_map_index)
Definition: control.c:436
int vnet_lisp_add_del_mreq_itr_rlocs(vnet_lisp_add_del_mreq_itr_rloc_args_t *a)
Definition: control.c:2276
svmdb_client_t * c
u16 n_vectors
Definition: node.h:344
vlib_counter_t counters
Definition: lisp_gpe.h:107
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
static lisp_msmr_t * get_map_resolver(ip_address_t *a)
Definition: control.c:655
static void vlib_get_combined_counter(const vlib_combined_counter_main_t *cm, u32 index, vlib_counter_t *result)
Get the value of a combined counter, never called in the speed path Scrapes the entire set of per-thr...
Definition: counter.h:250
#define MAP_REC_ACTION(h)
vlib_main_t * vm
Definition: buffer.c:283
vec_header_t h
Definition: buffer.c:282
int gid_address_cmp(gid_address_t *a1, gid_address_t *a2)
Definition: lisp_types.c:1632
#define gid_address_arp_bd
Definition: lisp_types.h:288
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
#define gid_address_ippref_len(_a)
Definition: lisp_types.h:263
static map_records_arg_t * parse_map_notify(vlib_buffer_t *b)
Definition: control.c:3924
u32 lisp_msg_parse_mapping_record(vlib_buffer_t *b, gid_address_t *eid, locator_t **locs, locator_t *probed_)
static void remove_mapping_if_needed(u32 mi, void *arg)
Callback invoked when a sub-prefix is found.
Definition: control.c:1159
#define clib_warning(format, args...)
Definition: error.h:59
#define VLIB_BUFFER_IS_TRACED
Definition: buffer.h:93
u32 locator_set_index
Definition: lisp_types.h:356
void * lisp_msg_push_ecm(vlib_main_t *vm, vlib_buffer_t *b, int lp, int rp, gid_address_t *la, gid_address_t *ra)
#define clib_memcpy(a, b, c)
Definition: string.h:69
u8 almost_expired
Definition: lisp_types.h:369
u32 * timing_wheel_advance(timing_wheel_t *w, u64 advance_cpu_time, u32 *expired_user_data, u64 *next_expiring_element_cpu_time)
Definition: timing_wheel.c:592
void timing_wheel_delete(timing_wheel_t *w, u32 user_data)
Definition: timing_wheel.c:331
u32 locator_cmp(locator_t *l1, locator_t *l2)
Definition: lisp_types.c:1718
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: memory_vlib.c:1517
static void update_map_register(lisp_cp_main_t *lcm, f64 dt)
Definition: control.c:4589
int vnet_lisp_map_register_enable_disable(u8 is_enable)
Definition: control.c:2146
u32 vnet_lisp_map_register_fallback_threshold_get(void)
Definition: control.c:1667
u32 fib_node_index_t
A typedef of a node index.
Definition: fib_types.h:28
#define pool_is_free_index(P, I)
Use free bitmap to query whether given index is free.
Definition: pool.h:267
void * lisp_msg_put_map_reply(vlib_buffer_t *b, mapping_t *records, u64 nonce, u8 probe_bit)
void vlib_put_next_frame(vlib_main_t *vm, vlib_node_runtime_t *r, u32 next_index, u32 n_vectors_left)
Release pointer to next frame vector data.
Definition: main.c:454
ip4_address_t map_resolver_ip
Definition: control.c:3567
static int send_rloc_probe(lisp_cp_main_t *lcm, gid_address_t *deid, u32 local_locator_set_index, ip_address_t *sloc, ip_address_t *rloc)
Definition: control.c:2750
lisp_key_type_t key_id
Definition: lisp_types.h:374
lisp_transport_protocol_t
Definition: control.h:143
#define PENDING_MREG_EXPIRATION_TIME
Definition: control.h:42
#define gid_address_nsh_si(_a)
Definition: lisp_types.h:270
#define vec_is_equal(v1, v2)
Compare two vectors, not NULL-pointer tolerant.
Definition: vec.h:906
void * ip_interface_get_first_address(ip_lookup_main_t *lm, u32 sw_if_index, u8 version)
Definition: control.c:115
enum fib_entry_flag_t_ fib_entry_flag_t
static void * ip6_next_header(ip6_header_t *i)
Definition: ip6_packet.h:351
lisp_gpe_tunnel_key_t * key
RLOC pair and rloc fib_index.
#define fid_addr_ippref(_a)
Definition: lisp_types.h:131
int vnet_lisp_gpe_add_del_fwd_entry(vnet_lisp_gpe_add_del_fwd_entry_args_t *a, u32 *hw_if_indexp)
Forwarding entry create/remove dispatcher.
u8 vnet_lisp_enable_disable_status(void)
Definition: control.c:2206
#define MAX_VALUE_U24
Definition: control.c:31
timing_wheel_t wheel
Definition: control.h:268
Definition: control.h:106
u16 ip6_tcp_udp_icmp_compute_checksum(vlib_main_t *vm, vlib_buffer_t *p0, ip6_header_t *ip0, int *bogus_lengthp)
Definition: ip6_forward.c:1202
Definition: control.c:579
vlib_node_registration_t ip6_lookup_node
(constructor) VLIB_REGISTER_NODE (ip6_lookup_node)
Definition: ip6_forward.c:740
static uword send_map_resolver_service(vlib_main_t *vm, vlib_node_runtime_t *rt, vlib_frame_t *f)
Definition: control.c:4646
struct _gid_address_t gid_address_t
u32 fib_table_get_table_id_for_sw_if_index(fib_protocol_t proto, u32 sw_if_index)
Get the Table-ID of the FIB bound to the interface.
Definition: fib_table.c:1012
u16 cached_next_index
Next frame index that vector arguments were last enqueued to last time this node ran.
Definition: node.h:456
#define pool_put_index(p, i)
Free pool element with given index.
Definition: pool.h:293
int ip_interface_get_first_ip_address(lisp_cp_main_t *lcm, u32 sw_if_index, u8 version, ip_address_t *result)
Definition: control.c:127
int vnet_lisp_add_del_map_server(ip_address_t *addr, u8 is_add)
Definition: control.c:671
#define ASSERT(truth)
#define fid_addr_type(_a)
Definition: lisp_types.h:136
static lisp_msg_type_e lisp_msg_type(void *b)
unsigned int u32
Definition: types.h:88
u8 * format_ip_address(u8 *s, va_list *args)
Definition: lisp_types.c:144
#define GID_LOOKUP_MISS
static int send_rloc_probes(lisp_cp_main_t *lcm)
Definition: control.c:2787
#define foreach_msmr
Definition: control.c:2530
int vnet_lisp_clear_all_remote_adjacencies(void)
Definition: control.c:1426
ip6_main_t ip6_main
Definition: ip6_forward.c:3043
ip_lookup_main_t lookup_main
Definition: ip6.h:158
#define gid_address_sd_dst(_a)
Definition: lisp_types.h:279
#define MAP_REGISTER_INTERVAL
Definition: control.h:37
gid_address_t seid
Definition: control.c:51
static void get_src_and_dst_ip(void *hdr, ip_address_t *src, ip_address_t *dst)
Definition: control.c:3069
lisp_transport_protocol_t transport_protocol
either UDP based or binary API.
Definition: control.h:281
clib_error_t * lisp_gpe_init(vlib_main_t *vm)
LISP-GPE init function.
Definition: lisp_gpe.c:593
gid_dictionary_t mapping_index_by_gid
Definition: control.h:165
ip_interface_address_t * ip_interface_get_first_interface_address(ip_lookup_main_t *lm, u32 sw_if_index, u8 loop)
Definition: control.c:100
u32 gid_dictionary_sd_lookup(gid_dictionary_t *db, gid_address_t *dst, gid_address_t *src)
static u32 lisp_get_vni_from_buffer_ip(lisp_cp_main_t *lcm, vlib_buffer_t *b, u8 version)
Definition: control.c:3088
locator_set_t * locator_set_pool
Definition: control.h:177
static void clib_mem_free(void *p)
Definition: mem.h:179
u8 is_static
Definition: lisp_types.h:366
u8 is_src_dst
Definition: lisp_gpe.h:231
static void gid_address_sd_to_flat(gid_address_t *dst, gid_address_t *src, fid_address_t *fid)
Definition: control.c:398
#define gid_address_ndp_bd
Definition: lisp_types.h:287
int vnet_lisp_rloc_probe_enable_disable(u8 is_enable)
Definition: control.c:2137
u32 ** locator_set_to_eids
Definition: control.h:186
#define LISP_CONTROL_PORT
static u64 mac_to_u64(u8 *m)
Definition: load_balance.c:901
size_t count
Definition: vapi.c:40
#define vec_cmp(v1, v2)
Compare two vectors (only applicable to vectors of signed numbers).
Definition: vec.h:916
gid_address_t rmt_eid
remote eid
Definition: lisp_gpe.h:245
u64 gid_dictionary_lookup(gid_dictionary_t *db, gid_address_t *key)
static void add_l2_arp_entry(BVT(clib_bihash_kv)*kvp, void *arg)
Definition: control.c:960
#define foreach_lisp_cp_output_error
Definition: control.c:2704
#define clib_fifo_free(f)
Definition: fifo.h:257
Definition: control.h:100
pending_map_register_t * pending_map_registers_pool
Definition: control.h:211
u32 map_register_ttl
Definition: control.h:274
fwd_entry_t * fwd_entry_pool
Definition: control.h:202
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u64 uword
Definition: types.h:112
static void * vlib_add_trace(vlib_main_t *vm, vlib_node_runtime_t *r, vlib_buffer_t *b, u32 n_data_bytes)
Definition: trace_funcs.h:55
#define vec_elt(v, i)
Get vector value at index i.
int vnet_lisp_map_register_fallback_threshold_set(u32 value)
Definition: control.c:1654
pending_map_request_t * pending_map_requests_pool
Definition: control.h:208
int vnet_lisp_add_del_locator_set(vnet_lisp_add_del_locator_set_args_t *a, u32 *ls_result)
Definition: control.c:1997
#define gid_address_ip(_a)
Definition: lisp_types.h:264
Definition: defs.h:47
static void add_ndp_entry(BVT(clib_bihash_kv)*kvp, void *arg)
Definition: control.c:995
negative_fwd_actions_e action
action for negative mappings
Definition: lisp_gpe.h:239
#define clib_fifo_add1(f, e)
Definition: fifo.h:192
static u32 lisp_get_bd_from_buffer_eth(vlib_buffer_t *b)
Definition: control.c:3111
unsigned short u16
Definition: types.h:57
lisp_key_type_t
Definition: lisp_types.h:25
l2input_main_t l2input_main
Definition: l2_input.c:113
static u8 vlib_buffer_has_space(vlib_buffer_t *b, word l)
Check if there is enough space in buffer to advance.
Definition: buffer.h:220
#define gid_address_vni(_a)
Definition: lisp_types.h:271
#define hash_create_vec(elts, key_bytes, value_bytes)
Definition: hash.h:644
static u32 lisp_get_vni_from_buffer_eth(lisp_cp_main_t *lcm, vlib_buffer_t *b)
Definition: control.c:3127
#define MNOTIFY_DATA(h_)
static vlib_buffer_t * build_map_register(lisp_cp_main_t *lcm, ip_address_t *sloc, ip_address_t *ms_ip, u64 *nonce_res, u8 want_map_notif, mapping_t *records, lisp_key_type_t key_id, u8 *key, u32 *bi_res)
Definition: control.c:2644
static uword * get_locator_set_index(vnet_lisp_add_del_locator_set_args_t *a, uword *p)
Definition: control.c:1780
void locator_free(locator_t *l)
Definition: lisp_types.c:1736
ip_address_t active_map_server
Definition: control.h:227
static void remove_overlapping_sub_prefixes(lisp_cp_main_t *lcm, gid_address_t *eid, u8 is_negative)
This function searches map cache and looks for IP prefixes that are subset of the provided one...
Definition: control.c:1199
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
double f64
Definition: types.h:142
static char * lisp_cp_lookup_error_strings[]
Definition: control.c:2314
unsigned char u8
Definition: types.h:56
static int dp_add_del_iface(lisp_cp_main_t *lcm, u32 vni, u8 is_l2, u8 is_add)
Definition: control.c:224
#define GID_LOOKUP_MISS_L2
static void * vlib_frame_vector_args(vlib_frame_t *f)
Get pointer to frame vector data.
Definition: node_funcs.h:267
#define gid_address_nsh_spi(_a)
Definition: lisp_types.h:269
int vnet_lisp_del_mapping(gid_address_t *eid, u32 *res_map_index)
Removes a mapping.
Definition: control.c:1377
u32 * vnet_lisp_l2_arp_bds_get(void)
Definition: control.c:920
int vnet_lisp_add_del_locator(vnet_lisp_add_del_locator_set_args_t *a, locator_set_t *ls, u32 *ls_result)
Definition: control.c:1893
locator_pair_t * locator_pairs
vector of locator pairs
Definition: lisp_gpe.h:248
static mapping_t * lisp_get_petr_mapping(lisp_cp_main_t *lcm)
Definition: control.h:422
mapping_t * mapping_pool
Definition: control.h:168
u8 ip_address_max_len(u8 version)
Definition: lisp_types.c:549
uword * locator_set_index_by_name
Definition: control.h:183
int vnet_lisp_nsh_set_locator_set(u8 *locator_set_name, u8 is_add)
Definition: control.c:1559
static map_records_arg_t * map_record_args_get()
Definition: control.c:3906
static gid_address_t * build_itr_rloc_list(lisp_cp_main_t *lcm, locator_set_t *loc_set)
Definition: control.c:2386
l2_bridge_domain_t * bd_configs
Definition: l2_input.h:69
void gid_address_copy(gid_address_t *dst, gid_address_t *src)
Definition: lisp_types.c:1495
u32 di
Definition: control.c:582
A collection of combined counters.
Definition: counter.h:180
Definition: lisp_types.h:37
static vlib_buffer_t * build_map_request(lisp_cp_main_t *lcm, gid_address_t *deid, ip_address_t *sloc, ip_address_t *rloc, gid_address_t *itr_rlocs, u64 *nonce_res, u32 *bi_res)
Definition: control.c:2435
gid_address_t eid
Definition: lisp_types.h:351
gid_address_t address
Definition: lisp_types.h:325
#define hash_get_mem(h, key)
Definition: hash.h:268
void mac_copy(void *dst, void *src)
Definition: lisp_types.c:1051
static void add_l2_arp_bd(BVT(clib_bihash_kv)*kvp, void *arg)
Definition: control.c:908
u32 lisp_msg_parse_eid_rec(vlib_buffer_t *b, gid_address_t *eid)
#define MREG_DATA(h_)
#define vnet_buffer(b)
Definition: buffer.h:306
gid_address_t dst
Definition: control.h:50
static void map_records_arg_free(map_records_arg_t *a)
Definition: control.c:3683
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
void get_src_and_dst_eids_from_buffer(lisp_cp_main_t *lcm, vlib_buffer_t *b, gid_address_t *src, gid_address_t *dst, u16 type)
Definition: control.c:3143
int vnet_lisp_add_del_map_resolver(vnet_lisp_add_del_map_resolver_args_t *a)
Definition: control.c:2213
ip4_main_t ip4_main
Global ip4 main structure.
Definition: ip4_forward.c:1175
int vnet_lisp_gpe_get_fwd_stats(vnet_lisp_gpe_add_del_fwd_entry_args_t *a, vlib_counter_t *c)
int vnet_lisp_add_del_l2_arp_ndp_entry(gid_address_t *key, u8 *mac, u8 is_add)
Definition: control.c:1030
u32 ** lcl_to_rmt_adjacencies
Definition: control.h:196
static vlib_thread_main_t * vlib_get_thread_main()
Definition: global_funcs.h:32
static void find_ip_header(vlib_buffer_t *b, u8 **ip_hdr)
Definition: control.c:4053
ip_address_t rmt_loc
Definition: lisp_types.h:387
u8 data[0]
Packet data.
Definition: buffer.h:157
static void process_expired_mapping(lisp_cp_main_t *lcm, u32 mi)
Definition: control.c:3616
#define vec_foreach(var, vec)
Vector iterator.
static void * vlib_buffer_pull(vlib_buffer_t *b, u8 size)
Retrieve bytes from buffer head.
Definition: buffer.h:318
uword * map_register_messages_by_nonce
Definition: control.h:214
static void update_rloc_probing(lisp_cp_main_t *lcm, f64 dt)
Definition: control.c:4524
lisp_cp_main_t lisp_control_main
Definition: control.c:37
vhost_vring_addr_t addr
Definition: vhost-user.h:83
void udp_register_dst_port(vlib_main_t *vm, udp_dst_port_t dst_port, u32 node_index, u8 is_ip4)
Definition: udp_local.c:488
#define gid_address_arp_ip4(_a)
Definition: lisp_types.h:285
void * process_map_reply(map_records_arg_t *a)
Definition: control.c:3696
gid_address_t dst_eid
Definition: control.c:2337
static int parse_map_records(vlib_buffer_t *b, map_records_arg_t *a, u8 count)
Definition: control.c:3874
u8 ip_version_and_header_length
Definition: ip4_packet.h:132
uword * lisp_stats_index_by_key
Definition: lisp_gpe.h:163
static void * ip_interface_address_get_address(ip_lookup_main_t *lm, ip_interface_address_t *a)
Definition: lookup.h:172
#define MREP_NONCE(h_)
mapping_t * mappings
Definition: control.h:153
#define pool_foreach_index(i, v, body)
Iterate pool by index.
Definition: pool.h:479
u32 flags
Definition: vhost-user.h:77
Definition: lisp_types.h:38
u32 max_expired_map_registers
Definition: control.h:277
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:75
int vnet_lisp_map_register_set_ttl(u32 ttl)
Definition: control.c:2261
u32 si
Definition: control.c:581
static void update_fwd_entries_by_locator_set(lisp_cp_main_t *lcm, u8 is_local, u32 ls_index, u8 remove_only)
Definition: control.c:1857
static u32 vlib_buffer_alloc(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Allocate buffers into supplied array.
Definition: buffer_funcs.h:254
u32 vnet_lisp_map_register_get_ttl(void)
Definition: control.c:2269
static const EVP_MD * get_encrypt_fcn(lisp_key_type_t key_id)
Definition: control.c:80
static void * dp_add_fwd_entry_thread_fn(void *arg)
Definition: control.c:586
void build_src_dst(gid_address_t *sd, gid_address_t *src, gid_address_t *dst)
Definition: lisp_types.c:1743
static uword lisp_cp_lookup_ip6(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame)
Definition: control.c:3441
int vnet_lisp_use_petr(ip_address_t *ip, u8 is_add)
Configure Proxy-ETR.
Definition: control.c:1682
static void update_adjacencies_by_map_index(lisp_cp_main_t *lcm, u8 is_local, u32 mapping_index, u8 remove_only)
Definition: control.c:1825
gid_address_t lcl_eid
local eid
Definition: lisp_gpe.h:242
u32 mreq_itr_rlocs
Definition: control.h:233
u32 lisp_gpe_tenant_l3_iface_add_or_lock(u32 vni, u32 table_id)
Add/create and lock a new or find and lock the existing L3 interface for the tenant.
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
static foreach_msmr void free_map_register_records(mapping_t *maps)
Definition: control.c:2553
u32 * locator_indices
Definition: lisp_types.h:345
#define send_encapsulated_map_request(lcm, seid, deid, smr)
Definition: control.c:2911
vnet_main_t * vnet_main
Definition: control.h:287
#define MREP_RLOC_PROBE(h_)
static int is_auth_data_valid(map_notify_hdr_t *h, u32 msg_len, lisp_key_type_t key_id, u8 *key)
Definition: control.c:3770
A LISP GPE Tunnel.
static mapping_t * build_map_register_record_list(lisp_cp_main_t *lcm)
Definition: control.c:2607
u8 * format_lisp_cp_lookup_trace(u8 *s, va_list *args)
Definition: control.c:2342
#define MAP_REGISTER_DEFAULT_TTL
Definition: control.h:45
ip4_main_t * im4
Definition: control.h:284
gid_address_t leid
Definition: control.h:65
Definition: defs.h:46
lisp_msg_type_e
#define ip_prefix_addr(_a)
Definition: lisp_types.h:71
ip6_address_t dst_address
Definition: ip6_packet.h:341
#define resend_encapsulated_map_request(lcm, seid, deid, smr)
Definition: control.c:2914
lisp_cp_output_error_t
Definition: control.c:2714
#define PENDING_MREQ_EXPIRATION_TIME
Definition: control.h:25
void gid_dict_foreach_l2_arp_ndp_entry(gid_dictionary_t *db, void(*cb)(BVT(clib_bihash_kv)*kvp, void *arg), void *ht)
static int lisp_stats_api_fill(lisp_cp_main_t *lcm, lisp_gpe_main_t *lgm, lisp_api_stats_t *stat, lisp_stats_key_t *key, u32 stats_index)
Definition: control.c:4363
locator_t * locators
Definition: lisp_types.h:357
lisp_cp_input_error_t
Definition: control.c:3556
static uword lisp_cp_lookup_inline(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *from_frame, int overlay)
Definition: control.c:3256
int ip_address_cmp(const ip_address_t *ip1, const ip_address_t *ip2)
Definition: lisp_types.c:869
fib_entry_flag_t fib_entry_get_flags(fib_node_index_t fib_entry_index)
Definition: fib_entry.c:267