blob: 0def13c6db9b7ed22957b041e8f9fb02809a06a7 [file] [log] [blame]
Filip Tehlar694396d2017-02-17 14:29:11 +01001/*
2 *------------------------------------------------------------------
3 * one_api.c - Overlay Network Engine API
4 *
5 * Copyright (c) 2016-2017 Cisco and/or its affiliates.
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at:
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *------------------------------------------------------------------
18 */
19
20#include <vnet/vnet.h>
21#include <vlibmemory/api.h>
22
23#include <vnet/interface.h>
24#include <vnet/api_errno.h>
25#include <vnet/lisp-cp/control.h>
26#include <vnet/lisp-gpe/lisp_gpe.h>
27
28#include <vnet/vnet_msg_enum.h>
29
Filip Tehlar974cdc62017-02-22 18:09:49 +010030#define vl_api_one_remote_locator_t_endian vl_noop_handler
31#define vl_api_one_remote_locator_t_print vl_noop_handler
32#define vl_api_one_local_locator_t_endian vl_noop_handler
33#define vl_api_one_local_locator_t_print vl_noop_handler
Filip Tehlar694396d2017-02-17 14:29:11 +010034
35#define vl_api_one_add_del_locator_set_t_endian vl_noop_handler
36#define vl_api_one_add_del_locator_set_t_print vl_noop_handler
37#define vl_api_one_add_del_remote_mapping_t_endian vl_noop_handler
38#define vl_api_one_add_del_remote_mapping_t_print vl_noop_handler
39
40#define vl_api_one_add_del_locator_set_t_endian vl_noop_handler
41#define vl_api_one_add_del_locator_set_t_print vl_noop_handler
42#define vl_api_one_add_del_remote_mapping_t_endian vl_noop_handler
43#define vl_api_one_add_del_remote_mapping_t_print vl_noop_handler
44
Filip Tehlard5a65db2017-05-17 17:21:10 +020045#define vl_api_one_l2_arp_entry_t_endian vl_noop_handler
46#define vl_api_one_l2_arp_entry_t_print vl_noop_handler
47#define vl_api_one_add_del_l2_arp_entry vl_noop_handler
48#define vl_api_one_l2_arp_bd_get vl_noop_handler
49
Filip Tehlard6307132017-09-04 18:54:33 +020050#define vl_api_one_ndp_entry_t_endian vl_noop_handler
51#define vl_api_one_ndp_entry_t_print vl_noop_handler
52#define vl_api_one_ndp_entries_get_reply_t_endian vl_noop_handler
53#define vl_api_one_ndp_entries_get_reply_t_print vl_noop_handler
54
Filip Tehlar694396d2017-02-17 14:29:11 +010055#define vl_typedefs /* define message structures */
56#include <vnet/vnet_all_api_h.h>
57#undef vl_typedefs
58
59#define vl_endianfun /* define message structures */
60#include <vnet/vnet_all_api_h.h>
61#undef vl_endianfun
62
63/* instantiate all the print functions we know about */
64#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
65#define vl_printfun
66#include <vnet/vnet_all_api_h.h>
67#undef vl_printfun
68
69#include <vlibapi/api_helper_macros.h>
70
Filip Tehlar4868ff62017-03-09 16:48:39 +010071#define REPLY_DETAILS(t, body) \
72do { \
73 unix_shared_memory_queue_t * q; \
74 rv = vl_msg_api_pd_handler (mp, rv); \
75 q = vl_api_client_index_to_input_queue (mp->client_index); \
76 if (!q) \
77 return; \
78 \
79 rmp = vl_msg_api_alloc (sizeof (*rmp)); \
80 rmp->_vl_msg_id = ntohs((t)); \
81 rmp->context = mp->context; \
82 do {body;} while (0); \
83 vl_msg_api_send_shmem (q, (u8 *)&rmp); \
84} while(0);
85
Filip Tehlar694396d2017-02-17 14:29:11 +010086#define foreach_vpe_api_msg \
87_(ONE_ADD_DEL_LOCATOR_SET, one_add_del_locator_set) \
88_(ONE_ADD_DEL_LOCATOR, one_add_del_locator) \
89_(ONE_ADD_DEL_LOCAL_EID, one_add_del_local_eid) \
90_(ONE_ADD_DEL_MAP_RESOLVER, one_add_del_map_resolver) \
91_(ONE_ADD_DEL_MAP_SERVER, one_add_del_map_server) \
92_(ONE_ENABLE_DISABLE, one_enable_disable) \
93_(ONE_RLOC_PROBE_ENABLE_DISABLE, one_rloc_probe_enable_disable) \
94_(ONE_MAP_REGISTER_ENABLE_DISABLE, one_map_register_enable_disable) \
Filip Tehlar7048ff12017-07-27 08:09:14 +020095_(ONE_MAP_REGISTER_FALLBACK_THRESHOLD, \
96 one_map_register_fallback_threshold) \
Filip Tehlar694396d2017-02-17 14:29:11 +010097_(ONE_ADD_DEL_REMOTE_MAPPING, one_add_del_remote_mapping) \
98_(ONE_ADD_DEL_ADJACENCY, one_add_del_adjacency) \
99_(ONE_PITR_SET_LOCATOR_SET, one_pitr_set_locator_set) \
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200100_(ONE_NSH_SET_LOCATOR_SET, one_nsh_set_locator_set) \
Filip Tehlar694396d2017-02-17 14:29:11 +0100101_(ONE_MAP_REQUEST_MODE, one_map_request_mode) \
102_(ONE_EID_TABLE_ADD_DEL_MAP, one_eid_table_add_del_map) \
103_(ONE_LOCATOR_SET_DUMP, one_locator_set_dump) \
104_(ONE_LOCATOR_DUMP, one_locator_dump) \
105_(ONE_EID_TABLE_DUMP, one_eid_table_dump) \
106_(ONE_MAP_RESOLVER_DUMP, one_map_resolver_dump) \
107_(ONE_MAP_SERVER_DUMP, one_map_server_dump) \
108_(ONE_EID_TABLE_MAP_DUMP, one_eid_table_map_dump) \
109_(ONE_EID_TABLE_VNI_DUMP, one_eid_table_vni_dump) \
110_(ONE_ADJACENCIES_GET, one_adjacencies_get) \
Filip Tehlar1e553a02017-08-02 12:45:07 +0200111_(ONE_MAP_REGISTER_SET_TTL, one_map_register_set_ttl) \
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200112_(SHOW_ONE_NSH_MAPPING, show_one_nsh_mapping) \
Filip Tehlar694396d2017-02-17 14:29:11 +0100113_(SHOW_ONE_RLOC_PROBE_STATE, show_one_rloc_probe_state) \
114_(SHOW_ONE_MAP_REGISTER_STATE, show_one_map_register_state) \
Filip Tehlar1e553a02017-08-02 12:45:07 +0200115_(SHOW_ONE_MAP_REGISTER_TTL, show_one_map_register_ttl) \
Filip Tehlar7048ff12017-07-27 08:09:14 +0200116_(SHOW_ONE_MAP_REGISTER_FALLBACK_THRESHOLD, \
117 show_one_map_register_fallback_threshold) \
Filip Tehlar694396d2017-02-17 14:29:11 +0100118_(SHOW_ONE_STATUS, show_one_status) \
119_(ONE_ADD_DEL_MAP_REQUEST_ITR_RLOCS, \
120 one_add_del_map_request_itr_rlocs) \
121_(ONE_GET_MAP_REQUEST_ITR_RLOCS, one_get_map_request_itr_rlocs) \
122_(SHOW_ONE_PITR, show_one_pitr) \
123_(SHOW_ONE_MAP_REQUEST_MODE, show_one_map_request_mode) \
124_(ONE_USE_PETR, one_use_petr) \
125_(SHOW_ONE_USE_PETR, show_one_use_petr) \
Filip Tehlar7eaf0e52017-03-08 08:46:51 +0100126_(SHOW_ONE_STATS_ENABLE_DISABLE, show_one_stats_enable_disable) \
127_(ONE_STATS_ENABLE_DISABLE, one_stats_enable_disable) \
128_(ONE_STATS_DUMP, one_stats_dump) \
Filip Tehlar21511912017-04-07 10:41:42 +0200129_(ONE_STATS_FLUSH, one_stats_flush) \
Filip Tehlard5a65db2017-05-17 17:21:10 +0200130_(ONE_L2_ARP_BD_GET, one_l2_arp_bd_get) \
131_(ONE_L2_ARP_ENTRIES_GET, one_l2_arp_entries_get) \
132_(ONE_ADD_DEL_L2_ARP_ENTRY, one_add_del_l2_arp_entry) \
Filip Tehlar05879992017-09-05 15:46:09 +0200133_(ONE_ADD_DEL_NDP_ENTRY, one_add_del_ndp_entry) \
134_(ONE_NDP_BD_GET, one_ndp_bd_get) \
135_(ONE_NDP_ENTRIES_GET, one_ndp_entries_get) \
Filip Tehlara4980b82017-09-27 14:32:02 +0200136_(ONE_SET_TRANSPORT_PROTOCOL, one_set_transport_protocol) \
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700137_(ONE_GET_TRANSPORT_PROTOCOL, one_get_transport_protocol) \
138_(ONE_ENABLE_DISABLE_XTR_MODE, one_enable_disable_xtr_mode) \
139_(ONE_SHOW_XTR_MODE, one_show_xtr_mode) \
140_(ONE_ENABLE_DISABLE_PITR_MODE, one_enable_disable_pitr_mode) \
141_(ONE_SHOW_PITR_MODE, one_show_pitr_mode) \
142_(ONE_ENABLE_DISABLE_PETR_MODE, one_enable_disable_petr_mode) \
143_(ONE_SHOW_PETR_MODE, one_show_petr_mode) \
144
Filip Tehlar694396d2017-02-17 14:29:11 +0100145
146static locator_t *
Filip Tehlar974cdc62017-02-22 18:09:49 +0100147unformat_one_locs (vl_api_one_remote_locator_t * rmt_locs, u32 rloc_num)
Filip Tehlar694396d2017-02-17 14:29:11 +0100148{
149 u32 i;
150 locator_t *locs = 0, loc;
Filip Tehlar974cdc62017-02-22 18:09:49 +0100151 vl_api_one_remote_locator_t *r;
Filip Tehlar694396d2017-02-17 14:29:11 +0100152
153 for (i = 0; i < rloc_num; i++)
154 {
155 /* remote locators */
156 r = &rmt_locs[i];
157 memset (&loc, 0, sizeof (loc));
158 gid_address_ip_set (&loc.address, &r->addr, r->is_ip4 ? IP4 : IP6);
159
160 loc.priority = r->priority;
161 loc.weight = r->weight;
162
163 vec_add1 (locs, loc);
164 }
165 return locs;
166}
167
168static void
Filip Tehlar1e553a02017-08-02 12:45:07 +0200169vl_api_one_map_register_set_ttl_t_handler (vl_api_one_map_register_set_ttl_t *
170 mp)
171{
172 vl_api_one_map_register_set_ttl_reply_t *rmp;
173 int rv = 0;
174
Filip Tehlar5391e192017-08-04 09:13:50 +0200175 mp->ttl = clib_net_to_host_u32 (mp->ttl);
Filip Tehlar1e553a02017-08-02 12:45:07 +0200176 rv = vnet_lisp_map_register_set_ttl (mp->ttl);
177
178 REPLY_MACRO (VL_API_ONE_MAP_REGISTER_SET_TTL_REPLY);
179}
180
181static void
182 vl_api_show_one_map_register_ttl_t_handler
183 (vl_api_show_one_map_register_ttl_t * mp)
184{
185 vl_api_show_one_map_register_ttl_reply_t *rmp;
186 int rv = 0;
187
188 u32 ttl = vnet_lisp_map_register_get_ttl ();
189 /* *INDENT-OFF* */
190 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_TTL_REPLY,
191 ({
192 rmp->ttl = clib_host_to_net_u32 (ttl);
193 }));
194 /* *INDENT-ON* */
195}
196
197static void
Filip Tehlar694396d2017-02-17 14:29:11 +0100198vl_api_one_add_del_locator_set_t_handler (vl_api_one_add_del_locator_set_t *
199 mp)
200{
201 vl_api_one_add_del_locator_set_reply_t *rmp;
202 int rv = 0;
203 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
204 locator_t locator;
Filip Tehlar974cdc62017-02-22 18:09:49 +0100205 vl_api_one_local_locator_t *ls_loc;
Filip Tehlar694396d2017-02-17 14:29:11 +0100206 u32 ls_index = ~0, locator_num;
207 u8 *locator_name = NULL;
208 int i;
209
210 memset (a, 0, sizeof (a[0]));
211
Filip Tehlar9d286a42017-10-26 23:57:09 -0700212 mp->locator_set_name[sizeof (mp->locator_set_name) - 1] = 0;
Filip Tehlar694396d2017-02-17 14:29:11 +0100213 locator_name = format (0, "%s", mp->locator_set_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200214 vec_terminate_c_string (locator_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100215
216 a->name = locator_name;
217 a->is_add = mp->is_add;
218 a->local = 1;
219 locator_num = clib_net_to_host_u32 (mp->locator_num);
220
221 memset (&locator, 0, sizeof (locator));
222 for (i = 0; i < locator_num; i++)
223 {
224 ls_loc = &mp->locators[i];
225 VALIDATE_SW_IF_INDEX (ls_loc);
226
227 locator.sw_if_index = htonl (ls_loc->sw_if_index);
228 locator.priority = ls_loc->priority;
229 locator.weight = ls_loc->weight;
230 locator.local = 1;
231 vec_add1 (a->locators, locator);
232 }
233
234 rv = vnet_lisp_add_del_locator_set (a, &ls_index);
235
236 BAD_SW_IF_INDEX_LABEL;
237
238 vec_free (locator_name);
239 vec_free (a->locators);
240
241 /* *INDENT-OFF* */
242 REPLY_MACRO2 (VL_API_ONE_ADD_DEL_LOCATOR_SET_REPLY,
243 ({
244 rmp->ls_index = clib_host_to_net_u32 (ls_index);
245 }));
246 /* *INDENT-ON* */
247}
248
249static void
250vl_api_one_add_del_locator_t_handler (vl_api_one_add_del_locator_t * mp)
251{
252 vl_api_one_add_del_locator_reply_t *rmp;
253 int rv = 0;
254 locator_t locator, *locators = NULL;
255 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
256 u32 ls_index = ~0;
257 u8 *locator_name = NULL;
258
259 memset (&locator, 0, sizeof (locator));
260 memset (a, 0, sizeof (a[0]));
261
262 locator.sw_if_index = ntohl (mp->sw_if_index);
263 locator.priority = mp->priority;
264 locator.weight = mp->weight;
265 locator.local = 1;
266 vec_add1 (locators, locator);
267
Filip Tehlar9d286a42017-10-26 23:57:09 -0700268 mp->locator_set_name[sizeof (mp->locator_set_name) - 1] = 0;
Filip Tehlar694396d2017-02-17 14:29:11 +0100269 locator_name = format (0, "%s", mp->locator_set_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200270 vec_terminate_c_string (locator_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100271
272 a->name = locator_name;
273 a->locators = locators;
274 a->is_add = mp->is_add;
275 a->local = 1;
276
277 rv = vnet_lisp_add_del_locator (a, NULL, &ls_index);
278
279 vec_free (locators);
280 vec_free (locator_name);
281
282 REPLY_MACRO (VL_API_ONE_ADD_DEL_LOCATOR_REPLY);
283}
284
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200285typedef struct
286{
287 u32 spi;
288 u8 si;
289} __attribute__ ((__packed__)) lisp_nsh_api_t;
290
Filip Tehlar694396d2017-02-17 14:29:11 +0100291static int
292unformat_one_eid_api (gid_address_t * dst, u32 vni, u8 type, void *src,
293 u8 len)
294{
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200295 lisp_nsh_api_t *nsh;
296
Filip Tehlar694396d2017-02-17 14:29:11 +0100297 switch (type)
298 {
299 case 0: /* ipv4 */
300 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
301 gid_address_ip_set (dst, src, IP4);
302 gid_address_ippref_len (dst) = len;
303 ip_prefix_normalize (&gid_address_ippref (dst));
304 break;
305 case 1: /* ipv6 */
306 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
307 gid_address_ip_set (dst, src, IP6);
308 gid_address_ippref_len (dst) = len;
309 ip_prefix_normalize (&gid_address_ippref (dst));
310 break;
311 case 2: /* l2 mac */
312 gid_address_type (dst) = GID_ADDR_MAC;
313 clib_memcpy (&gid_address_mac (dst), src, 6);
314 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200315 case 3: /* NSH */
316 gid_address_type (dst) = GID_ADDR_NSH;
317 nsh = src;
318 gid_address_nsh_spi (dst) = clib_net_to_host_u32 (nsh->spi);
319 gid_address_nsh_si (dst) = nsh->si;
320 break;
Filip Tehlar694396d2017-02-17 14:29:11 +0100321 default:
322 /* unknown type */
323 return VNET_API_ERROR_INVALID_VALUE;
324 }
325
326 gid_address_vni (dst) = vni;
327
328 return 0;
329}
330
331static void
332vl_api_one_add_del_local_eid_t_handler (vl_api_one_add_del_local_eid_t * mp)
333{
334 vl_api_one_add_del_local_eid_reply_t *rmp;
335 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
336 int rv = 0;
337 gid_address_t _eid, *eid = &_eid;
338 uword *p = NULL;
339 u32 locator_set_index = ~0, map_index = ~0;
340 vnet_lisp_add_del_mapping_args_t _a, *a = &_a;
341 u8 *name = NULL, *key = NULL;
342 memset (a, 0, sizeof (a[0]));
343 memset (eid, 0, sizeof (eid[0]));
344
345 rv = unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
346 mp->eid_type, mp->eid, mp->prefix_len);
347 if (rv)
348 goto out;
349
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200350 if (gid_address_type (eid) == GID_ADDR_NSH)
351 {
352 rv = VNET_API_ERROR_INVALID_VALUE;
353 goto out;
354 }
355
Filip Tehlar9d286a42017-10-26 23:57:09 -0700356 mp->locator_set_name[sizeof (mp->locator_set_name) - 1] = 0;
Filip Tehlar694396d2017-02-17 14:29:11 +0100357 name = format (0, "%s", mp->locator_set_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200358 vec_terminate_c_string (name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100359 p = hash_get_mem (lcm->locator_set_index_by_name, name);
360 if (!p)
361 {
362 rv = VNET_API_ERROR_INVALID_VALUE;
363 goto out;
364 }
365 locator_set_index = p[0];
366
367 if (*mp->key)
368 key = format (0, "%s", mp->key);
369
370 /* XXX treat batch configuration */
371 a->is_add = mp->is_add;
372 gid_address_copy (&a->eid, eid);
373 a->locator_set_index = locator_set_index;
374 a->local = 1;
375 a->key = key;
376 a->key_id = clib_net_to_host_u16 (mp->key_id);
377
378 rv = vnet_lisp_add_del_local_mapping (a, &map_index);
379
380out:
381 vec_free (name);
382 vec_free (key);
383 gid_address_free (&a->eid);
384
385 REPLY_MACRO (VL_API_ONE_ADD_DEL_LOCAL_EID_REPLY);
386}
387
388static void
389 vl_api_one_eid_table_add_del_map_t_handler
390 (vl_api_one_eid_table_add_del_map_t * mp)
391{
392 vl_api_one_eid_table_add_del_map_reply_t *rmp;
393 int rv = 0;
394 rv = vnet_lisp_eid_table_map (clib_net_to_host_u32 (mp->vni),
395 clib_net_to_host_u32 (mp->dp_table),
396 mp->is_l2, mp->is_add);
397REPLY_MACRO (VL_API_ONE_EID_TABLE_ADD_DEL_MAP_REPLY)}
398
399static void
400vl_api_one_add_del_map_server_t_handler (vl_api_one_add_del_map_server_t * mp)
401{
402 vl_api_one_add_del_map_server_reply_t *rmp;
403 int rv = 0;
404 ip_address_t addr;
405
406 memset (&addr, 0, sizeof (addr));
407
408 ip_address_set (&addr, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
409 rv = vnet_lisp_add_del_map_server (&addr, mp->is_add);
410
411 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_SERVER_REPLY);
412}
413
414static void
415vl_api_one_add_del_map_resolver_t_handler (vl_api_one_add_del_map_resolver_t
416 * mp)
417{
418 vl_api_one_add_del_map_resolver_reply_t *rmp;
419 int rv = 0;
420 vnet_lisp_add_del_map_resolver_args_t _a, *a = &_a;
421
422 memset (a, 0, sizeof (a[0]));
423
424 a->is_add = mp->is_add;
425 ip_address_set (&a->address, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
426
427 rv = vnet_lisp_add_del_map_resolver (a);
428
429 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_RESOLVER_REPLY);
430}
431
432static void
433 vl_api_one_map_register_enable_disable_t_handler
434 (vl_api_one_map_register_enable_disable_t * mp)
435{
436 vl_api_one_map_register_enable_disable_reply_t *rmp;
437 int rv = 0;
438
439 vnet_lisp_map_register_enable_disable (mp->is_enabled);
440 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
441}
442
443static void
444 vl_api_one_rloc_probe_enable_disable_t_handler
445 (vl_api_one_rloc_probe_enable_disable_t * mp)
446{
447 vl_api_one_rloc_probe_enable_disable_reply_t *rmp;
448 int rv = 0;
449
450 vnet_lisp_rloc_probe_enable_disable (mp->is_enabled);
451 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
452}
453
454static void
455vl_api_one_enable_disable_t_handler (vl_api_one_enable_disable_t * mp)
456{
457 vl_api_one_enable_disable_reply_t *rmp;
458 int rv = 0;
459
460 vnet_lisp_enable_disable (mp->is_en);
461 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
462}
463
464static void
465 vl_api_show_one_map_request_mode_t_handler
466 (vl_api_show_one_map_request_mode_t * mp)
467{
468 int rv = 0;
469 vl_api_show_one_map_request_mode_reply_t *rmp;
470
471 /* *INDENT-OFF* */
472 REPLY_MACRO2(VL_API_SHOW_ONE_MAP_REQUEST_MODE_REPLY,
473 ({
474 rmp->mode = vnet_lisp_get_map_request_mode ();
475 }));
476 /* *INDENT-ON* */
477}
478
479static void
480vl_api_one_map_request_mode_t_handler (vl_api_one_map_request_mode_t * mp)
481{
482 vl_api_one_map_request_mode_reply_t *rmp;
483 int rv = 0;
484
485 rv = vnet_lisp_set_map_request_mode (mp->mode);
486
487 REPLY_MACRO (VL_API_ONE_MAP_REQUEST_MODE_REPLY);
488}
489
490static void
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200491vl_api_one_nsh_set_locator_set_t_handler (vl_api_one_nsh_set_locator_set_t
492 * mp)
493{
494 vl_api_one_nsh_set_locator_set_reply_t *rmp;
495 int rv = 0;
496 u8 *ls_name = 0;
497
Filip Tehlar9d286a42017-10-26 23:57:09 -0700498 mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200499 ls_name = format (0, "%s", mp->ls_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200500 vec_terminate_c_string (ls_name);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200501 rv = vnet_lisp_nsh_set_locator_set (ls_name, mp->is_add);
502 vec_free (ls_name);
503
504 REPLY_MACRO (VL_API_ONE_PITR_SET_LOCATOR_SET_REPLY);
505}
506
507static void
Filip Tehlar694396d2017-02-17 14:29:11 +0100508vl_api_one_pitr_set_locator_set_t_handler (vl_api_one_pitr_set_locator_set_t
509 * mp)
510{
511 vl_api_one_pitr_set_locator_set_reply_t *rmp;
512 int rv = 0;
513 u8 *ls_name = 0;
514
Filip Tehlar9d286a42017-10-26 23:57:09 -0700515 mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
Filip Tehlar694396d2017-02-17 14:29:11 +0100516 ls_name = format (0, "%s", mp->ls_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200517 vec_terminate_c_string (ls_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100518 rv = vnet_lisp_pitr_set_locator_set (ls_name, mp->is_add);
519 vec_free (ls_name);
520
521 REPLY_MACRO (VL_API_ONE_PITR_SET_LOCATOR_SET_REPLY);
522}
523
524static void
525vl_api_one_use_petr_t_handler (vl_api_one_use_petr_t * mp)
526{
527 vl_api_one_use_petr_reply_t *rmp;
528 int rv = 0;
529 ip_address_t addr;
530
531 ip_address_set (&addr, &mp->address, mp->is_ip4 ? IP4 : IP6);
532 rv = vnet_lisp_use_petr (&addr, mp->is_add);
533
534 REPLY_MACRO (VL_API_ONE_USE_PETR_REPLY);
535}
536
537static void
538vl_api_show_one_use_petr_t_handler (vl_api_show_one_use_petr_t * mp)
539{
540 unix_shared_memory_queue_t *q = NULL;
541 vl_api_show_one_use_petr_reply_t *rmp = NULL;
542 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
543 mapping_t *m;
544 locator_set_t *ls = 0;
545 int rv = 0;
546 locator_t *loc = 0;
547 u8 status = 0;
548 gid_address_t addr;
549
550 q = vl_api_client_index_to_input_queue (mp->client_index);
551 if (q == 0)
552 {
553 return;
554 }
555
556 memset (&addr, 0, sizeof (addr));
557 status = lcm->flags & LISP_FLAG_USE_PETR;
558 if (status)
559 {
560 m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
561 if (~0 != m->locator_set_index)
562 {
563 ls =
564 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
565 loc = pool_elt_at_index (lcm->locator_pool, ls->locator_indices[0]);
566 gid_address_copy (&addr, &loc->address);
567 }
568 }
569
570 /* *INDENT-OFF* */
571 REPLY_MACRO2 (VL_API_SHOW_ONE_USE_PETR_REPLY,
572 {
Filip Tehlar67a99f82017-03-10 13:18:02 +0100573 rmp->status = status;
574 ip_address_t *ip = &gid_address_ip (&addr);
575 switch (ip_addr_version (ip))
576 {
577 case IP4:
578 clib_memcpy (rmp->address, &ip_addr_v4 (ip),
579 sizeof (ip_addr_v4 (ip)));
580 break;
581
582 case IP6:
583 clib_memcpy (rmp->address, &ip_addr_v6 (ip),
584 sizeof (ip_addr_v6 (ip)));
585 break;
586
587 default:
588 ASSERT (0);
589 }
590 rmp->is_ip4 = (gid_address_ip_version (&addr) == IP4);
Filip Tehlar694396d2017-02-17 14:29:11 +0100591 });
592 /* *INDENT-ON* */
593}
594
595static void
596 vl_api_one_add_del_map_request_itr_rlocs_t_handler
597 (vl_api_one_add_del_map_request_itr_rlocs_t * mp)
598{
599 vl_api_one_add_del_map_request_itr_rlocs_reply_t *rmp;
600 int rv = 0;
601 u8 *locator_set_name = NULL;
602 vnet_lisp_add_del_mreq_itr_rloc_args_t _a, *a = &_a;
603
Filip Tehlar9d286a42017-10-26 23:57:09 -0700604 mp->locator_set_name[sizeof (mp->locator_set_name) - 1] = 0;
Filip Tehlar694396d2017-02-17 14:29:11 +0100605 locator_set_name = format (0, "%s", mp->locator_set_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200606 vec_terminate_c_string (locator_set_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100607
608 a->is_add = mp->is_add;
609 a->locator_set_name = locator_set_name;
610
611 rv = vnet_lisp_add_del_mreq_itr_rlocs (a);
612
613 vec_free (locator_set_name);
614
615 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_REQUEST_ITR_RLOCS_REPLY);
616}
617
618static void
619 vl_api_one_add_del_remote_mapping_t_handler
620 (vl_api_one_add_del_remote_mapping_t * mp)
621{
622 locator_t *rlocs = 0;
623 vl_api_one_add_del_remote_mapping_reply_t *rmp;
624 int rv = 0;
625 gid_address_t _eid, *eid = &_eid;
626 u32 rloc_num = clib_net_to_host_u32 (mp->rloc_num);
627
628 memset (eid, 0, sizeof (eid[0]));
629
630 rv = unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
631 mp->eid_type, mp->eid, mp->eid_len);
632 if (rv)
633 goto send_reply;
634
635 rlocs = unformat_one_locs (mp->rlocs, rloc_num);
636
637 if (!mp->is_add)
638 {
639 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
Filip Tehlar0a8840d2017-10-16 05:48:23 -0700640 memset (a, 0, sizeof (a[0]));
Filip Tehlar694396d2017-02-17 14:29:11 +0100641 gid_address_copy (&a->reid, eid);
642 a->is_add = 0;
643 rv = vnet_lisp_add_del_adjacency (a);
644 if (rv)
645 {
646 goto out;
647 }
648 }
649
650 /* NOTE: for now this works as a static remote mapping, i.e.,
651 * not authoritative and ttl infinite. */
Filip Tehlar809bc742017-08-14 19:15:36 +0200652 if (mp->is_add)
653 {
654 vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
655 memset (m_args, 0, sizeof (m_args[0]));
656 gid_address_copy (&m_args->eid, eid);
657 m_args->action = mp->action;
658 m_args->is_static = 1;
659 m_args->ttl = ~0;
660 m_args->authoritative = 0;
661 rv = vnet_lisp_add_mapping (m_args, rlocs, NULL, NULL);
662 }
663 else
664 rv = vnet_lisp_del_mapping (eid, NULL);
Filip Tehlar694396d2017-02-17 14:29:11 +0100665
666 if (mp->del_all)
667 vnet_lisp_clear_all_remote_adjacencies ();
668
669out:
670 vec_free (rlocs);
671send_reply:
672 REPLY_MACRO (VL_API_ONE_ADD_DEL_REMOTE_MAPPING_REPLY);
673}
674
675static void
676vl_api_one_add_del_adjacency_t_handler (vl_api_one_add_del_adjacency_t * mp)
677{
678 vl_api_one_add_del_adjacency_reply_t *rmp;
679 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
680
681 int rv = 0;
682 memset (a, 0, sizeof (a[0]));
683
684 rv = unformat_one_eid_api (&a->leid, clib_net_to_host_u32 (mp->vni),
685 mp->eid_type, mp->leid, mp->leid_len);
686 rv |= unformat_one_eid_api (&a->reid, clib_net_to_host_u32 (mp->vni),
687 mp->eid_type, mp->reid, mp->reid_len);
688
689 if (rv)
690 goto send_reply;
691
692 a->is_add = mp->is_add;
693 rv = vnet_lisp_add_del_adjacency (a);
694
695send_reply:
696 REPLY_MACRO (VL_API_ONE_ADD_DEL_ADJACENCY_REPLY);
697}
698
699static void
700send_one_locator_details (lisp_cp_main_t * lcm,
701 locator_t * loc,
702 unix_shared_memory_queue_t * q, u32 context)
703{
704 vl_api_one_locator_details_t *rmp;
705
706 rmp = vl_msg_api_alloc (sizeof (*rmp));
707 memset (rmp, 0, sizeof (*rmp));
708 rmp->_vl_msg_id = ntohs (VL_API_ONE_LOCATOR_DETAILS);
709 rmp->context = context;
710
711 rmp->local = loc->local;
712 if (loc->local)
713 {
714 rmp->sw_if_index = ntohl (loc->sw_if_index);
715 }
716 else
717 {
718 rmp->is_ipv6 = gid_address_ip_version (&loc->address);
719 ip_address_copy_addr (rmp->ip_address, &gid_address_ip (&loc->address));
720 }
721 rmp->priority = loc->priority;
722 rmp->weight = loc->weight;
723
724 vl_msg_api_send_shmem (q, (u8 *) & rmp);
725}
726
727static void
728vl_api_one_locator_dump_t_handler (vl_api_one_locator_dump_t * mp)
729{
730 u8 *ls_name = 0;
731 unix_shared_memory_queue_t *q = 0;
732 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
733 locator_set_t *lsit = 0;
734 locator_t *loc = 0;
735 u32 ls_index = ~0, *locit = 0;
736 uword *p = 0;
737
738 q = vl_api_client_index_to_input_queue (mp->client_index);
739 if (q == 0)
740 {
741 return;
742 }
743
744 if (mp->is_index_set)
745 ls_index = htonl (mp->ls_index);
746 else
747 {
748 /* make sure we get a proper C-string */
749 mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
750 ls_name = format (0, "%s", mp->ls_name);
Gabriel Ganne3491d7f2017-10-19 15:10:46 +0200751 vec_terminate_c_string (ls_name);
Filip Tehlar694396d2017-02-17 14:29:11 +0100752 p = hash_get_mem (lcm->locator_set_index_by_name, ls_name);
753 if (!p)
754 goto out;
755 ls_index = p[0];
756 }
757
758 if (pool_is_free_index (lcm->locator_set_pool, ls_index))
759 return;
760
761 lsit = pool_elt_at_index (lcm->locator_set_pool, ls_index);
762
763 vec_foreach (locit, lsit->locator_indices)
764 {
765 loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
766 send_one_locator_details (lcm, loc, q, mp->context);
767 };
768out:
769 vec_free (ls_name);
770}
771
772static void
773send_one_locator_set_details (lisp_cp_main_t * lcm,
774 locator_set_t * lsit,
775 unix_shared_memory_queue_t * q,
776 u32 context, u32 ls_index)
777{
778 vl_api_one_locator_set_details_t *rmp;
779 u8 *str = 0;
780
781 rmp = vl_msg_api_alloc (sizeof (*rmp));
782 memset (rmp, 0, sizeof (*rmp));
783 rmp->_vl_msg_id = ntohs (VL_API_ONE_LOCATOR_SET_DETAILS);
784 rmp->context = context;
785
786 rmp->ls_index = htonl (ls_index);
787 if (lsit->local)
788 {
789 ASSERT (lsit->name != NULL);
790 strncpy ((char *) rmp->ls_name, (char *) lsit->name,
791 vec_len (lsit->name));
792 }
793 else
794 {
795 str = format (0, "<remote-%d>", ls_index);
796 strncpy ((char *) rmp->ls_name, (char *) str, vec_len (str));
797 vec_free (str);
798 }
799
800 vl_msg_api_send_shmem (q, (u8 *) & rmp);
801}
802
803static void
804vl_api_one_locator_set_dump_t_handler (vl_api_one_locator_set_dump_t * mp)
805{
806 unix_shared_memory_queue_t *q = NULL;
807 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
808 locator_set_t *lsit = NULL;
809 u8 filter;
810
811 q = vl_api_client_index_to_input_queue (mp->client_index);
812 if (q == 0)
813 {
814 return;
815 }
816
817 filter = mp->filter;
818 /* *INDENT-OFF* */
819 pool_foreach (lsit, lcm->locator_set_pool,
820 ({
821 if (filter && !((1 == filter && lsit->local) ||
822 (2 == filter && !lsit->local)))
823 {
824 continue;
825 }
826 send_one_locator_set_details (lcm, lsit, q, mp->context,
827 lsit - lcm->locator_set_pool);
828 }));
829 /* *INDENT-ON* */
830}
831
832static void
833one_fid_put_api (u8 * dst, fid_address_t * src, u8 * prefix_length)
834{
835 ASSERT (prefix_length);
836 ip_prefix_t *ippref = &fid_addr_ippref (src);
837
838 switch (fid_addr_type (src))
839 {
840 case FID_ADDR_IP_PREF:
841 if (ip_prefix_version (ippref) == IP4)
842 clib_memcpy (dst, &ip_prefix_v4 (ippref), 4);
843 else
844 clib_memcpy (dst, &ip_prefix_v6 (ippref), 16);
845 prefix_length[0] = ip_prefix_len (ippref);
846 break;
847
848 case FID_ADDR_MAC:
849 prefix_length[0] = 0;
850 clib_memcpy (dst, fid_addr_mac (src), 6);
851 break;
852
853 default:
854 clib_warning ("Unknown FID type %d!", fid_addr_type (src));
855 break;
856 }
857}
858
859static u8
860fid_type_to_api_type (fid_address_t * fid)
861{
862 ip_prefix_t *ippref;
863
864 switch (fid_addr_type (fid))
865 {
866 case FID_ADDR_IP_PREF:
867 ippref = &fid_addr_ippref (fid);
868 if (ip_prefix_version (ippref) == IP4)
869 return 0;
870 else if (ip_prefix_version (ippref) == IP6)
871 return 1;
872 else
873 return ~0;
874
875 case FID_ADDR_MAC:
876 return 2;
877 case FID_ADDR_NSH:
878 return 3;
879 }
880
881 return ~0;
882}
883
884static void
885send_one_eid_table_details (mapping_t * mapit,
886 unix_shared_memory_queue_t * q,
887 u32 context, u8 filter)
888{
889 fid_address_t *fid;
890 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
891 locator_set_t *ls = 0;
892 vl_api_one_eid_table_details_t *rmp = NULL;
893 gid_address_t *gid = NULL;
894 u8 *mac = 0;
895 ip_prefix_t *ip_prefix = NULL;
896
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200897 if (mapit->pitr_set || mapit->nsh_set)
Filip Tehlar1e8d01f2017-03-30 15:17:01 +0200898 return;
899
Filip Tehlar694396d2017-02-17 14:29:11 +0100900 switch (filter)
901 {
902 case 0: /* all mappings */
903 break;
904
905 case 1: /* local only */
906 if (!mapit->local)
907 return;
908 break;
909 case 2: /* remote only */
910 if (mapit->local)
911 return;
912 break;
913 default:
914 clib_warning ("Filter error, unknown filter: %d", filter);
915 return;
916 }
917
918 gid = &mapit->eid;
919 ip_prefix = &gid_address_ippref (gid);
920 mac = gid_address_mac (gid);
921
922 rmp = vl_msg_api_alloc (sizeof (*rmp));
923 memset (rmp, 0, sizeof (*rmp));
924 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_DETAILS);
925
926 ls = pool_elt_at_index (lcm->locator_set_pool, mapit->locator_set_index);
927 if (vec_len (ls->locator_indices) == 0)
928 rmp->locator_set_index = ~0;
929 else
930 rmp->locator_set_index = clib_host_to_net_u32 (mapit->locator_set_index);
931
932 rmp->is_local = mapit->local;
933 rmp->ttl = clib_host_to_net_u32 (mapit->ttl);
934 rmp->action = mapit->action;
935 rmp->authoritative = mapit->authoritative;
936
937 switch (gid_address_type (gid))
938 {
939 case GID_ADDR_SRC_DST:
940 rmp->is_src_dst = 1;
941 fid = &gid_address_sd_src (gid);
942 rmp->eid_type = fid_type_to_api_type (fid);
943 one_fid_put_api (rmp->seid, &gid_address_sd_src (gid),
944 &rmp->seid_prefix_len);
945 one_fid_put_api (rmp->eid, &gid_address_sd_dst (gid),
946 &rmp->eid_prefix_len);
947 break;
948 case GID_ADDR_IP_PREFIX:
949 rmp->eid_prefix_len = ip_prefix_len (ip_prefix);
950 if (ip_prefix_version (ip_prefix) == IP4)
951 {
952 rmp->eid_type = 0; /* ipv4 type */
953 clib_memcpy (rmp->eid, &ip_prefix_v4 (ip_prefix),
954 sizeof (ip_prefix_v4 (ip_prefix)));
955 }
956 else
957 {
958 rmp->eid_type = 1; /* ipv6 type */
959 clib_memcpy (rmp->eid, &ip_prefix_v6 (ip_prefix),
960 sizeof (ip_prefix_v6 (ip_prefix)));
961 }
962 break;
963 case GID_ADDR_MAC:
964 rmp->eid_type = 2; /* l2 mac type */
965 clib_memcpy (rmp->eid, mac, 6);
966 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200967 case GID_ADDR_NSH:
968 rmp->eid_type = 3; /* NSH type */
969 lisp_nsh_api_t nsh;
970 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (gid));
971 nsh.si = gid_address_nsh_si (gid);
972 clib_memcpy (rmp->eid, &nsh, sizeof (nsh));
973 break;
Filip Tehlar694396d2017-02-17 14:29:11 +0100974 default:
975 ASSERT (0);
976 }
977 rmp->context = context;
978 rmp->vni = clib_host_to_net_u32 (gid_address_vni (gid));
979 rmp->key_id = clib_host_to_net_u16 (mapit->key_id);
980 memcpy (rmp->key, mapit->key, vec_len (mapit->key));
981 vl_msg_api_send_shmem (q, (u8 *) & rmp);
982}
983
984static void
985vl_api_one_eid_table_dump_t_handler (vl_api_one_eid_table_dump_t * mp)
986{
987 u32 mi;
988 unix_shared_memory_queue_t *q = NULL;
989 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
990 mapping_t *mapit = NULL;
991 gid_address_t _eid, *eid = &_eid;
992
993 q = vl_api_client_index_to_input_queue (mp->client_index);
994 if (q == 0)
995 {
996 return;
997 }
998
999 if (mp->eid_set)
1000 {
1001 memset (eid, 0, sizeof (*eid));
1002
1003 unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
1004 mp->eid_type, mp->eid, mp->prefix_length);
1005
1006 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
1007 if ((u32) ~ 0 == mi)
1008 return;
1009
1010 mapit = pool_elt_at_index (lcm->mapping_pool, mi);
1011 send_one_eid_table_details (mapit, q, mp->context,
1012 0 /* ignore filter */ );
1013 }
1014 else
1015 {
1016 /* *INDENT-OFF* */
1017 pool_foreach (mapit, lcm->mapping_pool,
1018 ({
1019 send_one_eid_table_details(mapit, q, mp->context,
1020 mp->filter);
1021 }));
1022 /* *INDENT-ON* */
1023 }
1024}
1025
1026static void
1027send_one_map_server_details (ip_address_t * ip,
1028 unix_shared_memory_queue_t * q, u32 context)
1029{
1030 vl_api_one_map_server_details_t *rmp = NULL;
1031
1032 rmp = vl_msg_api_alloc (sizeof (*rmp));
1033 memset (rmp, 0, sizeof (*rmp));
1034 rmp->_vl_msg_id = ntohs (VL_API_ONE_MAP_SERVER_DETAILS);
1035
1036 switch (ip_addr_version (ip))
1037 {
1038 case IP4:
1039 rmp->is_ipv6 = 0;
1040 clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
1041 sizeof (ip_addr_v4 (ip)));
1042 break;
1043
1044 case IP6:
1045 rmp->is_ipv6 = 1;
1046 clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
1047 sizeof (ip_addr_v6 (ip)));
1048 break;
1049
1050 default:
1051 ASSERT (0);
1052 }
1053 rmp->context = context;
1054
1055 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1056}
1057
1058static void
1059vl_api_one_map_server_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1060{
1061 unix_shared_memory_queue_t *q = NULL;
1062 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1063 lisp_msmr_t *mr;
1064
1065 q = vl_api_client_index_to_input_queue (mp->client_index);
1066 if (q == 0)
1067 {
1068 return;
1069 }
1070
1071 vec_foreach (mr, lcm->map_servers)
1072 {
1073 send_one_map_server_details (&mr->address, q, mp->context);
1074 }
1075}
1076
1077static void
1078send_one_map_resolver_details (ip_address_t * ip,
1079 unix_shared_memory_queue_t * q, u32 context)
1080{
1081 vl_api_one_map_resolver_details_t *rmp = NULL;
1082
1083 rmp = vl_msg_api_alloc (sizeof (*rmp));
1084 memset (rmp, 0, sizeof (*rmp));
1085 rmp->_vl_msg_id = ntohs (VL_API_ONE_MAP_RESOLVER_DETAILS);
1086
1087 switch (ip_addr_version (ip))
1088 {
1089 case IP4:
1090 rmp->is_ipv6 = 0;
1091 clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
1092 sizeof (ip_addr_v4 (ip)));
1093 break;
1094
1095 case IP6:
1096 rmp->is_ipv6 = 1;
1097 clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
1098 sizeof (ip_addr_v6 (ip)));
1099 break;
1100
1101 default:
1102 ASSERT (0);
1103 }
1104 rmp->context = context;
1105
1106 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1107}
1108
1109static void
1110vl_api_one_map_resolver_dump_t_handler (vl_api_one_map_resolver_dump_t * mp)
1111{
1112 unix_shared_memory_queue_t *q = NULL;
1113 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1114 lisp_msmr_t *mr;
1115
1116 q = vl_api_client_index_to_input_queue (mp->client_index);
1117 if (q == 0)
1118 {
1119 return;
1120 }
1121
1122 vec_foreach (mr, lcm->map_resolvers)
1123 {
1124 send_one_map_resolver_details (&mr->address, q, mp->context);
1125 }
1126}
1127
1128static void
1129send_eid_table_map_pair (hash_pair_t * p,
1130 unix_shared_memory_queue_t * q, u32 context)
1131{
1132 vl_api_one_eid_table_map_details_t *rmp = NULL;
1133
1134 rmp = vl_msg_api_alloc (sizeof (*rmp));
1135 memset (rmp, 0, sizeof (*rmp));
1136 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_MAP_DETAILS);
1137
1138 rmp->vni = clib_host_to_net_u32 (p->key);
1139 rmp->dp_table = clib_host_to_net_u32 (p->value[0]);
1140 rmp->context = context;
1141 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1142}
1143
1144static void
1145vl_api_one_eid_table_map_dump_t_handler (vl_api_one_eid_table_map_dump_t * mp)
1146{
1147 unix_shared_memory_queue_t *q = NULL;
1148 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1149 hash_pair_t *p;
1150 uword *vni_table = 0;
1151
1152 q = vl_api_client_index_to_input_queue (mp->client_index);
1153 if (q == 0)
1154 {
1155 return;
1156 }
1157
1158 if (mp->is_l2)
1159 {
1160 vni_table = lcm->bd_id_by_vni;
1161 }
1162 else
1163 {
1164 vni_table = lcm->table_id_by_vni;
1165 }
1166
1167 /* *INDENT-OFF* */
1168 hash_foreach_pair (p, vni_table,
1169 ({
1170 send_eid_table_map_pair (p, q, mp->context);
1171 }));
1172 /* *INDENT-ON* */
1173}
1174
1175static void
1176send_eid_table_vni (u32 vni, unix_shared_memory_queue_t * q, u32 context)
1177{
1178 vl_api_one_eid_table_vni_details_t *rmp = 0;
1179
1180 rmp = vl_msg_api_alloc (sizeof (*rmp));
1181 memset (rmp, 0, sizeof (*rmp));
1182 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_VNI_DETAILS);
1183 rmp->context = context;
1184 rmp->vni = clib_host_to_net_u32 (vni);
1185 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1186}
1187
1188static void
1189one_adjacency_copy (vl_api_one_adjacency_t * dst, lisp_adjacency_t * adjs)
1190{
1191 lisp_adjacency_t *adj;
1192 vl_api_one_adjacency_t a;
1193 u32 i, n = vec_len (adjs);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001194 lisp_nsh_api_t nsh;
Filip Tehlar694396d2017-02-17 14:29:11 +01001195
1196 for (i = 0; i < n; i++)
1197 {
1198 adj = vec_elt_at_index (adjs, i);
1199 memset (&a, 0, sizeof (a));
1200
1201 switch (gid_address_type (&adj->reid))
1202 {
1203 case GID_ADDR_IP_PREFIX:
1204 a.reid_prefix_len = gid_address_ippref_len (&adj->reid);
1205 a.leid_prefix_len = gid_address_ippref_len (&adj->leid);
1206 if (gid_address_ip_version (&adj->reid) == IP4)
1207 {
1208 a.eid_type = 0; /* ipv4 type */
1209 clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 4);
1210 clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 4);
1211 }
1212 else
1213 {
1214 a.eid_type = 1; /* ipv6 type */
1215 clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 16);
1216 clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 16);
1217 }
1218 break;
1219 case GID_ADDR_MAC:
1220 a.eid_type = 2; /* l2 mac type */
1221 mac_copy (a.reid, gid_address_mac (&adj->reid));
1222 mac_copy (a.leid, gid_address_mac (&adj->leid));
1223 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001224 case GID_ADDR_NSH:
1225 a.eid_type = 3; /* NSH type */
1226 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (&adj->reid));
1227 nsh.si = gid_address_nsh_si (&adj->reid);
1228 clib_memcpy (a.reid, &nsh, sizeof (nsh));
1229
1230 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (&adj->leid));
1231 nsh.si = gid_address_nsh_si (&adj->leid);
1232 clib_memcpy (a.leid, &nsh, sizeof (nsh));
Filip Tehlarb8633d22017-06-09 15:25:57 +02001233 break;
Filip Tehlar694396d2017-02-17 14:29:11 +01001234 default:
1235 ASSERT (0);
1236 }
1237 dst[i] = a;
1238 }
1239}
1240
1241static void
1242 vl_api_show_one_rloc_probe_state_t_handler
1243 (vl_api_show_one_rloc_probe_state_t * mp)
1244{
1245 vl_api_show_one_rloc_probe_state_reply_t *rmp = 0;
1246 int rv = 0;
1247
1248 /* *INDENT-OFF* */
1249 REPLY_MACRO2 (VL_API_SHOW_ONE_RLOC_PROBE_STATE_REPLY,
1250 {
1251 rmp->is_enabled = vnet_lisp_rloc_probe_state_get ();
1252 });
1253 /* *INDENT-ON* */
1254}
1255
1256static void
1257 vl_api_show_one_map_register_state_t_handler
1258 (vl_api_show_one_map_register_state_t * mp)
1259{
1260 vl_api_show_one_map_register_state_reply_t *rmp = 0;
1261 int rv = 0;
1262
1263 /* *INDENT-OFF* */
1264 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_STATE_REPLY,
1265 {
1266 rmp->is_enabled = vnet_lisp_map_register_state_get ();
1267 });
1268 /* *INDENT-ON* */
1269}
1270
1271static void
1272vl_api_one_adjacencies_get_t_handler (vl_api_one_adjacencies_get_t * mp)
1273{
1274 vl_api_one_adjacencies_get_reply_t *rmp = 0;
1275 lisp_adjacency_t *adjs = 0;
1276 int rv = 0;
1277 u32 size = ~0;
1278 u32 vni = clib_net_to_host_u32 (mp->vni);
1279
1280 adjs = vnet_lisp_adjacencies_get_by_vni (vni);
1281 size = vec_len (adjs) * sizeof (vl_api_one_adjacency_t);
1282
1283 /* *INDENT-OFF* */
1284 REPLY_MACRO4 (VL_API_ONE_ADJACENCIES_GET_REPLY, size,
1285 {
1286 rmp->count = clib_host_to_net_u32 (vec_len (adjs));
1287 one_adjacency_copy (rmp->adjacencies, adjs);
1288 });
1289 /* *INDENT-ON* */
1290
1291 vec_free (adjs);
1292}
1293
1294static void
1295vl_api_one_eid_table_vni_dump_t_handler (vl_api_one_eid_table_vni_dump_t * mp)
1296{
1297 hash_pair_t *p;
1298 u32 *vnis = 0;
1299 unix_shared_memory_queue_t *q = 0;
1300 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1301
1302 q = vl_api_client_index_to_input_queue (mp->client_index);
1303 if (q == 0)
1304 {
1305 return;
1306 }
1307
1308 /* *INDENT-OFF* */
1309 hash_foreach_pair (p, lcm->table_id_by_vni,
1310 ({
1311 hash_set (vnis, p->key, 0);
1312 }));
1313
1314 hash_foreach_pair (p, lcm->bd_id_by_vni,
1315 ({
1316 hash_set (vnis, p->key, 0);
1317 }));
1318
1319 hash_foreach_pair (p, vnis,
1320 ({
1321 send_eid_table_vni (p->key, q, mp->context);
1322 }));
1323 /* *INDENT-ON* */
1324
1325 hash_free (vnis);
1326}
1327
1328static void
1329vl_api_show_one_status_t_handler (vl_api_show_one_status_t * mp)
1330{
1331 unix_shared_memory_queue_t *q = NULL;
1332 vl_api_show_one_status_reply_t *rmp = NULL;
1333 int rv = 0;
1334
1335 q = vl_api_client_index_to_input_queue (mp->client_index);
1336 if (q == 0)
1337 {
1338 return;
1339 }
1340
1341 /* *INDENT-OFF* */
1342 REPLY_MACRO2(VL_API_SHOW_ONE_STATUS_REPLY,
1343 ({
1344 rmp->gpe_status = vnet_lisp_gpe_enable_disable_status ();
1345 rmp->feature_status = vnet_lisp_enable_disable_status ();
1346 }));
1347 /* *INDENT-ON* */
1348}
1349
1350static void
1351 vl_api_one_get_map_request_itr_rlocs_t_handler
1352 (vl_api_one_get_map_request_itr_rlocs_t * mp)
1353{
1354 unix_shared_memory_queue_t *q = NULL;
1355 vl_api_one_get_map_request_itr_rlocs_reply_t *rmp = NULL;
1356 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1357 locator_set_t *loc_set = 0;
1358 u8 *tmp_str = 0;
1359 int rv = 0;
1360
1361 q = vl_api_client_index_to_input_queue (mp->client_index);
1362 if (q == 0)
1363 {
1364 return;
1365 }
1366
1367 if (~0 == lcm->mreq_itr_rlocs)
1368 {
1369 tmp_str = format (0, " ");
1370 }
1371 else
1372 {
1373 loc_set =
1374 pool_elt_at_index (lcm->locator_set_pool, lcm->mreq_itr_rlocs);
1375 tmp_str = format (0, "%s", loc_set->name);
1376 }
1377
1378 /* *INDENT-OFF* */
1379 REPLY_MACRO2(VL_API_ONE_GET_MAP_REQUEST_ITR_RLOCS_REPLY,
1380 ({
1381 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1382 ARRAY_LEN(rmp->locator_set_name) - 1);
1383 }));
1384 /* *INDENT-ON* */
1385
1386 vec_free (tmp_str);
1387}
1388
1389static void
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001390vl_api_show_one_nsh_mapping_t_handler (vl_api_show_one_nsh_mapping_t * mp)
1391{
1392 unix_shared_memory_queue_t *q = NULL;
1393 vl_api_show_one_nsh_mapping_reply_t *rmp = NULL;
1394 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1395 mapping_t *m;
1396 locator_set_t *ls = 0;
1397 u8 *tmp_str = 0;
1398 u8 is_set = 0;
1399 int rv = 0;
1400
1401 q = vl_api_client_index_to_input_queue (mp->client_index);
1402 if (q == 0)
1403 {
1404 return;
1405 }
1406
1407 if (lcm->nsh_map_index == (u32) ~ 0)
1408 {
1409 tmp_str = format (0, "N/A");
1410 }
1411 else
1412 {
1413 m = pool_elt_at_index (lcm->mapping_pool, lcm->nsh_map_index);
1414 if (~0 != m->locator_set_index)
1415 {
1416 ls =
1417 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1418 tmp_str = format (0, "%s", ls->name);
1419 is_set = 1;
1420 }
1421 else
1422 {
1423 tmp_str = format (0, "N/A");
1424 }
1425 }
1426 vec_add1 (tmp_str, 0);
1427
1428 /* *INDENT-OFF* */
1429 REPLY_MACRO2(VL_API_SHOW_ONE_NSH_MAPPING_REPLY,
1430 ({
1431 rmp->is_set = is_set;
1432 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1433 ARRAY_LEN(rmp->locator_set_name) - 1);
1434 }));
1435 /* *INDENT-ON* */
1436}
1437
1438static void
Filip Tehlar694396d2017-02-17 14:29:11 +01001439vl_api_show_one_pitr_t_handler (vl_api_show_one_pitr_t * mp)
1440{
1441 unix_shared_memory_queue_t *q = NULL;
1442 vl_api_show_one_pitr_reply_t *rmp = NULL;
1443 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1444 mapping_t *m;
1445 locator_set_t *ls = 0;
1446 u8 *tmp_str = 0;
1447 int rv = 0;
1448
1449 q = vl_api_client_index_to_input_queue (mp->client_index);
1450 if (q == 0)
1451 {
1452 return;
1453 }
1454
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001455 u8 is_enabled = (lcm->flags & LISP_FLAG_PITR_MODE)
1456 && lcm->pitr_map_index != ~0;
1457
1458 if (!is_enabled)
Filip Tehlar694396d2017-02-17 14:29:11 +01001459 {
1460 tmp_str = format (0, "N/A");
1461 }
1462 else
1463 {
1464 m = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
1465 if (~0 != m->locator_set_index)
1466 {
1467 ls =
1468 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1469 tmp_str = format (0, "%s", ls->name);
1470 }
1471 else
1472 {
1473 tmp_str = format (0, "N/A");
1474 }
1475 }
1476 vec_add1 (tmp_str, 0);
1477
1478 /* *INDENT-OFF* */
1479 REPLY_MACRO2(VL_API_SHOW_ONE_PITR_REPLY,
1480 ({
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001481 rmp->status = lcm->flags & LISP_FLAG_PITR_MODE;
Filip Tehlar694396d2017-02-17 14:29:11 +01001482 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1483 ARRAY_LEN(rmp->locator_set_name) - 1);
1484 }));
1485 /* *INDENT-ON* */
1486}
1487
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001488static void
1489 vl_api_show_one_stats_enable_disable_t_handler
1490 (vl_api_show_one_stats_enable_disable_t * mp)
1491{
1492 vl_api_show_one_stats_enable_disable_reply_t *rmp = NULL;
1493 vnet_api_error_t rv = 0;
1494
1495 /* *INDENT-OFF* */
1496 REPLY_MACRO2 (VL_API_SHOW_ONE_STATS_ENABLE_DISABLE_REPLY,
1497 ({
1498 rmp->is_en = vnet_lisp_stats_enable_disable_state ();
1499 }));
1500 /* *INDENT-ON* */
1501}
1502
1503static void
1504 vl_api_one_stats_enable_disable_t_handler
1505 (vl_api_one_stats_enable_disable_t * mp)
1506{
1507 vl_api_one_enable_disable_reply_t *rmp = NULL;
1508
1509 vnet_api_error_t rv = vnet_lisp_stats_enable_disable (mp->is_en);
1510 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
1511}
1512
1513static void
Filip Tehlar4868ff62017-03-09 16:48:39 +01001514lisp_fid_addr_to_api (fid_address_t * fid, u8 * dst, u8 * api_eid_type,
1515 u8 * prefix_length)
1516{
1517 switch (fid_addr_type (fid))
1518 {
1519 case FID_ADDR_IP_PREF:
1520 *prefix_length = fid_addr_prefix_length (fid);
1521 if (fid_addr_ip_version (fid) == IP4)
1522 {
1523 *api_eid_type = 0; /* ipv4 type */
1524 clib_memcpy (dst, &fid_addr_ippref (fid), 4);
1525 }
1526 else
1527 {
1528 *api_eid_type = 1; /* ipv6 type */
1529 clib_memcpy (dst, &fid_addr_ippref (fid), 16);
1530 }
1531 break;
1532 case FID_ADDR_MAC:
1533 *api_eid_type = 2; /* l2 mac type */
1534 mac_copy (dst, fid_addr_mac (fid));
1535 break;
1536 default:
1537 ASSERT (0);
1538 }
1539}
1540
1541static void
Filip Tehlar21511912017-04-07 10:41:42 +02001542vl_api_one_stats_flush_t_handler (vl_api_one_stats_flush_t * mp)
1543{
1544 vl_api_one_stats_flush_reply_t *rmp;
1545 u8 rv;
1546
1547 rv = vnet_lisp_flush_stats ();
1548 REPLY_MACRO (VL_API_ONE_STATS_FLUSH_REPLY);
1549}
1550
1551static void
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001552vl_api_one_stats_dump_t_handler (vl_api_one_stats_dump_t * mp)
1553{
Filip Tehlar4868ff62017-03-09 16:48:39 +01001554 vl_api_one_stats_details_t *rmp;
1555 lisp_api_stats_t *stats, *stat;
1556 u8 rv = 0;
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001557
Filip Tehlar4868ff62017-03-09 16:48:39 +01001558 stats = vnet_lisp_get_stats ();
1559 vec_foreach (stat, stats)
1560 {
1561 /* *INDENT-OFF* */
1562 REPLY_DETAILS (VL_API_ONE_STATS_DETAILS,
1563 ({
1564 lisp_fid_addr_to_api (&stat->deid, rmp->deid, &rmp->eid_type,
1565 &rmp->deid_pref_len);
1566 lisp_fid_addr_to_api (&stat->seid, rmp->seid, &rmp->eid_type,
1567 &rmp->seid_pref_len);
1568 rmp->vni = clib_host_to_net_u32 (stat->vni);
1569
1570 rmp->is_ip4 = ip_addr_version (&stat->rmt_rloc) == IP4 ? 1 : 0;
1571 ip_address_copy_addr (rmp->rloc, &stat->rmt_rloc);
1572 ip_address_copy_addr (rmp->lloc, &stat->loc_rloc);
1573
Filip Tehlar21511912017-04-07 10:41:42 +02001574 rmp->pkt_count = clib_host_to_net_u32 (stat->counters.packets);
1575 rmp->bytes = clib_host_to_net_u32 (stat->counters.bytes);
Filip Tehlar4868ff62017-03-09 16:48:39 +01001576 }));
1577 /* *INDENT-ON* */
1578 }
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001579}
1580
Filip Tehlard5a65db2017-05-17 17:21:10 +02001581static void
1582 vl_api_one_add_del_l2_arp_entry_t_handler
1583 (vl_api_one_add_del_l2_arp_entry_t * mp)
1584{
1585 vl_api_one_add_del_l2_arp_entry_reply_t *rmp;
1586 int rv = 0;
1587 gid_address_t _arp, *arp = &_arp;
1588 memset (arp, 0, sizeof (*arp));
1589
1590 gid_address_type (arp) = GID_ADDR_ARP;
1591 gid_address_arp_bd (arp) = clib_net_to_host_u32 (mp->bd);
1592
1593 /* vpp keeps ip4 addresses in network byte order */
Filip Tehlar05879992017-09-05 15:46:09 +02001594 ip_address_set (&gid_address_arp_ndp_ip (arp), &mp->ip4, IP4);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001595
Filip Tehlar64929642017-09-20 08:41:23 +02001596 rv = vnet_lisp_add_del_l2_arp_ndp_entry (arp, mp->mac, mp->is_add);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001597
1598 REPLY_MACRO (VL_API_ONE_ADD_DEL_L2_ARP_ENTRY_REPLY);
1599}
1600
1601static void
Filip Tehlar05879992017-09-05 15:46:09 +02001602vl_api_one_add_del_ndp_entry_t_handler (vl_api_one_add_del_ndp_entry_t * mp)
1603{
1604 vl_api_one_add_del_ndp_entry_reply_t *rmp;
1605 int rv = 0;
1606 gid_address_t _g, *g = &_g;
1607 memset (g, 0, sizeof (*g));
1608
1609 gid_address_type (g) = GID_ADDR_NDP;
1610 gid_address_ndp_bd (g) = clib_net_to_host_u32 (mp->bd);
1611 ip_address_set (&gid_address_arp_ndp_ip (g), mp->ip6, IP6);
1612
Filip Tehlar64929642017-09-20 08:41:23 +02001613 rv = vnet_lisp_add_del_l2_arp_ndp_entry (g, mp->mac, mp->is_add);
Filip Tehlar05879992017-09-05 15:46:09 +02001614
1615 REPLY_MACRO (VL_API_ONE_ADD_DEL_NDP_ENTRY_REPLY);
1616}
1617
1618static void
1619vl_api_one_ndp_bd_get_t_handler (vl_api_one_ndp_bd_get_t * mp)
1620{
1621 vl_api_one_ndp_bd_get_reply_t *rmp;
1622 int rv = 0;
1623 u32 i = 0;
1624 hash_pair_t *p;
1625
1626 u32 *bds = vnet_lisp_ndp_bds_get ();
1627 u32 size = hash_elts (bds) * sizeof (u32);
1628
1629 /* *INDENT-OFF* */
1630 REPLY_MACRO4 (VL_API_ONE_NDP_BD_GET_REPLY, size,
1631 {
1632 rmp->count = clib_host_to_net_u32 (hash_elts (bds));
1633 hash_foreach_pair (p, bds,
1634 ({
1635 rmp->bridge_domains[i++] = clib_host_to_net_u32 (p->key);
1636 }));
1637 });
1638 /* *INDENT-ON* */
1639
1640 hash_free (bds);
1641}
1642
1643static void
Filip Tehlard5a65db2017-05-17 17:21:10 +02001644vl_api_one_l2_arp_bd_get_t_handler (vl_api_one_l2_arp_bd_get_t * mp)
1645{
1646 vl_api_one_l2_arp_bd_get_reply_t *rmp;
1647 int rv = 0;
1648 u32 i = 0;
1649 hash_pair_t *p;
1650
1651 u32 *bds = vnet_lisp_l2_arp_bds_get ();
1652 u32 size = hash_elts (bds) * sizeof (u32);
1653
1654 /* *INDENT-OFF* */
1655 REPLY_MACRO4 (VL_API_ONE_L2_ARP_BD_GET_REPLY, size,
1656 {
1657 rmp->count = clib_host_to_net_u32 (hash_elts (bds));
1658 hash_foreach_pair (p, bds,
1659 ({
1660 rmp->bridge_domains[i++] = clib_host_to_net_u32 (p->key);
1661 }));
1662 });
1663 /* *INDENT-ON* */
1664
1665 hash_free (bds);
1666}
1667
1668static void
1669vl_api_one_l2_arp_entries_get_t_handler (vl_api_one_l2_arp_entries_get_t * mp)
1670{
1671 vl_api_one_l2_arp_entries_get_reply_t *rmp;
1672 lisp_api_l2_arp_entry_t *entries = 0, *e;
1673 u32 i = 0;
1674 int rv = 0;
1675
1676 u32 bd = clib_net_to_host_u32 (mp->bd);
1677
1678 entries = vnet_lisp_l2_arp_entries_get_by_bd (bd);
Ole Troan1d7d2ab2017-07-06 14:25:38 +02001679 u32 size = vec_len (entries) * sizeof (vl_api_one_l2_arp_entry_t);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001680
1681 /* *INDENT-OFF* */
1682 REPLY_MACRO4 (VL_API_ONE_L2_ARP_ENTRIES_GET_REPLY, size,
1683 {
1684 rmp->count = clib_host_to_net_u32 (vec_len (entries));
1685 vec_foreach (e, entries)
1686 {
1687 mac_copy (rmp->entries[i].mac, e->mac);
1688 rmp->entries[i].ip4 = e->ip4;
1689 i++;
1690 }
1691 });
1692 /* *INDENT-ON* */
1693
1694 vec_free (entries);
1695}
1696
Filip Tehlar7048ff12017-07-27 08:09:14 +02001697static void
1698 vl_api_one_map_register_fallback_threshold_t_handler
1699 (vl_api_one_map_register_fallback_threshold_t * mp)
1700{
1701 vl_api_one_map_register_fallback_threshold_reply_t *rmp;
1702 int rv = 0;
1703
1704 mp->value = clib_net_to_host_u32 (mp->value);
1705 rv = vnet_lisp_map_register_fallback_threshold_set (mp->value);
Filip Tehlar6f9f6f32017-08-08 13:11:22 +02001706 REPLY_MACRO (VL_API_ONE_MAP_REGISTER_FALLBACK_THRESHOLD_REPLY);
Filip Tehlar7048ff12017-07-27 08:09:14 +02001707}
1708
1709static void
1710 vl_api_show_one_map_register_fallback_threshold_t_handler
1711 (vl_api_show_one_map_register_fallback_threshold_t * mp)
1712{
1713 vl_api_show_one_map_register_fallback_threshold_reply_t *rmp;
1714 int rv = 0;
1715
1716 u32 value = vnet_lisp_map_register_fallback_threshold_get ();
1717
1718 /* *INDENT-OFF* */
1719 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_FALLBACK_THRESHOLD_REPLY,
1720 ({
1721 rmp->value = clib_host_to_net_u32 (value);
1722 }));
1723 /* *INDENT-ON* */
1724}
1725
Filip Tehlar05879992017-09-05 15:46:09 +02001726static void
Filip Tehlara4980b82017-09-27 14:32:02 +02001727 vl_api_one_set_transport_protocol_t_handler
1728 (vl_api_one_set_transport_protocol_t * mp)
1729{
1730 vl_api_one_set_transport_protocol_reply_t *rmp;
1731 int rv = 0;
1732
1733 rv = vnet_lisp_set_transport_protocol (mp->protocol);
1734
1735 REPLY_MACRO (VL_API_ONE_SET_TRANSPORT_PROTOCOL_REPLY);
1736}
1737
1738static void
1739 vl_api_one_get_transport_protocol_t_handler
1740 (vl_api_one_get_transport_protocol_t * mp)
1741{
1742 vl_api_one_get_transport_protocol_reply_t *rmp;
1743 int rv = 0;
1744 u8 proto = (u8) vnet_lisp_get_transport_protocol ();
1745
1746 /* *INDENT-OFF* */
1747 REPLY_MACRO2 (VL_API_ONE_GET_TRANSPORT_PROTOCOL_REPLY,
1748 ({
1749 rmp->protocol = proto;
1750 }));
1751 /* *INDENT-ON* */
1752}
1753
1754static void
Filip Tehlar05879992017-09-05 15:46:09 +02001755vl_api_one_ndp_entries_get_t_handler (vl_api_one_ndp_entries_get_t * mp)
1756{
1757 vl_api_one_ndp_entries_get_reply_t *rmp = 0;
1758 lisp_api_ndp_entry_t *entries = 0, *e;
1759 u32 i = 0;
1760 int rv = 0;
1761
1762 u32 bd = clib_net_to_host_u32 (mp->bd);
1763
1764 entries = vnet_lisp_ndp_entries_get_by_bd (bd);
1765 u32 size = vec_len (entries) * sizeof (vl_api_one_ndp_entry_t);
1766
1767 /* *INDENT-OFF* */
1768 REPLY_MACRO4 (VL_API_ONE_NDP_ENTRIES_GET_REPLY, size,
1769 {
1770 rmp->count = clib_host_to_net_u32 (vec_len (entries));
1771 vec_foreach (e, entries)
1772 {
1773 mac_copy (rmp->entries[i].mac, e->mac);
1774 clib_memcpy (rmp->entries[i].ip6, e->ip6, 16);
1775 i++;
1776 }
1777 });
1778 /* *INDENT-ON* */
1779
1780 vec_free (entries);
1781}
1782
Filip Tehlar0a8840d2017-10-16 05:48:23 -07001783static void
1784 vl_api_one_enable_disable_xtr_mode_t_handler
1785 (vl_api_one_enable_disable_xtr_mode_t * mp)
1786{
1787 vl_api_one_enable_disable_xtr_mode_reply_t *rmp = 0;
1788 int rv = vnet_lisp_enable_disable_xtr_mode (mp->is_en);
1789
1790 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_XTR_MODE_REPLY);
1791}
1792
1793static void
1794vl_api_one_show_xtr_mode_t_handler (vl_api_one_show_xtr_mode_t * mp)
1795{
1796 vl_api_one_show_xtr_mode_reply_t *rmp = 0;
1797 int rv = 0;
1798
1799 /* *INDENT-OFF* */
1800 REPLY_MACRO2 (VL_API_ONE_SHOW_XTR_MODE_REPLY,
1801 {
1802 rmp->is_en = vnet_lisp_get_xtr_mode ();
1803 });
1804 /* *INDENT-ON* */
1805}
1806
1807static void
1808 vl_api_one_enable_disable_pitr_mode_t_handler
1809 (vl_api_one_enable_disable_pitr_mode_t * mp)
1810{
1811 vl_api_one_enable_disable_pitr_mode_reply_t *rmp = 0;
1812 int rv = vnet_lisp_enable_disable_pitr_mode (mp->is_en);
1813
1814 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_PITR_MODE_REPLY);
1815}
1816
1817static void
1818vl_api_one_show_pitr_mode_t_handler (vl_api_one_show_pitr_mode_t * mp)
1819{
1820 vl_api_one_show_pitr_mode_reply_t *rmp = 0;
1821 int rv = 0;
1822
1823 /* *INDENT-OFF* */
1824 REPLY_MACRO2 (VL_API_ONE_SHOW_PITR_MODE_REPLY,
1825 {
1826 rmp->is_en = vnet_lisp_get_pitr_mode ();
1827 });
1828 /* *INDENT-ON* */
1829}
1830
1831static void
1832 vl_api_one_enable_disable_petr_mode_t_handler
1833 (vl_api_one_enable_disable_petr_mode_t * mp)
1834{
1835 vl_api_one_enable_disable_petr_mode_reply_t *rmp = 0;
1836 int rv = vnet_lisp_enable_disable_petr_mode (mp->is_en);
1837
1838 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_PETR_MODE_REPLY);
1839}
1840
1841static void
1842vl_api_one_show_petr_mode_t_handler (vl_api_one_show_petr_mode_t * mp)
1843{
1844 vl_api_one_show_petr_mode_reply_t *rmp = 0;
1845 int rv = 0;
1846
1847 /* *INDENT-OFF* */
1848 REPLY_MACRO2 (VL_API_ONE_SHOW_PETR_MODE_REPLY,
1849 {
1850 rmp->is_en = vnet_lisp_get_petr_mode ();
1851 });
1852 /* *INDENT-ON* */
1853}
1854
Filip Tehlar694396d2017-02-17 14:29:11 +01001855/*
1856 * one_api_hookup
1857 * Add vpe's API message handlers to the table.
1858 * vlib has alread mapped shared memory and
1859 * added the client registration handlers.
1860 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
1861 */
1862#define vl_msg_name_crc_list
1863#include <vnet/vnet_all_api_h.h>
1864#undef vl_msg_name_crc_list
1865
1866static void
1867setup_message_id_table (api_main_t * am)
1868{
1869#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
Filip Tehlar974cdc62017-02-22 18:09:49 +01001870 foreach_vl_msg_name_crc_one;
Filip Tehlar694396d2017-02-17 14:29:11 +01001871#undef _
1872}
1873
1874static clib_error_t *
1875one_api_hookup (vlib_main_t * vm)
1876{
1877 api_main_t *am = &api_main;
1878
1879#define _(N,n) \
1880 vl_msg_api_set_handlers(VL_API_##N, #n, \
1881 vl_api_##n##_t_handler, \
1882 vl_noop_handler, \
1883 vl_api_##n##_t_endian, \
1884 vl_api_##n##_t_print, \
1885 sizeof(vl_api_##n##_t), 1);
1886 foreach_vpe_api_msg;
1887#undef _
1888
1889 /*
1890 * Set up the (msg_name, crc, message-id) table
1891 */
1892 setup_message_id_table (am);
1893
1894 return 0;
1895}
1896
1897VLIB_API_INIT_FUNCTION (one_api_hookup);
1898
1899/*
1900 * fd.io coding-style-patch-verification: ON
1901 *
1902 * Local Variables:
1903 * eval: (c-set-style "gnu")
1904 * End:
1905 */