FD.io VPP  v18.07-rc0-415-g6c78436
Vector Packet Processing
api_common.h
Go to the documentation of this file.
1 /*
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 
23 /** \file API common definitions
24  * See api_doc.md for more info
25  */
26 
27 #include <vppinfra/clib_error.h>
28 #include <svm/svm_common.h>
29 #include <svm/queue.h>
30 
31 /** API registration types
32  */
33 typedef enum
34 {
36  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 */
41 
42 /** An API client registration, only in vpp/vlib */
43 
44 typedef struct vl_api_registration_
45 {
46  vl_registration_type_t registration_type; /**< type */
47 
48  /** Index in VLIB's brain (not shared memory). */
50 
51  u8 *name; /**< Client name */
52 
53  /* Zombie apocalypse checking */
57 
58  /** shared memory only: pointer to client input queue */
61  void *shmem_hdr;
62 
63  /* socket server and client */
64  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 */
69 
70  /* socket client only */
71  u32 server_handle; /**< Socket client only: server handle */
72  u32 server_index; /**< Socket client only: server index */
74 
75 #define VL_API_INVALID_FI ((u32)~0)
76 
77 /** Trace configuration for a single message */
78 typedef struct
79 {
80  int size; /**< for sanity checking */
81  int trace_enable; /**< trace this message */
82  int replay_enable; /**< This message can be replayed */
83 } trace_cfg_t;
84 
85 /**
86  * API trace state
87  */
88 typedef struct
89 {
90  u8 endian; /**< trace endianness */
91  u8 enabled; /**< trace is enabled */
92  u8 wrapped; /**< trace has wrapped */
94  u32 nitems; /**< Number of trace records */
95  u32 curindex; /**< Current index in circular buffer */
96  u8 **traces; /**< Trace ring */
98 
99 /** Trace RX / TX enum */
100 typedef enum
101 {
105 
106 #define VL_API_LITTLE_ENDIAN 0x00
107 #define VL_API_BIG_ENDIAN 0x01
108 
109 /** Message range (belonging to a plugin) */
110 typedef struct
111 {
112  u8 *name; /**< name of the plugin */
113  u16 first_msg_id; /**< first assigned message ID */
114  u16 last_msg_id; /**< last assigned message ID */
116 
117 /** Message configuration definition */
118 typedef struct
119 {
120  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? */
133 
134 /** Message header structure */
135 typedef struct msgbuf_
136 {
137  svm_queue_t *q; /**< message allocated in this shmem ring */
138  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 */
141 } msgbuf_t;
142 
143 /* api_shared.c prototypes */
144 void vl_msg_api_handler (void *the_msg);
145 void vl_msg_api_handler_no_free (void *the_msg);
146 void vl_msg_api_handler_no_trace_no_free (void *the_msg);
147 void vl_msg_api_trace_only (void *the_msg);
148 void vl_msg_api_cleanup_handler (void *the_msg);
149 void vl_msg_api_replay_handler (void *the_msg);
150 void vl_msg_api_socket_handler (void *the_msg);
151 void 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);
156 void vl_msg_api_clean_handlers (int msg_id);
158 void vl_msg_api_set_cleanup_handler (int msg_id, void *fp);
160 
161 void vl_msg_api_barrier_sync (void) __attribute__ ((weak));
162 void vl_msg_api_barrier_release (void) __attribute__ ((weak));
163 #ifdef BARRIER_TRACING
164 void 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
169 void vl_msg_api_free (void *);
170 void vl_noop_handler (void *mp);
172 void vl_msg_api_post_mortem_dump (void);
174 void vl_msg_api_register_pd_handler (void *handler,
175  u16 msg_id_host_byte_order);
176 int vl_msg_api_pd_handler (void *mp, int rv);
177 
178 void vl_msg_api_set_first_available_msg_id (u16 first_avail);
179 u16 vl_msg_api_get_msg_ids (const char *name, int n);
180 u32 vl_msg_api_get_msg_index (u8 * name_and_crc);
181 void *vl_msg_push_heap (void);
182 void vl_msg_pop_heap (void *oldheap);
183 
184 typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index);
185 
186 typedef struct _vl_msg_api_init_function_list_elt
187 {
188  struct _vl_msg_api_init_function_list_elt *next_init_function;
190 } _vl_msg_api_function_list_elt_t;
191 
192 typedef struct
193 {
197  char name[64];
198 } api_version_t;
199 
200 /** API main structure, used by both vpp and binary API clients */
201 typedef struct
202 {
203  /** Message handler vector */
204  void (**msg_handlers) (void *);
205  /** Plaform-dependent (aka hardware) message handler vector */
206  int (**pd_msg_handlers) (void *, int);
207 
208  /** non-default message cleanup handler vector */
209  void (**msg_cleanup_handlers) (void *);
210 
211  /** Message endian handler vector */
212  void (**msg_endian_handlers) (void *);
213 
214  /** Message print function vector */
215  void (**msg_print_handlers) (void *, void *);
216 
217  /** Message name vector */
218  const char **msg_names;
219 
220  /** Don't automatically free message buffer vetor */
222 
223  /** Message is mp safe vector */
225 
226  /** Allocator ring vectors (in shared memory) */
228 
229  /** Number of times that the ring allocator failed */
231 
232  /** Number of garbage-collected message buffers */
234 
235  /** Number of missing clients / failed message sends */
237 
238  /** Received message trace configuration */
240 
241  /** Sent message trace configuration */
243 
244  /** Print every received message */
246 
247  /** Current trace configuration */
249 
250  /** Current process PID */
251  int our_pid;
252 
253  /** Current binary api segment descriptor */
255 
256  /** Primary api segment descriptor */
258 
259  /** Vector of all mapped shared-VM segments */
262 
263  /** Binary API shared-memory segment header pointer */
265 
266  /** vlib/vpp only: vector of client registrations */
268 
269  /** vlib/vpp only: serialized (message, name, crc) table */
271 
272  /** First available message ID, for theplugin msg allocator */
274 
275  /** Message range by name hash */
277 
278  /** vector of message ranges */
280 
281  /** uid for the api shared memory region */
282  int api_uid;
283 
284  /** gid for the api shared memory region */
285  int api_gid;
286 
287  /** base virtual address for global VM region */
289 
290  /** size of the global VM region */
292 
293  /** size of the API region */
295 
296  /** size of the global VM private mheap */
298 
299  /** size of the api private mheap */
301 
302  /** Peer input queue pointer */
304 
305  /**
306  * All VLIB-side message handlers use my_client_index to identify
307  * the queue / client. This works in sim replay.
308  */
310  /**
311  * This is the (shared VM) address of the registration,
312  * don't use it to id the connection since it can't possibly
313  * work in simulator replay.
314  */
316 
317  /** (Historical) signal-based queue non-empty signal, to be removed */
319 
320  /** vpp/vlib input queue length */
322 
323  /** client message index hash table */
325 
326  /** api version list */
328 
329  /** Shared VM binary API region name */
330  const char *region_name;
331 
332  /** Chroot path to the shared memory API files */
333  const char *root_path;
334 
335  /** Replay in progress? */
337 
338  /** Dump (msg-name, crc) snapshot here at startup */
340 
341  /** List of API client reaper functions */
342  _vl_msg_api_function_list_elt_t *reaper_function_registrations;
343 
344 } api_main_t;
345 
346 extern api_main_t api_main;
347 
348 #endif /* included_api_common_h */
349 
350 /*
351  * fd.io coding-style-patch-verification: ON
352  *
353  * Local Variables:
354  * eval: (c-set-style "gnu")
355  * End:
356  */
Message range (belonging to a plugin)
Definition: api_common.h:110
u64 api_pvt_heap_size
size of the api private mheap
Definition: api_common.h:300
vl_registration_type_t
API registration types.
Definition: api_common.h:33
u8 * name
Client name.
Definition: api_common.h:51
void vl_msg_api_handler_no_trace_no_free(void *the_msg)
Definition: api_shared.c:568
int id
the message ID
Definition: api_common.h:120
u8 * name
name of the plugin
Definition: api_common.h:112
void vl_msg_api_socket_handler(void *the_msg)
Definition: api_shared.c:643
int vl_msg_api_pd_handler(void *mp, int rv)
Definition: api_shared.c:843
void * print
message print function
Definition: api_common.h:126
u64 api_size
size of the API region
Definition: api_common.h:294
u8 wrapped
trace has wrapped
Definition: api_common.h:92
int size
for sanity checking
Definition: api_common.h:80
unsigned long u64
Definition: types.h:89
int my_client_index
All VLIB-side message handlers use my_client_index to identify the queue / client.
Definition: api_common.h:309
u32 crc
message definition CRC
Definition: api_common.h:122
void vl_noop_handler(void *mp)
Definition: api_shared.c:780
u8 * message_bounce
Don&#39;t automatically free message buffer vetor.
Definition: api_common.h:221
void vl_msg_api_register_pd_handler(void *handler, u16 msg_id_host_byte_order)
Definition: api_shared.c:829
Message configuration definition.
Definition: api_common.h:118
u32 gc_mark_timestamp
message garbage collector mark TS
Definition: api_common.h:139
svm_region_t * vlib_primary_rp
Primary api segment descriptor.
Definition: api_common.h:257
void vl_msg_api_post_mortem_dump(void)
Definition: api_shared.c:794
api_version_t * api_version_list
api version list
Definition: api_common.h:327
int api_uid
uid for the api shared memory region
Definition: api_common.h:282
svm_queue_t * q
message allocated in this shmem ring
Definition: api_common.h:137
u32 server_index
Socket client only: server index.
Definition: api_common.h:72
#define vl_msg_api_barrier_trace_context(X)
Definition: api_common.h:167
struct msgbuf_ msgbuf_t
Message header structure.
svm_queue_t * vl_input_queue
Peer input queue pointer.
Definition: api_common.h:303
int api_gid
gid for the api shared memory region
Definition: api_common.h:285
void * cleanup
non-default message cleanup handler
Definition: api_common.h:124
unsigned char u8
Definition: types.h:56
trace_cfg_t * api_trace_cfg
Current trace configuration.
Definition: api_common.h:248
int size
message size
Definition: api_common.h:127
double f64
Definition: types.h:142
_vl_msg_api_function_list_elt_t * reaper_function_registrations
List of API client reaper functions.
Definition: api_common.h:342
void * vl_msg_push_heap(void)
Definition: api_shared.c:959
int our_pid
Current process PID.
Definition: api_common.h:251
u32 clib_file_index
Socket only: file index.
Definition: api_common.h:64
void * endian
message endian function
Definition: api_common.h:125
vl_api_registration_t * my_registration
This is the (shared VM) address of the registration, don&#39;t use it to id the connection since it can&#39;t...
Definition: api_common.h:315
vl_api_trace_t * rx_trace
Received message trace configuration.
Definition: api_common.h:239
void vl_msg_api_barrier_sync(void)
Definition: api_shared.c:383
u32 ring_misses
Number of times that the ring allocator failed.
Definition: api_common.h:230
vl_api_registration_t ** vl_clients
vlib/vpp only: vector of client registrations
Definition: api_common.h:267
void vl_msg_api_handler_no_free(void *the_msg)
Definition: threads.c:506
int replay_in_progress
Replay in progress?
Definition: api_common.h:336
const char * root_path
Chroot path to the shared memory API files.
Definition: api_common.h:333
svm_region_t * vlib_rp
Current binary api segment descriptor.
Definition: api_common.h:254
struct vl_shmem_hdr_ * shmem_hdr
Binary API shared-memory segment header pointer.
Definition: api_common.h:264
unsigned int u32
Definition: types.h:88
vl_registration_type_t registration_type
type
Definition: api_common.h:46
u16 last_msg_id
last assigned message ID
Definition: api_common.h:114
void vl_msg_pop_heap(void *oldheap)
Definition: api_shared.c:967
svm_queue_t * vl_input_queue
shared memory only: pointer to client input queue
Definition: api_common.h:59
void vl_msg_api_clean_handlers(int msg_id)
Definition: api_shared.c:735
int replay_enable
This message can be replayed.
Definition: api_common.h:82
unsigned short u16
Definition: types.h:57
void vl_msg_api_cleanup_handler(void *the_msg)
Definition: api_shared.c:596
int message_bounce
do not free message after processing
Definition: api_common.h:130
u32 curindex
Current index in circular buffer.
Definition: api_common.h:95
static void cleanup(void)
Definition: client.c:119
svm_region_t ** vlib_private_rps
Vector of all mapped shared-VM segments.
Definition: api_common.h:260
signed char i8
Definition: types.h:45
u32 unprocessed_msg_length
Socket only: unprocssed length.
Definition: api_common.h:66
void vl_msg_api_set_handlers(int msg_id, char *msg_name, void *handler, void *cleanup, void *endian, void *print, int msg_size, int traced)
Definition: api_shared.c:713
void vl_msg_api_replay_handler(void *the_msg)
Definition: api_shared.c:616
API main structure, used by both vpp and binary API clients.
Definition: api_common.h:201
void vl_msg_api_config(vl_msg_api_msg_config_t *)
Definition: api_shared.c:664
u64 global_size
size of the global VM region
Definition: api_common.h:291
u8 enabled
trace is enabled
Definition: api_common.h:91
An API client registration, only in vpp/vlib.
Definition: api_common.h:44
Shared memory connection.
Definition: api_common.h:36
API trace state.
Definition: api_common.h:88
u64 global_baseva
base virtual address for global VM region
Definition: api_common.h:288
vl_api_msg_range_t * msg_ranges
vector of message ranges
Definition: api_common.h:279
u32 vl_msg_api_get_msg_index(u8 *name_and_crc)
Definition: api_shared.c:944
u8 * output_vector
Socket only: output vecto.
Definition: api_common.h:67
u8 ** traces
Trace ring.
Definition: api_common.h:96
int * additional_fds_to_close
Definition: api_common.h:68
const char ** msg_names
Message name vector.
Definition: api_common.h:218
struct vl_api_registration_ vl_api_registration_t
An API client registration, only in vpp/vlib.
int replay
is this message to be replayed?
Definition: api_common.h:129
u8 * save_msg_table_filename
Dump (msg-name, crc) snapshot here at startup.
Definition: api_common.h:339
signed int i32
Definition: types.h:81
vl_api_trace_t * tx_trace
Sent message trace configuration.
Definition: api_common.h:242
u32 garbage_collects
Number of garbage-collected message buffers.
Definition: api_common.h:233
void vl_msg_api_trace_only(void *the_msg)
Definition: api_shared.c:585
u32 data_len
message length not including header
Definition: api_common.h:138
Message header structure.
Definition: api_common.h:135
vl_api_trace_which_t
Trace RX / TX enum.
Definition: api_common.h:100
u8 * serialized_message_table_in_shmem
vlib/vpp only: serialized (message, name, crc) table
Definition: api_common.h:270
void vl_msg_api_set_cleanup_handler(int msg_id, void *fp)
Definition: api_shared.c:747
u64 global_pvt_heap_size
size of the global VM private mheap
Definition: api_common.h:297
i8 * unprocessed_input
Socket only: pending input.
Definition: api_common.h:65
void vl_msg_api_queue_handler(svm_queue_t *q)
Definition: api_shared.c:757
struct ring_alloc_ * arings
Allocator ring vectors (in shared memory)
Definition: api_common.h:227
void vl_msg_api_free(void *)
i32 vlib_signal
(Historical) signal-based queue non-empty signal, to be removed
Definition: api_common.h:318
u32 missing_clients
Number of missing clients / failed message sends.
Definition: api_common.h:236
u16 first_msg_id
first assigned message ID
Definition: api_common.h:113
u64 uword
Definition: types.h:112
clib_error_t *( vl_msg_api_init_function_t)(u32 client_index)
Definition: api_common.h:184
u32 vl_api_registration_pool_index
Index in VLIB&#39;s brain (not shared memory).
Definition: api_common.h:49
struct _svm_queue svm_queue_t
u16 first_available_msg_id
First available message ID, for theplugin msg allocator.
Definition: api_common.h:273
u8 endian
trace endianness
Definition: api_common.h:90
u8 * is_mp_safe
Message is mp safe vector.
Definition: api_common.h:224
void vl_msg_api_increment_missing_client_counter(void)
Definition: api_shared.c:44
int trace_enable
trace this message
Definition: api_common.h:81
int msg_print_flag
Print every received message.
Definition: api_common.h:245
u32 server_handle
Socket client only: server handle.
Definition: api_common.h:71
int is_mp_safe
worker thread barrier required?
Definition: api_common.h:131
int traced
is this message to be traced?
Definition: api_common.h:128
const char * region_name
Shared VM binary API region name.
Definition: api_common.h:330
Trace configuration for a single message.
Definition: api_common.h:78
svm_region_t ** mapped_shmem_regions
Definition: api_common.h:261
uword * msg_index_by_name_and_crc
client message index hash table
Definition: api_common.h:324
void vl_msg_api_barrier_release(void)
Definition: api_shared.c:388
uword * msg_range_by_name
Message range by name hash.
Definition: api_common.h:276
char * name
the message name
Definition: api_common.h:121
api_main_t api_main
Definition: api_shared.c:35
void vl_msg_api_post_mortem_dump_enable_disable(int enable)
Definition: api_shared.c:788
u32 nitems
Number of trace records.
Definition: api_common.h:94
svm_region_t * vlib_rp
Definition: api_common.h:60
void vl_msg_api_set_first_available_msg_id(u16 first_avail)
Definition: api_shared.c:864
void * handler
the message handler
Definition: api_common.h:123
u32 vlib_input_queue_length
vpp/vlib input queue length
Definition: api_common.h:321
u16 vl_msg_api_get_msg_ids(const char *name, int n)
Definition: api_shared.c:872
void vl_msg_api_handler(void *the_msg)
Definition: api_shared.c:547