blob: e3a2afe78cf1a5131ca787323f6f7fde6025b387 [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) \
137_(ONE_GET_TRANSPORT_PROTOCOL, one_get_transport_protocol)
Filip Tehlar694396d2017-02-17 14:29:11 +0100138
139static locator_t *
Filip Tehlar974cdc62017-02-22 18:09:49 +0100140unformat_one_locs (vl_api_one_remote_locator_t * rmt_locs, u32 rloc_num)
Filip Tehlar694396d2017-02-17 14:29:11 +0100141{
142 u32 i;
143 locator_t *locs = 0, loc;
Filip Tehlar974cdc62017-02-22 18:09:49 +0100144 vl_api_one_remote_locator_t *r;
Filip Tehlar694396d2017-02-17 14:29:11 +0100145
146 for (i = 0; i < rloc_num; i++)
147 {
148 /* remote locators */
149 r = &rmt_locs[i];
150 memset (&loc, 0, sizeof (loc));
151 gid_address_ip_set (&loc.address, &r->addr, r->is_ip4 ? IP4 : IP6);
152
153 loc.priority = r->priority;
154 loc.weight = r->weight;
155
156 vec_add1 (locs, loc);
157 }
158 return locs;
159}
160
161static void
Filip Tehlar1e553a02017-08-02 12:45:07 +0200162vl_api_one_map_register_set_ttl_t_handler (vl_api_one_map_register_set_ttl_t *
163 mp)
164{
165 vl_api_one_map_register_set_ttl_reply_t *rmp;
166 int rv = 0;
167
Filip Tehlar5391e192017-08-04 09:13:50 +0200168 mp->ttl = clib_net_to_host_u32 (mp->ttl);
Filip Tehlar1e553a02017-08-02 12:45:07 +0200169 rv = vnet_lisp_map_register_set_ttl (mp->ttl);
170
171 REPLY_MACRO (VL_API_ONE_MAP_REGISTER_SET_TTL_REPLY);
172}
173
174static void
175 vl_api_show_one_map_register_ttl_t_handler
176 (vl_api_show_one_map_register_ttl_t * mp)
177{
178 vl_api_show_one_map_register_ttl_reply_t *rmp;
179 int rv = 0;
180
181 u32 ttl = vnet_lisp_map_register_get_ttl ();
182 /* *INDENT-OFF* */
183 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_TTL_REPLY,
184 ({
185 rmp->ttl = clib_host_to_net_u32 (ttl);
186 }));
187 /* *INDENT-ON* */
188}
189
190static void
Filip Tehlar694396d2017-02-17 14:29:11 +0100191vl_api_one_add_del_locator_set_t_handler (vl_api_one_add_del_locator_set_t *
192 mp)
193{
194 vl_api_one_add_del_locator_set_reply_t *rmp;
195 int rv = 0;
196 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
197 locator_t locator;
Filip Tehlar974cdc62017-02-22 18:09:49 +0100198 vl_api_one_local_locator_t *ls_loc;
Filip Tehlar694396d2017-02-17 14:29:11 +0100199 u32 ls_index = ~0, locator_num;
200 u8 *locator_name = NULL;
201 int i;
202
203 memset (a, 0, sizeof (a[0]));
204
205 locator_name = format (0, "%s", mp->locator_set_name);
206
207 a->name = locator_name;
208 a->is_add = mp->is_add;
209 a->local = 1;
210 locator_num = clib_net_to_host_u32 (mp->locator_num);
211
212 memset (&locator, 0, sizeof (locator));
213 for (i = 0; i < locator_num; i++)
214 {
215 ls_loc = &mp->locators[i];
216 VALIDATE_SW_IF_INDEX (ls_loc);
217
218 locator.sw_if_index = htonl (ls_loc->sw_if_index);
219 locator.priority = ls_loc->priority;
220 locator.weight = ls_loc->weight;
221 locator.local = 1;
222 vec_add1 (a->locators, locator);
223 }
224
225 rv = vnet_lisp_add_del_locator_set (a, &ls_index);
226
227 BAD_SW_IF_INDEX_LABEL;
228
229 vec_free (locator_name);
230 vec_free (a->locators);
231
232 /* *INDENT-OFF* */
233 REPLY_MACRO2 (VL_API_ONE_ADD_DEL_LOCATOR_SET_REPLY,
234 ({
235 rmp->ls_index = clib_host_to_net_u32 (ls_index);
236 }));
237 /* *INDENT-ON* */
238}
239
240static void
241vl_api_one_add_del_locator_t_handler (vl_api_one_add_del_locator_t * mp)
242{
243 vl_api_one_add_del_locator_reply_t *rmp;
244 int rv = 0;
245 locator_t locator, *locators = NULL;
246 vnet_lisp_add_del_locator_set_args_t _a, *a = &_a;
247 u32 ls_index = ~0;
248 u8 *locator_name = NULL;
249
250 memset (&locator, 0, sizeof (locator));
251 memset (a, 0, sizeof (a[0]));
252
253 locator.sw_if_index = ntohl (mp->sw_if_index);
254 locator.priority = mp->priority;
255 locator.weight = mp->weight;
256 locator.local = 1;
257 vec_add1 (locators, locator);
258
259 locator_name = format (0, "%s", mp->locator_set_name);
260
261 a->name = locator_name;
262 a->locators = locators;
263 a->is_add = mp->is_add;
264 a->local = 1;
265
266 rv = vnet_lisp_add_del_locator (a, NULL, &ls_index);
267
268 vec_free (locators);
269 vec_free (locator_name);
270
271 REPLY_MACRO (VL_API_ONE_ADD_DEL_LOCATOR_REPLY);
272}
273
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200274typedef struct
275{
276 u32 spi;
277 u8 si;
278} __attribute__ ((__packed__)) lisp_nsh_api_t;
279
Filip Tehlar694396d2017-02-17 14:29:11 +0100280static int
281unformat_one_eid_api (gid_address_t * dst, u32 vni, u8 type, void *src,
282 u8 len)
283{
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200284 lisp_nsh_api_t *nsh;
285
Filip Tehlar694396d2017-02-17 14:29:11 +0100286 switch (type)
287 {
288 case 0: /* ipv4 */
289 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
290 gid_address_ip_set (dst, src, IP4);
291 gid_address_ippref_len (dst) = len;
292 ip_prefix_normalize (&gid_address_ippref (dst));
293 break;
294 case 1: /* ipv6 */
295 gid_address_type (dst) = GID_ADDR_IP_PREFIX;
296 gid_address_ip_set (dst, src, IP6);
297 gid_address_ippref_len (dst) = len;
298 ip_prefix_normalize (&gid_address_ippref (dst));
299 break;
300 case 2: /* l2 mac */
301 gid_address_type (dst) = GID_ADDR_MAC;
302 clib_memcpy (&gid_address_mac (dst), src, 6);
303 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200304 case 3: /* NSH */
305 gid_address_type (dst) = GID_ADDR_NSH;
306 nsh = src;
307 gid_address_nsh_spi (dst) = clib_net_to_host_u32 (nsh->spi);
308 gid_address_nsh_si (dst) = nsh->si;
309 break;
Filip Tehlar694396d2017-02-17 14:29:11 +0100310 default:
311 /* unknown type */
312 return VNET_API_ERROR_INVALID_VALUE;
313 }
314
315 gid_address_vni (dst) = vni;
316
317 return 0;
318}
319
320static void
321vl_api_one_add_del_local_eid_t_handler (vl_api_one_add_del_local_eid_t * mp)
322{
323 vl_api_one_add_del_local_eid_reply_t *rmp;
324 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
325 int rv = 0;
326 gid_address_t _eid, *eid = &_eid;
327 uword *p = NULL;
328 u32 locator_set_index = ~0, map_index = ~0;
329 vnet_lisp_add_del_mapping_args_t _a, *a = &_a;
330 u8 *name = NULL, *key = NULL;
331 memset (a, 0, sizeof (a[0]));
332 memset (eid, 0, sizeof (eid[0]));
333
334 rv = unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
335 mp->eid_type, mp->eid, mp->prefix_len);
336 if (rv)
337 goto out;
338
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200339 if (gid_address_type (eid) == GID_ADDR_NSH)
340 {
341 rv = VNET_API_ERROR_INVALID_VALUE;
342 goto out;
343 }
344
Filip Tehlar694396d2017-02-17 14:29:11 +0100345 name = format (0, "%s", mp->locator_set_name);
346 p = hash_get_mem (lcm->locator_set_index_by_name, name);
347 if (!p)
348 {
349 rv = VNET_API_ERROR_INVALID_VALUE;
350 goto out;
351 }
352 locator_set_index = p[0];
353
354 if (*mp->key)
355 key = format (0, "%s", mp->key);
356
357 /* XXX treat batch configuration */
358 a->is_add = mp->is_add;
359 gid_address_copy (&a->eid, eid);
360 a->locator_set_index = locator_set_index;
361 a->local = 1;
362 a->key = key;
363 a->key_id = clib_net_to_host_u16 (mp->key_id);
364
365 rv = vnet_lisp_add_del_local_mapping (a, &map_index);
366
367out:
368 vec_free (name);
369 vec_free (key);
370 gid_address_free (&a->eid);
371
372 REPLY_MACRO (VL_API_ONE_ADD_DEL_LOCAL_EID_REPLY);
373}
374
375static void
376 vl_api_one_eid_table_add_del_map_t_handler
377 (vl_api_one_eid_table_add_del_map_t * mp)
378{
379 vl_api_one_eid_table_add_del_map_reply_t *rmp;
380 int rv = 0;
381 rv = vnet_lisp_eid_table_map (clib_net_to_host_u32 (mp->vni),
382 clib_net_to_host_u32 (mp->dp_table),
383 mp->is_l2, mp->is_add);
384REPLY_MACRO (VL_API_ONE_EID_TABLE_ADD_DEL_MAP_REPLY)}
385
386static void
387vl_api_one_add_del_map_server_t_handler (vl_api_one_add_del_map_server_t * mp)
388{
389 vl_api_one_add_del_map_server_reply_t *rmp;
390 int rv = 0;
391 ip_address_t addr;
392
393 memset (&addr, 0, sizeof (addr));
394
395 ip_address_set (&addr, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
396 rv = vnet_lisp_add_del_map_server (&addr, mp->is_add);
397
398 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_SERVER_REPLY);
399}
400
401static void
402vl_api_one_add_del_map_resolver_t_handler (vl_api_one_add_del_map_resolver_t
403 * mp)
404{
405 vl_api_one_add_del_map_resolver_reply_t *rmp;
406 int rv = 0;
407 vnet_lisp_add_del_map_resolver_args_t _a, *a = &_a;
408
409 memset (a, 0, sizeof (a[0]));
410
411 a->is_add = mp->is_add;
412 ip_address_set (&a->address, mp->ip_address, mp->is_ipv6 ? IP6 : IP4);
413
414 rv = vnet_lisp_add_del_map_resolver (a);
415
416 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_RESOLVER_REPLY);
417}
418
419static void
420 vl_api_one_map_register_enable_disable_t_handler
421 (vl_api_one_map_register_enable_disable_t * mp)
422{
423 vl_api_one_map_register_enable_disable_reply_t *rmp;
424 int rv = 0;
425
426 vnet_lisp_map_register_enable_disable (mp->is_enabled);
427 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
428}
429
430static void
431 vl_api_one_rloc_probe_enable_disable_t_handler
432 (vl_api_one_rloc_probe_enable_disable_t * mp)
433{
434 vl_api_one_rloc_probe_enable_disable_reply_t *rmp;
435 int rv = 0;
436
437 vnet_lisp_rloc_probe_enable_disable (mp->is_enabled);
438 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
439}
440
441static void
442vl_api_one_enable_disable_t_handler (vl_api_one_enable_disable_t * mp)
443{
444 vl_api_one_enable_disable_reply_t *rmp;
445 int rv = 0;
446
447 vnet_lisp_enable_disable (mp->is_en);
448 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
449}
450
451static void
452 vl_api_show_one_map_request_mode_t_handler
453 (vl_api_show_one_map_request_mode_t * mp)
454{
455 int rv = 0;
456 vl_api_show_one_map_request_mode_reply_t *rmp;
457
458 /* *INDENT-OFF* */
459 REPLY_MACRO2(VL_API_SHOW_ONE_MAP_REQUEST_MODE_REPLY,
460 ({
461 rmp->mode = vnet_lisp_get_map_request_mode ();
462 }));
463 /* *INDENT-ON* */
464}
465
466static void
467vl_api_one_map_request_mode_t_handler (vl_api_one_map_request_mode_t * mp)
468{
469 vl_api_one_map_request_mode_reply_t *rmp;
470 int rv = 0;
471
472 rv = vnet_lisp_set_map_request_mode (mp->mode);
473
474 REPLY_MACRO (VL_API_ONE_MAP_REQUEST_MODE_REPLY);
475}
476
477static void
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200478vl_api_one_nsh_set_locator_set_t_handler (vl_api_one_nsh_set_locator_set_t
479 * mp)
480{
481 vl_api_one_nsh_set_locator_set_reply_t *rmp;
482 int rv = 0;
483 u8 *ls_name = 0;
484
485 ls_name = format (0, "%s", mp->ls_name);
486 rv = vnet_lisp_nsh_set_locator_set (ls_name, mp->is_add);
487 vec_free (ls_name);
488
489 REPLY_MACRO (VL_API_ONE_PITR_SET_LOCATOR_SET_REPLY);
490}
491
492static void
Filip Tehlar694396d2017-02-17 14:29:11 +0100493vl_api_one_pitr_set_locator_set_t_handler (vl_api_one_pitr_set_locator_set_t
494 * mp)
495{
496 vl_api_one_pitr_set_locator_set_reply_t *rmp;
497 int rv = 0;
498 u8 *ls_name = 0;
499
500 ls_name = format (0, "%s", mp->ls_name);
501 rv = vnet_lisp_pitr_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
508vl_api_one_use_petr_t_handler (vl_api_one_use_petr_t * mp)
509{
510 vl_api_one_use_petr_reply_t *rmp;
511 int rv = 0;
512 ip_address_t addr;
513
514 ip_address_set (&addr, &mp->address, mp->is_ip4 ? IP4 : IP6);
515 rv = vnet_lisp_use_petr (&addr, mp->is_add);
516
517 REPLY_MACRO (VL_API_ONE_USE_PETR_REPLY);
518}
519
520static void
521vl_api_show_one_use_petr_t_handler (vl_api_show_one_use_petr_t * mp)
522{
523 unix_shared_memory_queue_t *q = NULL;
524 vl_api_show_one_use_petr_reply_t *rmp = NULL;
525 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
526 mapping_t *m;
527 locator_set_t *ls = 0;
528 int rv = 0;
529 locator_t *loc = 0;
530 u8 status = 0;
531 gid_address_t addr;
532
533 q = vl_api_client_index_to_input_queue (mp->client_index);
534 if (q == 0)
535 {
536 return;
537 }
538
539 memset (&addr, 0, sizeof (addr));
540 status = lcm->flags & LISP_FLAG_USE_PETR;
541 if (status)
542 {
543 m = pool_elt_at_index (lcm->mapping_pool, lcm->petr_map_index);
544 if (~0 != m->locator_set_index)
545 {
546 ls =
547 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
548 loc = pool_elt_at_index (lcm->locator_pool, ls->locator_indices[0]);
549 gid_address_copy (&addr, &loc->address);
550 }
551 }
552
553 /* *INDENT-OFF* */
554 REPLY_MACRO2 (VL_API_SHOW_ONE_USE_PETR_REPLY,
555 {
Filip Tehlar67a99f82017-03-10 13:18:02 +0100556 rmp->status = status;
557 ip_address_t *ip = &gid_address_ip (&addr);
558 switch (ip_addr_version (ip))
559 {
560 case IP4:
561 clib_memcpy (rmp->address, &ip_addr_v4 (ip),
562 sizeof (ip_addr_v4 (ip)));
563 break;
564
565 case IP6:
566 clib_memcpy (rmp->address, &ip_addr_v6 (ip),
567 sizeof (ip_addr_v6 (ip)));
568 break;
569
570 default:
571 ASSERT (0);
572 }
573 rmp->is_ip4 = (gid_address_ip_version (&addr) == IP4);
Filip Tehlar694396d2017-02-17 14:29:11 +0100574 });
575 /* *INDENT-ON* */
576}
577
578static void
579 vl_api_one_add_del_map_request_itr_rlocs_t_handler
580 (vl_api_one_add_del_map_request_itr_rlocs_t * mp)
581{
582 vl_api_one_add_del_map_request_itr_rlocs_reply_t *rmp;
583 int rv = 0;
584 u8 *locator_set_name = NULL;
585 vnet_lisp_add_del_mreq_itr_rloc_args_t _a, *a = &_a;
586
587 locator_set_name = format (0, "%s", mp->locator_set_name);
588
589 a->is_add = mp->is_add;
590 a->locator_set_name = locator_set_name;
591
592 rv = vnet_lisp_add_del_mreq_itr_rlocs (a);
593
594 vec_free (locator_set_name);
595
596 REPLY_MACRO (VL_API_ONE_ADD_DEL_MAP_REQUEST_ITR_RLOCS_REPLY);
597}
598
599static void
600 vl_api_one_add_del_remote_mapping_t_handler
601 (vl_api_one_add_del_remote_mapping_t * mp)
602{
603 locator_t *rlocs = 0;
604 vl_api_one_add_del_remote_mapping_reply_t *rmp;
605 int rv = 0;
606 gid_address_t _eid, *eid = &_eid;
607 u32 rloc_num = clib_net_to_host_u32 (mp->rloc_num);
608
609 memset (eid, 0, sizeof (eid[0]));
610
611 rv = unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
612 mp->eid_type, mp->eid, mp->eid_len);
613 if (rv)
614 goto send_reply;
615
616 rlocs = unformat_one_locs (mp->rlocs, rloc_num);
617
618 if (!mp->is_add)
619 {
620 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
621 gid_address_copy (&a->reid, eid);
622 a->is_add = 0;
623 rv = vnet_lisp_add_del_adjacency (a);
624 if (rv)
625 {
626 goto out;
627 }
628 }
629
630 /* NOTE: for now this works as a static remote mapping, i.e.,
631 * not authoritative and ttl infinite. */
Filip Tehlar809bc742017-08-14 19:15:36 +0200632 if (mp->is_add)
633 {
634 vnet_lisp_add_del_mapping_args_t _m_args, *m_args = &_m_args;
635 memset (m_args, 0, sizeof (m_args[0]));
636 gid_address_copy (&m_args->eid, eid);
637 m_args->action = mp->action;
638 m_args->is_static = 1;
639 m_args->ttl = ~0;
640 m_args->authoritative = 0;
641 rv = vnet_lisp_add_mapping (m_args, rlocs, NULL, NULL);
642 }
643 else
644 rv = vnet_lisp_del_mapping (eid, NULL);
Filip Tehlar694396d2017-02-17 14:29:11 +0100645
646 if (mp->del_all)
647 vnet_lisp_clear_all_remote_adjacencies ();
648
649out:
650 vec_free (rlocs);
651send_reply:
652 REPLY_MACRO (VL_API_ONE_ADD_DEL_REMOTE_MAPPING_REPLY);
653}
654
655static void
656vl_api_one_add_del_adjacency_t_handler (vl_api_one_add_del_adjacency_t * mp)
657{
658 vl_api_one_add_del_adjacency_reply_t *rmp;
659 vnet_lisp_add_del_adjacency_args_t _a, *a = &_a;
660
661 int rv = 0;
662 memset (a, 0, sizeof (a[0]));
663
664 rv = unformat_one_eid_api (&a->leid, clib_net_to_host_u32 (mp->vni),
665 mp->eid_type, mp->leid, mp->leid_len);
666 rv |= unformat_one_eid_api (&a->reid, clib_net_to_host_u32 (mp->vni),
667 mp->eid_type, mp->reid, mp->reid_len);
668
669 if (rv)
670 goto send_reply;
671
672 a->is_add = mp->is_add;
673 rv = vnet_lisp_add_del_adjacency (a);
674
675send_reply:
676 REPLY_MACRO (VL_API_ONE_ADD_DEL_ADJACENCY_REPLY);
677}
678
679static void
680send_one_locator_details (lisp_cp_main_t * lcm,
681 locator_t * loc,
682 unix_shared_memory_queue_t * q, u32 context)
683{
684 vl_api_one_locator_details_t *rmp;
685
686 rmp = vl_msg_api_alloc (sizeof (*rmp));
687 memset (rmp, 0, sizeof (*rmp));
688 rmp->_vl_msg_id = ntohs (VL_API_ONE_LOCATOR_DETAILS);
689 rmp->context = context;
690
691 rmp->local = loc->local;
692 if (loc->local)
693 {
694 rmp->sw_if_index = ntohl (loc->sw_if_index);
695 }
696 else
697 {
698 rmp->is_ipv6 = gid_address_ip_version (&loc->address);
699 ip_address_copy_addr (rmp->ip_address, &gid_address_ip (&loc->address));
700 }
701 rmp->priority = loc->priority;
702 rmp->weight = loc->weight;
703
704 vl_msg_api_send_shmem (q, (u8 *) & rmp);
705}
706
707static void
708vl_api_one_locator_dump_t_handler (vl_api_one_locator_dump_t * mp)
709{
710 u8 *ls_name = 0;
711 unix_shared_memory_queue_t *q = 0;
712 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
713 locator_set_t *lsit = 0;
714 locator_t *loc = 0;
715 u32 ls_index = ~0, *locit = 0;
716 uword *p = 0;
717
718 q = vl_api_client_index_to_input_queue (mp->client_index);
719 if (q == 0)
720 {
721 return;
722 }
723
724 if (mp->is_index_set)
725 ls_index = htonl (mp->ls_index);
726 else
727 {
728 /* make sure we get a proper C-string */
729 mp->ls_name[sizeof (mp->ls_name) - 1] = 0;
730 ls_name = format (0, "%s", mp->ls_name);
731 p = hash_get_mem (lcm->locator_set_index_by_name, ls_name);
732 if (!p)
733 goto out;
734 ls_index = p[0];
735 }
736
737 if (pool_is_free_index (lcm->locator_set_pool, ls_index))
738 return;
739
740 lsit = pool_elt_at_index (lcm->locator_set_pool, ls_index);
741
742 vec_foreach (locit, lsit->locator_indices)
743 {
744 loc = pool_elt_at_index (lcm->locator_pool, locit[0]);
745 send_one_locator_details (lcm, loc, q, mp->context);
746 };
747out:
748 vec_free (ls_name);
749}
750
751static void
752send_one_locator_set_details (lisp_cp_main_t * lcm,
753 locator_set_t * lsit,
754 unix_shared_memory_queue_t * q,
755 u32 context, u32 ls_index)
756{
757 vl_api_one_locator_set_details_t *rmp;
758 u8 *str = 0;
759
760 rmp = vl_msg_api_alloc (sizeof (*rmp));
761 memset (rmp, 0, sizeof (*rmp));
762 rmp->_vl_msg_id = ntohs (VL_API_ONE_LOCATOR_SET_DETAILS);
763 rmp->context = context;
764
765 rmp->ls_index = htonl (ls_index);
766 if (lsit->local)
767 {
768 ASSERT (lsit->name != NULL);
769 strncpy ((char *) rmp->ls_name, (char *) lsit->name,
770 vec_len (lsit->name));
771 }
772 else
773 {
774 str = format (0, "<remote-%d>", ls_index);
775 strncpy ((char *) rmp->ls_name, (char *) str, vec_len (str));
776 vec_free (str);
777 }
778
779 vl_msg_api_send_shmem (q, (u8 *) & rmp);
780}
781
782static void
783vl_api_one_locator_set_dump_t_handler (vl_api_one_locator_set_dump_t * mp)
784{
785 unix_shared_memory_queue_t *q = NULL;
786 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
787 locator_set_t *lsit = NULL;
788 u8 filter;
789
790 q = vl_api_client_index_to_input_queue (mp->client_index);
791 if (q == 0)
792 {
793 return;
794 }
795
796 filter = mp->filter;
797 /* *INDENT-OFF* */
798 pool_foreach (lsit, lcm->locator_set_pool,
799 ({
800 if (filter && !((1 == filter && lsit->local) ||
801 (2 == filter && !lsit->local)))
802 {
803 continue;
804 }
805 send_one_locator_set_details (lcm, lsit, q, mp->context,
806 lsit - lcm->locator_set_pool);
807 }));
808 /* *INDENT-ON* */
809}
810
811static void
812one_fid_put_api (u8 * dst, fid_address_t * src, u8 * prefix_length)
813{
814 ASSERT (prefix_length);
815 ip_prefix_t *ippref = &fid_addr_ippref (src);
816
817 switch (fid_addr_type (src))
818 {
819 case FID_ADDR_IP_PREF:
820 if (ip_prefix_version (ippref) == IP4)
821 clib_memcpy (dst, &ip_prefix_v4 (ippref), 4);
822 else
823 clib_memcpy (dst, &ip_prefix_v6 (ippref), 16);
824 prefix_length[0] = ip_prefix_len (ippref);
825 break;
826
827 case FID_ADDR_MAC:
828 prefix_length[0] = 0;
829 clib_memcpy (dst, fid_addr_mac (src), 6);
830 break;
831
832 default:
833 clib_warning ("Unknown FID type %d!", fid_addr_type (src));
834 break;
835 }
836}
837
838static u8
839fid_type_to_api_type (fid_address_t * fid)
840{
841 ip_prefix_t *ippref;
842
843 switch (fid_addr_type (fid))
844 {
845 case FID_ADDR_IP_PREF:
846 ippref = &fid_addr_ippref (fid);
847 if (ip_prefix_version (ippref) == IP4)
848 return 0;
849 else if (ip_prefix_version (ippref) == IP6)
850 return 1;
851 else
852 return ~0;
853
854 case FID_ADDR_MAC:
855 return 2;
856 case FID_ADDR_NSH:
857 return 3;
858 }
859
860 return ~0;
861}
862
863static void
864send_one_eid_table_details (mapping_t * mapit,
865 unix_shared_memory_queue_t * q,
866 u32 context, u8 filter)
867{
868 fid_address_t *fid;
869 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
870 locator_set_t *ls = 0;
871 vl_api_one_eid_table_details_t *rmp = NULL;
872 gid_address_t *gid = NULL;
873 u8 *mac = 0;
874 ip_prefix_t *ip_prefix = NULL;
875
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200876 if (mapit->pitr_set || mapit->nsh_set)
Filip Tehlar1e8d01f2017-03-30 15:17:01 +0200877 return;
878
Filip Tehlar694396d2017-02-17 14:29:11 +0100879 switch (filter)
880 {
881 case 0: /* all mappings */
882 break;
883
884 case 1: /* local only */
885 if (!mapit->local)
886 return;
887 break;
888 case 2: /* remote only */
889 if (mapit->local)
890 return;
891 break;
892 default:
893 clib_warning ("Filter error, unknown filter: %d", filter);
894 return;
895 }
896
897 gid = &mapit->eid;
898 ip_prefix = &gid_address_ippref (gid);
899 mac = gid_address_mac (gid);
900
901 rmp = vl_msg_api_alloc (sizeof (*rmp));
902 memset (rmp, 0, sizeof (*rmp));
903 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_DETAILS);
904
905 ls = pool_elt_at_index (lcm->locator_set_pool, mapit->locator_set_index);
906 if (vec_len (ls->locator_indices) == 0)
907 rmp->locator_set_index = ~0;
908 else
909 rmp->locator_set_index = clib_host_to_net_u32 (mapit->locator_set_index);
910
911 rmp->is_local = mapit->local;
912 rmp->ttl = clib_host_to_net_u32 (mapit->ttl);
913 rmp->action = mapit->action;
914 rmp->authoritative = mapit->authoritative;
915
916 switch (gid_address_type (gid))
917 {
918 case GID_ADDR_SRC_DST:
919 rmp->is_src_dst = 1;
920 fid = &gid_address_sd_src (gid);
921 rmp->eid_type = fid_type_to_api_type (fid);
922 one_fid_put_api (rmp->seid, &gid_address_sd_src (gid),
923 &rmp->seid_prefix_len);
924 one_fid_put_api (rmp->eid, &gid_address_sd_dst (gid),
925 &rmp->eid_prefix_len);
926 break;
927 case GID_ADDR_IP_PREFIX:
928 rmp->eid_prefix_len = ip_prefix_len (ip_prefix);
929 if (ip_prefix_version (ip_prefix) == IP4)
930 {
931 rmp->eid_type = 0; /* ipv4 type */
932 clib_memcpy (rmp->eid, &ip_prefix_v4 (ip_prefix),
933 sizeof (ip_prefix_v4 (ip_prefix)));
934 }
935 else
936 {
937 rmp->eid_type = 1; /* ipv6 type */
938 clib_memcpy (rmp->eid, &ip_prefix_v6 (ip_prefix),
939 sizeof (ip_prefix_v6 (ip_prefix)));
940 }
941 break;
942 case GID_ADDR_MAC:
943 rmp->eid_type = 2; /* l2 mac type */
944 clib_memcpy (rmp->eid, mac, 6);
945 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +0200946 case GID_ADDR_NSH:
947 rmp->eid_type = 3; /* NSH type */
948 lisp_nsh_api_t nsh;
949 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (gid));
950 nsh.si = gid_address_nsh_si (gid);
951 clib_memcpy (rmp->eid, &nsh, sizeof (nsh));
952 break;
Filip Tehlar694396d2017-02-17 14:29:11 +0100953 default:
954 ASSERT (0);
955 }
956 rmp->context = context;
957 rmp->vni = clib_host_to_net_u32 (gid_address_vni (gid));
958 rmp->key_id = clib_host_to_net_u16 (mapit->key_id);
959 memcpy (rmp->key, mapit->key, vec_len (mapit->key));
960 vl_msg_api_send_shmem (q, (u8 *) & rmp);
961}
962
963static void
964vl_api_one_eid_table_dump_t_handler (vl_api_one_eid_table_dump_t * mp)
965{
966 u32 mi;
967 unix_shared_memory_queue_t *q = NULL;
968 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
969 mapping_t *mapit = NULL;
970 gid_address_t _eid, *eid = &_eid;
971
972 q = vl_api_client_index_to_input_queue (mp->client_index);
973 if (q == 0)
974 {
975 return;
976 }
977
978 if (mp->eid_set)
979 {
980 memset (eid, 0, sizeof (*eid));
981
982 unformat_one_eid_api (eid, clib_net_to_host_u32 (mp->vni),
983 mp->eid_type, mp->eid, mp->prefix_length);
984
985 mi = gid_dictionary_lookup (&lcm->mapping_index_by_gid, eid);
986 if ((u32) ~ 0 == mi)
987 return;
988
989 mapit = pool_elt_at_index (lcm->mapping_pool, mi);
990 send_one_eid_table_details (mapit, q, mp->context,
991 0 /* ignore filter */ );
992 }
993 else
994 {
995 /* *INDENT-OFF* */
996 pool_foreach (mapit, lcm->mapping_pool,
997 ({
998 send_one_eid_table_details(mapit, q, mp->context,
999 mp->filter);
1000 }));
1001 /* *INDENT-ON* */
1002 }
1003}
1004
1005static void
1006send_one_map_server_details (ip_address_t * ip,
1007 unix_shared_memory_queue_t * q, u32 context)
1008{
1009 vl_api_one_map_server_details_t *rmp = NULL;
1010
1011 rmp = vl_msg_api_alloc (sizeof (*rmp));
1012 memset (rmp, 0, sizeof (*rmp));
1013 rmp->_vl_msg_id = ntohs (VL_API_ONE_MAP_SERVER_DETAILS);
1014
1015 switch (ip_addr_version (ip))
1016 {
1017 case IP4:
1018 rmp->is_ipv6 = 0;
1019 clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
1020 sizeof (ip_addr_v4 (ip)));
1021 break;
1022
1023 case IP6:
1024 rmp->is_ipv6 = 1;
1025 clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
1026 sizeof (ip_addr_v6 (ip)));
1027 break;
1028
1029 default:
1030 ASSERT (0);
1031 }
1032 rmp->context = context;
1033
1034 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1035}
1036
1037static void
1038vl_api_one_map_server_dump_t_handler (vl_api_one_map_server_dump_t * mp)
1039{
1040 unix_shared_memory_queue_t *q = NULL;
1041 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1042 lisp_msmr_t *mr;
1043
1044 q = vl_api_client_index_to_input_queue (mp->client_index);
1045 if (q == 0)
1046 {
1047 return;
1048 }
1049
1050 vec_foreach (mr, lcm->map_servers)
1051 {
1052 send_one_map_server_details (&mr->address, q, mp->context);
1053 }
1054}
1055
1056static void
1057send_one_map_resolver_details (ip_address_t * ip,
1058 unix_shared_memory_queue_t * q, u32 context)
1059{
1060 vl_api_one_map_resolver_details_t *rmp = NULL;
1061
1062 rmp = vl_msg_api_alloc (sizeof (*rmp));
1063 memset (rmp, 0, sizeof (*rmp));
1064 rmp->_vl_msg_id = ntohs (VL_API_ONE_MAP_RESOLVER_DETAILS);
1065
1066 switch (ip_addr_version (ip))
1067 {
1068 case IP4:
1069 rmp->is_ipv6 = 0;
1070 clib_memcpy (rmp->ip_address, &ip_addr_v4 (ip),
1071 sizeof (ip_addr_v4 (ip)));
1072 break;
1073
1074 case IP6:
1075 rmp->is_ipv6 = 1;
1076 clib_memcpy (rmp->ip_address, &ip_addr_v6 (ip),
1077 sizeof (ip_addr_v6 (ip)));
1078 break;
1079
1080 default:
1081 ASSERT (0);
1082 }
1083 rmp->context = context;
1084
1085 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1086}
1087
1088static void
1089vl_api_one_map_resolver_dump_t_handler (vl_api_one_map_resolver_dump_t * mp)
1090{
1091 unix_shared_memory_queue_t *q = NULL;
1092 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1093 lisp_msmr_t *mr;
1094
1095 q = vl_api_client_index_to_input_queue (mp->client_index);
1096 if (q == 0)
1097 {
1098 return;
1099 }
1100
1101 vec_foreach (mr, lcm->map_resolvers)
1102 {
1103 send_one_map_resolver_details (&mr->address, q, mp->context);
1104 }
1105}
1106
1107static void
1108send_eid_table_map_pair (hash_pair_t * p,
1109 unix_shared_memory_queue_t * q, u32 context)
1110{
1111 vl_api_one_eid_table_map_details_t *rmp = NULL;
1112
1113 rmp = vl_msg_api_alloc (sizeof (*rmp));
1114 memset (rmp, 0, sizeof (*rmp));
1115 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_MAP_DETAILS);
1116
1117 rmp->vni = clib_host_to_net_u32 (p->key);
1118 rmp->dp_table = clib_host_to_net_u32 (p->value[0]);
1119 rmp->context = context;
1120 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1121}
1122
1123static void
1124vl_api_one_eid_table_map_dump_t_handler (vl_api_one_eid_table_map_dump_t * mp)
1125{
1126 unix_shared_memory_queue_t *q = NULL;
1127 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1128 hash_pair_t *p;
1129 uword *vni_table = 0;
1130
1131 q = vl_api_client_index_to_input_queue (mp->client_index);
1132 if (q == 0)
1133 {
1134 return;
1135 }
1136
1137 if (mp->is_l2)
1138 {
1139 vni_table = lcm->bd_id_by_vni;
1140 }
1141 else
1142 {
1143 vni_table = lcm->table_id_by_vni;
1144 }
1145
1146 /* *INDENT-OFF* */
1147 hash_foreach_pair (p, vni_table,
1148 ({
1149 send_eid_table_map_pair (p, q, mp->context);
1150 }));
1151 /* *INDENT-ON* */
1152}
1153
1154static void
1155send_eid_table_vni (u32 vni, unix_shared_memory_queue_t * q, u32 context)
1156{
1157 vl_api_one_eid_table_vni_details_t *rmp = 0;
1158
1159 rmp = vl_msg_api_alloc (sizeof (*rmp));
1160 memset (rmp, 0, sizeof (*rmp));
1161 rmp->_vl_msg_id = ntohs (VL_API_ONE_EID_TABLE_VNI_DETAILS);
1162 rmp->context = context;
1163 rmp->vni = clib_host_to_net_u32 (vni);
1164 vl_msg_api_send_shmem (q, (u8 *) & rmp);
1165}
1166
1167static void
1168one_adjacency_copy (vl_api_one_adjacency_t * dst, lisp_adjacency_t * adjs)
1169{
1170 lisp_adjacency_t *adj;
1171 vl_api_one_adjacency_t a;
1172 u32 i, n = vec_len (adjs);
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001173 lisp_nsh_api_t nsh;
Filip Tehlar694396d2017-02-17 14:29:11 +01001174
1175 for (i = 0; i < n; i++)
1176 {
1177 adj = vec_elt_at_index (adjs, i);
1178 memset (&a, 0, sizeof (a));
1179
1180 switch (gid_address_type (&adj->reid))
1181 {
1182 case GID_ADDR_IP_PREFIX:
1183 a.reid_prefix_len = gid_address_ippref_len (&adj->reid);
1184 a.leid_prefix_len = gid_address_ippref_len (&adj->leid);
1185 if (gid_address_ip_version (&adj->reid) == IP4)
1186 {
1187 a.eid_type = 0; /* ipv4 type */
1188 clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 4);
1189 clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 4);
1190 }
1191 else
1192 {
1193 a.eid_type = 1; /* ipv6 type */
1194 clib_memcpy (a.reid, &gid_address_ip (&adj->reid), 16);
1195 clib_memcpy (a.leid, &gid_address_ip (&adj->leid), 16);
1196 }
1197 break;
1198 case GID_ADDR_MAC:
1199 a.eid_type = 2; /* l2 mac type */
1200 mac_copy (a.reid, gid_address_mac (&adj->reid));
1201 mac_copy (a.leid, gid_address_mac (&adj->leid));
1202 break;
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001203 case GID_ADDR_NSH:
1204 a.eid_type = 3; /* NSH type */
1205 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (&adj->reid));
1206 nsh.si = gid_address_nsh_si (&adj->reid);
1207 clib_memcpy (a.reid, &nsh, sizeof (nsh));
1208
1209 nsh.spi = clib_host_to_net_u32 (gid_address_nsh_spi (&adj->leid));
1210 nsh.si = gid_address_nsh_si (&adj->leid);
1211 clib_memcpy (a.leid, &nsh, sizeof (nsh));
Filip Tehlarb8633d22017-06-09 15:25:57 +02001212 break;
Filip Tehlar694396d2017-02-17 14:29:11 +01001213 default:
1214 ASSERT (0);
1215 }
1216 dst[i] = a;
1217 }
1218}
1219
1220static void
1221 vl_api_show_one_rloc_probe_state_t_handler
1222 (vl_api_show_one_rloc_probe_state_t * mp)
1223{
1224 vl_api_show_one_rloc_probe_state_reply_t *rmp = 0;
1225 int rv = 0;
1226
1227 /* *INDENT-OFF* */
1228 REPLY_MACRO2 (VL_API_SHOW_ONE_RLOC_PROBE_STATE_REPLY,
1229 {
1230 rmp->is_enabled = vnet_lisp_rloc_probe_state_get ();
1231 });
1232 /* *INDENT-ON* */
1233}
1234
1235static void
1236 vl_api_show_one_map_register_state_t_handler
1237 (vl_api_show_one_map_register_state_t * mp)
1238{
1239 vl_api_show_one_map_register_state_reply_t *rmp = 0;
1240 int rv = 0;
1241
1242 /* *INDENT-OFF* */
1243 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_STATE_REPLY,
1244 {
1245 rmp->is_enabled = vnet_lisp_map_register_state_get ();
1246 });
1247 /* *INDENT-ON* */
1248}
1249
1250static void
1251vl_api_one_adjacencies_get_t_handler (vl_api_one_adjacencies_get_t * mp)
1252{
1253 vl_api_one_adjacencies_get_reply_t *rmp = 0;
1254 lisp_adjacency_t *adjs = 0;
1255 int rv = 0;
1256 u32 size = ~0;
1257 u32 vni = clib_net_to_host_u32 (mp->vni);
1258
1259 adjs = vnet_lisp_adjacencies_get_by_vni (vni);
1260 size = vec_len (adjs) * sizeof (vl_api_one_adjacency_t);
1261
1262 /* *INDENT-OFF* */
1263 REPLY_MACRO4 (VL_API_ONE_ADJACENCIES_GET_REPLY, size,
1264 {
1265 rmp->count = clib_host_to_net_u32 (vec_len (adjs));
1266 one_adjacency_copy (rmp->adjacencies, adjs);
1267 });
1268 /* *INDENT-ON* */
1269
1270 vec_free (adjs);
1271}
1272
1273static void
1274vl_api_one_eid_table_vni_dump_t_handler (vl_api_one_eid_table_vni_dump_t * mp)
1275{
1276 hash_pair_t *p;
1277 u32 *vnis = 0;
1278 unix_shared_memory_queue_t *q = 0;
1279 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1280
1281 q = vl_api_client_index_to_input_queue (mp->client_index);
1282 if (q == 0)
1283 {
1284 return;
1285 }
1286
1287 /* *INDENT-OFF* */
1288 hash_foreach_pair (p, lcm->table_id_by_vni,
1289 ({
1290 hash_set (vnis, p->key, 0);
1291 }));
1292
1293 hash_foreach_pair (p, lcm->bd_id_by_vni,
1294 ({
1295 hash_set (vnis, p->key, 0);
1296 }));
1297
1298 hash_foreach_pair (p, vnis,
1299 ({
1300 send_eid_table_vni (p->key, q, mp->context);
1301 }));
1302 /* *INDENT-ON* */
1303
1304 hash_free (vnis);
1305}
1306
1307static void
1308vl_api_show_one_status_t_handler (vl_api_show_one_status_t * mp)
1309{
1310 unix_shared_memory_queue_t *q = NULL;
1311 vl_api_show_one_status_reply_t *rmp = NULL;
1312 int rv = 0;
1313
1314 q = vl_api_client_index_to_input_queue (mp->client_index);
1315 if (q == 0)
1316 {
1317 return;
1318 }
1319
1320 /* *INDENT-OFF* */
1321 REPLY_MACRO2(VL_API_SHOW_ONE_STATUS_REPLY,
1322 ({
1323 rmp->gpe_status = vnet_lisp_gpe_enable_disable_status ();
1324 rmp->feature_status = vnet_lisp_enable_disable_status ();
1325 }));
1326 /* *INDENT-ON* */
1327}
1328
1329static void
1330 vl_api_one_get_map_request_itr_rlocs_t_handler
1331 (vl_api_one_get_map_request_itr_rlocs_t * mp)
1332{
1333 unix_shared_memory_queue_t *q = NULL;
1334 vl_api_one_get_map_request_itr_rlocs_reply_t *rmp = NULL;
1335 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1336 locator_set_t *loc_set = 0;
1337 u8 *tmp_str = 0;
1338 int rv = 0;
1339
1340 q = vl_api_client_index_to_input_queue (mp->client_index);
1341 if (q == 0)
1342 {
1343 return;
1344 }
1345
1346 if (~0 == lcm->mreq_itr_rlocs)
1347 {
1348 tmp_str = format (0, " ");
1349 }
1350 else
1351 {
1352 loc_set =
1353 pool_elt_at_index (lcm->locator_set_pool, lcm->mreq_itr_rlocs);
1354 tmp_str = format (0, "%s", loc_set->name);
1355 }
1356
1357 /* *INDENT-OFF* */
1358 REPLY_MACRO2(VL_API_ONE_GET_MAP_REQUEST_ITR_RLOCS_REPLY,
1359 ({
1360 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1361 ARRAY_LEN(rmp->locator_set_name) - 1);
1362 }));
1363 /* *INDENT-ON* */
1364
1365 vec_free (tmp_str);
1366}
1367
1368static void
Filip Tehlaref2a5bf2017-05-30 07:14:46 +02001369vl_api_show_one_nsh_mapping_t_handler (vl_api_show_one_nsh_mapping_t * mp)
1370{
1371 unix_shared_memory_queue_t *q = NULL;
1372 vl_api_show_one_nsh_mapping_reply_t *rmp = NULL;
1373 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1374 mapping_t *m;
1375 locator_set_t *ls = 0;
1376 u8 *tmp_str = 0;
1377 u8 is_set = 0;
1378 int rv = 0;
1379
1380 q = vl_api_client_index_to_input_queue (mp->client_index);
1381 if (q == 0)
1382 {
1383 return;
1384 }
1385
1386 if (lcm->nsh_map_index == (u32) ~ 0)
1387 {
1388 tmp_str = format (0, "N/A");
1389 }
1390 else
1391 {
1392 m = pool_elt_at_index (lcm->mapping_pool, lcm->nsh_map_index);
1393 if (~0 != m->locator_set_index)
1394 {
1395 ls =
1396 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1397 tmp_str = format (0, "%s", ls->name);
1398 is_set = 1;
1399 }
1400 else
1401 {
1402 tmp_str = format (0, "N/A");
1403 }
1404 }
1405 vec_add1 (tmp_str, 0);
1406
1407 /* *INDENT-OFF* */
1408 REPLY_MACRO2(VL_API_SHOW_ONE_NSH_MAPPING_REPLY,
1409 ({
1410 rmp->is_set = is_set;
1411 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1412 ARRAY_LEN(rmp->locator_set_name) - 1);
1413 }));
1414 /* *INDENT-ON* */
1415}
1416
1417static void
Filip Tehlar694396d2017-02-17 14:29:11 +01001418vl_api_show_one_pitr_t_handler (vl_api_show_one_pitr_t * mp)
1419{
1420 unix_shared_memory_queue_t *q = NULL;
1421 vl_api_show_one_pitr_reply_t *rmp = NULL;
1422 lisp_cp_main_t *lcm = vnet_lisp_cp_get_main ();
1423 mapping_t *m;
1424 locator_set_t *ls = 0;
1425 u8 *tmp_str = 0;
1426 int rv = 0;
1427
1428 q = vl_api_client_index_to_input_queue (mp->client_index);
1429 if (q == 0)
1430 {
1431 return;
1432 }
1433
1434 if (!lcm->lisp_pitr)
1435 {
1436 tmp_str = format (0, "N/A");
1437 }
1438 else
1439 {
1440 m = pool_elt_at_index (lcm->mapping_pool, lcm->pitr_map_index);
1441 if (~0 != m->locator_set_index)
1442 {
1443 ls =
1444 pool_elt_at_index (lcm->locator_set_pool, m->locator_set_index);
1445 tmp_str = format (0, "%s", ls->name);
1446 }
1447 else
1448 {
1449 tmp_str = format (0, "N/A");
1450 }
1451 }
1452 vec_add1 (tmp_str, 0);
1453
1454 /* *INDENT-OFF* */
1455 REPLY_MACRO2(VL_API_SHOW_ONE_PITR_REPLY,
1456 ({
1457 rmp->status = lcm->lisp_pitr;
1458 strncpy((char *) rmp->locator_set_name, (char *) tmp_str,
1459 ARRAY_LEN(rmp->locator_set_name) - 1);
1460 }));
1461 /* *INDENT-ON* */
1462}
1463
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001464static void
1465 vl_api_show_one_stats_enable_disable_t_handler
1466 (vl_api_show_one_stats_enable_disable_t * mp)
1467{
1468 vl_api_show_one_stats_enable_disable_reply_t *rmp = NULL;
1469 vnet_api_error_t rv = 0;
1470
1471 /* *INDENT-OFF* */
1472 REPLY_MACRO2 (VL_API_SHOW_ONE_STATS_ENABLE_DISABLE_REPLY,
1473 ({
1474 rmp->is_en = vnet_lisp_stats_enable_disable_state ();
1475 }));
1476 /* *INDENT-ON* */
1477}
1478
1479static void
1480 vl_api_one_stats_enable_disable_t_handler
1481 (vl_api_one_stats_enable_disable_t * mp)
1482{
1483 vl_api_one_enable_disable_reply_t *rmp = NULL;
1484
1485 vnet_api_error_t rv = vnet_lisp_stats_enable_disable (mp->is_en);
1486 REPLY_MACRO (VL_API_ONE_ENABLE_DISABLE_REPLY);
1487}
1488
1489static void
Filip Tehlar4868ff62017-03-09 16:48:39 +01001490lisp_fid_addr_to_api (fid_address_t * fid, u8 * dst, u8 * api_eid_type,
1491 u8 * prefix_length)
1492{
1493 switch (fid_addr_type (fid))
1494 {
1495 case FID_ADDR_IP_PREF:
1496 *prefix_length = fid_addr_prefix_length (fid);
1497 if (fid_addr_ip_version (fid) == IP4)
1498 {
1499 *api_eid_type = 0; /* ipv4 type */
1500 clib_memcpy (dst, &fid_addr_ippref (fid), 4);
1501 }
1502 else
1503 {
1504 *api_eid_type = 1; /* ipv6 type */
1505 clib_memcpy (dst, &fid_addr_ippref (fid), 16);
1506 }
1507 break;
1508 case FID_ADDR_MAC:
1509 *api_eid_type = 2; /* l2 mac type */
1510 mac_copy (dst, fid_addr_mac (fid));
1511 break;
1512 default:
1513 ASSERT (0);
1514 }
1515}
1516
1517static void
Filip Tehlar21511912017-04-07 10:41:42 +02001518vl_api_one_stats_flush_t_handler (vl_api_one_stats_flush_t * mp)
1519{
1520 vl_api_one_stats_flush_reply_t *rmp;
1521 u8 rv;
1522
1523 rv = vnet_lisp_flush_stats ();
1524 REPLY_MACRO (VL_API_ONE_STATS_FLUSH_REPLY);
1525}
1526
1527static void
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001528vl_api_one_stats_dump_t_handler (vl_api_one_stats_dump_t * mp)
1529{
Filip Tehlar4868ff62017-03-09 16:48:39 +01001530 vl_api_one_stats_details_t *rmp;
1531 lisp_api_stats_t *stats, *stat;
1532 u8 rv = 0;
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001533
Filip Tehlar4868ff62017-03-09 16:48:39 +01001534 stats = vnet_lisp_get_stats ();
1535 vec_foreach (stat, stats)
1536 {
1537 /* *INDENT-OFF* */
1538 REPLY_DETAILS (VL_API_ONE_STATS_DETAILS,
1539 ({
1540 lisp_fid_addr_to_api (&stat->deid, rmp->deid, &rmp->eid_type,
1541 &rmp->deid_pref_len);
1542 lisp_fid_addr_to_api (&stat->seid, rmp->seid, &rmp->eid_type,
1543 &rmp->seid_pref_len);
1544 rmp->vni = clib_host_to_net_u32 (stat->vni);
1545
1546 rmp->is_ip4 = ip_addr_version (&stat->rmt_rloc) == IP4 ? 1 : 0;
1547 ip_address_copy_addr (rmp->rloc, &stat->rmt_rloc);
1548 ip_address_copy_addr (rmp->lloc, &stat->loc_rloc);
1549
Filip Tehlar21511912017-04-07 10:41:42 +02001550 rmp->pkt_count = clib_host_to_net_u32 (stat->counters.packets);
1551 rmp->bytes = clib_host_to_net_u32 (stat->counters.bytes);
Filip Tehlar4868ff62017-03-09 16:48:39 +01001552 }));
1553 /* *INDENT-ON* */
1554 }
Filip Tehlar7eaf0e52017-03-08 08:46:51 +01001555}
1556
Filip Tehlard5a65db2017-05-17 17:21:10 +02001557static void
1558 vl_api_one_add_del_l2_arp_entry_t_handler
1559 (vl_api_one_add_del_l2_arp_entry_t * mp)
1560{
1561 vl_api_one_add_del_l2_arp_entry_reply_t *rmp;
1562 int rv = 0;
1563 gid_address_t _arp, *arp = &_arp;
1564 memset (arp, 0, sizeof (*arp));
1565
1566 gid_address_type (arp) = GID_ADDR_ARP;
1567 gid_address_arp_bd (arp) = clib_net_to_host_u32 (mp->bd);
1568
1569 /* vpp keeps ip4 addresses in network byte order */
Filip Tehlar05879992017-09-05 15:46:09 +02001570 ip_address_set (&gid_address_arp_ndp_ip (arp), &mp->ip4, IP4);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001571
Filip Tehlar64929642017-09-20 08:41:23 +02001572 rv = vnet_lisp_add_del_l2_arp_ndp_entry (arp, mp->mac, mp->is_add);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001573
1574 REPLY_MACRO (VL_API_ONE_ADD_DEL_L2_ARP_ENTRY_REPLY);
1575}
1576
1577static void
Filip Tehlar05879992017-09-05 15:46:09 +02001578vl_api_one_add_del_ndp_entry_t_handler (vl_api_one_add_del_ndp_entry_t * mp)
1579{
1580 vl_api_one_add_del_ndp_entry_reply_t *rmp;
1581 int rv = 0;
1582 gid_address_t _g, *g = &_g;
1583 memset (g, 0, sizeof (*g));
1584
1585 gid_address_type (g) = GID_ADDR_NDP;
1586 gid_address_ndp_bd (g) = clib_net_to_host_u32 (mp->bd);
1587 ip_address_set (&gid_address_arp_ndp_ip (g), mp->ip6, IP6);
1588
Filip Tehlar64929642017-09-20 08:41:23 +02001589 rv = vnet_lisp_add_del_l2_arp_ndp_entry (g, mp->mac, mp->is_add);
Filip Tehlar05879992017-09-05 15:46:09 +02001590
1591 REPLY_MACRO (VL_API_ONE_ADD_DEL_NDP_ENTRY_REPLY);
1592}
1593
1594static void
1595vl_api_one_ndp_bd_get_t_handler (vl_api_one_ndp_bd_get_t * mp)
1596{
1597 vl_api_one_ndp_bd_get_reply_t *rmp;
1598 int rv = 0;
1599 u32 i = 0;
1600 hash_pair_t *p;
1601
1602 u32 *bds = vnet_lisp_ndp_bds_get ();
1603 u32 size = hash_elts (bds) * sizeof (u32);
1604
1605 /* *INDENT-OFF* */
1606 REPLY_MACRO4 (VL_API_ONE_NDP_BD_GET_REPLY, size,
1607 {
1608 rmp->count = clib_host_to_net_u32 (hash_elts (bds));
1609 hash_foreach_pair (p, bds,
1610 ({
1611 rmp->bridge_domains[i++] = clib_host_to_net_u32 (p->key);
1612 }));
1613 });
1614 /* *INDENT-ON* */
1615
1616 hash_free (bds);
1617}
1618
1619static void
Filip Tehlard5a65db2017-05-17 17:21:10 +02001620vl_api_one_l2_arp_bd_get_t_handler (vl_api_one_l2_arp_bd_get_t * mp)
1621{
1622 vl_api_one_l2_arp_bd_get_reply_t *rmp;
1623 int rv = 0;
1624 u32 i = 0;
1625 hash_pair_t *p;
1626
1627 u32 *bds = vnet_lisp_l2_arp_bds_get ();
1628 u32 size = hash_elts (bds) * sizeof (u32);
1629
1630 /* *INDENT-OFF* */
1631 REPLY_MACRO4 (VL_API_ONE_L2_ARP_BD_GET_REPLY, size,
1632 {
1633 rmp->count = clib_host_to_net_u32 (hash_elts (bds));
1634 hash_foreach_pair (p, bds,
1635 ({
1636 rmp->bridge_domains[i++] = clib_host_to_net_u32 (p->key);
1637 }));
1638 });
1639 /* *INDENT-ON* */
1640
1641 hash_free (bds);
1642}
1643
1644static void
1645vl_api_one_l2_arp_entries_get_t_handler (vl_api_one_l2_arp_entries_get_t * mp)
1646{
1647 vl_api_one_l2_arp_entries_get_reply_t *rmp;
1648 lisp_api_l2_arp_entry_t *entries = 0, *e;
1649 u32 i = 0;
1650 int rv = 0;
1651
1652 u32 bd = clib_net_to_host_u32 (mp->bd);
1653
1654 entries = vnet_lisp_l2_arp_entries_get_by_bd (bd);
Ole Troan1d7d2ab2017-07-06 14:25:38 +02001655 u32 size = vec_len (entries) * sizeof (vl_api_one_l2_arp_entry_t);
Filip Tehlard5a65db2017-05-17 17:21:10 +02001656
1657 /* *INDENT-OFF* */
1658 REPLY_MACRO4 (VL_API_ONE_L2_ARP_ENTRIES_GET_REPLY, size,
1659 {
1660 rmp->count = clib_host_to_net_u32 (vec_len (entries));
1661 vec_foreach (e, entries)
1662 {
1663 mac_copy (rmp->entries[i].mac, e->mac);
1664 rmp->entries[i].ip4 = e->ip4;
1665 i++;
1666 }
1667 });
1668 /* *INDENT-ON* */
1669
1670 vec_free (entries);
1671}
1672
Filip Tehlar7048ff12017-07-27 08:09:14 +02001673static void
1674 vl_api_one_map_register_fallback_threshold_t_handler
1675 (vl_api_one_map_register_fallback_threshold_t * mp)
1676{
1677 vl_api_one_map_register_fallback_threshold_reply_t *rmp;
1678 int rv = 0;
1679
1680 mp->value = clib_net_to_host_u32 (mp->value);
1681 rv = vnet_lisp_map_register_fallback_threshold_set (mp->value);
Filip Tehlar6f9f6f32017-08-08 13:11:22 +02001682 REPLY_MACRO (VL_API_ONE_MAP_REGISTER_FALLBACK_THRESHOLD_REPLY);
Filip Tehlar7048ff12017-07-27 08:09:14 +02001683}
1684
1685static void
1686 vl_api_show_one_map_register_fallback_threshold_t_handler
1687 (vl_api_show_one_map_register_fallback_threshold_t * mp)
1688{
1689 vl_api_show_one_map_register_fallback_threshold_reply_t *rmp;
1690 int rv = 0;
1691
1692 u32 value = vnet_lisp_map_register_fallback_threshold_get ();
1693
1694 /* *INDENT-OFF* */
1695 REPLY_MACRO2 (VL_API_SHOW_ONE_MAP_REGISTER_FALLBACK_THRESHOLD_REPLY,
1696 ({
1697 rmp->value = clib_host_to_net_u32 (value);
1698 }));
1699 /* *INDENT-ON* */
1700}
1701
Filip Tehlar05879992017-09-05 15:46:09 +02001702static void
Filip Tehlara4980b82017-09-27 14:32:02 +02001703 vl_api_one_set_transport_protocol_t_handler
1704 (vl_api_one_set_transport_protocol_t * mp)
1705{
1706 vl_api_one_set_transport_protocol_reply_t *rmp;
1707 int rv = 0;
1708
1709 rv = vnet_lisp_set_transport_protocol (mp->protocol);
1710
1711 REPLY_MACRO (VL_API_ONE_SET_TRANSPORT_PROTOCOL_REPLY);
1712}
1713
1714static void
1715 vl_api_one_get_transport_protocol_t_handler
1716 (vl_api_one_get_transport_protocol_t * mp)
1717{
1718 vl_api_one_get_transport_protocol_reply_t *rmp;
1719 int rv = 0;
1720 u8 proto = (u8) vnet_lisp_get_transport_protocol ();
1721
1722 /* *INDENT-OFF* */
1723 REPLY_MACRO2 (VL_API_ONE_GET_TRANSPORT_PROTOCOL_REPLY,
1724 ({
1725 rmp->protocol = proto;
1726 }));
1727 /* *INDENT-ON* */
1728}
1729
1730static void
Filip Tehlar05879992017-09-05 15:46:09 +02001731vl_api_one_ndp_entries_get_t_handler (vl_api_one_ndp_entries_get_t * mp)
1732{
1733 vl_api_one_ndp_entries_get_reply_t *rmp = 0;
1734 lisp_api_ndp_entry_t *entries = 0, *e;
1735 u32 i = 0;
1736 int rv = 0;
1737
1738 u32 bd = clib_net_to_host_u32 (mp->bd);
1739
1740 entries = vnet_lisp_ndp_entries_get_by_bd (bd);
1741 u32 size = vec_len (entries) * sizeof (vl_api_one_ndp_entry_t);
1742
1743 /* *INDENT-OFF* */
1744 REPLY_MACRO4 (VL_API_ONE_NDP_ENTRIES_GET_REPLY, size,
1745 {
1746 rmp->count = clib_host_to_net_u32 (vec_len (entries));
1747 vec_foreach (e, entries)
1748 {
1749 mac_copy (rmp->entries[i].mac, e->mac);
1750 clib_memcpy (rmp->entries[i].ip6, e->ip6, 16);
1751 i++;
1752 }
1753 });
1754 /* *INDENT-ON* */
1755
1756 vec_free (entries);
1757}
1758
Filip Tehlar694396d2017-02-17 14:29:11 +01001759/*
1760 * one_api_hookup
1761 * Add vpe's API message handlers to the table.
1762 * vlib has alread mapped shared memory and
1763 * added the client registration handlers.
1764 * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process()
1765 */
1766#define vl_msg_name_crc_list
1767#include <vnet/vnet_all_api_h.h>
1768#undef vl_msg_name_crc_list
1769
1770static void
1771setup_message_id_table (api_main_t * am)
1772{
1773#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id);
Filip Tehlar974cdc62017-02-22 18:09:49 +01001774 foreach_vl_msg_name_crc_one;
Filip Tehlar694396d2017-02-17 14:29:11 +01001775#undef _
1776}
1777
1778static clib_error_t *
1779one_api_hookup (vlib_main_t * vm)
1780{
1781 api_main_t *am = &api_main;
1782
1783#define _(N,n) \
1784 vl_msg_api_set_handlers(VL_API_##N, #n, \
1785 vl_api_##n##_t_handler, \
1786 vl_noop_handler, \
1787 vl_api_##n##_t_endian, \
1788 vl_api_##n##_t_print, \
1789 sizeof(vl_api_##n##_t), 1);
1790 foreach_vpe_api_msg;
1791#undef _
1792
1793 /*
1794 * Set up the (msg_name, crc, message-id) table
1795 */
1796 setup_message_id_table (am);
1797
1798 return 0;
1799}
1800
1801VLIB_API_INIT_FUNCTION (one_api_hookup);
1802
1803/*
1804 * fd.io coding-style-patch-verification: ON
1805 *
1806 * Local Variables:
1807 * eval: (c-set-style "gnu")
1808 * End:
1809 */