blob: 491ecb8eaef2bcd28d1b328f9d4f0cf2af899cd0 [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/** Trace configuration for a single message */
Klement Sekera58eb8662017-06-09 06:06:49 +020085typedef struct
86{
Dave Barach905c14a2017-09-25 08:47:59 -040087 int size; /**< for sanity checking */
88 int trace_enable; /**< trace this message */
89 int replay_enable; /**< This message can be replayed */
Klement Sekera58eb8662017-06-09 06:06:49 +020090} trace_cfg_t;
91
Dave Barach905c14a2017-09-25 08:47:59 -040092/**
93 * API trace state
Klement Sekera58eb8662017-06-09 06:06:49 +020094 */
95typedef struct
96{
Dave Barach905c14a2017-09-25 08:47:59 -040097 u8 endian; /**< trace endianness */
98 u8 enabled; /**< trace is enabled */
99 u8 wrapped; /**< trace has wrapped */
Klement Sekera58eb8662017-06-09 06:06:49 +0200100 u8 pad;
Dave Barach905c14a2017-09-25 08:47:59 -0400101 u32 nitems; /**< Number of trace records */
102 u32 curindex; /**< Current index in circular buffer */
103 u8 **traces; /**< Trace ring */
Klement Sekera58eb8662017-06-09 06:06:49 +0200104} vl_api_trace_t;
105
Dave Barach905c14a2017-09-25 08:47:59 -0400106/** Trace RX / TX enum */
Klement Sekera58eb8662017-06-09 06:06:49 +0200107typedef enum
108{
109 VL_API_TRACE_TX,
110 VL_API_TRACE_RX,
111} vl_api_trace_which_t;
112
113#define VL_API_LITTLE_ENDIAN 0x00
114#define VL_API_BIG_ENDIAN 0x01
115
Dave Barach905c14a2017-09-25 08:47:59 -0400116/** Message range (belonging to a plugin) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200117typedef struct
118{
Dave Barach905c14a2017-09-25 08:47:59 -0400119 u8 *name; /**< name of the plugin */
120 u16 first_msg_id; /**< first assigned message ID */
121 u16 last_msg_id; /**< last assigned message ID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200122} vl_api_msg_range_t;
123
Dave Barach905c14a2017-09-25 08:47:59 -0400124/** Message configuration definition */
Klement Sekera58eb8662017-06-09 06:06:49 +0200125typedef struct
126{
Dave Barach905c14a2017-09-25 08:47:59 -0400127 int id; /**< the message ID */
128 char *name; /**< the message name */
129 u32 crc; /**< message definition CRC */
130 void *handler; /**< the message handler */
131 void *cleanup; /**< non-default message cleanup handler */
132 void *endian; /**< message endian function */
133 void *print; /**< message print function */
Filip Tehlar36217e32021-07-23 08:51:10 +0000134 void *print_json; /**< message print function (JSON format) */
135 void *tojson; /**< binary to JSON convert function */
136 void *fromjson; /**< JSON to binary convert function */
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100137 void *calc_size; /**< message size calculation */
Dave Barach905c14a2017-09-25 08:47:59 -0400138 int size; /**< message size */
139 int traced; /**< is this message to be traced? */
140 int replay; /**< is this message to be replayed? */
141 int message_bounce; /**< do not free message after processing */
142 int is_mp_safe; /**< worker thread barrier required? */
Ole Troane796a182020-05-18 11:14:05 +0200143 int is_autoendian; /**< endian conversion required? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200144} vl_msg_api_msg_config_t;
145
Dave Barach905c14a2017-09-25 08:47:59 -0400146/** Message header structure */
Klement Sekera58eb8662017-06-09 06:06:49 +0200147typedef struct msgbuf_
148{
Florin Corase86a8ed2018-01-05 03:20:25 -0800149 svm_queue_t *q; /**< message allocated in this shmem ring */
Dave Barach905c14a2017-09-25 08:47:59 -0400150 u32 data_len; /**< message length not including header */
151 u32 gc_mark_timestamp; /**< message garbage collector mark TS */
152 u8 data[0]; /**< actual message begins here */
Klement Sekera58eb8662017-06-09 06:06:49 +0200153} msgbuf_t;
154
Damjan Marion79934e82022-04-05 12:40:31 +0200155__clib_nosanitize_addr static inline void
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200156VL_MSG_API_UNPOISON (const void *a)
157{
158 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
Damjan Marion79934e82022-04-05 12:40:31 +0200159 clib_mem_unpoison (m, sizeof (*m) + ntohl (m->data_len));
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200160}
161
Damjan Marion79934e82022-04-05 12:40:31 +0200162__clib_nosanitize_addr static inline void
163VL_MSG_API_SVM_QUEUE_UNPOISON (const svm_queue_t *q)
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200164{
Damjan Marion79934e82022-04-05 12:40:31 +0200165 clib_mem_unpoison (q, sizeof (*q) + q->elsize * q->maxsize);
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200166}
167
168static inline void
169VL_MSG_API_POISON (const void *a)
170{
171 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
Damjan Marion79934e82022-04-05 12:40:31 +0200172 clib_mem_poison (m, sizeof (*m) + ntohl (m->data_len));
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200173}
174
Klement Sekera58eb8662017-06-09 06:06:49 +0200175/* api_shared.c prototypes */
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100176void vl_msg_api_handler (void *the_msg, uword msg_len);
177void vl_msg_api_handler_no_free (void *the_msg, uword msg_len);
178void vl_msg_api_handler_no_trace_no_free (void *the_msg, uword msg_len);
179void vl_msg_api_trace_only (void *the_msg, uword msg_len);
Klement Sekera58eb8662017-06-09 06:06:49 +0200180void vl_msg_api_cleanup_handler (void *the_msg);
181void vl_msg_api_replay_handler (void *the_msg);
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100182void vl_msg_api_socket_handler (void *the_msg, uword msg_len);
Filip Tehlar36217e32021-07-23 08:51:10 +0000183void vl_msg_api_set_handlers (int msg_id, char *msg_name, void *handler,
184 void *cleanup, void *endian, void *print,
185 int msg_size, int traced, void *print_json,
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100186 void *tojson, void *fromjson,
187 void *validate_size);
Matej Perina75a17ec2017-09-21 17:03:27 +0200188void vl_msg_api_clean_handlers (int msg_id);
Klement Sekera58eb8662017-06-09 06:06:49 +0200189void vl_msg_api_config (vl_msg_api_msg_config_t *);
190void vl_msg_api_set_cleanup_handler (int msg_id, void *fp);
Florin Corase86a8ed2018-01-05 03:20:25 -0800191void vl_msg_api_queue_handler (svm_queue_t * q);
Klement Sekera58eb8662017-06-09 06:06:49 +0200192
193void vl_msg_api_barrier_sync (void) __attribute__ ((weak));
194void vl_msg_api_barrier_release (void) __attribute__ ((weak));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100195#ifdef BARRIER_TRACING
196void vl_msg_api_barrier_trace_context (const char *context)
197 __attribute__ ((weak));
198#else
199#define vl_msg_api_barrier_trace_context(X)
200#endif
Klement Sekera58eb8662017-06-09 06:06:49 +0200201void vl_msg_api_free (void *);
202void vl_noop_handler (void *mp);
203void vl_msg_api_increment_missing_client_counter (void);
204void vl_msg_api_post_mortem_dump (void);
205void vl_msg_api_post_mortem_dump_enable_disable (int enable);
206void vl_msg_api_register_pd_handler (void *handler,
207 u16 msg_id_host_byte_order);
208int vl_msg_api_pd_handler (void *mp, int rv);
209
210void vl_msg_api_set_first_available_msg_id (u16 first_avail);
211u16 vl_msg_api_get_msg_ids (const char *name, int n);
Florin Corase86a8ed2018-01-05 03:20:25 -0800212u32 vl_msg_api_get_msg_index (u8 * name_and_crc);
Ole Troan73710c72018-06-04 22:27:49 +0200213void *vl_msg_push_heap (void);
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100214void *vl_msg_push_heap_w_region (svm_region_t * vlib_rp);
Ole Troan73710c72018-06-04 22:27:49 +0200215void vl_msg_pop_heap (void *oldheap);
Nathan Skrzypczak0aa40132019-11-25 16:29:38 +0100216void vl_msg_pop_heap_w_region (svm_region_t * vlib_rp, void *oldheap);
Klement Sekera58eb8662017-06-09 06:06:49 +0200217
218typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index);
219
220typedef struct _vl_msg_api_init_function_list_elt
221{
222 struct _vl_msg_api_init_function_list_elt *next_init_function;
223 vl_msg_api_init_function_t *f;
224} _vl_msg_api_function_list_elt_t;
225
Dave Barach0d056e52017-09-28 15:11:16 -0400226typedef struct
227{
228 u32 major;
229 u32 minor;
230 u32 patch;
231 char name[64];
232} api_version_t;
233
Dave Barach905c14a2017-09-25 08:47:59 -0400234/** API main structure, used by both vpp and binary API clients */
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000235typedef struct api_main_t
Klement Sekera58eb8662017-06-09 06:06:49 +0200236{
Dave Barach905c14a2017-09-25 08:47:59 -0400237 /** Message handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200238 void (**msg_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400239
240 /** non-default message cleanup handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200241 void (**msg_cleanup_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400242
243 /** Message endian handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200244 void (**msg_endian_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400245
246 /** Message print function vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200247 void (**msg_print_handlers) (void *, void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400248
Filip Tehlar36217e32021-07-23 08:51:10 +0000249 /** Message print function vector in JSON */
250 void (**msg_print_json_handlers) (void *, void *);
251
252 /** Message convert function vector */
253 cJSON *(**msg_tojson_handlers) (void *);
254
255 /** Message convert function vector */
256 void *(**msg_fromjson_handlers) (cJSON *, int *);
257
Klement Sekera9b7e8ac2021-11-22 21:26:20 +0100258 /** Message calc size function vector */
259 uword (**msg_calc_size_funcs) (void *);
260
Dave Barach905c14a2017-09-25 08:47:59 -0400261 /** Message name vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200262 const char **msg_names;
Dave Barach905c14a2017-09-25 08:47:59 -0400263
Filip Tehlar36217e32021-07-23 08:51:10 +0000264 /** API message ID by name hash table */
265 uword *msg_id_by_name;
266
Dave Barach905c14a2017-09-25 08:47:59 -0400267 /** Don't automatically free message buffer vetor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200268 u8 *message_bounce;
Dave Barach905c14a2017-09-25 08:47:59 -0400269
270 /** Message is mp safe vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200271 u8 *is_mp_safe;
Dave Barach905c14a2017-09-25 08:47:59 -0400272
Ole Troane796a182020-05-18 11:14:05 +0200273 /** Message requires us to do endian conversion */
274 u8 *is_autoendian;
275
Dave Barach905c14a2017-09-25 08:47:59 -0400276 /** Allocator ring vectors (in shared memory) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200277 struct ring_alloc_ *arings;
Dave Barach905c14a2017-09-25 08:47:59 -0400278
279 /** Number of times that the ring allocator failed */
Klement Sekera58eb8662017-06-09 06:06:49 +0200280 u32 ring_misses;
Dave Barach905c14a2017-09-25 08:47:59 -0400281
282 /** Number of garbage-collected message buffers */
Klement Sekera58eb8662017-06-09 06:06:49 +0200283 u32 garbage_collects;
Dave Barach905c14a2017-09-25 08:47:59 -0400284
285 /** Number of missing clients / failed message sends */
Klement Sekera58eb8662017-06-09 06:06:49 +0200286 u32 missing_clients;
Dave Barach905c14a2017-09-25 08:47:59 -0400287
288 /** Received message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200289 vl_api_trace_t *rx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400290
291 /** Sent message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200292 vl_api_trace_t *tx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400293
294 /** Print every received message */
Klement Sekera58eb8662017-06-09 06:06:49 +0200295 int msg_print_flag;
Dave Barach905c14a2017-09-25 08:47:59 -0400296
297 /** Current trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200298 trace_cfg_t *api_trace_cfg;
Dave Barach905c14a2017-09-25 08:47:59 -0400299
300 /** Current process PID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200301 int our_pid;
Dave Barach905c14a2017-09-25 08:47:59 -0400302
Dave Barach7939f902017-10-04 10:03:52 -0400303 /** Current binary api segment descriptor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200304 svm_region_t *vlib_rp;
Dave Barach905c14a2017-09-25 08:47:59 -0400305
Dave Barach7939f902017-10-04 10:03:52 -0400306 /** Primary api segment descriptor */
307 svm_region_t *vlib_primary_rp;
308
Dave Barach905c14a2017-09-25 08:47:59 -0400309 /** Vector of all mapped shared-VM segments */
Dave Barach59b25652017-09-10 15:04:27 -0400310 svm_region_t **vlib_private_rps;
Klement Sekera58eb8662017-06-09 06:06:49 +0200311 svm_region_t **mapped_shmem_regions;
Dave Barach905c14a2017-09-25 08:47:59 -0400312
313 /** Binary API shared-memory segment header pointer */
Klement Sekera58eb8662017-06-09 06:06:49 +0200314 struct vl_shmem_hdr_ *shmem_hdr;
Dave Barach905c14a2017-09-25 08:47:59 -0400315
316 /** vlib/vpp only: vector of client registrations */
Klement Sekera58eb8662017-06-09 06:06:49 +0200317 vl_api_registration_t **vl_clients;
318
Dave Barach905c14a2017-09-25 08:47:59 -0400319 /** vlib/vpp only: serialized (message, name, crc) table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200320 u8 *serialized_message_table_in_shmem;
321
Dave Barach905c14a2017-09-25 08:47:59 -0400322 /** First available message ID, for theplugin msg allocator */
Klement Sekera58eb8662017-06-09 06:06:49 +0200323 u16 first_available_msg_id;
324
Dave Barach905c14a2017-09-25 08:47:59 -0400325 /** Message range by name hash */
Klement Sekera58eb8662017-06-09 06:06:49 +0200326 uword *msg_range_by_name;
327
Dave Barach905c14a2017-09-25 08:47:59 -0400328 /** vector of message ranges */
Klement Sekera58eb8662017-06-09 06:06:49 +0200329 vl_api_msg_range_t *msg_ranges;
330
Dave Barach905c14a2017-09-25 08:47:59 -0400331 /** uid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200332 int api_uid;
Dave Barach905c14a2017-09-25 08:47:59 -0400333
334 /** gid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200335 int api_gid;
336
Dave Barach905c14a2017-09-25 08:47:59 -0400337 /** base virtual address for global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200338 u64 global_baseva;
339
Dave Barach905c14a2017-09-25 08:47:59 -0400340 /** size of the global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200341 u64 global_size;
342
Dave Barach905c14a2017-09-25 08:47:59 -0400343 /** size of the API region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200344 u64 api_size;
345
Dave Barach905c14a2017-09-25 08:47:59 -0400346 /** size of the global VM private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200347 u64 global_pvt_heap_size;
348
Dave Barach905c14a2017-09-25 08:47:59 -0400349 /** size of the api private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200350 u64 api_pvt_heap_size;
351
Dave Barach905c14a2017-09-25 08:47:59 -0400352 /** Peer input queue pointer */
Florin Corase86a8ed2018-01-05 03:20:25 -0800353 svm_queue_t *vl_input_queue;
Klement Sekera58eb8662017-06-09 06:06:49 +0200354
Dave Barach905c14a2017-09-25 08:47:59 -0400355 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200356 * All VLIB-side message handlers use my_client_index to identify
357 * the queue / client. This works in sim replay.
358 */
359 int my_client_index;
Dave Barach905c14a2017-09-25 08:47:59 -0400360 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200361 * This is the (shared VM) address of the registration,
362 * don't use it to id the connection since it can't possibly
363 * work in simulator replay.
364 */
365 vl_api_registration_t *my_registration;
366
Dave Barach905c14a2017-09-25 08:47:59 -0400367 /** vpp/vlib input queue length */
Klement Sekera58eb8662017-06-09 06:06:49 +0200368 u32 vlib_input_queue_length;
369
Dave Barach905c14a2017-09-25 08:47:59 -0400370 /** client message index hash table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200371 uword *msg_index_by_name_and_crc;
372
Dave Barach0d056e52017-09-28 15:11:16 -0400373 /** api version list */
374 api_version_t *api_version_list;
375
Dave Barach905c14a2017-09-25 08:47:59 -0400376 /** Shared VM binary API region name */
Klement Sekera58eb8662017-06-09 06:06:49 +0200377 const char *region_name;
Dave Barach905c14a2017-09-25 08:47:59 -0400378
379 /** Chroot path to the shared memory API files */
Klement Sekera58eb8662017-06-09 06:06:49 +0200380 const char *root_path;
381
Dave Barach905c14a2017-09-25 08:47:59 -0400382 /** Replay in progress? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200383 int replay_in_progress;
384
Dave Barach905c14a2017-09-25 08:47:59 -0400385 /** Dump (msg-name, crc) snapshot here at startup */
Dave Barach49fe0462017-09-12 17:06:56 -0400386 u8 *save_msg_table_filename;
387
Dave Barach905c14a2017-09-25 08:47:59 -0400388 /** List of API client reaper functions */
Klement Sekera58eb8662017-06-09 06:06:49 +0200389 _vl_msg_api_function_list_elt_t *reaper_function_registrations;
390
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200391 /** Bin API thread handle */
392 pthread_t rx_thread_handle;
393
Dave Barachb09f4d02019-07-15 16:00:03 -0400394 /** event log */
395 elog_main_t *elog_main;
396 int elog_trace_api_messages;
397
Tom Seidenberg6c81f5a2020-07-10 15:49:03 +0000398 /** performance counter callback **/
399 void (**perf_counter_cbs)
400 (struct api_main_t *, u32 id, int before_or_after);
401 void (**perf_counter_cbs_tmp)
402 (struct api_main_t *, u32 id, int before_or_after);
403
Klement Sekera58eb8662017-06-09 06:06:49 +0200404} api_main_t;
405
Dave Barach39d69112019-11-27 11:42:13 -0500406extern __thread api_main_t *my_api_main;
Dave Barach39d69112019-11-27 11:42:13 -0500407
408always_inline api_main_t *
409vlibapi_get_main (void)
410{
411 return my_api_main;
412}
Klement Sekera58eb8662017-06-09 06:06:49 +0200413
Florin Coras684fb6e2019-12-09 16:42:50 -0800414always_inline void
415vlibapi_set_main (api_main_t * am)
416{
417 my_api_main = am;
418}
419
Klement Sekera58eb8662017-06-09 06:06:49 +0200420#endif /* included_api_common_h */
421
422/*
423 * fd.io coding-style-patch-verification: ON
424 *
425 * Local Variables:
426 * eval: (c-set-style "gnu")
427 * End:
428 */