blob: 4d4010461748472c19821bb6be3e1cfc4f801982 [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
Dave Barach905c14a2017-09-25 08:47:59 -040023/** \file API common definitions
24 * See api_doc.md for more info
25 */
26
Klement Sekera58eb8662017-06-09 06:06:49 +020027#include <vppinfra/clib_error.h>
Dave Barachb09f4d02019-07-15 16:00:03 -040028#include <vppinfra/elog.h>
Ole Troan413f4a52018-11-28 11:36:05 +010029#include <vlibapi/api_types.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020030#include <svm/svm_common.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080031#include <svm/queue.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020032
Dave Barach905c14a2017-09-25 08:47:59 -040033/** API registration types
34 */
Klement Sekera58eb8662017-06-09 06:06:49 +020035typedef enum
36{
37 REGISTRATION_TYPE_FREE = 0,
Dave Barach905c14a2017-09-25 08:47:59 -040038 REGISTRATION_TYPE_SHMEM, /**< Shared memory connection */
39 REGISTRATION_TYPE_SOCKET_LISTEN, /**< Socket listener */
40 REGISTRATION_TYPE_SOCKET_SERVER, /**< Socket server */
41 REGISTRATION_TYPE_SOCKET_CLIENT, /**< Socket client */
Klement Sekera58eb8662017-06-09 06:06:49 +020042} vl_registration_type_t;
43
Dave Barach905c14a2017-09-25 08:47:59 -040044/** An API client registration, only in vpp/vlib */
45
Klement Sekera58eb8662017-06-09 06:06:49 +020046typedef struct vl_api_registration_
47{
Dave Barach905c14a2017-09-25 08:47:59 -040048 vl_registration_type_t registration_type; /**< type */
Klement Sekera58eb8662017-06-09 06:06:49 +020049
Dave Barach905c14a2017-09-25 08:47:59 -040050 /** Index in VLIB's brain (not shared memory). */
Klement Sekera58eb8662017-06-09 06:06:49 +020051 u32 vl_api_registration_pool_index;
52
Dave Barach905c14a2017-09-25 08:47:59 -040053 u8 *name; /**< Client name */
Klement Sekera58eb8662017-06-09 06:06:49 +020054
Dave Barach59b25652017-09-10 15:04:27 -040055 /* Zombie apocalypse checking */
56 f64 last_heard;
57 int last_queue_head;
58 int unanswered_pings;
59
Dave Barach905c14a2017-09-25 08:47:59 -040060 /** shared memory only: pointer to client input queue */
Florin Corase86a8ed2018-01-05 03:20:25 -080061 svm_queue_t *vl_input_queue;
Dave Barach59b25652017-09-10 15:04:27 -040062 svm_region_t *vlib_rp;
63 void *shmem_hdr;
Klement Sekera58eb8662017-06-09 06:06:49 +020064
65 /* socket server and client */
Dave Barach905c14a2017-09-25 08:47:59 -040066 u32 clib_file_index; /**< Socket only: file index */
67 i8 *unprocessed_input; /**< Socket only: pending input */
68 u32 unprocessed_msg_length; /**< Socket only: unprocssed length */
Ole Troan94495f22018-08-02 11:58:12 +020069 u8 *output_vector; /**< Socket only: output vector */
Dave Barach59b25652017-09-10 15:04:27 -040070 int *additional_fds_to_close;
Klement Sekera58eb8662017-06-09 06:06:49 +020071
72 /* socket client only */
Dave Barach905c14a2017-09-25 08:47:59 -040073 u32 server_handle; /**< Socket client only: server handle */
74 u32 server_index; /**< Socket client only: server index */
Klement Sekera58eb8662017-06-09 06:06:49 +020075} vl_api_registration_t;
76
Florin Corasb384b542018-01-15 01:08:33 -080077#define VL_API_INVALID_FI ((u32)~0)
Klement Sekera58eb8662017-06-09 06:06:49 +020078
Dave Barach905c14a2017-09-25 08:47:59 -040079/** Trace configuration for a single message */
Klement Sekera58eb8662017-06-09 06:06:49 +020080typedef struct
81{
Dave Barach905c14a2017-09-25 08:47:59 -040082 int size; /**< for sanity checking */
83 int trace_enable; /**< trace this message */
84 int replay_enable; /**< This message can be replayed */
Klement Sekera58eb8662017-06-09 06:06:49 +020085} trace_cfg_t;
86
Dave Barach905c14a2017-09-25 08:47:59 -040087/**
88 * API trace state
Klement Sekera58eb8662017-06-09 06:06:49 +020089 */
90typedef struct
91{
Dave Barach905c14a2017-09-25 08:47:59 -040092 u8 endian; /**< trace endianness */
93 u8 enabled; /**< trace is enabled */
94 u8 wrapped; /**< trace has wrapped */
Klement Sekera58eb8662017-06-09 06:06:49 +020095 u8 pad;
Dave Barach905c14a2017-09-25 08:47:59 -040096 u32 nitems; /**< Number of trace records */
97 u32 curindex; /**< Current index in circular buffer */
98 u8 **traces; /**< Trace ring */
Klement Sekera58eb8662017-06-09 06:06:49 +020099} vl_api_trace_t;
100
Dave Barach905c14a2017-09-25 08:47:59 -0400101/** Trace RX / TX enum */
Klement Sekera58eb8662017-06-09 06:06:49 +0200102typedef enum
103{
104 VL_API_TRACE_TX,
105 VL_API_TRACE_RX,
106} vl_api_trace_which_t;
107
108#define VL_API_LITTLE_ENDIAN 0x00
109#define VL_API_BIG_ENDIAN 0x01
110
Dave Barach905c14a2017-09-25 08:47:59 -0400111/** Message range (belonging to a plugin) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200112typedef struct
113{
Dave Barach905c14a2017-09-25 08:47:59 -0400114 u8 *name; /**< name of the plugin */
115 u16 first_msg_id; /**< first assigned message ID */
116 u16 last_msg_id; /**< last assigned message ID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200117} vl_api_msg_range_t;
118
Dave Barach905c14a2017-09-25 08:47:59 -0400119/** Message configuration definition */
Klement Sekera58eb8662017-06-09 06:06:49 +0200120typedef struct
121{
Dave Barach905c14a2017-09-25 08:47:59 -0400122 int id; /**< the message ID */
123 char *name; /**< the message name */
124 u32 crc; /**< message definition CRC */
125 void *handler; /**< the message handler */
126 void *cleanup; /**< non-default message cleanup handler */
127 void *endian; /**< message endian function */
128 void *print; /**< message print function */
129 int size; /**< message size */
130 int traced; /**< is this message to be traced? */
131 int replay; /**< is this message to be replayed? */
132 int message_bounce; /**< do not free message after processing */
133 int is_mp_safe; /**< worker thread barrier required? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200134} vl_msg_api_msg_config_t;
135
Dave Barach905c14a2017-09-25 08:47:59 -0400136/** Message header structure */
Klement Sekera58eb8662017-06-09 06:06:49 +0200137typedef struct msgbuf_
138{
Florin Corase86a8ed2018-01-05 03:20:25 -0800139 svm_queue_t *q; /**< message allocated in this shmem ring */
Dave Barach905c14a2017-09-25 08:47:59 -0400140 u32 data_len; /**< message length not including header */
141 u32 gc_mark_timestamp; /**< message garbage collector mark TS */
142 u8 data[0]; /**< actual message begins here */
Klement Sekera58eb8662017-06-09 06:06:49 +0200143} msgbuf_t;
144
Benoît Ganne9fb6d402019-04-15 15:28:21 +0200145CLIB_NOSANITIZE_ADDR static inline void
146VL_MSG_API_UNPOISON (const void *a)
147{
148 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
149 CLIB_MEM_UNPOISON (m, sizeof (*m) + ntohl (m->data_len));
150}
151
152CLIB_NOSANITIZE_ADDR static inline void
153VL_MSG_API_SVM_QUEUE_UNPOISON (const svm_queue_t * q)
154{
155 CLIB_MEM_UNPOISON (q, sizeof (*q) + q->elsize * q->maxsize);
156}
157
158static inline void
159VL_MSG_API_POISON (const void *a)
160{
161 const msgbuf_t *m = &((const msgbuf_t *) a)[-1];
162 CLIB_MEM_POISON (m, sizeof (*m) + ntohl (m->data_len));
163}
164
Klement Sekera58eb8662017-06-09 06:06:49 +0200165/* api_shared.c prototypes */
166void vl_msg_api_handler (void *the_msg);
167void vl_msg_api_handler_no_free (void *the_msg);
168void vl_msg_api_handler_no_trace_no_free (void *the_msg);
169void vl_msg_api_trace_only (void *the_msg);
170void vl_msg_api_cleanup_handler (void *the_msg);
171void vl_msg_api_replay_handler (void *the_msg);
172void vl_msg_api_socket_handler (void *the_msg);
173void vl_msg_api_set_handlers (int msg_id, char *msg_name,
174 void *handler,
175 void *cleanup,
176 void *endian,
177 void *print, int msg_size, int traced);
Matej Perina75a17ec2017-09-21 17:03:27 +0200178void vl_msg_api_clean_handlers (int msg_id);
Klement Sekera58eb8662017-06-09 06:06:49 +0200179void vl_msg_api_config (vl_msg_api_msg_config_t *);
180void vl_msg_api_set_cleanup_handler (int msg_id, void *fp);
Florin Corase86a8ed2018-01-05 03:20:25 -0800181void vl_msg_api_queue_handler (svm_queue_t * q);
Klement Sekera58eb8662017-06-09 06:06:49 +0200182
183void vl_msg_api_barrier_sync (void) __attribute__ ((weak));
184void vl_msg_api_barrier_release (void) __attribute__ ((weak));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100185#ifdef BARRIER_TRACING
186void vl_msg_api_barrier_trace_context (const char *context)
187 __attribute__ ((weak));
188#else
189#define vl_msg_api_barrier_trace_context(X)
190#endif
Klement Sekera58eb8662017-06-09 06:06:49 +0200191void vl_msg_api_free (void *);
192void vl_noop_handler (void *mp);
193void vl_msg_api_increment_missing_client_counter (void);
194void vl_msg_api_post_mortem_dump (void);
195void vl_msg_api_post_mortem_dump_enable_disable (int enable);
196void vl_msg_api_register_pd_handler (void *handler,
197 u16 msg_id_host_byte_order);
198int vl_msg_api_pd_handler (void *mp, int rv);
199
200void vl_msg_api_set_first_available_msg_id (u16 first_avail);
201u16 vl_msg_api_get_msg_ids (const char *name, int n);
Florin Corase86a8ed2018-01-05 03:20:25 -0800202u32 vl_msg_api_get_msg_index (u8 * name_and_crc);
Ole Troan73710c72018-06-04 22:27:49 +0200203void *vl_msg_push_heap (void);
204void vl_msg_pop_heap (void *oldheap);
Klement Sekera58eb8662017-06-09 06:06:49 +0200205
206typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index);
207
208typedef struct _vl_msg_api_init_function_list_elt
209{
210 struct _vl_msg_api_init_function_list_elt *next_init_function;
211 vl_msg_api_init_function_t *f;
212} _vl_msg_api_function_list_elt_t;
213
Dave Barach0d056e52017-09-28 15:11:16 -0400214typedef struct
215{
216 u32 major;
217 u32 minor;
218 u32 patch;
219 char name[64];
220} api_version_t;
221
Dave Barach905c14a2017-09-25 08:47:59 -0400222/** API main structure, used by both vpp and binary API clients */
Klement Sekera58eb8662017-06-09 06:06:49 +0200223typedef struct
224{
Dave Barach905c14a2017-09-25 08:47:59 -0400225 /** Message handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200226 void (**msg_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400227 /** Plaform-dependent (aka hardware) message handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200228 int (**pd_msg_handlers) (void *, int);
Dave Barach905c14a2017-09-25 08:47:59 -0400229
230 /** non-default message cleanup handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200231 void (**msg_cleanup_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400232
233 /** Message endian handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200234 void (**msg_endian_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400235
236 /** Message print function vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200237 void (**msg_print_handlers) (void *, void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400238
239 /** Message name vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200240 const char **msg_names;
Dave Barach905c14a2017-09-25 08:47:59 -0400241
242 /** Don't automatically free message buffer vetor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200243 u8 *message_bounce;
Dave Barach905c14a2017-09-25 08:47:59 -0400244
245 /** Message is mp safe vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200246 u8 *is_mp_safe;
Dave Barach905c14a2017-09-25 08:47:59 -0400247
248 /** Allocator ring vectors (in shared memory) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200249 struct ring_alloc_ *arings;
Dave Barach905c14a2017-09-25 08:47:59 -0400250
251 /** Number of times that the ring allocator failed */
Klement Sekera58eb8662017-06-09 06:06:49 +0200252 u32 ring_misses;
Dave Barach905c14a2017-09-25 08:47:59 -0400253
254 /** Number of garbage-collected message buffers */
Klement Sekera58eb8662017-06-09 06:06:49 +0200255 u32 garbage_collects;
Dave Barach905c14a2017-09-25 08:47:59 -0400256
257 /** Number of missing clients / failed message sends */
Klement Sekera58eb8662017-06-09 06:06:49 +0200258 u32 missing_clients;
Dave Barach905c14a2017-09-25 08:47:59 -0400259
260 /** Received message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200261 vl_api_trace_t *rx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400262
263 /** Sent message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200264 vl_api_trace_t *tx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400265
266 /** Print every received message */
Klement Sekera58eb8662017-06-09 06:06:49 +0200267 int msg_print_flag;
Dave Barach905c14a2017-09-25 08:47:59 -0400268
269 /** Current trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200270 trace_cfg_t *api_trace_cfg;
Dave Barach905c14a2017-09-25 08:47:59 -0400271
272 /** Current process PID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200273 int our_pid;
Dave Barach905c14a2017-09-25 08:47:59 -0400274
Dave Barach7939f902017-10-04 10:03:52 -0400275 /** Current binary api segment descriptor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200276 svm_region_t *vlib_rp;
Dave Barach905c14a2017-09-25 08:47:59 -0400277
Dave Barach7939f902017-10-04 10:03:52 -0400278 /** Primary api segment descriptor */
279 svm_region_t *vlib_primary_rp;
280
Dave Barach905c14a2017-09-25 08:47:59 -0400281 /** Vector of all mapped shared-VM segments */
Dave Barach59b25652017-09-10 15:04:27 -0400282 svm_region_t **vlib_private_rps;
Klement Sekera58eb8662017-06-09 06:06:49 +0200283 svm_region_t **mapped_shmem_regions;
Dave Barach905c14a2017-09-25 08:47:59 -0400284
285 /** Binary API shared-memory segment header pointer */
Klement Sekera58eb8662017-06-09 06:06:49 +0200286 struct vl_shmem_hdr_ *shmem_hdr;
Dave Barach905c14a2017-09-25 08:47:59 -0400287
288 /** vlib/vpp only: vector of client registrations */
Klement Sekera58eb8662017-06-09 06:06:49 +0200289 vl_api_registration_t **vl_clients;
290
Dave Barach905c14a2017-09-25 08:47:59 -0400291 /** vlib/vpp only: serialized (message, name, crc) table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200292 u8 *serialized_message_table_in_shmem;
293
Dave Barach905c14a2017-09-25 08:47:59 -0400294 /** First available message ID, for theplugin msg allocator */
Klement Sekera58eb8662017-06-09 06:06:49 +0200295 u16 first_available_msg_id;
296
Dave Barach905c14a2017-09-25 08:47:59 -0400297 /** Message range by name hash */
Klement Sekera58eb8662017-06-09 06:06:49 +0200298 uword *msg_range_by_name;
299
Dave Barach905c14a2017-09-25 08:47:59 -0400300 /** vector of message ranges */
Klement Sekera58eb8662017-06-09 06:06:49 +0200301 vl_api_msg_range_t *msg_ranges;
302
Dave Barach905c14a2017-09-25 08:47:59 -0400303 /** uid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200304 int api_uid;
Dave Barach905c14a2017-09-25 08:47:59 -0400305
306 /** gid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200307 int api_gid;
308
Dave Barach905c14a2017-09-25 08:47:59 -0400309 /** base virtual address for global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200310 u64 global_baseva;
311
Dave Barach905c14a2017-09-25 08:47:59 -0400312 /** size of the global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200313 u64 global_size;
314
Dave Barach905c14a2017-09-25 08:47:59 -0400315 /** size of the API region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200316 u64 api_size;
317
Dave Barach905c14a2017-09-25 08:47:59 -0400318 /** size of the global VM private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200319 u64 global_pvt_heap_size;
320
Dave Barach905c14a2017-09-25 08:47:59 -0400321 /** size of the api private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200322 u64 api_pvt_heap_size;
323
Dave Barach905c14a2017-09-25 08:47:59 -0400324 /** Peer input queue pointer */
Florin Corase86a8ed2018-01-05 03:20:25 -0800325 svm_queue_t *vl_input_queue;
Klement Sekera58eb8662017-06-09 06:06:49 +0200326
Dave Barach905c14a2017-09-25 08:47:59 -0400327 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200328 * All VLIB-side message handlers use my_client_index to identify
329 * the queue / client. This works in sim replay.
330 */
331 int my_client_index;
Dave Barach905c14a2017-09-25 08:47:59 -0400332 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200333 * This is the (shared VM) address of the registration,
334 * don't use it to id the connection since it can't possibly
335 * work in simulator replay.
336 */
337 vl_api_registration_t *my_registration;
338
Dave Barach905c14a2017-09-25 08:47:59 -0400339 /** vpp/vlib input queue length */
Klement Sekera58eb8662017-06-09 06:06:49 +0200340 u32 vlib_input_queue_length;
341
Dave Barach905c14a2017-09-25 08:47:59 -0400342 /** client message index hash table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200343 uword *msg_index_by_name_and_crc;
344
Dave Barach0d056e52017-09-28 15:11:16 -0400345 /** api version list */
346 api_version_t *api_version_list;
347
Dave Barach905c14a2017-09-25 08:47:59 -0400348 /** Shared VM binary API region name */
Klement Sekera58eb8662017-06-09 06:06:49 +0200349 const char *region_name;
Dave Barach905c14a2017-09-25 08:47:59 -0400350
351 /** Chroot path to the shared memory API files */
Klement Sekera58eb8662017-06-09 06:06:49 +0200352 const char *root_path;
353
Dave Barach905c14a2017-09-25 08:47:59 -0400354 /** Replay in progress? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200355 int replay_in_progress;
356
Dave Barach905c14a2017-09-25 08:47:59 -0400357 /** Dump (msg-name, crc) snapshot here at startup */
Dave Barach49fe0462017-09-12 17:06:56 -0400358 u8 *save_msg_table_filename;
359
Dave Barach905c14a2017-09-25 08:47:59 -0400360 /** List of API client reaper functions */
Klement Sekera58eb8662017-06-09 06:06:49 +0200361 _vl_msg_api_function_list_elt_t *reaper_function_registrations;
362
IJsbrand Wijnands82295802019-10-08 13:50:55 +0200363 /** Bin API thread handle */
364 pthread_t rx_thread_handle;
365
Dave Barachb09f4d02019-07-15 16:00:03 -0400366 /** event log */
367 elog_main_t *elog_main;
368 int elog_trace_api_messages;
369
Klement Sekera58eb8662017-06-09 06:06:49 +0200370} api_main_t;
371
Dave Barach39d69112019-11-27 11:42:13 -0500372extern __thread api_main_t *my_api_main;
373extern api_main_t api_global_main;
374
375always_inline api_main_t *
376vlibapi_get_main (void)
377{
378 return my_api_main;
379}
Klement Sekera58eb8662017-06-09 06:06:49 +0200380
Florin Coras684fb6e2019-12-09 16:42:50 -0800381always_inline void
382vlibapi_set_main (api_main_t * am)
383{
384 my_api_main = am;
385}
386
Klement Sekera58eb8662017-06-09 06:06:49 +0200387#endif /* included_api_common_h */
388
389/*
390 * fd.io coding-style-patch-verification: ON
391 *
392 * Local Variables:
393 * eval: (c-set-style "gnu")
394 * End:
395 */