blob: 6408b297e3b96a6915d6b30d8d034b8f7357560b [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>
Florin Corase127a7e2016-02-18 22:20:01 +010025
Filip Tehlar397fd7d2016-10-26 14:31:24 +020026#include <openssl/evp.h>
27#include <openssl/hmac.h>
28
Florin Corasf3dc11a2017-01-24 03:13:43 -080029lisp_cp_main_t lisp_control_main;
30
Filip Tehlarcda70662017-01-16 10:30:03 +010031u8 *format_lisp_cp_input_trace (u8 * s, va_list * args);
32
33typedef enum
34{
35 LISP_CP_INPUT_NEXT_DROP,
36 LISP_CP_INPUT_N_NEXT,
37} lisp_cp_input_next_t;
38
Filip Tehlara5abdeb2016-07-18 17:35:40 +020039typedef struct
40{
41 u8 is_resend;
42 gid_address_t seid;
43 gid_address_t deid;
44 u8 smr_invoked;
45} map_request_args_t;
46
Filip Tehlarcdab4bd2016-12-06 10:31:57 +010047typedef struct
48{
Filip Tehlarcdab4bd2016-12-06 10:31:57 +010049 u64 nonce;
Filip Tehlarfb9931f2016-12-09 13:52:38 +010050 u8 is_rloc_probe;
51 mapping_t *mappings;
52} map_records_arg_t;
53
Florin Corasdca88042016-09-14 16:01:38 +020054u8
55vnet_lisp_get_map_request_mode (void)
56{
57 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
58 return lcm->map_request_mode;
59}
60
Filip Tehlar397fd7d2016-10-26 14:31:24 +020061static u16
62auth_data_len_by_key_id (lisp_key_type_t key_id)
63{
64 switch (key_id)
65 {
66 case HMAC_SHA_1_96:
67 return SHA1_AUTH_DATA_LEN;
68 case HMAC_SHA_256_128:
69 return SHA256_AUTH_DATA_LEN;
70 default:
71 clib_warning ("unsupported key type: %d!", key_id);
72 return (u16) ~ 0;
73 }
74 return (u16) ~ 0;
75}
76
77static const EVP_MD *
78get_encrypt_fcn (lisp_key_type_t key_id)
79{
80 switch (key_id)
81 {
82 case HMAC_SHA_1_96:
83 return EVP_sha1 ();
84 case HMAC_SHA_256_128:
85 return EVP_sha256 ();
86 default:
87 clib_warning ("unsupported encryption key type: %d!", key_id);
88 break;
89 }
90 return 0;
91}
92
Filip Tehlara5abdeb2016-07-18 17:35:40 +020093static int
94queue_map_request (gid_address_t * seid, gid_address_t * deid,
Florin Corasa2157cf2016-08-16 21:09:14 +020095 u8 smr_invoked, u8 is_resend);
Filip Tehlara5abdeb2016-07-18 17:35:40 +020096
Florin Corasf727db92016-06-23 15:01:58 +020097ip_interface_address_t *
Florin Corasa2157cf2016-08-16 21:09:14 +020098ip_interface_get_first_interface_address (ip_lookup_main_t * lm,
99 u32 sw_if_index, u8 loop)
Florin Corasf727db92016-06-23 15:01:58 +0200100{
101 vnet_main_t *vnm = vnet_get_main ();
Florin Corasa2157cf2016-08-16 21:09:14 +0200102 vnet_sw_interface_t *swif = vnet_get_sw_interface (vnm, sw_if_index);
Florin Corasf727db92016-06-23 15:01:58 +0200103 if (loop && swif->flags & VNET_SW_INTERFACE_FLAG_UNNUMBERED)
104 sw_if_index = swif->unnumbered_sw_if_index;
105 u32 ia =
Florin Corasa2157cf2016-08-16 21:09:14 +0200106 (vec_len ((lm)->if_address_pool_index_by_sw_if_index) > (sw_if_index)) ?
107 vec_elt ((lm)->if_address_pool_index_by_sw_if_index, (sw_if_index)) :
108 (u32) ~ 0;
109 return pool_elt_at_index ((lm)->if_address_pool, ia);
Florin Corasf727db92016-06-23 15:01:58 +0200110}
Filip Tehlar215104e2016-05-10 16:58:29 +0200111
Florin Corasf727db92016-06-23 15:01:58 +0200112void *
113ip_interface_get_first_address (ip_lookup_main_t * lm, u32 sw_if_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200114 u8 version)
Florin Corasf727db92016-06-23 15:01:58 +0200115{
Florin Corasa2157cf2016-08-16 21:09:14 +0200116 ip_interface_address_t *ia;
Filip Tehlar195bcee2016-05-13 17:37:35 +0200117
Florin Corasf727db92016-06-23 15:01:58 +0200118 ia = ip_interface_get_first_interface_address (lm, sw_if_index, 1);
119 if (!ia)
120 return 0;
121 return ip_interface_address_get_address (lm, ia);
122}
Filip Tehlar195bcee2016-05-13 17:37:35 +0200123
Florin Corase127a7e2016-02-18 22:20:01 +0100124int
Florin Corasf727db92016-06-23 15:01:58 +0200125ip_interface_get_first_ip_address (lisp_cp_main_t * lcm, u32 sw_if_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200126 u8 version, ip_address_t * result)
Florin Corasf727db92016-06-23 15:01:58 +0200127{
Florin Corasa2157cf2016-08-16 21:09:14 +0200128 ip_lookup_main_t *lm;
129 void *addr;
Florin Corasf727db92016-06-23 15:01:58 +0200130
131 lm = (version == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
132 addr = ip_interface_get_first_address (lm, sw_if_index, version);
133 if (!addr)
134 return 0;
135
136 ip_address_set (result, addr, version);
137 return 1;
138}
139
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100140/**
141 * convert from a LISP address to a FIB prefix
142 */
143void
144ip_address_to_fib_prefix (const ip_address_t * addr, fib_prefix_t * prefix)
Florin Corasf727db92016-06-23 15:01:58 +0200145{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100146 if (addr->version == IP4)
147 {
148 prefix->fp_len = 32;
149 prefix->fp_proto = FIB_PROTOCOL_IP4;
150 memset (&prefix->fp_addr.pad, 0, sizeof (prefix->fp_addr.pad));
151 memcpy (&prefix->fp_addr.ip4, &addr->ip, sizeof (prefix->fp_addr.ip4));
152 }
Florin Corasf727db92016-06-23 15:01:58 +0200153 else
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100154 {
155 prefix->fp_len = 128;
156 prefix->fp_proto = FIB_PROTOCOL_IP6;
157 memcpy (&prefix->fp_addr.ip6, &addr->ip, sizeof (prefix->fp_addr.ip6));
158 }
Florin Corasf727db92016-06-23 15:01:58 +0200159}
160
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100161/**
162 * convert from a LISP to a FIB prefix
163 */
164void
165ip_prefix_to_fib_prefix (const ip_prefix_t * ip_prefix,
166 fib_prefix_t * fib_prefix)
Florin Corasf727db92016-06-23 15:01:58 +0200167{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100168 ip_address_to_fib_prefix (&ip_prefix->addr, fib_prefix);
169 fib_prefix->fp_len = ip_prefix->len;
Florin Corasf727db92016-06-23 15:01:58 +0200170}
171
172/**
173 * Find the sw_if_index of the interface that would be used to egress towards
174 * dst.
175 */
176u32
177ip_fib_get_egress_iface_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst)
178{
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100179 fib_node_index_t fei;
180 fib_prefix_t prefix;
Florin Corasf727db92016-06-23 15:01:58 +0200181
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100182 ip_address_to_fib_prefix (dst, &prefix);
Florin Corasf727db92016-06-23 15:01:58 +0200183
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100184 fei = fib_table_lookup (0, &prefix);
185
186 return (fib_entry_get_resolving_interface (fei));
Florin Corasf727db92016-06-23 15:01:58 +0200187}
188
189/**
190 * Find first IP of the interface that would be used to egress towards dst.
191 * Returns 1 if the address is found 0 otherwise.
192 */
193int
194ip_fib_get_first_egress_ip_for_dst (lisp_cp_main_t * lcm, ip_address_t * dst,
Florin Corasa2157cf2016-08-16 21:09:14 +0200195 ip_address_t * result)
Florin Corasf727db92016-06-23 15:01:58 +0200196{
197 u32 si;
Florin Corasa2157cf2016-08-16 21:09:14 +0200198 ip_lookup_main_t *lm;
199 void *addr = 0;
Florin Corasf727db92016-06-23 15:01:58 +0200200 u8 ipver;
201
Florin Corasa2157cf2016-08-16 21:09:14 +0200202 ASSERT (result != 0);
Florin Corasf727db92016-06-23 15:01:58 +0200203
Florin Corasa2157cf2016-08-16 21:09:14 +0200204 ipver = ip_addr_version (dst);
Florin Corasf727db92016-06-23 15:01:58 +0200205
206 lm = (ipver == IP4) ? &lcm->im4->lookup_main : &lcm->im6->lookup_main;
Neale Ranns0bfe5d82016-08-25 15:29:12 +0100207 si = ip_fib_get_egress_iface_for_dst (lcm, dst);
Florin Corasf727db92016-06-23 15:01:58 +0200208
Florin Corasa2157cf2016-08-16 21:09:14 +0200209 if ((u32) ~ 0 == si)
Florin Corasf727db92016-06-23 15:01:58 +0200210 return 0;
211
212 /* find the first ip address */
213 addr = ip_interface_get_first_address (lm, si, ipver);
214 if (0 == addr)
215 return 0;
216
217 ip_address_set (result, addr, ipver);
218 return 1;
219}
220
221static int
Florin Coras1a1adc72016-07-22 01:45:30 +0200222dp_add_del_iface (lisp_cp_main_t * lcm, u32 vni, u8 is_l2, u8 is_add)
Florin Corasf727db92016-06-23 15:01:58 +0200223{
Neale Ranns5e575b12016-10-03 09:40:25 +0100224 uword *dp_table;
Florin Corasf727db92016-06-23 15:01:58 +0200225
Florin Coras1a1adc72016-07-22 01:45:30 +0200226 if (!is_l2)
Florin Corasf727db92016-06-23 15:01:58 +0200227 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200228 dp_table = hash_get (lcm->table_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200229
230 if (!dp_table)
Florin Corasa2157cf2016-08-16 21:09:14 +0200231 {
232 clib_warning ("vni %d not associated to a vrf!", vni);
233 return VNET_API_ERROR_INVALID_VALUE;
234 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200235 }
236 else
237 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200238 dp_table = hash_get (lcm->bd_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200239 if (!dp_table)
Florin Corasa2157cf2016-08-16 21:09:14 +0200240 {
241 clib_warning ("vni %d not associated to a bridge domain!", vni);
242 return VNET_API_ERROR_INVALID_VALUE;
243 }
Florin Corasf727db92016-06-23 15:01:58 +0200244 }
245
Florin Corasf727db92016-06-23 15:01:58 +0200246 /* enable/disable data-plane interface */
247 if (is_add)
248 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100249 if (is_l2)
250 lisp_gpe_tenant_l2_iface_add_or_lock (vni, dp_table[0]);
251 else
252 lisp_gpe_tenant_l3_iface_add_or_lock (vni, dp_table[0]);
Florin Corasf727db92016-06-23 15:01:58 +0200253 }
254 else
255 {
Neale Ranns5e575b12016-10-03 09:40:25 +0100256 if (is_l2)
257 lisp_gpe_tenant_l2_iface_unlock (vni);
258 else
259 lisp_gpe_tenant_l3_iface_unlock (vni);
Florin Corasf727db92016-06-23 15:01:58 +0200260 }
261
262 return 0;
263}
264
265static void
266dp_del_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index)
267{
Florin Corasa2157cf2016-08-16 21:09:14 +0200268 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
269 fwd_entry_t *fe = 0;
270 uword *feip = 0;
271 memset (a, 0, sizeof (*a));
Florin Corasf727db92016-06-23 15:01:58 +0200272
Florin Corasa2157cf2016-08-16 21:09:14 +0200273 feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
Florin Corasf727db92016-06-23 15:01:58 +0200274 if (!feip)
275 return;
276
Florin Corasa2157cf2016-08-16 21:09:14 +0200277 fe = pool_elt_at_index (lcm->fwd_entry_pool, feip[0]);
Florin Corasf727db92016-06-23 15:01:58 +0200278
279 /* delete dp fwd entry */
280 u32 sw_if_index;
281 a->is_add = 0;
Florin Corasbb5c22f2016-08-02 02:31:03 +0200282 a->locator_pairs = fe->locator_pairs;
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200283 a->vni = gid_address_vni (&fe->reid);
284 gid_address_copy (&a->rmt_eid, &fe->reid);
Filip Tehlard5fcc462016-10-17 16:20:18 +0200285 if (fe->is_src_dst)
286 gid_address_copy (&a->lcl_eid, &fe->leid);
Florin Corasf727db92016-06-23 15:01:58 +0200287
Filip Tehlar21511912017-04-07 10:41:42 +0200288 vnet_lisp_gpe_del_fwd_counters (a, feip[0]);
Florin Corasf727db92016-06-23 15:01:58 +0200289 vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
290
291 /* delete entry in fwd table */
Florin Corasa2157cf2016-08-16 21:09:14 +0200292 hash_unset (lcm->fwd_entry_by_mapping_index, dst_map_index);
293 vec_free (fe->locator_pairs);
294 pool_put (lcm->fwd_entry_pool, fe);
Florin Corasf727db92016-06-23 15:01:58 +0200295}
296
297/**
298 * Finds first remote locator with best (lowest) priority that has a local
299 * peer locator with an underlying route to it.
300 *
301 */
302static u32
Florin Corasa2157cf2016-08-16 21:09:14 +0200303get_locator_pairs (lisp_cp_main_t * lcm, mapping_t * lcl_map,
304 mapping_t * rmt_map, locator_pair_t ** locator_pairs)
Florin Corasf727db92016-06-23 15:01:58 +0200305{
Florin Coras3590ac52016-08-08 16:04:26 +0200306 u32 i, limitp = 0, li, found = 0, esi;
Florin Corasa2157cf2016-08-16 21:09:14 +0200307 locator_set_t *rmt_ls, *lcl_ls;
308 ip_address_t _lcl_addr, *lcl_addr = &_lcl_addr;
309 locator_t *lp, *rmt = 0;
310 uword *checked = 0;
Florin Corasbb5c22f2016-08-02 02:31:03 +0200311 locator_pair_t pair;
Florin Corasf727db92016-06-23 15:01:58 +0200312
Florin Corasa2157cf2016-08-16 21:09:14 +0200313 rmt_ls =
314 pool_elt_at_index (lcm->locator_set_pool, rmt_map->locator_set_index);
315 lcl_ls =
316 pool_elt_at_index (lcm->locator_set_pool, lcl_map->locator_set_index);
Florin Corasf727db92016-06-23 15:01:58 +0200317
Florin Corasa2157cf2016-08-16 21:09:14 +0200318 if (!rmt_ls || vec_len (rmt_ls->locator_indices) == 0)
Florin Corasf727db92016-06-23 15:01:58 +0200319 return 0;
320
Florin Coras3590ac52016-08-08 16:04:26 +0200321 while (1)
Florin Corasf727db92016-06-23 15:01:58 +0200322 {
323 rmt = 0;
324
325 /* find unvisited remote locator with best priority */
Florin Corasa2157cf2016-08-16 21:09:14 +0200326 for (i = 0; i < vec_len (rmt_ls->locator_indices); i++)
327 {
328 if (0 != hash_get (checked, i))
329 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200330
Florin Corasa2157cf2016-08-16 21:09:14 +0200331 li = vec_elt (rmt_ls->locator_indices, i);
332 lp = pool_elt_at_index (lcm->locator_pool, li);
Florin Corasf727db92016-06-23 15:01:58 +0200333
Florin Corasa2157cf2016-08-16 21:09:14 +0200334 /* we don't support non-IP locators for now */
335 if (gid_address_type (&lp->address) != GID_ADDR_IP_PREFIX)
336 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200337
Florin Corasa2157cf2016-08-16 21:09:14 +0200338 if ((found && lp->priority == limitp)
339 || (!found && lp->priority >= limitp))
340 {
341 rmt = lp;
Florin Coras3590ac52016-08-08 16:04:26 +0200342
Florin Corasa2157cf2016-08-16 21:09:14 +0200343 /* don't search for locators with lower priority and don't
344 * check this locator again*/
345 limitp = lp->priority;
346 hash_set (checked, i, 1);
347 break;
348 }
349 }
Florin Corasf727db92016-06-23 15:01:58 +0200350 /* check if a local locator with a route to remote locator exists */
351 if (rmt != 0)
Florin Corasa2157cf2016-08-16 21:09:14 +0200352 {
353 /* find egress sw_if_index for rmt locator */
354 esi =
355 ip_fib_get_egress_iface_for_dst (lcm,
356 &gid_address_ip (&rmt->address));
357 if ((u32) ~ 0 == esi)
358 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200359
Florin Corasa2157cf2016-08-16 21:09:14 +0200360 for (i = 0; i < vec_len (lcl_ls->locator_indices); i++)
361 {
362 li = vec_elt (lcl_ls->locator_indices, i);
363 locator_t *sl = pool_elt_at_index (lcm->locator_pool, li);
Florin Corasf727db92016-06-23 15:01:58 +0200364
Florin Corasa2157cf2016-08-16 21:09:14 +0200365 /* found local locator with the needed sw_if_index */
366 if (sl->sw_if_index == esi)
367 {
368 /* and it has an address */
369 if (0 == ip_interface_get_first_ip_address (lcm,
370 sl->sw_if_index,
371 gid_address_ip_version
372 (&rmt->address),
373 lcl_addr))
374 continue;
Florin Corasf727db92016-06-23 15:01:58 +0200375
Florin Corasa2157cf2016-08-16 21:09:14 +0200376 memset (&pair, 0, sizeof (pair));
377 ip_address_copy (&pair.rmt_loc,
378 &gid_address_ip (&rmt->address));
379 ip_address_copy (&pair.lcl_loc, lcl_addr);
380 pair.weight = rmt->weight;
Filip Tehlarfb9931f2016-12-09 13:52:38 +0100381 pair.priority = rmt->priority;
Florin Corasa2157cf2016-08-16 21:09:14 +0200382 vec_add1 (locator_pairs[0], pair);
383 found = 1;
384 }
385 }
386 }
Florin Corasf727db92016-06-23 15:01:58 +0200387 else
Florin Corasa2157cf2016-08-16 21:09:14 +0200388 break;
Florin Corasf727db92016-06-23 15:01:58 +0200389 }
Florin Coras3590ac52016-08-08 16:04:26 +0200390
Florin Corasa2157cf2016-08-16 21:09:14 +0200391 hash_free (checked);
Florin Coras3590ac52016-08-08 16:04:26 +0200392 return found;
Florin Corasf727db92016-06-23 15:01:58 +0200393}
394
395static void
Florin Corasdca88042016-09-14 16:01:38 +0200396gid_address_sd_to_flat (gid_address_t * dst, gid_address_t * src,
397 fid_address_t * fid)
398{
399 ASSERT (GID_ADDR_SRC_DST == gid_address_type (src));
400
401 dst[0] = src[0];
402
403 switch (fid_addr_type (fid))
404 {
405 case FID_ADDR_IP_PREF:
406 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
407 gid_address_ippref (dst) = fid_addr_ippref (fid);
408 break;
409 case FID_ADDR_MAC:
410 gid_address_type (dst) = GID_ADDR_MAC;
411 mac_copy (gid_address_mac (dst), fid_addr_mac (fid));
412 break;
413 default:
414 clib_warning ("Unsupported fid type %d!", fid_addr_type (fid));
415 break;
416 }
417}
418
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200419u8
420vnet_lisp_map_register_state_get (void)
421{
422 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
423 return lcm->map_registering;
424}
425
426u8
427vnet_lisp_rloc_probe_state_get (void)
428{
429 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
430 return lcm->rloc_probing;
431}
432
Florin Corasdca88042016-09-14 16:01:38 +0200433static void
Florin Corasa2157cf2016-08-16 21:09:14 +0200434dp_add_fwd_entry (lisp_cp_main_t * lcm, u32 src_map_index, u32 dst_map_index)
Florin Corasf727db92016-06-23 15:01:58 +0200435{
Florin Corasa2157cf2016-08-16 21:09:14 +0200436 vnet_lisp_gpe_add_del_fwd_entry_args_t _a, *a = &_a;
Florin Corasba888e42017-01-24 11:38:18 -0800437 gid_address_t *rmt_eid, *lcl_eid;
438 mapping_t *lcl_map, *rmt_map;
Florin Corasf727db92016-06-23 15:01:58 +0200439 u32 sw_if_index;
Florin Corasa2157cf2016-08-16 21:09:14 +0200440 uword *feip = 0, *dpid;
441 fwd_entry_t *fe;
Filip Tehlar69a9b762016-09-23 10:00:52 +0200442 u8 type, is_src_dst = 0;
Florin Corasba888e42017-01-24 11:38:18 -0800443 int rv;
Florin Corasf727db92016-06-23 15:01:58 +0200444
Florin Corasa2157cf2016-08-16 21:09:14 +0200445 memset (a, 0, sizeof (*a));
Florin Corasf727db92016-06-23 15:01:58 +0200446
447 /* remove entry if it already exists */
448 feip = hash_get (lcm->fwd_entry_by_mapping_index, dst_map_index);
449 if (feip)
450 dp_del_fwd_entry (lcm, src_map_index, dst_map_index);
451
Florin Corasba888e42017-01-24 11:38:18 -0800452 /*
453 * Determine local mapping and eid
454 */
Filip Tehlarf3e3fd32016-09-30 12:47:59 +0200455 if (lcm->lisp_pitr)
Florin Corasba888e42017-01-24 11:38:18 -0800456 lcl_map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
Filip Tehlarf3e3fd32016-09-30 12:47:59 +0200457 else
Florin Corasba888e42017-01-24 11:38:18 -0800458 lcl_map = pool_elt_at_index (lcm->mapping_pool, src_map_index);
459 lcl_eid = &lcl_map->eid;
Florin Corasf727db92016-06-23 15:01:58 +0200460
Florin Corasba888e42017-01-24 11:38:18 -0800461 /*
462 * Determine remote mapping and eid
463 */
464 rmt_map = pool_elt_at_index (lcm->mapping_pool, dst_map_index);
465 rmt_eid = &rmt_map->eid;
466
467 /*
468 * Build and insert data plane forwarding entry
469 */
Florin Corasf727db92016-06-23 15:01:58 +0200470 a->is_add = 1;
471
Filip Tehlard5fcc462016-10-17 16:20:18 +0200472 if (MR_MODE_SRC_DST == lcm->map_request_mode)
Florin Corasdca88042016-09-14 16:01:38 +0200473 {
Florin Corasba888e42017-01-24 11:38:18 -0800474 if (GID_ADDR_SRC_DST == gid_address_type (rmt_eid))
Filip Tehlard5fcc462016-10-17 16:20:18 +0200475 {
Florin Corasba888e42017-01-24 11:38:18 -0800476 gid_address_sd_to_flat (&a->rmt_eid, rmt_eid,
477 &gid_address_sd_dst (rmt_eid));
478 gid_address_sd_to_flat (&a->lcl_eid, rmt_eid,
479 &gid_address_sd_src (rmt_eid));
Filip Tehlard5fcc462016-10-17 16:20:18 +0200480 }
481 else
482 {
Florin Corasba888e42017-01-24 11:38:18 -0800483 gid_address_copy (&a->rmt_eid, rmt_eid);
484 gid_address_copy (&a->lcl_eid, lcl_eid);
Filip Tehlard5fcc462016-10-17 16:20:18 +0200485 }
Filip Tehlar69a9b762016-09-23 10:00:52 +0200486 is_src_dst = 1;
Florin Corasdca88042016-09-14 16:01:38 +0200487 }
488 else
Florin Corasba888e42017-01-24 11:38:18 -0800489 gid_address_copy (&a->rmt_eid, rmt_eid);
Florin Corasdca88042016-09-14 16:01:38 +0200490
Florin Corasa2157cf2016-08-16 21:09:14 +0200491 a->vni = gid_address_vni (&a->rmt_eid);
Filip Tehlared6b52b2017-03-22 09:02:33 +0100492 a->is_src_dst = is_src_dst;
Florin Coras1a1adc72016-07-22 01:45:30 +0200493
494 /* get vrf or bd_index associated to vni */
Florin Corasdca88042016-09-14 16:01:38 +0200495 type = gid_address_type (&a->rmt_eid);
Florin Coras1a1adc72016-07-22 01:45:30 +0200496 if (GID_ADDR_IP_PREFIX == type)
497 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200498 dpid = hash_get (lcm->table_id_by_vni, a->vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200499 if (!dpid)
Florin Corasa2157cf2016-08-16 21:09:14 +0200500 {
501 clib_warning ("vni %d not associated to a vrf!", a->vni);
502 return;
503 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200504 a->table_id = dpid[0];
505 }
506 else if (GID_ADDR_MAC == type)
507 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200508 dpid = hash_get (lcm->bd_id_by_vni, a->vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200509 if (!dpid)
Florin Corasa2157cf2016-08-16 21:09:14 +0200510 {
511 clib_warning ("vni %d not associated to a bridge domain !", a->vni);
512 return;
513 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200514 a->bd_id = dpid[0];
515 }
516
Florin Corasf727db92016-06-23 15:01:58 +0200517 /* find best locator pair that 1) verifies LISP policy 2) are connected */
Florin Corasba888e42017-01-24 11:38:18 -0800518 rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
519
520 /* Either rmt mapping is negative or we can't find underlay path.
521 * Try again with petr if configured */
522 if (rv == 0 && (lcm->flags & LISP_FLAG_USE_PETR))
Florin Corasf727db92016-06-23 15:01:58 +0200523 {
Florin Corasba888e42017-01-24 11:38:18 -0800524 rmt_map = lisp_get_petr_mapping (lcm);
525 rv = get_locator_pairs (lcm, lcl_map, rmt_map, &a->locator_pairs);
Florin Corasf727db92016-06-23 15:01:58 +0200526 }
527
Florin Corasba888e42017-01-24 11:38:18 -0800528 /* negative entry */
529 if (rv == 0)
530 {
531 a->is_negative = 1;
532 a->action = rmt_map->action;
533 }
Florin Corasf727db92016-06-23 15:01:58 +0200534
Filip Tehlar21511912017-04-07 10:41:42 +0200535 rv = vnet_lisp_gpe_add_del_fwd_entry (a, &sw_if_index);
536 if (rv)
537 {
538 if (a->locator_pairs)
539 vec_free (a->locator_pairs);
540 return;
541 }
Florin Corasf727db92016-06-23 15:01:58 +0200542
Filip Tehlar21511912017-04-07 10:41:42 +0200543 /* add tunnel to fwd entry table */
Florin Corasf727db92016-06-23 15:01:58 +0200544 pool_get (lcm->fwd_entry_pool, fe);
Filip Tehlar21511912017-04-07 10:41:42 +0200545 vnet_lisp_gpe_add_fwd_counters (a, fe - lcm->fwd_entry_pool);
546
Florin Corasbb5c22f2016-08-02 02:31:03 +0200547 fe->locator_pairs = a->locator_pairs;
Filip Tehlar2fdaece2016-09-28 14:27:59 +0200548 gid_address_copy (&fe->reid, &a->rmt_eid);
Filip Tehlarb601f222017-01-02 10:22:56 +0100549
550 if (is_src_dst)
551 gid_address_copy (&fe->leid, &a->lcl_eid);
552 else
Florin Corasba888e42017-01-24 11:38:18 -0800553 gid_address_copy (&fe->leid, lcl_eid);
Filip Tehlarb601f222017-01-02 10:22:56 +0100554
Filip Tehlar69a9b762016-09-23 10:00:52 +0200555 fe->is_src_dst = is_src_dst;
Florin Corasf727db92016-06-23 15:01:58 +0200556 hash_set (lcm->fwd_entry_by_mapping_index, dst_map_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200557 fe - lcm->fwd_entry_pool);
Florin Corasf727db92016-06-23 15:01:58 +0200558}
559
Filip Tehlarce1aae42017-01-04 10:42:25 +0100560typedef struct
561{
562 u32 si;
563 u32 di;
564} fwd_entry_mt_arg_t;
565
566static void *
567dp_add_fwd_entry_thread_fn (void *arg)
568{
569 fwd_entry_mt_arg_t *a = arg;
570 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
571 dp_add_fwd_entry (lcm, a->si, a->di);
572 return 0;
573}
574
575static int
576dp_add_fwd_entry_from_mt (u32 si, u32 di)
577{
578 fwd_entry_mt_arg_t a;
579
580 memset (&a, 0, sizeof (a));
581 a.si = si;
582 a.di = di;
583
584 vl_api_rpc_call_main_thread (dp_add_fwd_entry_thread_fn,
585 (u8 *) & a, sizeof (a));
586 return 0;
587}
588
Florin Corasf727db92016-06-23 15:01:58 +0200589/**
Filip Tehlar69a9b762016-09-23 10:00:52 +0200590 * Returns vector of adjacencies.
591 *
592 * The caller must free the vector returned by this function.
593 *
594 * @param vni virtual network identifier
595 * @return vector of adjacencies
596 */
597lisp_adjacency_t *
598vnet_lisp_adjacencies_get_by_vni (u32 vni)
599{
600 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
601 fwd_entry_t *fwd;
602 lisp_adjacency_t *adjs = 0, adj;
603
604 /* *INDENT-OFF* */
605 pool_foreach(fwd, lcm->fwd_entry_pool,
606 ({
607 if (gid_address_vni (&fwd->reid) != vni)
608 continue;
609
610 gid_address_copy (&adj.reid, &fwd->reid);
611 gid_address_copy (&adj.leid, &fwd->leid);
612 vec_add1 (adjs, adj);
613 }));
614 /* *INDENT-ON* */
615
616 return adjs;
617}
618
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200619static lisp_msmr_t *
620get_map_server (ip_address_t * a)
621{
622 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
623 lisp_msmr_t *m;
624
625 vec_foreach (m, lcm->map_servers)
626 {
627 if (!ip_address_cmp (&m->address, a))
628 {
629 return m;
630 }
631 }
632 return 0;
633}
634
635static lisp_msmr_t *
636get_map_resolver (ip_address_t * a)
637{
638 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
639 lisp_msmr_t *m;
640
641 vec_foreach (m, lcm->map_resolvers)
642 {
643 if (!ip_address_cmp (&m->address, a))
644 {
645 return m;
646 }
647 }
648 return 0;
649}
650
651int
652vnet_lisp_add_del_map_server (ip_address_t * addr, u8 is_add)
653{
654 u32 i;
655 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
656 lisp_msmr_t _ms, *ms = &_ms;
657
658 if (vnet_lisp_enable_disable_status () == 0)
659 {
660 clib_warning ("LISP is disabled!");
661 return VNET_API_ERROR_LISP_DISABLED;
662 }
663
664 if (is_add)
665 {
666 if (get_map_server (addr))
667 {
668 clib_warning ("map-server %U already exists!", format_ip_address,
669 addr);
670 return -1;
671 }
672
673 memset (ms, 0, sizeof (*ms));
674 ip_address_copy (&ms->address, addr);
675 vec_add1 (lcm->map_servers, ms[0]);
676 }
677 else
678 {
679 for (i = 0; i < vec_len (lcm->map_servers); i++)
680 {
681 ms = vec_elt_at_index (lcm->map_servers, i);
682 if (!ip_address_cmp (&ms->address, addr))
683 {
684 vec_del1 (lcm->map_servers, i);
685 break;
686 }
687 }
688 }
689
690 return 0;
691}
692
Filip Tehlar69a9b762016-09-23 10:00:52 +0200693/**
Florin Corasf727db92016-06-23 15:01:58 +0200694 * Add/remove mapping to/from map-cache. Overwriting not allowed.
695 */
696int
697vnet_lisp_map_cache_add_del (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200698 u32 * map_index_result)
Florin Corase127a7e2016-02-18 22:20:01 +0100699{
Florin Corasa2157cf2016-08-16 21:09:14 +0200700 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
701 u32 mi, *map_indexp, map_index, i;
702 mapping_t *m, *old_map;
703 u32 **eid_indexes;
Florin Corase127a7e2016-02-18 22:20:01 +0100704
Florin Corasf727db92016-06-23 15:01:58 +0200705 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->eid);
Filip Tehlar53f09e32016-05-19 14:25:44 +0200706 old_map = mi != ~0 ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
Florin Corase127a7e2016-02-18 22:20:01 +0100707 if (a->is_add)
708 {
709 /* TODO check if overwriting and take appropriate actions */
Florin Corasa2157cf2016-08-16 21:09:14 +0200710 if (mi != GID_LOOKUP_MISS && !gid_address_cmp (&old_map->eid, &a->eid))
711 {
712 clib_warning ("eid %U found in the eid-table", format_gid_address,
713 &a->eid);
714 return VNET_API_ERROR_VALUE_EXIST;
715 }
Florin Corase127a7e2016-02-18 22:20:01 +0100716
Florin Corasa2157cf2016-08-16 21:09:14 +0200717 pool_get (lcm->mapping_pool, m);
Florin Corasf727db92016-06-23 15:01:58 +0200718 gid_address_copy (&m->eid, &a->eid);
Florin Corase127a7e2016-02-18 22:20:01 +0100719 m->locator_set_index = a->locator_set_index;
720 m->ttl = a->ttl;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200721 m->action = a->action;
Florin Corase127a7e2016-02-18 22:20:01 +0100722 m->local = a->local;
Filip Tehlar3cd9e732016-08-23 10:52:44 +0200723 m->is_static = a->is_static;
Filip Tehlar397fd7d2016-10-26 14:31:24 +0200724 m->key = vec_dup (a->key);
725 m->key_id = a->key_id;
Florin Corase127a7e2016-02-18 22:20:01 +0100726
727 map_index = m - lcm->mapping_pool;
Florin Corasf727db92016-06-23 15:01:58 +0200728 gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, map_index,
Florin Corasa2157cf2016-08-16 21:09:14 +0200729 1);
Florin Corase127a7e2016-02-18 22:20:01 +0100730
Florin Corasa2157cf2016-08-16 21:09:14 +0200731 if (pool_is_free_index (lcm->locator_set_pool, a->locator_set_index))
732 {
733 clib_warning ("Locator set with index %d doesn't exist",
734 a->locator_set_index);
735 return VNET_API_ERROR_INVALID_VALUE;
736 }
Florin Corase127a7e2016-02-18 22:20:01 +0100737
738 /* add eid to list of eids supported by locator-set */
739 vec_validate (lcm->locator_set_to_eids, a->locator_set_index);
Florin Corasa2157cf2016-08-16 21:09:14 +0200740 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
741 a->locator_set_index);
742 vec_add1 (eid_indexes[0], map_index);
Florin Corase127a7e2016-02-18 22:20:01 +0100743
744 if (a->local)
Florin Corasa2157cf2016-08-16 21:09:14 +0200745 {
746 /* mark as local */
747 vec_add1 (lcm->local_mappings_indexes, map_index);
748 }
Florin Corase127a7e2016-02-18 22:20:01 +0100749 map_index_result[0] = map_index;
750 }
751 else
752 {
Florin Coras577c3552016-04-21 00:45:40 +0200753 if (mi == GID_LOOKUP_MISS)
Florin Corasa2157cf2016-08-16 21:09:14 +0200754 {
755 clib_warning ("eid %U not found in the eid-table",
756 format_gid_address, &a->eid);
757 return VNET_API_ERROR_INVALID_VALUE;
758 }
Florin Corase127a7e2016-02-18 22:20:01 +0100759
760 /* clear locator-set to eids binding */
Florin Corasa2157cf2016-08-16 21:09:14 +0200761 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids,
762 a->locator_set_index);
763 for (i = 0; i < vec_len (eid_indexes[0]); i++)
764 {
765 map_indexp = vec_elt_at_index (eid_indexes[0], i);
766 if (map_indexp[0] == mi)
767 break;
768 }
769 vec_del1 (eid_indexes[0], i);
Florin Corase127a7e2016-02-18 22:20:01 +0100770
771 /* remove local mark if needed */
Florin Corasa2157cf2016-08-16 21:09:14 +0200772 m = pool_elt_at_index (lcm->mapping_pool, mi);
Florin Corase127a7e2016-02-18 22:20:01 +0100773 if (m->local)
Florin Corasa2157cf2016-08-16 21:09:14 +0200774 {
775 u32 k, *lm_indexp;
776 for (k = 0; k < vec_len (lcm->local_mappings_indexes); k++)
777 {
778 lm_indexp = vec_elt_at_index (lcm->local_mappings_indexes, k);
779 if (lm_indexp[0] == mi)
780 break;
781 }
782 vec_del1 (lcm->local_mappings_indexes, k);
783 }
Florin Corase127a7e2016-02-18 22:20:01 +0100784
785 /* remove mapping from dictionary */
Florin Corasf727db92016-06-23 15:01:58 +0200786 gid_dictionary_add_del (&lcm->mapping_index_by_gid, &a->eid, 0, 0);
Filip Tehlar324112f2016-06-02 16:07:38 +0200787 gid_address_free (&m->eid);
Florin Corase127a7e2016-02-18 22:20:01 +0100788 pool_put_index (lcm->mapping_pool, mi);
789 }
790
791 return 0;
792}
793
Florin Corasf727db92016-06-23 15:01:58 +0200794/**
795 * Add/update/delete mapping to/in/from map-cache.
796 */
Florin Coras577c3552016-04-21 00:45:40 +0200797int
798vnet_lisp_add_del_local_mapping (vnet_lisp_add_del_mapping_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +0200799 u32 * map_index_result)
Florin Coras577c3552016-04-21 00:45:40 +0200800{
Florin Corasa2157cf2016-08-16 21:09:14 +0200801 uword *dp_table = 0;
Florin Corasf727db92016-06-23 15:01:58 +0200802 u32 vni;
Florin Coras1a1adc72016-07-22 01:45:30 +0200803 u8 type;
Florin Corasf727db92016-06-23 15:01:58 +0200804
Florin Corasa2157cf2016-08-16 21:09:14 +0200805 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Coras577c3552016-04-21 00:45:40 +0200806
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +0200807 if (vnet_lisp_enable_disable_status () == 0)
808 {
809 clib_warning ("LISP is disabled!");
810 return VNET_API_ERROR_LISP_DISABLED;
811 }
812
Florin Corasa2157cf2016-08-16 21:09:14 +0200813 vni = gid_address_vni (&a->eid);
814 type = gid_address_type (&a->eid);
Florin Coras1a1adc72016-07-22 01:45:30 +0200815 if (GID_ADDR_IP_PREFIX == type)
Florin Corasa2157cf2016-08-16 21:09:14 +0200816 dp_table = hash_get (lcm->table_id_by_vni, vni);
Florin Coras1a1adc72016-07-22 01:45:30 +0200817 else if (GID_ADDR_MAC == type)
Florin Corasa2157cf2016-08-16 21:09:14 +0200818 dp_table = hash_get (lcm->bd_id_by_vni, vni);
Florin Coras577c3552016-04-21 00:45:40 +0200819
Florin Coras1a1adc72016-07-22 01:45:30 +0200820 if (!dp_table)
Florin Coras577c3552016-04-21 00:45:40 +0200821 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200822 clib_warning ("vni %d not associated to a %s!", vni,
823 GID_ADDR_IP_PREFIX == type ? "vrf" : "bd");
Florin Coras577c3552016-04-21 00:45:40 +0200824 return VNET_API_ERROR_INVALID_VALUE;
825 }
826
Florin Corasf727db92016-06-23 15:01:58 +0200827 /* store/remove mapping from map-cache */
828 return vnet_lisp_map_cache_add_del (a, map_index_result);
Florin Coras577c3552016-04-21 00:45:40 +0200829}
830
Filip Tehlar324112f2016-06-02 16:07:38 +0200831int
Florin Coras1a1adc72016-07-22 01:45:30 +0200832vnet_lisp_eid_table_map (u32 vni, u32 dp_id, u8 is_l2, u8 is_add)
Filip Tehlar324112f2016-06-02 16:07:38 +0200833{
Florin Corasa2157cf2016-08-16 21:09:14 +0200834 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
835 uword *dp_idp, *vnip, **dp_table_by_vni, **vni_by_dp_table;
Filip Tehlar324112f2016-06-02 16:07:38 +0200836
837 if (vnet_lisp_enable_disable_status () == 0)
838 {
839 clib_warning ("LISP is disabled!");
840 return -1;
841 }
842
Florin Coras1a1adc72016-07-22 01:45:30 +0200843 dp_table_by_vni = is_l2 ? &lcm->bd_id_by_vni : &lcm->table_id_by_vni;
844 vni_by_dp_table = is_l2 ? &lcm->vni_by_bd_id : &lcm->vni_by_table_id;
845
846 if (!is_l2 && (vni == 0 || dp_id == 0))
Filip Tehlar324112f2016-06-02 16:07:38 +0200847 {
848 clib_warning ("can't add/del default vni-vrf mapping!");
849 return -1;
850 }
851
Florin Coras1a1adc72016-07-22 01:45:30 +0200852 dp_idp = hash_get (dp_table_by_vni[0], vni);
853 vnip = hash_get (vni_by_dp_table[0], dp_id);
Filip Tehlar324112f2016-06-02 16:07:38 +0200854
855 if (is_add)
856 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200857 if (dp_idp || vnip)
Florin Corasa2157cf2016-08-16 21:09:14 +0200858 {
859 clib_warning ("vni %d or vrf %d already used in vrf/vni "
860 "mapping!", vni, dp_id);
861 return -1;
862 }
Florin Coras1a1adc72016-07-22 01:45:30 +0200863 hash_set (dp_table_by_vni[0], vni, dp_id);
864 hash_set (vni_by_dp_table[0], dp_id, vni);
Florin Corasf727db92016-06-23 15:01:58 +0200865
866 /* create dp iface */
Florin Coras1a1adc72016-07-22 01:45:30 +0200867 dp_add_del_iface (lcm, vni, is_l2, 1);
Filip Tehlar324112f2016-06-02 16:07:38 +0200868 }
869 else
870 {
Florin Coras1a1adc72016-07-22 01:45:30 +0200871 if (!dp_idp || !vnip)
Florin Corasa2157cf2016-08-16 21:09:14 +0200872 {
873 clib_warning ("vni %d or vrf %d not used in any vrf/vni! "
874 "mapping!", vni, dp_id);
875 return -1;
876 }
Florin Corasf727db92016-06-23 15:01:58 +0200877 /* remove dp iface */
Florin Coras1a1adc72016-07-22 01:45:30 +0200878 dp_add_del_iface (lcm, vni, is_l2, 0);
Filip Tehlarfc568412017-04-05 10:06:03 +0200879
880 hash_unset (dp_table_by_vni[0], vni);
881 hash_unset (vni_by_dp_table[0], dp_id);
Filip Tehlar324112f2016-06-02 16:07:38 +0200882 }
883 return 0;
Florin Coras1a1adc72016-07-22 01:45:30 +0200884
Filip Tehlar324112f2016-06-02 16:07:38 +0200885}
886
Florin Corasf727db92016-06-23 15:01:58 +0200887/* return 0 if the two locator sets are identical 1 otherwise */
888static u8
Florin Corasa2157cf2016-08-16 21:09:14 +0200889compare_locators (lisp_cp_main_t * lcm, u32 * old_ls_indexes,
890 locator_t * new_locators)
Filip Tehlar53f09e32016-05-19 14:25:44 +0200891{
Florin Corasf727db92016-06-23 15:01:58 +0200892 u32 i, old_li;
Florin Corasa2157cf2016-08-16 21:09:14 +0200893 locator_t *old_loc, *new_loc;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200894
Florin Corasa2157cf2016-08-16 21:09:14 +0200895 if (vec_len (old_ls_indexes) != vec_len (new_locators))
Florin Corasf727db92016-06-23 15:01:58 +0200896 return 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200897
Florin Corasa2157cf2016-08-16 21:09:14 +0200898 for (i = 0; i < vec_len (new_locators); i++)
Filip Tehlar53f09e32016-05-19 14:25:44 +0200899 {
Florin Corasa2157cf2016-08-16 21:09:14 +0200900 old_li = vec_elt (old_ls_indexes, i);
901 old_loc = pool_elt_at_index (lcm->locator_pool, old_li);
Florin Corasf727db92016-06-23 15:01:58 +0200902
Florin Corasa2157cf2016-08-16 21:09:14 +0200903 new_loc = vec_elt_at_index (new_locators, i);
Florin Corasf727db92016-06-23 15:01:58 +0200904
905 if (locator_cmp (old_loc, new_loc))
Florin Corasa2157cf2016-08-16 21:09:14 +0200906 return 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200907 }
Florin Corasf727db92016-06-23 15:01:58 +0200908 return 0;
Filip Tehlar53f09e32016-05-19 14:25:44 +0200909}
910
Filip Tehlard5fcc462016-10-17 16:20:18 +0200911typedef struct
912{
913 u8 is_negative;
914 void *lcm;
915 gid_address_t *eids_to_be_deleted;
916} remove_mapping_args_t;
917
918/**
919 * Callback invoked when a sub-prefix is found
920 */
921static void
922remove_mapping_if_needed (u32 mi, void *arg)
923{
924 u8 delete = 0;
925 remove_mapping_args_t *a = arg;
926 lisp_cp_main_t *lcm = a->lcm;
927 mapping_t *m;
928 locator_set_t *ls;
929
930 m = pool_elt_at_index (lcm->mapping_pool, mi);
931 if (!m)
932 return;
933
934 ls = pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
935
936 if (a->is_negative)
937 {
938 if (0 != vec_len (ls->locator_indices))
939 delete = 1;
940 }
941 else
942 {
943 if (0 == vec_len (ls->locator_indices))
944 delete = 1;
945 }
946
947 if (delete)
948 vec_add1 (a->eids_to_be_deleted, m->eid);
949}
950
951/**
952 * This function searches map cache and looks for IP prefixes that are subset
953 * of the provided one. If such prefix is found depending on 'is_negative'
954 * it does follows:
955 *
956 * 1) if is_negative is true and found prefix points to positive mapping,
957 * then the mapping is removed
958 * 2) if is_negative is false and found prefix points to negative mapping,
959 * then the mapping is removed
960 */
961static void
962remove_overlapping_sub_prefixes (lisp_cp_main_t * lcm, gid_address_t * eid,
963 u8 is_negative)
964{
965 gid_address_t *e;
966 remove_mapping_args_t a;
Florin Corasf3dc11a2017-01-24 03:13:43 -0800967
Filip Tehlard5fcc462016-10-17 16:20:18 +0200968 memset (&a, 0, sizeof (a));
969
970 /* do this only in src/dst mode ... */
971 if (MR_MODE_SRC_DST != lcm->map_request_mode)
972 return;
973
974 /* ... and only for IP prefix */
975 if (GID_ADDR_SRC_DST != gid_address_type (eid)
976 || (FID_ADDR_IP_PREF != gid_address_sd_dst_type (eid)))
977 return;
978
979 a.is_negative = is_negative;
980 a.lcm = lcm;
981
982 gid_dict_foreach_subprefix (&lcm->mapping_index_by_gid, eid,
983 remove_mapping_if_needed, &a);
984
985 vec_foreach (e, a.eids_to_be_deleted)
Filip Tehlarfb9931f2016-12-09 13:52:38 +0100986 {
Florin Corasf3dc11a2017-01-24 03:13:43 -0800987 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
988
989 memset (adj_args, 0, sizeof (adj_args[0]));
990 gid_address_copy (&adj_args->reid, e);
991 adj_args->is_add = 0;
992 if (vnet_lisp_add_del_adjacency (adj_args))
993 clib_warning ("failed to del adjacency!");
994
Filip Tehlard5fcc462016-10-17 16:20:18 +0200995 vnet_lisp_add_del_mapping (e, 0, 0, 0, 0, 0 /* is add */ , 0, 0);
Filip Tehlarfb9931f2016-12-09 13:52:38 +0100996 }
Filip Tehlard5fcc462016-10-17 16:20:18 +0200997
998 vec_free (a.eids_to_be_deleted);
999}
1000
Filip Tehlar9677a942016-11-28 10:23:31 +01001001static void
1002mapping_delete_timer (lisp_cp_main_t * lcm, u32 mi)
1003{
1004 timing_wheel_delete (&lcm->wheel, mi);
1005}
1006
Filip Tehlara6bce492017-02-03 10:17:49 +01001007static int
1008is_local_ip (lisp_cp_main_t * lcm, ip_address_t * addr)
1009{
1010 fib_node_index_t fei;
1011 fib_prefix_t prefix;
1012 fib_entry_flag_t flags;
1013
1014 ip_address_to_fib_prefix (addr, &prefix);
1015
1016 fei = fib_table_lookup (0, &prefix);
1017 flags = fib_entry_get_flags (fei);
1018 return (FIB_ENTRY_FLAG_LOCAL & flags);
1019}
1020
Filip Tehlar195bcee2016-05-13 17:37:35 +02001021/**
Florin Corasf727db92016-06-23 15:01:58 +02001022 * Adds/removes/updates mapping. Does not program forwarding.
Filip Tehlar195bcee2016-05-13 17:37:35 +02001023 *
Florin Coras71893ac2016-07-10 20:09:32 +02001024 * @param eid end-host identifier
Filip Tehlar195bcee2016-05-13 17:37:35 +02001025 * @param rlocs vector of remote locators
1026 * @param action action for negative map-reply
1027 * @param is_add add mapping if non-zero, delete otherwise
Florin Coras71893ac2016-07-10 20:09:32 +02001028 * @param res_map_index the map-index that was created/updated/removed. It is
1029 * set to ~0 if no action is taken.
Filip Tehlar3cd9e732016-08-23 10:52:44 +02001030 * @param is_static used for distinguishing between statically learned
1031 remote mappings and mappings obtained from MR
Filip Tehlar195bcee2016-05-13 17:37:35 +02001032 * @return return code
1033 */
1034int
Florin Coras71893ac2016-07-10 20:09:32 +02001035vnet_lisp_add_del_mapping (gid_address_t * eid, locator_t * rlocs, u8 action,
Filip Tehlar3cd9e732016-08-23 10:52:44 +02001036 u8 authoritative, u32 ttl, u8 is_add, u8 is_static,
Florin Corasa2157cf2016-08-16 21:09:14 +02001037 u32 * res_map_index)
Filip Tehlar195bcee2016-05-13 17:37:35 +02001038{
Florin Corasa2157cf2016-08-16 21:09:14 +02001039 vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
1040 vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1041 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Corasf727db92016-06-23 15:01:58 +02001042 u32 mi, ls_index = 0, dst_map_index;
Florin Corasa2157cf2016-08-16 21:09:14 +02001043 mapping_t *old_map;
Filip Tehlara6bce492017-02-03 10:17:49 +01001044 locator_t *loc;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001045
Florin Corasa2157cf2016-08-16 21:09:14 +02001046 if (vnet_lisp_enable_disable_status () == 0)
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001047 {
1048 clib_warning ("LISP is disabled!");
1049 return VNET_API_ERROR_LISP_DISABLED;
1050 }
1051
Florin Corasf727db92016-06-23 15:01:58 +02001052 if (res_map_index)
1053 res_map_index[0] = ~0;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001054
Florin Corasf727db92016-06-23 15:01:58 +02001055 memset (m_args, 0, sizeof (m_args[0]));
1056 memset (ls_args, 0, sizeof (ls_args[0]));
Filip Tehlar195bcee2016-05-13 17:37:35 +02001057
Florin Corasf727db92016-06-23 15:01:58 +02001058 ls_args->locators = rlocs;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001059
Florin Coras71893ac2016-07-10 20:09:32 +02001060 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
Florin Corasa2157cf2016-08-16 21:09:14 +02001061 old_map = ((u32) ~ 0 != mi) ? pool_elt_at_index (lcm->mapping_pool, mi) : 0;
Florin Corasf727db92016-06-23 15:01:58 +02001062
1063 if (is_add)
Filip Tehlar195bcee2016-05-13 17:37:35 +02001064 {
Filip Tehlar272c69e2017-02-15 16:40:35 +01001065 /* check if none of the locators match localy configured address */
1066 vec_foreach (loc, rlocs)
1067 {
1068 ip_prefix_t *p = &gid_address_ippref (&loc->address);
1069 if (is_local_ip (lcm, &ip_prefix_addr (p)))
1070 {
1071 clib_warning ("RLOC %U matches a local address!",
1072 format_gid_address, &loc->address);
1073 return VNET_API_ERROR_LISP_RLOC_LOCAL;
1074 }
1075 }
1076
Florin Corasf727db92016-06-23 15:01:58 +02001077 /* overwrite: if mapping already exists, decide if locators should be
1078 * updated and be done */
Florin Coras71893ac2016-07-10 20:09:32 +02001079 if (old_map && gid_address_cmp (&old_map->eid, eid) == 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02001080 {
Filip Tehlar3cd9e732016-08-23 10:52:44 +02001081 if (!is_static && (old_map->is_static || old_map->local))
1082 {
1083 /* do not overwrite local or static remote mappings */
1084 clib_warning ("mapping %U rejected due to collision with local "
1085 "or static remote mapping!", format_gid_address,
Filip Tehlard5fcc462016-10-17 16:20:18 +02001086 eid);
Filip Tehlar3cd9e732016-08-23 10:52:44 +02001087 return 0;
1088 }
1089
Florin Corasa2157cf2016-08-16 21:09:14 +02001090 locator_set_t *old_ls;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001091
Florin Corasa2157cf2016-08-16 21:09:14 +02001092 /* update mapping attributes */
1093 old_map->action = action;
1094 old_map->authoritative = authoritative;
1095 old_map->ttl = ttl;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001096
Florin Corasa2157cf2016-08-16 21:09:14 +02001097 old_ls = pool_elt_at_index (lcm->locator_set_pool,
1098 old_map->locator_set_index);
1099 if (compare_locators (lcm, old_ls->locator_indices,
1100 ls_args->locators))
1101 {
1102 /* set locator-set index to overwrite */
1103 ls_args->is_add = 1;
1104 ls_args->index = old_map->locator_set_index;
1105 vnet_lisp_add_del_locator_set (ls_args, 0);
1106 if (res_map_index)
1107 res_map_index[0] = mi;
1108 }
1109 }
Florin Corasf727db92016-06-23 15:01:58 +02001110 /* new mapping */
1111 else
Florin Corasa2157cf2016-08-16 21:09:14 +02001112 {
Filip Tehlard5fcc462016-10-17 16:20:18 +02001113 remove_overlapping_sub_prefixes (lcm, eid, 0 == ls_args->locators);
1114
Florin Corasa2157cf2016-08-16 21:09:14 +02001115 ls_args->is_add = 1;
1116 ls_args->index = ~0;
Florin Corasf727db92016-06-23 15:01:58 +02001117
Florin Corasa2157cf2016-08-16 21:09:14 +02001118 vnet_lisp_add_del_locator_set (ls_args, &ls_index);
Florin Corasf727db92016-06-23 15:01:58 +02001119
Florin Corasa2157cf2016-08-16 21:09:14 +02001120 /* add mapping */
1121 gid_address_copy (&m_args->eid, eid);
1122 m_args->is_add = 1;
1123 m_args->action = action;
1124 m_args->locator_set_index = ls_index;
Filip Tehlar3cd9e732016-08-23 10:52:44 +02001125 m_args->is_static = is_static;
Filip Tehlar9677a942016-11-28 10:23:31 +01001126 m_args->ttl = ttl;
Florin Corasa2157cf2016-08-16 21:09:14 +02001127 vnet_lisp_map_cache_add_del (m_args, &dst_map_index);
Florin Corasf727db92016-06-23 15:01:58 +02001128
Florin Corasa2157cf2016-08-16 21:09:14 +02001129 if (res_map_index)
1130 res_map_index[0] = dst_map_index;
1131 }
Filip Tehlar195bcee2016-05-13 17:37:35 +02001132 }
Florin Corasf727db92016-06-23 15:01:58 +02001133 else
1134 {
Florin Coras71893ac2016-07-10 20:09:32 +02001135 if (old_map == 0 || gid_address_cmp (&old_map->eid, eid) != 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02001136 {
1137 clib_warning ("cannot delete mapping for eid %U",
1138 format_gid_address, eid);
1139 return -1;
1140 }
Florin Corasf727db92016-06-23 15:01:58 +02001141
1142 m_args->is_add = 0;
Florin Coras71893ac2016-07-10 20:09:32 +02001143 gid_address_copy (&m_args->eid, eid);
Florin Corasf727db92016-06-23 15:01:58 +02001144 m_args->locator_set_index = old_map->locator_set_index;
1145
1146 /* delete mapping associated from map-cache */
1147 vnet_lisp_map_cache_add_del (m_args, 0);
1148
1149 ls_args->is_add = 0;
1150 ls_args->index = old_map->locator_set_index;
1151 /* delete locator set */
1152 vnet_lisp_add_del_locator_set (ls_args, 0);
Filip Tehlarb93222f2016-07-07 09:58:08 +02001153
Filip Tehlar9677a942016-11-28 10:23:31 +01001154 /* delete timer associated to the mapping if any */
1155 if (old_map->timer_set)
1156 mapping_delete_timer (lcm, mi);
1157
Filip Tehlarb93222f2016-07-07 09:58:08 +02001158 /* return old mapping index */
Andrej Kozemcak438109d2016-07-22 12:54:12 +02001159 if (res_map_index)
Florin Corasa2157cf2016-08-16 21:09:14 +02001160 res_map_index[0] = mi;
Florin Corasf727db92016-06-23 15:01:58 +02001161 }
1162
Filip Tehlar195bcee2016-05-13 17:37:35 +02001163 /* success */
Florin Corasf727db92016-06-23 15:01:58 +02001164 return 0;
Filip Tehlar195bcee2016-05-13 17:37:35 +02001165}
1166
Filip Tehlar58f886a2016-05-30 15:57:40 +02001167int
Florin Corasf727db92016-06-23 15:01:58 +02001168vnet_lisp_clear_all_remote_adjacencies (void)
Filip Tehlar58f886a2016-05-30 15:57:40 +02001169{
1170 int rv = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001171 u32 mi, *map_indices = 0, *map_indexp;
1172 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1173 vnet_lisp_add_del_mapping_args_t _dm_args, *dm_args = &_dm_args;
1174 vnet_lisp_add_del_locator_set_args_t _ls, *ls = &_ls;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001175
Florin Corasa2157cf2016-08-16 21:09:14 +02001176 /* *INDENT-OFF* */
Filip Tehlar58f886a2016-05-30 15:57:40 +02001177 pool_foreach_index (mi, lcm->mapping_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02001178 ({
1179 vec_add1 (map_indices, mi);
1180 }));
1181 /* *INDENT-ON* */
Filip Tehlar58f886a2016-05-30 15:57:40 +02001182
1183 vec_foreach (map_indexp, map_indices)
Florin Corasa2157cf2016-08-16 21:09:14 +02001184 {
1185 mapping_t *map = pool_elt_at_index (lcm->mapping_pool, map_indexp[0]);
1186 if (!map->local)
1187 {
1188 dp_del_fwd_entry (lcm, 0, map_indexp[0]);
Filip Tehlar58f886a2016-05-30 15:57:40 +02001189
Florin Corasa2157cf2016-08-16 21:09:14 +02001190 dm_args->is_add = 0;
1191 gid_address_copy (&dm_args->eid, &map->eid);
1192 dm_args->locator_set_index = map->locator_set_index;
Filip Tehlar58f886a2016-05-30 15:57:40 +02001193
Florin Corasa2157cf2016-08-16 21:09:14 +02001194 /* delete mapping associated to fwd entry */
1195 vnet_lisp_map_cache_add_del (dm_args, 0);
Filip Tehlar58f886a2016-05-30 15:57:40 +02001196
Florin Corasa2157cf2016-08-16 21:09:14 +02001197 ls->is_add = 0;
1198 ls->local = 0;
1199 ls->index = map->locator_set_index;
1200 /* delete locator set */
1201 rv = vnet_lisp_add_del_locator_set (ls, 0);
1202 if (rv != 0)
1203 goto cleanup;
1204 }
1205 }
Filip Tehlar58f886a2016-05-30 15:57:40 +02001206
1207cleanup:
1208 if (map_indices)
1209 vec_free (map_indices);
1210 return rv;
1211}
1212
Filip Tehlar195bcee2016-05-13 17:37:35 +02001213/**
Florin Coras71893ac2016-07-10 20:09:32 +02001214 * Adds adjacency or removes forwarding entry associated to remote mapping.
1215 * Note that adjacencies are not stored, they only result in forwarding entries
1216 * being created.
Florin Corasf727db92016-06-23 15:01:58 +02001217 */
Florin Corasf3dc11a2017-01-24 03:13:43 -08001218int
1219vnet_lisp_add_del_adjacency (vnet_lisp_add_del_adjacency_args_t * a)
Florin Corasf727db92016-06-23 15:01:58 +02001220{
Florin Corasf3dc11a2017-01-24 03:13:43 -08001221 lisp_cp_main_t *lcm = &lisp_control_main;
Florin Coras71893ac2016-07-10 20:09:32 +02001222 u32 local_mi, remote_mi = ~0;
Florin Corasf727db92016-06-23 15:01:58 +02001223
1224 if (vnet_lisp_enable_disable_status () == 0)
1225 {
1226 clib_warning ("LISP is disabled!");
1227 return VNET_API_ERROR_LISP_DISABLED;
1228 }
1229
Filip Tehlar69a9b762016-09-23 10:00:52 +02001230 remote_mi = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid,
Florin Corasf3dc11a2017-01-24 03:13:43 -08001231 &a->reid, &a->leid);
Florin Coras71893ac2016-07-10 20:09:32 +02001232 if (GID_LOOKUP_MISS == remote_mi)
1233 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001234 clib_warning ("Remote eid %U not found. Cannot add adjacency!",
Florin Corasf3dc11a2017-01-24 03:13:43 -08001235 format_gid_address, &a->reid);
Florin Corasf727db92016-06-23 15:01:58 +02001236
Florin Coras71893ac2016-07-10 20:09:32 +02001237 return -1;
1238 }
1239
Florin Corasf3dc11a2017-01-24 03:13:43 -08001240 if (a->is_add)
Florin Corasf727db92016-06-23 15:01:58 +02001241 {
Florin Corasf727db92016-06-23 15:01:58 +02001242 /* check if source eid has an associated mapping. If pitr mode is on,
1243 * just use the pitr's mapping */
Florin Coras71893ac2016-07-10 20:09:32 +02001244 local_mi = lcm->lisp_pitr ? lcm->pitr_map_index :
Florin Corasf3dc11a2017-01-24 03:13:43 -08001245 gid_dictionary_lookup (&lcm->mapping_index_by_gid, &a->leid);
Florin Corasf727db92016-06-23 15:01:58 +02001246
Florin Coras71893ac2016-07-10 20:09:32 +02001247 if (GID_LOOKUP_MISS == local_mi)
Florin Corasa2157cf2016-08-16 21:09:14 +02001248 {
1249 clib_warning ("Local eid %U not found. Cannot add adjacency!",
Florin Corasf3dc11a2017-01-24 03:13:43 -08001250 format_gid_address, &a->leid);
Florin Corasf727db92016-06-23 15:01:58 +02001251
Florin Corasa2157cf2016-08-16 21:09:14 +02001252 return -1;
1253 }
Florin Corasf727db92016-06-23 15:01:58 +02001254
Florin Coras71893ac2016-07-10 20:09:32 +02001255 /* update forwarding */
1256 dp_add_fwd_entry (lcm, local_mi, remote_mi);
Florin Corasf727db92016-06-23 15:01:58 +02001257 }
1258 else
Florin Coras71893ac2016-07-10 20:09:32 +02001259 dp_del_fwd_entry (lcm, 0, remote_mi);
Florin Corasf727db92016-06-23 15:01:58 +02001260
1261 return 0;
1262}
1263
1264int
Florin Corasdca88042016-09-14 16:01:38 +02001265vnet_lisp_set_map_request_mode (u8 mode)
1266{
1267 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1268
1269 if (vnet_lisp_enable_disable_status () == 0)
1270 {
1271 clib_warning ("LISP is disabled!");
1272 return VNET_API_ERROR_LISP_DISABLED;
1273 }
1274
1275 if (mode >= _MR_MODE_MAX)
1276 {
1277 clib_warning ("Invalid LISP map request mode %d!", mode);
1278 return VNET_API_ERROR_INVALID_ARGUMENT;
1279 }
1280
1281 lcm->map_request_mode = mode;
1282 return 0;
1283}
1284
Filip Tehlar53f09e32016-05-19 14:25:44 +02001285int
1286vnet_lisp_pitr_set_locator_set (u8 * locator_set_name, u8 is_add)
1287{
Florin Corasa2157cf2016-08-16 21:09:14 +02001288 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar53f09e32016-05-19 14:25:44 +02001289 u32 locator_set_index = ~0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001290 mapping_t *m;
1291 uword *p;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001292
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001293 if (vnet_lisp_enable_disable_status () == 0)
1294 {
1295 clib_warning ("LISP is disabled!");
1296 return VNET_API_ERROR_LISP_DISABLED;
1297 }
1298
Filip Tehlar53f09e32016-05-19 14:25:44 +02001299 p = hash_get_mem (lcm->locator_set_index_by_name, locator_set_name);
1300 if (!p)
1301 {
1302 clib_warning ("locator-set %v doesn't exist", locator_set_name);
1303 return -1;
1304 }
1305 locator_set_index = p[0];
1306
1307 if (is_add)
1308 {
1309 pool_get (lcm->mapping_pool, m);
1310 m->locator_set_index = locator_set_index;
1311 m->local = 1;
Filip Tehlar38206ee2017-02-20 17:31:57 +01001312 m->pitr_set = 1;
Filip Tehlar53f09e32016-05-19 14:25:44 +02001313 lcm->pitr_map_index = m - lcm->mapping_pool;
1314
1315 /* enable pitr mode */
1316 lcm->lisp_pitr = 1;
1317 }
1318 else
1319 {
1320 /* remove pitr mapping */
1321 pool_put_index (lcm->mapping_pool, lcm->pitr_map_index);
1322
1323 /* disable pitr mode */
1324 lcm->lisp_pitr = 0;
1325 }
1326 return 0;
1327}
1328
Florin Corasba888e42017-01-24 11:38:18 -08001329/**
1330 * Configure Proxy-ETR
1331 *
1332 * @param ip PETR's IP address
1333 * @param is_add Flag that indicates if this is an addition or removal
1334 *
1335 * return 0 on success
1336 */
1337int
1338vnet_lisp_use_petr (ip_address_t * ip, u8 is_add)
1339{
1340 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1341 u32 ls_index = ~0;
1342 mapping_t *m;
1343 vnet_lisp_add_del_locator_set_args_t _ls_args, *ls_args = &_ls_args;
1344 locator_t loc;
1345
1346 if (vnet_lisp_enable_disable_status () == 0)
1347 {
1348 clib_warning ("LISP is disabled!");
1349 return VNET_API_ERROR_LISP_DISABLED;
1350 }
1351
1352 memset (ls_args, 0, sizeof (*ls_args));
1353
1354 if (is_add)
1355 {
1356 /* Create dummy petr locator-set */
Florin Corasb69259a2017-03-09 14:39:54 -08001357 memset (&loc, 0, sizeof (loc));
Florin Corasba888e42017-01-24 11:38:18 -08001358 gid_address_from_ip (&loc.address, ip);
1359 loc.priority = 1;
1360 loc.state = loc.weight = 1;
Florin Coras2743cc42017-01-29 16:42:20 -08001361 loc.local = 0;
Florin Corasba888e42017-01-24 11:38:18 -08001362
1363 ls_args->is_add = 1;
1364 ls_args->index = ~0;
1365 vec_add1 (ls_args->locators, loc);
1366 vnet_lisp_add_del_locator_set (ls_args, &ls_index);
1367
1368 /* Add petr mapping */
1369 pool_get (lcm->mapping_pool, m);
1370 m->locator_set_index = ls_index;
1371 lcm->petr_map_index = m - lcm->mapping_pool;
1372
1373 /* Enable use-petr */
1374 lcm->flags |= LISP_FLAG_USE_PETR;
1375 }
1376 else
1377 {
1378 m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
1379
1380 /* Remove petr locator */
1381 ls_args->is_add = 0;
1382 ls_args->index = m->locator_set_index;
1383 vnet_lisp_add_del_locator_set (ls_args, 0);
1384
1385 /* Remove petr mapping */
1386 pool_put_index (lcm->mapping_pool, lcm->petr_map_index);
1387
1388 /* Disable use-petr */
1389 lcm->flags &= ~LISP_FLAG_USE_PETR;
1390 }
1391 return 0;
1392}
1393
Florin Corase127a7e2016-02-18 22:20:01 +01001394/* cleans locator to locator-set data and removes locators not part of
1395 * any locator-set */
1396static void
1397clean_locator_to_locator_set (lisp_cp_main_t * lcm, u32 lsi)
1398{
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001399 u32 i, j, *loc_indexp, *ls_indexp, **ls_indexes, *to_be_deleted = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02001400 locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool, lsi);
1401 for (i = 0; i < vec_len (ls->locator_indices); i++)
Florin Corase127a7e2016-02-18 22:20:01 +01001402 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001403 loc_indexp = vec_elt_at_index (ls->locator_indices, i);
1404 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
1405 loc_indexp[0]);
1406 for (j = 0; j < vec_len (ls_indexes[0]); j++)
1407 {
1408 ls_indexp = vec_elt_at_index (ls_indexes[0], j);
1409 if (ls_indexp[0] == lsi)
1410 break;
1411 }
Florin Corase127a7e2016-02-18 22:20:01 +01001412
Florin Corasa2157cf2016-08-16 21:09:14 +02001413 /* delete index for removed locator-set */
1414 vec_del1 (ls_indexes[0], j);
Florin Corase127a7e2016-02-18 22:20:01 +01001415
1416 /* delete locator if it's part of no locator-set */
1417 if (vec_len (ls_indexes[0]) == 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02001418 {
1419 pool_put_index (lcm->locator_pool, loc_indexp[0]);
1420 vec_add1 (to_be_deleted, i);
1421 }
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001422 }
1423
1424 if (to_be_deleted)
1425 {
1426 for (i = 0; i < vec_len (to_be_deleted); i++)
Florin Corasa2157cf2016-08-16 21:09:14 +02001427 {
1428 loc_indexp = vec_elt_at_index (to_be_deleted, i);
1429 vec_del1 (ls->locator_indices, loc_indexp[0]);
1430 }
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001431 vec_free (to_be_deleted);
Florin Corase127a7e2016-02-18 22:20:01 +01001432 }
1433}
Filip Tehlard1c5cc32016-05-30 10:39:20 +02001434
Florin Corasf727db92016-06-23 15:01:58 +02001435static inline uword *
1436get_locator_set_index (vnet_lisp_add_del_locator_set_args_t * a, uword * p)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001437{
Florin Corasa2157cf2016-08-16 21:09:14 +02001438 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001439
Florin Corasa2157cf2016-08-16 21:09:14 +02001440 ASSERT (a != NULL);
1441 ASSERT (p != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001442
1443 /* find locator-set */
1444 if (a->local)
1445 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001446 p = hash_get_mem (lcm->locator_set_index_by_name, a->name);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001447 }
1448 else
1449 {
1450 *p = a->index;
1451 }
1452
1453 return p;
1454}
1455
Florin Corasf727db92016-06-23 15:01:58 +02001456static inline int
1457is_locator_in_locator_set (lisp_cp_main_t * lcm, locator_set_t * ls,
Florin Corasa2157cf2016-08-16 21:09:14 +02001458 locator_t * loc)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001459{
Florin Corasa2157cf2016-08-16 21:09:14 +02001460 locator_t *itloc;
1461 u32 *locit;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001462
Florin Corasa2157cf2016-08-16 21:09:14 +02001463 ASSERT (ls != NULL);
1464 ASSERT (loc != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001465
Florin Corasa2157cf2016-08-16 21:09:14 +02001466 vec_foreach (locit, ls->locator_indices)
1467 {
1468 itloc = pool_elt_at_index (lcm->locator_pool, locit[0]);
1469 if ((ls->local && itloc->sw_if_index == loc->sw_if_index) ||
1470 (!ls->local && !gid_address_cmp (&itloc->address, &loc->address)))
1471 {
1472 clib_warning ("Duplicate locator");
1473 return VNET_API_ERROR_VALUE_EXIST;
1474 }
1475 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001476
1477 return 0;
1478}
1479
Filip Tehlar68d2e242017-04-21 12:05:58 +02001480static void
1481update_adjacencies_by_map_index (lisp_cp_main_t * lcm, u8 is_local,
1482 u32 mapping_index, u8 remove_only)
1483{
1484 fwd_entry_t *fwd;
1485 mapping_t *map;
1486 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
1487
1488 map = pool_elt_at_index (lcm->mapping_pool, mapping_index);
1489
1490 /* *INDENT-OFF* */
1491 pool_foreach(fwd, lcm->fwd_entry_pool,
1492 ({
1493 if ((is_local && 0 == gid_address_cmp (&map->eid, &fwd->leid)) ||
1494 (!is_local && 0 == gid_address_cmp (&map->eid, &fwd->reid)))
1495 {
1496 a->is_add = 0;
1497 gid_address_copy (&a->leid, &fwd->leid);
1498 gid_address_copy (&a->reid, &fwd->reid);
1499
1500 vnet_lisp_add_del_adjacency (a);
1501
1502 if (!remove_only)
1503 {
1504 a->is_add = 1;
1505 vnet_lisp_add_del_adjacency (a);
1506 }
1507 }
1508 }));
1509 /* *INDENT-ON* */
1510}
1511
1512static void
1513update_fwd_entries_by_locator_set (lisp_cp_main_t * lcm, u8 is_local,
1514 u32 ls_index, u8 remove_only)
1515{
1516 u32 i, *map_indexp;
1517 u32 **eid_indexes;
Filip Tehlarfacee282017-04-27 14:29:27 +02001518
1519 if (vec_len (lcm->locator_set_to_eids) <= ls_index)
1520 return;
1521
Filip Tehlar68d2e242017-04-21 12:05:58 +02001522 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, ls_index);
1523
1524 for (i = 0; i < vec_len (eid_indexes[0]); i++)
1525 {
1526 map_indexp = vec_elt_at_index (eid_indexes[0], i);
1527 update_adjacencies_by_map_index (lcm, is_local, map_indexp[0],
1528 remove_only);
1529 }
1530}
1531
Florin Corasf727db92016-06-23 15:01:58 +02001532static inline void
Florin Corasa2157cf2016-08-16 21:09:14 +02001533remove_locator_from_locator_set (locator_set_t * ls, u32 * locit,
1534 u32 ls_index, u32 loc_id)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001535{
Florin Corasa2157cf2016-08-16 21:09:14 +02001536 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1537 u32 **ls_indexes = NULL;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001538
Florin Corasa2157cf2016-08-16 21:09:14 +02001539 ASSERT (ls != NULL);
1540 ASSERT (locit != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001541
Florin Corasa2157cf2016-08-16 21:09:14 +02001542 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets, locit[0]);
1543 pool_put_index (lcm->locator_pool, locit[0]);
1544 vec_del1 (ls->locator_indices, loc_id);
1545 vec_del1 (ls_indexes[0], ls_index);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001546}
1547
1548int
1549vnet_lisp_add_del_locator (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +02001550 locator_set_t * ls, u32 * ls_result)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001551{
Florin Corasa2157cf2016-08-16 21:09:14 +02001552 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1553 locator_t *loc = NULL, *itloc = NULL;
1554 uword _p = (u32) ~ 0, *p = &_p;
1555 u32 loc_index = ~0, ls_index = ~0, *locit = NULL, **ls_indexes = NULL;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001556 u32 loc_id = ~0;
1557 int ret = 0;
1558
Florin Corasa2157cf2016-08-16 21:09:14 +02001559 ASSERT (a != NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001560
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001561 if (vnet_lisp_enable_disable_status () == 0)
1562 {
1563 clib_warning ("LISP is disabled!");
1564 return VNET_API_ERROR_LISP_DISABLED;
1565 }
1566
Florin Corasa2157cf2016-08-16 21:09:14 +02001567 p = get_locator_set_index (a, p);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001568 if (!p)
1569 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001570 clib_warning ("locator-set %v doesn't exist", a->name);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001571 return VNET_API_ERROR_INVALID_ARGUMENT;
1572 }
1573
1574 if (ls == 0)
1575 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001576 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001577 if (!ls)
Florin Corasa2157cf2016-08-16 21:09:14 +02001578 {
1579 clib_warning ("locator-set %d to be overwritten doesn't exist!",
1580 p[0]);
1581 return VNET_API_ERROR_INVALID_ARGUMENT;
1582 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001583 }
1584
1585 if (a->is_add)
1586 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001587 if (ls_result)
1588 ls_result[0] = p[0];
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001589
Florin Corasa2157cf2016-08-16 21:09:14 +02001590 /* allocate locators */
1591 vec_foreach (itloc, a->locators)
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001592 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001593 ret = is_locator_in_locator_set (lcm, ls, itloc);
1594 if (0 != ret)
1595 {
1596 return ret;
1597 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001598
Florin Corasa2157cf2016-08-16 21:09:14 +02001599 pool_get (lcm->locator_pool, loc);
1600 loc[0] = itloc[0];
1601 loc_index = loc - lcm->locator_pool;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001602
Florin Corasa2157cf2016-08-16 21:09:14 +02001603 vec_add1 (ls->locator_indices, loc_index);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001604
Florin Corasa2157cf2016-08-16 21:09:14 +02001605 vec_validate (lcm->locator_to_locator_sets, loc_index);
1606 ls_indexes = vec_elt_at_index (lcm->locator_to_locator_sets,
1607 loc_index);
Filip Tehlarc5bb0d62016-09-02 12:14:31 +02001608 vec_add1 (ls_indexes[0], p[0]);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001609 }
Florin Corasa2157cf2016-08-16 21:09:14 +02001610 }
1611 else
1612 {
1613 ls_index = p[0];
Filip Tehlar68d2e242017-04-21 12:05:58 +02001614 u8 removed;
Florin Corasa2157cf2016-08-16 21:09:14 +02001615
Filip Tehlar68d2e242017-04-21 12:05:58 +02001616 vec_foreach (itloc, a->locators)
Florin Corasa2157cf2016-08-16 21:09:14 +02001617 {
Filip Tehlar68d2e242017-04-21 12:05:58 +02001618 removed = 0;
1619 loc_id = 0;
1620 vec_foreach (locit, ls->locator_indices)
1621 {
1622 loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
Florin Corasa2157cf2016-08-16 21:09:14 +02001623
Filip Tehlar68d2e242017-04-21 12:05:58 +02001624 if (loc->local && loc->sw_if_index == itloc->sw_if_index)
1625 {
1626 removed = 1;
1627 remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
1628 }
1629 if (0 == loc->local &&
1630 !gid_address_cmp (&loc->address, &itloc->address))
1631 {
1632 removed = 1;
1633 remove_locator_from_locator_set (ls, locit, ls_index, loc_id);
1634 }
Florin Corasa2157cf2016-08-16 21:09:14 +02001635
Filip Tehlar68d2e242017-04-21 12:05:58 +02001636 if (removed)
1637 {
1638 /* update fwd entries using this locator in DP */
1639 update_fwd_entries_by_locator_set (lcm, loc->local, ls_index,
1640 vec_len (ls->locator_indices)
1641 == 0);
1642 }
1643
1644 loc_id++;
1645 }
Florin Corasa2157cf2016-08-16 21:09:14 +02001646 }
1647 }
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001648
1649 return 0;
1650}
1651
Florin Corase127a7e2016-02-18 22:20:01 +01001652int
1653vnet_lisp_add_del_locator_set (vnet_lisp_add_del_locator_set_args_t * a,
Florin Corasa2157cf2016-08-16 21:09:14 +02001654 u32 * ls_result)
Florin Corase127a7e2016-02-18 22:20:01 +01001655{
Florin Corasa2157cf2016-08-16 21:09:14 +02001656 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1657 locator_set_t *ls;
1658 uword _p = (u32) ~ 0, *p = &_p;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001659 u32 ls_index;
Florin Corasa2157cf2016-08-16 21:09:14 +02001660 u32 **eid_indexes;
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001661 int ret = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01001662
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001663 if (vnet_lisp_enable_disable_status () == 0)
1664 {
1665 clib_warning ("LISP is disabled!");
1666 return VNET_API_ERROR_LISP_DISABLED;
1667 }
1668
Florin Corase127a7e2016-02-18 22:20:01 +01001669 if (a->is_add)
1670 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001671 p = get_locator_set_index (a, p);
Florin Corase127a7e2016-02-18 22:20:01 +01001672
1673 /* overwrite */
Florin Corasa2157cf2016-08-16 21:09:14 +02001674 if (p && p[0] != (u32) ~ 0)
1675 {
1676 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
1677 if (!ls)
1678 {
1679 clib_warning ("locator-set %d to be overwritten doesn't exist!",
1680 p[0]);
1681 return -1;
1682 }
Florin Corase127a7e2016-02-18 22:20:01 +01001683
Florin Corasa2157cf2016-08-16 21:09:14 +02001684 /* clean locator to locator-set vectors and remove locators if
1685 * they're not part of another locator-set */
1686 clean_locator_to_locator_set (lcm, p[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01001687
Florin Corasa2157cf2016-08-16 21:09:14 +02001688 /* remove locator indices from locator set */
1689 vec_free (ls->locator_indices);
Florin Corase127a7e2016-02-18 22:20:01 +01001690
Florin Corasa2157cf2016-08-16 21:09:14 +02001691 ls_index = p[0];
Florin Corase127a7e2016-02-18 22:20:01 +01001692
Florin Corasa2157cf2016-08-16 21:09:14 +02001693 if (ls_result)
1694 ls_result[0] = p[0];
1695 }
Florin Corase127a7e2016-02-18 22:20:01 +01001696 /* new locator-set */
1697 else
Florin Corasa2157cf2016-08-16 21:09:14 +02001698 {
1699 pool_get (lcm->locator_set_pool, ls);
1700 memset (ls, 0, sizeof (*ls));
1701 ls_index = ls - lcm->locator_set_pool;
Florin Corase127a7e2016-02-18 22:20:01 +01001702
Florin Corasa2157cf2016-08-16 21:09:14 +02001703 if (a->local)
1704 {
1705 ls->name = vec_dup (a->name);
Florin Corase127a7e2016-02-18 22:20:01 +01001706
Florin Corasa2157cf2016-08-16 21:09:14 +02001707 if (!lcm->locator_set_index_by_name)
1708 lcm->locator_set_index_by_name = hash_create_vec (
1709 /* size */
1710 0,
1711 sizeof
1712 (ls->name
1713 [0]),
1714 sizeof
1715 (uword));
1716 hash_set_mem (lcm->locator_set_index_by_name, ls->name,
1717 ls_index);
Florin Corase127a7e2016-02-18 22:20:01 +01001718
Florin Corasa2157cf2016-08-16 21:09:14 +02001719 /* mark as local locator-set */
1720 vec_add1 (lcm->local_locator_set_indexes, ls_index);
1721 }
1722 ls->local = a->local;
1723 if (ls_result)
1724 ls_result[0] = ls_index;
1725 }
Florin Corase127a7e2016-02-18 22:20:01 +01001726
Florin Corasa2157cf2016-08-16 21:09:14 +02001727 ret = vnet_lisp_add_del_locator (a, ls, NULL);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001728 if (0 != ret)
Florin Corasa2157cf2016-08-16 21:09:14 +02001729 {
1730 return ret;
1731 }
Florin Corase127a7e2016-02-18 22:20:01 +01001732 }
1733 else
1734 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001735 p = get_locator_set_index (a, p);
Andrej Kozemcak6a2e4392016-05-26 12:20:08 +02001736 if (!p)
Florin Corasa2157cf2016-08-16 21:09:14 +02001737 {
1738 clib_warning ("locator-set %v doesn't exists", a->name);
1739 return -1;
1740 }
Florin Corase127a7e2016-02-18 22:20:01 +01001741
Florin Corasa2157cf2016-08-16 21:09:14 +02001742 ls = pool_elt_at_index (lcm->locator_set_pool, p[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01001743 if (!ls)
Florin Corasa2157cf2016-08-16 21:09:14 +02001744 {
1745 clib_warning ("locator-set with index %d doesn't exists", p[0]);
1746 return -1;
1747 }
Florin Corase127a7e2016-02-18 22:20:01 +01001748
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001749 if (lcm->mreq_itr_rlocs == p[0])
Florin Corasa2157cf2016-08-16 21:09:14 +02001750 {
1751 clib_warning ("Can't delete the locator-set used to constrain "
1752 "the itr-rlocs in map-requests!");
1753 return -1;
1754 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001755
Florin Corasa2157cf2016-08-16 21:09:14 +02001756 if (vec_len (lcm->locator_set_to_eids) != 0)
1757 {
1758 eid_indexes = vec_elt_at_index (lcm->locator_set_to_eids, p[0]);
1759 if (vec_len (eid_indexes[0]) != 0)
1760 {
1761 clib_warning
1762 ("Can't delete a locator that supports a mapping!");
1763 return -1;
1764 }
1765 }
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02001766
1767 /* clean locator to locator-sets data */
1768 clean_locator_to_locator_set (lcm, p[0]);
1769
1770 if (ls->local)
Florin Corasa2157cf2016-08-16 21:09:14 +02001771 {
1772 u32 it, lsi;
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02001773
Florin Corasa2157cf2016-08-16 21:09:14 +02001774 vec_foreach_index (it, lcm->local_locator_set_indexes)
1775 {
1776 lsi = vec_elt (lcm->local_locator_set_indexes, it);
1777 if (lsi == p[0])
1778 {
1779 vec_del1 (lcm->local_locator_set_indexes, it);
1780 break;
1781 }
1782 }
1783 hash_unset_mem (lcm->locator_set_index_by_name, ls->name);
1784 }
1785 vec_free (ls->name);
1786 vec_free (ls->locator_indices);
1787 pool_put (lcm->locator_set_pool, ls);
Andrej Kozemcakb92feb62016-03-31 13:51:42 +02001788 }
1789 return 0;
1790}
1791
Filip Tehlar397fd7d2016-10-26 14:31:24 +02001792int
1793vnet_lisp_rloc_probe_enable_disable (u8 is_enable)
1794{
1795 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1796
1797 lcm->rloc_probing = is_enable;
1798 return 0;
1799}
1800
1801int
1802vnet_lisp_map_register_enable_disable (u8 is_enable)
1803{
1804 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1805
1806 lcm->map_registering = is_enable;
1807 return 0;
1808}
1809
Filip Tehlar46d4e362016-05-09 09:39:26 +02001810clib_error_t *
Florin Corasf727db92016-06-23 15:01:58 +02001811vnet_lisp_enable_disable (u8 is_enable)
Filip Tehlar46d4e362016-05-09 09:39:26 +02001812{
Florin Coras1a1adc72016-07-22 01:45:30 +02001813 u32 vni, dp_table;
Florin Corasa2157cf2016-08-16 21:09:14 +02001814 clib_error_t *error = 0;
1815 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1816 vnet_lisp_gpe_enable_disable_args_t _a, *a = &_a;
Filip Tehlar46d4e362016-05-09 09:39:26 +02001817
Florin Corasf727db92016-06-23 15:01:58 +02001818 a->is_en = is_enable;
Filip Tehlar46d4e362016-05-09 09:39:26 +02001819 error = vnet_lisp_gpe_enable_disable (a);
1820 if (error)
1821 {
1822 return clib_error_return (0, "failed to %s data-plane!",
Florin Corasa2157cf2016-08-16 21:09:14 +02001823 a->is_en ? "enable" : "disable");
Filip Tehlar46d4e362016-05-09 09:39:26 +02001824 }
1825
Florin Corasf727db92016-06-23 15:01:58 +02001826 if (is_enable)
Filip Tehlar46d4e362016-05-09 09:39:26 +02001827 {
Florin Coras1a1adc72016-07-22 01:45:30 +02001828 /* enable all l2 and l3 ifaces */
Florin Corasa2157cf2016-08-16 21:09:14 +02001829
1830 /* *INDENT-OFF* */
Florin Coras1a1adc72016-07-22 01:45:30 +02001831 hash_foreach(vni, dp_table, lcm->table_id_by_vni, ({
1832 dp_add_del_iface(lcm, vni, 0, 1);
1833 }));
Florin Coras1a1adc72016-07-22 01:45:30 +02001834 hash_foreach(vni, dp_table, lcm->bd_id_by_vni, ({
1835 dp_add_del_iface(lcm, vni, /* is_l2 */ 1, 1);
Florin Corasf727db92016-06-23 15:01:58 +02001836 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02001837 /* *INDENT-ON* */
Filip Tehlar46d4e362016-05-09 09:39:26 +02001838 }
1839 else
1840 {
Florin Corasf727db92016-06-23 15:01:58 +02001841 /* clear interface table */
Florin Corasa2157cf2016-08-16 21:09:14 +02001842 hash_free (lcm->fwd_entry_by_mapping_index);
1843 pool_free (lcm->fwd_entry_pool);
Filip Tehlar46d4e362016-05-09 09:39:26 +02001844 }
1845
1846 /* update global flag */
Florin Corasf727db92016-06-23 15:01:58 +02001847 lcm->is_enabled = is_enable;
Filip Tehlar46d4e362016-05-09 09:39:26 +02001848
1849 return 0;
1850}
1851
Filip Tehlar46d4e362016-05-09 09:39:26 +02001852u8
1853vnet_lisp_enable_disable_status (void)
1854{
Florin Corasa2157cf2016-08-16 21:09:14 +02001855 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar46d4e362016-05-09 09:39:26 +02001856 return lcm->is_enabled;
1857}
1858
Florin Corase127a7e2016-02-18 22:20:01 +01001859int
1860vnet_lisp_add_del_map_resolver (vnet_lisp_add_del_map_resolver_args_t * a)
1861{
Florin Corasa2157cf2016-08-16 21:09:14 +02001862 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Corase127a7e2016-02-18 22:20:01 +01001863 u32 i;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02001864 lisp_msmr_t _mr, *mr = &_mr;
Florin Corase127a7e2016-02-18 22:20:01 +01001865
Andrej Kozemcak8ebb2a12016-06-07 12:25:20 +02001866 if (vnet_lisp_enable_disable_status () == 0)
1867 {
1868 clib_warning ("LISP is disabled!");
1869 return VNET_API_ERROR_LISP_DISABLED;
1870 }
1871
Florin Corase127a7e2016-02-18 22:20:01 +01001872 if (a->is_add)
1873 {
Filip Tehlara5abdeb2016-07-18 17:35:40 +02001874
1875 if (get_map_resolver (&a->address))
Florin Corasa2157cf2016-08-16 21:09:14 +02001876 {
1877 clib_warning ("map-resolver %U already exists!", format_ip_address,
1878 &a->address);
1879 return -1;
1880 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02001881
1882 memset (mr, 0, sizeof (*mr));
Florin Corasa2157cf2016-08-16 21:09:14 +02001883 ip_address_copy (&mr->address, &a->address);
1884 vec_add1 (lcm->map_resolvers, *mr);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02001885
1886 if (vec_len (lcm->map_resolvers) == 1)
Florin Corasa2157cf2016-08-16 21:09:14 +02001887 lcm->do_map_resolver_election = 1;
Florin Corase127a7e2016-02-18 22:20:01 +01001888 }
1889 else
1890 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001891 for (i = 0; i < vec_len (lcm->map_resolvers); i++)
1892 {
1893 mr = vec_elt_at_index (lcm->map_resolvers, i);
1894 if (!ip_address_cmp (&mr->address, &a->address))
1895 {
1896 if (!ip_address_cmp (&mr->address, &lcm->active_map_resolver))
1897 lcm->do_map_resolver_election = 1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02001898
Florin Corasa2157cf2016-08-16 21:09:14 +02001899 vec_del1 (lcm->map_resolvers, i);
1900 break;
1901 }
1902 }
Florin Corase127a7e2016-02-18 22:20:01 +01001903 }
1904 return 0;
1905}
1906
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001907int
1908vnet_lisp_add_del_mreq_itr_rlocs (vnet_lisp_add_del_mreq_itr_rloc_args_t * a)
1909{
Florin Corasa2157cf2016-08-16 21:09:14 +02001910 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1911 uword *p = 0;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001912
Florin Corasf727db92016-06-23 15:01:58 +02001913 if (vnet_lisp_enable_disable_status () == 0)
1914 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001915 clib_warning ("LISP is disabled!");
Florin Corasf727db92016-06-23 15:01:58 +02001916 return VNET_API_ERROR_LISP_DISABLED;
1917 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001918
1919 if (a->is_add)
1920 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001921 p = hash_get_mem (lcm->locator_set_index_by_name, a->locator_set_name);
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001922 if (!p)
Florin Corasa2157cf2016-08-16 21:09:14 +02001923 {
1924 clib_warning ("locator-set %v doesn't exist", a->locator_set_name);
1925 return VNET_API_ERROR_INVALID_ARGUMENT;
1926 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02001927
1928 lcm->mreq_itr_rlocs = p[0];
1929 }
1930 else
1931 {
1932 lcm->mreq_itr_rlocs = ~0;
1933 }
1934
1935 return 0;
1936}
1937
Florin Corase127a7e2016-02-18 22:20:01 +01001938/* Statistics (not really errors) */
1939#define foreach_lisp_cp_lookup_error \
1940_(DROP, "drop") \
1941_(MAP_REQUESTS_SENT, "map-request sent")
1942
Florin Corasa2157cf2016-08-16 21:09:14 +02001943static char *lisp_cp_lookup_error_strings[] = {
Florin Corase127a7e2016-02-18 22:20:01 +01001944#define _(sym,string) string,
1945 foreach_lisp_cp_lookup_error
1946#undef _
1947};
1948
1949typedef enum
1950{
1951#define _(sym,str) LISP_CP_LOOKUP_ERROR_##sym,
Florin Corasa2157cf2016-08-16 21:09:14 +02001952 foreach_lisp_cp_lookup_error
Florin Corase127a7e2016-02-18 22:20:01 +01001953#undef _
1954 LISP_CP_LOOKUP_N_ERROR,
1955} lisp_cp_lookup_error_t;
1956
1957typedef enum
1958{
1959 LISP_CP_LOOKUP_NEXT_DROP,
Florin Corase127a7e2016-02-18 22:20:01 +01001960 LISP_CP_LOOKUP_N_NEXT,
1961} lisp_cp_lookup_next_t;
1962
1963typedef struct
1964{
1965 gid_address_t dst_eid;
Andrej Kozemcak94e34762016-05-25 12:43:21 +02001966 ip_address_t map_resolver_ip;
Florin Corase127a7e2016-02-18 22:20:01 +01001967} lisp_cp_lookup_trace_t;
1968
1969u8 *
1970format_lisp_cp_lookup_trace (u8 * s, va_list * args)
1971{
1972 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
1973 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Corasa2157cf2016-08-16 21:09:14 +02001974 lisp_cp_lookup_trace_t *t = va_arg (*args, lisp_cp_lookup_trace_t *);
Florin Corase127a7e2016-02-18 22:20:01 +01001975
1976 s = format (s, "LISP-CP-LOOKUP: map-resolver: %U destination eid %U",
Florin Corasa2157cf2016-08-16 21:09:14 +02001977 format_ip_address, &t->map_resolver_ip, format_gid_address,
1978 &t->dst_eid);
Florin Corase127a7e2016-02-18 22:20:01 +01001979 return s;
1980}
1981
Florin Coras1c494842016-06-16 21:08:56 +02001982int
1983get_mr_and_local_iface_ip (lisp_cp_main_t * lcm, ip_address_t * mr_ip,
Florin Corasa2157cf2016-08-16 21:09:14 +02001984 ip_address_t * sloc)
Florin Corasc2c90082016-06-13 18:37:15 +02001985{
Filip Tehlar397fd7d2016-10-26 14:31:24 +02001986 lisp_msmr_t *mrit;
Florin Corasa2157cf2016-08-16 21:09:14 +02001987 ip_address_t *a;
Florin Corase127a7e2016-02-18 22:20:01 +01001988
Florin Corasa2157cf2016-08-16 21:09:14 +02001989 if (vec_len (lcm->map_resolvers) == 0)
Florin Corase127a7e2016-02-18 22:20:01 +01001990 {
Florin Corasa2157cf2016-08-16 21:09:14 +02001991 clib_warning ("No map-resolver configured");
Florin Coras1c494842016-06-16 21:08:56 +02001992 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01001993 }
1994
Florin Corasddfafb82016-05-13 18:09:56 +02001995 /* find the first mr ip we have a route to and the ip of the
1996 * iface that has a route to it */
Florin Corasa2157cf2016-08-16 21:09:14 +02001997 vec_foreach (mrit, lcm->map_resolvers)
1998 {
1999 a = &mrit->address;
2000 if (0 != ip_fib_get_first_egress_ip_for_dst (lcm, a, sloc))
2001 {
2002 ip_address_copy (mr_ip, a);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002003
Florin Corasa2157cf2016-08-16 21:09:14 +02002004 /* also update globals */
2005 return 1;
2006 }
2007 }
Florin Corasddfafb82016-05-13 18:09:56 +02002008
Florin Corasa2157cf2016-08-16 21:09:14 +02002009 clib_warning ("Can't find map-resolver and local interface ip!");
Florin Coras1c494842016-06-16 21:08:56 +02002010 return 0;
Florin Corasddfafb82016-05-13 18:09:56 +02002011}
Filip Tehlar254b0362016-04-07 10:04:34 +02002012
Filip Tehlarbeceab92016-04-20 17:21:55 +02002013static gid_address_t *
Filip Tehlar254b0362016-04-07 10:04:34 +02002014build_itr_rloc_list (lisp_cp_main_t * lcm, locator_set_t * loc_set)
2015{
Florin Corasa2157cf2016-08-16 21:09:14 +02002016 void *addr;
Filip Tehlar254b0362016-04-07 10:04:34 +02002017 u32 i;
Florin Corasa2157cf2016-08-16 21:09:14 +02002018 locator_t *loc;
2019 u32 *loc_indexp;
2020 ip_interface_address_t *ia = 0;
2021 gid_address_t gid_data, *gid = &gid_data;
2022 gid_address_t *rlocs = 0;
2023 ip_prefix_t *ippref = &gid_address_ippref (gid);
2024 ip_address_t *rloc = &ip_prefix_addr (ippref);
Filip Tehlar254b0362016-04-07 10:04:34 +02002025
Filip Tehlar324112f2016-06-02 16:07:38 +02002026 memset (gid, 0, sizeof (gid[0]));
Filip Tehlarbeceab92016-04-20 17:21:55 +02002027 gid_address_type (gid) = GID_ADDR_IP_PREFIX;
Florin Corasa2157cf2016-08-16 21:09:14 +02002028 for (i = 0; i < vec_len (loc_set->locator_indices); i++)
Filip Tehlar254b0362016-04-07 10:04:34 +02002029 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002030 loc_indexp = vec_elt_at_index (loc_set->locator_indices, i);
Filip Tehlar254b0362016-04-07 10:04:34 +02002031 loc = pool_elt_at_index (lcm->locator_pool, loc_indexp[0]);
2032
Filip Tehlar254b0362016-04-07 10:04:34 +02002033 /* Add ipv4 locators first TODO sort them */
Florin Corasa2157cf2016-08-16 21:09:14 +02002034
2035 /* *INDENT-OFF* */
Filip Tehlar254b0362016-04-07 10:04:34 +02002036 foreach_ip_interface_address (&lcm->im4->lookup_main, ia,
2037 loc->sw_if_index, 1 /* unnumbered */,
2038 ({
Florin Coras1c494842016-06-16 21:08:56 +02002039 addr = ip_interface_address_get_address (&lcm->im4->lookup_main, ia);
2040 ip_address_set (rloc, addr, IP4);
Florin Corasddfafb82016-05-13 18:09:56 +02002041 ip_prefix_len (ippref) = 32;
Andrej Kozemcak438109d2016-07-22 12:54:12 +02002042 ip_prefix_normalize (ippref);
Filip Tehlarbeceab92016-04-20 17:21:55 +02002043 vec_add1 (rlocs, gid[0]);
Filip Tehlar254b0362016-04-07 10:04:34 +02002044 }));
2045
Filip Tehlar254b0362016-04-07 10:04:34 +02002046 /* Add ipv6 locators */
2047 foreach_ip_interface_address (&lcm->im6->lookup_main, ia,
2048 loc->sw_if_index, 1 /* unnumbered */,
2049 ({
Florin Coras1c494842016-06-16 21:08:56 +02002050 addr = ip_interface_address_get_address (&lcm->im6->lookup_main, ia);
2051 ip_address_set (rloc, addr, IP6);
Florin Corasddfafb82016-05-13 18:09:56 +02002052 ip_prefix_len (ippref) = 128;
Andrej Kozemcak438109d2016-07-22 12:54:12 +02002053 ip_prefix_normalize (ippref);
Filip Tehlarbeceab92016-04-20 17:21:55 +02002054 vec_add1 (rlocs, gid[0]);
Filip Tehlar254b0362016-04-07 10:04:34 +02002055 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02002056 /* *INDENT-ON* */
2057
Filip Tehlar254b0362016-04-07 10:04:34 +02002058 }
2059 return rlocs;
2060}
2061
Florin Corase127a7e2016-02-18 22:20:01 +01002062static vlib_buffer_t *
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002063build_map_request (lisp_cp_main_t * lcm, gid_address_t * deid,
2064 ip_address_t * sloc, ip_address_t * rloc,
2065 gid_address_t * itr_rlocs, u64 * nonce_res, u32 * bi_res)
2066{
2067 vlib_buffer_t *b;
2068 u32 bi;
2069 vlib_main_t *vm = lcm->vlib_main;
2070
2071 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2072 {
2073 clib_warning ("Can't allocate buffer for Map-Request!");
2074 return 0;
2075 }
2076
2077 b = vlib_get_buffer (vm, bi);
2078
2079 /* leave some space for the encap headers */
2080 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2081
2082 /* put lisp msg */
2083 lisp_msg_put_mreq (lcm, b, NULL, deid, itr_rlocs, 0 /* smr invoked */ ,
2084 1 /* rloc probe */ , nonce_res);
2085
2086 /* push outer ip header */
2087 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
2088 rloc);
2089
2090 bi_res[0] = bi;
2091
2092 return b;
2093}
2094
2095static vlib_buffer_t *
Florin Corasa2157cf2016-08-16 21:09:14 +02002096build_encapsulated_map_request (lisp_cp_main_t * lcm,
2097 gid_address_t * seid, gid_address_t * deid,
2098 locator_set_t * loc_set, ip_address_t * mr_ip,
2099 ip_address_t * sloc, u8 is_smr_invoked,
2100 u64 * nonce_res, u32 * bi_res)
Florin Corase127a7e2016-02-18 22:20:01 +01002101{
Florin Corasa2157cf2016-08-16 21:09:14 +02002102 vlib_buffer_t *b;
Florin Corase127a7e2016-02-18 22:20:01 +01002103 u32 bi;
Florin Corasa2157cf2016-08-16 21:09:14 +02002104 gid_address_t *rlocs = 0;
2105 vlib_main_t *vm = lcm->vlib_main;
Florin Corase127a7e2016-02-18 22:20:01 +01002106
2107 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2108 {
2109 clib_warning ("Can't allocate buffer for Map-Request!");
2110 return 0;
2111 }
2112
2113 b = vlib_get_buffer (vm, bi);
2114
2115 /* leave some space for the encap headers */
2116 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2117
Filip Tehlar254b0362016-04-07 10:04:34 +02002118 /* get rlocs */
2119 rlocs = build_itr_rloc_list (lcm, loc_set);
2120
Filip Tehlard5fcc462016-10-17 16:20:18 +02002121 if (MR_MODE_SRC_DST == lcm->map_request_mode
2122 && GID_ADDR_SRC_DST != gid_address_type (deid))
Florin Corasdca88042016-09-14 16:01:38 +02002123 {
2124 gid_address_t sd;
2125 memset (&sd, 0, sizeof (sd));
2126 build_src_dst (&sd, seid, deid);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002127 lisp_msg_put_mreq (lcm, b, seid, &sd, rlocs, is_smr_invoked,
2128 0 /* rloc probe */ , nonce_res);
Florin Corasdca88042016-09-14 16:01:38 +02002129 }
2130 else
2131 {
2132 /* put lisp msg */
2133 lisp_msg_put_mreq (lcm, b, seid, deid, rlocs, is_smr_invoked,
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002134 0 /* rloc probe */ , nonce_res);
Florin Corasdca88042016-09-14 16:01:38 +02002135 }
Florin Corase127a7e2016-02-18 22:20:01 +01002136
2137 /* push ecm: udp-ip-lisp */
2138 lisp_msg_push_ecm (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, seid, deid);
2139
Florin Corase127a7e2016-02-18 22:20:01 +01002140 /* push outer ip header */
Florin Corasddfafb82016-05-13 18:09:56 +02002141 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
Florin Corasa2157cf2016-08-16 21:09:14 +02002142 mr_ip);
Florin Corase127a7e2016-02-18 22:20:01 +01002143
2144 bi_res[0] = bi;
Filip Tehlar254b0362016-04-07 10:04:34 +02002145
Florin Corasa2157cf2016-08-16 21:09:14 +02002146 vec_free (rlocs);
Florin Corase127a7e2016-02-18 22:20:01 +01002147 return b;
2148}
2149
2150static void
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002151reset_pending_mr_counters (pending_map_request_t * r)
Florin Corase127a7e2016-02-18 22:20:01 +01002152{
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002153 r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME;
2154 r->retries_num = 0;
2155}
2156
2157static int
2158elect_map_resolver (lisp_cp_main_t * lcm)
2159{
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002160 lisp_msmr_t *mr;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002161
2162 vec_foreach (mr, lcm->map_resolvers)
Florin Corasa2157cf2016-08-16 21:09:14 +02002163 {
2164 if (!mr->is_down)
2165 {
2166 ip_address_copy (&lcm->active_map_resolver, &mr->address);
2167 lcm->do_map_resolver_election = 0;
2168 return 1;
2169 }
2170 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002171 return 0;
2172}
2173
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002174static void
2175free_map_register_records (mapping_t * maps)
2176{
2177 mapping_t *map;
2178 vec_foreach (map, maps) vec_free (map->locators);
2179
2180 vec_free (maps);
2181}
2182
2183static void
2184add_locators (lisp_cp_main_t * lcm, mapping_t * m, u32 locator_set_index,
2185 ip_address_t * probed_loc)
2186{
2187 u32 *li;
2188 locator_t *loc, new;
2189 ip_interface_address_t *ia = 0;
2190 void *addr;
2191 ip_address_t *new_ip = &gid_address_ip (&new.address);
2192
2193 m->locators = 0;
2194 locator_set_t *ls = pool_elt_at_index (lcm->locator_set_pool,
2195 locator_set_index);
2196 vec_foreach (li, ls->locator_indices)
2197 {
2198 loc = pool_elt_at_index (lcm->locator_pool, li[0]);
2199 new = loc[0];
2200 if (loc->local)
2201 {
2202 /* *INDENT-OFF* */
2203 foreach_ip_interface_address (&lcm->im4->lookup_main, ia,
2204 loc->sw_if_index, 1 /* unnumbered */,
2205 ({
2206 addr = ip_interface_address_get_address (&lcm->im4->lookup_main,
2207 ia);
2208 ip_address_set (new_ip, addr, IP4);
2209 }));
2210
2211 /* Add ipv6 locators */
2212 foreach_ip_interface_address (&lcm->im6->lookup_main, ia,
2213 loc->sw_if_index, 1 /* unnumbered */,
2214 ({
2215 addr = ip_interface_address_get_address (&lcm->im6->lookup_main,
2216 ia);
2217 ip_address_set (new_ip, addr, IP6);
2218 }));
2219 /* *INDENT-ON* */
2220
2221 if (probed_loc && ip_address_cmp (probed_loc, new_ip) == 0)
2222 new.probed = 1;
2223 }
2224 vec_add1 (m->locators, new);
2225 }
2226}
2227
2228static mapping_t *
2229build_map_register_record_list (lisp_cp_main_t * lcm)
2230{
2231 mapping_t *recs = 0, rec, *m;
2232
2233 /* *INDENT-OFF* */
2234 pool_foreach(m, lcm->mapping_pool,
2235 {
2236 /* for now build only local mappings */
2237 if (!m->local)
2238 continue;
2239
2240 rec = m[0];
2241 add_locators (lcm, &rec, m->locator_set_index, NULL);
2242 vec_add1 (recs, rec);
2243 });
2244 /* *INDENT-ON* */
2245
2246 return recs;
2247}
2248
2249static int
2250update_map_register_auth_data (map_register_hdr_t * map_reg_hdr,
2251 lisp_key_type_t key_id, u8 * key,
2252 u16 auth_data_len, u32 msg_len)
2253{
2254 MREG_KEY_ID (map_reg_hdr) = clib_host_to_net_u16 (key_id);
2255 MREG_AUTH_DATA_LEN (map_reg_hdr) = clib_host_to_net_u16 (auth_data_len);
2256
2257 unsigned char *result = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
2258 (unsigned char *) map_reg_hdr, msg_len, NULL,
2259 NULL);
2260 clib_memcpy (MREG_DATA (map_reg_hdr), result, auth_data_len);
2261
2262 return 0;
2263}
2264
2265static vlib_buffer_t *
2266build_map_register (lisp_cp_main_t * lcm, ip_address_t * sloc,
2267 ip_address_t * ms_ip, u64 * nonce_res, u8 want_map_notif,
2268 mapping_t * records, lisp_key_type_t key_id, u8 * key,
2269 u32 * bi_res)
2270{
2271 void *map_reg_hdr;
2272 vlib_buffer_t *b;
2273 u32 bi, auth_data_len = 0, msg_len = 0;
2274 vlib_main_t *vm = lcm->vlib_main;
2275
2276 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
2277 {
2278 clib_warning ("Can't allocate buffer for Map-Register!");
2279 return 0;
2280 }
2281
2282 b = vlib_get_buffer (vm, bi);
2283
2284 /* leave some space for the encap headers */
2285 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
2286
2287 auth_data_len = auth_data_len_by_key_id (key_id);
2288 map_reg_hdr = lisp_msg_put_map_register (b, records, want_map_notif,
2289 auth_data_len, nonce_res,
2290 &msg_len);
2291
2292 update_map_register_auth_data (map_reg_hdr, key_id, key, auth_data_len,
2293 msg_len);
2294
2295 /* push outer ip header */
2296 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, LISP_CONTROL_PORT, sloc,
2297 ms_ip);
2298
2299 bi_res[0] = bi;
2300 return b;
2301}
2302
2303static int
2304get_egress_map_resolver_ip (lisp_cp_main_t * lcm, ip_address_t * ip)
2305{
2306 lisp_msmr_t *mr;
2307 while (lcm->do_map_resolver_election
2308 | (0 == ip_fib_get_first_egress_ip_for_dst (lcm,
2309 &lcm->active_map_resolver,
2310 ip)))
2311 {
2312 if (0 == elect_map_resolver (lcm))
2313 /* all map resolvers are down */
2314 {
2315 /* restart MR checking by marking all of them up */
2316 vec_foreach (mr, lcm->map_resolvers) mr->is_down = 0;
2317 return -1;
2318 }
2319 }
2320 return 0;
2321}
2322
Filip Tehlarcda70662017-01-16 10:30:03 +01002323/* CP output statistics */
2324#define foreach_lisp_cp_output_error \
2325_(MAP_REGISTERS_SENT, "map-registers sent") \
2326_(RLOC_PROBES_SENT, "rloc-probes sent")
2327
2328static char *lisp_cp_output_error_strings[] = {
2329#define _(sym,string) string,
2330 foreach_lisp_cp_output_error
2331#undef _
2332};
2333
2334typedef enum
2335{
2336#define _(sym,str) LISP_CP_OUTPUT_ERROR_##sym,
2337 foreach_lisp_cp_output_error
2338#undef _
2339 LISP_CP_OUTPUT_N_ERROR,
2340} lisp_cp_output_error_t;
2341
2342static uword
2343lisp_cp_output (vlib_main_t * vm, vlib_node_runtime_t * node,
2344 vlib_frame_t * from_frame)
2345{
2346 return 0;
2347}
2348
2349/* dummy node used only for statistics */
2350/* *INDENT-OFF* */
2351VLIB_REGISTER_NODE (lisp_cp_output_node) = {
2352 .function = lisp_cp_output,
2353 .name = "lisp-cp-output",
2354 .vector_size = sizeof (u32),
2355 .format_trace = format_lisp_cp_input_trace,
2356 .type = VLIB_NODE_TYPE_INTERNAL,
2357
2358 .n_errors = LISP_CP_OUTPUT_N_ERROR,
2359 .error_strings = lisp_cp_output_error_strings,
2360
2361 .n_next_nodes = LISP_CP_INPUT_N_NEXT,
2362
2363 .next_nodes = {
2364 [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
2365 },
2366};
2367/* *INDENT-ON* */
2368
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002369static int
2370send_rloc_probe (lisp_cp_main_t * lcm, gid_address_t * deid,
2371 u32 local_locator_set_index, ip_address_t * sloc,
2372 ip_address_t * rloc)
2373{
2374 locator_set_t *ls;
2375 u32 bi;
2376 vlib_buffer_t *b;
2377 vlib_frame_t *f;
2378 u64 nonce = 0;
2379 u32 next_index, *to_next;
2380 gid_address_t *itr_rlocs;
2381
2382 ls = pool_elt_at_index (lcm->locator_set_pool, local_locator_set_index);
2383 itr_rlocs = build_itr_rloc_list (lcm, ls);
2384
2385 b = build_map_request (lcm, deid, sloc, rloc, itr_rlocs, &nonce, &bi);
2386 vec_free (itr_rlocs);
2387 if (!b)
2388 return -1;
2389
2390 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2391
Filip Tehlar272c69e2017-02-15 16:40:35 +01002392 next_index = (ip_addr_version (rloc) == IP4) ?
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002393 ip4_lookup_node.index : ip6_lookup_node.index;
2394
2395 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
2396
2397 /* Enqueue the packet */
2398 to_next = vlib_frame_vector_args (f);
2399 to_next[0] = bi;
2400 f->n_vectors = 1;
2401 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
2402
2403 hash_set (lcm->map_register_messages_by_nonce, nonce, 0);
2404 return 0;
2405}
2406
2407static int
2408send_rloc_probes (lisp_cp_main_t * lcm)
2409{
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002410 u8 lprio = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002411 mapping_t *lm;
2412 fwd_entry_t *e;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002413 locator_pair_t *lp;
Filip Tehlarcda70662017-01-16 10:30:03 +01002414 u32 si, rloc_probes_sent = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002415
2416 /* *INDENT-OFF* */
2417 pool_foreach (e, lcm->fwd_entry_pool,
2418 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002419 if (vec_len (e->locator_pairs) == 0)
2420 continue;
2421
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002422 si = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &e->leid);
2423 if (~0 == si)
2424 {
2425 clib_warning ("internal error: cannot find local eid %U in "
2426 "map-cache!", format_gid_address, &e->leid);
2427 continue;
2428 }
2429 lm = pool_elt_at_index (lcm->mapping_pool, si);
2430
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002431 /* get the best (lowest) priority */
2432 lprio = e->locator_pairs[0].priority;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002433
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002434 /* send rloc-probe for pair(s) with the best remote locator priority */
2435 vec_foreach (lp, e->locator_pairs)
2436 {
2437 if (lp->priority != lprio)
2438 break;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002439
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002440 /* get first remote locator */
2441 send_rloc_probe (lcm, &e->reid, lm->locator_set_index, &lp->lcl_loc,
2442 &lp->rmt_loc);
Filip Tehlarcda70662017-01-16 10:30:03 +01002443 rloc_probes_sent++;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002444 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002445 });
2446 /* *INDENT-ON* */
2447
Filip Tehlarcda70662017-01-16 10:30:03 +01002448 vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index,
2449 LISP_CP_OUTPUT_ERROR_RLOC_PROBES_SENT,
2450 rloc_probes_sent);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002451 return 0;
2452}
2453
2454static int
2455send_map_register (lisp_cp_main_t * lcm, u8 want_map_notif)
2456{
Filip Tehlarcda70662017-01-16 10:30:03 +01002457 u32 bi, map_registers_sent = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002458 vlib_buffer_t *b;
2459 ip_address_t sloc;
2460 vlib_frame_t *f;
2461 u64 nonce = 0;
2462 u32 next_index, *to_next;
2463 ip_address_t *ms = 0;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002464 mapping_t *records, *r, *g;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002465
2466 // TODO: support multiple map servers and do election
2467 if (0 == vec_len (lcm->map_servers))
2468 return -1;
2469
2470 ms = &lcm->map_servers[0].address;
2471
2472 if (0 == ip_fib_get_first_egress_ip_for_dst (lcm, ms, &sloc))
2473 {
2474 clib_warning ("no eligible interface address found for %U!",
2475 format_ip_address, &lcm->map_servers[0]);
2476 return -1;
2477 }
2478
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002479 records = build_map_register_record_list (lcm);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002480 if (!records)
2481 return -1;
2482
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002483 vec_foreach (r, records)
2484 {
2485 u8 *key = r->key;
2486 u8 key_id = r->key_id;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002487
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002488 if (!key)
2489 continue; /* no secret key -> map-register cannot be sent */
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002490
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002491 g = 0;
2492 // TODO: group mappings that share common key
2493 vec_add1 (g, r[0]);
2494 b = build_map_register (lcm, &sloc, ms, &nonce, want_map_notif, g,
2495 key_id, key, &bi);
2496 vec_free (g);
2497 if (!b)
2498 continue;
2499
2500 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2501
2502 next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
2503 ip4_lookup_node.index : ip6_lookup_node.index;
2504
2505 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
2506
2507 /* Enqueue the packet */
2508 to_next = vlib_frame_vector_args (f);
2509 to_next[0] = bi;
2510 f->n_vectors = 1;
2511 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
Filip Tehlarcda70662017-01-16 10:30:03 +01002512 map_registers_sent++;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01002513
2514 hash_set (lcm->map_register_messages_by_nonce, nonce, 0);
2515 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002516 free_map_register_records (records);
2517
Filip Tehlarcda70662017-01-16 10:30:03 +01002518 vlib_node_increment_counter (vlib_get_main (), lisp_cp_output_node.index,
2519 LISP_CP_OUTPUT_ERROR_MAP_REGISTERS_SENT,
2520 map_registers_sent);
2521
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002522 return 0;
2523}
2524
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002525#define send_encapsulated_map_request(lcm, seid, deid, smr) \
2526 _send_encapsulated_map_request(lcm, seid, deid, smr, 0)
2527
2528#define resend_encapsulated_map_request(lcm, seid, deid, smr) \
2529 _send_encapsulated_map_request(lcm, seid, deid, smr, 1)
2530
2531static int
Florin Corasa2157cf2016-08-16 21:09:14 +02002532_send_encapsulated_map_request (lisp_cp_main_t * lcm,
2533 gid_address_t * seid, gid_address_t * deid,
2534 u8 is_smr_invoked, u8 is_resend)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002535{
Florin Corasa2157cf2016-08-16 21:09:14 +02002536 u32 next_index, bi = 0, *to_next, map_index;
2537 vlib_buffer_t *b;
2538 vlib_frame_t *f;
Florin Corase127a7e2016-02-18 22:20:01 +01002539 u64 nonce = 0;
Florin Corasa2157cf2016-08-16 21:09:14 +02002540 locator_set_t *loc_set;
2541 mapping_t *map;
2542 pending_map_request_t *pmr, *duplicate_pmr = 0;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002543 ip_address_t sloc;
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002544 u32 ls_index;
Florin Corase127a7e2016-02-18 22:20:01 +01002545
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002546 /* if there is already a pending request remember it */
Florin Corasa2157cf2016-08-16 21:09:14 +02002547
2548 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002549 pool_foreach(pmr, lcm->pending_map_requests_pool,
2550 ({
2551 if (!gid_address_cmp (&pmr->src, seid)
2552 && !gid_address_cmp (&pmr->dst, deid))
2553 {
2554 duplicate_pmr = pmr;
2555 break;
2556 }
2557 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02002558 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002559
2560 if (!is_resend && duplicate_pmr)
2561 {
2562 /* don't send the request if there is a pending map request already */
2563 return 0;
2564 }
2565
Florin Corase127a7e2016-02-18 22:20:01 +01002566 /* get locator-set for seid */
Filip Tehlar53f09e32016-05-19 14:25:44 +02002567 if (!lcm->lisp_pitr)
Florin Corase127a7e2016-02-18 22:20:01 +01002568 {
Filip Tehlar53f09e32016-05-19 14:25:44 +02002569 map_index = gid_dictionary_lookup (&lcm->mapping_index_by_gid, seid);
2570 if (map_index == ~0)
Florin Corasa2157cf2016-08-16 21:09:14 +02002571 {
2572 clib_warning ("No local mapping found in eid-table for %U!",
2573 format_gid_address, seid);
2574 return -1;
2575 }
Filip Tehlar53f09e32016-05-19 14:25:44 +02002576
2577 map = pool_elt_at_index (lcm->mapping_pool, map_index);
2578
2579 if (!map->local)
Florin Corasa2157cf2016-08-16 21:09:14 +02002580 {
2581 clib_warning
2582 ("Mapping found for src eid %U is not marked as local!",
2583 format_gid_address, seid);
2584 return -1;
2585 }
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002586 ls_index = map->locator_set_index;
Filip Tehlar53f09e32016-05-19 14:25:44 +02002587 }
2588 else
2589 {
2590 map_index = lcm->pitr_map_index;
2591 map = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002592 ls_index = map->locator_set_index;
Florin Corase127a7e2016-02-18 22:20:01 +01002593 }
2594
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02002595 /* overwrite locator set if map-request itr-rlocs configured */
2596 if (~0 != lcm->mreq_itr_rlocs)
2597 {
2598 ls_index = lcm->mreq_itr_rlocs;
2599 }
2600
2601 loc_set = pool_elt_at_index (lcm->locator_set_pool, ls_index);
Florin Corase127a7e2016-02-18 22:20:01 +01002602
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002603 if (get_egress_map_resolver_ip (lcm, &sloc) < 0)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002604 {
Filip Tehlar397fd7d2016-10-26 14:31:24 +02002605 if (duplicate_pmr)
2606 duplicate_pmr->to_be_removed = 1;
2607 return -1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002608 }
Florin Corasddfafb82016-05-13 18:09:56 +02002609
Florin Corase127a7e2016-02-18 22:20:01 +01002610 /* build the encapsulated map request */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002611 b = build_encapsulated_map_request (lcm, seid, deid, loc_set,
Florin Corasa2157cf2016-08-16 21:09:14 +02002612 &lcm->active_map_resolver,
2613 &sloc, is_smr_invoked, &nonce, &bi);
Florin Corase127a7e2016-02-18 22:20:01 +01002614
2615 if (!b)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002616 return -1;
Florin Corase127a7e2016-02-18 22:20:01 +01002617
Florin Corasf727db92016-06-23 15:01:58 +02002618 /* set fib index to default and lookup node */
Florin Corasa2157cf2016-08-16 21:09:14 +02002619 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
2620 next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
2621 ip4_lookup_node.index : ip6_lookup_node.index;
Florin Corase127a7e2016-02-18 22:20:01 +01002622
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002623 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
Florin Corase127a7e2016-02-18 22:20:01 +01002624
2625 /* Enqueue the packet */
2626 to_next = vlib_frame_vector_args (f);
2627 to_next[0] = bi;
2628 f->n_vectors = 1;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002629 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
Florin Corase127a7e2016-02-18 22:20:01 +01002630
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002631 if (duplicate_pmr)
2632 /* if there is a pending request already update it */
2633 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002634 if (clib_fifo_elts (duplicate_pmr->nonces) >= PENDING_MREQ_QUEUE_LEN)
2635 {
2636 /* remove the oldest nonce */
2637 u64 CLIB_UNUSED (tmp), *nonce_del;
2638 nonce_del = clib_fifo_head (duplicate_pmr->nonces);
2639 hash_unset (lcm->pending_map_requests_by_nonce, nonce_del[0]);
2640 clib_fifo_sub1 (duplicate_pmr->nonces, tmp);
2641 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002642
Florin Corasf4691cd2016-08-15 19:16:32 +02002643 clib_fifo_add1 (duplicate_pmr->nonces, nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002644 hash_set (lcm->pending_map_requests_by_nonce, nonce,
Florin Corasa2157cf2016-08-16 21:09:14 +02002645 duplicate_pmr - lcm->pending_map_requests_pool);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002646 }
2647 else
2648 {
2649 /* add map-request to pending requests table */
Florin Corasa2157cf2016-08-16 21:09:14 +02002650 pool_get (lcm->pending_map_requests_pool, pmr);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002651 memset (pmr, 0, sizeof (*pmr));
2652 gid_address_copy (&pmr->src, seid);
2653 gid_address_copy (&pmr->dst, deid);
Florin Corasf4691cd2016-08-15 19:16:32 +02002654 clib_fifo_add1 (pmr->nonces, nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002655 pmr->is_smr_invoked = is_smr_invoked;
2656 reset_pending_mr_counters (pmr);
2657 hash_set (lcm->pending_map_requests_by_nonce, nonce,
Florin Corasa2157cf2016-08-16 21:09:14 +02002658 pmr - lcm->pending_map_requests_pool);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002659 }
2660
2661 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01002662}
2663
2664static void
Florin Corasa2157cf2016-08-16 21:09:14 +02002665get_src_and_dst_ip (void *hdr, ip_address_t * src, ip_address_t * dst)
Florin Corase127a7e2016-02-18 22:20:01 +01002666{
Florin Corasa2157cf2016-08-16 21:09:14 +02002667 ip4_header_t *ip4 = hdr;
2668 ip6_header_t *ip6;
Florin Corase127a7e2016-02-18 22:20:01 +01002669
2670 if ((ip4->ip_version_and_header_length & 0xF0) == 0x40)
2671 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002672 ip_address_set (src, &ip4->src_address, IP4);
2673 ip_address_set (dst, &ip4->dst_address, IP4);
Florin Corase127a7e2016-02-18 22:20:01 +01002674 }
2675 else
2676 {
2677 ip6 = hdr;
Florin Corasa2157cf2016-08-16 21:09:14 +02002678 ip_address_set (src, &ip6->src_address, IP6);
2679 ip_address_set (dst, &ip6->dst_address, IP6);
Florin Corase127a7e2016-02-18 22:20:01 +01002680 }
2681}
2682
Filip Tehlar324112f2016-06-02 16:07:38 +02002683static u32
Florin Coras1a1adc72016-07-22 01:45:30 +02002684lisp_get_vni_from_buffer_ip (lisp_cp_main_t * lcm, vlib_buffer_t * b,
Florin Corasa2157cf2016-08-16 21:09:14 +02002685 u8 version)
Filip Tehlar324112f2016-06-02 16:07:38 +02002686{
Florin Corasa2157cf2016-08-16 21:09:14 +02002687 uword *vnip;
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002688 u32 vni = ~0, table_id = ~0;
Filip Tehlar324112f2016-06-02 16:07:38 +02002689
Florin Coras87e40692016-09-22 18:02:17 +02002690 table_id = fib_table_get_table_id_for_sw_if_index ((version ==
2691 IP4 ? FIB_PROTOCOL_IP4 :
2692 FIB_PROTOCOL_IP6),
2693 vnet_buffer
2694 (b)->sw_if_index
2695 [VLIB_RX]);
Filip Tehlar324112f2016-06-02 16:07:38 +02002696
2697 vnip = hash_get (lcm->vni_by_table_id, table_id);
2698 if (vnip)
2699 vni = vnip[0];
2700 else
2701 clib_warning ("vrf %d is not mapped to any vni!", table_id);
2702
2703 return vni;
2704}
2705
Florin Coras1a1adc72016-07-22 01:45:30 +02002706always_inline u32
2707lisp_get_vni_from_buffer_eth (lisp_cp_main_t * lcm, vlib_buffer_t * b)
2708{
Florin Corasa2157cf2016-08-16 21:09:14 +02002709 uword *vnip;
Florin Coras1a1adc72016-07-22 01:45:30 +02002710 u32 vni = ~0;
2711 u32 sw_if_index0;
2712
Florin Corasa2157cf2016-08-16 21:09:14 +02002713 l2input_main_t *l2im = &l2input_main;
2714 l2_input_config_t *config;
2715 l2_bridge_domain_t *bd_config;
Florin Coras1a1adc72016-07-22 01:45:30 +02002716
Florin Corasa2157cf2016-08-16 21:09:14 +02002717 sw_if_index0 = vnet_buffer (b)->sw_if_index[VLIB_RX];
2718 config = vec_elt_at_index (l2im->configs, sw_if_index0);
Florin Coras1a1adc72016-07-22 01:45:30 +02002719 bd_config = vec_elt_at_index (l2im->bd_configs, config->bd_index);
2720
2721 vnip = hash_get (lcm->vni_by_bd_id, bd_config->bd_id);
2722 if (vnip)
2723 vni = vnip[0];
2724 else
Florin Corasa2157cf2016-08-16 21:09:14 +02002725 clib_warning ("bridge domain %d is not mapped to any vni!",
2726 config->bd_index);
Florin Coras1a1adc72016-07-22 01:45:30 +02002727
2728 return vni;
2729}
2730
Filip Tehlar4868ff62017-03-09 16:48:39 +01002731void
Florin Corasa2157cf2016-08-16 21:09:14 +02002732get_src_and_dst_eids_from_buffer (lisp_cp_main_t * lcm, vlib_buffer_t * b,
Filip Tehlar4868ff62017-03-09 16:48:39 +01002733 gid_address_t * src, gid_address_t * dst,
2734 u16 type)
Florin Coras1a1adc72016-07-22 01:45:30 +02002735{
2736 u32 vni = 0;
Florin Coras1a1adc72016-07-22 01:45:30 +02002737
Filip Tehlara5abdeb2016-07-18 17:35:40 +02002738 memset (src, 0, sizeof (*src));
2739 memset (dst, 0, sizeof (*dst));
Florin Coras1a1adc72016-07-22 01:45:30 +02002740
2741 if (LISP_AFI_IP == type || LISP_AFI_IP6 == type)
2742 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002743 ip4_header_t *ip;
Florin Coras1a1adc72016-07-22 01:45:30 +02002744 u8 version, preflen;
2745
Florin Corasa2157cf2016-08-16 21:09:14 +02002746 gid_address_type (src) = GID_ADDR_IP_PREFIX;
2747 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
Florin Coras1a1adc72016-07-22 01:45:30 +02002748
2749 ip = vlib_buffer_get_current (b);
Florin Corasa2157cf2016-08-16 21:09:14 +02002750 get_src_and_dst_ip (ip, &gid_address_ip (src), &gid_address_ip (dst));
Florin Coras1a1adc72016-07-22 01:45:30 +02002751
Florin Corasa2157cf2016-08-16 21:09:14 +02002752 version = gid_address_ip_version (src);
Florin Coras1a1adc72016-07-22 01:45:30 +02002753 preflen = ip_address_max_len (version);
Florin Corasa2157cf2016-08-16 21:09:14 +02002754 gid_address_ippref_len (src) = preflen;
2755 gid_address_ippref_len (dst) = preflen;
Florin Coras1a1adc72016-07-22 01:45:30 +02002756
2757 vni = lisp_get_vni_from_buffer_ip (lcm, b, version);
2758 gid_address_vni (dst) = vni;
2759 gid_address_vni (src) = vni;
2760 }
2761 else if (LISP_AFI_MAC == type)
2762 {
Florin Corasa2157cf2016-08-16 21:09:14 +02002763 ethernet_header_t *eh;
Florin Coras1a1adc72016-07-22 01:45:30 +02002764
2765 eh = vlib_buffer_get_current (b);
2766
Florin Corasa2157cf2016-08-16 21:09:14 +02002767 gid_address_type (src) = GID_ADDR_MAC;
2768 gid_address_type (dst) = GID_ADDR_MAC;
2769 mac_copy (&gid_address_mac (src), eh->src_address);
2770 mac_copy (&gid_address_mac (dst), eh->dst_address);
Florin Coras1a1adc72016-07-22 01:45:30 +02002771
2772 /* get vni */
2773 vni = lisp_get_vni_from_buffer_eth (lcm, b);
2774
2775 gid_address_vni (dst) = vni;
2776 gid_address_vni (src) = vni;
2777 }
Florin Corasce1b4c72017-01-26 14:25:34 -08002778 else if (LISP_AFI_LCAF == type)
2779 {
2780 /* Eventually extend this to support NSH and other */
2781 ASSERT (0);
2782 }
Florin Coras1a1adc72016-07-22 01:45:30 +02002783}
2784
Florin Corase127a7e2016-02-18 22:20:01 +01002785static uword
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002786lisp_cp_lookup_inline (vlib_main_t * vm,
2787 vlib_node_runtime_t * node,
2788 vlib_frame_t * from_frame, int overlay)
Florin Corase127a7e2016-02-18 22:20:01 +01002789{
Florin Corasa2157cf2016-08-16 21:09:14 +02002790 u32 *from, *to_next_drop, di, si;
2791 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Florin Corase127a7e2016-02-18 22:20:01 +01002792 u32 pkts_mapped = 0;
2793 uword n_left_from, n_left_to_next_drop;
2794
2795 from = vlib_frame_vector_args (from_frame);
2796 n_left_from = from_frame->n_vectors;
2797
2798 while (n_left_from > 0)
2799 {
2800 vlib_get_next_frame (vm, node, LISP_CP_LOOKUP_NEXT_DROP,
Florin Corasa2157cf2016-08-16 21:09:14 +02002801 to_next_drop, n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01002802
2803 while (n_left_from > 0 && n_left_to_next_drop > 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02002804 {
2805 u32 pi0;
2806 vlib_buffer_t *b0;
2807 gid_address_t src, dst;
Florin Corase127a7e2016-02-18 22:20:01 +01002808
Florin Corasa2157cf2016-08-16 21:09:14 +02002809 pi0 = from[0];
2810 from += 1;
2811 n_left_from -= 1;
2812 to_next_drop[0] = pi0;
2813 to_next_drop += 1;
2814 n_left_to_next_drop -= 1;
Florin Corase127a7e2016-02-18 22:20:01 +01002815
Florin Corasa2157cf2016-08-16 21:09:14 +02002816 b0 = vlib_get_buffer (vm, pi0);
2817 b0->error = node->errors[LISP_CP_LOOKUP_ERROR_DROP];
Florin Corase127a7e2016-02-18 22:20:01 +01002818
Florin Corasa2157cf2016-08-16 21:09:14 +02002819 /* src/dst eid pair */
Filip Tehlar4868ff62017-03-09 16:48:39 +01002820 get_src_and_dst_eids_from_buffer (lcm, b0, &src, &dst, overlay);
Filip Tehlar324112f2016-06-02 16:07:38 +02002821
Florin Corasa2157cf2016-08-16 21:09:14 +02002822 /* if we have remote mapping for destination already in map-chache
2823 add forwarding tunnel directly. If not send a map-request */
Florin Corasdca88042016-09-14 16:01:38 +02002824 di = gid_dictionary_sd_lookup (&lcm->mapping_index_by_gid, &dst,
2825 &src);
Florin Corasa2157cf2016-08-16 21:09:14 +02002826 if (~0 != di)
2827 {
2828 mapping_t *m = vec_elt_at_index (lcm->mapping_pool, di);
2829 /* send a map-request also in case of negative mapping entry
2830 with corresponding action */
2831 if (m->action == LISP_SEND_MAP_REQUEST)
2832 {
2833 /* send map-request */
2834 queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
2835 0 /* is_resend */ );
2836 pkts_mapped++;
2837 }
2838 else
2839 {
2840 si = gid_dictionary_lookup (&lcm->mapping_index_by_gid,
2841 &src);
2842 if (~0 != si)
2843 {
Filip Tehlarce1aae42017-01-04 10:42:25 +01002844 dp_add_fwd_entry_from_mt (si, di);
Florin Corasa2157cf2016-08-16 21:09:14 +02002845 }
2846 }
2847 }
2848 else
2849 {
2850 /* send map-request */
2851 queue_map_request (&src, &dst, 0 /* smr_invoked */ ,
2852 0 /* is_resend */ );
2853 pkts_mapped++;
2854 }
Florin Corase127a7e2016-02-18 22:20:01 +01002855
Florin Corasa2157cf2016-08-16 21:09:14 +02002856 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
2857 {
2858 lisp_cp_lookup_trace_t *tr = vlib_add_trace (vm, node, b0,
2859 sizeof (*tr));
Andrej Kozemcak94e34762016-05-25 12:43:21 +02002860
Florin Corasa2157cf2016-08-16 21:09:14 +02002861 memset (tr, 0, sizeof (*tr));
2862 gid_address_copy (&tr->dst_eid, &dst);
Florin Coras5a1c11b2016-09-06 16:29:34 +02002863 ip_address_copy (&tr->map_resolver_ip,
2864 &lcm->active_map_resolver);
Florin Corasa2157cf2016-08-16 21:09:14 +02002865 }
2866 gid_address_free (&dst);
2867 gid_address_free (&src);
2868 }
Florin Corase127a7e2016-02-18 22:20:01 +01002869
Florin Corasa2157cf2016-08-16 21:09:14 +02002870 vlib_put_next_frame (vm, node, LISP_CP_LOOKUP_NEXT_DROP,
2871 n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01002872 }
2873 vlib_node_increment_counter (vm, node->node_index,
Florin Corasa2157cf2016-08-16 21:09:14 +02002874 LISP_CP_LOOKUP_ERROR_MAP_REQUESTS_SENT,
2875 pkts_mapped);
Florin Corase127a7e2016-02-18 22:20:01 +01002876 return from_frame->n_vectors;
2877}
2878
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002879static uword
2880lisp_cp_lookup_ip4 (vlib_main_t * vm,
2881 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
2882{
2883 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP));
2884}
2885
2886static uword
2887lisp_cp_lookup_ip6 (vlib_main_t * vm,
2888 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
2889{
2890 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_IP6));
2891}
2892
Neale Ranns5e575b12016-10-03 09:40:25 +01002893static uword
2894lisp_cp_lookup_l2 (vlib_main_t * vm,
2895 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
2896{
2897 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_MAC));
2898}
2899
Florin Corasce1b4c72017-01-26 14:25:34 -08002900static uword
2901lisp_cp_lookup_nsh (vlib_main_t * vm,
2902 vlib_node_runtime_t * node, vlib_frame_t * from_frame)
2903{
2904 /* TODO decide if NSH should be propagated as LCAF or not */
2905 return (lisp_cp_lookup_inline (vm, node, from_frame, LISP_AFI_LCAF));
2906}
2907
Florin Corasa2157cf2016-08-16 21:09:14 +02002908/* *INDENT-OFF* */
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002909VLIB_REGISTER_NODE (lisp_cp_lookup_ip4_node) = {
2910 .function = lisp_cp_lookup_ip4,
2911 .name = "lisp-cp-lookup-ip4",
2912 .vector_size = sizeof (u32),
2913 .format_trace = format_lisp_cp_lookup_trace,
2914 .type = VLIB_NODE_TYPE_INTERNAL,
2915
2916 .n_errors = LISP_CP_LOOKUP_N_ERROR,
2917 .error_strings = lisp_cp_lookup_error_strings,
2918
2919 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
2920
2921 .next_nodes = {
2922 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Neale Ranns0bfe5d82016-08-25 15:29:12 +01002923 },
2924};
2925/* *INDENT-ON* */
2926
2927/* *INDENT-OFF* */
2928VLIB_REGISTER_NODE (lisp_cp_lookup_ip6_node) = {
2929 .function = lisp_cp_lookup_ip6,
2930 .name = "lisp-cp-lookup-ip6",
Florin Corase127a7e2016-02-18 22:20:01 +01002931 .vector_size = sizeof (u32),
2932 .format_trace = format_lisp_cp_lookup_trace,
2933 .type = VLIB_NODE_TYPE_INTERNAL,
2934
2935 .n_errors = LISP_CP_LOOKUP_N_ERROR,
2936 .error_strings = lisp_cp_lookup_error_strings,
2937
2938 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
2939
2940 .next_nodes = {
2941 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Neale Ranns5e575b12016-10-03 09:40:25 +01002942 },
2943};
2944/* *INDENT-ON* */
2945
2946/* *INDENT-OFF* */
2947VLIB_REGISTER_NODE (lisp_cp_lookup_l2_node) = {
2948 .function = lisp_cp_lookup_l2,
2949 .name = "lisp-cp-lookup-l2",
2950 .vector_size = sizeof (u32),
2951 .format_trace = format_lisp_cp_lookup_trace,
2952 .type = VLIB_NODE_TYPE_INTERNAL,
2953
2954 .n_errors = LISP_CP_LOOKUP_N_ERROR,
2955 .error_strings = lisp_cp_lookup_error_strings,
2956
2957 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
2958
2959 .next_nodes = {
2960 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
Florin Corase127a7e2016-02-18 22:20:01 +01002961 },
2962};
Florin Corasa2157cf2016-08-16 21:09:14 +02002963/* *INDENT-ON* */
Florin Corase127a7e2016-02-18 22:20:01 +01002964
Florin Corasce1b4c72017-01-26 14:25:34 -08002965/* *INDENT-OFF* */
2966VLIB_REGISTER_NODE (lisp_cp_lookup_nsh_node) = {
2967 .function = lisp_cp_lookup_nsh,
2968 .name = "lisp-cp-lookup-nsh",
2969 .vector_size = sizeof (u32),
2970 .format_trace = format_lisp_cp_lookup_trace,
2971 .type = VLIB_NODE_TYPE_INTERNAL,
2972
2973 .n_errors = LISP_CP_LOOKUP_N_ERROR,
2974 .error_strings = lisp_cp_lookup_error_strings,
2975
2976 .n_next_nodes = LISP_CP_LOOKUP_N_NEXT,
2977
2978 .next_nodes = {
2979 [LISP_CP_LOOKUP_NEXT_DROP] = "error-drop",
2980 },
2981};
2982/* *INDENT-ON* */
2983
Florin Corase127a7e2016-02-18 22:20:01 +01002984/* lisp_cp_input statistics */
Filip Tehlarcda70662017-01-16 10:30:03 +01002985#define foreach_lisp_cp_input_error \
2986_(DROP, "drop") \
2987_(RLOC_PROBE_REQ_RECEIVED, "rloc-probe requests received") \
2988_(RLOC_PROBE_REP_RECEIVED, "rloc-probe replies received") \
2989_(MAP_NOTIFIES_RECEIVED, "map-notifies received") \
Florin Corase127a7e2016-02-18 22:20:01 +01002990_(MAP_REPLIES_RECEIVED, "map-replies received")
2991
Florin Corasa2157cf2016-08-16 21:09:14 +02002992static char *lisp_cp_input_error_strings[] = {
Florin Corase127a7e2016-02-18 22:20:01 +01002993#define _(sym,string) string,
2994 foreach_lisp_cp_input_error
2995#undef _
2996};
2997
2998typedef enum
2999{
3000#define _(sym,str) LISP_CP_INPUT_ERROR_##sym,
Florin Corasa2157cf2016-08-16 21:09:14 +02003001 foreach_lisp_cp_input_error
Florin Corase127a7e2016-02-18 22:20:01 +01003002#undef _
3003 LISP_CP_INPUT_N_ERROR,
3004} lisp_cp_input_error_t;
3005
Florin Corase127a7e2016-02-18 22:20:01 +01003006typedef struct
3007{
3008 gid_address_t dst_eid;
3009 ip4_address_t map_resolver_ip;
3010} lisp_cp_input_trace_t;
3011
3012u8 *
3013format_lisp_cp_input_trace (u8 * s, va_list * args)
3014{
3015 CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *);
3016 CLIB_UNUSED (vlib_node_t * node) = va_arg (*args, vlib_node_t *);
Florin Corasa2157cf2016-08-16 21:09:14 +02003017 CLIB_UNUSED (lisp_cp_input_trace_t * t) =
3018 va_arg (*args, lisp_cp_input_trace_t *);
Florin Corase127a7e2016-02-18 22:20:01 +01003019
3020 s = format (s, "LISP-CP-INPUT: TODO");
3021 return s;
3022}
3023
Filip Tehlar9677a942016-11-28 10:23:31 +01003024static void
3025remove_expired_mapping (lisp_cp_main_t * lcm, u32 mi)
3026{
3027 mapping_t *m;
Florin Corasf3dc11a2017-01-24 03:13:43 -08003028 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
3029 memset (adj_args, 0, sizeof (adj_args[0]));
Filip Tehlar9677a942016-11-28 10:23:31 +01003030
3031 m = pool_elt_at_index (lcm->mapping_pool, mi);
Florin Corasf3dc11a2017-01-24 03:13:43 -08003032
3033 gid_address_copy (&adj_args->reid, &m->eid);
3034 adj_args->is_add = 0;
3035 if (vnet_lisp_add_del_adjacency (adj_args))
3036 clib_warning ("failed to del adjacency!");
3037
Filip Tehlar9677a942016-11-28 10:23:31 +01003038 vnet_lisp_add_del_mapping (&m->eid, 0, 0, 0, ~0, 0 /* is_add */ ,
3039 0 /* is_static */ , 0);
3040 mapping_delete_timer (lcm, mi);
3041}
3042
3043static void
3044mapping_start_expiration_timer (lisp_cp_main_t * lcm, u32 mi,
3045 f64 expiration_time)
3046{
3047 mapping_t *m;
3048 u64 now = clib_cpu_time_now ();
3049 u64 cpu_cps = lcm->vlib_main->clib_time.clocks_per_second;
3050 u64 exp_clock_time = now + expiration_time * cpu_cps;
3051
3052 m = pool_elt_at_index (lcm->mapping_pool, mi);
3053
3054 m->timer_set = 1;
3055 timing_wheel_insert (&lcm->wheel, exp_clock_time, mi);
3056}
3057
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003058static void
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003059map_records_arg_free (map_records_arg_t * a)
Florin Corase127a7e2016-02-18 22:20:01 +01003060{
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003061 mapping_t *m;
3062 vec_foreach (m, a->mappings)
3063 {
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003064 vec_free (m->locators);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003065 gid_address_free (&m->eid);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003066 }
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003067
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003068 clib_mem_free (a);
3069}
3070
3071void *
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003072process_map_reply (map_records_arg_t * a)
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003073{
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003074 mapping_t *m;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003075 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3076 u32 dst_map_index = 0;
3077 pending_map_request_t *pmr;
3078 u64 *noncep;
3079 uword *pmr_index;
3080
3081 if (a->is_rloc_probe)
3082 goto done;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003083
Florin Corase127a7e2016-02-18 22:20:01 +01003084 /* Check pending requests table and nonce */
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003085 pmr_index = hash_get (lcm->pending_map_requests_by_nonce, a->nonce);
Florin Corase127a7e2016-02-18 22:20:01 +01003086 if (!pmr_index)
3087 {
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003088 clib_warning ("No pending map-request entry with nonce %lu!", a->nonce);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003089 goto done;
Florin Corase127a7e2016-02-18 22:20:01 +01003090 }
Florin Corasa2157cf2016-08-16 21:09:14 +02003091 pmr = pool_elt_at_index (lcm->pending_map_requests_pool, pmr_index[0]);
Florin Corase127a7e2016-02-18 22:20:01 +01003092
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003093 vec_foreach (m, a->mappings)
3094 {
3095 /* insert/update mappings cache */
3096 vnet_lisp_add_del_mapping (&m->eid, m->locators, m->action,
3097 m->authoritative, m->ttl,
3098 1, 0 /* is_static */ , &dst_map_index);
Florin Corase127a7e2016-02-18 22:20:01 +01003099
Florin Corasba888e42017-01-24 11:38:18 -08003100 if (dst_map_index == (u32) ~ 0)
3101 continue;
3102
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003103 /* try to program forwarding only if mapping saved or updated */
Florin Corasba888e42017-01-24 11:38:18 -08003104 vnet_lisp_add_del_adjacency_args_t _adj_args, *adj_args = &_adj_args;
3105 memset (adj_args, 0, sizeof (adj_args[0]));
Florin Corasf3dc11a2017-01-24 03:13:43 -08003106
Florin Corasba888e42017-01-24 11:38:18 -08003107 gid_address_copy (&adj_args->leid, &pmr->src);
3108 gid_address_copy (&adj_args->reid, &m->eid);
3109 adj_args->is_add = 1;
3110 if (vnet_lisp_add_del_adjacency (adj_args))
3111 clib_warning ("failed to add adjacency!");
Florin Corasf3dc11a2017-01-24 03:13:43 -08003112
Florin Corasba888e42017-01-24 11:38:18 -08003113 if ((u32) ~ 0 != m->ttl)
3114 mapping_start_expiration_timer (lcm, dst_map_index, m->ttl * 60);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003115 }
Florin Corase127a7e2016-02-18 22:20:01 +01003116
3117 /* remove pending map request entry */
Florin Corasa2157cf2016-08-16 21:09:14 +02003118
3119 /* *INDENT-OFF* */
Florin Corasf4691cd2016-08-15 19:16:32 +02003120 clib_fifo_foreach (noncep, pmr->nonces, ({
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003121 hash_unset(lcm->pending_map_requests_by_nonce, noncep[0]);
Florin Corasf4691cd2016-08-15 19:16:32 +02003122 }));
Florin Corasa2157cf2016-08-16 21:09:14 +02003123 /* *INDENT-ON* */
3124
3125 clib_fifo_free (pmr->nonces);
3126 pool_put (lcm->pending_map_requests_pool, pmr);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003127
3128done:
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003129 map_records_arg_free (a);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003130 return 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003131}
3132
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003133static int
3134is_auth_data_valid (map_notify_hdr_t * h, u32 msg_len,
3135 lisp_key_type_t key_id, u8 * key)
3136{
3137 u8 *auth_data = 0;
3138 u16 auth_data_len;
3139 int result;
3140
3141 auth_data_len = auth_data_len_by_key_id (key_id);
3142 if ((u16) ~ 0 == auth_data_len)
3143 {
3144 clib_warning ("invalid length for key_id %d!", key_id);
3145 return 0;
3146 }
3147
3148 /* save auth data */
3149 vec_validate (auth_data, auth_data_len - 1);
3150 clib_memcpy (auth_data, MNOTIFY_DATA (h), auth_data_len);
3151
3152 /* clear auth data */
3153 memset (MNOTIFY_DATA (h), 0, auth_data_len);
3154
3155 /* get hash of the message */
3156 unsigned char *code = HMAC (get_encrypt_fcn (key_id), key, vec_len (key),
3157 (unsigned char *) h, msg_len, NULL, NULL);
3158
3159 result = memcmp (code, auth_data, auth_data_len);
3160
3161 vec_free (auth_data);
3162
3163 return !result;
3164}
3165
3166static void
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003167process_map_notify (map_records_arg_t * a)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003168{
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003169 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003170 uword *pmr_index;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003171
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003172 pmr_index = hash_get (lcm->map_register_messages_by_nonce, a->nonce);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003173 if (!pmr_index)
3174 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003175 clib_warning ("No pending map-register entry with nonce %lu!",
3176 a->nonce);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003177 return;
3178 }
3179
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003180 map_records_arg_free (a);
3181 hash_unset (lcm->map_register_messages_by_nonce, a->nonce);
3182}
3183
3184static mapping_t *
3185get_mapping (lisp_cp_main_t * lcm, gid_address_t * e)
3186{
3187 u32 mi;
3188
3189 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, e);
3190 if (~0 == mi)
3191 {
3192 clib_warning ("eid %U not found in map-cache!", unformat_gid_address,
3193 e);
3194 return 0;
3195 }
3196 return pool_elt_at_index (lcm->mapping_pool, mi);
3197}
3198
3199/**
3200 * When map-notify is received it is necessary that all EIDs in the record
3201 * list share common key. The key is then used to verify authentication
3202 * data in map-notify message.
3203 */
3204static int
3205map_record_integrity_check (lisp_cp_main_t * lcm, mapping_t * maps,
3206 u32 key_id, u8 ** key_out)
3207{
3208 u32 i, len = vec_len (maps);
3209 mapping_t *m;
3210
3211 /* get key of the first mapping */
3212 m = get_mapping (lcm, &maps[0].eid);
3213 if (!m || !m->key)
3214 return -1;
3215
3216 key_out[0] = m->key;
3217
3218 for (i = 1; i < len; i++)
3219 {
3220 m = get_mapping (lcm, &maps[i].eid);
3221 if (!m || !m->key)
3222 return -1;
3223
3224 if (key_id != m->key_id || vec_cmp (m->key, key_out[0]))
3225 {
3226 clib_warning ("keys does not match! %v, %v", key_out[0], m->key);
3227 return -1;
3228 }
3229 }
3230 return 0;
3231}
3232
3233static int
3234parse_map_records (vlib_buffer_t * b, map_records_arg_t * a, u8 count)
3235{
3236 locator_t *locators = 0;
3237 u32 i, len;
3238 gid_address_t deid;
3239 mapping_t m;
3240 locator_t *loc;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003241
3242 /* parse record eid */
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003243 for (i = 0; i < count; i++)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003244 {
3245 len = lisp_msg_parse_mapping_record (b, &deid, &locators, NULL);
3246 if (len == ~0)
3247 {
3248 clib_warning ("Failed to parse mapping record!");
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003249 vec_foreach (loc, locators) locator_free (loc);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003250 vec_free (locators);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003251 return -1;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003252 }
3253
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003254 m.locators = locators;
3255 gid_address_copy (&m.eid, &deid);
3256 vec_add1 (a->mappings, m);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003257 }
3258
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003259 return 0;
3260}
3261
3262static map_records_arg_t *
3263parse_map_notify (vlib_buffer_t * b)
3264{
3265 int rc = 0;
3266 map_notify_hdr_t *mnotif_hdr;
3267 lisp_key_type_t key_id;
3268 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3269 u8 *key = 0;
3270 gid_address_t deid;
3271 u16 auth_data_len = 0;
3272 u8 record_count;
3273 map_records_arg_t *a = clib_mem_alloc (sizeof (*a));
3274
3275 memset (a, 0, sizeof (*a));
3276 mnotif_hdr = vlib_buffer_get_current (b);
3277 vlib_buffer_pull (b, sizeof (*mnotif_hdr));
3278 memset (&deid, 0, sizeof (deid));
3279
3280 a->nonce = MNOTIFY_NONCE (mnotif_hdr);
3281 key_id = clib_net_to_host_u16 (MNOTIFY_KEY_ID (mnotif_hdr));
3282 auth_data_len = auth_data_len_by_key_id (key_id);
3283
3284 /* advance buffer by authentication data */
3285 vlib_buffer_pull (b, auth_data_len);
3286
3287 record_count = MNOTIFY_REC_COUNT (mnotif_hdr);
3288 rc = parse_map_records (b, a, record_count);
3289 if (rc != 0)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003290 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003291 map_records_arg_free (a);
3292 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003293 }
3294
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003295 rc = map_record_integrity_check (lcm, a->mappings, key_id, &key);
3296 if (rc != 0)
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003297 {
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003298 map_records_arg_free (a);
3299 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003300 }
3301
3302 /* verify authentication data */
3303 if (!is_auth_data_valid (mnotif_hdr, vlib_buffer_get_tail (b)
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003304 - (u8 *) mnotif_hdr, key_id, key))
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003305 {
3306 clib_warning ("Map-notify auth data verification failed for nonce %lu!",
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003307 a->nonce);
3308 map_records_arg_free (a);
3309 return 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003310 }
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003311 return a;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003312}
3313
3314static vlib_buffer_t *
3315build_map_reply (lisp_cp_main_t * lcm, ip_address_t * sloc,
3316 ip_address_t * dst, u64 nonce, u8 probe_bit,
3317 mapping_t * records, u16 dst_port, u32 * bi_res)
3318{
3319 vlib_buffer_t *b;
3320 u32 bi;
3321 vlib_main_t *vm = lcm->vlib_main;
3322
3323 if (vlib_buffer_alloc (vm, &bi, 1) != 1)
3324 {
3325 clib_warning ("Can't allocate buffer for Map-Register!");
3326 return 0;
3327 }
3328
3329 b = vlib_get_buffer (vm, bi);
3330
3331 /* leave some space for the encap headers */
3332 vlib_buffer_make_headroom (b, MAX_LISP_MSG_ENCAP_LEN);
3333
3334 lisp_msg_put_map_reply (b, records, nonce, probe_bit);
3335
3336 /* push outer ip header */
3337 pkt_push_udp_and_ip (vm, b, LISP_CONTROL_PORT, dst_port, sloc, dst);
3338
3339 bi_res[0] = bi;
3340 return b;
3341}
3342
3343static int
3344send_map_reply (lisp_cp_main_t * lcm, u32 mi, ip_address_t * dst,
3345 u8 probe_bit, u64 nonce, u16 dst_port,
3346 ip_address_t * probed_loc)
3347{
3348 ip_address_t src;
3349 u32 bi;
3350 vlib_buffer_t *b;
3351 vlib_frame_t *f;
3352 u32 next_index, *to_next;
3353 mapping_t *records = 0, *m;
3354
3355 m = pool_elt_at_index (lcm->mapping_pool, mi);
3356 if (!m)
3357 return -1;
3358
3359 vec_add1 (records, m[0]);
3360 add_locators (lcm, &records[0], m->locator_set_index, probed_loc);
3361 memset (&src, 0, sizeof (src));
3362
3363 if (!ip_fib_get_first_egress_ip_for_dst (lcm, dst, &src))
3364 {
3365 clib_warning ("can't find inteface address for %U", format_ip_address,
3366 dst);
3367 return -1;
3368 }
3369
3370 b = build_map_reply (lcm, &src, dst, nonce, probe_bit, records, dst_port,
3371 &bi);
3372 if (!b)
3373 return -1;
3374 free_map_register_records (records);
3375
3376 vnet_buffer (b)->sw_if_index[VLIB_TX] = 0;
3377 next_index = (ip_addr_version (&lcm->active_map_resolver) == IP4) ?
3378 ip4_lookup_node.index : ip6_lookup_node.index;
3379
3380 f = vlib_get_frame_to_node (lcm->vlib_main, next_index);
3381
3382 /* Enqueue the packet */
3383 to_next = vlib_frame_vector_args (f);
3384 to_next[0] = bi;
3385 f->n_vectors = 1;
3386 vlib_put_frame_to_node (lcm->vlib_main, next_index, f);
3387 return 0;
3388}
3389
Filip Tehlarb601f222017-01-02 10:22:56 +01003390static void
3391find_ip_header (vlib_buffer_t * b, u8 ** ip_hdr)
3392{
3393 const i32 start = vnet_buffer (b)->ip.start_of_ip_header;
3394 if (start < 0 && start < -sizeof (b->pre_data))
3395 {
3396 *ip_hdr = 0;
3397 return;
3398 }
3399
3400 *ip_hdr = b->data + start;
3401 if ((u8 *) * ip_hdr > (u8 *) vlib_buffer_get_current (b))
3402 *ip_hdr = 0;
3403}
3404
Florin Corase127a7e2016-02-18 22:20:01 +01003405void
Filip Tehlarcda70662017-01-16 10:30:03 +01003406process_map_request (vlib_main_t * vm, vlib_node_runtime_t * node,
3407 lisp_cp_main_t * lcm, vlib_buffer_t * b)
Florin Corase127a7e2016-02-18 22:20:01 +01003408{
Filip Tehlarb601f222017-01-02 10:22:56 +01003409 u8 *ip_hdr = 0;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003410 ip_address_t *dst_loc = 0, probed_loc, src_loc;
3411 mapping_t m;
Florin Corasa2157cf2016-08-16 21:09:14 +02003412 map_request_hdr_t *mreq_hdr;
Florin Corase127a7e2016-02-18 22:20:01 +01003413 gid_address_t src, dst;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003414 u64 nonce;
Filip Tehlarcda70662017-01-16 10:30:03 +01003415 u32 i, len = 0, rloc_probe_recv = 0;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003416 gid_address_t *itr_rlocs = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003417
3418 mreq_hdr = vlib_buffer_get_current (b);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003419 if (!MREQ_SMR (mreq_hdr) && !MREQ_RLOC_PROBE (mreq_hdr))
Florin Corasa2157cf2016-08-16 21:09:14 +02003420 {
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003421 clib_warning
3422 ("Only SMR Map-Requests and RLOC probe supported for now!");
Florin Corase127a7e2016-02-18 22:20:01 +01003423 return;
Florin Corasa2157cf2016-08-16 21:09:14 +02003424 }
Florin Corase127a7e2016-02-18 22:20:01 +01003425
Filip Tehlarb601f222017-01-02 10:22:56 +01003426 vlib_buffer_pull (b, sizeof (*mreq_hdr));
3427 nonce = MREQ_NONCE (mreq_hdr);
3428
Florin Corase127a7e2016-02-18 22:20:01 +01003429 /* parse src eid */
3430 len = lisp_msg_parse_addr (b, &src);
3431 if (len == ~0)
3432 return;
3433
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003434 len = lisp_msg_parse_itr_rlocs (b, &itr_rlocs,
3435 MREQ_ITR_RLOC_COUNT (mreq_hdr) + 1);
Florin Corase127a7e2016-02-18 22:20:01 +01003436 if (len == ~0)
Filip Tehlarcda70662017-01-16 10:30:03 +01003437 goto done;
Florin Corase127a7e2016-02-18 22:20:01 +01003438
3439 /* parse eid records and send SMR-invoked map-requests */
Florin Corasa2157cf2016-08-16 21:09:14 +02003440 for (i = 0; i < MREQ_REC_COUNT (mreq_hdr); i++)
Florin Corase127a7e2016-02-18 22:20:01 +01003441 {
Florin Corasa2157cf2016-08-16 21:09:14 +02003442 memset (&dst, 0, sizeof (dst));
Florin Corase127a7e2016-02-18 22:20:01 +01003443 len = lisp_msg_parse_eid_rec (b, &dst);
3444 if (len == ~0)
Florin Corasa2157cf2016-08-16 21:09:14 +02003445 {
3446 clib_warning ("Can't parse map-request EID-record");
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003447 goto done;
Florin Corasa2157cf2016-08-16 21:09:14 +02003448 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003449
3450 if (MREQ_SMR (mreq_hdr))
3451 {
3452 /* send SMR-invoked map-requests */
3453 queue_map_request (&dst, &src, 1 /* invoked */ , 0 /* resend */ );
3454 }
3455 else if (MREQ_RLOC_PROBE (mreq_hdr))
3456 {
Filip Tehlarb601f222017-01-02 10:22:56 +01003457 find_ip_header (b, &ip_hdr);
3458 if (!ip_hdr)
3459 {
3460 clib_warning ("Cannot find the IP header!");
Filip Tehlarcda70662017-01-16 10:30:03 +01003461 goto done;
Filip Tehlarb601f222017-01-02 10:22:56 +01003462 }
Filip Tehlarcda70662017-01-16 10:30:03 +01003463 rloc_probe_recv++;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003464 memset (&m, 0, sizeof (m));
3465 u32 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, &dst);
3466
3467 // TODO: select best locator; for now use the first one
3468 dst_loc = &gid_address_ip (&itr_rlocs[0]);
3469
3470 /* get src/dst IP addresses */
3471 get_src_and_dst_ip (ip_hdr, &src_loc, &probed_loc);
3472
3473 // TODO get source port from buffer
3474 u16 src_port = LISP_CONTROL_PORT;
3475
3476 send_map_reply (lcm, mi, dst_loc, 1 /* probe-bit */ , nonce,
3477 src_port, &probed_loc);
3478 }
Florin Corase127a7e2016-02-18 22:20:01 +01003479 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003480
3481done:
Filip Tehlarcda70662017-01-16 10:30:03 +01003482 vlib_node_increment_counter (vm, node->node_index,
3483 LISP_CP_INPUT_ERROR_RLOC_PROBE_REQ_RECEIVED,
3484 rloc_probe_recv);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003485 vec_free (itr_rlocs);
Florin Corase127a7e2016-02-18 22:20:01 +01003486}
3487
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003488static map_records_arg_t *
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003489parse_map_reply (vlib_buffer_t * b)
3490{
3491 locator_t probed;
3492 gid_address_t deid;
3493 void *h;
3494 u32 i, len = 0;
3495 mapping_t m;
3496 map_reply_hdr_t *mrep_hdr;
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003497 map_records_arg_t *a = clib_mem_alloc (sizeof (*a));
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003498 memset (a, 0, sizeof (*a));
3499 locator_t *locators;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003500
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003501 mrep_hdr = vlib_buffer_get_current (b);
3502 a->nonce = MREP_NONCE (mrep_hdr);
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003503 a->is_rloc_probe = MREP_RLOC_PROBE (mrep_hdr);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003504 vlib_buffer_pull (b, sizeof (*mrep_hdr));
3505
3506 for (i = 0; i < MREP_REC_COUNT (mrep_hdr); i++)
3507 {
3508 memset (&m, 0, sizeof (m));
3509 locators = 0;
3510 h = vlib_buffer_get_current (b);
3511
3512 m.ttl = clib_net_to_host_u32 (MAP_REC_TTL (h));
3513 m.action = MAP_REC_ACTION (h);
3514 m.authoritative = MAP_REC_AUTH (h);
3515
3516 len = lisp_msg_parse_mapping_record (b, &deid, &locators, &probed);
3517 if (len == ~0)
3518 {
3519 clib_warning ("Failed to parse mapping record!");
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003520 map_records_arg_free (a);
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003521 return 0;
3522 }
3523
3524 m.locators = locators;
3525 gid_address_copy (&m.eid, &deid);
3526 vec_add1 (a->mappings, m);
3527 }
3528 return a;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003529}
3530
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003531static void
3532queue_map_reply_for_processing (map_records_arg_t * a)
3533{
Florin Coras655fcc42017-01-10 08:57:54 -08003534 vl_api_rpc_call_main_thread (process_map_reply, (u8 *) a, sizeof (*a));
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003535}
3536
3537static void
3538queue_map_notify_for_processing (map_records_arg_t * a)
3539{
3540 vl_api_rpc_call_main_thread (process_map_notify, (u8 *) a, sizeof (a[0]));
3541}
3542
Florin Corase127a7e2016-02-18 22:20:01 +01003543static uword
3544lisp_cp_input (vlib_main_t * vm, vlib_node_runtime_t * node,
Florin Corasa2157cf2016-08-16 21:09:14 +02003545 vlib_frame_t * from_frame)
Florin Corase127a7e2016-02-18 22:20:01 +01003546{
Filip Tehlarcda70662017-01-16 10:30:03 +01003547 u32 n_left_from, *from, *to_next_drop, rloc_probe_rep_recv = 0,
3548 map_notifies_recv = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003549 lisp_msg_type_e type;
Florin Corasa2157cf2016-08-16 21:09:14 +02003550 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003551 map_records_arg_t *a;
Florin Corase127a7e2016-02-18 22:20:01 +01003552
3553 from = vlib_frame_vector_args (from_frame);
3554 n_left_from = from_frame->n_vectors;
3555
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003556
Florin Corase127a7e2016-02-18 22:20:01 +01003557 while (n_left_from > 0)
3558 {
3559 u32 n_left_to_next_drop;
3560
3561 vlib_get_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP,
Florin Corasa2157cf2016-08-16 21:09:14 +02003562 to_next_drop, n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01003563 while (n_left_from > 0 && n_left_to_next_drop > 0)
Florin Corasa2157cf2016-08-16 21:09:14 +02003564 {
3565 u32 bi0;
3566 vlib_buffer_t *b0;
Florin Corase127a7e2016-02-18 22:20:01 +01003567
Florin Corasa2157cf2016-08-16 21:09:14 +02003568 bi0 = from[0];
3569 from += 1;
3570 n_left_from -= 1;
3571 to_next_drop[0] = bi0;
3572 to_next_drop += 1;
3573 n_left_to_next_drop -= 1;
Florin Corase127a7e2016-02-18 22:20:01 +01003574
Florin Corasa2157cf2016-08-16 21:09:14 +02003575 b0 = vlib_get_buffer (vm, bi0);
Florin Corase127a7e2016-02-18 22:20:01 +01003576
Florin Corasa2157cf2016-08-16 21:09:14 +02003577 type = lisp_msg_type (vlib_buffer_get_current (b0));
3578 switch (type)
3579 {
3580 case LISP_MAP_REPLY:
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003581 a = parse_map_reply (b0);
3582 if (a)
Filip Tehlarcda70662017-01-16 10:30:03 +01003583 {
3584 if (a->is_rloc_probe)
3585 rloc_probe_rep_recv++;
3586 queue_map_reply_for_processing (a);
3587 }
Florin Corasa2157cf2016-08-16 21:09:14 +02003588 break;
3589 case LISP_MAP_REQUEST:
Filip Tehlarcda70662017-01-16 10:30:03 +01003590 process_map_request (vm, node, lcm, b0);
Florin Corasa2157cf2016-08-16 21:09:14 +02003591 break;
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003592 case LISP_MAP_NOTIFY:
Filip Tehlarfb9931f2016-12-09 13:52:38 +01003593 a = parse_map_notify (b0);
3594 if (a)
Filip Tehlarcda70662017-01-16 10:30:03 +01003595 {
3596 map_notifies_recv++;
3597 queue_map_notify_for_processing (a);
3598 }
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003599 break;
Florin Corasa2157cf2016-08-16 21:09:14 +02003600 default:
3601 clib_warning ("Unsupported LISP message type %d", type);
3602 break;
3603 }
Florin Corase127a7e2016-02-18 22:20:01 +01003604
Florin Corasa2157cf2016-08-16 21:09:14 +02003605 b0->error = node->errors[LISP_CP_INPUT_ERROR_DROP];
Florin Corase127a7e2016-02-18 22:20:01 +01003606
Florin Corasa2157cf2016-08-16 21:09:14 +02003607 if (PREDICT_FALSE (b0->flags & VLIB_BUFFER_IS_TRACED))
3608 {
Florin Corase127a7e2016-02-18 22:20:01 +01003609
Florin Corasa2157cf2016-08-16 21:09:14 +02003610 }
3611 }
Florin Corase127a7e2016-02-18 22:20:01 +01003612
Florin Corasa2157cf2016-08-16 21:09:14 +02003613 vlib_put_next_frame (vm, node, LISP_CP_INPUT_NEXT_DROP,
3614 n_left_to_next_drop);
Florin Corase127a7e2016-02-18 22:20:01 +01003615 }
Filip Tehlarcda70662017-01-16 10:30:03 +01003616 vlib_node_increment_counter (vm, node->node_index,
3617 LISP_CP_INPUT_ERROR_RLOC_PROBE_REP_RECEIVED,
3618 rloc_probe_rep_recv);
3619 vlib_node_increment_counter (vm, node->node_index,
3620 LISP_CP_INPUT_ERROR_MAP_NOTIFIES_RECEIVED,
3621 map_notifies_recv);
Florin Corase127a7e2016-02-18 22:20:01 +01003622 return from_frame->n_vectors;
3623}
3624
Florin Corasa2157cf2016-08-16 21:09:14 +02003625/* *INDENT-OFF* */
Florin Corase127a7e2016-02-18 22:20:01 +01003626VLIB_REGISTER_NODE (lisp_cp_input_node) = {
3627 .function = lisp_cp_input,
3628 .name = "lisp-cp-input",
3629 .vector_size = sizeof (u32),
3630 .format_trace = format_lisp_cp_input_trace,
3631 .type = VLIB_NODE_TYPE_INTERNAL,
3632
3633 .n_errors = LISP_CP_INPUT_N_ERROR,
3634 .error_strings = lisp_cp_input_error_strings,
3635
3636 .n_next_nodes = LISP_CP_INPUT_N_NEXT,
3637
3638 .next_nodes = {
3639 [LISP_CP_INPUT_NEXT_DROP] = "error-drop",
3640 },
3641};
Florin Corasa2157cf2016-08-16 21:09:14 +02003642/* *INDENT-ON* */
Florin Corase127a7e2016-02-18 22:20:01 +01003643
3644clib_error_t *
Florin Corasa2157cf2016-08-16 21:09:14 +02003645lisp_cp_init (vlib_main_t * vm)
Florin Corase127a7e2016-02-18 22:20:01 +01003646{
Florin Corasa2157cf2016-08-16 21:09:14 +02003647 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3648 clib_error_t *error = 0;
Florin Corase127a7e2016-02-18 22:20:01 +01003649
3650 if ((error = vlib_call_init_function (vm, lisp_gpe_init)))
3651 return error;
3652
3653 lcm->im4 = &ip4_main;
3654 lcm->im6 = &ip6_main;
3655 lcm->vlib_main = vm;
Florin Corasa2157cf2016-08-16 21:09:14 +02003656 lcm->vnet_main = vnet_get_main ();
Andrej Kozemcakb6e4d392016-06-14 13:55:57 +02003657 lcm->mreq_itr_rlocs = ~0;
Florin Corasf727db92016-06-23 15:01:58 +02003658 lcm->lisp_pitr = 0;
Florin Corasba888e42017-01-24 11:38:18 -08003659 lcm->flags = 0;
Florin Coras5a1c11b2016-09-06 16:29:34 +02003660 memset (&lcm->active_map_resolver, 0, sizeof (lcm->active_map_resolver));
Florin Corase127a7e2016-02-18 22:20:01 +01003661
3662 gid_dictionary_init (&lcm->mapping_index_by_gid);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003663 lcm->do_map_resolver_election = 1;
Florin Corasdca88042016-09-14 16:01:38 +02003664 lcm->map_request_mode = MR_MODE_DST_ONLY;
Florin Corase127a7e2016-02-18 22:20:01 +01003665
Florin Coras577c3552016-04-21 00:45:40 +02003666 /* default vrf mapped to vni 0 */
Florin Corasa2157cf2016-08-16 21:09:14 +02003667 hash_set (lcm->table_id_by_vni, 0, 0);
3668 hash_set (lcm->vni_by_table_id, 0, 0);
Florin Coras577c3552016-04-21 00:45:40 +02003669
Florin Corase127a7e2016-02-18 22:20:01 +01003670 udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp,
Florin Corasa2157cf2016-08-16 21:09:14 +02003671 lisp_cp_input_node.index, 1 /* is_ip4 */ );
Florin Corase127a7e2016-02-18 22:20:01 +01003672 udp_register_dst_port (vm, UDP_DST_PORT_lisp_cp6,
Florin Corasa2157cf2016-08-16 21:09:14 +02003673 lisp_cp_input_node.index, 0 /* is_ip4 */ );
Florin Corase127a7e2016-02-18 22:20:01 +01003674
Filip Tehlar9677a942016-11-28 10:23:31 +01003675 u64 now = clib_cpu_time_now ();
3676 timing_wheel_init (&lcm->wheel, now, vm->clib_time.clocks_per_second);
Florin Corase127a7e2016-02-18 22:20:01 +01003677 return 0;
3678}
3679
Filip Tehlar4868ff62017-03-09 16:48:39 +01003680static int
3681lisp_stats_api_fill (lisp_cp_main_t * lcm, lisp_gpe_main_t * lgm,
3682 lisp_api_stats_t * stat, lisp_stats_key_t * key,
3683 u32 stats_index)
3684{
Filip Tehlar21511912017-04-07 10:41:42 +02003685 vlib_counter_t v;
3686 vlib_combined_counter_main_t *cm = &lgm->counters;
Filip Tehlar4868ff62017-03-09 16:48:39 +01003687 lisp_gpe_fwd_entry_key_t fwd_key;
3688 const lisp_gpe_tunnel_t *lgt;
3689 fwd_entry_t *fe;
3690
3691 memset (stat, 0, sizeof (*stat));
3692 memset (&fwd_key, 0, sizeof (fwd_key));
3693
3694 fe = pool_elt_at_index (lcm->fwd_entry_pool, key->fwd_entry_index);
3695 ASSERT (fe != 0);
3696
3697 gid_to_dp_address (&fe->reid, &stat->deid);
3698 gid_to_dp_address (&fe->leid, &stat->seid);
3699 stat->vni = gid_address_vni (&fe->reid);
3700
3701 lgt = lisp_gpe_tunnel_get (key->tunnel_index);
3702 stat->loc_rloc = lgt->key->lcl;
3703 stat->rmt_rloc = lgt->key->rmt;
3704
Filip Tehlar21511912017-04-07 10:41:42 +02003705 vlib_get_combined_counter (cm, stats_index, &v);
3706 stat->counters = v;
Filip Tehlar4868ff62017-03-09 16:48:39 +01003707 return 1;
3708}
3709
3710lisp_api_stats_t *
3711vnet_lisp_get_stats (void)
3712{
3713 lisp_gpe_main_t *lgm = vnet_lisp_gpe_get_main ();
3714 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3715 lisp_api_stats_t *stats = 0, stat;
3716 lisp_stats_key_t *key;
3717 u32 index;
3718
3719 /* *INDENT-OFF* */
3720 hash_foreach_mem (key, index, lgm->lisp_stats_index_by_key,
3721 {
3722 if (lisp_stats_api_fill (lcm, lgm, &stat, key, index))
3723 vec_add1 (stats, stat);
3724 });
3725 /* *INDENT-ON* */
3726
3727 return stats;
3728}
3729
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003730static void *
Florin Corasa2157cf2016-08-16 21:09:14 +02003731send_map_request_thread_fn (void *arg)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003732{
Florin Corasa2157cf2016-08-16 21:09:14 +02003733 map_request_args_t *a = arg;
3734 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003735
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003736 if (a->is_resend)
3737 resend_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked);
3738 else
Filip Tehlarcdab4bd2016-12-06 10:31:57 +01003739 send_encapsulated_map_request (lcm, &a->seid, &a->deid, a->smr_invoked);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003740
3741 return 0;
3742}
3743
3744static int
3745queue_map_request (gid_address_t * seid, gid_address_t * deid,
Florin Corasa2157cf2016-08-16 21:09:14 +02003746 u8 smr_invoked, u8 is_resend)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003747{
3748 map_request_args_t a;
3749
3750 a.is_resend = is_resend;
3751 gid_address_copy (&a.seid, seid);
3752 gid_address_copy (&a.deid, deid);
3753 a.smr_invoked = smr_invoked;
3754
3755 vl_api_rpc_call_main_thread (send_map_request_thread_fn,
Florin Corasa2157cf2016-08-16 21:09:14 +02003756 (u8 *) & a, sizeof (a));
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003757 return 0;
3758}
3759
3760/**
3761 * Take an action with a pending map request depending on expiration time
3762 * and re-try counters.
3763 */
3764static void
3765update_pending_request (pending_map_request_t * r, f64 dt)
3766{
Florin Corasa2157cf2016-08-16 21:09:14 +02003767 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003768 lisp_msmr_t *mr;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003769
3770 if (r->time_to_expire - dt < 0)
3771 /* it's time to decide what to do with this pending request */
3772 {
3773 if (r->retries_num >= NUMBER_OF_RETRIES)
Florin Corasa2157cf2016-08-16 21:09:14 +02003774 /* too many retries -> assume current map resolver is not available */
3775 {
3776 mr = get_map_resolver (&lcm->active_map_resolver);
3777 if (!mr)
3778 {
3779 clib_warning ("Map resolver %U not found - probably deleted "
3780 "by the user recently.", format_ip_address,
3781 &lcm->active_map_resolver);
3782 }
3783 else
3784 {
3785 clib_warning ("map resolver %U is unreachable, ignoring",
3786 format_ip_address, &lcm->active_map_resolver);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003787
Florin Corasa2157cf2016-08-16 21:09:14 +02003788 /* mark current map resolver unavailable so it won't be
3789 * selected next time */
3790 mr->is_down = 1;
3791 mr->last_update = vlib_time_now (lcm->vlib_main);
3792 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003793
Florin Corasa2157cf2016-08-16 21:09:14 +02003794 reset_pending_mr_counters (r);
3795 elect_map_resolver (lcm);
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003796
Florin Corasa2157cf2016-08-16 21:09:14 +02003797 /* try to find a next eligible map resolver and re-send */
3798 queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
3799 1 /* resend */ );
3800 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003801 else
Florin Corasa2157cf2016-08-16 21:09:14 +02003802 {
3803 /* try again */
3804 queue_map_request (&r->src, &r->dst, r->is_smr_invoked,
3805 1 /* resend */ );
3806 r->retries_num++;
3807 r->time_to_expire = PENDING_MREQ_EXPIRATION_TIME;
3808 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003809 }
3810 else
3811 r->time_to_expire -= dt;
3812}
3813
3814static void
3815remove_dead_pending_map_requests (lisp_cp_main_t * lcm)
3816{
Florin Corasa2157cf2016-08-16 21:09:14 +02003817 u64 *nonce;
3818 pending_map_request_t *pmr;
3819 u32 *to_be_removed = 0, *pmr_index;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003820
Florin Corasa2157cf2016-08-16 21:09:14 +02003821 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003822 pool_foreach (pmr, lcm->pending_map_requests_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02003823 ({
3824 if (pmr->to_be_removed)
3825 {
3826 clib_fifo_foreach (nonce, pmr->nonces, ({
3827 hash_unset (lcm->pending_map_requests_by_nonce, nonce[0]);
3828 }));
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003829
Florin Corasa2157cf2016-08-16 21:09:14 +02003830 vec_add1 (to_be_removed, pmr - lcm->pending_map_requests_pool);
3831 }
3832 }));
3833 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003834
3835 vec_foreach (pmr_index, to_be_removed)
3836 pool_put_index (lcm->pending_map_requests_by_nonce, pmr_index[0]);
3837
3838 vec_free (to_be_removed);
3839}
3840
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003841static void
3842update_rloc_probing (lisp_cp_main_t * lcm, f64 dt)
3843{
3844 static f64 time_left = RLOC_PROBING_INTERVAL;
3845
3846 if (!lcm->is_enabled || !lcm->rloc_probing)
3847 return;
3848
3849 time_left -= dt;
3850 if (time_left <= 0)
3851 {
3852 time_left = RLOC_PROBING_INTERVAL;
3853 send_rloc_probes (lcm);
3854 }
3855}
3856
3857static void
3858update_map_register (lisp_cp_main_t * lcm, f64 dt)
3859{
3860 static f64 time_left = QUICK_MAP_REGISTER_INTERVAL;
3861 static u64 mreg_sent_counter = 0;
3862
3863 if (!lcm->is_enabled || !lcm->map_registering)
3864 return;
3865
3866 time_left -= dt;
3867 if (time_left <= 0)
3868 {
3869 if (mreg_sent_counter >= QUICK_MAP_REGISTER_MSG_COUNT)
3870 time_left = MAP_REGISTER_INTERVAL;
3871 else
3872 {
3873 mreg_sent_counter++;
3874 time_left = QUICK_MAP_REGISTER_INTERVAL;
3875 }
3876 send_map_register (lcm, 1 /* want map notify */ );
3877 }
3878}
3879
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003880static uword
3881send_map_resolver_service (vlib_main_t * vm,
Florin Corasa2157cf2016-08-16 21:09:14 +02003882 vlib_node_runtime_t * rt, vlib_frame_t * f)
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003883{
Filip Tehlar9677a942016-11-28 10:23:31 +01003884 u32 *expired = 0;
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003885 f64 period = 2.0;
Florin Corasa2157cf2016-08-16 21:09:14 +02003886 pending_map_request_t *pmr;
3887 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003888
3889 while (1)
3890 {
3891 vlib_process_wait_for_event_or_clock (vm, period);
3892
3893 /* currently no signals are expected - just wait for clock */
3894 (void) vlib_process_get_events (vm, 0);
3895
Florin Corasa2157cf2016-08-16 21:09:14 +02003896 /* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003897 pool_foreach (pmr, lcm->pending_map_requests_pool,
Florin Corasa2157cf2016-08-16 21:09:14 +02003898 ({
3899 if (!pmr->to_be_removed)
3900 update_pending_request (pmr, period);
3901 }));
3902 /* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003903
3904 remove_dead_pending_map_requests (lcm);
Filip Tehlar397fd7d2016-10-26 14:31:24 +02003905
3906 update_map_register (lcm, period);
3907 update_rloc_probing (lcm, period);
Filip Tehlar9677a942016-11-28 10:23:31 +01003908
3909 u64 now = clib_cpu_time_now ();
3910
3911 expired = timing_wheel_advance (&lcm->wheel, now, expired, 0);
3912 if (vec_len (expired) > 0)
3913 {
3914 u32 *mi = 0;
3915 vec_foreach (mi, expired)
3916 {
3917 remove_expired_mapping (lcm, mi[0]);
3918 }
3919 _vec_len (expired) = 0;
3920 }
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003921 }
3922
3923 /* unreachable */
3924 return 0;
3925}
3926
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01003927vnet_api_error_t
3928vnet_lisp_stats_enable_disable (u8 enable)
3929{
3930 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3931
3932 if (vnet_lisp_enable_disable_status () == 0)
3933 return VNET_API_ERROR_LISP_DISABLED;
3934
Filip Tehlar4868ff62017-03-09 16:48:39 +01003935 if (enable)
3936 lcm->flags |= LISP_FLAG_STATS_ENABLED;
3937 else
3938 lcm->flags &= ~LISP_FLAG_STATS_ENABLED;
3939
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01003940 return 0;
3941}
3942
3943u8
3944vnet_lisp_stats_enable_disable_state (void)
3945{
3946 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
3947
3948 if (vnet_lisp_enable_disable_status () == 0)
3949 return VNET_API_ERROR_LISP_DISABLED;
3950
Filip Tehlar4868ff62017-03-09 16:48:39 +01003951 return lcm->flags & LISP_FLAG_STATS_ENABLED;
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01003952}
3953
Florin Corasa2157cf2016-08-16 21:09:14 +02003954/* *INDENT-OFF* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003955VLIB_REGISTER_NODE (lisp_retry_service_node,static) = {
3956 .function = send_map_resolver_service,
3957 .type = VLIB_NODE_TYPE_PROCESS,
3958 .name = "lisp-retry-service",
3959 .process_log2_n_stack_bytes = 16,
3960};
Florin Corasa2157cf2016-08-16 21:09:14 +02003961/* *INDENT-ON* */
Filip Tehlara5abdeb2016-07-18 17:35:40 +02003962
Florin Corasa2157cf2016-08-16 21:09:14 +02003963VLIB_INIT_FUNCTION (lisp_cp_init);
3964
3965/*
3966 * fd.io coding-style-patch-verification: ON
3967 *
3968 * Local Variables:
3969 * eval: (c-set-style "gnu")
3970 * End:
3971 */