blob: 1caad6ab8bd88f15ddfdbaf08f9854e347348e3e [file] [log] [blame]
Florin Corase127a7e2016-02-18 22:20:01 +01001/*
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
Filip Tehlara5abdeb2016-07-18 17:35:40 +020016#include <vlibmemory/api.h>
Florin Corase127a7e2016-02-18 22:20:01 +010017#include <vnet/lisp-cp/control.h>
18#include <vnet/lisp-cp/packets.h>
19#include <vnet/lisp-cp/lisp_msg_serdes.h>
Neale Ranns5e575b12016-10-03 09:40:25 +010020#include <vnet/lisp-gpe/lisp_gpe_fwd_entry.h>
21#include <vnet/lisp-gpe/lisp_gpe_tenant.h>
Filip Tehlar4868ff62017-03-09 16:48:39 +010022#include <vnet/lisp-gpe/lisp_gpe_tunnel.h>
Neale Ranns0bfe5d82016-08-25 15:29:12 +010023#include <vnet/fib/fib_entry.h>
24#include <vnet/fib/fib_table.h>
Filip Tehlard5a65db2017-05-17 17:21:10 +020025#include <vnet/ethernet/arp_packet.h>
26#include <vnet/ethernet/packet.h>
Florin Corase127a7e2016-02-18 22:20:01 +010027
Filip Tehlar397fd7d2016-10-26 14:31:24 +020028#include <openssl/evp.h>
29#include <openssl/hmac.h>
30
Filip Tehlaref2a5bf2017-05-30 07:14:46 +020031#define MAX_VALUE_U24 0xffffff
32
Filip Tehlar809bc742017-08-14 19:15:36 +020033/* 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
Florin Corasf3dc11a2017-01-24 03:13:43 -080037lisp_cp_main_t lisp_control_main;
38
Filip Tehlarcda70662017-01-16 10:30:03 +010039u8 *format_lisp_cp_input_trace (u8 * s, va_list * args);
Filip Tehlar809bc742017-08-14 19:15:36 +020040static void *send_map_request_thread_fn (void *arg);
Filip Tehlarcda70662017-01-16 10:30:03 +010041
42typedef enum
43{
44 LISP_CP_INPUT_NEXT_DROP,
45 LISP_CP_INPUT_N_NEXT,
46} lisp_cp_input_next_t;
47
Filip Tehlara5abdeb2016-07-18 17:35:40 +020048typedef struct
49{
50 u8 is_resend;
51 gid_address_t seid;
52 gid_address_t deid;
53 u8 smr_invoked;
54} map_request_args_t;
55
Florin Corasdca88042016-09-14 16:01:38 +020056u8
57vnet_lisp_get_map_request_mode (void)
58{
59 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
60 return lcm->map_request_mode;
61}
62
Filip Tehlar397fd7d2016-10-26 14:31:24 +020063static u16
64auth_data_len_by_key_id (lisp_key_type_t key_id)
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
79static const EVP_MD *
80get_encrypt_fcn (lisp_key_type_t key_id)
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
Filip Tehlara5abdeb2016-07-18 17:35:40 +020095static int
96queue_map_request (gid_address_t * seid, gid_address_t * deid,
Florin Corasa2157cf2016-08-16 21:09:14 +020097 u8 smr_invoked, u8 is_resend);
Filip Tehlara5abdeb2016-07-18 17:35:40 +020098
Florin Corasf727db92016-06-23 15:01:58 +020099ip_interface_address_t *
Florin Corasa2157cf2016-08-16 21:09:14 +0200100ip_interface_get_first_interface_address (ip_lookup_main_t * lm,
101 u32 sw_if_index, u8 loop)
Florin Corasf727db92016-06-23 15:01:58 +0200102{
103 vnet_main_t *vnm = vnet_get_main ();
Florin Corasa2157cf2016-08-16 21:09:14 +0200104 vnet_sw_interface_t *swif = vnet_get_sw_interface (vnm, sw_if_index);
Florin Corasf727db92016-06-23 15:01:58 +0200105 if (loop && swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
106 sw_if_index = swif->unnumbered_sw_if_index;
107 u32 ia =
Florin Corasa2157cf2016-08-16 21:09:14 +0200108 (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);
Florin Corasf727db92016-06-23 15:01:58 +0200112}
Filip Tehlar215104e2016-05-10 16:58:29 +0200113
Florin Corasf727db92016-06-23 15:01:58 +0200114void *
115ip_interface_get_first_address (ip_lookup_main_t * lm, u32 sw_if_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200116 u8 version)
Florin Corasf727db92016-06-23 15:01:58 +0200117{
Florin Corasa2157cf2016-08-16 21:09:14 +0200118 ip_interface_address_t *ia;
Filip Tehlar195bcee2016-05-13 17:37:35 +0200119
Florin Corasf727db92016-06-23 15:01:58 +0200120 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}
Filip Tehlar195bcee2016-05-13 17:37:35 +0200125
Florin Corase127a7e2016-02-18 22:20:01 +0100126int
Florin Corasf727db92016-06-23 15:01:58 +0200127ip_interface_get_first_ip_address (lisp_cp_main_t * lcm, u32 sw_if_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200128 u8 version, ip_address_t * result)
Florin Corasf727db92016-06-23 15:01:58 +0200129{
Florin Corasa2157cf2016-08-16 21:09:14 +0200130 ip_lookup_main_t *lm;
131 void *addr;
Florin Corasf727db92016-06-23 15:01:58 +0200132
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
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100142/**
143 * convert from a LISP address to a FIB prefix
144 */
145void
146ip_address_to_fib_prefix (const ip_address_t * addr, fib_prefix_t * prefix)
Florin Corasf727db92016-06-23 15:01:58 +0200147{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100148 if (addr->version == IP4)
149 {
150 prefix->fp_len = 32;
151 prefix->fp_proto = FIB_PROTOCOL_IP4;
Dave Barachb7b92992018-10-17 10:38:51 -0400152 clib_memset (&prefix->fp_addr.pad, 0, sizeof (prefix->fp_addr.pad));
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100153 memcpy (&prefix->fp_addr.ip4, &addr->ip, sizeof (prefix->fp_addr.ip4));
154 }
Florin Corasf727db92016-06-23 15:01:58 +0200155 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100156 {
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 }
Florin Corasf727db92016-06-23 15:01:58 +0200161}
162
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100163/**
164 * convert from a LISP to a FIB prefix
165 */
166void
167ip_prefix_to_fib_prefix (const ip_prefix_t * ip_prefix,
168 fib_prefix_t * fib_prefix)
Florin Corasf727db92016-06-23 15:01:58 +0200169{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100170 ip_address_to_fib_prefix (&ip_prefix->addr, fib_prefix);
171 fib_prefix->fp_len = ip_prefix->len;
Florin Corasf727db92016-06-23 15:01:58 +0200172}
173
174/**
175 * Find the sw_if_index of the interface that would be used to egress towards
176 * dst.
177 */
178u32
179ip_fib_get_egress_iface_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst)
180{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100181 fib_node_index_t fei;
182 fib_prefix_t prefix;
Florin Corasf727db92016-06-23 15:01:58 +0200183
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100184 ip_address_to_fib_prefix (dst, &prefix);
Florin Corasf727db92016-06-23 15:01:58 +0200185
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100186 fei = fib_table_lookup (0, &prefix);
187
188 return (fib_entry_get_resolving_interface (fei));
Florin Corasf727db92016-06-23 15:01:58 +0200189}
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 */
195int
196ip_fib_get_first_egress_ip_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst,
Florin Corasa2157cf2016-08-16 21:09:14 +0200197 ip_address_t * result)
Florin Corasf727db92016-06-23 15:01:58 +0200198{
199 u32 si;
Florin Corasa2157cf2016-08-16 21:09:14 +0200200 ip_lookup_main_t *lm;
201 void *addr = 0;
Florin Corasf727db92016-06-23 15:01:58 +0200202 u8 ipver;
203
Florin Corasa2157cf2016-08-16 21:09:14 +0200204 ASSERT (result != 0);
Florin Corasf727db92016-06-23 15:01:58 +0200205
Florin Corasa2157cf2016-08-16 21:09:14 +0200206 ipver = ip_addr_version (dst);
Florin Corasf727db92016-06-23 15:01:58 +0200207
208 lm = (ipver == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100209 si = ip_fib_get_egress_iface_for_dst (lcm, dst);
Florin Corasf727db92016-06-23 15:01:58 +0200210
Florin Corasa2157cf2016-08-16 21:09:14 +0200211 if ((u32) ~ 0 == si)
Florin Corasf727db92016-06-23 15:01:58 +0200212 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
223static int
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700224dp_add_del_iface (lisp_cp_main_t * lcm, u32 vni, u8 is_l2, u8 is_add,
225 u8 with_default_route)
Florin Corasf727db92016-06-23 15:01:58 +0200226{
Neale Ranns5e575b12016-10-03 09:40:25 +0100227 uword *dp_table;
Florin Corasf727db92016-06-23 15:01:58 +0200228
Florin Coras1a1adc72016-07-22 01:45:30 +0200229 if (!is_l2)
Florin Corasf727db92016-06-23 15:01:58 +0200230 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200231 dp_table = hash_get (lcm->table_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200232
233 if (!dp_table)
Florin Corasa2157cf2016-08-16 21:09:14 +0200234 {
235 clib_warning ("vni %d not associated to a vrf!", vni);
236 return VNET_API_ERROR_INVALID_VALUE;
237 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200238 }
239 else
240 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200241 dp_table = hash_get (lcm->bd_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200242 if (!dp_table)
Florin Corasa2157cf2016-08-16 21:09:14 +0200243 {
244 clib_warning ("vni %d not associated to a bridge domain!", vni);
245 return VNET_API_ERROR_INVALID_VALUE;
246 }
Florin Corasf727db92016-06-23 15:01:58 +0200247 }
248
Florin Corasf727db92016-06-23 15:01:58 +0200249 /* enable/disable data-plane interface */
250 if (is_add)
251 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100252 if (is_l2)
253 lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table[0]);
254 else
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700255 lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table[0],
256 with_default_route);
Florin Corasf727db92016-06-23 15:01:58 +0200257 }
258 else
259 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100260 if (is_l2)
261 lisp_gpe_tenant_l2_iface_unlock (vni);
262 else
263 lisp_gpe_tenant_l3_iface_unlock (vni);
Florin Corasf727db92016-06-23 15:01:58 +0200264 }
265
266 return 0;
267}
268
269static void
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700270dp_del_fwd_entry (lisp_cp_main_t * lcm, u32 dst_map_index)
Florin Corasf727db92016-06-23 15:01:58 +0200271{
Florin Corasa2157cf2016-08-16 21:09:14 +0200272 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
273 fwd_entry_t *fe = 0;
274 uword *feip = 0;
Dave Barachb7b92992018-10-17 10:38:51 -0400275 clib_memset (a, 0, sizeof (*a));
Florin Corasf727db92016-06-23 15:01:58 +0200276
Florin Corasa2157cf2016-08-16 21:09:14 +0200277 feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200278 if (!feip)
279 return;
280
Florin Corasa2157cf2016-08-16 21:09:14 +0200281 fe = pool_elt_at_index (lcm->fwd_entry_pool, feip[0]);
Florin Corasf727db92016-06-23 15:01:58 +0200282
283 /* delete dp fwd entry */
284 u32 sw_if_index;
285 a->is_add = 0;
Florin Corasbb5c22f2016-08-02 02:31:03 +0200286 a->locator_pairs = fe->locator_pairs;
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200287 a->vni = gid_address_vni (&fe->reid);
288 gid_address_copy (&a->rmt_eid, &fe->reid);
Filip Tehlard5fcc462016-10-17 16:20:18 +0200289 if (fe->is_src_dst)
290 gid_address_copy (&a->lcl_eid, &fe->leid);
Florin Corasf727db92016-06-23 15:01:58 +0200291
Filip Tehlar21511912017-04-07 10:41:42 +0200292 vnet_lisp_gpe_del_fwd_counters (a, feip[0]);
Florin Corasf727db92016-06-23 15:01:58 +0200293 vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
294
295 /* delete entry in fwd table */
Florin Corasa2157cf2016-08-16 21:09:14 +0200296 hash_unset (lcm->fwd_entry_by_mapping_index, dst_map_index);
297 vec_free (fe->locator_pairs);
298 pool_put (lcm->fwd_entry_pool, fe);
Florin Corasf727db92016-06-23 15:01:58 +0200299}
300
301/**
302 * Finds first remote locator with best (lowest) priority that has a local
303 * peer locator with an underlying route to it.
304 *
305 */
306static u32
Florin Corasa2157cf2016-08-16 21:09:14 +0200307get_locator_pairs (lisp_cp_main_t * lcm, mapping_t * lcl_map,
308 mapping_t * rmt_map, locator_pair_t ** locator_pairs)
Florin Corasf727db92016-06-23 15:01:58 +0200309{
Florin Coras3590ac52016-08-08 16:04:26 +0200310 u32 i, limitp = 0, li, found = 0, esi;
Florin Corasa2157cf2016-08-16 21:09:14 +0200311 locator_set_t *rmt_ls, *lcl_ls;
312 ip_address_t _lcl_addr, *lcl_addr = &_lcl_addr;
313 locator_t *lp, *rmt = 0;
314 uword *checked = 0;
Florin Corasbb5c22f2016-08-02 02:31:03 +0200315 locator_pair_t pair;
Florin Corasf727db92016-06-23 15:01:58 +0200316
Florin Corasa2157cf2016-08-16 21:09:14 +0200317 rmt_ls =
318 pool_elt_at_index (lcm->locator_set_pool, rmt_map->locator_set_index);
319 lcl_ls =
320 pool_elt_at_index (lcm->locator_set_pool, lcl_map->locator_set_index);
Florin Corasf727db92016-06-23 15:01:58 +0200321
Florin Corasa2157cf2016-08-16 21:09:14 +0200322 if (!rmt_ls || vec_len (rmt_ls->locator_indices) == 0)
Florin Corasf727db92016-06-23 15:01:58 +0200323 return 0;
324
Florin Coras3590ac52016-08-08 16:04:26 +0200325 while (1)
Florin Corasf727db92016-06-23 15:01:58 +0200326 {
327 rmt = 0;
328
329 /* find unvisited remote locator with best priority */
Florin Corasa2157cf2016-08-16 21:09:14 +0200330 for (i = 0; i < vec_len (rmt_ls->locator_indices); i++)
331 {
332 if (0 != hash_get (checked, i))
333 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200334
Florin Corasa2157cf2016-08-16 21:09:14 +0200335 li = vec_elt (rmt_ls->locator_indices, i);
336 lp = pool_elt_at_index (lcm->locator_pool, li);
Florin Corasf727db92016-06-23 15:01:58 +0200337
Florin Corasa2157cf2016-08-16 21:09:14 +0200338 /* we don't support non-IP locators for now */
339 if (gid_address_type (&lp->address) != GID_ADDR_IP_PREFIX)
340 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200341
Florin Corasa2157cf2016-08-16 21:09:14 +0200342 if ((found && lp->priority == limitp)
343 || (!found && lp->priority >= limitp))
344 {
345 rmt = lp;
Florin Coras3590ac52016-08-08 16:04:26 +0200346
Florin Corasa2157cf2016-08-16 21:09:14 +0200347 /* don't search for locators with lower priority and don't
348 * check this locator again*/
349 limitp = lp->priority;
350 hash_set (checked, i, 1);
351 break;
352 }
353 }
Florin Corasf727db92016-06-23 15:01:58 +0200354 /* check if a local locator with a route to remote locator exists */
355 if (rmt != 0)
Florin Corasa2157cf2016-08-16 21:09:14 +0200356 {
357 /* find egress sw_if_index for rmt locator */
358 esi =
359 ip_fib_get_egress_iface_for_dst (lcm,
360 &gid_address_ip (&rmt->address));
361 if ((u32) ~ 0 == esi)
362 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200363
Florin Corasa2157cf2016-08-16 21:09:14 +0200364 for (i = 0; i < vec_len (lcl_ls->locator_indices); i++)
365 {
366 li = vec_elt (lcl_ls->locator_indices, i);
367 locator_t *sl = pool_elt_at_index (lcm->locator_pool, li);
Florin Corasf727db92016-06-23 15:01:58 +0200368
Florin Corasa2157cf2016-08-16 21:09:14 +0200369 /* found local locator with the needed sw_if_index */
370 if (sl->sw_if_index == esi)
371 {
372 /* and it has an address */
373 if (0 == ip_interface_get_first_ip_address (lcm,
374 sl->sw_if_index,
375 gid_address_ip_version
376 (&rmt->address),
377 lcl_addr))
378 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200379
Dave Barachb7b92992018-10-17 10:38:51 -0400380 clib_memset (&pair, 0, sizeof (pair));
Florin Corasa2157cf2016-08-16 21:09:14 +0200381 ip_address_copy (&pair.rmt_loc,
382 &gid_address_ip (&rmt->address));
383 ip_address_copy (&pair.lcl_loc, lcl_addr);
384 pair.weight = rmt->weight;
Filip Tehlarfb9931f2016-12-09 13:52:38 +0100385 pair.priority = rmt->priority;
Florin Corasa2157cf2016-08-16 21:09:14 +0200386 vec_add1 (locator_pairs[0], pair);
387 found = 1;
388 }
389 }
390 }
Florin Corasf727db92016-06-23 15:01:58 +0200391 else
Florin Corasa2157cf2016-08-16 21:09:14 +0200392 break;
Florin Corasf727db92016-06-23 15:01:58 +0200393 }
Florin Coras3590ac52016-08-08 16:04:26 +0200394
Florin Corasa2157cf2016-08-16 21:09:14 +0200395 hash_free (checked);
Florin Coras3590ac52016-08-08 16:04:26 +0200396 return found;
Florin Corasf727db92016-06-23 15:01:58 +0200397}
398
399static void
Florin Corasdca88042016-09-14 16:01:38 +0200400gid_address_sd_to_flat (gid_address_t * dst, gid_address_t * src,
401 fid_address_t * fid)
402{
403 ASSERT (GID_ADDR_SRC_DST == gid_address_type (src));
404
405 dst[0] = src[0];
406
407 switch (fid_addr_type (fid))
408 {
409 case FID_ADDR_IP_PREF:
410 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
411 gid_address_ippref (dst) = fid_addr_ippref (fid);
412 break;
413 case FID_ADDR_MAC:
414 gid_address_type (dst) = GID_ADDR_MAC;
415 mac_copy (gid_address_mac (dst), fid_addr_mac (fid));
416 break;
417 default:
418 clib_warning ("Unsupported fid type %d!", fid_addr_type (fid));
419 break;
420 }
421}
422
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200423u8
424vnet_lisp_map_register_state_get (void)
425{
426 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
427 return lcm->map_registering;
428}
429
430u8
431vnet_lisp_rloc_probe_state_get (void)
432{
433 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
434 return lcm->rloc_probing;
435}
436
Florin Corasdca88042016-09-14 16:01:38 +0200437static void
Florin Corasa2157cf2016-08-16 21:09:14 +0200438dp_add_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index)
Florin Corasf727db92016-06-23 15:01:58 +0200439{
Florin Corasa2157cf2016-08-16 21:09:14 +0200440 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
Florin Corasba888e42017-01-24 11:38:18 -0800441 gid_address_t *rmt_eid, *lcl_eid;
442 mapping_t *lcl_map, *rmt_map;
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700443 u32 sw_if_index, **rmts, rmts_idx;
444 uword *feip = 0, *dpid, *rmts_stored_idxp = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +0200445 fwd_entry_t *fe;
Filip Tehlar69a9b762016-09-23 10:00:52 +0200446 u8 type, is_src_dst = 0;
Florin Corasba888e42017-01-24 11:38:18 -0800447 int rv;
Florin Corasf727db92016-06-23 15:01:58 +0200448
Dave Barachb7b92992018-10-17 10:38:51 -0400449 clib_memset (a, 0, sizeof (*a));
Florin Corasf727db92016-06-23 15:01:58 +0200450
451 /* remove entry if it already exists */
452 feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
453 if (feip)
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700454 dp_del_fwd_entry (lcm, dst_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200455
Florin Corasba888e42017-01-24 11:38:18 -0800456 /*
457 * Determine local mapping and eid
458 */
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700459 if (lcm->flags & LISP_FLAG_PITR_MODE)
460 {
461 if (lcm->pitr_map_index != ~0)
462 lcl_map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
463 else
464 {
465 clib_warning ("no PITR mapping configured!");
466 return;
467 }
468 }
Filip Tehlarf3e3fd32016-09-30 12:47:59 +0200469 else
Florin Corasba888e42017-01-24 11:38:18 -0800470 lcl_map = pool_elt_at_index (lcm->mapping_pool, src_map_index);
471 lcl_eid = &lcl_map->eid;
Florin Corasf727db92016-06-23 15:01:58 +0200472
Florin Corasba888e42017-01-24 11:38:18 -0800473 /*
474 * Determine remote mapping and eid
475 */
476 rmt_map = pool_elt_at_index (lcm->mapping_pool, dst_map_index);
477 rmt_eid = &rmt_map->eid;
478
479 /*
480 * Build and insert data plane forwarding entry
481 */
Florin Corasf727db92016-06-23 15:01:58 +0200482 a->is_add = 1;
483
Filip Tehlard5fcc462016-10-17 16:20:18 +0200484 if (MR_MODE_SRC_DST == lcm->map_request_mode)
Florin Corasdca88042016-09-14 16:01:38 +0200485 {
Florin Corasba888e42017-01-24 11:38:18 -0800486 if (GID_ADDR_SRC_DST == gid_address_type (rmt_eid))
Filip Tehlard5fcc462016-10-17 16:20:18 +0200487 {
Florin Corasba888e42017-01-24 11:38:18 -0800488 gid_address_sd_to_flat (&a->rmt_eid, rmt_eid,
489 &gid_address_sd_dst (rmt_eid));
490 gid_address_sd_to_flat (&a->lcl_eid, rmt_eid,
491 &gid_address_sd_src (rmt_eid));
Filip Tehlard5fcc462016-10-17 16:20:18 +0200492 }
493 else
494 {
Florin Corasba888e42017-01-24 11:38:18 -0800495 gid_address_copy (&a->rmt_eid, rmt_eid);
496 gid_address_copy (&a->lcl_eid, lcl_eid);
Filip Tehlard5fcc462016-10-17 16:20:18 +0200497 }
Filip Tehlar69a9b762016-09-23 10:00:52 +0200498 is_src_dst = 1;
Florin Corasdca88042016-09-14 16:01:38 +0200499 }
500 else
Florin Corasba888e42017-01-24 11:38:18 -0800501 gid_address_copy (&a->rmt_eid, rmt_eid);
Florin Corasdca88042016-09-14 16:01:38 +0200502
Florin Corasa2157cf2016-08-16 21:09:14 +0200503 a->vni = gid_address_vni (&a->rmt_eid);
Filip Tehlared6b52b2017-03-22 09:02:33 +0100504 a->is_src_dst = is_src_dst;
Florin Coras1a1adc72016-07-22 01:45:30 +0200505
506 /* get vrf or bd_index associated to vni */
Florin Corasdca88042016-09-14 16:01:38 +0200507 type = gid_address_type (&a->rmt_eid);
Florin Coras1a1adc72016-07-22 01:45:30 +0200508 if (GID_ADDR_IP_PREFIX == type)
509 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200510 dpid = hash_get (lcm->table_id_by_vni, a->vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200511 if (!dpid)
Florin Corasa2157cf2016-08-16 21:09:14 +0200512 {
513 clib_warning ("vni %d not associated to a vrf!", a->vni);
514 return;
515 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200516 a->table_id = dpid[0];
517 }
518 else if (GID_ADDR_MAC == type)
519 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200520 dpid = hash_get (lcm->bd_id_by_vni, a->vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200521 if (!dpid)
Florin Corasa2157cf2016-08-16 21:09:14 +0200522 {
523 clib_warning ("vni %d not associated to a bridge domain !", a->vni);
524 return;
525 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200526 a->bd_id = dpid[0];
527 }
528
Florin Corasf727db92016-06-23 15:01:58 +0200529 /* find best locator pair that 1) verifies LISP policy 2) are connected */
Florin Corasba888e42017-01-24 11:38:18 -0800530 rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
531
532 /* Either rmt mapping is negative or we can't find underlay path.
533 * Try again with petr if configured */
534 if (rv == 0 && (lcm->flags & LISP_FLAG_USE_PETR))
Florin Corasf727db92016-06-23 15:01:58 +0200535 {
Florin Corasba888e42017-01-24 11:38:18 -0800536 rmt_map = lisp_get_petr_mapping (lcm);
537 rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
Florin Corasf727db92016-06-23 15:01:58 +0200538 }
539
Florin Corasba888e42017-01-24 11:38:18 -0800540 /* negative entry */
541 if (rv == 0)
542 {
543 a->is_negative = 1;
544 a->action = rmt_map->action;
545 }
Florin Corasf727db92016-06-23 15:01:58 +0200546
Filip Tehlar21511912017-04-07 10:41:42 +0200547 rv = vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
548 if (rv)
549 {
550 if (a->locator_pairs)
551 vec_free (a->locator_pairs);
552 return;
553 }
Florin Corasf727db92016-06-23 15:01:58 +0200554
Filip Tehlar21511912017-04-07 10:41:42 +0200555 /* add tunnel to fwd entry table */
Florin Corasf727db92016-06-23 15:01:58 +0200556 pool_get (lcm->fwd_entry_pool, fe);
Filip Tehlar21511912017-04-07 10:41:42 +0200557 vnet_lisp_gpe_add_fwd_counters (a, fe - lcm->fwd_entry_pool);
558
Florin Corasbb5c22f2016-08-02 02:31:03 +0200559 fe->locator_pairs = a->locator_pairs;
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200560 gid_address_copy (&fe->reid, &a->rmt_eid);
Filip Tehlarb601f222017-01-02 10:22:56 +0100561
562 if (is_src_dst)
563 gid_address_copy (&fe->leid, &a->lcl_eid);
564 else
Florin Corasba888e42017-01-24 11:38:18 -0800565 gid_address_copy (&fe->leid, lcl_eid);
Filip Tehlarb601f222017-01-02 10:22:56 +0100566
Filip Tehlar69a9b762016-09-23 10:00:52 +0200567 fe->is_src_dst = is_src_dst;
Florin Corasf727db92016-06-23 15:01:58 +0200568 hash_set (lcm->fwd_entry_by_mapping_index, dst_map_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200569 fe - lcm->fwd_entry_pool);
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700570
571 /* Add rmt mapping to the vector of adjacent mappings to lcl mapping */
572 rmts_stored_idxp =
573 hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index);
574 if (!rmts_stored_idxp)
575 {
576 pool_get (lcm->lcl_to_rmt_adjacencies, rmts);
Dave Barachb7b92992018-10-17 10:38:51 -0400577 clib_memset (rmts, 0, sizeof (*rmts));
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700578 rmts_idx = rmts - lcm->lcl_to_rmt_adjacencies;
579 hash_set (lcm->lcl_to_rmt_adjs_by_lcl_idx, src_map_index, rmts_idx);
580 }
581 else
582 {
583 rmts_idx = (u32) (*rmts_stored_idxp);
584 rmts = pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idx);
585 }
586 vec_add1 (rmts[0], dst_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200587}
588
Filip Tehlarce1aae42017-01-04 10:42:25 +0100589typedef struct
590{
591 u32 si;
592 u32 di;
593} fwd_entry_mt_arg_t;
594
595static void *
596dp_add_fwd_entry_thread_fn (void *arg)
597{
598 fwd_entry_mt_arg_t *a = arg;
599 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
600 dp_add_fwd_entry (lcm, a->si, a->di);
601 return 0;
602}
603
604static int
605dp_add_fwd_entry_from_mt (u32 si, u32 di)
606{
607 fwd_entry_mt_arg_t a;
608
Dave Barachb7b92992018-10-17 10:38:51 -0400609 clib_memset (&a, 0, sizeof (a));
Filip Tehlarce1aae42017-01-04 10:42:25 +0100610 a.si = si;
611 a.di = di;
612
613 vl_api_rpc_call_main_thread (dp_add_fwd_entry_thread_fn,
614 (u8 *) & a, sizeof (a));
615 return 0;
616}
617
Florin Corasf727db92016-06-23 15:01:58 +0200618/**
Filip Tehlar69a9b762016-09-23 10:00:52 +0200619 * Returns vector of adjacencies.
620 *
621 * The caller must free the vector returned by this function.
622 *
623 * @param vni virtual network identifier
624 * @return vector of adjacencies
625 */
626lisp_adjacency_t *
627vnet_lisp_adjacencies_get_by_vni (u32 vni)
628{
629 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
630 fwd_entry_t *fwd;
631 lisp_adjacency_t *adjs = 0, adj;
632
633 /* *INDENT-OFF* */
634 pool_foreach(fwd, lcm->fwd_entry_pool,
635 ({
636 if (gid_address_vni (&fwd->reid) != vni)
637 continue;
638
639 gid_address_copy (&adj.reid, &fwd->reid);
640 gid_address_copy (&adj.leid, &fwd->leid);
641 vec_add1 (adjs, adj);
642 }));
643 /* *INDENT-ON* */
644
645 return adjs;
646}
647
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200648static lisp_msmr_t *
649get_map_server (ip_address_t * a)
650{
651 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
652 lisp_msmr_t *m;
653
654 vec_foreach (m, lcm->map_servers)
655 {
656 if (!ip_address_cmp (&m->address, a))
657 {
658 return m;
659 }
660 }
661 return 0;
662}
663
664static lisp_msmr_t *
665get_map_resolver (ip_address_t * a)
666{
667 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
668 lisp_msmr_t *m;
669
670 vec_foreach (m, lcm->map_resolvers)
671 {
672 if (!ip_address_cmp (&m->address, a))
673 {
674 return m;
675 }
676 }
677 return 0;
678}
679
680int
681vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add)
682{
683 u32 i;
684 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
685 lisp_msmr_t _ms, *ms = &_ms;
686
687 if (vnet_lisp_enable_disable_status () == 0)
688 {
689 clib_warning ("LISP is disabled!");
690 return VNET_API_ERROR_LISP_DISABLED;
691 }
692
693 if (is_add)
694 {
695 if (get_map_server (addr))
696 {
697 clib_warning ("map-server %U already exists!", format_ip_address,
698 addr);
699 return -1;
700 }
701
Dave Barachb7b92992018-10-17 10:38:51 -0400702 clib_memset (ms, 0, sizeof (*ms));
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200703 ip_address_copy (&ms->address, addr);
704 vec_add1 (lcm->map_servers, ms[0]);
Filip Tehlar7048ff12017-07-27 08:09:14 +0200705
706 if (vec_len (lcm->map_servers) == 1)
707 lcm->do_map_server_election = 1;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200708 }
709 else
710 {
711 for (i = 0; i < vec_len (lcm->map_servers); i++)
712 {
713 ms = vec_elt_at_index (lcm->map_servers, i);
714 if (!ip_address_cmp (&ms->address, addr))
715 {
Filip Tehlar7048ff12017-07-27 08:09:14 +0200716 if (!ip_address_cmp (&ms->address, &lcm->active_map_server))
717 lcm->do_map_server_election = 1;
718
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200719 vec_del1 (lcm->map_servers, i);
720 break;
721 }
722 }
723 }
724
725 return 0;
726}
727
Filip Tehlar69a9b762016-09-23 10:00:52 +0200728/**
Florin Corasf727db92016-06-23 15:01:58 +0200729 * Add/remove mapping to/from map-cache. Overwriting not allowed.
730 */
731int
732vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200733 u32 * map_index_result)
Florin Corase127a7e2016-02-18 22:20:01 +0100734{
Florin Corasa2157cf2016-08-16 21:09:14 +0200735 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
736 u32 mi, *map_indexp, map_index, i;
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700737 u32 **rmts = 0, *remote_idxp, rmts_itr, remote_idx;
738 uword *rmts_idxp;
Florin Corasa2157cf2016-08-16 21:09:14 +0200739 mapping_t *m, *old_map;
740 u32 **eid_indexes;
Florin Corase127a7e2016-02-18 22:20:01 +0100741
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200742 if (gid_address_type (&a->eid) == GID_ADDR_NSH)
743 {
744 if (gid_address_vni (&a->eid) != 0)
745 {
746 clib_warning ("Supported only default VNI for NSH!");
747 return VNET_API_ERROR_INVALID_ARGUMENT;
748 }
749 if (gid_address_nsh_spi (&a->eid) > MAX_VALUE_U24)
750 {
751 clib_warning ("SPI is greater than 24bit!");
752 return VNET_API_ERROR_INVALID_ARGUMENT;
753 }
754 }
755
Florin Corasf727db92016-06-23 15:01:58 +0200756 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->eid);
Filip Tehlar53f09e32016-05-19 14:25:44 +0200757 old_map = mi != ~0 ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100758 if (a->is_add)
759 {
760 /* TODO check if overwriting and take appropriate actions */
Florin Corasa2157cf2016-08-16 21:09:14 +0200761 if (mi != GID_LOOKUP_MISS && !gid_address_cmp (&old_map->eid, &a->eid))
762 {
763 clib_warning ("eid %U found in the eid-table", format_gid_address,
764 &a->eid);
765 return VNET_API_ERROR_VALUE_EXIST;
766 }
Florin Corase127a7e2016-02-18 22:20:01 +0100767
Florin Corasa2157cf2016-08-16 21:09:14 +0200768 pool_get (lcm->mapping_pool, m);
Florin Corasf727db92016-06-23 15:01:58 +0200769 gid_address_copy (&m->eid, &a->eid);
Florin Corase127a7e2016-02-18 22:20:01 +0100770 m->locator_set_index = a->locator_set_index;
771 m->ttl = a->ttl;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200772 m->action = a->action;
Florin Corase127a7e2016-02-18 22:20:01 +0100773 m->local = a->local;
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200774 m->is_static = a->is_static;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200775 m->key = vec_dup (a->key);
776 m->key_id = a->key_id;
Florin Corase51a7a02019-01-21 17:36:28 -0800777 m->authoritative = a->authoritative;
Florin Corase127a7e2016-02-18 22:20:01 +0100778
779 map_index = m - lcm->mapping_pool;
Florin Corasf727db92016-06-23 15:01:58 +0200780 gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, map_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200781 1);
Florin Corase127a7e2016-02-18 22:20:01 +0100782
Florin Corasa2157cf2016-08-16 21:09:14 +0200783 if (pool_is_free_index (lcm->locator_set_pool, a->locator_set_index))
784 {
785 clib_warning ("Locator set with index %d doesn't exist",
786 a->locator_set_index);
787 return VNET_API_ERROR_INVALID_VALUE;
788 }
Florin Corase127a7e2016-02-18 22:20:01 +0100789
790 /* add eid to list of eids supported by locator-set */
791 vec_validate (lcm->locator_set_to_eids, a->locator_set_index);
Florin Corasa2157cf2016-08-16 21:09:14 +0200792 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
793 a->locator_set_index);
794 vec_add1 (eid_indexes[0], map_index);
Florin Corase127a7e2016-02-18 22:20:01 +0100795
796 if (a->local)
Florin Corasa2157cf2016-08-16 21:09:14 +0200797 {
798 /* mark as local */
799 vec_add1 (lcm->local_mappings_indexes, map_index);
800 }
Florin Corase127a7e2016-02-18 22:20:01 +0100801 map_index_result[0] = map_index;
802 }
803 else
804 {
Florin Coras577c3552016-04-21 00:45:40 +0200805 if (mi == GID_LOOKUP_MISS)
Florin Corasa2157cf2016-08-16 21:09:14 +0200806 {
807 clib_warning ("eid %U not found in the eid-table",
808 format_gid_address, &a->eid);
809 return VNET_API_ERROR_INVALID_VALUE;
810 }
Florin Corase127a7e2016-02-18 22:20:01 +0100811
812 /* clear locator-set to eids binding */
Florin Corasa2157cf2016-08-16 21:09:14 +0200813 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
814 a->locator_set_index);
815 for (i = 0; i < vec_len (eid_indexes[0]); i++)
816 {
817 map_indexp = vec_elt_at_index (eid_indexes[0], i);
818 if (map_indexp[0] == mi)
819 break;
820 }
821 vec_del1 (eid_indexes[0], i);
Florin Corase127a7e2016-02-18 22:20:01 +0100822
823 /* remove local mark if needed */
Florin Corasa2157cf2016-08-16 21:09:14 +0200824 m = pool_elt_at_index (lcm->mapping_pool, mi);
Florin Corase127a7e2016-02-18 22:20:01 +0100825 if (m->local)
Florin Corasa2157cf2016-08-16 21:09:14 +0200826 {
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700827 /* Remove adjacencies associated with the local mapping */
828 rmts_idxp = hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, mi);
829 if (rmts_idxp)
830 {
831 rmts =
832 pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idxp[0]);
833 vec_foreach (remote_idxp, rmts[0])
834 {
835 dp_del_fwd_entry (lcm, remote_idxp[0]);
836 }
837 vec_free (rmts[0]);
838 pool_put (lcm->lcl_to_rmt_adjacencies, rmts);
839 hash_unset (lcm->lcl_to_rmt_adjs_by_lcl_idx, mi);
840 }
841
Florin Corasa2157cf2016-08-16 21:09:14 +0200842 u32 k, *lm_indexp;
843 for (k = 0; k < vec_len (lcm->local_mappings_indexes); k++)
844 {
845 lm_indexp = vec_elt_at_index (lcm->local_mappings_indexes, k);
846 if (lm_indexp[0] == mi)
847 break;
848 }
849 vec_del1 (lcm->local_mappings_indexes, k);
850 }
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -0700851 else
852 {
853 /* Remove remote (if present) from the vectors of lcl-to-rmts
854 * TODO: Address this in a more efficient way.
855 */
856 /* *INDENT-OFF* */
857 pool_foreach (rmts, lcm->lcl_to_rmt_adjacencies,
858 ({
859 vec_foreach_index (rmts_itr, rmts[0])
860 {
861 remote_idx = vec_elt (rmts[0], rmts_itr);
862 if (mi == remote_idx)
863 {
864 vec_del1 (rmts[0], rmts_itr);
865 break;
866 }
867 }
868 }));
869 /* *INDENT-ON* */
870 }
Florin Corase127a7e2016-02-18 22:20:01 +0100871
872 /* remove mapping from dictionary */
Florin Corasf727db92016-06-23 15:01:58 +0200873 gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, 0, 0);
Filip Tehlar324112f2016-06-02 16:07:38 +0200874 gid_address_free (&m->eid);
Florin Corase127a7e2016-02-18 22:20:01 +0100875 pool_put_index (lcm->mapping_pool, mi);
876 }
877
878 return 0;
879}
880
Florin Corasf727db92016-06-23 15:01:58 +0200881/**
882 * Add/update/delete mapping to/in/from map-cache.
883 */
Florin Coras577c3552016-04-21 00:45:40 +0200884int
885vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200886 u32 * map_index_result)
Florin Coras577c3552016-04-21 00:45:40 +0200887{
Florin Corasa2157cf2016-08-16 21:09:14 +0200888 uword *dp_table = 0;
Florin Corasf727db92016-06-23 15:01:58 +0200889 u32 vni;
Florin Coras1a1adc72016-07-22 01:45:30 +0200890 u8 type;
Florin Corasf727db92016-06-23 15:01:58 +0200891
Florin Corasa2157cf2016-08-16 21:09:14 +0200892 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Coras577c3552016-04-21 00:45:40 +0200893
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200894 if (vnet_lisp_enable_disable_status () == 0)
895 {
896 clib_warning ("LISP is disabled!");
897 return VNET_API_ERROR_LISP_DISABLED;
898 }
899
Florin Corasa2157cf2016-08-16 21:09:14 +0200900 vni = gid_address_vni (&a->eid);
901 type = gid_address_type (&a->eid);
Florin Coras1a1adc72016-07-22 01:45:30 +0200902 if (GID_ADDR_IP_PREFIX == type)
Florin Corasa2157cf2016-08-16 21:09:14 +0200903 dp_table = hash_get (lcm->table_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200904 else if (GID_ADDR_MAC == type)
Florin Corasa2157cf2016-08-16 21:09:14 +0200905 dp_table = hash_get (lcm->bd_id_by_vni, vni);
Florin Coras577c3552016-04-21 00:45:40 +0200906
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200907 if (!dp_table && GID_ADDR_NSH != type)
Florin Coras577c3552016-04-21 00:45:40 +0200908 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200909 clib_warning ("vni %d not associated to a %s!", vni,
910 GID_ADDR_IP_PREFIX == type ? "vrf" : "bd");
Florin Coras577c3552016-04-21 00:45:40 +0200911 return VNET_API_ERROR_INVALID_VALUE;
912 }
913
Florin Corasf727db92016-06-23 15:01:58 +0200914 /* store/remove mapping from map-cache */
915 return vnet_lisp_map_cache_add_del (a, map_index_result);
Florin Coras577c3552016-04-21 00:45:40 +0200916}
917
Filip Tehlard5a65db2017-05-17 17:21:10 +0200918static void
919add_l2_arp_bd (BVT (clib_bihash_kv) * kvp, void *arg)
920{
921 u32 **ht = arg;
Filip Tehlar05879992017-09-05 15:46:09 +0200922 u32 version = (u32) kvp->key[0];
923 if (IP6 == version)
924 return;
925
926 u32 bd = (u32) (kvp->key[0] >> 32);
Filip Tehlard5a65db2017-05-17 17:21:10 +0200927 hash_set (ht[0], bd, 0);
928}
929
930u32 *
931vnet_lisp_l2_arp_bds_get (void)
932{
933 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
934 u32 *bds = 0;
935
Filip Tehlar05879992017-09-05 15:46:09 +0200936 gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid,
937 add_l2_arp_bd, &bds);
938 return bds;
939}
940
941static void
942add_ndp_bd (BVT (clib_bihash_kv) * kvp, void *arg)
943{
944 u32 **ht = arg;
945 u32 version = (u32) kvp->key[0];
946 if (IP4 == version)
947 return;
948
949 u32 bd = (u32) (kvp->key[0] >> 32);
950 hash_set (ht[0], bd, 0);
951}
952
953u32 *
954vnet_lisp_ndp_bds_get (void)
955{
956 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
957 u32 *bds = 0;
958
959 gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid,
960 add_ndp_bd, &bds);
Filip Tehlard5a65db2017-05-17 17:21:10 +0200961 return bds;
962}
963
964typedef struct
965{
966 void *vector;
967 u32 bd;
Filip Tehlar05879992017-09-05 15:46:09 +0200968} lisp_add_l2_arp_ndp_args_t;
Filip Tehlard5a65db2017-05-17 17:21:10 +0200969
970static void
971add_l2_arp_entry (BVT (clib_bihash_kv) * kvp, void *arg)
972{
Filip Tehlar05879992017-09-05 15:46:09 +0200973 lisp_add_l2_arp_ndp_args_t *a = arg;
Filip Tehlard5a65db2017-05-17 17:21:10 +0200974 lisp_api_l2_arp_entry_t **vector = a->vector, e;
975
Filip Tehlar05879992017-09-05 15:46:09 +0200976 u32 version = (u32) kvp->key[0];
977 if (IP6 == version)
978 return;
979
980 u32 bd = (u32) (kvp->key[0] >> 32);
981
982 if (bd == a->bd)
Filip Tehlard5a65db2017-05-17 17:21:10 +0200983 {
984 mac_copy (e.mac, (void *) &kvp->value);
985 e.ip4 = (u32) kvp->key[1];
986 vec_add1 (vector[0], e);
987 }
988}
989
990lisp_api_l2_arp_entry_t *
991vnet_lisp_l2_arp_entries_get_by_bd (u32 bd)
992{
993 lisp_api_l2_arp_entry_t *entries = 0;
994 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar05879992017-09-05 15:46:09 +0200995 lisp_add_l2_arp_ndp_args_t a;
Filip Tehlard5a65db2017-05-17 17:21:10 +0200996
997 a.vector = &entries;
998 a.bd = bd;
999
Filip Tehlar05879992017-09-05 15:46:09 +02001000 gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid,
1001 add_l2_arp_entry, &a);
1002 return entries;
1003}
1004
1005static void
1006add_ndp_entry (BVT (clib_bihash_kv) * kvp, void *arg)
1007{
1008 lisp_add_l2_arp_ndp_args_t *a = arg;
1009 lisp_api_ndp_entry_t **vector = a->vector, e;
1010
1011 u32 version = (u32) kvp->key[0];
1012 if (IP4 == version)
1013 return;
1014
1015 u32 bd = (u32) (kvp->key[0] >> 32);
1016
1017 if (bd == a->bd)
1018 {
1019 mac_copy (e.mac, (void *) &kvp->value);
1020 clib_memcpy (e.ip6, &kvp->key[1], 16);
1021 vec_add1 (vector[0], e);
1022 }
1023}
1024
1025lisp_api_ndp_entry_t *
1026vnet_lisp_ndp_entries_get_by_bd (u32 bd)
1027{
1028 lisp_api_ndp_entry_t *entries = 0;
1029 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1030 lisp_add_l2_arp_ndp_args_t a;
1031
1032 a.vector = &entries;
1033 a.bd = bd;
1034
1035 gid_dict_foreach_l2_arp_ndp_entry (&lcm->mapping_index_by_gid,
1036 add_ndp_entry, &a);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001037 return entries;
1038}
1039
1040int
Filip Tehlar64929642017-09-20 08:41:23 +02001041vnet_lisp_add_del_l2_arp_ndp_entry (gid_address_t * key, u8 * mac, u8 is_add)
Filip Tehlard5a65db2017-05-17 17:21:10 +02001042{
1043 if (vnet_lisp_enable_disable_status () == 0)
1044 {
1045 clib_warning ("LISP is disabled!");
1046 return VNET_API_ERROR_LISP_DISABLED;
1047 }
1048
1049 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1050 int rc = 0;
1051
1052 u64 res = gid_dictionary_lookup (&lcm->mapping_index_by_gid, key);
1053 if (is_add)
1054 {
1055 if (res != GID_LOOKUP_MISS_L2)
1056 {
1057 clib_warning ("Entry %U exists in DB!", format_gid_address, key);
1058 return VNET_API_ERROR_ENTRY_ALREADY_EXISTS;
1059 }
1060 u64 val = mac_to_u64 (mac);
1061 gid_dictionary_add_del (&lcm->mapping_index_by_gid, key, val,
1062 1 /* is_add */ );
1063 }
1064 else
1065 {
1066 if (res == GID_LOOKUP_MISS_L2)
1067 {
Filip Tehlar64929642017-09-20 08:41:23 +02001068 clib_warning ("ONE entry %U not found - cannot delete!",
Filip Tehlard5a65db2017-05-17 17:21:10 +02001069 format_gid_address, key);
1070 return -1;
1071 }
1072 gid_dictionary_add_del (&lcm->mapping_index_by_gid, key, 0,
1073 0 /* is_add */ );
1074 }
1075
1076 return rc;
1077}
1078
Filip Tehlar324112f2016-06-02 16:07:38 +02001079int
Florin Coras1a1adc72016-07-22 01:45:30 +02001080vnet_lisp_eid_table_map (u32 vni, u32 dp_id, u8 is_l2, u8 is_add)
Filip Tehlar324112f2016-06-02 16:07:38 +02001081{
Florin Corasa2157cf2016-08-16 21:09:14 +02001082 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1083 uword *dp_idp, *vnip, **dp_table_by_vni, **vni_by_dp_table;
Filip Tehlar324112f2016-06-02 16:07:38 +02001084
1085 if (vnet_lisp_enable_disable_status () == 0)
1086 {
1087 clib_warning ("LISP is disabled!");
Filip Tehlard5a65db2017-05-17 17:21:10 +02001088 return VNET_API_ERROR_LISP_DISABLED;
Filip Tehlar324112f2016-06-02 16:07:38 +02001089 }
1090
Florin Coras1a1adc72016-07-22 01:45:30 +02001091 dp_table_by_vni = is_l2 ? &lcm->bd_id_by_vni : &lcm->table_id_by_vni;
1092 vni_by_dp_table = is_l2 ? &lcm->vni_by_bd_id : &lcm->vni_by_table_id;
1093
1094 if (!is_l2 && (vni == 0 || dp_id == 0))
Filip Tehlar324112f2016-06-02 16:07:38 +02001095 {
1096 clib_warning ("can't add/del default vni-vrf mapping!");
1097 return -1;
1098 }
1099
Florin Coras1a1adc72016-07-22 01:45:30 +02001100 dp_idp = hash_get (dp_table_by_vni[0], vni);
1101 vnip = hash_get (vni_by_dp_table[0], dp_id);
Filip Tehlar324112f2016-06-02 16:07:38 +02001102
1103 if (is_add)
1104 {
Florin Coras1a1adc72016-07-22 01:45:30 +02001105 if (dp_idp || vnip)
Florin Corasa2157cf2016-08-16 21:09:14 +02001106 {
1107 clib_warning ("vni %d or vrf %d already used in vrf/vni "
1108 "mapping!", vni, dp_id);
1109 return -1;
1110 }
Florin Coras1a1adc72016-07-22 01:45:30 +02001111 hash_set (dp_table_by_vni[0], vni, dp_id);
1112 hash_set (vni_by_dp_table[0], dp_id, vni);
Florin Corasf727db92016-06-23 15:01:58 +02001113
1114 /* create dp iface */
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001115 dp_add_del_iface (lcm, vni, is_l2, 1 /* is_add */ ,
1116 1 /* with_default_route */ );
Filip Tehlar324112f2016-06-02 16:07:38 +02001117 }
1118 else
1119 {
Florin Coras1a1adc72016-07-22 01:45:30 +02001120 if (!dp_idp || !vnip)
Florin Corasa2157cf2016-08-16 21:09:14 +02001121 {
1122 clib_warning ("vni %d or vrf %d not used in any vrf/vni! "
1123 "mapping!", vni, dp_id);
1124 return -1;
1125 }
Florin Corasf727db92016-06-23 15:01:58 +02001126 /* remove dp iface */
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001127 dp_add_del_iface (lcm, vni, is_l2, 0 /* is_add */ , 0 /* unused */ );
Filip Tehlarfc568412017-04-05 10:06:03 +02001128
1129 hash_unset (dp_table_by_vni[0], vni);
1130 hash_unset (vni_by_dp_table[0], dp_id);
Filip Tehlar324112f2016-06-02 16:07:38 +02001131 }
1132 return 0;
Florin Coras1a1adc72016-07-22 01:45:30 +02001133
Filip Tehlar324112f2016-06-02 16:07:38 +02001134}
1135
Florin Corasf727db92016-06-23 15:01:58 +02001136/* return 0 if the two locator sets are identical 1 otherwise */
1137static u8
Florin Corasa2157cf2016-08-16 21:09:14 +02001138compare_locators (lisp_cp_main_t * lcm, u32 * old_ls_indexes,
1139 locator_t * new_locators)
Filip Tehlar53f09e32016-05-19 14:25:44 +02001140{
Florin Corasf727db92016-06-23 15:01:58 +02001141 u32 i, old_li;
Florin Corasa2157cf2016-08-16 21:09:14 +02001142 locator_t *old_loc, *new_loc;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001143
Florin Corasa2157cf2016-08-16 21:09:14 +02001144 if (vec_len (old_ls_indexes) != vec_len (new_locators))
Florin Corasf727db92016-06-23 15:01:58 +02001145 return 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001146
Florin Corasa2157cf2016-08-16 21:09:14 +02001147 for (i = 0; i < vec_len (new_locators); i++)
Filip Tehlar53f09e32016-05-19 14:25:44 +02001148 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001149 old_li = vec_elt (old_ls_indexes, i);
1150 old_loc = pool_elt_at_index (lcm->locator_pool, old_li);
Florin Corasf727db92016-06-23 15:01:58 +02001151
Florin Corasa2157cf2016-08-16 21:09:14 +02001152 new_loc = vec_elt_at_index (new_locators, i);
Florin Corasf727db92016-06-23 15:01:58 +02001153
1154 if (locator_cmp (old_loc, new_loc))
Florin Corasa2157cf2016-08-16 21:09:14 +02001155 return 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001156 }
Florin Corasf727db92016-06-23 15:01:58 +02001157 return 0;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001158}
1159
Filip Tehlard5fcc462016-10-17 16:20:18 +02001160typedef struct
1161{
1162 u8 is_negative;
1163 void *lcm;
1164 gid_address_t *eids_to_be_deleted;
1165} remove_mapping_args_t;
1166
1167/**
1168 * Callback invoked when a sub-prefix is found
1169 */
1170static void
1171remove_mapping_if_needed (u32 mi, void *arg)
1172{
1173 u8 delete = 0;
1174 remove_mapping_args_t *a = arg;
1175 lisp_cp_main_t *lcm = a->lcm;
1176 mapping_t *m;
1177 locator_set_t *ls;
1178
1179 m = pool_elt_at_index (lcm->mapping_pool, mi);
1180 if (!m)
1181 return;
1182
1183 ls = pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1184
1185 if (a->is_negative)
1186 {
1187 if (0 != vec_len (ls->locator_indices))
1188 delete = 1;
1189 }
1190 else
1191 {
1192 if (0 == vec_len (ls->locator_indices))
1193 delete = 1;
1194 }
1195
1196 if (delete)
1197 vec_add1 (a->eids_to_be_deleted, m->eid);
1198}
1199
1200/**
1201 * This function searches map cache and looks for IP prefixes that are subset
1202 * of the provided one. If such prefix is found depending on 'is_negative'
1203 * it does follows:
1204 *
1205 * 1) if is_negative is true and found prefix points to positive mapping,
1206 * then the mapping is removed
1207 * 2) if is_negative is false and found prefix points to negative mapping,
1208 * then the mapping is removed
1209 */
1210static void
1211remove_overlapping_sub_prefixes (lisp_cp_main_t * lcm, gid_address_t * eid,
1212 u8 is_negative)
1213{
1214 gid_address_t *e;
1215 remove_mapping_args_t a;
Florin Corasf3dc11a2017-01-24 03:13:43 -08001216
Dave Barachb7b92992018-10-17 10:38:51 -04001217 clib_memset (&a, 0, sizeof (a));
Filip Tehlard5fcc462016-10-17 16:20:18 +02001218
1219 /* do this only in src/dst mode ... */
1220 if (MR_MODE_SRC_DST != lcm->map_request_mode)
1221 return;
1222
1223 /* ... and only for IP prefix */
1224 if (GID_ADDR_SRC_DST != gid_address_type (eid)
1225 || (FID_ADDR_IP_PREF != gid_address_sd_dst_type (eid)))
1226 return;
1227
1228 a.is_negative = is_negative;
1229 a.lcm = lcm;
1230
1231 gid_dict_foreach_subprefix (&lcm->mapping_index_by_gid, eid,
1232 remove_mapping_if_needed, &a);
1233
1234 vec_foreach (e, a.eids_to_be_deleted)
Filip Tehlarfb9931f2016-12-09 13:52:38 +01001235 {
Florin Corasf3dc11a2017-01-24 03:13:43 -08001236 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
1237
Dave Barachb7b92992018-10-17 10:38:51 -04001238 clib_memset (adj_args, 0, sizeof (adj_args[0]));
Florin Corasf3dc11a2017-01-24 03:13:43 -08001239 gid_address_copy (&adj_args->reid, e);
1240 adj_args->is_add = 0;
1241 if (vnet_lisp_add_del_adjacency (adj_args))
1242 clib_warning ("failed to del adjacency!");
1243
Filip Tehlar809bc742017-08-14 19:15:36 +02001244 vnet_lisp_del_mapping (e, NULL);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01001245 }
Filip Tehlard5fcc462016-10-17 16:20:18 +02001246
1247 vec_free (a.eids_to_be_deleted);
1248}
1249
Filip Tehlar9677a942016-11-28 10:23:31 +01001250static void
1251mapping_delete_timer (lisp_cp_main_t * lcm, u32 mi)
1252{
1253 timing_wheel_delete (&lcm->wheel, mi);
1254}
1255
Filip Tehlara6bce492017-02-03 10:17:49 +01001256static int
1257is_local_ip (lisp_cp_main_t * lcm, ip_address_t * addr)
1258{
1259 fib_node_index_t fei;
1260 fib_prefix_t prefix;
1261 fib_entry_flag_t flags;
1262
1263 ip_address_to_fib_prefix (addr, &prefix);
1264
1265 fei = fib_table_lookup (0, &prefix);
1266 flags = fib_entry_get_flags (fei);
1267 return (FIB_ENTRY_FLAG_LOCAL & flags);
1268}
1269
Filip Tehlar195bcee2016-05-13 17:37:35 +02001270/**
Filip Tehlar809bc742017-08-14 19:15:36 +02001271 * Adds/updates mapping. Does not program forwarding.
Filip Tehlar195bcee2016-05-13 17:37:35 +02001272 *
Filip Tehlar809bc742017-08-14 19:15:36 +02001273 * @param a parameters of the new mapping
Filip Tehlar195bcee2016-05-13 17:37:35 +02001274 * @param rlocs vector of remote locators
Filip Tehlar809bc742017-08-14 19:15:36 +02001275 * @param res_map_index index of the newly created mapping
1276 * @param locators_changed indicator if locators were updated in the mapping
Filip Tehlar195bcee2016-05-13 17:37:35 +02001277 * @return return code
1278 */
1279int
Filip Tehlar809bc742017-08-14 19:15:36 +02001280vnet_lisp_add_mapping (vnet_lisp_add_del_mapping_args_t * a,
1281 locator_t * rlocs,
1282 u32 * res_map_index, u8 * is_updated)
Filip Tehlar195bcee2016-05-13 17:37:35 +02001283{
Florin Corasa2157cf2016-08-16 21:09:14 +02001284 vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1285 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Corasf727db92016-06-23 15:01:58 +02001286 u32 mi, ls_index = 0, dst_map_index;
Florin Corasa2157cf2016-08-16 21:09:14 +02001287 mapping_t *old_map;
Filip Tehlara6bce492017-02-03 10:17:49 +01001288 locator_t *loc;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001289
Florin Corasa2157cf2016-08-16 21:09:14 +02001290 if (vnet_lisp_enable_disable_status () == 0)
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001291 {
1292 clib_warning ("LISP is disabled!");
1293 return VNET_API_ERROR_LISP_DISABLED;
1294 }
1295
Florin Corasf727db92016-06-23 15:01:58 +02001296 if (res_map_index)
1297 res_map_index[0] = ~0;
Filip Tehlar809bc742017-08-14 19:15:36 +02001298 if (is_updated)
1299 is_updated[0] = 0;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001300
Dave Barachb7b92992018-10-17 10:38:51 -04001301 clib_memset (ls_args, 0, sizeof (ls_args[0]));
Filip Tehlar195bcee2016-05-13 17:37:35 +02001302
Florin Corasf727db92016-06-23 15:01:58 +02001303 ls_args->locators = rlocs;
Filip Tehlar809bc742017-08-14 19:15:36 +02001304 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->eid);
1305 old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
1306
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001307 /* check if none of the locators match locally configured address */
Filip Tehlar809bc742017-08-14 19:15:36 +02001308 vec_foreach (loc, rlocs)
1309 {
1310 ip_prefix_t *p = &gid_address_ippref (&loc->address);
1311 if (is_local_ip (lcm, &ip_prefix_addr (p)))
1312 {
1313 clib_warning ("RLOC %U matches a local address!",
1314 format_gid_address, &loc->address);
1315 return VNET_API_ERROR_LISP_RLOC_LOCAL;
1316 }
1317 }
1318
1319 /* overwrite: if mapping already exists, decide if locators should be
1320 * updated and be done */
1321 if (old_map && gid_address_cmp (&old_map->eid, &a->eid) == 0)
1322 {
1323 if (!a->is_static && (old_map->is_static || old_map->local))
1324 {
1325 /* do not overwrite local or static remote mappings */
1326 clib_warning ("mapping %U rejected due to collision with local "
1327 "or static remote mapping!", format_gid_address,
1328 &a->eid);
1329 return 0;
1330 }
1331
1332 locator_set_t *old_ls;
1333
1334 /* update mapping attributes */
1335 old_map->action = a->action;
1336 if (old_map->action != a->action && NULL != is_updated)
1337 is_updated[0] = 1;
1338
1339 old_map->authoritative = a->authoritative;
1340 old_map->ttl = a->ttl;
1341
1342 old_ls = pool_elt_at_index (lcm->locator_set_pool,
1343 old_map->locator_set_index);
1344 if (compare_locators (lcm, old_ls->locator_indices, ls_args->locators))
1345 {
1346 /* set locator-set index to overwrite */
1347 ls_args->is_add = 1;
1348 ls_args->index = old_map->locator_set_index;
1349 vnet_lisp_add_del_locator_set (ls_args, 0);
1350 if (is_updated)
1351 is_updated[0] = 1;
1352 }
1353 if (res_map_index)
1354 res_map_index[0] = mi;
1355 }
1356 /* new mapping */
1357 else
1358 {
Filip Tehlar8d7a0b92017-10-18 07:10:25 -07001359 if (is_updated)
1360 is_updated[0] = 1;
Filip Tehlar809bc742017-08-14 19:15:36 +02001361 remove_overlapping_sub_prefixes (lcm, &a->eid, 0 == ls_args->locators);
1362
1363 ls_args->is_add = 1;
1364 ls_args->index = ~0;
1365
1366 vnet_lisp_add_del_locator_set (ls_args, &ls_index);
1367
1368 /* add mapping */
1369 a->is_add = 1;
1370 a->locator_set_index = ls_index;
1371 vnet_lisp_map_cache_add_del (a, &dst_map_index);
1372
1373 if (res_map_index)
1374 res_map_index[0] = dst_map_index;
1375 }
1376
1377 /* success */
1378 return 0;
1379}
1380
1381/**
1382 * Removes a mapping. Does not program forwarding.
1383 *
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07001384 * @param eid end-host identifier
Filip Tehlar809bc742017-08-14 19:15:36 +02001385 * @param res_map_index index of the removed mapping
1386 * @return return code
1387 */
1388int
1389vnet_lisp_del_mapping (gid_address_t * eid, u32 * res_map_index)
1390{
1391 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1392 vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
1393 vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1394 mapping_t *old_map;
1395 u32 mi;
1396
Dave Barachb7b92992018-10-17 10:38:51 -04001397 clib_memset (ls_args, 0, sizeof (ls_args[0]));
1398 clib_memset (m_args, 0, sizeof (m_args[0]));
Filip Tehlar809bc742017-08-14 19:15:36 +02001399 if (res_map_index)
1400 res_map_index[0] = ~0;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001401
Florin Coras71893ac2016-07-10 20:09:32 +02001402 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
Florin Corasa2157cf2016-08-16 21:09:14 +02001403 old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
Florin Corasf727db92016-06-23 15:01:58 +02001404
Filip Tehlar809bc742017-08-14 19:15:36 +02001405 if (old_map == 0 || gid_address_cmp (&old_map->eid, eid) != 0)
Filip Tehlar195bcee2016-05-13 17:37:35 +02001406 {
Filip Tehlar809bc742017-08-14 19:15:36 +02001407 clib_warning ("cannot delete mapping for eid %U",
1408 format_gid_address, eid);
1409 return -1;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001410 }
Florin Corasf727db92016-06-23 15:01:58 +02001411
Filip Tehlar809bc742017-08-14 19:15:36 +02001412 m_args->is_add = 0;
1413 gid_address_copy (&m_args->eid, eid);
1414 m_args->locator_set_index = old_map->locator_set_index;
Florin Corasf727db92016-06-23 15:01:58 +02001415
Filip Tehlar809bc742017-08-14 19:15:36 +02001416 /* delete mapping associated from map-cache */
1417 vnet_lisp_map_cache_add_del (m_args, 0);
Florin Corasf727db92016-06-23 15:01:58 +02001418
Filip Tehlar809bc742017-08-14 19:15:36 +02001419 ls_args->is_add = 0;
1420 ls_args->index = old_map->locator_set_index;
Filip Tehlarb93222f2016-07-07 09:58:08 +02001421
Filip Tehlar809bc742017-08-14 19:15:36 +02001422 /* delete locator set */
1423 vnet_lisp_add_del_locator_set (ls_args, 0);
Filip Tehlar9677a942016-11-28 10:23:31 +01001424
Filip Tehlar809bc742017-08-14 19:15:36 +02001425 /* delete timer associated to the mapping if any */
1426 if (old_map->timer_set)
1427 mapping_delete_timer (lcm, mi);
1428
1429 /* return old mapping index */
1430 if (res_map_index)
1431 res_map_index[0] = mi;
Florin Corasf727db92016-06-23 15:01:58 +02001432
Filip Tehlar195bcee2016-05-13 17:37:35 +02001433 /* success */
Florin Corasf727db92016-06-23 15:01:58 +02001434 return 0;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001435}
1436
Filip Tehlar58f886a2016-05-30 15:57:40 +02001437int
Florin Corasf727db92016-06-23 15:01:58 +02001438vnet_lisp_clear_all_remote_adjacencies (void)
Filip Tehlar58f886a2016-05-30 15:57:40 +02001439{
1440 int rv = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001441 u32 mi, *map_indices = 0, *map_indexp;
1442 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1443 vnet_lisp_add_del_mapping_args_t _dm_args, *dm_args = &_dm_args;
1444 vnet_lisp_add_del_locator_set_args_t _ls, *ls = &_ls;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001445
Florin Corasa2157cf2016-08-16 21:09:14 +02001446 /* *INDENT-OFF* */
Filip Tehlar58f886a2016-05-30 15:57:40 +02001447 pool_foreach_index (mi, lcm->mapping_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02001448 ({
1449 vec_add1 (map_indices, mi);
1450 }));
1451 /* *INDENT-ON* */
Filip Tehlar58f886a2016-05-30 15:57:40 +02001452
1453 vec_foreach (map_indexp, map_indices)
Florin Corasa2157cf2016-08-16 21:09:14 +02001454 {
1455 mapping_t *map = pool_elt_at_index (lcm->mapping_pool, map_indexp[0]);
1456 if (!map->local)
1457 {
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -07001458 dp_del_fwd_entry (lcm, map_indexp[0]);
Filip Tehlar58f886a2016-05-30 15:57:40 +02001459
Florin Corasa2157cf2016-08-16 21:09:14 +02001460 dm_args->is_add = 0;
1461 gid_address_copy (&dm_args->eid, &map->eid);
1462 dm_args->locator_set_index = map->locator_set_index;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001463
Florin Corasa2157cf2016-08-16 21:09:14 +02001464 /* delete mapping associated to fwd entry */
1465 vnet_lisp_map_cache_add_del (dm_args, 0);
Filip Tehlar58f886a2016-05-30 15:57:40 +02001466
Florin Corasa2157cf2016-08-16 21:09:14 +02001467 ls->is_add = 0;
1468 ls->local = 0;
1469 ls->index = map->locator_set_index;
1470 /* delete locator set */
1471 rv = vnet_lisp_add_del_locator_set (ls, 0);
1472 if (rv != 0)
1473 goto cleanup;
1474 }
1475 }
Filip Tehlar58f886a2016-05-30 15:57:40 +02001476
1477cleanup:
1478 if (map_indices)
1479 vec_free (map_indices);
1480 return rv;
1481}
1482
Filip Tehlar195bcee2016-05-13 17:37:35 +02001483/**
Florin Coras71893ac2016-07-10 20:09:32 +02001484 * Adds adjacency or removes forwarding entry associated to remote mapping.
1485 * Note that adjacencies are not stored, they only result in forwarding entries
1486 * being created.
Florin Corasf727db92016-06-23 15:01:58 +02001487 */
Florin Corasf3dc11a2017-01-24 03:13:43 -08001488int
1489vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a)
Florin Corasf727db92016-06-23 15:01:58 +02001490{
Florin Corasf3dc11a2017-01-24 03:13:43 -08001491 lisp_cp_main_t *lcm = &lisp_control_main;
Florin Coras71893ac2016-07-10 20:09:32 +02001492 u32 local_mi, remote_mi = ~0;
Florin Corasf727db92016-06-23 15:01:58 +02001493
1494 if (vnet_lisp_enable_disable_status () == 0)
1495 {
1496 clib_warning ("LISP is disabled!");
1497 return VNET_API_ERROR_LISP_DISABLED;
1498 }
1499
Filip Tehlar69a9b762016-09-23 10:00:52 +02001500 remote_mi = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid,
Florin Corasf3dc11a2017-01-24 03:13:43 -08001501 &a->reid, &a->leid);
Florin Coras71893ac2016-07-10 20:09:32 +02001502 if (GID_LOOKUP_MISS == remote_mi)
1503 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001504 clib_warning ("Remote eid %U not found. Cannot add adjacency!",
Florin Corasf3dc11a2017-01-24 03:13:43 -08001505 format_gid_address, &a->reid);
Florin Corasf727db92016-06-23 15:01:58 +02001506
Florin Coras71893ac2016-07-10 20:09:32 +02001507 return -1;
1508 }
1509
Florin Corasf3dc11a2017-01-24 03:13:43 -08001510 if (a->is_add)
Florin Corasf727db92016-06-23 15:01:58 +02001511 {
Florin Corasf727db92016-06-23 15:01:58 +02001512 /* check if source eid has an associated mapping. If pitr mode is on,
1513 * just use the pitr's mapping */
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001514 if (lcm->flags & LISP_FLAG_PITR_MODE)
1515 {
1516 if (lcm->pitr_map_index != ~0)
1517 {
1518 local_mi = lcm->pitr_map_index;
1519 }
1520 else
1521 {
1522 /* PITR mode is on, but no mapping is configured */
1523 return -1;
1524 }
1525 }
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001526 else
1527 {
1528 if (gid_address_type (&a->reid) == GID_ADDR_NSH)
1529 {
1530 if (lcm->nsh_map_index == ~0)
1531 local_mi = GID_LOOKUP_MISS;
1532 else
1533 local_mi = lcm->nsh_map_index;
1534 }
1535 else
1536 {
1537 local_mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid,
1538 &a->leid);
1539 }
1540 }
Florin Corasf727db92016-06-23 15:01:58 +02001541
Florin Coras71893ac2016-07-10 20:09:32 +02001542 if (GID_LOOKUP_MISS == local_mi)
Florin Corasa2157cf2016-08-16 21:09:14 +02001543 {
1544 clib_warning ("Local eid %U not found. Cannot add adjacency!",
Florin Corasf3dc11a2017-01-24 03:13:43 -08001545 format_gid_address, &a->leid);
Florin Corasf727db92016-06-23 15:01:58 +02001546
Florin Corasa2157cf2016-08-16 21:09:14 +02001547 return -1;
1548 }
Florin Corasf727db92016-06-23 15:01:58 +02001549
Florin Coras71893ac2016-07-10 20:09:32 +02001550 /* update forwarding */
1551 dp_add_fwd_entry (lcm, local_mi, remote_mi);
Florin Corasf727db92016-06-23 15:01:58 +02001552 }
1553 else
Alberto Rodriguez-Natal8d66f9d2017-09-09 14:15:15 -07001554 dp_del_fwd_entry (lcm, remote_mi);
Florin Corasf727db92016-06-23 15:01:58 +02001555
1556 return 0;
1557}
1558
1559int
Florin Corasdca88042016-09-14 16:01:38 +02001560vnet_lisp_set_map_request_mode (u8 mode)
1561{
1562 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1563
1564 if (vnet_lisp_enable_disable_status () == 0)
1565 {
1566 clib_warning ("LISP is disabled!");
1567 return VNET_API_ERROR_LISP_DISABLED;
1568 }
1569
1570 if (mode >= _MR_MODE_MAX)
1571 {
1572 clib_warning ("Invalid LISP map request mode %d!", mode);
1573 return VNET_API_ERROR_INVALID_ARGUMENT;
1574 }
1575
1576 lcm->map_request_mode = mode;
1577 return 0;
1578}
1579
Filip Tehlar53f09e32016-05-19 14:25:44 +02001580int
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001581vnet_lisp_nsh_set_locator_set (u8 * locator_set_name, u8 is_add)
1582{
1583 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1584 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
1585 u32 locator_set_index = ~0;
1586 mapping_t *m;
1587 uword *p;
1588
1589 if (vnet_lisp_enable_disable_status () == 0)
1590 {
1591 clib_warning ("LISP is disabled!");
1592 return VNET_API_ERROR_LISP_DISABLED;
1593 }
1594
1595 if (is_add)
1596 {
1597 if (lcm->nsh_map_index == (u32) ~ 0)
1598 {
1599 p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
1600 if (!p)
1601 {
1602 clib_warning ("locator-set %v doesn't exist", locator_set_name);
1603 return -1;
1604 }
1605 locator_set_index = p[0];
1606
1607 pool_get (lcm->mapping_pool, m);
Dave Barachb7b92992018-10-17 10:38:51 -04001608 clib_memset (m, 0, sizeof *m);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001609 m->locator_set_index = locator_set_index;
1610 m->local = 1;
1611 m->nsh_set = 1;
1612 lcm->nsh_map_index = m - lcm->mapping_pool;
1613
1614 if (~0 == vnet_lisp_gpe_add_nsh_iface (lgm))
1615 return -1;
1616 }
1617 }
1618 else
1619 {
1620 if (lcm->nsh_map_index != (u32) ~ 0)
1621 {
1622 /* remove NSH mapping */
1623 pool_put_index (lcm->mapping_pool, lcm->nsh_map_index);
1624 lcm->nsh_map_index = ~0;
1625 vnet_lisp_gpe_del_nsh_iface (lgm);
1626 }
1627 }
1628 return 0;
1629}
1630
1631int
Filip Tehlar53f09e32016-05-19 14:25:44 +02001632vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add)
1633{
Florin Corasa2157cf2016-08-16 21:09:14 +02001634 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar53f09e32016-05-19 14:25:44 +02001635 u32 locator_set_index = ~0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001636 mapping_t *m;
1637 uword *p;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001638
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001639 if (vnet_lisp_enable_disable_status () == 0)
1640 {
1641 clib_warning ("LISP is disabled!");
1642 return VNET_API_ERROR_LISP_DISABLED;
1643 }
1644
Filip Tehlar53f09e32016-05-19 14:25:44 +02001645 p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
1646 if (!p)
1647 {
1648 clib_warning ("locator-set %v doesn't exist", locator_set_name);
1649 return -1;
1650 }
1651 locator_set_index = p[0];
1652
1653 if (is_add)
1654 {
1655 pool_get (lcm->mapping_pool, m);
1656 m->locator_set_index = locator_set_index;
1657 m->local = 1;
Filip Tehlar38206ee2017-02-20 17:31:57 +01001658 m->pitr_set = 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001659 lcm->pitr_map_index = m - lcm->mapping_pool;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001660 }
1661 else
1662 {
1663 /* remove pitr mapping */
1664 pool_put_index (lcm->mapping_pool, lcm->pitr_map_index);
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001665 lcm->pitr_map_index = ~0;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001666 }
1667 return 0;
1668}
1669
Filip Tehlar7048ff12017-07-27 08:09:14 +02001670int
1671vnet_lisp_map_register_fallback_threshold_set (u32 value)
1672{
1673 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1674 if (0 == value)
1675 {
1676 return VNET_API_ERROR_INVALID_ARGUMENT;
1677 }
1678
1679 lcm->max_expired_map_registers = value;
1680 return 0;
1681}
1682
1683u32
1684vnet_lisp_map_register_fallback_threshold_get (void)
1685{
1686 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1687 return lcm->max_expired_map_registers;
1688}
1689
Florin Corasba888e42017-01-24 11:38:18 -08001690/**
1691 * Configure Proxy-ETR
1692 *
1693 * @param ip PETR's IP address
1694 * @param is_add Flag that indicates if this is an addition or removal
1695 *
1696 * return 0 on success
1697 */
1698int
1699vnet_lisp_use_petr (ip_address_t * ip, u8 is_add)
1700{
1701 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1702 u32 ls_index = ~0;
1703 mapping_t *m;
1704 vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1705 locator_t loc;
1706
1707 if (vnet_lisp_enable_disable_status () == 0)
1708 {
1709 clib_warning ("LISP is disabled!");
1710 return VNET_API_ERROR_LISP_DISABLED;
1711 }
1712
Dave Barachb7b92992018-10-17 10:38:51 -04001713 clib_memset (ls_args, 0, sizeof (*ls_args));
Florin Corasba888e42017-01-24 11:38:18 -08001714
1715 if (is_add)
1716 {
1717 /* Create dummy petr locator-set */
Dave Barachb7b92992018-10-17 10:38:51 -04001718 clib_memset (&loc, 0, sizeof (loc));
Florin Corasba888e42017-01-24 11:38:18 -08001719 gid_address_from_ip (&loc.address, ip);
1720 loc.priority = 1;
1721 loc.state = loc.weight = 1;
Florin Coras2743cc42017-01-29 16:42:20 -08001722 loc.local = 0;
Florin Corasba888e42017-01-24 11:38:18 -08001723
1724 ls_args->is_add = 1;
1725 ls_args->index = ~0;
1726 vec_add1 (ls_args->locators, loc);
1727 vnet_lisp_add_del_locator_set (ls_args, &ls_index);
1728
1729 /* Add petr mapping */
1730 pool_get (lcm->mapping_pool, m);
1731 m->locator_set_index = ls_index;
1732 lcm->petr_map_index = m - lcm->mapping_pool;
1733
1734 /* Enable use-petr */
1735 lcm->flags |= LISP_FLAG_USE_PETR;
1736 }
1737 else
1738 {
1739 m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
1740
1741 /* Remove petr locator */
1742 ls_args->is_add = 0;
1743 ls_args->index = m->locator_set_index;
1744 vnet_lisp_add_del_locator_set (ls_args, 0);
1745
1746 /* Remove petr mapping */
1747 pool_put_index (lcm->mapping_pool, lcm->petr_map_index);
1748
1749 /* Disable use-petr */
1750 lcm->flags &= ~LISP_FLAG_USE_PETR;
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001751 lcm->petr_map_index = ~0;
Florin Corasba888e42017-01-24 11:38:18 -08001752 }
1753 return 0;
1754}
1755
Florin Corase127a7e2016-02-18 22:20:01 +01001756/* cleans locator to locator-set data and removes locators not part of
1757 * any locator-set */
1758static void
1759clean_locator_to_locator_set (lisp_cp_main_t * lcm, u32 lsi)
1760{
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001761 u32 i, j, *loc_indexp, *ls_indexp, **ls_indexes, *to_be_deleted = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001762 locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool, lsi);
1763 for (i = 0; i < vec_len (ls->locator_indices); i++)
Florin Corase127a7e2016-02-18 22:20:01 +01001764 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001765 loc_indexp = vec_elt_at_index (ls->locator_indices, i);
1766 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
1767 loc_indexp[0]);
1768 for (j = 0; j < vec_len (ls_indexes[0]); j++)
1769 {
1770 ls_indexp = vec_elt_at_index (ls_indexes[0], j);
1771 if (ls_indexp[0] == lsi)
1772 break;
1773 }
Florin Corase127a7e2016-02-18 22:20:01 +01001774
Florin Corasa2157cf2016-08-16 21:09:14 +02001775 /* delete index for removed locator-set */
1776 vec_del1 (ls_indexes[0], j);
Florin Corase127a7e2016-02-18 22:20:01 +01001777
1778 /* delete locator if it's part of no locator-set */
1779 if (vec_len (ls_indexes[0]) == 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02001780 {
1781 pool_put_index (lcm->locator_pool, loc_indexp[0]);
1782 vec_add1 (to_be_deleted, i);
1783 }
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001784 }
1785
1786 if (to_be_deleted)
1787 {
1788 for (i = 0; i < vec_len (to_be_deleted); i++)
Florin Corasa2157cf2016-08-16 21:09:14 +02001789 {
1790 loc_indexp = vec_elt_at_index (to_be_deleted, i);
1791 vec_del1 (ls->locator_indices, loc_indexp[0]);
1792 }
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001793 vec_free (to_be_deleted);
Florin Corase127a7e2016-02-18 22:20:01 +01001794 }
1795}
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001796
Florin Corasf727db92016-06-23 15:01:58 +02001797static inline uword *
1798get_locator_set_index (vnet_lisp_add_del_locator_set_args_t * a, uword * p)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001799{
Florin Corasa2157cf2016-08-16 21:09:14 +02001800 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001801
Florin Corasa2157cf2016-08-16 21:09:14 +02001802 ASSERT (a != NULL);
1803 ASSERT (p != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001804
1805 /* find locator-set */
1806 if (a->local)
1807 {
Dave Barach59b25652017-09-10 15:04:27 -04001808 ASSERT (a->name);
Florin Corasa2157cf2016-08-16 21:09:14 +02001809 p = hash_get_mem (lcm->locator_set_index_by_name, a->name);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001810 }
1811 else
1812 {
1813 *p = a->index;
1814 }
1815
1816 return p;
1817}
1818
Florin Corasf727db92016-06-23 15:01:58 +02001819static inline int
1820is_locator_in_locator_set (lisp_cp_main_t * lcm, locator_set_t * ls,
Florin Corasa2157cf2016-08-16 21:09:14 +02001821 locator_t * loc)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001822{
Florin Corasa2157cf2016-08-16 21:09:14 +02001823 locator_t *itloc;
1824 u32 *locit;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001825
Florin Corasa2157cf2016-08-16 21:09:14 +02001826 ASSERT (ls != NULL);
1827 ASSERT (loc != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001828
Florin Corasa2157cf2016-08-16 21:09:14 +02001829 vec_foreach (locit, ls->locator_indices)
1830 {
1831 itloc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1832 if ((ls->local && itloc->sw_if_index == loc->sw_if_index) ||
1833 (!ls->local && !gid_address_cmp (&itloc->address, &loc->address)))
1834 {
1835 clib_warning ("Duplicate locator");
1836 return VNET_API_ERROR_VALUE_EXIST;
1837 }
1838 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001839
1840 return 0;
1841}
1842
Filip Tehlar68d2e242017-04-21 12:05:58 +02001843static void
Filip Tehlar9d286a42017-10-26 23:57:09 -07001844update_adjacencies_by_map_index (lisp_cp_main_t * lcm,
Filip Tehlar68d2e242017-04-21 12:05:58 +02001845 u32 mapping_index, u8 remove_only)
1846{
1847 fwd_entry_t *fwd;
1848 mapping_t *map;
Filip Tehlar9d286a42017-10-26 23:57:09 -07001849 uword *fei = 0, *rmts_idxp = 0;
1850 u32 **rmts = 0, *remote_idxp = 0, *rmts_copy = 0;
Filip Tehlar68d2e242017-04-21 12:05:58 +02001851 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
Dave Barachb7b92992018-10-17 10:38:51 -04001852 clib_memset (a, 0, sizeof (*a));
Filip Tehlar68d2e242017-04-21 12:05:58 +02001853
1854 map = pool_elt_at_index (lcm->mapping_pool, mapping_index);
1855
Filip Tehlar9d286a42017-10-26 23:57:09 -07001856 if (map->local)
1857 {
1858 rmts_idxp = hash_get (lcm->lcl_to_rmt_adjs_by_lcl_idx, mapping_index);
1859 if (rmts_idxp)
1860 {
1861 rmts =
1862 pool_elt_at_index (lcm->lcl_to_rmt_adjacencies, rmts_idxp[0]);
1863 rmts_copy = vec_dup (rmts[0]);
Filip Tehlar68d2e242017-04-21 12:05:58 +02001864
Filip Tehlar9d286a42017-10-26 23:57:09 -07001865 vec_foreach (remote_idxp, rmts_copy)
1866 {
1867 fei = hash_get (lcm->fwd_entry_by_mapping_index, remote_idxp[0]);
1868 if (!fei)
1869 continue;
Filip Tehlar68d2e242017-04-21 12:05:58 +02001870
Filip Tehlar9d286a42017-10-26 23:57:09 -07001871 fwd = pool_elt_at_index (lcm->fwd_entry_pool, fei[0]);
1872 a->is_add = 0;
1873 gid_address_copy (&a->leid, &fwd->leid);
1874 gid_address_copy (&a->reid, &fwd->reid);
1875 vnet_lisp_add_del_adjacency (a);
1876
1877 if (!remove_only)
1878 {
1879 a->is_add = 1;
1880 vnet_lisp_add_del_adjacency (a);
1881 }
1882 }
1883 vec_free (rmts_copy);
1884 }
1885 }
1886 else
1887 {
1888 fei = hash_get (lcm->fwd_entry_by_mapping_index, mapping_index);
1889 if (!fei)
1890 return;
1891
1892 fwd = pool_elt_at_index (lcm->fwd_entry_pool, fei[0]);
1893 a->is_add = 0;
1894 gid_address_copy (&a->leid, &fwd->leid);
1895 gid_address_copy (&a->reid, &fwd->reid);
1896 vnet_lisp_add_del_adjacency (a);
1897
1898 if (!remove_only)
1899 {
1900 a->is_add = 1;
1901 vnet_lisp_add_del_adjacency (a);
1902 }
1903 }
Filip Tehlar68d2e242017-04-21 12:05:58 +02001904}
1905
1906static void
Filip Tehlar9d286a42017-10-26 23:57:09 -07001907update_fwd_entries_by_locator_set (lisp_cp_main_t * lcm,
Filip Tehlar68d2e242017-04-21 12:05:58 +02001908 u32 ls_index, u8 remove_only)
1909{
1910 u32 i, *map_indexp;
1911 u32 **eid_indexes;
Filip Tehlarfacee282017-04-27 14:29:27 +02001912
1913 if (vec_len (lcm->locator_set_to_eids) <= ls_index)
1914 return;
1915
Filip Tehlar68d2e242017-04-21 12:05:58 +02001916 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, ls_index);
1917
1918 for (i = 0; i < vec_len (eid_indexes[0]); i++)
1919 {
1920 map_indexp = vec_elt_at_index (eid_indexes[0], i);
Filip Tehlar9d286a42017-10-26 23:57:09 -07001921 update_adjacencies_by_map_index (lcm, map_indexp[0], remove_only);
Filip Tehlar68d2e242017-04-21 12:05:58 +02001922 }
1923}
1924
Florin Corasf727db92016-06-23 15:01:58 +02001925static inline void
Florin Corasa2157cf2016-08-16 21:09:14 +02001926remove_locator_from_locator_set (locator_set_t * ls, u32 * locit,
1927 u32 ls_index, u32 loc_id)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001928{
Florin Corasa2157cf2016-08-16 21:09:14 +02001929 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1930 u32 **ls_indexes = NULL;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001931
Florin Corasa2157cf2016-08-16 21:09:14 +02001932 ASSERT (ls != NULL);
1933 ASSERT (locit != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001934
Florin Corasa2157cf2016-08-16 21:09:14 +02001935 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, locit[0]);
1936 pool_put_index (lcm->locator_pool, locit[0]);
1937 vec_del1 (ls->locator_indices, loc_id);
1938 vec_del1 (ls_indexes[0], ls_index);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001939}
1940
1941int
1942vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +02001943 locator_set_t * ls, u32 * ls_result)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001944{
Florin Corasa2157cf2016-08-16 21:09:14 +02001945 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1946 locator_t *loc = NULL, *itloc = NULL;
1947 uword _p = (u32) ~ 0, *p = &_p;
1948 u32 loc_index = ~0, ls_index = ~0, *locit = NULL, **ls_indexes = NULL;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001949 u32 loc_id = ~0;
1950 int ret = 0;
1951
Florin Corasa2157cf2016-08-16 21:09:14 +02001952 ASSERT (a != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001953
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001954 if (vnet_lisp_enable_disable_status () == 0)
1955 {
1956 clib_warning ("LISP is disabled!");
1957 return VNET_API_ERROR_LISP_DISABLED;
1958 }
1959
Florin Corasa2157cf2016-08-16 21:09:14 +02001960 p = get_locator_set_index (a, p);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001961 if (!p)
1962 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001963 clib_warning ("locator-set %v doesn't exist", a->name);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001964 return VNET_API_ERROR_INVALID_ARGUMENT;
1965 }
1966
1967 if (ls == 0)
1968 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001969 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001970 if (!ls)
Florin Corasa2157cf2016-08-16 21:09:14 +02001971 {
1972 clib_warning ("locator-set %d to be overwritten doesn't exist!",
1973 p[0]);
1974 return VNET_API_ERROR_INVALID_ARGUMENT;
1975 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001976 }
1977
1978 if (a->is_add)
1979 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001980 if (ls_result)
1981 ls_result[0] = p[0];
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001982
Florin Corasa2157cf2016-08-16 21:09:14 +02001983 /* allocate locators */
1984 vec_foreach (itloc, a->locators)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001985 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001986 ret = is_locator_in_locator_set (lcm, ls, itloc);
1987 if (0 != ret)
1988 {
1989 return ret;
1990 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001991
Florin Corasa2157cf2016-08-16 21:09:14 +02001992 pool_get (lcm->locator_pool, loc);
1993 loc[0] = itloc[0];
1994 loc_index = loc - lcm->locator_pool;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001995
Florin Corasa2157cf2016-08-16 21:09:14 +02001996 vec_add1 (ls->locator_indices, loc_index);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001997
Florin Corasa2157cf2016-08-16 21:09:14 +02001998 vec_validate (lcm->locator_to_locator_sets, loc_index);
1999 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
2000 loc_index);
Filip Tehlarc5bb0d62016-09-02 12:14:31 +02002001 vec_add1 (ls_indexes[0], p[0]);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002002 }
Florin Corasa2157cf2016-08-16 21:09:14 +02002003 }
2004 else
2005 {
2006 ls_index = p[0];
Filip Tehlar68d2e242017-04-21 12:05:58 +02002007 u8 removed;
Florin Corasa2157cf2016-08-16 21:09:14 +02002008
Filip Tehlar68d2e242017-04-21 12:05:58 +02002009 vec_foreach (itloc, a->locators)
Florin Corasa2157cf2016-08-16 21:09:14 +02002010 {
Filip Tehlar68d2e242017-04-21 12:05:58 +02002011 removed = 0;
2012 loc_id = 0;
2013 vec_foreach (locit, ls->locator_indices)
2014 {
2015 loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
Florin Corasa2157cf2016-08-16 21:09:14 +02002016
Filip Tehlar68d2e242017-04-21 12:05:58 +02002017 if (loc->local && loc->sw_if_index == itloc->sw_if_index)
2018 {
2019 removed = 1;
2020 remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
2021 }
2022 if (0 == loc->local &&
2023 !gid_address_cmp (&loc->address, &itloc->address))
2024 {
2025 removed = 1;
2026 remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
2027 }
Florin Corasa2157cf2016-08-16 21:09:14 +02002028
Filip Tehlar68d2e242017-04-21 12:05:58 +02002029 if (removed)
2030 {
2031 /* update fwd entries using this locator in DP */
Filip Tehlar9d286a42017-10-26 23:57:09 -07002032 update_fwd_entries_by_locator_set (lcm, ls_index,
Filip Tehlar68d2e242017-04-21 12:05:58 +02002033 vec_len (ls->locator_indices)
2034 == 0);
2035 }
2036
2037 loc_id++;
2038 }
Florin Corasa2157cf2016-08-16 21:09:14 +02002039 }
2040 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002041
2042 return 0;
2043}
2044
Florin Corase127a7e2016-02-18 22:20:01 +01002045int
2046vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +02002047 u32 * ls_result)
Florin Corase127a7e2016-02-18 22:20:01 +01002048{
Florin Corasa2157cf2016-08-16 21:09:14 +02002049 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2050 locator_set_t *ls;
2051 uword _p = (u32) ~ 0, *p = &_p;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002052 u32 ls_index;
Florin Corasa2157cf2016-08-16 21:09:14 +02002053 u32 **eid_indexes;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002054 int ret = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01002055
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02002056 if (vnet_lisp_enable_disable_status () == 0)
2057 {
2058 clib_warning ("LISP is disabled!");
2059 return VNET_API_ERROR_LISP_DISABLED;
2060 }
2061
Florin Corase127a7e2016-02-18 22:20:01 +01002062 if (a->is_add)
2063 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002064 p = get_locator_set_index (a, p);
Florin Corase127a7e2016-02-18 22:20:01 +01002065
2066 /* overwrite */
Florin Corasa2157cf2016-08-16 21:09:14 +02002067 if (p && p[0] != (u32) ~ 0)
2068 {
2069 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
2070 if (!ls)
2071 {
2072 clib_warning ("locator-set %d to be overwritten doesn't exist!",
2073 p[0]);
2074 return -1;
2075 }
Florin Corase127a7e2016-02-18 22:20:01 +01002076
Florin Corasa2157cf2016-08-16 21:09:14 +02002077 /* clean locator to locator-set vectors and remove locators if
2078 * they're not part of another locator-set */
2079 clean_locator_to_locator_set (lcm, p[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01002080
Florin Corasa2157cf2016-08-16 21:09:14 +02002081 /* remove locator indices from locator set */
2082 vec_free (ls->locator_indices);
Florin Corase127a7e2016-02-18 22:20:01 +01002083
Florin Corasa2157cf2016-08-16 21:09:14 +02002084 ls_index = p[0];
Florin Corase127a7e2016-02-18 22:20:01 +01002085
Florin Corasa2157cf2016-08-16 21:09:14 +02002086 if (ls_result)
2087 ls_result[0] = p[0];
2088 }
Florin Corase127a7e2016-02-18 22:20:01 +01002089 /* new locator-set */
2090 else
Florin Corasa2157cf2016-08-16 21:09:14 +02002091 {
2092 pool_get (lcm->locator_set_pool, ls);
Dave Barachb7b92992018-10-17 10:38:51 -04002093 clib_memset (ls, 0, sizeof (*ls));
Florin Corasa2157cf2016-08-16 21:09:14 +02002094 ls_index = ls - lcm->locator_set_pool;
Florin Corase127a7e2016-02-18 22:20:01 +01002095
Florin Corasa2157cf2016-08-16 21:09:14 +02002096 if (a->local)
2097 {
2098 ls->name = vec_dup (a->name);
Florin Corase127a7e2016-02-18 22:20:01 +01002099
Florin Corasa2157cf2016-08-16 21:09:14 +02002100 if (!lcm->locator_set_index_by_name)
2101 lcm->locator_set_index_by_name = hash_create_vec (
2102 /* size */
2103 0,
2104 sizeof
2105 (ls->name
2106 [0]),
2107 sizeof
2108 (uword));
2109 hash_set_mem (lcm->locator_set_index_by_name, ls->name,
2110 ls_index);
Florin Corase127a7e2016-02-18 22:20:01 +01002111
Florin Corasa2157cf2016-08-16 21:09:14 +02002112 /* mark as local locator-set */
2113 vec_add1 (lcm->local_locator_set_indexes, ls_index);
2114 }
2115 ls->local = a->local;
2116 if (ls_result)
2117 ls_result[0] = ls_index;
2118 }
Florin Corase127a7e2016-02-18 22:20:01 +01002119
Florin Corasa2157cf2016-08-16 21:09:14 +02002120 ret = vnet_lisp_add_del_locator (a, ls, NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002121 if (0 != ret)
Florin Corasa2157cf2016-08-16 21:09:14 +02002122 {
2123 return ret;
2124 }
Florin Corase127a7e2016-02-18 22:20:01 +01002125 }
2126 else
2127 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002128 p = get_locator_set_index (a, p);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02002129 if (!p)
Florin Corasa2157cf2016-08-16 21:09:14 +02002130 {
2131 clib_warning ("locator-set %v doesn't exists", a->name);
2132 return -1;
2133 }
Florin Corase127a7e2016-02-18 22:20:01 +01002134
Florin Corasa2157cf2016-08-16 21:09:14 +02002135 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01002136 if (!ls)
Florin Corasa2157cf2016-08-16 21:09:14 +02002137 {
2138 clib_warning ("locator-set with index %d doesn't exists", p[0]);
2139 return -1;
2140 }
Florin Corase127a7e2016-02-18 22:20:01 +01002141
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002142 if (lcm->mreq_itr_rlocs == p[0])
Florin Corasa2157cf2016-08-16 21:09:14 +02002143 {
2144 clib_warning ("Can't delete the locator-set used to constrain "
2145 "the itr-rlocs in map-requests!");
2146 return -1;
2147 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002148
Florin Corasa2157cf2016-08-16 21:09:14 +02002149 if (vec_len (lcm->locator_set_to_eids) != 0)
2150 {
2151 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, p[0]);
2152 if (vec_len (eid_indexes[0]) != 0)
2153 {
2154 clib_warning
2155 ("Can't delete a locator that supports a mapping!");
2156 return -1;
2157 }
2158 }
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02002159
2160 /* clean locator to locator-sets data */
2161 clean_locator_to_locator_set (lcm, p[0]);
2162
2163 if (ls->local)
Florin Corasa2157cf2016-08-16 21:09:14 +02002164 {
2165 u32 it, lsi;
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02002166
Florin Corasa2157cf2016-08-16 21:09:14 +02002167 vec_foreach_index (it, lcm->local_locator_set_indexes)
2168 {
2169 lsi = vec_elt (lcm->local_locator_set_indexes, it);
2170 if (lsi == p[0])
2171 {
2172 vec_del1 (lcm->local_locator_set_indexes, it);
2173 break;
2174 }
2175 }
2176 hash_unset_mem (lcm->locator_set_index_by_name, ls->name);
2177 }
2178 vec_free (ls->name);
2179 vec_free (ls->locator_indices);
2180 pool_put (lcm->locator_set_pool, ls);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02002181 }
2182 return 0;
2183}
2184
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002185int
2186vnet_lisp_rloc_probe_enable_disable (u8 is_enable)
2187{
2188 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2189
2190 lcm->rloc_probing = is_enable;
2191 return 0;
2192}
2193
2194int
2195vnet_lisp_map_register_enable_disable (u8 is_enable)
2196{
2197 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2198
2199 lcm->map_registering = is_enable;
2200 return 0;
2201}
2202
Filip Tehlar0a8840d2017-10-16 05:48:23 -07002203static void
2204lisp_cp_register_dst_port (vlib_main_t * vm)
2205{
2206 udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp,
2207 lisp_cp_input_node.index, 1 /* is_ip4 */ );
2208 udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp6,
2209 lisp_cp_input_node.index, 0 /* is_ip4 */ );
2210}
2211
2212static void
2213lisp_cp_unregister_dst_port (vlib_main_t * vm)
2214{
2215 udp_unregister_dst_port (vm, UDP_DST_PORT_lisp_cp, 0 /* is_ip4 */ );
2216 udp_unregister_dst_port (vm, UDP_DST_PORT_lisp_cp6, 1 /* is_ip4 */ );
2217}
2218
2219/**
2220 * lisp_cp_enable_l2_l3_ifaces
2221 *
2222 * Enable all l2 and l3 ifaces
2223 */
2224static void
2225lisp_cp_enable_l2_l3_ifaces (lisp_cp_main_t * lcm, u8 with_default_route)
2226{
2227 u32 vni, dp_table;
2228
2229 /* *INDENT-OFF* */
2230 hash_foreach(vni, dp_table, lcm->table_id_by_vni, ({
2231 dp_add_del_iface(lcm, vni, /* is_l2 */ 0, /* is_add */1,
2232 with_default_route);
2233 }));
2234 hash_foreach(vni, dp_table, lcm->bd_id_by_vni, ({
2235 dp_add_del_iface(lcm, vni, /* is_l2 */ 1, 1,
2236 with_default_route);
2237 }));
2238 /* *INDENT-ON* */
2239}
2240
2241static void
2242lisp_cp_disable_l2_l3_ifaces (lisp_cp_main_t * lcm)
2243{
2244 u32 **rmts;
2245
2246 /* clear interface table */
2247 hash_free (lcm->fwd_entry_by_mapping_index);
2248 pool_free (lcm->fwd_entry_pool);
2249 /* Clear state tracking rmt-lcl fwd entries */
2250 /* *INDENT-OFF* */
2251 pool_foreach(rmts, lcm->lcl_to_rmt_adjacencies,
2252 {
2253 vec_free(rmts[0]);
2254 });
2255 /* *INDENT-ON* */
2256 hash_free (lcm->lcl_to_rmt_adjs_by_lcl_idx);
2257 pool_free (lcm->lcl_to_rmt_adjacencies);
2258}
2259
Filip Tehlar46d4e362016-05-09 09:39:26 +02002260clib_error_t *
Florin Corasf727db92016-06-23 15:01:58 +02002261vnet_lisp_enable_disable (u8 is_enable)
Filip Tehlar46d4e362016-05-09 09:39:26 +02002262{
Florin Corasa2157cf2016-08-16 21:09:14 +02002263 clib_error_t *error = 0;
2264 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2265 vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
Filip Tehlar46d4e362016-05-09 09:39:26 +02002266
Florin Corasf727db92016-06-23 15:01:58 +02002267 a->is_en = is_enable;
Filip Tehlar46d4e362016-05-09 09:39:26 +02002268 error = vnet_lisp_gpe_enable_disable (a);
2269 if (error)
2270 {
2271 return clib_error_return (0, "failed to %s data-plane!",
Florin Corasa2157cf2016-08-16 21:09:14 +02002272 a->is_en ? "enable" : "disable");
Filip Tehlar46d4e362016-05-09 09:39:26 +02002273 }
2274
Filip Tehlar0a8840d2017-10-16 05:48:23 -07002275 /* decide what to do based on mode */
Florin Corasa2157cf2016-08-16 21:09:14 +02002276
Filip Tehlar0a8840d2017-10-16 05:48:23 -07002277 if (lcm->flags & LISP_FLAG_XTR_MODE)
Filip Tehlar46d4e362016-05-09 09:39:26 +02002278 {
Filip Tehlar0a8840d2017-10-16 05:48:23 -07002279 if (is_enable)
2280 {
2281 lisp_cp_register_dst_port (lcm->vlib_main);
2282 lisp_cp_enable_l2_l3_ifaces (lcm, 1 /* with_default_route */ );
2283 }
2284 else
2285 {
2286 lisp_cp_unregister_dst_port (lcm->vlib_main);
2287 lisp_cp_disable_l2_l3_ifaces (lcm);
2288 }
2289 }
2290
2291 if (lcm->flags & LISP_FLAG_PETR_MODE)
2292 {
2293 /* if in xTR mode, the LISP ports were already (un)registered above */
2294 if (!(lcm->flags & LISP_FLAG_XTR_MODE))
2295 {
2296 if (is_enable)
2297 lisp_cp_register_dst_port (lcm->vlib_main);
2298 else
2299 lisp_cp_unregister_dst_port (lcm->vlib_main);
2300 }
2301 }
2302
2303 if (lcm->flags & LISP_FLAG_PITR_MODE)
2304 {
2305 if (is_enable)
2306 {
2307 /* install interfaces, but no default routes */
2308 lisp_cp_enable_l2_l3_ifaces (lcm, 0 /* with_default_route */ );
2309 }
2310 else
2311 {
2312 lisp_cp_disable_l2_l3_ifaces (lcm);
2313 }
Filip Tehlar46d4e362016-05-09 09:39:26 +02002314 }
2315
2316 /* update global flag */
Florin Corasf727db92016-06-23 15:01:58 +02002317 lcm->is_enabled = is_enable;
Filip Tehlar46d4e362016-05-09 09:39:26 +02002318
2319 return 0;
2320}
2321
Filip Tehlar46d4e362016-05-09 09:39:26 +02002322u8
2323vnet_lisp_enable_disable_status (void)
2324{
Florin Corasa2157cf2016-08-16 21:09:14 +02002325 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar46d4e362016-05-09 09:39:26 +02002326 return lcm->is_enabled;
2327}
2328
Florin Corase127a7e2016-02-18 22:20:01 +01002329int
2330vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a)
2331{
Florin Corasa2157cf2016-08-16 21:09:14 +02002332 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Corase127a7e2016-02-18 22:20:01 +01002333 u32 i;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002334 lisp_msmr_t _mr, *mr = &_mr;
Florin Corase127a7e2016-02-18 22:20:01 +01002335
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02002336 if (vnet_lisp_enable_disable_status () == 0)
2337 {
2338 clib_warning ("LISP is disabled!");
2339 return VNET_API_ERROR_LISP_DISABLED;
2340 }
2341
Florin Corase127a7e2016-02-18 22:20:01 +01002342 if (a->is_add)
2343 {
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002344
2345 if (get_map_resolver (&a->address))
Florin Corasa2157cf2016-08-16 21:09:14 +02002346 {
2347 clib_warning ("map-resolver %U already exists!", format_ip_address,
2348 &a->address);
2349 return -1;
2350 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002351
Dave Barachb7b92992018-10-17 10:38:51 -04002352 clib_memset (mr, 0, sizeof (*mr));
Florin Corasa2157cf2016-08-16 21:09:14 +02002353 ip_address_copy (&mr->address, &a->address);
2354 vec_add1 (lcm->map_resolvers, *mr);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002355
2356 if (vec_len (lcm->map_resolvers) == 1)
Florin Corasa2157cf2016-08-16 21:09:14 +02002357 lcm->do_map_resolver_election = 1;
Florin Corase127a7e2016-02-18 22:20:01 +01002358 }
2359 else
2360 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002361 for (i = 0; i < vec_len (lcm->map_resolvers); i++)
2362 {
2363 mr = vec_elt_at_index (lcm->map_resolvers, i);
2364 if (!ip_address_cmp (&mr->address, &a->address))
2365 {
2366 if (!ip_address_cmp (&mr->address, &lcm->active_map_resolver))
2367 lcm->do_map_resolver_election = 1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002368
Florin Corasa2157cf2016-08-16 21:09:14 +02002369 vec_del1 (lcm->map_resolvers, i);
2370 break;
2371 }
2372 }
Florin Corase127a7e2016-02-18 22:20:01 +01002373 }
2374 return 0;
2375}
2376
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002377int
Filip Tehlar1e553a02017-08-02 12:45:07 +02002378vnet_lisp_map_register_set_ttl (u32 ttl)
2379{
2380 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2381 lcm->map_register_ttl = ttl;
2382 return 0;
2383}
2384
2385u32
2386vnet_lisp_map_register_get_ttl (void)
2387{
2388 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2389 return lcm->map_register_ttl;
2390}
2391
2392int
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002393vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a)
2394{
Florin Corasa2157cf2016-08-16 21:09:14 +02002395 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
2396 uword *p = 0;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002397
Florin Corasf727db92016-06-23 15:01:58 +02002398 if (vnet_lisp_enable_disable_status () == 0)
2399 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002400 clib_warning ("LISP is disabled!");
Florin Corasf727db92016-06-23 15:01:58 +02002401 return VNET_API_ERROR_LISP_DISABLED;
2402 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002403
2404 if (a->is_add)
2405 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002406 p = hash_get_mem (lcm->locator_set_index_by_name, a->locator_set_name);
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002407 if (!p)
Florin Corasa2157cf2016-08-16 21:09:14 +02002408 {
2409 clib_warning ("locator-set %v doesn't exist", a->locator_set_name);
2410 return VNET_API_ERROR_INVALID_ARGUMENT;
2411 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002412
2413 lcm->mreq_itr_rlocs = p[0];
2414 }
2415 else
2416 {
2417 lcm->mreq_itr_rlocs = ~0;
2418 }
2419
2420 return 0;
2421}
2422
Florin Corase127a7e2016-02-18 22:20:01 +01002423/* Statistics (not really errors) */
2424#define foreach_lisp_cp_lookup_error \
2425_(DROP, "drop") \
Filip Tehlard5a65db2017-05-17 17:21:10 +02002426_(MAP_REQUESTS_SENT, "map-request sent") \
Filip Tehlar05879992017-09-05 15:46:09 +02002427_(ARP_REPLY_TX, "ARP replies sent") \
2428_(NDP_NEIGHBOR_ADVERTISEMENT_TX, \
2429 "neighbor advertisement sent")
Florin Corase127a7e2016-02-18 22:20:01 +01002430
Florin Corasa2157cf2016-08-16 21:09:14 +02002431static char *lisp_cp_lookup_error_strings[] = {
Florin Corase127a7e2016-02-18 22:20:01 +01002432#define _(sym,string) string,
2433 foreach_lisp_cp_lookup_error
2434#undef _
2435};
2436
2437typedef enum
2438{
2439#define _(sym,str) LISP_CP_LOOKUP_ERROR_##sym,
Florin Corasa2157cf2016-08-16 21:09:14 +02002440 foreach_lisp_cp_lookup_error
Florin Corase127a7e2016-02-18 22:20:01 +01002441#undef _
2442 LISP_CP_LOOKUP_N_ERROR,
2443} lisp_cp_lookup_error_t;
2444
2445typedef enum
2446{
2447 LISP_CP_LOOKUP_NEXT_DROP,
Filip Tehlar05879992017-09-05 15:46:09 +02002448 LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX,
Florin Corase127a7e2016-02-18 22:20:01 +01002449 LISP_CP_LOOKUP_N_NEXT,
2450} lisp_cp_lookup_next_t;
2451
2452typedef struct
2453{
2454 gid_address_t dst_eid;
Andrej Kozemcak94e34762016-05-25 12:43:21 +02002455 ip_address_t map_resolver_ip;
Florin Corase127a7e2016-02-18 22:20:01 +01002456} lisp_cp_lookup_trace_t;
2457
2458u8 *
2459format_lisp_cp_lookup_trace (u8 * s, va_list * args)
2460{
2461 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
2462 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Corasa2157cf2016-08-16 21:09:14 +02002463 lisp_cp_lookup_trace_t *t = va_arg (*args, lisp_cp_lookup_trace_t *);
Florin Corase127a7e2016-02-18 22:20:01 +01002464
2465 s = format (s, "LISP-CP-LOOKUP: map-resolver: %U destination eid %U",
Florin Corasa2157cf2016-08-16 21:09:14 +02002466 format_ip_address, &t->map_resolver_ip, format_gid_address,
2467 &t->dst_eid);
Florin Corase127a7e2016-02-18 22:20:01 +01002468 return s;
2469}
2470
Florin Coras1c494842016-06-16 21:08:56 +02002471int
2472get_mr_and_local_iface_ip (lisp_cp_main_t * lcm, ip_address_t * mr_ip,
Florin Corasa2157cf2016-08-16 21:09:14 +02002473 ip_address_t * sloc)
Florin Corasc2c90082016-06-13 18:37:15 +02002474{
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002475 lisp_msmr_t *mrit;
Florin Corasa2157cf2016-08-16 21:09:14 +02002476 ip_address_t *a;
Florin Corase127a7e2016-02-18 22:20:01 +01002477
Florin Corasa2157cf2016-08-16 21:09:14 +02002478 if (vec_len (lcm->map_resolvers) == 0)
Florin Corase127a7e2016-02-18 22:20:01 +01002479 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002480 clib_warning ("No map-resolver configured");
Florin Coras1c494842016-06-16 21:08:56 +02002481 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01002482 }
2483
Florin Corasddfafb82016-05-13 18:09:56 +02002484 /* find the first mr ip we have a route to and the ip of the
2485 * iface that has a route to it */
Florin Corasa2157cf2016-08-16 21:09:14 +02002486 vec_foreach (mrit, lcm->map_resolvers)
2487 {
2488 a = &mrit->address;
2489 if (0 != ip_fib_get_first_egress_ip_for_dst (lcm, a, sloc))
2490 {
2491 ip_address_copy (mr_ip, a);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002492
Florin Corasa2157cf2016-08-16 21:09:14 +02002493 /* also update globals */
2494 return 1;
2495 }
2496 }
Florin Corasddfafb82016-05-13 18:09:56 +02002497
Florin Corasa2157cf2016-08-16 21:09:14 +02002498 clib_warning ("Can't find map-resolver and local interface ip!");
Florin Coras1c494842016-06-16 21:08:56 +02002499 return 0;
Florin Corasddfafb82016-05-13 18:09:56 +02002500}
Filip Tehlar254b0362016-04-07 10:04:34 +02002501
Filip Tehlarbeceab92016-04-20 17:21:55 +02002502static gid_address_t *
Filip Tehlar254b0362016-04-07 10:04:34 +02002503build_itr_rloc_list (lisp_cp_main_t * lcm, locator_set_t * loc_set)
2504{
Florin Corasa2157cf2016-08-16 21:09:14 +02002505 void *addr;
Filip Tehlar254b0362016-04-07 10:04:34 +02002506 u32 i;
Florin Corasa2157cf2016-08-16 21:09:14 +02002507 locator_t *loc;
2508 u32 *loc_indexp;
2509 ip_interface_address_t *ia = 0;
2510 gid_address_t gid_data, *gid = &gid_data;
2511 gid_address_t *rlocs = 0;
2512 ip_prefix_t *ippref = &gid_address_ippref (gid);
2513 ip_address_t *rloc = &ip_prefix_addr (ippref);
Filip Tehlar254b0362016-04-07 10:04:34 +02002514
Dave Barachb7b92992018-10-17 10:38:51 -04002515 clib_memset (gid, 0, sizeof (gid[0]));
Filip Tehlarbeceab92016-04-20 17:21:55 +02002516 gid_address_type (gid) = GID_ADDR_IP_PREFIX;
Florin Corasa2157cf2016-08-16 21:09:14 +02002517 for (i = 0; i < vec_len (loc_set->locator_indices); i++)
Filip Tehlar254b0362016-04-07 10:04:34 +02002518 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002519 loc_indexp = vec_elt_at_index (loc_set->locator_indices, i);
Filip Tehlar254b0362016-04-07 10:04:34 +02002520 loc = pool_elt_at_index (lcm->locator_pool, loc_indexp[0]);
2521
Filip Tehlar254b0362016-04-07 10:04:34 +02002522 /* Add ipv4 locators first TODO sort them */
Florin Corasa2157cf2016-08-16 21:09:14 +02002523
2524 /* *INDENT-OFF* */
Filip Tehlar254b0362016-04-07 10:04:34 +02002525 foreach_ip_interface_address (&lcm->im4->lookup_main, ia,
2526 loc->sw_if_index, 1 /* unnumbered */,
2527 ({
Florin Coras1c494842016-06-16 21:08:56 +02002528 addr = ip_interface_address_get_address (&lcm->im4->lookup_main, ia);
2529 ip_address_set (rloc, addr, IP4);
Florin Corasddfafb82016-05-13 18:09:56 +02002530 ip_prefix_len (ippref) = 32;
Andrej Kozemcak438109d2016-07-22 12:54:12 +02002531 ip_prefix_normalize (ippref);
Filip Tehlarbeceab92016-04-20 17:21:55 +02002532 vec_add1 (rlocs, gid[0]);
Filip Tehlar254b0362016-04-07 10:04:34 +02002533 }));
2534
Filip Tehlar254b0362016-04-07 10:04:34 +02002535 /* Add ipv6 locators */
2536 foreach_ip_interface_address (&lcm->im6->lookup_main, ia,
2537 loc->sw_if_index, 1 /* unnumbered */,
2538 ({
Florin Coras1c494842016-06-16 21:08:56 +02002539 addr = ip_interface_address_get_address (&lcm->im6->lookup_main, ia);
2540 ip_address_set (rloc, addr, IP6);
Florin Corasddfafb82016-05-13 18:09:56 +02002541 ip_prefix_len (ippref) = 128;
Andrej Kozemcak438109d2016-07-22 12:54:12 +02002542 ip_prefix_normalize (ippref);
Filip Tehlarbeceab92016-04-20 17:21:55 +02002543 vec_add1 (rlocs, gid[0]);
Filip Tehlar254b0362016-04-07 10:04:34 +02002544 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02002545 /* *INDENT-ON* */
2546
Filip Tehlar254b0362016-04-07 10:04:34 +02002547 }
2548 return rlocs;
2549}
2550
Florin Corase127a7e2016-02-18 22:20:01 +01002551static vlib_buffer_t *
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002552build_map_request (lisp_cp_main_t * lcm, gid_address_t * deid,
2553 ip_address_t * sloc, ip_address_t * rloc,
2554 gid_address_t * itr_rlocs, u64 * nonce_res, u32 * bi_res)
2555{
2556 vlib_buffer_t *b;
2557 u32 bi;
2558 vlib_main_t *vm = lcm->vlib_main;
2559
2560 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2561 {
2562 clib_warning ("Can't allocate buffer for Map-Request!");
2563 return 0;
2564 }
2565
2566 b = vlib_get_buffer (vm, bi);
2567
2568 /* leave some space for the encap headers */
2569 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2570
2571 /* put lisp msg */
2572 lisp_msg_put_mreq (lcm, b, NULL, deid, itr_rlocs, 0 /* smr invoked */ ,
2573 1 /* rloc probe */ , nonce_res);
2574
2575 /* push outer ip header */
2576 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
Florin Corasfdbc3822017-07-27 00:34:12 -07002577 rloc, 1);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002578
2579 bi_res[0] = bi;
2580
2581 return b;
2582}
2583
2584static vlib_buffer_t *
Florin Corasa2157cf2016-08-16 21:09:14 +02002585build_encapsulated_map_request (lisp_cp_main_t * lcm,
2586 gid_address_t * seid, gid_address_t * deid,
2587 locator_set_t * loc_set, ip_address_t * mr_ip,
2588 ip_address_t * sloc, u8 is_smr_invoked,
2589 u64 * nonce_res, u32 * bi_res)
Florin Corase127a7e2016-02-18 22:20:01 +01002590{
Florin Corasa2157cf2016-08-16 21:09:14 +02002591 vlib_buffer_t *b;
Florin Corase127a7e2016-02-18 22:20:01 +01002592 u32 bi;
Florin Corasa2157cf2016-08-16 21:09:14 +02002593 gid_address_t *rlocs = 0;
2594 vlib_main_t *vm = lcm->vlib_main;
Florin Corase127a7e2016-02-18 22:20:01 +01002595
2596 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2597 {
2598 clib_warning ("Can't allocate buffer for Map-Request!");
2599 return 0;
2600 }
2601
2602 b = vlib_get_buffer (vm, bi);
Florin Corasfdbc3822017-07-27 00:34:12 -07002603 b->flags = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01002604
2605 /* leave some space for the encap headers */
2606 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2607
Filip Tehlar254b0362016-04-07 10:04:34 +02002608 /* get rlocs */
2609 rlocs = build_itr_rloc_list (lcm, loc_set);
2610
Filip Tehlard5fcc462016-10-17 16:20:18 +02002611 if (MR_MODE_SRC_DST == lcm->map_request_mode
2612 && GID_ADDR_SRC_DST != gid_address_type (deid))
Florin Corasdca88042016-09-14 16:01:38 +02002613 {
2614 gid_address_t sd;
Dave Barachb7b92992018-10-17 10:38:51 -04002615 clib_memset (&sd, 0, sizeof (sd));
Florin Corasdca88042016-09-14 16:01:38 +02002616 build_src_dst (&sd, seid, deid);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002617 lisp_msg_put_mreq (lcm, b, seid, &sd, rlocs, is_smr_invoked,
2618 0 /* rloc probe */ , nonce_res);
Florin Corasdca88042016-09-14 16:01:38 +02002619 }
2620 else
2621 {
2622 /* put lisp msg */
2623 lisp_msg_put_mreq (lcm, b, seid, deid, rlocs, is_smr_invoked,
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002624 0 /* rloc probe */ , nonce_res);
Florin Corasdca88042016-09-14 16:01:38 +02002625 }
Florin Corase127a7e2016-02-18 22:20:01 +01002626
2627 /* push ecm: udp-ip-lisp */
2628 lisp_msg_push_ecm (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, seid, deid);
2629
Florin Corase127a7e2016-02-18 22:20:01 +01002630 /* push outer ip header */
Florin Corasddfafb82016-05-13 18:09:56 +02002631 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
Florin Corasfdbc3822017-07-27 00:34:12 -07002632 mr_ip, 1);
Florin Corase127a7e2016-02-18 22:20:01 +01002633
2634 bi_res[0] = bi;
Filip Tehlar254b0362016-04-07 10:04:34 +02002635
Florin Corasa2157cf2016-08-16 21:09:14 +02002636 vec_free (rlocs);
Florin Corase127a7e2016-02-18 22:20:01 +01002637 return b;
2638}
2639
2640static void
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002641reset_pending_mr_counters (pending_map_request_t * r)
Florin Corase127a7e2016-02-18 22:20:01 +01002642{
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002643 r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME;
2644 r->retries_num = 0;
2645}
2646
Filip Tehlar7048ff12017-07-27 08:09:14 +02002647#define foreach_msmr \
2648 _(server) \
2649 _(resolver)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002650
Filip Tehlar7048ff12017-07-27 08:09:14 +02002651#define _(name) \
2652static int \
2653elect_map_ ## name (lisp_cp_main_t * lcm) \
2654{ \
2655 lisp_msmr_t *mr; \
2656 vec_foreach (mr, lcm->map_ ## name ## s) \
2657 { \
2658 if (!mr->is_down) \
2659 { \
2660 ip_address_copy (&lcm->active_map_ ##name, &mr->address); \
2661 lcm->do_map_ ## name ## _election = 0; \
2662 return 1; \
2663 } \
2664 } \
2665 return 0; \
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002666}
Filip Tehlar7048ff12017-07-27 08:09:14 +02002667foreach_msmr
2668#undef _
2669 static void
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002670free_map_register_records (mapping_t * maps)
2671{
2672 mapping_t *map;
2673 vec_foreach (map, maps) vec_free (map->locators);
2674
2675 vec_free (maps);
2676}
2677
2678static void
2679add_locators (lisp_cp_main_t * lcm, mapping_t * m, u32 locator_set_index,
2680 ip_address_t * probed_loc)
2681{
2682 u32 *li;
2683 locator_t *loc, new;
2684 ip_interface_address_t *ia = 0;
2685 void *addr;
2686 ip_address_t *new_ip = &gid_address_ip (&new.address);
2687
2688 m->locators = 0;
2689 locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool,
2690 locator_set_index);
2691 vec_foreach (li, ls->locator_indices)
2692 {
2693 loc = pool_elt_at_index (lcm->locator_pool, li[0]);
2694 new = loc[0];
2695 if (loc->local)
2696 {
2697 /* *INDENT-OFF* */
2698 foreach_ip_interface_address (&lcm->im4->lookup_main, ia,
2699 loc->sw_if_index, 1 /* unnumbered */,
2700 ({
2701 addr = ip_interface_address_get_address (&lcm->im4->lookup_main,
2702 ia);
2703 ip_address_set (new_ip, addr, IP4);
2704 }));
2705
2706 /* Add ipv6 locators */
2707 foreach_ip_interface_address (&lcm->im6->lookup_main, ia,
2708 loc->sw_if_index, 1 /* unnumbered */,
2709 ({
2710 addr = ip_interface_address_get_address (&lcm->im6->lookup_main,
2711 ia);
2712 ip_address_set (new_ip, addr, IP6);
2713 }));
2714 /* *INDENT-ON* */
2715
2716 if (probed_loc && ip_address_cmp (probed_loc, new_ip) == 0)
2717 new.probed = 1;
2718 }
2719 vec_add1 (m->locators, new);
2720 }
2721}
2722
2723static mapping_t *
2724build_map_register_record_list (lisp_cp_main_t * lcm)
2725{
2726 mapping_t *recs = 0, rec, *m;
2727
2728 /* *INDENT-OFF* */
2729 pool_foreach(m, lcm->mapping_pool,
2730 {
2731 /* for now build only local mappings */
2732 if (!m->local)
2733 continue;
2734
2735 rec = m[0];
2736 add_locators (lcm, &rec, m->locator_set_index, NULL);
2737 vec_add1 (recs, rec);
2738 });
2739 /* *INDENT-ON* */
2740
2741 return recs;
2742}
2743
2744static int
2745update_map_register_auth_data (map_register_hdr_t * map_reg_hdr,
2746 lisp_key_type_t key_id, u8 * key,
2747 u16 auth_data_len, u32 msg_len)
2748{
2749 MREG_KEY_ID (map_reg_hdr) = clib_host_to_net_u16 (key_id);
2750 MREG_AUTH_DATA_LEN (map_reg_hdr) = clib_host_to_net_u16 (auth_data_len);
2751
2752 unsigned char *result = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
2753 (unsigned char *) map_reg_hdr, msg_len, NULL,
2754 NULL);
2755 clib_memcpy (MREG_DATA (map_reg_hdr), result, auth_data_len);
2756
2757 return 0;
2758}
2759
2760static vlib_buffer_t *
2761build_map_register (lisp_cp_main_t * lcm, ip_address_t * sloc,
2762 ip_address_t * ms_ip, u64 * nonce_res, u8 want_map_notif,
2763 mapping_t * records, lisp_key_type_t key_id, u8 * key,
2764 u32 * bi_res)
2765{
2766 void *map_reg_hdr;
2767 vlib_buffer_t *b;
2768 u32 bi, auth_data_len = 0, msg_len = 0;
2769 vlib_main_t *vm = lcm->vlib_main;
2770
2771 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2772 {
2773 clib_warning ("Can't allocate buffer for Map-Register!");
2774 return 0;
2775 }
2776
2777 b = vlib_get_buffer (vm, bi);
2778
2779 /* leave some space for the encap headers */
2780 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2781
2782 auth_data_len = auth_data_len_by_key_id (key_id);
2783 map_reg_hdr = lisp_msg_put_map_register (b, records, want_map_notif,
2784 auth_data_len, nonce_res,
2785 &msg_len);
2786
2787 update_map_register_auth_data (map_reg_hdr, key_id, key, auth_data_len,
2788 msg_len);
2789
2790 /* push outer ip header */
2791 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
Florin Corasfdbc3822017-07-27 00:34:12 -07002792 ms_ip, 1);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002793
2794 bi_res[0] = bi;
2795 return b;
2796}
2797
Filip Tehlar7048ff12017-07-27 08:09:14 +02002798#define _(name) \
2799static int \
2800get_egress_map_ ##name## _ip (lisp_cp_main_t * lcm, ip_address_t * ip) \
2801{ \
2802 lisp_msmr_t *mr; \
2803 while (lcm->do_map_ ## name ## _election \
2804 | (0 == ip_fib_get_first_egress_ip_for_dst \
2805 (lcm, &lcm->active_map_ ##name, ip))) \
2806 { \
2807 if (0 == elect_map_ ## name (lcm)) \
2808 /* all map resolvers/servers are down */ \
2809 { \
2810 /* restart MR/MS checking by marking all of them up */ \
2811 vec_foreach (mr, lcm->map_ ## name ## s) mr->is_down = 0; \
2812 return -1; \
2813 } \
2814 } \
2815 return 0; \
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002816}
2817
Filip Tehlar7048ff12017-07-27 08:09:14 +02002818foreach_msmr
2819#undef _
Filip Tehlarcda70662017-01-16 10:30:03 +01002820/* CP output statistics */
2821#define foreach_lisp_cp_output_error \
2822_(MAP_REGISTERS_SENT, "map-registers sent") \
Filip Tehlar5908e182017-10-16 06:51:11 -07002823_(MAP_REQUESTS_SENT, "map-requests sent") \
Filip Tehlarcda70662017-01-16 10:30:03 +01002824_(RLOC_PROBES_SENT, "rloc-probes sent")
Filip Tehlarcda70662017-01-16 10:30:03 +01002825static char *lisp_cp_output_error_strings[] = {
2826#define _(sym,string) string,
2827 foreach_lisp_cp_output_error
2828#undef _
2829};
2830
2831typedef enum
2832{
2833#define _(sym,str) LISP_CP_OUTPUT_ERROR_##sym,
2834 foreach_lisp_cp_output_error
2835#undef _
2836 LISP_CP_OUTPUT_N_ERROR,
2837} lisp_cp_output_error_t;
2838
2839static uword
2840lisp_cp_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2841 vlib_frame_t * from_frame)
2842{
2843 return 0;
2844}
2845
2846/* dummy node used only for statistics */
2847/* *INDENT-OFF* */
2848VLIB_REGISTER_NODE (lisp_cp_output_node) = {
2849 .function = lisp_cp_output,
2850 .name = "lisp-cp-output",
2851 .vector_size = sizeof (u32),
2852 .format_trace = format_lisp_cp_input_trace,
2853 .type = VLIB_NODE_TYPE_INTERNAL,
2854
2855 .n_errors = LISP_CP_OUTPUT_N_ERROR,
2856 .error_strings = lisp_cp_output_error_strings,
2857
2858 .n_next_nodes = LISP_CP_INPUT_N_NEXT,
2859
2860 .next_nodes = {
2861 [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
2862 },
2863};
2864/* *INDENT-ON* */
2865
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002866static int
2867send_rloc_probe (lisp_cp_main_t * lcm, gid_address_t * deid,
2868 u32 local_locator_set_index, ip_address_t * sloc,
2869 ip_address_t * rloc)
2870{
2871 locator_set_t *ls;
2872 u32 bi;
2873 vlib_buffer_t *b;
2874 vlib_frame_t *f;
2875 u64 nonce = 0;
2876 u32 next_index, *to_next;
2877 gid_address_t *itr_rlocs;
2878
2879 ls = pool_elt_at_index (lcm->locator_set_pool, local_locator_set_index);
2880 itr_rlocs = build_itr_rloc_list (lcm, ls);
2881
2882 b = build_map_request (lcm, deid, sloc, rloc, itr_rlocs, &nonce, &bi);
2883 vec_free (itr_rlocs);
2884 if (!b)
2885 return -1;
2886
2887 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2888
Filip Tehlar272c69e2017-02-15 16:40:35 +01002889 next_index = (ip_addr_version (rloc) == IP4) ?
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002890 ip4_lookup_node.index : ip6_lookup_node.index;
2891
2892 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
2893
2894 /* Enqueue the packet */
2895 to_next = vlib_frame_vector_args (f);
2896 to_next[0] = bi;
2897 f->n_vectors = 1;
2898 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
2899
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002900 return 0;
2901}
2902
2903static int
2904send_rloc_probes (lisp_cp_main_t * lcm)
2905{
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002906 u8 lprio = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002907 mapping_t *lm;
2908 fwd_entry_t *e;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002909 locator_pair_t *lp;
Filip Tehlarcda70662017-01-16 10:30:03 +01002910 u32 si, rloc_probes_sent = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002911
2912 /* *INDENT-OFF* */
2913 pool_foreach (e, lcm->fwd_entry_pool,
2914 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002915 if (vec_len (e->locator_pairs) == 0)
2916 continue;
2917
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002918 si = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &e->leid);
2919 if (~0 == si)
2920 {
2921 clib_warning ("internal error: cannot find local eid %U in "
2922 "map-cache!", format_gid_address, &e->leid);
2923 continue;
2924 }
2925 lm = pool_elt_at_index (lcm->mapping_pool, si);
2926
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002927 /* get the best (lowest) priority */
2928 lprio = e->locator_pairs[0].priority;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002929
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002930 /* send rloc-probe for pair(s) with the best remote locator priority */
2931 vec_foreach (lp, e->locator_pairs)
2932 {
2933 if (lp->priority != lprio)
2934 break;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002935
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002936 /* get first remote locator */
2937 send_rloc_probe (lcm, &e->reid, lm->locator_set_index, &lp->lcl_loc,
2938 &lp->rmt_loc);
Filip Tehlarcda70662017-01-16 10:30:03 +01002939 rloc_probes_sent++;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002940 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002941 });
2942 /* *INDENT-ON* */
2943
Filip Tehlarcda70662017-01-16 10:30:03 +01002944 vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index,
2945 LISP_CP_OUTPUT_ERROR_RLOC_PROBES_SENT,
2946 rloc_probes_sent);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002947 return 0;
2948}
2949
2950static int
2951send_map_register (lisp_cp_main_t * lcm, u8 want_map_notif)
2952{
Filip Tehlar7048ff12017-07-27 08:09:14 +02002953 pending_map_register_t *pmr;
Filip Tehlarcda70662017-01-16 10:30:03 +01002954 u32 bi, map_registers_sent = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002955 vlib_buffer_t *b;
2956 ip_address_t sloc;
2957 vlib_frame_t *f;
2958 u64 nonce = 0;
2959 u32 next_index, *to_next;
Filip Tehlarcf121c82017-05-03 10:12:44 +02002960 mapping_t *records, *r, *group, *k;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002961
Filip Tehlar7048ff12017-07-27 08:09:14 +02002962 if (get_egress_map_server_ip (lcm, &sloc) < 0)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002963 return -1;
2964
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002965 records = build_map_register_record_list (lcm);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002966 if (!records)
2967 return -1;
2968
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002969 vec_foreach (r, records)
2970 {
2971 u8 *key = r->key;
2972 u8 key_id = r->key_id;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002973
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002974 if (!key)
2975 continue; /* no secret key -> map-register cannot be sent */
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002976
Filip Tehlarcf121c82017-05-03 10:12:44 +02002977 group = 0;
2978 vec_add1 (group, r[0]);
2979
2980 /* group mappings that share common key */
2981 for (k = r + 1; k < vec_end (records); k++)
2982 {
2983 if (k->key_id != r->key_id)
2984 continue;
2985
2986 if (vec_is_equal (k->key, r->key))
2987 {
2988 vec_add1 (group, k[0]);
2989 k->key = 0; /* don't process this mapping again */
2990 }
2991 }
2992
Filip Tehlar7048ff12017-07-27 08:09:14 +02002993 b = build_map_register (lcm, &sloc, &lcm->active_map_server, &nonce,
2994 want_map_notif, group, key_id, key, &bi);
Filip Tehlarcf121c82017-05-03 10:12:44 +02002995 vec_free (group);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002996 if (!b)
2997 continue;
2998
2999 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
3000
Filip Tehlar7048ff12017-07-27 08:09:14 +02003001 next_index = (ip_addr_version (&lcm->active_map_server) == IP4) ?
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003002 ip4_lookup_node.index : ip6_lookup_node.index;
3003
3004 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
3005
3006 /* Enqueue the packet */
3007 to_next = vlib_frame_vector_args (f);
3008 to_next[0] = bi;
3009 f->n_vectors = 1;
3010 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
Filip Tehlarcda70662017-01-16 10:30:03 +01003011 map_registers_sent++;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003012
Filip Tehlar7048ff12017-07-27 08:09:14 +02003013 pool_get (lcm->pending_map_registers_pool, pmr);
Dave Barachb7b92992018-10-17 10:38:51 -04003014 clib_memset (pmr, 0, sizeof (*pmr));
Filip Tehlar7048ff12017-07-27 08:09:14 +02003015 pmr->time_to_expire = PENDING_MREG_EXPIRATION_TIME;
3016 hash_set (lcm->map_register_messages_by_nonce, nonce,
3017 pmr - lcm->pending_map_registers_pool);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003018 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003019 free_map_register_records (records);
3020
Filip Tehlarcda70662017-01-16 10:30:03 +01003021 vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index,
3022 LISP_CP_OUTPUT_ERROR_MAP_REGISTERS_SENT,
3023 map_registers_sent);
3024
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003025 return 0;
3026}
3027
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003028#define send_encapsulated_map_request(lcm, seid, deid, smr) \
3029 _send_encapsulated_map_request(lcm, seid, deid, smr, 0)
3030
3031#define resend_encapsulated_map_request(lcm, seid, deid, smr) \
3032 _send_encapsulated_map_request(lcm, seid, deid, smr, 1)
3033
3034static int
Florin Corasa2157cf2016-08-16 21:09:14 +02003035_send_encapsulated_map_request (lisp_cp_main_t * lcm,
3036 gid_address_t * seid, gid_address_t * deid,
3037 u8 is_smr_invoked, u8 is_resend)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003038{
Florin Corasa2157cf2016-08-16 21:09:14 +02003039 u32 next_index, bi = 0, *to_next, map_index;
3040 vlib_buffer_t *b;
3041 vlib_frame_t *f;
Florin Corase127a7e2016-02-18 22:20:01 +01003042 u64 nonce = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02003043 locator_set_t *loc_set;
3044 mapping_t *map;
3045 pending_map_request_t *pmr, *duplicate_pmr = 0;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003046 ip_address_t sloc;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02003047 u32 ls_index;
Florin Corase127a7e2016-02-18 22:20:01 +01003048
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003049 /* if there is already a pending request remember it */
Florin Corasa2157cf2016-08-16 21:09:14 +02003050
3051 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003052 pool_foreach(pmr, lcm->pending_map_requests_pool,
3053 ({
3054 if (!gid_address_cmp (&pmr->src, seid)
3055 && !gid_address_cmp (&pmr->dst, deid))
3056 {
3057 duplicate_pmr = pmr;
3058 break;
3059 }
3060 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02003061 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003062
3063 if (!is_resend && duplicate_pmr)
3064 {
3065 /* don't send the request if there is a pending map request already */
3066 return 0;
3067 }
3068
Filip Tehlar0a8840d2017-10-16 05:48:23 -07003069 u8 pitr_mode = lcm->flags & LISP_FLAG_PITR_MODE;
3070
Florin Corase127a7e2016-02-18 22:20:01 +01003071 /* get locator-set for seid */
Filip Tehlar0a8840d2017-10-16 05:48:23 -07003072 if (!pitr_mode && gid_address_type (deid) != GID_ADDR_NSH)
Florin Corase127a7e2016-02-18 22:20:01 +01003073 {
Filip Tehlar53f09e32016-05-19 14:25:44 +02003074 map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid);
3075 if (map_index == ~0)
Florin Corasa2157cf2016-08-16 21:09:14 +02003076 {
3077 clib_warning ("No local mapping found in eid-table for %U!",
3078 format_gid_address, seid);
3079 return -1;
3080 }
Filip Tehlar53f09e32016-05-19 14:25:44 +02003081
3082 map = pool_elt_at_index (lcm->mapping_pool, map_index);
3083
3084 if (!map->local)
Florin Corasa2157cf2016-08-16 21:09:14 +02003085 {
3086 clib_warning
3087 ("Mapping found for src eid %U is not marked as local!",
3088 format_gid_address, seid);
3089 return -1;
3090 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02003091 ls_index = map->locator_set_index;
Filip Tehlar53f09e32016-05-19 14:25:44 +02003092 }
3093 else
3094 {
Filip Tehlar0a8840d2017-10-16 05:48:23 -07003095 if (pitr_mode)
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003096 {
Filip Tehlar0a8840d2017-10-16 05:48:23 -07003097 if (lcm->pitr_map_index != ~0)
3098 {
3099 map =
3100 pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
3101 ls_index = map->locator_set_index;
3102 }
3103 else
3104 {
3105 return -1;
3106 }
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003107 }
3108 else
3109 {
3110 if (lcm->nsh_map_index == (u32) ~ 0)
3111 {
3112 clib_warning ("No locator-set defined for NSH!");
3113 return -1;
3114 }
3115 else
3116 {
3117 map = pool_elt_at_index (lcm->mapping_pool, lcm->nsh_map_index);
3118 ls_index = map->locator_set_index;
3119 }
3120 }
Florin Corase127a7e2016-02-18 22:20:01 +01003121 }
3122
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02003123 /* overwrite locator set if map-request itr-rlocs configured */
3124 if (~0 != lcm->mreq_itr_rlocs)
3125 {
3126 ls_index = lcm->mreq_itr_rlocs;
3127 }
3128
3129 loc_set = pool_elt_at_index (lcm->locator_set_pool, ls_index);
Florin Corase127a7e2016-02-18 22:20:01 +01003130
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003131 if (get_egress_map_resolver_ip (lcm, &sloc) < 0)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003132 {
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003133 if (duplicate_pmr)
3134 duplicate_pmr->to_be_removed = 1;
3135 return -1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003136 }
Florin Corasddfafb82016-05-13 18:09:56 +02003137
Florin Corase127a7e2016-02-18 22:20:01 +01003138 /* build the encapsulated map request */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003139 b = build_encapsulated_map_request (lcm, seid, deid, loc_set,
Florin Corasa2157cf2016-08-16 21:09:14 +02003140 &lcm->active_map_resolver,
3141 &sloc, is_smr_invoked, &nonce, &bi);
Florin Corase127a7e2016-02-18 22:20:01 +01003142
3143 if (!b)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003144 return -1;
Florin Corase127a7e2016-02-18 22:20:01 +01003145
Florin Corasf727db92016-06-23 15:01:58 +02003146 /* set fib index to default and lookup node */
Florin Corasa2157cf2016-08-16 21:09:14 +02003147 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
3148 next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
3149 ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corase127a7e2016-02-18 22:20:01 +01003150
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003151 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
Florin Corase127a7e2016-02-18 22:20:01 +01003152
3153 /* Enqueue the packet */
3154 to_next = vlib_frame_vector_args (f);
3155 to_next[0] = bi;
3156 f->n_vectors = 1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003157 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
Florin Corase127a7e2016-02-18 22:20:01 +01003158
Filip Tehlar5908e182017-10-16 06:51:11 -07003159 vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index,
3160 LISP_CP_OUTPUT_ERROR_MAP_REQUESTS_SENT, 1);
3161
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003162 if (duplicate_pmr)
3163 /* if there is a pending request already update it */
3164 {
Florin Corasa2157cf2016-08-16 21:09:14 +02003165 if (clib_fifo_elts (duplicate_pmr->nonces) >= PENDING_MREQ_QUEUE_LEN)
3166 {
3167 /* remove the oldest nonce */
3168 u64 CLIB_UNUSED (tmp), *nonce_del;
3169 nonce_del = clib_fifo_head (duplicate_pmr->nonces);
3170 hash_unset (lcm->pending_map_requests_by_nonce, nonce_del[0]);
3171 clib_fifo_sub1 (duplicate_pmr->nonces, tmp);
3172 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003173
Florin Corasf4691cd2016-08-15 19:16:32 +02003174 clib_fifo_add1 (duplicate_pmr->nonces, nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003175 hash_set (lcm->pending_map_requests_by_nonce, nonce,
Florin Corasa2157cf2016-08-16 21:09:14 +02003176 duplicate_pmr - lcm->pending_map_requests_pool);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003177 }
3178 else
3179 {
3180 /* add map-request to pending requests table */
Florin Corasa2157cf2016-08-16 21:09:14 +02003181 pool_get (lcm->pending_map_requests_pool, pmr);
Dave Barachb7b92992018-10-17 10:38:51 -04003182 clib_memset (pmr, 0, sizeof (*pmr));
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003183 gid_address_copy (&pmr->src, seid);
3184 gid_address_copy (&pmr->dst, deid);
Florin Corasf4691cd2016-08-15 19:16:32 +02003185 clib_fifo_add1 (pmr->nonces, nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003186 pmr->is_smr_invoked = is_smr_invoked;
3187 reset_pending_mr_counters (pmr);
3188 hash_set (lcm->pending_map_requests_by_nonce, nonce,
Florin Corasa2157cf2016-08-16 21:09:14 +02003189 pmr - lcm->pending_map_requests_pool);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003190 }
3191
3192 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003193}
3194
3195static void
Florin Corasa2157cf2016-08-16 21:09:14 +02003196get_src_and_dst_ip (void *hdr, ip_address_t * src, ip_address_t * dst)
Florin Corase127a7e2016-02-18 22:20:01 +01003197{
Florin Corasa2157cf2016-08-16 21:09:14 +02003198 ip4_header_t *ip4 = hdr;
3199 ip6_header_t *ip6;
Florin Corase127a7e2016-02-18 22:20:01 +01003200
3201 if ((ip4->ip_version_and_header_length & 0xF0) == 0x40)
3202 {
Florin Corasa2157cf2016-08-16 21:09:14 +02003203 ip_address_set (src, &ip4->src_address, IP4);
3204 ip_address_set (dst, &ip4->dst_address, IP4);
Florin Corase127a7e2016-02-18 22:20:01 +01003205 }
3206 else
3207 {
3208 ip6 = hdr;
Florin Corasa2157cf2016-08-16 21:09:14 +02003209 ip_address_set (src, &ip6->src_address, IP6);
3210 ip_address_set (dst, &ip6->dst_address, IP6);
Florin Corase127a7e2016-02-18 22:20:01 +01003211 }
3212}
3213
Filip Tehlar324112f2016-06-02 16:07:38 +02003214static u32
Florin Coras1a1adc72016-07-22 01:45:30 +02003215lisp_get_vni_from_buffer_ip (lisp_cp_main_t * lcm, vlib_buffer_t * b,
Florin Corasa2157cf2016-08-16 21:09:14 +02003216 u8 version)
Filip Tehlar324112f2016-06-02 16:07:38 +02003217{
Florin Corasa2157cf2016-08-16 21:09:14 +02003218 uword *vnip;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01003219 u32 vni = ~0, table_id = ~0;
Filip Tehlar324112f2016-06-02 16:07:38 +02003220
Florin Coras87e40692016-09-22 18:02:17 +02003221 table_id = fib_table_get_table_id_for_sw_if_index ((version ==
3222 IP4 ? FIB_PROTOCOL_IP4 :
3223 FIB_PROTOCOL_IP6),
3224 vnet_buffer
3225 (b)->sw_if_index
3226 [VLIB_RX]);
Filip Tehlar324112f2016-06-02 16:07:38 +02003227
3228 vnip = hash_get (lcm->vni_by_table_id, table_id);
3229 if (vnip)
3230 vni = vnip[0];
3231 else
3232 clib_warning ("vrf %d is not mapped to any vni!", table_id);
3233
3234 return vni;
3235}
3236
Florin Coras1a1adc72016-07-22 01:45:30 +02003237always_inline u32
Filip Tehlard5a65db2017-05-17 17:21:10 +02003238lisp_get_bd_from_buffer_eth (vlib_buffer_t * b)
Florin Coras1a1adc72016-07-22 01:45:30 +02003239{
Florin Coras1a1adc72016-07-22 01:45:30 +02003240 u32 sw_if_index0;
3241
Florin Corasa2157cf2016-08-16 21:09:14 +02003242 l2input_main_t *l2im = &l2input_main;
3243 l2_input_config_t *config;
3244 l2_bridge_domain_t *bd_config;
Florin Coras1a1adc72016-07-22 01:45:30 +02003245
Florin Corasa2157cf2016-08-16 21:09:14 +02003246 sw_if_index0 = vnet_buffer (b)->sw_if_index[VLIB_RX];
3247 config = vec_elt_at_index (l2im->configs, sw_if_index0);
Florin Coras1a1adc72016-07-22 01:45:30 +02003248 bd_config = vec_elt_at_index (l2im->bd_configs, config->bd_index);
3249
Filip Tehlard5a65db2017-05-17 17:21:10 +02003250 return bd_config->bd_id;
3251}
3252
3253always_inline u32
3254lisp_get_vni_from_buffer_eth (lisp_cp_main_t * lcm, vlib_buffer_t * b)
3255{
3256 uword *vnip;
3257 u32 vni = ~0;
3258 u32 bd = lisp_get_bd_from_buffer_eth (b);
3259
3260 vnip = hash_get (lcm->vni_by_bd_id, bd);
Florin Coras1a1adc72016-07-22 01:45:30 +02003261 if (vnip)
3262 vni = vnip[0];
3263 else
Filip Tehlard5a65db2017-05-17 17:21:10 +02003264 clib_warning ("bridge domain %d is not mapped to any vni!", bd);
Florin Coras1a1adc72016-07-22 01:45:30 +02003265
3266 return vni;
3267}
3268
Filip Tehlar4868ff62017-03-09 16:48:39 +01003269void
Florin Corasa2157cf2016-08-16 21:09:14 +02003270get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b,
Filip Tehlar4868ff62017-03-09 16:48:39 +01003271 gid_address_t * src, gid_address_t * dst,
3272 u16 type)
Florin Coras1a1adc72016-07-22 01:45:30 +02003273{
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003274 ethernet_header_t *eh;
Florin Coras1a1adc72016-07-22 01:45:30 +02003275 u32 vni = 0;
Filip Tehlar05879992017-09-05 15:46:09 +02003276 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
Florin Coras1a1adc72016-07-22 01:45:30 +02003277
Dave Barachb7b92992018-10-17 10:38:51 -04003278 clib_memset (src, 0, sizeof (*src));
3279 clib_memset (dst, 0, sizeof (*dst));
Florin Coras1a1adc72016-07-22 01:45:30 +02003280
Filip Tehlard5a65db2017-05-17 17:21:10 +02003281 gid_address_type (dst) = GID_ADDR_NO_ADDRESS;
3282 gid_address_type (src) = GID_ADDR_NO_ADDRESS;
3283
Florin Coras1a1adc72016-07-22 01:45:30 +02003284 if (LISP_AFI_IP == type || LISP_AFI_IP6 == type)
3285 {
Florin Corasa2157cf2016-08-16 21:09:14 +02003286 ip4_header_t *ip;
Florin Coras1a1adc72016-07-22 01:45:30 +02003287 u8 version, preflen;
3288
Florin Corasa2157cf2016-08-16 21:09:14 +02003289 gid_address_type (src) = GID_ADDR_IP_PREFIX;
3290 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
Florin Coras1a1adc72016-07-22 01:45:30 +02003291
3292 ip = vlib_buffer_get_current (b);
Florin Corasa2157cf2016-08-16 21:09:14 +02003293 get_src_and_dst_ip (ip, &gid_address_ip (src), &gid_address_ip (dst));
Florin Coras1a1adc72016-07-22 01:45:30 +02003294
Florin Corasa2157cf2016-08-16 21:09:14 +02003295 version = gid_address_ip_version (src);
Florin Coras1a1adc72016-07-22 01:45:30 +02003296 preflen = ip_address_max_len (version);
Florin Corasa2157cf2016-08-16 21:09:14 +02003297 gid_address_ippref_len (src) = preflen;
3298 gid_address_ippref_len (dst) = preflen;
Florin Coras1a1adc72016-07-22 01:45:30 +02003299
3300 vni = lisp_get_vni_from_buffer_ip (lcm, b, version);
3301 gid_address_vni (dst) = vni;
3302 gid_address_vni (src) = vni;
3303 }
3304 else if (LISP_AFI_MAC == type)
3305 {
Filip Tehlard5a65db2017-05-17 17:21:10 +02003306 ethernet_arp_header_t *ah;
Florin Coras1a1adc72016-07-22 01:45:30 +02003307
3308 eh = vlib_buffer_get_current (b);
3309
Filip Tehlard5a65db2017-05-17 17:21:10 +02003310 if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_ARP)
3311 {
3312 ah = (ethernet_arp_header_t *) (((u8 *) eh) + sizeof (*eh));
Florin Corasc1c09762018-01-30 03:21:32 -08003313 gid_address_type (dst) = GID_ADDR_ARP;
3314
Filip Tehlard5a65db2017-05-17 17:21:10 +02003315 if (clib_net_to_host_u16 (ah->opcode)
3316 != ETHERNET_ARP_OPCODE_request)
Florin Corasc1c09762018-01-30 03:21:32 -08003317 {
Dave Barachb7b92992018-10-17 10:38:51 -04003318 clib_memset (&gid_address_arp_ndp_ip (dst), 0,
3319 sizeof (ip_address_t));
Florin Corasc1c09762018-01-30 03:21:32 -08003320 ip_addr_version (&gid_address_arp_ndp_ip (dst)) = IP4;
3321 gid_address_arp_ndp_bd (dst) = ~0;
3322 return;
3323 }
Florin Coras1a1adc72016-07-22 01:45:30 +02003324
Filip Tehlard5a65db2017-05-17 17:21:10 +02003325 gid_address_arp_bd (dst) = lisp_get_bd_from_buffer_eth (b);
3326 clib_memcpy (&gid_address_arp_ip4 (dst),
3327 &ah->ip4_over_ethernet[1].ip4, 4);
3328 }
3329 else
3330 {
Filip Tehlar05879992017-09-05 15:46:09 +02003331 if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_IP6)
3332 {
3333 ip6_header_t *ip;
3334 ip = (ip6_header_t *) (eh + 1);
3335
3336 if (IP_PROTOCOL_ICMP6 == ip->protocol)
3337 {
3338 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
3339 ndh = ip6_next_header (ip);
3340 if (ndh->icmp.type == ICMP6_neighbor_solicitation)
3341 {
Florin Corasc1c09762018-01-30 03:21:32 -08003342 gid_address_type (dst) = GID_ADDR_NDP;
3343
3344 /* check that source link layer address option is present */
Filip Tehlar05879992017-09-05 15:46:09 +02003345 opt = (void *) (ndh + 1);
3346 if ((opt->header.type !=
3347 ICMP6_NEIGHBOR_DISCOVERY_OPTION_source_link_layer_address)
3348 || (opt->header.n_data_u64s != 1))
Florin Corasc1c09762018-01-30 03:21:32 -08003349 {
Dave Barachb7b92992018-10-17 10:38:51 -04003350 clib_memset (&gid_address_arp_ndp_ip (dst), 0,
3351 sizeof (ip_address_t));
Florin Corasc1c09762018-01-30 03:21:32 -08003352 ip_addr_version (&gid_address_arp_ndp_ip (dst)) =
3353 IP6;
3354 gid_address_arp_ndp_bd (dst) = ~0;
3355 gid_address_type (src) = GID_ADDR_NO_ADDRESS;
3356 return;
3357 }
Filip Tehlar05879992017-09-05 15:46:09 +02003358
Filip Tehlar05879992017-09-05 15:46:09 +02003359 gid_address_ndp_bd (dst) =
3360 lisp_get_bd_from_buffer_eth (b);
3361 ip_address_set (&gid_address_arp_ndp_ip (dst),
3362 &ndh->target_address, IP6);
3363 return;
3364 }
3365 }
3366 }
3367
Filip Tehlard5a65db2017-05-17 17:21:10 +02003368 gid_address_type (src) = GID_ADDR_MAC;
3369 gid_address_type (dst) = GID_ADDR_MAC;
3370 mac_copy (&gid_address_mac (src), eh->src_address);
3371 mac_copy (&gid_address_mac (dst), eh->dst_address);
Florin Coras1a1adc72016-07-22 01:45:30 +02003372
Filip Tehlard5a65db2017-05-17 17:21:10 +02003373 /* get vni */
3374 vni = lisp_get_vni_from_buffer_eth (lcm, b);
3375
3376 gid_address_vni (dst) = vni;
3377 gid_address_vni (src) = vni;
3378 }
Florin Coras1a1adc72016-07-22 01:45:30 +02003379 }
Florin Corasce1b4c72017-01-26 14:25:34 -08003380 else if (LISP_AFI_LCAF == type)
3381 {
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003382 lisp_nsh_hdr_t *nh;
3383 eh = vlib_buffer_get_current (b);
3384
3385 if (clib_net_to_host_u16 (eh->type) == ETHERNET_TYPE_NSH)
3386 {
3387 nh = (lisp_nsh_hdr_t *) (((u8 *) eh) + sizeof (*eh));
3388 u32 spi = clib_net_to_host_u32 (nh->spi_si << 8);
3389 u8 si = (u8) clib_net_to_host_u32 (nh->spi_si);
3390 gid_address_nsh_spi (dst) = spi;
3391 gid_address_nsh_si (dst) = si;
3392
3393 gid_address_type (dst) = GID_ADDR_NSH;
Filip Tehlar8d7a0b92017-10-18 07:10:25 -07003394 gid_address_type (src) = GID_ADDR_NSH;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003395 }
Florin Corasce1b4c72017-01-26 14:25:34 -08003396 }
Florin Coras1a1adc72016-07-22 01:45:30 +02003397}
3398
Florin Corase127a7e2016-02-18 22:20:01 +01003399static uword
Neale Ranns0bfe5d82016-08-25 15:29:12 +01003400lisp_cp_lookup_inline (vlib_main_t * vm,
3401 vlib_node_runtime_t * node,
3402 vlib_frame_t * from_frame, int overlay)
Florin Corase127a7e2016-02-18 22:20:01 +01003403{
Filip Tehlar05879992017-09-05 15:46:09 +02003404 icmp6_neighbor_discovery_ethernet_link_layer_address_option_t *opt;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003405 u32 *from, *to_next, di, si;
Florin Corasa2157cf2016-08-16 21:09:14 +02003406 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar5908e182017-10-16 06:51:11 -07003407 u32 next_index;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003408 uword n_left_from, n_left_to_next;
3409 vnet_main_t *vnm = vnet_get_main ();
Florin Corase127a7e2016-02-18 22:20:01 +01003410
3411 from = vlib_frame_vector_args (from_frame);
3412 n_left_from = from_frame->n_vectors;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003413 next_index = node->cached_next_index;
Florin Corase127a7e2016-02-18 22:20:01 +01003414
3415 while (n_left_from > 0)
3416 {
Filip Tehlard5a65db2017-05-17 17:21:10 +02003417 vlib_get_next_frame (vm, node, next_index, to_next, n_left_to_next);
Florin Corase127a7e2016-02-18 22:20:01 +01003418
Filip Tehlard5a65db2017-05-17 17:21:10 +02003419 while (n_left_from > 0 && n_left_to_next > 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02003420 {
Filip Tehlard5a65db2017-05-17 17:21:10 +02003421 u32 pi0, sw_if_index0, next0;
3422 u64 mac0;
Florin Corasa2157cf2016-08-16 21:09:14 +02003423 vlib_buffer_t *b0;
3424 gid_address_t src, dst;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003425 ethernet_arp_header_t *arp0;
3426 ethernet_header_t *eth0;
3427 vnet_hw_interface_t *hw_if0;
Filip Tehlar05879992017-09-05 15:46:09 +02003428 ethernet_header_t *eh0;
3429 icmp6_neighbor_solicitation_or_advertisement_header_t *ndh;
3430 ip6_header_t *ip0;
Florin Corase127a7e2016-02-18 22:20:01 +01003431
Florin Corasa2157cf2016-08-16 21:09:14 +02003432 pi0 = from[0];
3433 from += 1;
3434 n_left_from -= 1;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003435 to_next[0] = pi0;
3436 to_next += 1;
3437 n_left_to_next -= 1;
Florin Corase127a7e2016-02-18 22:20:01 +01003438
Florin Corasa2157cf2016-08-16 21:09:14 +02003439 b0 = vlib_get_buffer (vm, pi0);
Florin Corase127a7e2016-02-18 22:20:01 +01003440
Florin Corasa2157cf2016-08-16 21:09:14 +02003441 /* src/dst eid pair */
Filip Tehlar4868ff62017-03-09 16:48:39 +01003442 get_src_and_dst_eids_from_buffer (lcm, b0, &src, &dst, overlay);
Filip Tehlar324112f2016-06-02 16:07:38 +02003443
Filip Tehlard5a65db2017-05-17 17:21:10 +02003444 if (gid_address_type (&dst) == GID_ADDR_ARP)
3445 {
3446 mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
Filip Tehlar05879992017-09-05 15:46:09 +02003447 if (GID_LOOKUP_MISS_L2 == mac0)
3448 goto drop;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003449
Filip Tehlar05879992017-09-05 15:46:09 +02003450 /* send ARP reply */
3451 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3452 vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003453
Filip Tehlar05879992017-09-05 15:46:09 +02003454 hw_if0 = vnet_get_sup_hw_interface (vnm, sw_if_index0);
Filip Tehlard5a65db2017-05-17 17:21:10 +02003455
Filip Tehlar05879992017-09-05 15:46:09 +02003456 eth0 = vlib_buffer_get_current (b0);
3457 arp0 = (ethernet_arp_header_t *) (((u8 *) eth0)
3458 + sizeof (*eth0));
3459 arp0->opcode = clib_host_to_net_u16 (ETHERNET_ARP_OPCODE_reply);
3460 arp0->ip4_over_ethernet[1] = arp0->ip4_over_ethernet[0];
3461 clib_memcpy (arp0->ip4_over_ethernet[0].ethernet,
3462 (u8 *) & mac0, 6);
3463 clib_memcpy (&arp0->ip4_over_ethernet[0].ip4,
3464 &gid_address_arp_ip4 (&dst), 4);
Filip Tehlard5a65db2017-05-17 17:21:10 +02003465
Filip Tehlar05879992017-09-05 15:46:09 +02003466 /* Hardware must be ethernet-like. */
3467 ASSERT (vec_len (hw_if0->hw_address) == 6);
Filip Tehlard5a65db2017-05-17 17:21:10 +02003468
Filip Tehlar05879992017-09-05 15:46:09 +02003469 clib_memcpy (eth0->dst_address, eth0->src_address, 6);
3470 clib_memcpy (eth0->src_address, hw_if0->hw_address, 6);
Filip Tehlard5a65db2017-05-17 17:21:10 +02003471
Filip Tehlar05879992017-09-05 15:46:09 +02003472 b0->error = node->errors[LISP_CP_LOOKUP_ERROR_ARP_REPLY_TX];
3473 next0 = LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX;
3474 goto enqueue;
3475 }
3476 else if (gid_address_type (&dst) == GID_ADDR_NDP)
3477 {
3478 mac0 = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
3479 if (GID_LOOKUP_MISS_L2 == mac0)
3480 goto drop;
3481
3482 sw_if_index0 = vnet_buffer (b0)->sw_if_index[VLIB_RX];
3483 vnet_buffer (b0)->sw_if_index[VLIB_TX] = sw_if_index0;
3484
3485 eh0 = vlib_buffer_get_current (b0);
3486 ip0 = (ip6_header_t *) (eh0 + 1);
3487 ndh = ip6_next_header (ip0);
3488 int bogus_length;
3489 ip0->dst_address = ip0->src_address;
3490 ip0->src_address = ndh->target_address;
3491 ip0->hop_limit = 255;
3492 opt = (void *) (ndh + 1);
3493 opt->header.type =
3494 ICMP6_NEIGHBOR_DISCOVERY_OPTION_target_link_layer_address;
3495 clib_memcpy (opt->ethernet_address, (u8 *) & mac0, 6);
3496 ndh->icmp.type = ICMP6_neighbor_advertisement;
3497 ndh->advertisement_flags = clib_host_to_net_u32
3498 (ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_SOLICITED |
3499 ICMP6_NEIGHBOR_ADVERTISEMENT_FLAG_OVERRIDE);
3500 ndh->icmp.checksum = 0;
3501 ndh->icmp.checksum =
3502 ip6_tcp_udp_icmp_compute_checksum (vm, b0, ip0,
3503 &bogus_length);
3504 clib_memcpy (eh0->dst_address, eh0->src_address, 6);
3505 clib_memcpy (eh0->src_address, (u8 *) & mac0, 6);
3506 b0->error =
3507 node->errors
3508 [LISP_CP_LOOKUP_ERROR_NDP_NEIGHBOR_ADVERTISEMENT_TX];
3509 next0 = LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX;
3510 goto enqueue;
Filip Tehlard5a65db2017-05-17 17:21:10 +02003511 }
3512
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07003513 /* if we have remote mapping for destination already in map-cache
Florin Corasa2157cf2016-08-16 21:09:14 +02003514 add forwarding tunnel directly. If not send a map-request */
Florin Corasdca88042016-09-14 16:01:38 +02003515 di = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid, &dst,
3516 &src);
Florin Corasa2157cf2016-08-16 21:09:14 +02003517 if (~0 != di)
3518 {
3519 mapping_t *m = vec_elt_at_index (lcm->mapping_pool, di);
3520 /* send a map-request also in case of negative mapping entry
3521 with corresponding action */
3522 if (m->action == LISP_SEND_MAP_REQUEST)
3523 {
3524 /* send map-request */
3525 queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
3526 0 /* is_resend */ );
Florin Corasa2157cf2016-08-16 21:09:14 +02003527 }
3528 else
3529 {
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02003530 if (GID_ADDR_NSH != gid_address_type (&dst))
3531 {
3532 si = gid_dictionary_lookup (&lcm->mapping_index_by_gid,
3533 &src);
3534 }
3535 else
3536 si = lcm->nsh_map_index;
3537
Florin Corasa2157cf2016-08-16 21:09:14 +02003538 if (~0 != si)
3539 {
Filip Tehlarce1aae42017-01-04 10:42:25 +01003540 dp_add_fwd_entry_from_mt (si, di);
Florin Corasa2157cf2016-08-16 21:09:14 +02003541 }
3542 }
3543 }
3544 else
3545 {
3546 /* send map-request */
3547 queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
3548 0 /* is_resend */ );
Florin Corasa2157cf2016-08-16 21:09:14 +02003549 }
Florin Corase127a7e2016-02-18 22:20:01 +01003550
Filip Tehlar05879992017-09-05 15:46:09 +02003551 drop:
Filip Tehlard5a65db2017-05-17 17:21:10 +02003552 b0->error = node->errors[LISP_CP_LOOKUP_ERROR_DROP];
Filip Tehlar05879992017-09-05 15:46:09 +02003553 next0 = LISP_CP_LOOKUP_NEXT_DROP;
3554 enqueue:
Florin Corasa2157cf2016-08-16 21:09:14 +02003555 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3556 {
3557 lisp_cp_lookup_trace_t *tr = vlib_add_trace (vm, node, b0,
3558 sizeof (*tr));
Andrej Kozemcak94e34762016-05-25 12:43:21 +02003559
Dave Barachb7b92992018-10-17 10:38:51 -04003560 clib_memset (tr, 0, sizeof (*tr));
Florin Corasa2157cf2016-08-16 21:09:14 +02003561 gid_address_copy (&tr->dst_eid, &dst);
Florin Coras5a1c11b2016-09-06 16:29:34 +02003562 ip_address_copy (&tr->map_resolver_ip,
3563 &lcm->active_map_resolver);
Florin Corasa2157cf2016-08-16 21:09:14 +02003564 }
3565 gid_address_free (&dst);
3566 gid_address_free (&src);
Filip Tehlard5a65db2017-05-17 17:21:10 +02003567 vlib_validate_buffer_enqueue_x1 (vm, node, next_index,
3568 to_next,
3569 n_left_to_next, pi0, next0);
Florin Corasa2157cf2016-08-16 21:09:14 +02003570 }
Florin Corase127a7e2016-02-18 22:20:01 +01003571
Filip Tehlard5a65db2017-05-17 17:21:10 +02003572 vlib_put_next_frame (vm, node, next_index, n_left_to_next);
Florin Corase127a7e2016-02-18 22:20:01 +01003573 }
Florin Corase127a7e2016-02-18 22:20:01 +01003574 return from_frame->n_vectors;
3575}
3576
Neale Ranns0bfe5d82016-08-25 15:29:12 +01003577static uword
3578lisp_cp_lookup_ip4 (vlib_main_t * vm,
3579 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3580{
3581 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP));
3582}
3583
3584static uword
3585lisp_cp_lookup_ip6 (vlib_main_t * vm,
3586 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3587{
3588 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP6));
3589}
3590
Neale Ranns5e575b12016-10-03 09:40:25 +01003591static uword
3592lisp_cp_lookup_l2 (vlib_main_t * vm,
3593 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3594{
3595 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_MAC));
3596}
3597
Florin Corasce1b4c72017-01-26 14:25:34 -08003598static uword
3599lisp_cp_lookup_nsh (vlib_main_t * vm,
3600 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
3601{
3602 /* TODO decide if NSH should be propagated as LCAF or not */
3603 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_LCAF));
3604}
3605
Florin Corasa2157cf2016-08-16 21:09:14 +02003606/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01003607VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node) = {
3608 .function = lisp_cp_lookup_ip4,
3609 .name = "lisp-cp-lookup-ip4",
3610 .vector_size = sizeof (u32),
3611 .format_trace = format_lisp_cp_lookup_trace,
3612 .type = VLIB_NODE_TYPE_INTERNAL,
3613
3614 .n_errors = LISP_CP_LOOKUP_N_ERROR,
3615 .error_strings = lisp_cp_lookup_error_strings,
3616
3617 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3618
3619 .next_nodes = {
3620 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Filip Tehlar05879992017-09-05 15:46:09 +02003621 [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
Neale Ranns0bfe5d82016-08-25 15:29:12 +01003622 },
3623};
3624/* *INDENT-ON* */
3625
3626/* *INDENT-OFF* */
3627VLIB_REGISTER_NODE (lisp_cp_lookup_ip6_node) = {
3628 .function = lisp_cp_lookup_ip6,
3629 .name = "lisp-cp-lookup-ip6",
Florin Corase127a7e2016-02-18 22:20:01 +01003630 .vector_size = sizeof (u32),
3631 .format_trace = format_lisp_cp_lookup_trace,
3632 .type = VLIB_NODE_TYPE_INTERNAL,
3633
3634 .n_errors = LISP_CP_LOOKUP_N_ERROR,
3635 .error_strings = lisp_cp_lookup_error_strings,
3636
3637 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3638
3639 .next_nodes = {
3640 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Filip Tehlar05879992017-09-05 15:46:09 +02003641 [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
Neale Ranns5e575b12016-10-03 09:40:25 +01003642 },
3643};
3644/* *INDENT-ON* */
3645
3646/* *INDENT-OFF* */
3647VLIB_REGISTER_NODE (lisp_cp_lookup_l2_node) = {
3648 .function = lisp_cp_lookup_l2,
3649 .name = "lisp-cp-lookup-l2",
3650 .vector_size = sizeof (u32),
3651 .format_trace = format_lisp_cp_lookup_trace,
3652 .type = VLIB_NODE_TYPE_INTERNAL,
3653
3654 .n_errors = LISP_CP_LOOKUP_N_ERROR,
3655 .error_strings = lisp_cp_lookup_error_strings,
3656
3657 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3658
3659 .next_nodes = {
3660 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Filip Tehlar05879992017-09-05 15:46:09 +02003661 [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
Florin Corase127a7e2016-02-18 22:20:01 +01003662 },
3663};
Florin Corasa2157cf2016-08-16 21:09:14 +02003664/* *INDENT-ON* */
Florin Corase127a7e2016-02-18 22:20:01 +01003665
Florin Corasce1b4c72017-01-26 14:25:34 -08003666/* *INDENT-OFF* */
3667VLIB_REGISTER_NODE (lisp_cp_lookup_nsh_node) = {
3668 .function = lisp_cp_lookup_nsh,
3669 .name = "lisp-cp-lookup-nsh",
3670 .vector_size = sizeof (u32),
3671 .format_trace = format_lisp_cp_lookup_trace,
3672 .type = VLIB_NODE_TYPE_INTERNAL,
3673
3674 .n_errors = LISP_CP_LOOKUP_N_ERROR,
3675 .error_strings = lisp_cp_lookup_error_strings,
3676
3677 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
3678
3679 .next_nodes = {
3680 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Filip Tehlar05879992017-09-05 15:46:09 +02003681 [LISP_CP_LOOKUP_NEXT_ARP_NDP_REPLY_TX] = "interface-output",
Florin Corasce1b4c72017-01-26 14:25:34 -08003682 },
3683};
3684/* *INDENT-ON* */
3685
Florin Corase127a7e2016-02-18 22:20:01 +01003686/* lisp_cp_input statistics */
Filip Tehlarcda70662017-01-16 10:30:03 +01003687#define foreach_lisp_cp_input_error \
3688_(DROP, "drop") \
3689_(RLOC_PROBE_REQ_RECEIVED, "rloc-probe requests received") \
3690_(RLOC_PROBE_REP_RECEIVED, "rloc-probe replies received") \
3691_(MAP_NOTIFIES_RECEIVED, "map-notifies received") \
Florin Corase127a7e2016-02-18 22:20:01 +01003692_(MAP_REPLIES_RECEIVED, "map-replies received")
3693
Florin Corasa2157cf2016-08-16 21:09:14 +02003694static char *lisp_cp_input_error_strings[] = {
Florin Corase127a7e2016-02-18 22:20:01 +01003695#define _(sym,string) string,
3696 foreach_lisp_cp_input_error
3697#undef _
3698};
3699
3700typedef enum
3701{
3702#define _(sym,str) LISP_CP_INPUT_ERROR_##sym,
Florin Corasa2157cf2016-08-16 21:09:14 +02003703 foreach_lisp_cp_input_error
Florin Corase127a7e2016-02-18 22:20:01 +01003704#undef _
3705 LISP_CP_INPUT_N_ERROR,
3706} lisp_cp_input_error_t;
3707
Florin Corase127a7e2016-02-18 22:20:01 +01003708typedef struct
3709{
3710 gid_address_t dst_eid;
3711 ip4_address_t map_resolver_ip;
3712} lisp_cp_input_trace_t;
3713
3714u8 *
3715format_lisp_cp_input_trace (u8 * s, va_list * args)
3716{
3717 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
3718 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Corasa2157cf2016-08-16 21:09:14 +02003719 CLIB_UNUSED (lisp_cp_input_trace_t * t) =
3720 va_arg (*args, lisp_cp_input_trace_t *);
Florin Corase127a7e2016-02-18 22:20:01 +01003721
3722 s = format (s, "LISP-CP-INPUT: TODO");
3723 return s;
3724}
3725
Filip Tehlar9677a942016-11-28 10:23:31 +01003726static void
3727remove_expired_mapping (lisp_cp_main_t * lcm, u32 mi)
3728{
3729 mapping_t *m;
Florin Corasf3dc11a2017-01-24 03:13:43 -08003730 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
Dave Barachb7b92992018-10-17 10:38:51 -04003731 clib_memset (adj_args, 0, sizeof (adj_args[0]));
Filip Tehlar9677a942016-11-28 10:23:31 +01003732
3733 m = pool_elt_at_index (lcm->mapping_pool, mi);
Florin Corasf3dc11a2017-01-24 03:13:43 -08003734
3735 gid_address_copy (&adj_args->reid, &m->eid);
3736 adj_args->is_add = 0;
3737 if (vnet_lisp_add_del_adjacency (adj_args))
3738 clib_warning ("failed to del adjacency!");
3739
Filip Tehlar809bc742017-08-14 19:15:36 +02003740 vnet_lisp_del_mapping (&m->eid, NULL);
Filip Tehlar9677a942016-11-28 10:23:31 +01003741 mapping_delete_timer (lcm, mi);
3742}
3743
3744static void
3745mapping_start_expiration_timer (lisp_cp_main_t * lcm, u32 mi,
3746 f64 expiration_time)
3747{
3748 mapping_t *m;
3749 u64 now = clib_cpu_time_now ();
3750 u64 cpu_cps = lcm->vlib_main->clib_time.clocks_per_second;
3751 u64 exp_clock_time = now + expiration_time * cpu_cps;
3752
3753 m = pool_elt_at_index (lcm->mapping_pool, mi);
3754
3755 m->timer_set = 1;
3756 timing_wheel_insert (&lcm->wheel, exp_clock_time, mi);
3757}
3758
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003759static void
Filip Tehlar809bc742017-08-14 19:15:36 +02003760process_expired_mapping (lisp_cp_main_t * lcm, u32 mi)
3761{
3762 int rv;
3763 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
3764 mapping_t *m = pool_elt_at_index (lcm->mapping_pool, mi);
3765 uword *fei;
3766 fwd_entry_t *fe;
3767 vlib_counter_t c;
3768 u8 have_stats = 0;
3769
3770 if (m->delete_after_expiration)
3771 {
3772 remove_expired_mapping (lcm, mi);
3773 return;
3774 }
3775
3776 fei = hash_get (lcm->fwd_entry_by_mapping_index, mi);
3777 if (!fei)
3778 return;
3779
3780 fe = pool_elt_at_index (lcm->fwd_entry_pool, fei[0]);
3781
Dave Barachb7b92992018-10-17 10:38:51 -04003782 clib_memset (a, 0, sizeof (*a));
Filip Tehlar809bc742017-08-14 19:15:36 +02003783 a->rmt_eid = fe->reid;
3784 if (fe->is_src_dst)
3785 a->lcl_eid = fe->leid;
3786 a->vni = gid_address_vni (&fe->reid);
3787
3788 rv = vnet_lisp_gpe_get_fwd_stats (a, &c);
3789 if (0 == rv)
3790 have_stats = 1;
3791
3792 if (m->almost_expired)
3793 {
3794 m->almost_expired = 0; /* reset flag */
3795 if (have_stats)
3796 {
3797 if (m->packets != c.packets)
3798 {
3799 /* mapping is in use, re-fetch */
3800 map_request_args_t mr_args;
Dave Barachb7b92992018-10-17 10:38:51 -04003801 clib_memset (&mr_args, 0, sizeof (mr_args));
Filip Tehlar809bc742017-08-14 19:15:36 +02003802 mr_args.seid = fe->leid;
3803 mr_args.deid = fe->reid;
3804
3805 send_map_request_thread_fn (&mr_args);
3806 }
3807 else
3808 remove_expired_mapping (lcm, mi);
3809 }
3810 else
3811 remove_expired_mapping (lcm, mi);
3812 }
3813 else
3814 {
3815 m->almost_expired = 1;
3816 mapping_start_expiration_timer (lcm, mi, TIME_UNTIL_REFETCH_OR_DELETE);
3817
3818 if (have_stats)
3819 /* save counter */
3820 m->packets = c.packets;
3821 else
3822 m->delete_after_expiration = 1;
3823 }
3824}
3825
3826static void
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003827map_records_arg_free (map_records_arg_t * a)
Florin Corase127a7e2016-02-18 22:20:01 +01003828{
Florin Corasacd4c632017-06-15 14:33:48 -07003829 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003830 mapping_t *m;
3831 vec_foreach (m, a->mappings)
3832 {
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003833 vec_free (m->locators);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003834 gid_address_free (&m->eid);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003835 }
Florin Corasacd4c632017-06-15 14:33:48 -07003836 pool_put (lcm->map_records_args_pool[vlib_get_thread_index ()], a);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003837}
3838
3839void *
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003840process_map_reply (map_records_arg_t * a)
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003841{
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003842 mapping_t *m;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003843 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3844 u32 dst_map_index = 0;
3845 pending_map_request_t *pmr;
3846 u64 *noncep;
3847 uword *pmr_index;
Filip Tehlar809bc742017-08-14 19:15:36 +02003848 u8 is_changed = 0;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003849
3850 if (a->is_rloc_probe)
3851 goto done;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003852
Florin Corase127a7e2016-02-18 22:20:01 +01003853 /* Check pending requests table and nonce */
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003854 pmr_index = hash_get (lcm->pending_map_requests_by_nonce, a->nonce);
Florin Corase127a7e2016-02-18 22:20:01 +01003855 if (!pmr_index)
3856 {
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003857 clib_warning ("No pending map-request entry with nonce %lu!", a->nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003858 goto done;
Florin Corase127a7e2016-02-18 22:20:01 +01003859 }
Florin Corasa2157cf2016-08-16 21:09:14 +02003860 pmr = pool_elt_at_index (lcm->pending_map_requests_pool, pmr_index[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01003861
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003862 vec_foreach (m, a->mappings)
3863 {
Filip Tehlar809bc742017-08-14 19:15:36 +02003864 vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
Dave Barachb7b92992018-10-17 10:38:51 -04003865 clib_memset (m_args, 0, sizeof (m_args[0]));
Filip Tehlar809bc742017-08-14 19:15:36 +02003866 gid_address_copy (&m_args->eid, &m->eid);
3867 m_args->action = m->action;
3868 m_args->authoritative = m->authoritative;
3869 m_args->ttl = m->ttl;
3870 m_args->is_static = 0;
3871
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003872 /* insert/update mappings cache */
Filip Tehlar809bc742017-08-14 19:15:36 +02003873 vnet_lisp_add_mapping (m_args, m->locators, &dst_map_index, &is_changed);
Florin Corase127a7e2016-02-18 22:20:01 +01003874
Florin Corasba888e42017-01-24 11:38:18 -08003875 if (dst_map_index == (u32) ~ 0)
3876 continue;
3877
Filip Tehlar809bc742017-08-14 19:15:36 +02003878 if (is_changed)
3879 {
3880 /* try to program forwarding only if mapping saved or updated */
3881 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
Dave Barachb7b92992018-10-17 10:38:51 -04003882 clib_memset (adj_args, 0, sizeof (adj_args[0]));
Florin Corasf3dc11a2017-01-24 03:13:43 -08003883
Filip Tehlar809bc742017-08-14 19:15:36 +02003884 gid_address_copy (&adj_args->leid, &pmr->src);
3885 gid_address_copy (&adj_args->reid, &m->eid);
3886 adj_args->is_add = 1;
3887
3888 if (vnet_lisp_add_del_adjacency (adj_args))
3889 clib_warning ("failed to add adjacency!");
3890 }
Florin Corasf3dc11a2017-01-24 03:13:43 -08003891
Florin Corasba888e42017-01-24 11:38:18 -08003892 if ((u32) ~ 0 != m->ttl)
Filip Tehlar0a62e5a2017-11-02 01:38:49 -07003893 mapping_start_expiration_timer (lcm, dst_map_index,
3894 (m->ttl == 0) ? 0 : MAPPING_TIMEOUT);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003895 }
Florin Corase127a7e2016-02-18 22:20:01 +01003896
3897 /* remove pending map request entry */
Florin Corasa2157cf2016-08-16 21:09:14 +02003898
3899 /* *INDENT-OFF* */
Florin Corasf4691cd2016-08-15 19:16:32 +02003900 clib_fifo_foreach (noncep, pmr->nonces, ({
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003901 hash_unset(lcm->pending_map_requests_by_nonce, noncep[0]);
Florin Corasf4691cd2016-08-15 19:16:32 +02003902 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02003903 /* *INDENT-ON* */
3904
3905 clib_fifo_free (pmr->nonces);
3906 pool_put (lcm->pending_map_requests_pool, pmr);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003907
3908done:
Florin Corasacd4c632017-06-15 14:33:48 -07003909 a->is_free = 1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003910 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003911}
3912
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003913static int
3914is_auth_data_valid (map_notify_hdr_t * h, u32 msg_len,
3915 lisp_key_type_t key_id, u8 * key)
3916{
3917 u8 *auth_data = 0;
3918 u16 auth_data_len;
3919 int result;
3920
3921 auth_data_len = auth_data_len_by_key_id (key_id);
3922 if ((u16) ~ 0 == auth_data_len)
3923 {
3924 clib_warning ("invalid length for key_id %d!", key_id);
3925 return 0;
3926 }
3927
3928 /* save auth data */
3929 vec_validate (auth_data, auth_data_len - 1);
3930 clib_memcpy (auth_data, MNOTIFY_DATA (h), auth_data_len);
3931
3932 /* clear auth data */
Dave Barachb7b92992018-10-17 10:38:51 -04003933 clib_memset (MNOTIFY_DATA (h), 0, auth_data_len);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003934
3935 /* get hash of the message */
3936 unsigned char *code = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
3937 (unsigned char *) h, msg_len, NULL, NULL);
3938
3939 result = memcmp (code, auth_data, auth_data_len);
3940
3941 vec_free (auth_data);
3942
3943 return !result;
3944}
3945
3946static void
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003947process_map_notify (map_records_arg_t * a)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003948{
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003949 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003950 uword *pmr_index;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003951
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003952 pmr_index = hash_get (lcm->map_register_messages_by_nonce, a->nonce);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003953 if (!pmr_index)
3954 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003955 clib_warning ("No pending map-register entry with nonce %lu!",
3956 a->nonce);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003957 return;
3958 }
3959
Florin Corasacd4c632017-06-15 14:33:48 -07003960 a->is_free = 1;
Filip Tehlar7048ff12017-07-27 08:09:14 +02003961 pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003962 hash_unset (lcm->map_register_messages_by_nonce, a->nonce);
Filip Tehlar7048ff12017-07-27 08:09:14 +02003963
3964 /* reset map-notify counter */
3965 lcm->expired_map_registers = 0;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003966}
3967
3968static mapping_t *
3969get_mapping (lisp_cp_main_t * lcm, gid_address_t * e)
3970{
3971 u32 mi;
3972
3973 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, e);
3974 if (~0 == mi)
3975 {
3976 clib_warning ("eid %U not found in map-cache!", unformat_gid_address,
3977 e);
3978 return 0;
3979 }
3980 return pool_elt_at_index (lcm->mapping_pool, mi);
3981}
3982
3983/**
3984 * When map-notify is received it is necessary that all EIDs in the record
3985 * list share common key. The key is then used to verify authentication
3986 * data in map-notify message.
3987 */
3988static int
3989map_record_integrity_check (lisp_cp_main_t * lcm, mapping_t * maps,
3990 u32 key_id, u8 ** key_out)
3991{
3992 u32 i, len = vec_len (maps);
3993 mapping_t *m;
3994
3995 /* get key of the first mapping */
3996 m = get_mapping (lcm, &maps[0].eid);
3997 if (!m || !m->key)
3998 return -1;
3999
4000 key_out[0] = m->key;
4001
4002 for (i = 1; i < len; i++)
4003 {
4004 m = get_mapping (lcm, &maps[i].eid);
4005 if (!m || !m->key)
4006 return -1;
4007
4008 if (key_id != m->key_id || vec_cmp (m->key, key_out[0]))
4009 {
4010 clib_warning ("keys does not match! %v, %v", key_out[0], m->key);
4011 return -1;
4012 }
4013 }
4014 return 0;
4015}
4016
4017static int
4018parse_map_records (vlib_buffer_t * b, map_records_arg_t * a, u8 count)
4019{
4020 locator_t *locators = 0;
4021 u32 i, len;
4022 gid_address_t deid;
4023 mapping_t m;
4024 locator_t *loc;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004025
Dave Barachb7b92992018-10-17 10:38:51 -04004026 clib_memset (&m, 0, sizeof (m));
Filip Tehlar68c74fc2017-05-04 14:52:42 +02004027
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004028 /* parse record eid */
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004029 for (i = 0; i < count; i++)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004030 {
Florin Corase68de8c2017-06-05 15:38:50 -07004031 locators = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004032 len = lisp_msg_parse_mapping_record (b, &deid, &locators, NULL);
4033 if (len == ~0)
4034 {
4035 clib_warning ("Failed to parse mapping record!");
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004036 vec_foreach (loc, locators) locator_free (loc);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004037 vec_free (locators);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004038 return -1;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004039 }
4040
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004041 m.locators = locators;
4042 gid_address_copy (&m.eid, &deid);
4043 vec_add1 (a->mappings, m);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004044 }
4045
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004046 return 0;
4047}
4048
4049static map_records_arg_t *
Florin Corasacd4c632017-06-15 14:33:48 -07004050map_record_args_get ()
4051{
4052 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4053 map_records_arg_t *rec;
4054
4055 /* Cleanup first */
4056 /* *INDENT-OFF* */
4057 pool_foreach (rec, lcm->map_records_args_pool[vlib_get_thread_index()], ({
4058 if (rec->is_free)
4059 map_records_arg_free (rec);
4060 }));
4061 /* *INDENT-ON* */
4062
4063 pool_get (lcm->map_records_args_pool[vlib_get_thread_index ()], rec);
4064 return rec;
4065}
4066
4067static map_records_arg_t *
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004068parse_map_notify (vlib_buffer_t * b)
4069{
4070 int rc = 0;
4071 map_notify_hdr_t *mnotif_hdr;
4072 lisp_key_type_t key_id;
4073 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4074 u8 *key = 0;
4075 gid_address_t deid;
4076 u16 auth_data_len = 0;
4077 u8 record_count;
Florin Corasacd4c632017-06-15 14:33:48 -07004078 map_records_arg_t *a;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004079
Florin Corasacd4c632017-06-15 14:33:48 -07004080 a = map_record_args_get ();
Dave Barachb7b92992018-10-17 10:38:51 -04004081 clib_memset (a, 0, sizeof (*a));
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004082 mnotif_hdr = vlib_buffer_get_current (b);
4083 vlib_buffer_pull (b, sizeof (*mnotif_hdr));
Dave Barachb7b92992018-10-17 10:38:51 -04004084 clib_memset (&deid, 0, sizeof (deid));
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004085
4086 a->nonce = MNOTIFY_NONCE (mnotif_hdr);
4087 key_id = clib_net_to_host_u16 (MNOTIFY_KEY_ID (mnotif_hdr));
4088 auth_data_len = auth_data_len_by_key_id (key_id);
4089
4090 /* advance buffer by authentication data */
4091 vlib_buffer_pull (b, auth_data_len);
4092
4093 record_count = MNOTIFY_REC_COUNT (mnotif_hdr);
4094 rc = parse_map_records (b, a, record_count);
4095 if (rc != 0)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004096 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004097 map_records_arg_free (a);
4098 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004099 }
4100
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004101 rc = map_record_integrity_check (lcm, a->mappings, key_id, &key);
4102 if (rc != 0)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004103 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004104 map_records_arg_free (a);
4105 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004106 }
4107
4108 /* verify authentication data */
4109 if (!is_auth_data_valid (mnotif_hdr, vlib_buffer_get_tail (b)
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004110 - (u8 *) mnotif_hdr, key_id, key))
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004111 {
Filip Tehlar7048ff12017-07-27 08:09:14 +02004112 clib_warning ("Map-notify auth data verification failed for nonce "
4113 "0x%lx!", a->nonce);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004114 map_records_arg_free (a);
4115 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004116 }
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004117 return a;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004118}
4119
4120static vlib_buffer_t *
4121build_map_reply (lisp_cp_main_t * lcm, ip_address_t * sloc,
4122 ip_address_t * dst, u64 nonce, u8 probe_bit,
4123 mapping_t * records, u16 dst_port, u32 * bi_res)
4124{
4125 vlib_buffer_t *b;
4126 u32 bi;
4127 vlib_main_t *vm = lcm->vlib_main;
4128
4129 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
4130 {
4131 clib_warning ("Can't allocate buffer for Map-Register!");
4132 return 0;
4133 }
4134
4135 b = vlib_get_buffer (vm, bi);
4136
4137 /* leave some space for the encap headers */
4138 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
4139
4140 lisp_msg_put_map_reply (b, records, nonce, probe_bit);
4141
4142 /* push outer ip header */
Florin Corasfdbc3822017-07-27 00:34:12 -07004143 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, dst_port, sloc, dst, 1);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004144
4145 bi_res[0] = bi;
4146 return b;
4147}
4148
4149static int
4150send_map_reply (lisp_cp_main_t * lcm, u32 mi, ip_address_t * dst,
4151 u8 probe_bit, u64 nonce, u16 dst_port,
4152 ip_address_t * probed_loc)
4153{
4154 ip_address_t src;
4155 u32 bi;
4156 vlib_buffer_t *b;
4157 vlib_frame_t *f;
4158 u32 next_index, *to_next;
4159 mapping_t *records = 0, *m;
4160
4161 m = pool_elt_at_index (lcm->mapping_pool, mi);
4162 if (!m)
4163 return -1;
4164
4165 vec_add1 (records, m[0]);
4166 add_locators (lcm, &records[0], m->locator_set_index, probed_loc);
Dave Barachb7b92992018-10-17 10:38:51 -04004167 clib_memset (&src, 0, sizeof (src));
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004168
4169 if (!ip_fib_get_first_egress_ip_for_dst (lcm, dst, &src))
4170 {
Paul Vinciguerrabdc0e6b2018-09-22 05:32:50 -07004171 clib_warning ("can't find interface address for %U", format_ip_address,
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004172 dst);
4173 return -1;
4174 }
4175
4176 b = build_map_reply (lcm, &src, dst, nonce, probe_bit, records, dst_port,
4177 &bi);
4178 if (!b)
4179 return -1;
4180 free_map_register_records (records);
4181
4182 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
4183 next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
4184 ip4_lookup_node.index : ip6_lookup_node.index;
4185
4186 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
4187
4188 /* Enqueue the packet */
4189 to_next = vlib_frame_vector_args (f);
4190 to_next[0] = bi;
4191 f->n_vectors = 1;
4192 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
4193 return 0;
4194}
4195
Filip Tehlarb601f222017-01-02 10:22:56 +01004196static void
4197find_ip_header (vlib_buffer_t * b, u8 ** ip_hdr)
4198{
Damjan Marion072401e2017-07-13 18:53:27 +02004199 const i32 start = vnet_buffer (b)->l3_hdr_offset;
Filip Tehlarb601f222017-01-02 10:22:56 +01004200 if (start < 0 && start < -sizeof (b->pre_data))
4201 {
4202 *ip_hdr = 0;
4203 return;
4204 }
4205
4206 *ip_hdr = b->data + start;
4207 if ((u8 *) * ip_hdr > (u8 *) vlib_buffer_get_current (b))
4208 *ip_hdr = 0;
4209}
4210
Florin Corase127a7e2016-02-18 22:20:01 +01004211void
Filip Tehlarcda70662017-01-16 10:30:03 +01004212process_map_request (vlib_main_t * vm, vlib_node_runtime_t * node,
4213 lisp_cp_main_t * lcm, vlib_buffer_t * b)
Florin Corase127a7e2016-02-18 22:20:01 +01004214{
Filip Tehlarb601f222017-01-02 10:22:56 +01004215 u8 *ip_hdr = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004216 ip_address_t *dst_loc = 0, probed_loc, src_loc;
4217 mapping_t m;
Florin Corasa2157cf2016-08-16 21:09:14 +02004218 map_request_hdr_t *mreq_hdr;
Florin Corase127a7e2016-02-18 22:20:01 +01004219 gid_address_t src, dst;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004220 u64 nonce;
Filip Tehlarcda70662017-01-16 10:30:03 +01004221 u32 i, len = 0, rloc_probe_recv = 0;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004222 gid_address_t *itr_rlocs = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01004223
4224 mreq_hdr = vlib_buffer_get_current (b);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004225 if (!MREQ_SMR (mreq_hdr) && !MREQ_RLOC_PROBE (mreq_hdr))
Florin Corasa2157cf2016-08-16 21:09:14 +02004226 {
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004227 clib_warning
4228 ("Only SMR Map-Requests and RLOC probe supported for now!");
Florin Corase127a7e2016-02-18 22:20:01 +01004229 return;
Florin Corasa2157cf2016-08-16 21:09:14 +02004230 }
Florin Corase127a7e2016-02-18 22:20:01 +01004231
Filip Tehlarb601f222017-01-02 10:22:56 +01004232 vlib_buffer_pull (b, sizeof (*mreq_hdr));
4233 nonce = MREQ_NONCE (mreq_hdr);
4234
Florin Corase127a7e2016-02-18 22:20:01 +01004235 /* parse src eid */
4236 len = lisp_msg_parse_addr (b, &src);
4237 if (len == ~0)
4238 return;
4239
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004240 len = lisp_msg_parse_itr_rlocs (b, &itr_rlocs,
4241 MREQ_ITR_RLOC_COUNT (mreq_hdr) + 1);
Florin Corase127a7e2016-02-18 22:20:01 +01004242 if (len == ~0)
Filip Tehlarcda70662017-01-16 10:30:03 +01004243 goto done;
Florin Corase127a7e2016-02-18 22:20:01 +01004244
4245 /* parse eid records and send SMR-invoked map-requests */
Florin Corasa2157cf2016-08-16 21:09:14 +02004246 for (i = 0; i < MREQ_REC_COUNT (mreq_hdr); i++)
Florin Corase127a7e2016-02-18 22:20:01 +01004247 {
Dave Barachb7b92992018-10-17 10:38:51 -04004248 clib_memset (&dst, 0, sizeof (dst));
Florin Corase127a7e2016-02-18 22:20:01 +01004249 len = lisp_msg_parse_eid_rec (b, &dst);
4250 if (len == ~0)
Florin Corasa2157cf2016-08-16 21:09:14 +02004251 {
4252 clib_warning ("Can't parse map-request EID-record");
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004253 goto done;
Florin Corasa2157cf2016-08-16 21:09:14 +02004254 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004255
4256 if (MREQ_SMR (mreq_hdr))
4257 {
4258 /* send SMR-invoked map-requests */
4259 queue_map_request (&dst, &src, 1 /* invoked */ , 0 /* resend */ );
4260 }
4261 else if (MREQ_RLOC_PROBE (mreq_hdr))
4262 {
Filip Tehlarb601f222017-01-02 10:22:56 +01004263 find_ip_header (b, &ip_hdr);
4264 if (!ip_hdr)
4265 {
4266 clib_warning ("Cannot find the IP header!");
Filip Tehlarcda70662017-01-16 10:30:03 +01004267 goto done;
Filip Tehlarb601f222017-01-02 10:22:56 +01004268 }
Filip Tehlarcda70662017-01-16 10:30:03 +01004269 rloc_probe_recv++;
Dave Barachb7b92992018-10-17 10:38:51 -04004270 clib_memset (&m, 0, sizeof (m));
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004271 u32 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
4272
4273 // TODO: select best locator; for now use the first one
4274 dst_loc = &gid_address_ip (&itr_rlocs[0]);
4275
4276 /* get src/dst IP addresses */
4277 get_src_and_dst_ip (ip_hdr, &src_loc, &probed_loc);
4278
4279 // TODO get source port from buffer
4280 u16 src_port = LISP_CONTROL_PORT;
4281
4282 send_map_reply (lcm, mi, dst_loc, 1 /* probe-bit */ , nonce,
4283 src_port, &probed_loc);
4284 }
Florin Corase127a7e2016-02-18 22:20:01 +01004285 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004286
4287done:
Filip Tehlarcda70662017-01-16 10:30:03 +01004288 vlib_node_increment_counter (vm, node->node_index,
4289 LISP_CP_INPUT_ERROR_RLOC_PROBE_REQ_RECEIVED,
4290 rloc_probe_recv);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004291 vec_free (itr_rlocs);
Florin Corase127a7e2016-02-18 22:20:01 +01004292}
4293
Filip Tehlar816f4372017-04-26 16:09:06 +02004294map_records_arg_t *
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004295parse_map_reply (vlib_buffer_t * b)
4296{
4297 locator_t probed;
4298 gid_address_t deid;
4299 void *h;
4300 u32 i, len = 0;
4301 mapping_t m;
4302 map_reply_hdr_t *mrep_hdr;
Florin Corasacd4c632017-06-15 14:33:48 -07004303 map_records_arg_t *a;
4304
4305 a = map_record_args_get ();
Dave Barachb7b92992018-10-17 10:38:51 -04004306 clib_memset (a, 0, sizeof (*a));
Florin Corasacd4c632017-06-15 14:33:48 -07004307
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004308 locator_t *locators;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004309
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004310 mrep_hdr = vlib_buffer_get_current (b);
4311 a->nonce = MREP_NONCE (mrep_hdr);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004312 a->is_rloc_probe = MREP_RLOC_PROBE (mrep_hdr);
Filip Tehlar816f4372017-04-26 16:09:06 +02004313 if (!vlib_buffer_has_space (b, sizeof (*mrep_hdr)))
4314 {
4315 clib_mem_free (a);
4316 return 0;
4317 }
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004318 vlib_buffer_pull (b, sizeof (*mrep_hdr));
4319
4320 for (i = 0; i < MREP_REC_COUNT (mrep_hdr); i++)
4321 {
Dave Barachb7b92992018-10-17 10:38:51 -04004322 clib_memset (&m, 0, sizeof (m));
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004323 locators = 0;
4324 h = vlib_buffer_get_current (b);
4325
4326 m.ttl = clib_net_to_host_u32 (MAP_REC_TTL (h));
4327 m.action = MAP_REC_ACTION (h);
4328 m.authoritative = MAP_REC_AUTH (h);
4329
4330 len = lisp_msg_parse_mapping_record (b, &deid, &locators, &probed);
4331 if (len == ~0)
4332 {
4333 clib_warning ("Failed to parse mapping record!");
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004334 map_records_arg_free (a);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004335 return 0;
4336 }
4337
4338 m.locators = locators;
4339 gid_address_copy (&m.eid, &deid);
4340 vec_add1 (a->mappings, m);
4341 }
4342 return a;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004343}
4344
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004345static void
4346queue_map_reply_for_processing (map_records_arg_t * a)
4347{
Florin Coras655fcc42017-01-10 08:57:54 -08004348 vl_api_rpc_call_main_thread (process_map_reply, (u8 *) a, sizeof (*a));
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004349}
4350
4351static void
4352queue_map_notify_for_processing (map_records_arg_t * a)
4353{
4354 vl_api_rpc_call_main_thread (process_map_notify, (u8 *) a, sizeof (a[0]));
4355}
4356
Florin Corase127a7e2016-02-18 22:20:01 +01004357static uword
4358lisp_cp_input (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Corasa2157cf2016-08-16 21:09:14 +02004359 vlib_frame_t * from_frame)
Florin Corase127a7e2016-02-18 22:20:01 +01004360{
Filip Tehlarcda70662017-01-16 10:30:03 +01004361 u32 n_left_from, *from, *to_next_drop, rloc_probe_rep_recv = 0,
4362 map_notifies_recv = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01004363 lisp_msg_type_e type;
Florin Corasa2157cf2016-08-16 21:09:14 +02004364 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004365 map_records_arg_t *a;
Florin Corase127a7e2016-02-18 22:20:01 +01004366
4367 from = vlib_frame_vector_args (from_frame);
4368 n_left_from = from_frame->n_vectors;
4369
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004370
Florin Corase127a7e2016-02-18 22:20:01 +01004371 while (n_left_from > 0)
4372 {
4373 u32 n_left_to_next_drop;
4374
4375 vlib_get_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP,
Florin Corasa2157cf2016-08-16 21:09:14 +02004376 to_next_drop, n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01004377 while (n_left_from > 0 && n_left_to_next_drop > 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02004378 {
4379 u32 bi0;
4380 vlib_buffer_t *b0;
Florin Corase127a7e2016-02-18 22:20:01 +01004381
Florin Corasa2157cf2016-08-16 21:09:14 +02004382 bi0 = from[0];
4383 from += 1;
4384 n_left_from -= 1;
4385 to_next_drop[0] = bi0;
4386 to_next_drop += 1;
4387 n_left_to_next_drop -= 1;
Florin Corase127a7e2016-02-18 22:20:01 +01004388
Florin Corasa2157cf2016-08-16 21:09:14 +02004389 b0 = vlib_get_buffer (vm, bi0);
Florin Corase127a7e2016-02-18 22:20:01 +01004390
Florin Corasa2157cf2016-08-16 21:09:14 +02004391 type = lisp_msg_type (vlib_buffer_get_current (b0));
4392 switch (type)
4393 {
4394 case LISP_MAP_REPLY:
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004395 a = parse_map_reply (b0);
4396 if (a)
Filip Tehlarcda70662017-01-16 10:30:03 +01004397 {
4398 if (a->is_rloc_probe)
4399 rloc_probe_rep_recv++;
4400 queue_map_reply_for_processing (a);
4401 }
Florin Corasa2157cf2016-08-16 21:09:14 +02004402 break;
4403 case LISP_MAP_REQUEST:
Filip Tehlarcda70662017-01-16 10:30:03 +01004404 process_map_request (vm, node, lcm, b0);
Florin Corasa2157cf2016-08-16 21:09:14 +02004405 break;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004406 case LISP_MAP_NOTIFY:
Filip Tehlarfb9931f2016-12-09 13:52:38 +01004407 a = parse_map_notify (b0);
4408 if (a)
Filip Tehlarcda70662017-01-16 10:30:03 +01004409 {
4410 map_notifies_recv++;
4411 queue_map_notify_for_processing (a);
4412 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004413 break;
Florin Corasa2157cf2016-08-16 21:09:14 +02004414 default:
4415 clib_warning ("Unsupported LISP message type %d", type);
4416 break;
4417 }
Florin Corase127a7e2016-02-18 22:20:01 +01004418
Florin Corasa2157cf2016-08-16 21:09:14 +02004419 b0->error = node->errors[LISP_CP_INPUT_ERROR_DROP];
Florin Corase127a7e2016-02-18 22:20:01 +01004420
Florin Corasa2157cf2016-08-16 21:09:14 +02004421 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
4422 {
Florin Corase127a7e2016-02-18 22:20:01 +01004423
Florin Corasa2157cf2016-08-16 21:09:14 +02004424 }
4425 }
Florin Corase127a7e2016-02-18 22:20:01 +01004426
Florin Corasa2157cf2016-08-16 21:09:14 +02004427 vlib_put_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP,
4428 n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01004429 }
Filip Tehlarcda70662017-01-16 10:30:03 +01004430 vlib_node_increment_counter (vm, node->node_index,
4431 LISP_CP_INPUT_ERROR_RLOC_PROBE_REP_RECEIVED,
4432 rloc_probe_rep_recv);
4433 vlib_node_increment_counter (vm, node->node_index,
4434 LISP_CP_INPUT_ERROR_MAP_NOTIFIES_RECEIVED,
4435 map_notifies_recv);
Florin Corase127a7e2016-02-18 22:20:01 +01004436 return from_frame->n_vectors;
4437}
4438
Florin Corasa2157cf2016-08-16 21:09:14 +02004439/* *INDENT-OFF* */
Florin Corase127a7e2016-02-18 22:20:01 +01004440VLIB_REGISTER_NODE (lisp_cp_input_node) = {
4441 .function = lisp_cp_input,
4442 .name = "lisp-cp-input",
4443 .vector_size = sizeof (u32),
4444 .format_trace = format_lisp_cp_input_trace,
4445 .type = VLIB_NODE_TYPE_INTERNAL,
4446
4447 .n_errors = LISP_CP_INPUT_N_ERROR,
4448 .error_strings = lisp_cp_input_error_strings,
4449
4450 .n_next_nodes = LISP_CP_INPUT_N_NEXT,
4451
4452 .next_nodes = {
4453 [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
4454 },
4455};
Florin Corasa2157cf2016-08-16 21:09:14 +02004456/* *INDENT-ON* */
Florin Corase127a7e2016-02-18 22:20:01 +01004457
4458clib_error_t *
Florin Corasa2157cf2016-08-16 21:09:14 +02004459lisp_cp_init (vlib_main_t * vm)
Florin Corase127a7e2016-02-18 22:20:01 +01004460{
Florin Corasa2157cf2016-08-16 21:09:14 +02004461 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4462 clib_error_t *error = 0;
Florin Corasacd4c632017-06-15 14:33:48 -07004463 vlib_thread_main_t *vtm = vlib_get_thread_main ();
4464 u32 num_threads;
Florin Corase127a7e2016-02-18 22:20:01 +01004465
4466 if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
4467 return error;
4468
4469 lcm->im4 = &ip4_main;
4470 lcm->im6 = &ip6_main;
4471 lcm->vlib_main = vm;
Florin Corasa2157cf2016-08-16 21:09:14 +02004472 lcm->vnet_main = vnet_get_main ();
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02004473 lcm->mreq_itr_rlocs = ~0;
Florin Corasba888e42017-01-24 11:38:18 -08004474 lcm->flags = 0;
Filip Tehlar0a8840d2017-10-16 05:48:23 -07004475 lcm->pitr_map_index = ~0;
4476 lcm->petr_map_index = ~0;
Dave Barachb7b92992018-10-17 10:38:51 -04004477 clib_memset (&lcm->active_map_resolver, 0,
4478 sizeof (lcm->active_map_resolver));
4479 clib_memset (&lcm->active_map_server, 0, sizeof (lcm->active_map_server));
Florin Corase127a7e2016-02-18 22:20:01 +01004480
4481 gid_dictionary_init (&lcm->mapping_index_by_gid);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004482 lcm->do_map_resolver_election = 1;
Filip Tehlar7048ff12017-07-27 08:09:14 +02004483 lcm->do_map_server_election = 1;
Florin Corasdca88042016-09-14 16:01:38 +02004484 lcm->map_request_mode = MR_MODE_DST_ONLY;
Florin Corase127a7e2016-02-18 22:20:01 +01004485
Florin Corasacd4c632017-06-15 14:33:48 -07004486 num_threads = 1 /* main thread */ + vtm->n_threads;
4487 vec_validate (lcm->map_records_args_pool, num_threads - 1);
4488
Florin Coras577c3552016-04-21 00:45:40 +02004489 /* default vrf mapped to vni 0 */
Florin Corasa2157cf2016-08-16 21:09:14 +02004490 hash_set (lcm->table_id_by_vni, 0, 0);
4491 hash_set (lcm->vni_by_table_id, 0, 0);
Florin Coras577c3552016-04-21 00:45:40 +02004492
Filip Tehlar9677a942016-11-28 10:23:31 +01004493 u64 now = clib_cpu_time_now ();
4494 timing_wheel_init (&lcm->wheel, now, vm->clib_time.clocks_per_second);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02004495 lcm->nsh_map_index = ~0;
Filip Tehlar1e553a02017-08-02 12:45:07 +02004496 lcm->map_register_ttl = MAP_REGISTER_DEFAULT_TTL;
Filip Tehlar7048ff12017-07-27 08:09:14 +02004497 lcm->max_expired_map_registers = MAX_EXPIRED_MAP_REGISTERS_DEFAULT;
4498 lcm->expired_map_registers = 0;
Filip Tehlara4980b82017-09-27 14:32:02 +02004499 lcm->transport_protocol = LISP_TRANSPORT_PROTOCOL_UDP;
Filip Tehlar0a8840d2017-10-16 05:48:23 -07004500 lcm->flags |= LISP_FLAG_XTR_MODE;
Florin Corase127a7e2016-02-18 22:20:01 +01004501 return 0;
4502}
4503
Filip Tehlar4868ff62017-03-09 16:48:39 +01004504static int
4505lisp_stats_api_fill (lisp_cp_main_t * lcm, lisp_gpe_main_t * lgm,
4506 lisp_api_stats_t * stat, lisp_stats_key_t * key,
4507 u32 stats_index)
4508{
Filip Tehlar21511912017-04-07 10:41:42 +02004509 vlib_counter_t v;
4510 vlib_combined_counter_main_t *cm = &lgm->counters;
Filip Tehlar4868ff62017-03-09 16:48:39 +01004511 lisp_gpe_fwd_entry_key_t fwd_key;
4512 const lisp_gpe_tunnel_t *lgt;
4513 fwd_entry_t *fe;
4514
Dave Barachb7b92992018-10-17 10:38:51 -04004515 clib_memset (stat, 0, sizeof (*stat));
4516 clib_memset (&fwd_key, 0, sizeof (fwd_key));
Filip Tehlar4868ff62017-03-09 16:48:39 +01004517
4518 fe = pool_elt_at_index (lcm->fwd_entry_pool, key->fwd_entry_index);
4519 ASSERT (fe != 0);
4520
4521 gid_to_dp_address (&fe->reid, &stat->deid);
4522 gid_to_dp_address (&fe->leid, &stat->seid);
4523 stat->vni = gid_address_vni (&fe->reid);
4524
4525 lgt = lisp_gpe_tunnel_get (key->tunnel_index);
4526 stat->loc_rloc = lgt->key->lcl;
4527 stat->rmt_rloc = lgt->key->rmt;
4528
Filip Tehlar21511912017-04-07 10:41:42 +02004529 vlib_get_combined_counter (cm, stats_index, &v);
4530 stat->counters = v;
Filip Tehlar4868ff62017-03-09 16:48:39 +01004531 return 1;
4532}
4533
4534lisp_api_stats_t *
4535vnet_lisp_get_stats (void)
4536{
4537 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
4538 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4539 lisp_api_stats_t *stats = 0, stat;
4540 lisp_stats_key_t *key;
4541 u32 index;
4542
4543 /* *INDENT-OFF* */
4544 hash_foreach_mem (key, index, lgm->lisp_stats_index_by_key,
4545 {
4546 if (lisp_stats_api_fill (lcm, lgm, &stat, key, index))
4547 vec_add1 (stats, stat);
4548 });
4549 /* *INDENT-ON* */
4550
4551 return stats;
4552}
4553
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004554static void *
Florin Corasa2157cf2016-08-16 21:09:14 +02004555send_map_request_thread_fn (void *arg)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004556{
Florin Corasa2157cf2016-08-16 21:09:14 +02004557 map_request_args_t *a = arg;
4558 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004559
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004560 if (a->is_resend)
4561 resend_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked);
4562 else
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01004563 send_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004564
4565 return 0;
4566}
4567
4568static int
4569queue_map_request (gid_address_t * seid, gid_address_t * deid,
Florin Corasa2157cf2016-08-16 21:09:14 +02004570 u8 smr_invoked, u8 is_resend)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004571{
4572 map_request_args_t a;
4573
4574 a.is_resend = is_resend;
4575 gid_address_copy (&a.seid, seid);
4576 gid_address_copy (&a.deid, deid);
4577 a.smr_invoked = smr_invoked;
4578
4579 vl_api_rpc_call_main_thread (send_map_request_thread_fn,
Florin Corasa2157cf2016-08-16 21:09:14 +02004580 (u8 *) & a, sizeof (a));
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004581 return 0;
4582}
4583
4584/**
4585 * Take an action with a pending map request depending on expiration time
4586 * and re-try counters.
4587 */
4588static void
4589update_pending_request (pending_map_request_t * r, f64 dt)
4590{
Florin Corasa2157cf2016-08-16 21:09:14 +02004591 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004592 lisp_msmr_t *mr;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004593
4594 if (r->time_to_expire - dt < 0)
4595 /* it's time to decide what to do with this pending request */
4596 {
4597 if (r->retries_num >= NUMBER_OF_RETRIES)
Florin Corasa2157cf2016-08-16 21:09:14 +02004598 /* too many retries -> assume current map resolver is not available */
4599 {
4600 mr = get_map_resolver (&lcm->active_map_resolver);
4601 if (!mr)
4602 {
4603 clib_warning ("Map resolver %U not found - probably deleted "
4604 "by the user recently.", format_ip_address,
4605 &lcm->active_map_resolver);
4606 }
4607 else
4608 {
4609 clib_warning ("map resolver %U is unreachable, ignoring",
4610 format_ip_address, &lcm->active_map_resolver);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004611
Florin Corasa2157cf2016-08-16 21:09:14 +02004612 /* mark current map resolver unavailable so it won't be
4613 * selected next time */
4614 mr->is_down = 1;
4615 mr->last_update = vlib_time_now (lcm->vlib_main);
4616 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004617
Florin Corasa2157cf2016-08-16 21:09:14 +02004618 reset_pending_mr_counters (r);
4619 elect_map_resolver (lcm);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004620
Florin Corasa2157cf2016-08-16 21:09:14 +02004621 /* try to find a next eligible map resolver and re-send */
4622 queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
4623 1 /* resend */ );
4624 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004625 else
Florin Corasa2157cf2016-08-16 21:09:14 +02004626 {
4627 /* try again */
4628 queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
4629 1 /* resend */ );
4630 r->retries_num++;
4631 r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME;
4632 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004633 }
4634 else
4635 r->time_to_expire -= dt;
4636}
4637
4638static void
4639remove_dead_pending_map_requests (lisp_cp_main_t * lcm)
4640{
Florin Corasa2157cf2016-08-16 21:09:14 +02004641 u64 *nonce;
4642 pending_map_request_t *pmr;
4643 u32 *to_be_removed = 0, *pmr_index;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004644
Florin Corasa2157cf2016-08-16 21:09:14 +02004645 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004646 pool_foreach (pmr, lcm->pending_map_requests_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02004647 ({
4648 if (pmr->to_be_removed)
4649 {
4650 clib_fifo_foreach (nonce, pmr->nonces, ({
4651 hash_unset (lcm->pending_map_requests_by_nonce, nonce[0]);
4652 }));
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004653
Florin Corasa2157cf2016-08-16 21:09:14 +02004654 vec_add1 (to_be_removed, pmr - lcm->pending_map_requests_pool);
4655 }
4656 }));
4657 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004658
4659 vec_foreach (pmr_index, to_be_removed)
Filip Tehlar7048ff12017-07-27 08:09:14 +02004660 pool_put_index (lcm->pending_map_requests_pool, pmr_index[0]);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004661
4662 vec_free (to_be_removed);
4663}
4664
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004665static void
4666update_rloc_probing (lisp_cp_main_t * lcm, f64 dt)
4667{
4668 static f64 time_left = RLOC_PROBING_INTERVAL;
4669
4670 if (!lcm->is_enabled || !lcm->rloc_probing)
4671 return;
4672
4673 time_left -= dt;
4674 if (time_left <= 0)
4675 {
4676 time_left = RLOC_PROBING_INTERVAL;
4677 send_rloc_probes (lcm);
4678 }
4679}
4680
Filip Tehlar7048ff12017-07-27 08:09:14 +02004681static int
4682update_pending_map_register (pending_map_register_t * r, f64 dt, u8 * del_all)
4683{
4684 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4685 lisp_msmr_t *ms;
4686 del_all[0] = 0;
4687
4688 r->time_to_expire -= dt;
4689
4690 if (r->time_to_expire < 0)
4691 {
4692 lcm->expired_map_registers++;
4693
4694 if (lcm->expired_map_registers >= lcm->max_expired_map_registers)
4695 {
4696 ms = get_map_server (&lcm->active_map_server);
4697 if (!ms)
4698 {
4699 clib_warning ("Map server %U not found - probably deleted "
4700 "by the user recently.", format_ip_address,
4701 &lcm->active_map_server);
4702 }
4703 else
4704 {
4705 clib_warning ("map server %U is unreachable, ignoring",
4706 format_ip_address, &lcm->active_map_server);
4707
4708 /* mark current map server unavailable so it won't be
4709 * elected next time */
4710 ms->is_down = 1;
4711 ms->last_update = vlib_time_now (lcm->vlib_main);
4712 }
4713
4714 elect_map_server (lcm);
4715
4716 /* indication for deleting all pending map registers */
4717 del_all[0] = 1;
4718 lcm->expired_map_registers = 0;
4719 return 0;
4720 }
4721 else
4722 {
4723 /* delete pending map register */
4724 return 0;
4725 }
4726 }
4727 return 1;
4728}
4729
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004730static void
4731update_map_register (lisp_cp_main_t * lcm, f64 dt)
4732{
Filip Tehlar7048ff12017-07-27 08:09:14 +02004733 u32 *to_be_removed = 0, *pmr_index;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004734 static f64 time_left = QUICK_MAP_REGISTER_INTERVAL;
4735 static u64 mreg_sent_counter = 0;
4736
Filip Tehlar7048ff12017-07-27 08:09:14 +02004737 pending_map_register_t *pmr;
4738 u8 del_all = 0;
4739
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004740 if (!lcm->is_enabled || !lcm->map_registering)
4741 return;
4742
Filip Tehlar7048ff12017-07-27 08:09:14 +02004743 /* *INDENT-OFF* */
4744 pool_foreach (pmr, lcm->pending_map_registers_pool,
4745 ({
4746 if (!update_pending_map_register (pmr, dt, &del_all))
4747 {
4748 if (del_all)
4749 break;
4750 vec_add1 (to_be_removed, pmr - lcm->pending_map_registers_pool);
4751 }
4752 }));
4753 /* *INDENT-ON* */
4754
4755 if (del_all)
4756 {
4757 /* delete all pending map register messages so they won't
4758 * trigger another map server election.. */
4759 pool_free (lcm->pending_map_registers_pool);
4760 hash_free (lcm->map_register_messages_by_nonce);
4761
4762 /* ..and trigger registration against next map server (if any) */
4763 time_left = 0;
4764 }
4765 else
4766 {
4767 vec_foreach (pmr_index, to_be_removed)
4768 pool_put_index (lcm->pending_map_registers_pool, pmr_index[0]);
4769 }
4770
4771 vec_free (to_be_removed);
4772
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004773 time_left -= dt;
4774 if (time_left <= 0)
4775 {
4776 if (mreg_sent_counter >= QUICK_MAP_REGISTER_MSG_COUNT)
4777 time_left = MAP_REGISTER_INTERVAL;
4778 else
4779 {
4780 mreg_sent_counter++;
4781 time_left = QUICK_MAP_REGISTER_INTERVAL;
4782 }
4783 send_map_register (lcm, 1 /* want map notify */ );
4784 }
4785}
4786
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004787static uword
4788send_map_resolver_service (vlib_main_t * vm,
Florin Corasa2157cf2016-08-16 21:09:14 +02004789 vlib_node_runtime_t * rt, vlib_frame_t * f)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004790{
Filip Tehlar9677a942016-11-28 10:23:31 +01004791 u32 *expired = 0;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004792 f64 period = 2.0;
Florin Corasa2157cf2016-08-16 21:09:14 +02004793 pending_map_request_t *pmr;
4794 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004795
4796 while (1)
4797 {
4798 vlib_process_wait_for_event_or_clock (vm, period);
4799
4800 /* currently no signals are expected - just wait for clock */
4801 (void) vlib_process_get_events (vm, 0);
4802
Florin Corasa2157cf2016-08-16 21:09:14 +02004803 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004804 pool_foreach (pmr, lcm->pending_map_requests_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02004805 ({
4806 if (!pmr->to_be_removed)
4807 update_pending_request (pmr, period);
4808 }));
4809 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004810
4811 remove_dead_pending_map_requests (lcm);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02004812
4813 update_map_register (lcm, period);
4814 update_rloc_probing (lcm, period);
Filip Tehlar9677a942016-11-28 10:23:31 +01004815
4816 u64 now = clib_cpu_time_now ();
4817
4818 expired = timing_wheel_advance (&lcm->wheel, now, expired, 0);
4819 if (vec_len (expired) > 0)
4820 {
4821 u32 *mi = 0;
4822 vec_foreach (mi, expired)
4823 {
Filip Tehlar809bc742017-08-14 19:15:36 +02004824 process_expired_mapping (lcm, mi[0]);
Filip Tehlar9677a942016-11-28 10:23:31 +01004825 }
4826 _vec_len (expired) = 0;
4827 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004828 }
4829
4830 /* unreachable */
4831 return 0;
4832}
4833
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01004834vnet_api_error_t
4835vnet_lisp_stats_enable_disable (u8 enable)
4836{
4837 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4838
4839 if (vnet_lisp_enable_disable_status () == 0)
4840 return VNET_API_ERROR_LISP_DISABLED;
4841
Filip Tehlar4868ff62017-03-09 16:48:39 +01004842 if (enable)
4843 lcm->flags |= LISP_FLAG_STATS_ENABLED;
4844 else
4845 lcm->flags &= ~LISP_FLAG_STATS_ENABLED;
4846
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01004847 return 0;
4848}
4849
4850u8
4851vnet_lisp_stats_enable_disable_state (void)
4852{
4853 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4854
4855 if (vnet_lisp_enable_disable_status () == 0)
4856 return VNET_API_ERROR_LISP_DISABLED;
4857
Filip Tehlar4868ff62017-03-09 16:48:39 +01004858 return lcm->flags & LISP_FLAG_STATS_ENABLED;
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01004859}
4860
Florin Corasa2157cf2016-08-16 21:09:14 +02004861/* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004862VLIB_REGISTER_NODE (lisp_retry_service_node,static) = {
4863 .function = send_map_resolver_service,
4864 .type = VLIB_NODE_TYPE_PROCESS,
4865 .name = "lisp-retry-service",
4866 .process_log2_n_stack_bytes = 16,
4867};
Florin Corasa2157cf2016-08-16 21:09:14 +02004868/* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02004869
Filip Tehlara4980b82017-09-27 14:32:02 +02004870u32
4871vnet_lisp_set_transport_protocol (u8 protocol)
4872{
4873 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4874
4875 if (protocol < LISP_TRANSPORT_PROTOCOL_UDP ||
4876 protocol > LISP_TRANSPORT_PROTOCOL_API)
4877 return VNET_API_ERROR_INVALID_ARGUMENT;
4878
4879 lcm->transport_protocol = protocol;
4880 return 0;
4881}
4882
4883lisp_transport_protocol_t
4884vnet_lisp_get_transport_protocol (void)
4885{
4886 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4887 return lcm->transport_protocol;
4888}
4889
Filip Tehlar0a8840d2017-10-16 05:48:23 -07004890int
4891vnet_lisp_enable_disable_xtr_mode (u8 is_enabled)
4892{
4893 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4894 u8 pitr_mode = lcm->flags & LISP_FLAG_PITR_MODE;
4895 u8 xtr_mode = lcm->flags & LISP_FLAG_XTR_MODE;
4896 u8 petr_mode = lcm->flags & LISP_FLAG_PETR_MODE;
4897
4898 if (pitr_mode && is_enabled)
4899 return VNET_API_ERROR_INVALID_ARGUMENT;
4900
4901 if (is_enabled && xtr_mode)
4902 return 0;
4903 if (!is_enabled && !xtr_mode)
4904 return 0;
4905
4906 if (is_enabled)
4907 {
4908 if (!petr_mode)
4909 {
4910 lisp_cp_register_dst_port (lcm->vlib_main);
4911 }
4912 lisp_cp_enable_l2_l3_ifaces (lcm, 1 /* with_default_route */ );
4913 lcm->flags |= LISP_FLAG_XTR_MODE;
4914 }
4915 else
4916 {
4917 if (!petr_mode)
4918 {
4919 lisp_cp_unregister_dst_port (lcm->vlib_main);
4920 }
4921 lisp_cp_disable_l2_l3_ifaces (lcm);
4922 lcm->flags &= ~LISP_FLAG_XTR_MODE;
4923 }
4924 return 0;
4925}
4926
4927int
4928vnet_lisp_enable_disable_pitr_mode (u8 is_enabled)
4929{
4930 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4931 u8 xtr_mode = lcm->flags & LISP_FLAG_XTR_MODE;
4932 u8 pitr_mode = lcm->flags & LISP_FLAG_PITR_MODE;
4933
4934 if (xtr_mode && is_enabled)
4935 return VNET_API_ERROR_INVALID_VALUE;
4936
4937 if (is_enabled && pitr_mode)
4938 return 0;
4939 if (!is_enabled && !pitr_mode)
4940 return 0;
4941
4942 if (is_enabled)
4943 {
4944 /* create iface, no default route */
4945 lisp_cp_enable_l2_l3_ifaces (lcm, 0 /* with_default_route */ );
4946 lcm->flags |= LISP_FLAG_PITR_MODE;
4947 }
4948 else
4949 {
4950 lisp_cp_disable_l2_l3_ifaces (lcm);
4951 lcm->flags &= ~LISP_FLAG_PITR_MODE;
4952 }
4953 return 0;
4954}
4955
4956int
4957vnet_lisp_enable_disable_petr_mode (u8 is_enabled)
4958{
4959 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4960 u8 xtr_mode = lcm->flags & LISP_FLAG_XTR_MODE;
4961 u8 petr_mode = lcm->flags & LISP_FLAG_PETR_MODE;
4962
4963 if (is_enabled && petr_mode)
4964 return 0;
4965 if (!is_enabled && !petr_mode)
4966 return 0;
4967
4968 if (is_enabled)
4969 {
4970 if (!xtr_mode)
4971 {
4972 lisp_cp_register_dst_port (lcm->vlib_main);
4973 }
4974 lcm->flags |= LISP_FLAG_PETR_MODE;
4975 }
4976 else
4977 {
4978 if (!xtr_mode)
4979 {
4980 lisp_cp_unregister_dst_port (lcm->vlib_main);
4981 }
4982 lcm->flags &= ~LISP_FLAG_PETR_MODE;
4983 }
4984 return 0;
4985}
4986
4987u8
4988vnet_lisp_get_xtr_mode (void)
4989{
4990 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4991 return (lcm->flags & LISP_FLAG_XTR_MODE);
4992}
4993
4994u8
4995vnet_lisp_get_pitr_mode (void)
4996{
4997 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
4998 return (lcm->flags & LISP_FLAG_PITR_MODE);
4999}
5000
5001u8
5002vnet_lisp_get_petr_mode (void)
5003{
5004 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
5005 return (lcm->flags & LISP_FLAG_PETR_MODE);
5006}
5007
Florin Corasa2157cf2016-08-16 21:09:14 +02005008VLIB_INIT_FUNCTION (lisp_cp_init);
5009
5010/*
5011 * fd.io coding-style-patch-verification: ON
5012 *
5013 * Local Variables:
5014 * eval: (c-set-style "gnu")
5015 * End:
5016 */