blob: 87bb36a54269338bd8e13fa71a5a853a15fddff9 [file] [log] [blame]
Florin Coras248210c2021-09-14 18:54:45 -07001/*
2 *------------------------------------------------------------------
3 * memclnt_api.c VLIB API implementation
4 *
5 * Copyright (c) 2009 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 <fcntl.h>
21#include <pthread.h>
22#include <vppinfra/vec.h>
23#include <vppinfra/hash.h>
24#include <vppinfra/pool.h>
25#include <vppinfra/format.h>
26#include <vppinfra/byte_order.h>
27#include <vppinfra/elog.h>
28#include <vlib/vlib.h>
29#include <vlib/unix/unix.h>
30#include <vlibapi/api.h>
31#include <vlibmemory/api.h>
Filip Tehlarf0e67d72021-07-23 22:03:05 +000032#include <vlibapi/api_helper_macros.h>
Florin Coras248210c2021-09-14 18:54:45 -070033
34/**
35 * @file
36 * @brief Binary API messaging via shared memory
37 * Low-level, primary provisioning interface
38 */
39/*? %%clicmd:group_label Binary API CLI %% ?*/
40/*? %%syscfg:group_label Binary API configuration %% ?*/
41
42#define TRACE_VLIB_MEMORY_QUEUE 0
43
44#include <vlibmemory/vl_memory_msg_enum.h> /* enumerate all vlib messages */
45
46#define vl_typedefs /* define message structures */
47#include <vlibmemory/vl_memory_api_h.h>
48#undef vl_typedefs
49
50/* instantiate all the print functions we know about */
51#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
52#define vl_printfun
53#include <vlibmemory/vl_memory_api_h.h>
54#undef vl_printfun
55
Florin Coras248210c2021-09-14 18:54:45 -070056/* instantiate all the endian swap functions we know about */
57#define vl_endianfun
58#include <vlibmemory/vl_memory_api_h.h>
59#undef vl_endianfun
60
Klement Sekera9b7e8ac2021-11-22 21:26:20 +010061#define vl_calcsizefun
62#include <vlibmemory/vl_memory_api_h.h>
63#undef vl_calcsizefun
64
Florin Coras248210c2021-09-14 18:54:45 -070065static void
66vl_api_get_first_msg_id_t_handler (vl_api_get_first_msg_id_t *mp)
67{
68 vl_api_get_first_msg_id_reply_t *rmp;
69 vl_api_registration_t *regp;
70 uword *p;
71 api_main_t *am = vlibapi_get_main ();
72 vl_api_msg_range_t *rp;
73 u8 name[64];
74 u16 first_msg_id = ~0;
75 int rv = -7; /* VNET_API_ERROR_INVALID_VALUE */
76
77 regp = vl_api_client_index_to_registration (mp->client_index);
78 if (!regp)
79 return;
80
81 if (am->msg_range_by_name == 0)
82 goto out;
83 strncpy ((char *) name, (char *) mp->name, ARRAY_LEN (name));
84 name[ARRAY_LEN (name) - 1] = '\0';
85 p = hash_get_mem (am->msg_range_by_name, name);
86 if (p == 0)
87 goto out;
88
89 rp = vec_elt_at_index (am->msg_ranges, p[0]);
90 first_msg_id = rp->first_msg_id;
91 rv = 0;
92
93out:
94 rmp = vl_msg_api_alloc (sizeof (*rmp));
95 rmp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID_REPLY);
96 rmp->context = mp->context;
97 rmp->retval = ntohl (rv);
98 rmp->first_msg_id = ntohs (first_msg_id);
99 vl_api_send_msg (regp, (u8 *) rmp);
100}
101
102void
103vl_api_api_versions_t_handler (vl_api_api_versions_t *mp)
104{
105 api_main_t *am = vlibapi_get_main ();
106 vl_api_api_versions_reply_t *rmp;
107 vl_api_registration_t *reg;
108 u32 nmsg = vec_len (am->api_version_list);
109 int msg_size = sizeof (*rmp) + sizeof (rmp->api_versions[0]) * nmsg;
110 int i;
111
112 reg = vl_api_client_index_to_registration (mp->client_index);
113 if (!reg)
114 return;
115
116 rmp = vl_msg_api_alloc (msg_size);
117 clib_memset (rmp, 0, msg_size);
118 rmp->_vl_msg_id = ntohs (VL_API_API_VERSIONS_REPLY);
119
120 /* fill in the message */
121 rmp->context = mp->context;
122 rmp->count = htonl (nmsg);
123
124 for (i = 0; i < nmsg; ++i)
125 {
126 api_version_t *vl = &am->api_version_list[i];
127 rmp->api_versions[i].major = htonl (vl->major);
128 rmp->api_versions[i].minor = htonl (vl->minor);
129 rmp->api_versions[i].patch = htonl (vl->patch);
130 strncpy ((char *) rmp->api_versions[i].name, vl->name,
131 ARRAY_LEN (rmp->api_versions[i].name));
132 rmp->api_versions[i].name[ARRAY_LEN (rmp->api_versions[i].name) - 1] =
133 '\0';
134 }
135
136 vl_api_send_msg (reg, (u8 *) rmp);
137}
138
Filip Tehlarf0e67d72021-07-23 22:03:05 +0000139static void
140vl_api_control_ping_t_handler (vl_api_control_ping_t *mp)
141{
142 vl_api_control_ping_reply_t *rmp;
143 int rv = 0;
144
145 REPLY_MACRO2 (VL_API_CONTROL_PING_REPLY,
146 ({ rmp->vpe_pid = ntohl (getpid ()); }));
147}
148
Florin Coras248210c2021-09-14 18:54:45 -0700149#define foreach_vlib_api_msg \
150 _ (GET_FIRST_MSG_ID, get_first_msg_id) \
Filip Tehlarf0e67d72021-07-23 22:03:05 +0000151 _ (API_VERSIONS, api_versions) \
152 _ (CONTROL_PING, control_ping)
Florin Coras248210c2021-09-14 18:54:45 -0700153
154/*
155 * vl_api_init
156 */
157static int
158vlib_api_init (void)
159{
Filip Tehlarf0e67d72021-07-23 22:03:05 +0000160 api_main_t *am = vlibapi_get_main ();
Florin Coras248210c2021-09-14 18:54:45 -0700161 vl_msg_api_msg_config_t cfg;
162 vl_msg_api_msg_config_t *c = &cfg;
163
Filip Tehlar36217e32021-07-23 08:51:10 +0000164 cJSON_Hooks cjson_hooks = {
165 .malloc_fn = clib_mem_alloc,
166 .free_fn = clib_mem_free,
167 };
168 cJSON_InitHooks (&cjson_hooks);
169
Florin Coras248210c2021-09-14 18:54:45 -0700170 clib_memset (c, 0, sizeof (*c));
171
172#define _(N, n) \
173 do \
174 { \
175 c->id = VL_API_##N; \
176 c->name = #n; \
177 c->handler = vl_api_##n##_t_handler; \
178 c->cleanup = vl_noop_handler; \
179 c->endian = vl_api_##n##_t_endian; \
180 c->print = vl_api_##n##_t_print; \
Filip Tehlar5a884ec2021-10-11 15:22:38 +0000181 c->print_json = vl_api_##n##_t_print_json; \
182 c->tojson = vl_api_##n##_t_tojson; \
183 c->fromjson = vl_api_##n##_t_fromjson; \
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100184 c->calc_size = vl_api_##n##_t_calc_size; \
Florin Coras248210c2021-09-14 18:54:45 -0700185 c->size = sizeof (vl_api_##n##_t); \
186 c->traced = 1; /* trace, so these msgs print */ \
187 c->replay = 0; /* don't replay client create/delete msgs */ \
188 c->message_bounce = 0; /* don't bounce this message */ \
189 vl_msg_api_config (c); \
190 } \
191 while (0);
192
193 foreach_vlib_api_msg;
194#undef _
195
Filip Tehlarf0e67d72021-07-23 22:03:05 +0000196 am->is_mp_safe[VL_API_CONTROL_PING] = 1;
197 am->is_mp_safe[VL_API_CONTROL_PING_REPLY] = 1;
198
Florin Coras248210c2021-09-14 18:54:45 -0700199 return 0;
200}
201
202u64 vector_rate_histogram[SLEEP_N_BUCKETS];
203
204/*
205 * Callback to send ourselves a plugin numbering-space trace msg
206 */
207static void
208send_one_plugin_msg_ids_msg (u8 *name, u16 first_msg_id, u16 last_msg_id)
209{
210 vl_api_trace_plugin_msg_ids_t *mp;
211 api_main_t *am = vlibapi_get_main ();
212 vl_shmem_hdr_t *shmem_hdr = am->shmem_hdr;
213 svm_queue_t *q;
214
215 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
216 clib_memset (mp, 0, sizeof (*mp));
217
218 mp->_vl_msg_id = clib_host_to_net_u16 (VL_API_TRACE_PLUGIN_MSG_IDS);
219 strncpy ((char *) mp->plugin_name, (char *) name,
220 sizeof (mp->plugin_name) - 1);
221 mp->first_msg_id = clib_host_to_net_u16 (first_msg_id);
222 mp->last_msg_id = clib_host_to_net_u16 (last_msg_id);
223
224 q = shmem_hdr->vl_input_queue;
225
226 vl_msg_api_send_shmem (q, (u8 *) &mp);
227}
228
229void
230vl_api_save_msg_table (void)
231{
232 u8 *serialized_message_table;
233 api_main_t *am = vlibapi_get_main ();
234 u8 *chroot_file;
235 int fd, rv;
236
237 /*
238 * Snapshoot the api message table.
239 */
240 if (strstr ((char *) am->save_msg_table_filename, "..") ||
241 index ((char *) am->save_msg_table_filename, '/'))
242 {
243 clib_warning ("illegal save-message-table filename '%s'",
244 am->save_msg_table_filename);
245 return;
246 }
247
248 chroot_file = format (0, "/tmp/%s%c", am->save_msg_table_filename, 0);
249
250 fd = creat ((char *) chroot_file, 0644);
251
252 if (fd < 0)
253 {
254 clib_unix_warning ("creat");
255 return;
256 }
257
258 serialized_message_table = vl_api_serialize_message_table (am, 0);
259
260 rv =
261 write (fd, serialized_message_table, vec_len (serialized_message_table));
262
263 if (rv != vec_len (serialized_message_table))
264 clib_unix_warning ("write");
265
266 rv = close (fd);
267 if (rv < 0)
268 clib_unix_warning ("close");
269
270 vec_free (chroot_file);
271 vec_free (serialized_message_table);
272}
273
274clib_error_t *vat_builtin_main_init (vlib_main_t *vm) __attribute__ ((weak));
275clib_error_t *
276vat_builtin_main_init (vlib_main_t *vm)
277{
278 return 0;
279}
280
281static uword
282vl_api_clnt_process (vlib_main_t *vm, vlib_node_runtime_t *node,
283 vlib_frame_t *f)
284{
285 vlib_global_main_t *vgm = vlib_get_global_main ();
286 int private_segment_rotor = 0, i, rv;
287 vl_socket_args_for_process_t *a;
288 vl_shmem_hdr_t *shm;
289 svm_queue_t *q;
290 clib_error_t *e;
291 api_main_t *am = vlibapi_get_main ();
292 f64 dead_client_scan_time;
293 f64 sleep_time, start_time;
294 f64 vector_rate;
295 clib_error_t *error;
296 uword event_type;
297 uword *event_data = 0;
298 f64 now;
299
300 if ((error = vl_sock_api_init (vm)))
301 {
302 clib_error_report (error);
303 clib_warning ("socksvr_api_init failed, quitting...");
304 return 0;
305 }
306
307 if ((rv = vlib_api_init ()) < 0)
308 {
309 clib_warning ("vlib_api_init returned %d, quitting...", rv);
310 return 0;
311 }
312
313 shm = am->shmem_hdr;
314 q = shm->vl_input_queue;
315
316 e = vlib_call_init_exit_functions (vm, &vgm->api_init_function_registrations,
317 1 /* call_once */, 1 /* is_global */);
318 if (e)
319 clib_error_report (e);
320
321 e = vat_builtin_main_init (vm);
322 if (e)
323 clib_error_report (e);
324
325 sleep_time = 10.0;
326 dead_client_scan_time = vlib_time_now (vm) + 10.0;
327
328 /*
329 * Send plugin message range messages for each plugin we loaded
330 */
331 for (i = 0; i < vec_len (am->msg_ranges); i++)
332 {
333 vl_api_msg_range_t *rp = am->msg_ranges + i;
334 send_one_plugin_msg_ids_msg (rp->name, rp->first_msg_id,
335 rp->last_msg_id);
336 }
337
338 /*
339 * Save the api message table snapshot, if configured
340 */
341 if (am->save_msg_table_filename)
342 vl_api_save_msg_table ();
343
344 /* $$$ pay attention to frame size, control CPU usage */
345 while (1)
346 {
347 /*
348 * There's a reason for checking the queue before
349 * sleeping. If the vlib application crashes, it's entirely
350 * possible for a client to enqueue a connect request
351 * during the process restart interval.
352 *
353 * Unless some force of physics causes the new incarnation
354 * of the application to process the request, the client will
355 * sit and wait for Godot...
356 */
357 vector_rate = (f64) vlib_last_vectors_per_main_loop (vm);
358 start_time = vlib_time_now (vm);
359 while (1)
360 {
361 if (vl_mem_api_handle_rpc (vm, node) ||
362 vl_mem_api_handle_msg_main (vm, node))
363 {
364 vm->api_queue_nonempty = 0;
365 VL_MEM_API_LOG_Q_LEN ("q-underflow: len %d", 0);
366 sleep_time = 20.0;
367 break;
368 }
369
370 /* Allow no more than 10us without a pause */
371 if (vlib_time_now (vm) > start_time + 10e-6)
372 {
373 int index = SLEEP_400_US;
374 if (vector_rate > 40.0)
375 sleep_time = 400e-6;
376 else if (vector_rate > 20.0)
377 {
378 index = SLEEP_200_US;
379 sleep_time = 200e-6;
380 }
381 else if (vector_rate >= 1.0)
382 {
383 index = SLEEP_100_US;
384 sleep_time = 100e-6;
385 }
386 else
387 {
388 index = SLEEP_10_US;
389 sleep_time = 10e-6;
390 }
391 vector_rate_histogram[index] += 1;
392 break;
393 }
394 }
395
396 /*
397 * see if we have any private api shared-memory segments
398 * If so, push required context variables, and process
399 * a message.
400 */
401 if (PREDICT_FALSE (vec_len (am->vlib_private_rps)))
402 {
403 if (private_segment_rotor >= vec_len (am->vlib_private_rps))
404 private_segment_rotor = 0;
405 vl_mem_api_handle_msg_private (vm, node, private_segment_rotor++);
406 }
407
408 vlib_process_wait_for_event_or_clock (vm, sleep_time);
409 vec_reset_length (event_data);
410 event_type = vlib_process_get_events (vm, &event_data);
411 now = vlib_time_now (vm);
412
413 switch (event_type)
414 {
415 case QUEUE_SIGNAL_EVENT:
416 vm->queue_signal_pending = 0;
417 VL_MEM_API_LOG_Q_LEN ("q-awake: len %d", q->cursize);
418
419 break;
420 case SOCKET_READ_EVENT:
421 for (i = 0; i < vec_len (event_data); i++)
422 {
423 vl_api_registration_t *regp;
424
425 a = pool_elt_at_index (socket_main.process_args, event_data[i]);
426 regp = vl_socket_get_registration (a->reg_index);
427 if (regp)
428 {
429 vl_socket_process_api_msg (regp, (i8 *) a->data);
430 a = pool_elt_at_index (socket_main.process_args,
431 event_data[i]);
432 }
433 vec_free (a->data);
434 pool_put (socket_main.process_args, a);
435 }
436 break;
437
438 /* Timeout... */
439 case -1:
440 break;
441
442 default:
443 clib_warning ("unknown event type %d", event_type);
444 break;
445 }
446
447 if (now > dead_client_scan_time)
448 {
449 vl_mem_api_dead_client_scan (am, shm, now);
450 dead_client_scan_time = vlib_time_now (vm) + 10.0;
451 }
452 }
453
454 return 0;
455}
456
457VLIB_REGISTER_NODE (vl_api_clnt_node) = {
458 .function = vl_api_clnt_process,
459 .type = VLIB_NODE_TYPE_PROCESS,
460 .name = "api-rx-from-ring",
461 .state = VLIB_NODE_STATE_DISABLED,
462 .process_log2_n_stack_bytes = 18,
463};
464
465void
466vl_mem_api_enable_disable (vlib_main_t *vm, int enable)
467{
468 vlib_node_set_state (
469 vm, vl_api_clnt_node.index,
470 (enable ? VLIB_NODE_STATE_POLLING : VLIB_NODE_STATE_DISABLED));
471}
472
473static uword
474api_rx_from_node (vlib_main_t *vm, vlib_node_runtime_t *node,
475 vlib_frame_t *frame)
476{
477 uword n_packets = frame->n_vectors;
478 uword n_left_from;
479 u32 *from;
480 static u8 *long_msg;
481
482 vec_validate (long_msg, 4095);
483 n_left_from = frame->n_vectors;
484 from = vlib_frame_vector_args (frame);
485
486 while (n_left_from > 0)
487 {
488 u32 bi0;
489 vlib_buffer_t *b0;
490 void *msg;
491 uword msg_len;
492
493 bi0 = from[0];
494 b0 = vlib_get_buffer (vm, bi0);
495 from += 1;
496 n_left_from -= 1;
497
498 msg = b0->data + b0->current_data;
499 msg_len = b0->current_length;
500 if (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
501 {
502 ASSERT (long_msg != 0);
503 _vec_len (long_msg) = 0;
504 vec_add (long_msg, msg, msg_len);
505 while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
506 {
507 b0 = vlib_get_buffer (vm, b0->next_buffer);
508 msg = b0->data + b0->current_data;
509 msg_len = b0->current_length;
510 vec_add (long_msg, msg, msg_len);
511 }
512 msg = long_msg;
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100513 msg_len = vec_len (long_msg);
Florin Coras248210c2021-09-14 18:54:45 -0700514 }
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100515 vl_msg_api_handler_no_trace_no_free (msg, msg_len);
Florin Coras248210c2021-09-14 18:54:45 -0700516 }
517
518 /* Free what we've been given. */
519 vlib_buffer_free (vm, vlib_frame_vector_args (frame), n_packets);
520
521 return n_packets;
522}
523
524VLIB_REGISTER_NODE (api_rx_from_node_node, static) = {
525 .function = api_rx_from_node,
526 .type = VLIB_NODE_TYPE_INTERNAL,
527 .vector_size = 4,
528 .name = "api-rx-from-node",
529};
530
531static void
532vl_api_rpc_call_t_handler (vl_api_rpc_call_t *mp)
533{
534 vl_api_rpc_call_reply_t *rmp;
535 int (*fp) (void *);
536 i32 rv = 0;
537 vlib_main_t *vm = vlib_get_main ();
538
539 if (mp->function == 0)
540 {
541 rv = -1;
542 clib_warning ("rpc NULL function pointer");
543 }
544
545 else
546 {
547 if (mp->need_barrier_sync)
548 vlib_worker_thread_barrier_sync (vm);
549
550 fp = uword_to_pointer (mp->function, int (*) (void *));
551 rv = fp (mp->data);
552
553 if (mp->need_barrier_sync)
554 vlib_worker_thread_barrier_release (vm);
555 }
556
557 if (mp->send_reply)
558 {
559 svm_queue_t *q = vl_api_client_index_to_input_queue (mp->client_index);
560 if (q)
561 {
562 rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
563 rmp->_vl_msg_id = ntohs (VL_API_RPC_CALL_REPLY);
564 rmp->context = mp->context;
565 rmp->retval = rv;
566 vl_msg_api_send_shmem (q, (u8 *) &rmp);
567 }
568 }
569 if (mp->multicast)
570 {
571 clib_warning ("multicast not yet implemented...");
572 }
573}
574
575static void
576vl_api_rpc_call_reply_t_handler (vl_api_rpc_call_reply_t *mp)
577{
578 clib_warning ("unimplemented");
579}
580
581void
582vl_api_send_pending_rpc_requests (vlib_main_t *vm)
583{
584 vlib_main_t *vm_global = vlib_get_first_main ();
585
586 ASSERT (vm != vm_global);
587
588 clib_spinlock_lock_if_init (&vm_global->pending_rpc_lock);
589 vec_append (vm_global->pending_rpc_requests, vm->pending_rpc_requests);
590 vec_reset_length (vm->pending_rpc_requests);
591 clib_spinlock_unlock_if_init (&vm_global->pending_rpc_lock);
592}
593
594always_inline void
595vl_api_rpc_call_main_thread_inline (void *fp, u8 *data, u32 data_length,
596 u8 force_rpc)
597{
598 vl_api_rpc_call_t *mp;
599 vlib_main_t *vm_global = vlib_get_first_main ();
600 vlib_main_t *vm = vlib_get_main ();
601
602 /* Main thread and not a forced RPC: call the function directly */
603 if ((force_rpc == 0) && (vlib_get_thread_index () == 0))
604 {
605 void (*call_fp) (void *);
606
607 vlib_worker_thread_barrier_sync (vm);
608
609 call_fp = fp;
610 call_fp (data);
611
612 vlib_worker_thread_barrier_release (vm);
613 return;
614 }
615
616 /* Otherwise, actually do an RPC */
617 mp = vl_msg_api_alloc_as_if_client (sizeof (*mp) + data_length);
618
619 clib_memset (mp, 0, sizeof (*mp));
620 clib_memcpy_fast (mp->data, data, data_length);
621 mp->_vl_msg_id = ntohs (VL_API_RPC_CALL);
622 mp->function = pointer_to_uword (fp);
623 mp->need_barrier_sync = 1;
624
625 /* Add to the pending vector. Thread 0 requires locking. */
626 if (vm == vm_global)
627 clib_spinlock_lock_if_init (&vm_global->pending_rpc_lock);
628 vec_add1 (vm->pending_rpc_requests, (uword) mp);
629 if (vm == vm_global)
630 clib_spinlock_unlock_if_init (&vm_global->pending_rpc_lock);
631}
632
633/*
634 * Check if called from worker threads.
635 * If so, make rpc call of fp through shmem.
636 * Otherwise, call fp directly
637 */
638void
639vl_api_rpc_call_main_thread (void *fp, u8 *data, u32 data_length)
640{
641 vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
642 0);
643}
644
645/*
646 * Always make rpc call of fp through shmem, useful for calling from threads
647 * not setup as worker threads, such as DPDK callback thread
648 */
649void
650vl_api_force_rpc_call_main_thread (void *fp, u8 *data, u32 data_length)
651{
652 vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
653 1);
654}
655
656static void
657vl_api_trace_plugin_msg_ids_t_handler (vl_api_trace_plugin_msg_ids_t *mp)
658{
659 api_main_t *am = vlibapi_get_main ();
660 vl_api_msg_range_t *rp;
661 uword *p;
662
663 /* Noop (except for tracing) during normal operation */
664 if (am->replay_in_progress == 0)
665 return;
666
667 p = hash_get_mem (am->msg_range_by_name, mp->plugin_name);
668 if (p == 0)
669 {
670 clib_warning ("WARNING: traced plugin '%s' not in current image",
671 mp->plugin_name);
672 return;
673 }
674
675 rp = vec_elt_at_index (am->msg_ranges, p[0]);
676 if (rp->first_msg_id != clib_net_to_host_u16 (mp->first_msg_id))
677 {
678 clib_warning ("WARNING: traced plugin '%s' first message id %d not %d",
679 mp->plugin_name, clib_net_to_host_u16 (mp->first_msg_id),
680 rp->first_msg_id);
681 }
682
683 if (rp->last_msg_id != clib_net_to_host_u16 (mp->last_msg_id))
684 {
685 clib_warning ("WARNING: traced plugin '%s' last message id %d not %d",
686 mp->plugin_name, clib_net_to_host_u16 (mp->last_msg_id),
687 rp->last_msg_id);
688 }
689}
690
691#define foreach_rpc_api_msg \
692 _ (RPC_CALL, rpc_call) \
693 _ (RPC_CALL_REPLY, rpc_call_reply)
694
695#define foreach_plugin_trace_msg _ (TRACE_PLUGIN_MSG_IDS, trace_plugin_msg_ids)
696
697/*
698 * Set the rpc callback at our earliest possible convenience.
699 * This avoids ordering issues between thread_init() -> start_workers and
700 * an init function which we could define here. If we ever intend to use
701 * vlib all by itself, we can't create a link-time dependency on
702 * an init function here and a typical "call foo_init first"
703 * guitar lick.
704 */
705
706extern void *rpc_call_main_thread_cb_fn;
707
708static clib_error_t *
709rpc_api_hookup (vlib_main_t *vm)
710{
711 api_main_t *am = vlibapi_get_main ();
712#define _(N, n) \
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100713 vl_msg_api_set_handlers ( \
714 VL_API_##N, #n, vl_api_##n##_t_handler, vl_noop_handler, vl_noop_handler, \
715 vl_api_##n##_t_print, sizeof (vl_api_##n##_t), 0 /* do not trace */, \
716 vl_api_##n##_t_print_json, vl_api_##n##_t_tojson, \
717 vl_api_##n##_t_fromjson, vl_api_##n##_t_calc_size);
Florin Coras248210c2021-09-14 18:54:45 -0700718 foreach_rpc_api_msg;
719#undef _
720
721#define _(N, n) \
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100722 vl_msg_api_set_handlers ( \
723 VL_API_##N, #n, vl_api_##n##_t_handler, vl_noop_handler, vl_noop_handler, \
724 vl_api_##n##_t_print, sizeof (vl_api_##n##_t), 1 /* do trace */, \
725 vl_api_##n##_t_print_json, vl_api_##n##_t_tojson, \
726 vl_api_##n##_t_fromjson, vl_api_##n##_t_calc_size);
Florin Coras248210c2021-09-14 18:54:45 -0700727 foreach_plugin_trace_msg;
728#undef _
729
Filip Tehlar36217e32021-07-23 08:51:10 +0000730 am->api_trace_cfg[VL_API_TRACE_PLUGIN_MSG_IDS].replay_enable = 0;
731
Florin Coras248210c2021-09-14 18:54:45 -0700732 /* No reason to halt the parade to create a trace record... */
733 am->is_mp_safe[VL_API_TRACE_PLUGIN_MSG_IDS] = 1;
734 rpc_call_main_thread_cb_fn = vl_api_rpc_call_main_thread;
735 return 0;
736}
737
738VLIB_API_INIT_FUNCTION (rpc_api_hookup);
739
740/*
741 * fd.io coding-style-patch-verification: ON
742 *
743 * Local Variables:
744 * eval: (c-set-style "gnu")
745 * End:
746 */