Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 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 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 23 | /** \file API common definitions |
| 24 | * See api_doc.md for more info |
| 25 | */ |
| 26 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 27 | #include <vppinfra/clib_error.h> |
| 28 | #include <svm/svm_common.h> |
| 29 | #include <vlibmemory/unix_shared_memory_queue.h> |
| 30 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 31 | /** API registration types |
| 32 | */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 33 | typedef enum |
| 34 | { |
| 35 | REGISTRATION_TYPE_FREE = 0, |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 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 */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 40 | } vl_registration_type_t; |
| 41 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 42 | /** An API client registration, only in vpp/vlib */ |
| 43 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 44 | typedef struct vl_api_registration_ |
| 45 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 46 | vl_registration_type_t registration_type; /**< type */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 47 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 48 | /** Index in VLIB's brain (not shared memory). */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 49 | u32 vl_api_registration_pool_index; |
| 50 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 51 | u8 *name; /**< Client name */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 52 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 53 | /** shared memory only: pointer to client input queue */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 54 | unix_shared_memory_queue_t *vl_input_queue; |
| 55 | |
| 56 | /* socket server and client */ |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 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 */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 61 | |
| 62 | /* socket client only */ |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 63 | u32 server_handle; /**< Socket client only: server handle */ |
| 64 | u32 server_index; /**< Socket client only: server index */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 65 | } vl_api_registration_t; |
| 66 | |
| 67 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 68 | /** Trace configuration for a single message */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 69 | typedef struct |
| 70 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 71 | int size; /**< for sanity checking */ |
| 72 | int trace_enable; /**< trace this message */ |
| 73 | int replay_enable; /**< This message can be replayed */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 74 | } trace_cfg_t; |
| 75 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 76 | /** |
| 77 | * API trace state |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 78 | */ |
| 79 | typedef struct |
| 80 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 81 | u8 endian; /**< trace endianness */ |
| 82 | u8 enabled; /**< trace is enabled */ |
| 83 | u8 wrapped; /**< trace has wrapped */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 84 | u8 pad; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 85 | u32 nitems; /**< Number of trace records */ |
| 86 | u32 curindex; /**< Current index in circular buffer */ |
| 87 | u8 **traces; /**< Trace ring */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 88 | } vl_api_trace_t; |
| 89 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 90 | /** Trace RX / TX enum */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 91 | typedef enum |
| 92 | { |
| 93 | VL_API_TRACE_TX, |
| 94 | VL_API_TRACE_RX, |
| 95 | } vl_api_trace_which_t; |
| 96 | |
| 97 | #define VL_API_LITTLE_ENDIAN 0x00 |
| 98 | #define VL_API_BIG_ENDIAN 0x01 |
| 99 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 100 | /** Message range (belonging to a plugin) */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 101 | typedef struct |
| 102 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 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 */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 106 | } vl_api_msg_range_t; |
| 107 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 108 | /** Message configuration definition */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 109 | typedef struct |
| 110 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 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? */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 123 | } vl_msg_api_msg_config_t; |
| 124 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 125 | /** Message header structure */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 126 | typedef struct msgbuf_ |
| 127 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 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 */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 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_config (vl_msg_api_msg_config_t *); |
| 148 | void vl_msg_api_set_cleanup_handler (int msg_id, void *fp); |
| 149 | void vl_msg_api_queue_handler (unix_shared_memory_queue_t * q); |
| 150 | |
| 151 | void vl_msg_api_barrier_sync (void) __attribute__ ((weak)); |
| 152 | void vl_msg_api_barrier_release (void) __attribute__ ((weak)); |
Colin Tregenza Dancer | eb1ac17 | 2017-09-06 20:23:24 +0100 | [diff] [blame] | 153 | #ifdef BARRIER_TRACING |
| 154 | void vl_msg_api_barrier_trace_context (const char *context) |
| 155 | __attribute__ ((weak)); |
| 156 | #else |
| 157 | #define vl_msg_api_barrier_trace_context(X) |
| 158 | #endif |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 159 | void vl_msg_api_free (void *); |
| 160 | void vl_noop_handler (void *mp); |
| 161 | void vl_msg_api_increment_missing_client_counter (void); |
| 162 | void vl_msg_api_post_mortem_dump (void); |
| 163 | void vl_msg_api_post_mortem_dump_enable_disable (int enable); |
| 164 | void vl_msg_api_register_pd_handler (void *handler, |
| 165 | u16 msg_id_host_byte_order); |
| 166 | int vl_msg_api_pd_handler (void *mp, int rv); |
| 167 | |
| 168 | void vl_msg_api_set_first_available_msg_id (u16 first_avail); |
| 169 | u16 vl_msg_api_get_msg_ids (const char *name, int n); |
| 170 | u32 vl_api_get_msg_index (u8 * name_and_crc); |
| 171 | |
| 172 | typedef clib_error_t *(vl_msg_api_init_function_t) (u32 client_index); |
| 173 | |
| 174 | typedef struct _vl_msg_api_init_function_list_elt |
| 175 | { |
| 176 | struct _vl_msg_api_init_function_list_elt *next_init_function; |
| 177 | vl_msg_api_init_function_t *f; |
| 178 | } _vl_msg_api_function_list_elt_t; |
| 179 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 180 | /** API main structure, used by both vpp and binary API clients */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 181 | typedef struct |
| 182 | { |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 183 | /** Message handler vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 184 | void (**msg_handlers) (void *); |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 185 | /** Plaform-dependent (aka hardware) message handler vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 186 | int (**pd_msg_handlers) (void *, int); |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 187 | |
| 188 | /** non-default message cleanup handler vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 189 | void (**msg_cleanup_handlers) (void *); |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 190 | |
| 191 | /** Message endian handler vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 192 | void (**msg_endian_handlers) (void *); |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 193 | |
| 194 | /** Message print function vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 195 | void (**msg_print_handlers) (void *, void *); |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 196 | |
| 197 | /** Message name vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 198 | const char **msg_names; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 199 | |
| 200 | /** Don't automatically free message buffer vetor */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 201 | u8 *message_bounce; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 202 | |
| 203 | /** Message is mp safe vector */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 204 | u8 *is_mp_safe; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 205 | |
| 206 | /** Allocator ring vectors (in shared memory) */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 207 | struct ring_alloc_ *arings; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 208 | |
| 209 | /** Number of times that the ring allocator failed */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 210 | u32 ring_misses; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 211 | |
| 212 | /** Number of garbage-collected message buffers */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 213 | u32 garbage_collects; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 214 | |
| 215 | /** Number of missing clients / failed message sends */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 216 | u32 missing_clients; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 217 | |
| 218 | /** Received message trace configuration */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 219 | vl_api_trace_t *rx_trace; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 220 | |
| 221 | /** Sent message trace configuration */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 222 | vl_api_trace_t *tx_trace; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 223 | |
| 224 | /** Print every received message */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 225 | int msg_print_flag; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 226 | |
| 227 | /** Current trace configuration */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 228 | trace_cfg_t *api_trace_cfg; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 229 | |
| 230 | /** Current process PID */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 231 | int our_pid; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 232 | |
| 233 | /** Binary api segment descriptor */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 234 | svm_region_t *vlib_rp; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 235 | |
| 236 | /** Vector of all mapped shared-VM segments */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 237 | svm_region_t **mapped_shmem_regions; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 238 | |
| 239 | /** Binary API shared-memory segment header pointer */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 240 | struct vl_shmem_hdr_ *shmem_hdr; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 241 | |
| 242 | /** vlib/vpp only: vector of client registrations */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 243 | vl_api_registration_t **vl_clients; |
| 244 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 245 | /** vlib/vpp only: serialized (message, name, crc) table */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 246 | u8 *serialized_message_table_in_shmem; |
| 247 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 248 | /** First available message ID, for theplugin msg allocator */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 249 | u16 first_available_msg_id; |
| 250 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 251 | /** Message range by name hash */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 252 | uword *msg_range_by_name; |
| 253 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 254 | /** vector of message ranges */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 255 | vl_api_msg_range_t *msg_ranges; |
| 256 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 257 | /** uid for the api shared memory region */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 258 | int api_uid; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 259 | |
| 260 | /** gid for the api shared memory region */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 261 | int api_gid; |
| 262 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 263 | /** base virtual address for global VM region */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 264 | u64 global_baseva; |
| 265 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 266 | /** size of the global VM region */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 267 | u64 global_size; |
| 268 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 269 | /** size of the API region */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 270 | u64 api_size; |
| 271 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 272 | /** size of the global VM private mheap */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 273 | u64 global_pvt_heap_size; |
| 274 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 275 | /** size of the api private mheap */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 276 | u64 api_pvt_heap_size; |
| 277 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 278 | /** Peer input queue pointer */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 279 | unix_shared_memory_queue_t *vl_input_queue; |
| 280 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 281 | /** |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 282 | * All VLIB-side message handlers use my_client_index to identify |
| 283 | * the queue / client. This works in sim replay. |
| 284 | */ |
| 285 | int my_client_index; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 286 | /** |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 287 | * This is the (shared VM) address of the registration, |
| 288 | * don't use it to id the connection since it can't possibly |
| 289 | * work in simulator replay. |
| 290 | */ |
| 291 | vl_api_registration_t *my_registration; |
| 292 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 293 | /** (Historical) signal-based queue non-empty signal, to be removed */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 294 | i32 vlib_signal; |
| 295 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 296 | /** vpp/vlib input queue length */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 297 | u32 vlib_input_queue_length; |
| 298 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 299 | /** client message index hash table */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 300 | uword *msg_index_by_name_and_crc; |
| 301 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 302 | /** Shared VM binary API region name */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 303 | const char *region_name; |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 304 | |
| 305 | /** Chroot path to the shared memory API files */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 306 | const char *root_path; |
| 307 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 308 | /** Replay in progress? */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 309 | int replay_in_progress; |
| 310 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 311 | /** Dump (msg-name, crc) snapshot here at startup */ |
Dave Barach | 49fe046 | 2017-09-12 17:06:56 -0400 | [diff] [blame] | 312 | u8 *save_msg_table_filename; |
| 313 | |
Dave Barach | 905c14a | 2017-09-25 08:47:59 -0400 | [diff] [blame^] | 314 | /** List of API client reaper functions */ |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 315 | _vl_msg_api_function_list_elt_t *reaper_function_registrations; |
| 316 | |
| 317 | } api_main_t; |
| 318 | |
| 319 | extern api_main_t api_main; |
| 320 | |
Klement Sekera | 58eb866 | 2017-06-09 06:06:49 +0200 | [diff] [blame] | 321 | #endif /* included_api_common_h */ |
| 322 | |
| 323 | /* |
| 324 | * fd.io coding-style-patch-verification: ON |
| 325 | * |
| 326 | * Local Variables: |
| 327 | * eval: (c-set-style "gnu") |
| 328 | * End: |
| 329 | */ |