blob: 62a8d4c62d89dd25f3110516dc6f4f63366d85ad [file] [log] [blame]
Klement Sekera58eb8662017-06-09 06:06:49 +02001/*
2 *------------------------------------------------------------------
3 * api_common.h
4 *
5 * Copyright (c) 2009-2015 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#ifndef included_api_common_h
21#define included_api_common_h
22
Paul Vinciguerrab5a575b2019-11-01 13:00:58 -040023/** \file api_common.h
24 * API common definitions
Dave Barach905c14a2017-09-25 08:47:59 -040025 * See api_doc.md for more info
26 */
27
Klement Sekera58eb8662017-06-09 06:06:49 +020028#include <vppinfra/clib_error.h>
Dave Barachb09f4d02019-07-15 16:00:03 -040029#include <vppinfra/elog.h>
Filip Tehlar36217e32021-07-23 08:51:10 +000030#include <vppinfra/cJSON.h>
Ole Troan413f4a52018-11-28 11:36:05 +010031#include <vlibapi/api_types.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020032#include <svm/svm_common.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080033#include <svm/queue.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020034
Dave Barach905c14a2017-09-25 08:47:59 -040035/** API registration types
36 */
Klement Sekera58eb8662017-06-09 06:06:49 +020037typedef enum
38{
39 REGISTRATION_TYPE_FREE = 0,
Dave Barach905c14a2017-09-25 08:47:59 -040040 REGISTRATION_TYPE_SHMEM, /**< Shared memory connection */
41 REGISTRATION_TYPE_SOCKET_LISTEN, /**< Socket listener */
42 REGISTRATION_TYPE_SOCKET_SERVER, /**< Socket server */
43 REGISTRATION_TYPE_SOCKET_CLIENT, /**< Socket client */
Klement Sekera58eb8662017-06-09 06:06:49 +020044} vl_registration_type_t;
45
Dave Barach905c14a2017-09-25 08:47:59 -040046/** An API client registration, only in vpp/vlib */
47
Klement Sekera58eb8662017-06-09 06:06:49 +020048typedef struct vl_api_registration_
49{
Dave Barach905c14a2017-09-25 08:47:59 -040050 vl_registration_type_t registration_type; /**< type */
Klement Sekera58eb8662017-06-09 06:06:49 +020051
Dave Barach905c14a2017-09-25 08:47:59 -040052 /** Index in VLIB's brain (not shared memory). */
Klement Sekera58eb8662017-06-09 06:06:49 +020053 u32 vl_api_registration_pool_index;
54
Dave Barach905c14a2017-09-25 08:47:59 -040055 u8 *name; /**< Client name */
Klement Sekera58eb8662017-06-09 06:06:49 +020056
Dave Barach59b25652017-09-10 15:04:27 -040057 /* Zombie apocalypse checking */
58 f64 last_heard;
59 int last_queue_head;
60 int unanswered_pings;
Andrew Yourtchenko162b70d2021-03-11 12:54:11 +000061 int is_being_removed;
Dave Barach59b25652017-09-10 15:04:27 -040062
Dave Barach905c14a2017-09-25 08:47:59 -040063 /** shared memory only: pointer to client input queue */
Florin Corase86a8ed2018-01-05 03:20:25 -080064 svm_queue_t *vl_input_queue;
Dave Barach59b25652017-09-10 15:04:27 -040065 svm_region_t *vlib_rp;
66 void *shmem_hdr;
Klement Sekera58eb8662017-06-09 06:06:49 +020067
68 /* socket server and client */
Dave Barach905c14a2017-09-25 08:47:59 -040069 u32 clib_file_index; /**< Socket only: file index */
70 i8 *unprocessed_input; /**< Socket only: pending input */
71 u32 unprocessed_msg_length; /**< Socket only: unprocssed length */
Ole Troan94495f22018-08-02 11:58:12 +020072 u8 *output_vector; /**< Socket only: output vector */
Dave Barach59b25652017-09-10 15:04:27 -040073 int *additional_fds_to_close;
Klement Sekera58eb8662017-06-09 06:06:49 +020074
75 /* socket client only */
Dave Barach905c14a2017-09-25 08:47:59 -040076 u32 server_handle; /**< Socket client only: server handle */
77 u32 server_index; /**< Socket client only: server index */
Ole Troan2ca88ff2022-01-27 16:25:43 +010078
79 bool keepalive; /**< Dead client scan */
Klement Sekera58eb8662017-06-09 06:06:49 +020080} vl_api_registration_t;
81
Florin Corasb384b542018-01-15 01:08:33 -080082#define VL_API_INVALID_FI ((u32)~0)
Klement Sekera58eb8662017-06-09 06:06:49 +020083
Dave Barach905c14a2017-09-25 08:47:59 -040084/**
85 * API trace state
Klement Sekera58eb8662017-06-09 06:06:49 +020086 */
87typedef struct
88{
Dave Barach905c14a2017-09-25 08:47:59 -040089 u8 endian; /**< trace endianness */
90 u8 enabled; /**< trace is enabled */
91 u8 wrapped; /**< trace has wrapped */
Klement Sekera58eb8662017-06-09 06:06:49 +020092 u8 pad;
Dave Barach905c14a2017-09-25 08:47:59 -040093 u32 nitems; /**< Number of trace records */
94 u32 curindex; /**< Current index in circular buffer */
95 u8 **traces; /**< Trace ring */
Klement Sekera58eb8662017-06-09 06:06:49 +020096} vl_api_trace_t;
97
Dave Barach905c14a2017-09-25 08:47:59 -040098/** Trace RX / TX enum */
Klement Sekera58eb8662017-06-09 06:06:49 +020099typedef enum
100{
101 VL_API_TRACE_TX,
102 VL_API_TRACE_RX,
103} vl_api_trace_which_t;
104
105#define VL_API_LITTLE_ENDIAN 0x00
106#define VL_API_BIG_ENDIAN 0x01
107
Dave Barach905c14a2017-09-25 08:47:59 -0400108/** Message range (belonging to a plugin) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200109typedef struct
110{
Dave Barach905c14a2017-09-25 08:47:59 -0400111 u8 *name; /**< name of the plugin */
112 u16 first_msg_id; /**< first assigned message ID */
113 u16 last_msg_id; /**< last assigned message ID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200114} vl_api_msg_range_t;
115
Dave Barach905c14a2017-09-25 08:47:59 -0400116/** Message configuration definition */
Klement Sekera58eb8662017-06-09 06:06:49 +0200117typedef struct
118{
Dave Barach905c14a2017-09-25 08:47:59 -0400119 int id; /**< the message ID */
120 char *name; /**< the message name */
121 u32 crc; /**< message definition CRC */
122 void *handler; /**< the message handler */
123 void *cleanup; /**< non-default message cleanup handler */
124 void *endian; /**< message endian function */
Damjan Marionfe45f8f2022-05-20 16:01:22 +0200125 void *format_fn; /**< message format function */
Filip Tehlar36217e32021-07-23 08:51:10 +0000126 void *tojson; /**< binary to JSON convert function */
127 void *fromjson; /**< JSON to binary convert function */
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100128 void *calc_size; /**< message size calculation */
Dave Barach905c14a2017-09-25 08:47:59 -0400129 int size; /**< message size */
Tianyu Libecfab02023-07-07 06:47:56 +0000130 u32 traced : 1; /**< is this message to be traced? */
131 u32 replay : 1; /**< is this message to be replayed? */
132 u32 message_bounce : 1; /**< do not free message after processing */
133 u32 is_mp_safe : 1; /**< worker thread barrier required? */
134 u32 is_autoendian : 1; /**< endian conversion required? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200135} vl_msg_api_msg_config_t;
136
Dave Barach905c14a2017-09-25 08:47:59 -0400137/** Message header structure */
Klement Sekera58eb8662017-06-09 06:06:49 +0200138typedef struct msgbuf_
139{
Florin Corase86a8ed2018-01-05 03:20:25 -0800140 svm_queue_t *q; /**< message allocated in this shmem ring */
Dave Barach905c14a2017-09-25 08:47:59 -0400141 u32 data_len; /**< message length not including header */
142 u32 gc_mark_timestamp; /**< message garbage collector mark TS */
143 u8 data[0]; /**< actual message begins here */
Klement Sekera58eb8662017-06-09 06:06:49 +0200144} msgbuf_t;
145
Damjan Marion79934e82022-04-05 12:40:31 +0200146__clib_nosanitize_addr static inline void
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200147VL_MSG_API_UNPOISON (const void *a)
148{
149 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
Damjan Marion79934e82022-04-05 12:40:31 +0200150 clib_mem_unpoison (m, sizeof (*m) + ntohl (m->data_len));
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200151}
152
Damjan Marion79934e82022-04-05 12:40:31 +0200153__clib_nosanitize_addr static inline void
154VL_MSG_API_SVM_QUEUE_UNPOISON (const svm_queue_t *q)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200155{
Damjan Marion79934e82022-04-05 12:40:31 +0200156 clib_mem_unpoison (q, sizeof (*q) + q->elsize * q->maxsize);
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200157}
158
159static inline void
160VL_MSG_API_POISON (const void *a)
161{
162 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
Damjan Marion79934e82022-04-05 12:40:31 +0200163 clib_mem_poison (m, sizeof (*m) + ntohl (m->data_len));
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200164}
165
Klement Sekera58eb8662017-06-09 06:06:49 +0200166/* api_shared.c prototypes */
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100167void vl_msg_api_handler (void *the_msg, uword msg_len);
168void vl_msg_api_handler_no_free (void *the_msg, uword msg_len);
169void vl_msg_api_handler_no_trace_no_free (void *the_msg, uword msg_len);
170void vl_msg_api_trace_only (void *the_msg, uword msg_len);
Klement Sekera58eb8662017-06-09 06:06:49 +0200171void vl_msg_api_cleanup_handler (void *the_msg);
172void vl_msg_api_replay_handler (void *the_msg);
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100173void vl_msg_api_socket_handler (void *the_msg, uword msg_len);
Matej Perina75a17ec2017-09-21 17:03:27 +0200174void vl_msg_api_clean_handlers (int msg_id);
Klement Sekera58eb8662017-06-09 06:06:49 +0200175void vl_msg_api_config (vl_msg_api_msg_config_t *);
176void vl_msg_api_set_cleanup_handler (int msg_id, void *fp);
Florin Corase86a8ed2018-01-05 03:20:25 -0800177void vl_msg_api_queue_handler (svm_queue_t * q);
Klement Sekera58eb8662017-06-09 06:06:49 +0200178
179void vl_msg_api_barrier_sync (void) __attribute__ ((weak));
180void vl_msg_api_barrier_release (void) __attribute__ ((weak));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100181#ifdef BARRIER_TRACING
182void vl_msg_api_barrier_trace_context (const char *context)
183 __attribute__ ((weak));
184#else
185#define vl_msg_api_barrier_trace_context(X)
186#endif
Klement Sekera58eb8662017-06-09 06:06:49 +0200187void vl_msg_api_free (void *);
Klement Sekera58eb8662017-06-09 06:06:49 +0200188void vl_msg_api_increment_missing_client_counter (void);
189void vl_msg_api_post_mortem_dump (void);
190void vl_msg_api_post_mortem_dump_enable_disable (int enable);
191void vl_msg_api_register_pd_handler (void *handler,
192 u16 msg_id_host_byte_order);
Klement Sekera58eb8662017-06-09 06:06:49 +0200193
194void vl_msg_api_set_first_available_msg_id (u16 first_avail);
195u16 vl_msg_api_get_msg_ids (const char *name, int n);
Florin Corase86a8ed2018-01-05 03:20:25 -0800196u32 vl_msg_api_get_msg_index (u8 * name_and_crc);
Ole Troan73710c72018-06-04 22:27:49 +0200197void *vl_msg_push_heap (void);
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100198void *vl_msg_push_heap_w_region (svm_region_t * vlib_rp);
Ole Troan73710c72018-06-04 22:27:49 +0200199void vl_msg_pop_heap (void *oldheap);
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100200void vl_msg_pop_heap_w_region (svm_region_t * vlib_rp, void *oldheap);
Klement Sekera58eb8662017-06-09 06:06:49 +0200201
202typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index);
203
204typedef struct _vl_msg_api_init_function_list_elt
205{
206 struct _vl_msg_api_init_function_list_elt *next_init_function;
207 vl_msg_api_init_function_t *f;
208} _vl_msg_api_function_list_elt_t;
209
Dave Barach0d056e52017-09-28 15:11:16 -0400210typedef struct
211{
212 u32 major;
213 u32 minor;
214 u32 patch;
215 char name[64];
216} api_version_t;
217
Damjan Marioncada9eb2022-05-18 22:16:11 +0200218typedef struct
219{
220 /** Message handler vector */
221 void (*handler) (void *);
222
223 /** non-default message cleanup handler vector */
224 void (*cleanup_handler) (void *);
225
226 /** Message name vector */
227 const char *name;
228
Damjan Marionfe45f8f2022-05-20 16:01:22 +0200229 /** Message format function */
230 format_function_t *format_fn;
231
Damjan Marioncada9eb2022-05-18 22:16:11 +0200232 /** Message convert function vector */
233 cJSON *(*tojson_handler) (void *);
234
235 /** Message convert function vector */
236 void *(*fromjson_handler) (cJSON *, int *);
237
238 /** Message endian handler vector */
239 void (*endian_handler) (void *);
240
Damjan Marioncada9eb2022-05-18 22:16:11 +0200241 /** Message calc size function vector */
242 uword (*calc_size_func) (void *);
243
244 /** trace size for sanity checking */
245 int trace_size;
246
247 /** Flags */
248 u8 bounce : 1; /**> Don't automatically free message buffer vetor */
249 u8 is_mp_safe : 1; /**< Message is mp safe vector */
250 u8 is_autoendian : 1; /**< Message requires us to do endian conversion */
251 u8 trace_enable : 1; /**< trace this message */
252 u8 replay_allowed : 1; /**< This message can be replayed */
253
254} vl_api_msg_data_t;
255
Dave Barach905c14a2017-09-25 08:47:59 -0400256/** API main structure, used by both vpp and binary API clients */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000257typedef struct api_main_t
Klement Sekera58eb8662017-06-09 06:06:49 +0200258{
Damjan Marioncada9eb2022-05-18 22:16:11 +0200259 vl_api_msg_data_t *msg_data;
Dave Barach905c14a2017-09-25 08:47:59 -0400260
Filip Tehlar36217e32021-07-23 08:51:10 +0000261 /** API message ID by name hash table */
262 uword *msg_id_by_name;
263
Dave Barach905c14a2017-09-25 08:47:59 -0400264 /** Allocator ring vectors (in shared memory) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200265 struct ring_alloc_ *arings;
Dave Barach905c14a2017-09-25 08:47:59 -0400266
267 /** Number of times that the ring allocator failed */
Klement Sekera58eb8662017-06-09 06:06:49 +0200268 u32 ring_misses;
Dave Barach905c14a2017-09-25 08:47:59 -0400269
270 /** Number of garbage-collected message buffers */
Klement Sekera58eb8662017-06-09 06:06:49 +0200271 u32 garbage_collects;
Dave Barach905c14a2017-09-25 08:47:59 -0400272
273 /** Number of missing clients / failed message sends */
Klement Sekera58eb8662017-06-09 06:06:49 +0200274 u32 missing_clients;
Dave Barach905c14a2017-09-25 08:47:59 -0400275
276 /** Received message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200277 vl_api_trace_t *rx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400278
279 /** Sent message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200280 vl_api_trace_t *tx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400281
282 /** Print every received message */
Klement Sekera58eb8662017-06-09 06:06:49 +0200283 int msg_print_flag;
Dave Barach905c14a2017-09-25 08:47:59 -0400284
Dave Barach905c14a2017-09-25 08:47:59 -0400285 /** Current process PID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200286 int our_pid;
Dave Barach905c14a2017-09-25 08:47:59 -0400287
Dave Barach7939f902017-10-04 10:03:52 -0400288 /** Current binary api segment descriptor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200289 svm_region_t *vlib_rp;
Dave Barach905c14a2017-09-25 08:47:59 -0400290
Dave Barach7939f902017-10-04 10:03:52 -0400291 /** Primary api segment descriptor */
292 svm_region_t *vlib_primary_rp;
293
Dave Barach905c14a2017-09-25 08:47:59 -0400294 /** Vector of all mapped shared-VM segments */
Dave Barach59b25652017-09-10 15:04:27 -0400295 svm_region_t **vlib_private_rps;
Klement Sekera58eb8662017-06-09 06:06:49 +0200296 svm_region_t **mapped_shmem_regions;
Dave Barach905c14a2017-09-25 08:47:59 -0400297
298 /** Binary API shared-memory segment header pointer */
Klement Sekera58eb8662017-06-09 06:06:49 +0200299 struct vl_shmem_hdr_ *shmem_hdr;
Dave Barach905c14a2017-09-25 08:47:59 -0400300
301 /** vlib/vpp only: vector of client registrations */
Klement Sekera58eb8662017-06-09 06:06:49 +0200302 vl_api_registration_t **vl_clients;
303
Dave Barach905c14a2017-09-25 08:47:59 -0400304 /** vlib/vpp only: serialized (message, name, crc) table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200305 u8 *serialized_message_table_in_shmem;
306
Dave Barach905c14a2017-09-25 08:47:59 -0400307 /** First available message ID, for theplugin msg allocator */
Klement Sekera58eb8662017-06-09 06:06:49 +0200308 u16 first_available_msg_id;
309
Dave Barach905c14a2017-09-25 08:47:59 -0400310 /** Message range by name hash */
Klement Sekera58eb8662017-06-09 06:06:49 +0200311 uword *msg_range_by_name;
312
Dave Barach905c14a2017-09-25 08:47:59 -0400313 /** vector of message ranges */
Klement Sekera58eb8662017-06-09 06:06:49 +0200314 vl_api_msg_range_t *msg_ranges;
315
Dave Barach905c14a2017-09-25 08:47:59 -0400316 /** uid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200317 int api_uid;
Dave Barach905c14a2017-09-25 08:47:59 -0400318
319 /** gid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200320 int api_gid;
321
Dave Barach905c14a2017-09-25 08:47:59 -0400322 /** base virtual address for global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200323 u64 global_baseva;
324
Dave Barach905c14a2017-09-25 08:47:59 -0400325 /** size of the global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200326 u64 global_size;
327
Dave Barach905c14a2017-09-25 08:47:59 -0400328 /** size of the API region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200329 u64 api_size;
330
Dave Barach905c14a2017-09-25 08:47:59 -0400331 /** size of the global VM private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200332 u64 global_pvt_heap_size;
333
Dave Barach905c14a2017-09-25 08:47:59 -0400334 /** size of the api private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200335 u64 api_pvt_heap_size;
336
Dave Barach905c14a2017-09-25 08:47:59 -0400337 /** Peer input queue pointer */
Florin Corase86a8ed2018-01-05 03:20:25 -0800338 svm_queue_t *vl_input_queue;
Klement Sekera58eb8662017-06-09 06:06:49 +0200339
Dave Barach905c14a2017-09-25 08:47:59 -0400340 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200341 * All VLIB-side message handlers use my_client_index to identify
342 * the queue / client. This works in sim replay.
343 */
344 int my_client_index;
Dave Barach905c14a2017-09-25 08:47:59 -0400345 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200346 * This is the (shared VM) address of the registration,
347 * don't use it to id the connection since it can't possibly
348 * work in simulator replay.
349 */
350 vl_api_registration_t *my_registration;
351
Dave Barach905c14a2017-09-25 08:47:59 -0400352 /** vpp/vlib input queue length */
Klement Sekera58eb8662017-06-09 06:06:49 +0200353 u32 vlib_input_queue_length;
354
Dave Barach905c14a2017-09-25 08:47:59 -0400355 /** client message index hash table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200356 uword *msg_index_by_name_and_crc;
Ole Troanac0babd2024-01-23 18:56:23 +0100357 /** plugin JSON representation vector table */
358 u8 **json_api_repr;
Klement Sekera58eb8662017-06-09 06:06:49 +0200359
Dave Barach0d056e52017-09-28 15:11:16 -0400360 /** api version list */
361 api_version_t *api_version_list;
362
Dave Barach905c14a2017-09-25 08:47:59 -0400363 /** Shared VM binary API region name */
Klement Sekera58eb8662017-06-09 06:06:49 +0200364 const char *region_name;
Dave Barach905c14a2017-09-25 08:47:59 -0400365
366 /** Chroot path to the shared memory API files */
Klement Sekera58eb8662017-06-09 06:06:49 +0200367 const char *root_path;
368
Dave Barach905c14a2017-09-25 08:47:59 -0400369 /** Replay in progress? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200370 int replay_in_progress;
371
Dave Barach905c14a2017-09-25 08:47:59 -0400372 /** Dump (msg-name, crc) snapshot here at startup */
Dave Barach49fe0462017-09-12 17:06:56 -0400373 u8 *save_msg_table_filename;
374
Dave Barach905c14a2017-09-25 08:47:59 -0400375 /** List of API client reaper functions */
Klement Sekera58eb8662017-06-09 06:06:49 +0200376 _vl_msg_api_function_list_elt_t *reaper_function_registrations;
377
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200378 /** Bin API thread handle */
379 pthread_t rx_thread_handle;
380
Dave Barachb09f4d02019-07-15 16:00:03 -0400381 /** event log */
382 elog_main_t *elog_main;
383 int elog_trace_api_messages;
384
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000385 /** performance counter callback **/
386 void (**perf_counter_cbs)
387 (struct api_main_t *, u32 id, int before_or_after);
388 void (**perf_counter_cbs_tmp)
389 (struct api_main_t *, u32 id, int before_or_after);
390
Klement Sekera58eb8662017-06-09 06:06:49 +0200391} api_main_t;
392
Dave Barach39d69112019-11-27 11:42:13 -0500393extern __thread api_main_t *my_api_main;
Dave Barach39d69112019-11-27 11:42:13 -0500394
395always_inline api_main_t *
396vlibapi_get_main (void)
397{
398 return my_api_main;
399}
Klement Sekera58eb8662017-06-09 06:06:49 +0200400
Damjan Marioncada9eb2022-05-18 22:16:11 +0200401always_inline vl_api_msg_data_t *
402vl_api_get_msg_data (api_main_t *am, u32 msg_id)
403{
404 if (msg_id >= vec_len (am->msg_data))
405 return 0;
406 return am->msg_data + msg_id;
407}
408
Florin Coras684fb6e2019-12-09 16:42:50 -0800409always_inline void
410vlibapi_set_main (api_main_t * am)
411{
412 my_api_main = am;
413}
414
Klement Sekera58eb8662017-06-09 06:06:49 +0200415#endif /* included_api_common_h */
416
417/*
418 * fd.io coding-style-patch-verification: ON
419 *
420 * Local Variables:
421 * eval: (c-set-style "gnu")
422 * End:
423 */