blob: 3d55e2acdd612d31cc1a58be40f7e8fdc9ddb1e7 [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>
28#include <svm/svm_common.h>
Florin Corase86a8ed2018-01-05 03:20:25 -080029#include <svm/queue.h>
Klement Sekera58eb8662017-06-09 06:06:49 +020030
Dave Barach905c14a2017-09-25 08:47:59 -040031/** API registration types
32 */
Klement Sekera58eb8662017-06-09 06:06:49 +020033typedef enum
34{
35 REGISTRATION_TYPE_FREE = 0,
Dave Barach905c14a2017-09-25 08:47:59 -040036 REGISTRATION_TYPE_SHMEM, /**< Shared memory connection */
37 REGISTRATION_TYPE_SOCKET_LISTEN, /**< Socket listener */
38 REGISTRATION_TYPE_SOCKET_SERVER, /**< Socket server */
39 REGISTRATION_TYPE_SOCKET_CLIENT, /**< Socket client */
Klement Sekera58eb8662017-06-09 06:06:49 +020040} vl_registration_type_t;
41
Dave Barach905c14a2017-09-25 08:47:59 -040042/** An API client registration, only in vpp/vlib */
43
Klement Sekera58eb8662017-06-09 06:06:49 +020044typedef struct vl_api_registration_
45{
Dave Barach905c14a2017-09-25 08:47:59 -040046 vl_registration_type_t registration_type; /**< type */
Klement Sekera58eb8662017-06-09 06:06:49 +020047
Dave Barach905c14a2017-09-25 08:47:59 -040048 /** Index in VLIB's brain (not shared memory). */
Klement Sekera58eb8662017-06-09 06:06:49 +020049 u32 vl_api_registration_pool_index;
50
Dave Barach905c14a2017-09-25 08:47:59 -040051 u8 *name; /**< Client name */
Klement Sekera58eb8662017-06-09 06:06:49 +020052
Dave Barach59b25652017-09-10 15:04:27 -040053 /* Zombie apocalypse checking */
54 f64 last_heard;
55 int last_queue_head;
56 int unanswered_pings;
57
Dave Barach905c14a2017-09-25 08:47:59 -040058 /** shared memory only: pointer to client input queue */
Florin Corase86a8ed2018-01-05 03:20:25 -080059 svm_queue_t *vl_input_queue;
Dave Barach59b25652017-09-10 15:04:27 -040060 svm_region_t *vlib_rp;
61 void *shmem_hdr;
Klement Sekera58eb8662017-06-09 06:06:49 +020062
63 /* socket server and client */
Dave Barach905c14a2017-09-25 08:47:59 -040064 u32 clib_file_index; /**< Socket only: file index */
65 i8 *unprocessed_input; /**< Socket only: pending input */
66 u32 unprocessed_msg_length; /**< Socket only: unprocssed length */
67 u8 *output_vector; /**< Socket only: output vecto */
Dave Barach59b25652017-09-10 15:04:27 -040068 int *additional_fds_to_close;
Klement Sekera58eb8662017-06-09 06:06:49 +020069
70 /* socket client only */
Dave Barach905c14a2017-09-25 08:47:59 -040071 u32 server_handle; /**< Socket client only: server handle */
72 u32 server_index; /**< Socket client only: server index */
Klement Sekera58eb8662017-06-09 06:06:49 +020073} vl_api_registration_t;
74
Florin Corasb384b542018-01-15 01:08:33 -080075#define VL_API_INVALID_FI ((u32)~0)
Klement Sekera58eb8662017-06-09 06:06:49 +020076
Dave Barach905c14a2017-09-25 08:47:59 -040077/** Trace configuration for a single message */
Klement Sekera58eb8662017-06-09 06:06:49 +020078typedef struct
79{
Dave Barach905c14a2017-09-25 08:47:59 -040080 int size; /**< for sanity checking */
81 int trace_enable; /**< trace this message */
82 int replay_enable; /**< This message can be replayed */
Klement Sekera58eb8662017-06-09 06:06:49 +020083} trace_cfg_t;
84
Dave Barach905c14a2017-09-25 08:47:59 -040085/**
86 * API trace state
Klement Sekera58eb8662017-06-09 06:06:49 +020087 */
88typedef struct
89{
Dave Barach905c14a2017-09-25 08:47:59 -040090 u8 endian; /**< trace endianness */
91 u8 enabled; /**< trace is enabled */
92 u8 wrapped; /**< trace has wrapped */
Klement Sekera58eb8662017-06-09 06:06:49 +020093 u8 pad;
Dave Barach905c14a2017-09-25 08:47:59 -040094 u32 nitems; /**< Number of trace records */
95 u32 curindex; /**< Current index in circular buffer */
96 u8 **traces; /**< Trace ring */
Klement Sekera58eb8662017-06-09 06:06:49 +020097} vl_api_trace_t;
98
Dave Barach905c14a2017-09-25 08:47:59 -040099/** Trace RX / TX enum */
Klement Sekera58eb8662017-06-09 06:06:49 +0200100typedef enum
101{
102 VL_API_TRACE_TX,
103 VL_API_TRACE_RX,
104} vl_api_trace_which_t;
105
106#define VL_API_LITTLE_ENDIAN 0x00
107#define VL_API_BIG_ENDIAN 0x01
108
Dave Barach905c14a2017-09-25 08:47:59 -0400109/** Message range (belonging to a plugin) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200110typedef struct
111{
Dave Barach905c14a2017-09-25 08:47:59 -0400112 u8 *name; /**< name of the plugin */
113 u16 first_msg_id; /**< first assigned message ID */
114 u16 last_msg_id; /**< last assigned message ID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200115} vl_api_msg_range_t;
116
Dave Barach905c14a2017-09-25 08:47:59 -0400117/** Message configuration definition */
Klement Sekera58eb8662017-06-09 06:06:49 +0200118typedef struct
119{
Dave Barach905c14a2017-09-25 08:47:59 -0400120 int id; /**< the message ID */
121 char *name; /**< the message name */
122 u32 crc; /**< message definition CRC */
123 void *handler; /**< the message handler */
124 void *cleanup; /**< non-default message cleanup handler */
125 void *endian; /**< message endian function */
126 void *print; /**< message print function */
127 int size; /**< message size */
128 int traced; /**< is this message to be traced? */
129 int replay; /**< is this message to be replayed? */
130 int message_bounce; /**< do not free message after processing */
131 int is_mp_safe; /**< worker thread barrier required? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200132} vl_msg_api_msg_config_t;
133
Dave Barach905c14a2017-09-25 08:47:59 -0400134/** Message header structure */
Klement Sekera58eb8662017-06-09 06:06:49 +0200135typedef struct msgbuf_
136{
Florin Corase86a8ed2018-01-05 03:20:25 -0800137 svm_queue_t *q; /**< message allocated in this shmem ring */
Dave Barach905c14a2017-09-25 08:47:59 -0400138 u32 data_len; /**< message length not including header */
139 u32 gc_mark_timestamp; /**< message garbage collector mark TS */
140 u8 data[0]; /**< actual message begins here */
Klement Sekera58eb8662017-06-09 06:06:49 +0200141} msgbuf_t;
142
143/* api_shared.c prototypes */
144void vl_msg_api_handler (void *the_msg);
145void vl_msg_api_handler_no_free (void *the_msg);
146void vl_msg_api_handler_no_trace_no_free (void *the_msg);
147void vl_msg_api_trace_only (void *the_msg);
148void vl_msg_api_cleanup_handler (void *the_msg);
149void vl_msg_api_replay_handler (void *the_msg);
150void vl_msg_api_socket_handler (void *the_msg);
151void vl_msg_api_set_handlers (int msg_id, char *msg_name,
152 void *handler,
153 void *cleanup,
154 void *endian,
155 void *print, int msg_size, int traced);
Matej Perina75a17ec2017-09-21 17:03:27 +0200156void vl_msg_api_clean_handlers (int msg_id);
Klement Sekera58eb8662017-06-09 06:06:49 +0200157void vl_msg_api_config (vl_msg_api_msg_config_t *);
158void vl_msg_api_set_cleanup_handler (int msg_id, void *fp);
Florin Corase86a8ed2018-01-05 03:20:25 -0800159void vl_msg_api_queue_handler (svm_queue_t * q);
Klement Sekera58eb8662017-06-09 06:06:49 +0200160
161void vl_msg_api_barrier_sync (void) __attribute__ ((weak));
162void vl_msg_api_barrier_release (void) __attribute__ ((weak));
Colin Tregenza Dancereb1ac172017-09-06 20:23:24 +0100163#ifdef BARRIER_TRACING
164void vl_msg_api_barrier_trace_context (const char *context)
165 __attribute__ ((weak));
166#else
167#define vl_msg_api_barrier_trace_context(X)
168#endif
Klement Sekera58eb8662017-06-09 06:06:49 +0200169void vl_msg_api_free (void *);
170void vl_noop_handler (void *mp);
171void vl_msg_api_increment_missing_client_counter (void);
172void vl_msg_api_post_mortem_dump (void);
173void vl_msg_api_post_mortem_dump_enable_disable (int enable);
174void vl_msg_api_register_pd_handler (void *handler,
175 u16 msg_id_host_byte_order);
176int vl_msg_api_pd_handler (void *mp, int rv);
177
178void vl_msg_api_set_first_available_msg_id (u16 first_avail);
179u16 vl_msg_api_get_msg_ids (const char *name, int n);
Florin Corase86a8ed2018-01-05 03:20:25 -0800180u32 vl_msg_api_get_msg_index (u8 * name_and_crc);
Klement Sekera58eb8662017-06-09 06:06:49 +0200181
182typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index);
183
184typedef struct _vl_msg_api_init_function_list_elt
185{
186 struct _vl_msg_api_init_function_list_elt *next_init_function;
187 vl_msg_api_init_function_t *f;
188} _vl_msg_api_function_list_elt_t;
189
Dave Barach0d056e52017-09-28 15:11:16 -0400190typedef struct
191{
192 u32 major;
193 u32 minor;
194 u32 patch;
195 char name[64];
196} api_version_t;
197
Dave Barach905c14a2017-09-25 08:47:59 -0400198/** API main structure, used by both vpp and binary API clients */
Klement Sekera58eb8662017-06-09 06:06:49 +0200199typedef struct
200{
Dave Barach905c14a2017-09-25 08:47:59 -0400201 /** Message handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200202 void (**msg_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400203 /** Plaform-dependent (aka hardware) message handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200204 int (**pd_msg_handlers) (void *, int);
Dave Barach905c14a2017-09-25 08:47:59 -0400205
206 /** non-default message cleanup handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200207 void (**msg_cleanup_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400208
209 /** Message endian handler vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200210 void (**msg_endian_handlers) (void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400211
212 /** Message print function vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200213 void (**msg_print_handlers) (void *, void *);
Dave Barach905c14a2017-09-25 08:47:59 -0400214
215 /** Message name vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200216 const char **msg_names;
Dave Barach905c14a2017-09-25 08:47:59 -0400217
218 /** Don't automatically free message buffer vetor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200219 u8 *message_bounce;
Dave Barach905c14a2017-09-25 08:47:59 -0400220
221 /** Message is mp safe vector */
Klement Sekera58eb8662017-06-09 06:06:49 +0200222 u8 *is_mp_safe;
Dave Barach905c14a2017-09-25 08:47:59 -0400223
224 /** Allocator ring vectors (in shared memory) */
Klement Sekera58eb8662017-06-09 06:06:49 +0200225 struct ring_alloc_ *arings;
Dave Barach905c14a2017-09-25 08:47:59 -0400226
227 /** Number of times that the ring allocator failed */
Klement Sekera58eb8662017-06-09 06:06:49 +0200228 u32 ring_misses;
Dave Barach905c14a2017-09-25 08:47:59 -0400229
230 /** Number of garbage-collected message buffers */
Klement Sekera58eb8662017-06-09 06:06:49 +0200231 u32 garbage_collects;
Dave Barach905c14a2017-09-25 08:47:59 -0400232
233 /** Number of missing clients / failed message sends */
Klement Sekera58eb8662017-06-09 06:06:49 +0200234 u32 missing_clients;
Dave Barach905c14a2017-09-25 08:47:59 -0400235
236 /** Received message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200237 vl_api_trace_t *rx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400238
239 /** Sent message trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200240 vl_api_trace_t *tx_trace;
Dave Barach905c14a2017-09-25 08:47:59 -0400241
242 /** Print every received message */
Klement Sekera58eb8662017-06-09 06:06:49 +0200243 int msg_print_flag;
Dave Barach905c14a2017-09-25 08:47:59 -0400244
245 /** Current trace configuration */
Klement Sekera58eb8662017-06-09 06:06:49 +0200246 trace_cfg_t *api_trace_cfg;
Dave Barach905c14a2017-09-25 08:47:59 -0400247
248 /** Current process PID */
Klement Sekera58eb8662017-06-09 06:06:49 +0200249 int our_pid;
Dave Barach905c14a2017-09-25 08:47:59 -0400250
Dave Barach7939f902017-10-04 10:03:52 -0400251 /** Current binary api segment descriptor */
Klement Sekera58eb8662017-06-09 06:06:49 +0200252 svm_region_t *vlib_rp;
Dave Barach905c14a2017-09-25 08:47:59 -0400253
Dave Barach7939f902017-10-04 10:03:52 -0400254 /** Primary api segment descriptor */
255 svm_region_t *vlib_primary_rp;
256
Dave Barach905c14a2017-09-25 08:47:59 -0400257 /** Vector of all mapped shared-VM segments */
Dave Barach59b25652017-09-10 15:04:27 -0400258 svm_region_t **vlib_private_rps;
Klement Sekera58eb8662017-06-09 06:06:49 +0200259 svm_region_t **mapped_shmem_regions;
Dave Barach905c14a2017-09-25 08:47:59 -0400260
261 /** Binary API shared-memory segment header pointer */
Klement Sekera58eb8662017-06-09 06:06:49 +0200262 struct vl_shmem_hdr_ *shmem_hdr;
Dave Barach905c14a2017-09-25 08:47:59 -0400263
264 /** vlib/vpp only: vector of client registrations */
Klement Sekera58eb8662017-06-09 06:06:49 +0200265 vl_api_registration_t **vl_clients;
266
Dave Barach905c14a2017-09-25 08:47:59 -0400267 /** vlib/vpp only: serialized (message, name, crc) table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200268 u8 *serialized_message_table_in_shmem;
269
Dave Barach905c14a2017-09-25 08:47:59 -0400270 /** First available message ID, for theplugin msg allocator */
Klement Sekera58eb8662017-06-09 06:06:49 +0200271 u16 first_available_msg_id;
272
Dave Barach905c14a2017-09-25 08:47:59 -0400273 /** Message range by name hash */
Klement Sekera58eb8662017-06-09 06:06:49 +0200274 uword *msg_range_by_name;
275
Dave Barach905c14a2017-09-25 08:47:59 -0400276 /** vector of message ranges */
Klement Sekera58eb8662017-06-09 06:06:49 +0200277 vl_api_msg_range_t *msg_ranges;
278
Dave Barach905c14a2017-09-25 08:47:59 -0400279 /** uid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200280 int api_uid;
Dave Barach905c14a2017-09-25 08:47:59 -0400281
282 /** gid for the api shared memory region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200283 int api_gid;
284
Dave Barach905c14a2017-09-25 08:47:59 -0400285 /** base virtual address for global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200286 u64 global_baseva;
287
Dave Barach905c14a2017-09-25 08:47:59 -0400288 /** size of the global VM region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200289 u64 global_size;
290
Dave Barach905c14a2017-09-25 08:47:59 -0400291 /** size of the API region */
Klement Sekera58eb8662017-06-09 06:06:49 +0200292 u64 api_size;
293
Dave Barach905c14a2017-09-25 08:47:59 -0400294 /** size of the global VM private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200295 u64 global_pvt_heap_size;
296
Dave Barach905c14a2017-09-25 08:47:59 -0400297 /** size of the api private mheap */
Klement Sekera58eb8662017-06-09 06:06:49 +0200298 u64 api_pvt_heap_size;
299
Dave Barach905c14a2017-09-25 08:47:59 -0400300 /** Peer input queue pointer */
Florin Corase86a8ed2018-01-05 03:20:25 -0800301 svm_queue_t *vl_input_queue;
Klement Sekera58eb8662017-06-09 06:06:49 +0200302
Dave Barach905c14a2017-09-25 08:47:59 -0400303 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200304 * All VLIB-side message handlers use my_client_index to identify
305 * the queue / client. This works in sim replay.
306 */
307 int my_client_index;
Dave Barach905c14a2017-09-25 08:47:59 -0400308 /**
Klement Sekera58eb8662017-06-09 06:06:49 +0200309 * This is the (shared VM) address of the registration,
310 * don't use it to id the connection since it can't possibly
311 * work in simulator replay.
312 */
313 vl_api_registration_t *my_registration;
314
Dave Barach905c14a2017-09-25 08:47:59 -0400315 /** (Historical) signal-based queue non-empty signal, to be removed */
Klement Sekera58eb8662017-06-09 06:06:49 +0200316 i32 vlib_signal;
317
Dave Barach905c14a2017-09-25 08:47:59 -0400318 /** vpp/vlib input queue length */
Klement Sekera58eb8662017-06-09 06:06:49 +0200319 u32 vlib_input_queue_length;
320
Dave Barach905c14a2017-09-25 08:47:59 -0400321 /** client message index hash table */
Klement Sekera58eb8662017-06-09 06:06:49 +0200322 uword *msg_index_by_name_and_crc;
323
Dave Barach0d056e52017-09-28 15:11:16 -0400324 /** api version list */
325 api_version_t *api_version_list;
326
Dave Barach905c14a2017-09-25 08:47:59 -0400327 /** Shared VM binary API region name */
Klement Sekera58eb8662017-06-09 06:06:49 +0200328 const char *region_name;
Dave Barach905c14a2017-09-25 08:47:59 -0400329
330 /** Chroot path to the shared memory API files */
Klement Sekera58eb8662017-06-09 06:06:49 +0200331 const char *root_path;
332
Dave Barach905c14a2017-09-25 08:47:59 -0400333 /** Replay in progress? */
Klement Sekera58eb8662017-06-09 06:06:49 +0200334 int replay_in_progress;
335
Dave Barach905c14a2017-09-25 08:47:59 -0400336 /** Dump (msg-name, crc) snapshot here at startup */
Dave Barach49fe0462017-09-12 17:06:56 -0400337 u8 *save_msg_table_filename;
338
Dave Barach905c14a2017-09-25 08:47:59 -0400339 /** List of API client reaper functions */
Klement Sekera58eb8662017-06-09 06:06:49 +0200340 _vl_msg_api_function_list_elt_t *reaper_function_registrations;
341
342} api_main_t;
343
344extern api_main_t api_main;
345
Klement Sekera58eb8662017-06-09 06:06:49 +0200346#endif /* included_api_common_h */
347
348/*
349 * fd.io coding-style-patch-verification: ON
350 *
351 * Local Variables:
352 * eval: (c-set-style "gnu")
353 * End:
354 */