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