FD.io VPP  v18.04-17-g3a0d853
Vector Packet Processing
vlib_api.c
Go to the documentation of this file.
1 /*
2  *------------------------------------------------------------------
3  * vlib_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>
32 
33 /**
34  * @file
35  * @brief Binary API messaging via shared memory
36  * Low-level, primary provisioning interface
37  */
38 /*? %%clicmd:group_label Binary API CLI %% ?*/
39 /*? %%syscfg:group_label Binary API configuration %% ?*/
40 
41 #define TRACE_VLIB_MEMORY_QUEUE 0
42 
43 #include <vlibmemory/vl_memory_msg_enum.h> /* enumerate all vlib messages */
44 
45 #define vl_typedefs /* define message structures */
47 #undef vl_typedefs
48 
49 /* instantiate all the print functions we know about */
50 #define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__)
51 #define vl_printfun
53 #undef vl_printfun
54 
55 static inline void *
57  void *handle)
58 {
59  vl_print (handle, "vl_api_trace_plugin_msg_ids: %s first %u last %u\n",
60  a->plugin_name,
61  clib_host_to_net_u16 (a->first_msg_id),
62  clib_host_to_net_u16 (a->last_msg_id));
63  return handle;
64 }
65 
66 /* instantiate all the endian swap functions we know about */
67 #define vl_endianfun
69 #undef vl_endianfun
70 
71 u8 *
73 {
74  serialize_main_t _sm, *sm = &_sm;
75  hash_pair_t *hp;
77 
78  serialize_open_vector (sm, vector);
79 
80  /* serialize the count */
81  serialize_integer (sm, nmsg, sizeof (u32));
82 
83  /* *INDENT-OFF* */
85  ({
86  serialize_likely_small_unsigned_integer (sm, hp->value[0]);
87  serialize_cstring (sm, (char *) hp->key);
88  }));
89  /* *INDENT-ON* */
90 
91  return serialize_close_vector (sm);
92 }
93 
94 static void
96 {
99  uword *p;
100  api_main_t *am = &api_main;
101  vl_api_msg_range_t *rp;
102  u8 name[64];
103  u16 first_msg_id = ~0;
104  int rv = -7; /* VNET_API_ERROR_INVALID_VALUE */
105 
107  if (!regp)
108  return;
109 
110  if (am->msg_range_by_name == 0)
111  goto out;
112  strncpy ((char *) name, (char *) mp->name, ARRAY_LEN (name));
113  name[ARRAY_LEN (name) - 1] = '\0';
114  p = hash_get_mem (am->msg_range_by_name, name);
115  if (p == 0)
116  goto out;
117 
118  rp = vec_elt_at_index (am->msg_ranges, p[0]);
119  first_msg_id = rp->first_msg_id;
120  rv = 0;
121 
122 out:
123  rmp = vl_msg_api_alloc (sizeof (*rmp));
124  rmp->_vl_msg_id = ntohs (VL_API_GET_FIRST_MSG_ID_REPLY);
125  rmp->context = mp->context;
126  rmp->retval = ntohl (rv);
127  rmp->first_msg_id = ntohs (first_msg_id);
128  vl_api_send_msg (regp, (u8 *) rmp);
129 }
130 
131 void
133 {
134  api_main_t *am = &api_main;
137  u32 nmsg = vec_len (am->api_version_list);
138  int msg_size = sizeof (*rmp) + sizeof (rmp->api_versions[0]) * nmsg;
139  int i;
140 
142  if (!reg)
143  return;
144 
145  rmp = vl_msg_api_alloc (msg_size);
146  memset (rmp, 0, msg_size);
147  rmp->_vl_msg_id = ntohs (VL_API_API_VERSIONS_REPLY);
148 
149  /* fill in the message */
150  rmp->context = mp->context;
151  rmp->count = htonl (nmsg);
152 
153  for (i = 0; i < nmsg; ++i)
154  {
156  rmp->api_versions[i].major = htonl (vl->major);
157  rmp->api_versions[i].minor = htonl (vl->minor);
158  rmp->api_versions[i].patch = htonl (vl->patch);
159  strncpy ((char *) rmp->api_versions[i].name, vl->name,
160  ARRAY_LEN (rmp->api_versions[i].name));
161  rmp->api_versions[i].name[ARRAY_LEN (rmp->api_versions[i].name) - 1] =
162  '\0';
163  }
164 
165  vl_api_send_msg (reg, (u8 *) rmp);
166 }
167 
168 #define foreach_vlib_api_msg \
169 _(GET_FIRST_MSG_ID, get_first_msg_id) \
170 _(API_VERSIONS, api_versions)
171 
172 /*
173  * vl_api_init
174  */
175 static int
177 {
179  vl_msg_api_msg_config_t *c = &cfg;
180 
181  memset (c, 0, sizeof (*c));
182 
183 #define _(N,n) do { \
184  c->id = VL_API_##N; \
185  c->name = #n; \
186  c->handler = vl_api_##n##_t_handler; \
187  c->cleanup = vl_noop_handler; \
188  c->endian = vl_api_##n##_t_endian; \
189  c->print = vl_api_##n##_t_print; \
190  c->size = sizeof(vl_api_##n##_t); \
191  c->traced = 1; /* trace, so these msgs print */ \
192  c->replay = 0; /* don't replay client create/delete msgs */ \
193  c->message_bounce = 0; /* don't bounce this message */ \
194  vl_msg_api_config(c);} while (0);
195 
197 #undef _
198 
199  return 0;
200 }
201 
203 
204 /*
205  * Callback to send ourselves a plugin numbering-space trace msg
206  */
207 static void
208 send_one_plugin_msg_ids_msg (u8 * name, u16 first_msg_id, u16 last_msg_id)
209 {
211  api_main_t *am = &api_main;
213  svm_queue_t *q;
214 
215  mp = vl_msg_api_alloc_as_if_client (sizeof (*mp));
216  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 
229 void
231 {
232  u8 *serialized_message_table;
233  api_main_t *am = &api_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'",
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 = write (fd, serialized_message_table,
261  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 
274 static uword
276  vlib_frame_t * f)
277 {
278  int private_segment_rotor = 0, i, rv;
280  vl_shmem_hdr_t *shm;
281  svm_queue_t *q;
282  clib_error_t *e;
283  api_main_t *am = &api_main;
284  f64 dead_client_scan_time;
285  f64 sleep_time, start_time;
286  f64 vector_rate;
287  clib_error_t *error;
288  uword event_type;
289  uword *event_data = 0;
290  f64 now;
291 
292  if ((rv = vl_mem_api_init (am->region_name)) < 0)
293  {
294  clib_warning ("memory_api_init returned %d, quitting...", rv);
295  return 0;
296  }
297 
298  if ((error = vl_sock_api_init (vm)))
299  {
300  clib_error_report (error);
301  clib_warning ("socksvr_api_init failed, quitting...");
302  return 0;
303  }
304 
305  if ((rv = vlib_api_init ()) < 0)
306  {
307  clib_warning ("vlib_api_init returned %d, quitting...", rv);
308  return 0;
309  }
310 
311  shm = am->shmem_hdr;
312  q = shm->vl_input_queue;
313 
315  (vm, vm->api_init_function_registrations, 1 /* call_once */ );
316  if (e)
317  clib_error_report (e);
318 
319  sleep_time = 10.0;
320  dead_client_scan_time = vlib_time_now (vm) + 10.0;
321 
322  /*
323  * Send plugin message range messages for each plugin we loaded
324  */
325  for (i = 0; i < vec_len (am->msg_ranges); i++)
326  {
327  vl_api_msg_range_t *rp = am->msg_ranges + i;
329  rp->last_msg_id);
330  }
331 
332  /*
333  * Save the api message table snapshot, if configured
334  */
335  if (am->save_msg_table_filename)
337 
338  /* $$$ pay attention to frame size, control CPU usage */
339  while (1)
340  {
341  /*
342  * There's a reason for checking the queue before
343  * sleeping. If the vlib application crashes, it's entirely
344  * possible for a client to enqueue a connect request
345  * during the process restart interval.
346  *
347  * Unless some force of physics causes the new incarnation
348  * of the application to process the request, the client will
349  * sit and wait for Godot...
350  */
351  vector_rate = vlib_last_vector_length_per_node (vm);
352  start_time = vlib_time_now (vm);
353  while (1)
354  {
355  if (vl_mem_api_handle_msg_main (vm, node))
356  {
357  vm->api_queue_nonempty = 0;
358  VL_MEM_API_LOG_Q_LEN ("q-underflow: len %d", 0);
359  sleep_time = 20.0;
360  break;
361  }
362 
363  /* Allow no more than 10us without a pause */
364  if (vlib_time_now (vm) > start_time + 10e-6)
365  {
366  int index = SLEEP_400_US;
367  if (vector_rate > 40.0)
368  sleep_time = 400e-6;
369  else if (vector_rate > 20.0)
370  {
371  index = SLEEP_200_US;
372  sleep_time = 200e-6;
373  }
374  else if (vector_rate >= 1.0)
375  {
376  index = SLEEP_100_US;
377  sleep_time = 100e-6;
378  }
379  else
380  {
381  index = SLEEP_10_US;
382  sleep_time = 10e-6;
383  }
384  vector_rate_histogram[index] += 1;
385  break;
386  }
387  }
388 
389  /*
390  * see if we have any private api shared-memory segments
391  * If so, push required context variables, and process
392  * a message.
393  */
394  if (PREDICT_FALSE (vec_len (am->vlib_private_rps)))
395  {
396  vl_mem_api_handle_msg_private (vm, node, private_segment_rotor++);
397  if (private_segment_rotor >= vec_len (am->vlib_private_rps))
398  private_segment_rotor = 0;
399  }
400 
401  vlib_process_wait_for_event_or_clock (vm, sleep_time);
402  vec_reset_length (event_data);
403  event_type = vlib_process_get_events (vm, &event_data);
404  now = vlib_time_now (vm);
405 
406  switch (event_type)
407  {
408  case QUEUE_SIGNAL_EVENT:
409  vm->queue_signal_pending = 0;
410  VL_MEM_API_LOG_Q_LEN ("q-awake: len %d", q->cursize);
411 
412  break;
413  case SOCKET_READ_EVENT:
414  for (i = 0; i < vec_len (event_data); i++)
415  {
416  a = pool_elt_at_index (socket_main.process_args, event_data[i]);
418  (i8 *) a->data);
419  vec_free (a->data);
421  }
422  break;
423 
424  /* Timeout... */
425  case -1:
426  break;
427 
428  default:
429  clib_warning ("unknown event type %d", event_type);
430  break;
431  }
432 
433  if (now > dead_client_scan_time)
434  {
435  vl_mem_api_dead_client_scan (am, shm, now);
436  dead_client_scan_time = vlib_time_now (vm) + 10.0;
437  }
438  }
439 
440  return 0;
441 }
442 /* *INDENT-OFF* */
444 {
445  .function = vl_api_clnt_process,
446  .type = VLIB_NODE_TYPE_PROCESS,
447  .name = "api-rx-from-ring",
448  .state = VLIB_NODE_STATE_DISABLED,
449 };
450 /* *INDENT-ON* */
451 
452 void
454 {
456  (enable
457  ? VLIB_NODE_STATE_POLLING
458  : VLIB_NODE_STATE_DISABLED));
459 }
460 
461 static uword
463  vlib_node_runtime_t * node, vlib_frame_t * frame)
464 {
465  uword n_packets = frame->n_vectors;
466  uword n_left_from;
467  u32 *from;
468  static u8 *long_msg;
469 
470  vec_validate (long_msg, 4095);
471  n_left_from = frame->n_vectors;
472  from = vlib_frame_args (frame);
473 
474  while (n_left_from > 0)
475  {
476  u32 bi0;
477  vlib_buffer_t *b0;
478  void *msg;
479  uword msg_len;
480 
481  bi0 = from[0];
482  b0 = vlib_get_buffer (vm, bi0);
483  from += 1;
484  n_left_from -= 1;
485 
486  msg = b0->data + b0->current_data;
487  msg_len = b0->current_length;
488  if (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
489  {
490  ASSERT (long_msg != 0);
491  _vec_len (long_msg) = 0;
492  vec_add (long_msg, msg, msg_len);
493  while (b0->flags & VLIB_BUFFER_NEXT_PRESENT)
494  {
495  b0 = vlib_get_buffer (vm, b0->next_buffer);
496  msg = b0->data + b0->current_data;
497  msg_len = b0->current_length;
498  vec_add (long_msg, msg, msg_len);
499  }
500  msg = long_msg;
501  }
503  }
504 
505  /* Free what we've been given. */
506  vlib_buffer_free (vm, vlib_frame_args (frame), n_packets);
507 
508  return n_packets;
509 }
510 
511 /* *INDENT-OFF* */
513  .function = api_rx_from_node,
514  .type = VLIB_NODE_TYPE_INTERNAL,
515  .vector_size = 4,
516  .name = "api-rx-from-node",
517 };
518 /* *INDENT-ON* */
519 
520 static void
522 {
523  vl_api_rpc_call_reply_t *rmp;
524  int (*fp) (void *);
525  i32 rv = 0;
527 
528  if (mp->function == 0)
529  {
530  rv = -1;
531  clib_warning ("rpc NULL function pointer");
532  }
533 
534  else
535  {
536  if (mp->need_barrier_sync)
538 
539  fp = uword_to_pointer (mp->function, int (*)(void *));
540  rv = fp (mp->data);
541 
542  if (mp->need_barrier_sync)
544  }
545 
546  if (mp->send_reply)
547  {
549  if (q)
550  {
551  rmp = vl_msg_api_alloc_as_if_client (sizeof (*rmp));
552  rmp->_vl_msg_id = ntohs (VL_API_RPC_CALL_REPLY);
553  rmp->context = mp->context;
554  rmp->retval = rv;
555  vl_msg_api_send_shmem (q, (u8 *) & rmp);
556  }
557  }
558  if (mp->multicast)
559  {
560  clib_warning ("multicast not yet implemented...");
561  }
562 }
563 
564 static void
565 vl_api_rpc_call_reply_t_handler (vl_api_rpc_call_reply_t * mp)
566 {
567  clib_warning ("unimplemented");
568 }
569 
570 void
572 {
573  api_main_t *am = &api_main;
575  svm_queue_t *q;
576  int i;
577 
578  /*
579  * Use the "normal" control-plane mechanism for the main thread.
580  * Well, almost. if the main input queue is full, we cannot
581  * block. Otherwise, we can expect a barrier sync timeout.
582  */
583  q = shmem_hdr->vl_input_queue;
584 
585  for (i = 0; i < vec_len (vm->pending_rpc_requests); i++)
586  {
587  while (pthread_mutex_trylock (&q->mutex))
589 
590  while (PREDICT_FALSE (svm_queue_is_full (q)))
591  {
592  pthread_mutex_unlock (&q->mutex);
594  while (pthread_mutex_trylock (&q->mutex))
596  }
597 
599 
600  pthread_mutex_unlock (&q->mutex);
601  }
602  _vec_len (vm->pending_rpc_requests) = 0;
603 }
604 
605 always_inline void
606 vl_api_rpc_call_main_thread_inline (void *fp, u8 * data, u32 data_length,
607  u8 force_rpc)
608 {
609  vl_api_rpc_call_t *mp;
611 
612  /* Main thread and not a forced RPC: call the function directly */
613  if ((force_rpc == 0) && (vlib_get_thread_index () == 0))
614  {
615  void (*call_fp) (void *);
616 
618 
619  call_fp = fp;
620  call_fp (data);
621 
623  return;
624  }
625 
626  /* Otherwise, actually do an RPC */
627  mp = vl_msg_api_alloc_as_if_client (sizeof (*mp) + data_length);
628 
629  memset (mp, 0, sizeof (*mp));
630  clib_memcpy (mp->data, data, data_length);
631  mp->_vl_msg_id = ntohs (VL_API_RPC_CALL);
632  mp->function = pointer_to_uword (fp);
633  mp->need_barrier_sync = 1;
634 
635  vec_add1 (vm->pending_rpc_requests, (uword) mp);
636 }
637 
638 /*
639  * Check if called from worker threads.
640  * If so, make rpc call of fp through shmem.
641  * Otherwise, call fp directly
642  */
643 void
644 vl_api_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
645 {
646  vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
647  0);
648 }
649 
650 /*
651  * Always make rpc call of fp through shmem, useful for calling from threads
652  * not setup as worker threads, such as DPDK callback thread
653  */
654 void
655 vl_api_force_rpc_call_main_thread (void *fp, u8 * data, u32 data_length)
656 {
657  vl_api_rpc_call_main_thread_inline (fp, data, data_length, /*force_rpc */
658  1);
659 }
660 
661 static void
663 {
664  api_main_t *am = &api_main;
665  vl_api_msg_range_t *rp;
666  uword *p;
667 
668  /* Noop (except for tracing) during normal operation */
669  if (am->replay_in_progress == 0)
670  return;
671 
673  if (p == 0)
674  {
675  clib_warning ("WARNING: traced plugin '%s' not in current image",
676  mp->plugin_name);
677  return;
678  }
679 
680  rp = vec_elt_at_index (am->msg_ranges, p[0]);
681  if (rp->first_msg_id != clib_net_to_host_u16 (mp->first_msg_id))
682  {
683  clib_warning ("WARNING: traced plugin '%s' first message id %d not %d",
684  mp->plugin_name, clib_net_to_host_u16 (mp->first_msg_id),
685  rp->first_msg_id);
686  }
687 
688  if (rp->last_msg_id != clib_net_to_host_u16 (mp->last_msg_id))
689  {
690  clib_warning ("WARNING: traced plugin '%s' last message id %d not %d",
691  mp->plugin_name, clib_net_to_host_u16 (mp->last_msg_id),
692  rp->last_msg_id);
693  }
694 }
695 
696 #define foreach_rpc_api_msg \
697 _(RPC_CALL,rpc_call) \
698 _(RPC_CALL_REPLY,rpc_call_reply)
699 
700 #define foreach_plugin_trace_msg \
701 _(TRACE_PLUGIN_MSG_IDS,trace_plugin_msg_ids)
702 
703 /*
704  * Set the rpc callback at our earliest possible convenience.
705  * This avoids ordering issues between thread_init() -> start_workers and
706  * an init function which we could define here. If we ever intend to use
707  * vlib all by itself, we can't create a link-time dependency on
708  * an init function here and a typical "call foo_init first"
709  * guitar lick.
710  */
711 
712 extern void *rpc_call_main_thread_cb_fn;
713 
714 static clib_error_t *
716 {
717  api_main_t *am = &api_main;
718 #define _(N,n) \
719  vl_msg_api_set_handlers(VL_API_##N, #n, \
720  vl_api_##n##_t_handler, \
721  vl_noop_handler, \
722  vl_noop_handler, \
723  vl_api_##n##_t_print, \
724  sizeof(vl_api_##n##_t), 0 /* do not trace */);
726 #undef _
727 
728 #define _(N,n) \
729  vl_msg_api_set_handlers(VL_API_##N, #n, \
730  vl_api_##n##_t_handler, \
731  vl_noop_handler, \
732  vl_noop_handler, \
733  vl_api_##n##_t_print, \
734  sizeof(vl_api_##n##_t), 1 /* do trace */);
736 #undef _
737 
738  /* No reason to halt the parade to create a trace record... */
739  am->is_mp_safe[VL_API_TRACE_PLUGIN_MSG_IDS] = 1;
741  return 0;
742 }
743 
745 
746 /*
747  * fd.io coding-style-patch-verification: ON
748  *
749  * Local Variables:
750  * eval: (c-set-style "gnu")
751  * End:
752  */
#define foreach_vlib_api_msg
Definition: vlib_api.c:168
int vl_mem_api_handle_msg_private(vlib_main_t *vm, vlib_node_runtime_t *node, u32 reg_index)
Definition: memory_api.c:687
#define vec_validate(V, I)
Make sure vector is long enough for given index (no header, unspecified alignment) ...
Definition: vec.h:434
Message range (belonging to a plugin)
Definition: api_common.h:110
vl_api_registration_t * regp
Definition: socket_api.h:30
int vl_mem_api_handle_msg_main(vlib_main_t *vm, vlib_node_runtime_t *node)
Definition: memory_api.c:679
u32 vl(void *p)
Definition: threads.c:30
uword * pending_rpc_requests
Definition: main.h:217
static void send_one_plugin_msg_ids_msg(u8 *name, u16 first_msg_id, u16 last_msg_id)
Definition: vlib_api.c:208
VLIB_API_INIT_FUNCTION(rpc_api_hookup)
clib_error_t * vl_sock_api_init(vlib_main_t *vm)
Definition: socket_api.c:682
void vl_msg_api_handler_no_trace_no_free(void *the_msg)
Definition: api_shared.c:568
static void vl_api_rpc_call_main_thread_inline(void *fp, u8 *data, u32 data_length, u8 force_rpc)
Definition: vlib_api.c:606
void vl_api_save_msg_table(void)
Definition: vlib_api.c:230
u8 * name
name of the plugin
Definition: api_common.h:112
int svm_queue_is_full(svm_queue_t *q)
Definition: queue.c:115
static f64 vlib_process_wait_for_event_or_clock(vlib_main_t *vm, f64 dt)
Suspend a cooperative multi-tasking thread Waits for an event, or for the indicated number of seconds...
Definition: node_funcs.h:699
static void vl_api_get_first_msg_id_t_handler(vl_api_get_first_msg_id_t *mp)
Definition: vlib_api.c:95
a
Definition: bitmap.h:516
static void vlib_buffer_free(vlib_main_t *vm, u32 *buffers, u32 n_buffers)
Free buffers Frees the entire buffer chain for each buffer.
Definition: buffer_funcs.h:391
static void * vl_api_trace_plugin_msg_ids_t_print(vl_api_trace_plugin_msg_ids_t *a, void *handle)
Definition: vlib_api.c:56
Fixed length block allocator.
static f64 vlib_time_now(vlib_main_t *vm)
Definition: main.h:227
static void vl_api_send_msg(vl_api_registration_t *rp, u8 *elem)
Definition: api.h:34
vl_socket_args_for_process_t * process_args
Definition: socket_api.h:58
Message configuration definition.
Definition: api_common.h:118
socket_main_t socket_main
Definition: socket_api.c:48
#define vec_add1(V, E)
Add 1 element to end of vector (unspecified alignment).
Definition: vec.h:520
int i
api_version_t * api_version_list
api version list
Definition: api_common.h:325
u8 * format(u8 *s, const char *fmt,...)
Definition: format.c:419
void vl_socket_process_api_msg(clib_file_t *uf, vl_api_registration_t *rp, i8 *input_v)
Definition: socket_api.c:144
void * vl_msg_api_alloc(int nbytes)
#define VL_MEM_API_LOG_Q_LEN(fmt, qlen)
Definition: memory_api.h:68
vlib_node_registration_t vl_api_clnt_node
(constructor) VLIB_REGISTER_NODE (vl_api_clnt_node)
Definition: vlib_api.c:443
#define vec_reset_length(v)
Reset vector length to zero NULL-pointer tolerant.
#define vlib_worker_thread_barrier_sync(X)
Definition: threads.h:212
#define vec_add(V, E, N)
Add N elements to end of vector V (no header, unspecified alignment)
Definition: vec.h:597
static f64 vlib_last_vector_length_per_node(vlib_main_t *vm)
Definition: main.h:318
static void vlib_worker_thread_barrier_check(void)
Definition: threads.h:392
i16 current_data
signed offset in data[], pre_data[] that we are currently processing.
Definition: buffer.h:104
_vlib_init_function_list_elt_t * api_init_function_registrations
Definition: main.h:185
static uword vlib_process_get_events(vlib_main_t *vm, uword **data_vector)
Return the first event type which has occurred and a vector of per-event data of that type...
Definition: node_funcs.h:542
#define always_inline
Definition: clib.h:92
static clib_error_t * rpc_api_hookup(vlib_main_t *vm)
Definition: vlib_api.c:715
int i32
Definition: types.h:81
void vl_mem_api_dead_client_scan(api_main_t *am, vl_shmem_hdr_t *shm, f64 now)
Definition: memory_api.c:558
char i8
Definition: types.h:45
#define vec_elt_at_index(v, i)
Get vector value at index i checking that i is in bounds.
int replay_in_progress
Replay in progress?
Definition: api_common.h:334
clib_error_t * vlib_call_init_exit_functions(vlib_main_t *vm, _vlib_init_function_list_elt_t *head, int call_once)
Definition: init.c:43
void vl_api_send_pending_rpc_requests(vlib_main_t *vm)
Definition: vlib_api.c:571
unsigned long u64
Definition: types.h:89
struct vl_shmem_hdr_ * shmem_hdr
Binary API shared-memory segment header pointer.
Definition: api_common.h:262
char name[64]
Definition: api_common.h:195
static uword pointer_to_uword(const void *p)
Definition: types.h:131
static uword vl_api_clnt_process(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *f)
Definition: vlib_api.c:275
vl_shmem_hdr_t * shmem_hdr
u16 last_msg_id
last assigned message ID
Definition: api_common.h:114
#define pool_elt_at_index(p, i)
Returns pointer to element at given index.
Definition: pool.h:461
u16 current_length
Nbytes between current data and the end of this buffer.
Definition: buffer.h:108
void * rpc_call_main_thread_cb_fn
Definition: threads.c:1801
#define pool_put(P, E)
Free an object E in pool P.
Definition: pool.h:273
svm_region_t ** vlib_private_rps
Vector of all mapped shared-VM segments.
Definition: api_common.h:258
#define PREDICT_FALSE(x)
Definition: clib.h:105
volatile u32 queue_signal_pending
Definition: main.h:190
vl_api_module_version_t api_versions[count]
Definition: memclnt.api:131
#define uword_to_pointer(u, type)
Definition: types.h:136
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:199
static void vl_api_rpc_call_reply_t_handler(vl_api_rpc_call_reply_t *mp)
Definition: vlib_api.c:565
An API client registration, only in vpp/vlib.
Definition: api_common.h:44
The fine-grained event logger allows lightweight, thread-safe event logging at minimum cost...
void vl_msg_api_send_shmem(svm_queue_t *q, u8 *elem)
#define VLIB_REGISTER_NODE(x,...)
Definition: node.h:143
svmdb_client_t * c
u16 n_vectors
Definition: node.h:344
static_always_inline uword vlib_get_thread_index(void)
Definition: threads.h:221
vlib_main_t * vm
Definition: buffer.c:294
static vlib_node_registration_t api_rx_from_node_node
(constructor) VLIB_REGISTER_NODE (api_rx_from_node_node)
Definition: vlib_api.c:512
void serialize_open_vector(serialize_main_t *m, u8 *vector)
Definition: serialize.c:908
svm_queue_t * vl_api_client_index_to_input_queue(u32 index)
Definition: memory_api.c:739
#define vec_free(V)
Free vector&#39;s memory (no header).
Definition: vec.h:336
u8 * vl_api_serialize_message_table(api_main_t *am, u8 *vector)
Definition: vlib_api.c:72
vl_api_msg_range_t * msg_ranges
vector of message ranges
Definition: api_common.h:277
#define clib_warning(format, args...)
Definition: error.h:59
#define vl_print(handle,...)
Definition: vlib_api.c:50
#define clib_memcpy(a, b, c)
Definition: string.h:75
u64 vector_rate_histogram[SLEEP_N_BUCKETS]
Definition: vlib_api.c:202
static void vl_api_rpc_call_t_handler(vl_api_rpc_call_t *mp)
Definition: vlib_api.c:521
static void serialize_integer(serialize_main_t *m, u64 x, u32 n_bytes)
Definition: serialize.h:185
#define ARRAY_LEN(x)
Definition: clib.h:59
static vl_api_registration_t * vl_api_client_index_to_registration(u32 index)
Definition: api.h:56
svm_queue_t * vl_input_queue
Definition: memory_shared.h:84
u8 * save_msg_table_filename
Dump (msg-name, crc) snapshot here at startup.
Definition: api_common.h:337
#define foreach_rpc_api_msg
Definition: vlib_api.c:696
#define ASSERT(truth)
static uword hash_elts(void *v)
Definition: hash.h:117
unsigned int u32
Definition: types.h:88
int vl_mem_api_init(const char *region_name)
Definition: memory_api.c:413
u32 next_buffer
Next buffer for this linked-list of buffers.
Definition: buffer.h:126
#define clib_error_report(e)
Definition: error.h:113
static void * vlib_frame_args(vlib_frame_t *f)
Get pointer to frame scalar data.
Definition: node_funcs.h:284
void vl_api_api_versions_t_handler(vl_api_api_versions_t *mp)
Definition: vlib_api.c:132
static void vlib_node_set_state(vlib_main_t *vm, u32 node_index, vlib_node_state_t new_state)
Set node dispatch state.
Definition: node_funcs.h:147
static vlib_main_t * vlib_get_main(void)
Definition: global_funcs.h:23
u64 uword
Definition: types.h:112
#define foreach_plugin_trace_msg
Definition: vlib_api.c:700
unsigned short u16
Definition: types.h:57
u16 first_msg_id
first assigned message ID
Definition: api_common.h:113
void vl_api_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: vlib_api.c:644
#define vec_len(v)
Number of elements in vector (rvalue-only, NULL tolerant)
double f64
Definition: types.h:142
unsigned char u8
Definition: types.h:56
#define hash_foreach_pair(p, v, body)
Iterate over hash pairs.
Definition: hash.h:372
#define clib_unix_warning(format, args...)
Definition: error.h:68
volatile u32 api_queue_nonempty
Definition: main.h:191
struct _svm_queue svm_queue_t
static int vlib_api_init(void)
Definition: vlib_api.c:176
#define hash_get_mem(h, key)
Definition: hash.h:268
void vlib_worker_thread_barrier_release(vlib_main_t *vm)
Definition: threads.c:1497
u8 * is_mp_safe
Message is mp safe vector.
Definition: api_common.h:222
void vl_api_force_rpc_call_main_thread(void *fp, u8 *data, u32 data_length)
Definition: vlib_api.c:655
u8 data[0]
Packet data.
Definition: buffer.h:179
static void vl_api_trace_plugin_msg_ids_t_handler(vl_api_trace_plugin_msg_ids_t *mp)
Definition: vlib_api.c:662
static uword api_rx_from_node(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: vlib_api.c:462
void * vl_msg_api_alloc_as_if_client(int nbytes)
void * serialize_close_vector(serialize_main_t *m)
Definition: serialize.c:918
const char * region_name
Shared VM binary API region name.
Definition: api_common.h:328
uword * msg_index_by_name_and_crc
client message index hash table
Definition: api_common.h:322
u32 flags
buffer flags: VLIB_BUFFER_FREE_LIST_INDEX_MASK: bits used to store free list index, VLIB_BUFFER_IS_TRACED: trace this buffer.
Definition: buffer.h:111
uword * msg_range_by_name
Message range by name hash.
Definition: api_common.h:274
void vl_mem_api_enable_disable(vlib_main_t *vm, int enable)
Definition: vlib_api.c:453
api_main_t api_main
Definition: api_shared.c:35
void vl_msg_api_send_shmem_nolock(svm_queue_t *q, u8 *elem)
static vlib_buffer_t * vlib_get_buffer(vlib_main_t *vm, u32 buffer_index)
Translate buffer index into buffer pointer.
Definition: buffer_funcs.h:57
CLIB vectors are ubiquitous dynamically resized arrays with by user defined "headers".