Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * api.h |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 4 | * |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 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_h |
| 21 | #define included_api_h |
| 22 | |
| 23 | #include <vppinfra/error.h> |
| 24 | #include <svm.h> |
| 25 | #include <vlib/vlib.h> |
| 26 | #include <vlibmemory/unix_shared_memory_queue.h> |
| 27 | #include <vlib/unix/unix.h> |
| 28 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 29 | typedef enum |
| 30 | { |
| 31 | REGISTRATION_TYPE_FREE = 0, |
| 32 | REGISTRATION_TYPE_SHMEM, |
| 33 | REGISTRATION_TYPE_SOCKET_LISTEN, |
| 34 | REGISTRATION_TYPE_SOCKET_SERVER, |
| 35 | REGISTRATION_TYPE_SOCKET_CLIENT, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 36 | } vl_registration_type_t; |
| 37 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 38 | typedef struct vl_api_registration_ |
| 39 | { |
| 40 | vl_registration_type_t registration_type; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 41 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 42 | /* Index in VLIB's brain (not shared memory). */ |
| 43 | u32 vl_api_registration_pool_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 44 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 45 | u8 *name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 46 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 47 | /* |
| 48 | * The following groups of data could be unioned, but my fingers are |
| 49 | * going to be sore enough. |
| 50 | */ |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 51 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 52 | /* shared memory only */ |
| 53 | unix_shared_memory_queue_t *vl_input_queue; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 54 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 55 | /* socket server and client */ |
| 56 | u32 unix_file_index; |
| 57 | i8 *unprocessed_input; |
| 58 | u32 unprocessed_msg_length; |
| 59 | u8 *output_vector; |
| 60 | |
| 61 | /* socket client only */ |
| 62 | u32 server_handle; |
| 63 | u32 server_index; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 64 | |
| 65 | } vl_api_registration_t; |
| 66 | |
| 67 | |
| 68 | /* Trace configuration for a single message */ |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 69 | typedef struct |
| 70 | { |
| 71 | int size; |
| 72 | int trace_enable; |
| 73 | int replay_enable; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 74 | } trace_cfg_t; |
| 75 | |
| 76 | /* |
| 77 | * API recording |
| 78 | */ |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 79 | typedef struct |
| 80 | { |
| 81 | u8 endian; |
| 82 | u8 enabled; |
| 83 | u8 wrapped; |
| 84 | u8 pad; |
| 85 | u32 nitems; |
| 86 | u32 curindex; |
| 87 | u8 **traces; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 88 | } vl_api_trace_t; |
| 89 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 90 | typedef CLIB_PACKED (struct |
| 91 | { |
| 92 | u8 endian; u8 wrapped; |
| 93 | u32 nitems; |
| 94 | }) vl_api_trace_file_header_t; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 95 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 96 | typedef enum |
| 97 | { |
| 98 | VL_API_TRACE_TX, |
| 99 | VL_API_TRACE_RX, |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 100 | } vl_api_trace_which_t; |
| 101 | |
| 102 | #define VL_API_LITTLE_ENDIAN 0x00 |
| 103 | #define VL_API_BIG_ENDIAN 0x01 |
| 104 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 105 | typedef struct |
| 106 | { |
| 107 | u8 *name; |
| 108 | u16 first_msg_id; |
| 109 | u16 last_msg_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 110 | } vl_api_msg_range_t; |
| 111 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 112 | typedef struct |
| 113 | { |
| 114 | void (**msg_handlers) (void *); |
| 115 | int (**pd_msg_handlers) (void *, int); |
| 116 | void (**msg_cleanup_handlers) (void *); |
| 117 | void (**msg_endian_handlers) (void *); |
| 118 | void (**msg_print_handlers) (void *, void *); |
| 119 | char **msg_names; |
| 120 | u8 *message_bounce; |
| 121 | u8 *is_mp_safe; |
| 122 | struct ring_alloc_ *arings; |
| 123 | u32 ring_misses; |
| 124 | u32 missing_clients; |
| 125 | vl_api_trace_t *rx_trace; |
| 126 | vl_api_trace_t *tx_trace; |
| 127 | int msg_print_flag; |
| 128 | trace_cfg_t *api_trace_cfg; |
| 129 | int our_pid; |
| 130 | svm_region_t *vlib_rp; |
| 131 | svm_region_t **mapped_shmem_regions; |
| 132 | struct vl_shmem_hdr_ *shmem_hdr; |
| 133 | vl_api_registration_t **vl_clients; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 134 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 135 | /* For plugin msg allocator */ |
| 136 | u16 first_available_msg_id; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 137 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 138 | /* message range by name hash */ |
| 139 | uword *msg_range_by_name; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 140 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 141 | /* vector of message ranges */ |
| 142 | vl_api_msg_range_t *msg_ranges; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 143 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 144 | /* gid for the api shared memory region */ |
| 145 | int api_gid; |
| 146 | int api_uid; |
Dave Barach | 16c75df | 2016-05-31 14:05:46 -0400 | [diff] [blame] | 147 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 148 | /* Client-only data structures */ |
| 149 | unix_shared_memory_queue_t *vl_input_queue; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 150 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 151 | /* |
| 152 | * All VLIB-side message handlers use my_client_index to identify |
| 153 | * the queue / client. This works in sim replay. |
| 154 | */ |
| 155 | int my_client_index; |
| 156 | /* |
| 157 | * This is the (shared VM) address of the registration, |
| 158 | * don't use it to id the connection since it can't possibly |
| 159 | * work in simulator replay. |
| 160 | */ |
| 161 | vl_api_registration_t *my_registration; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 162 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 163 | i32 vlib_signal; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 164 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 165 | char *region_name; |
| 166 | char *root_path; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 167 | } api_main_t; |
| 168 | |
| 169 | api_main_t api_main; |
| 170 | |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 171 | typedef struct |
| 172 | { |
| 173 | int id; |
| 174 | char *name; |
| 175 | void *handler; |
| 176 | void *cleanup; |
| 177 | void *endian; |
| 178 | void *print; |
| 179 | int size; |
| 180 | int traced; |
| 181 | int replay; |
| 182 | int message_bounce; |
| 183 | int is_mp_safe; |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 184 | } vl_msg_api_msg_config_t; |
| 185 | |
| 186 | /* api_shared.c prototypes */ |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 187 | int vl_msg_api_rx_trace_enabled (api_main_t * am); |
| 188 | int vl_msg_api_tx_trace_enabled (api_main_t * am); |
| 189 | void vl_msg_api_trace (api_main_t * am, vl_api_trace_t * tp, void *msg); |
| 190 | int vl_msg_api_trace_onoff (api_main_t * am, vl_api_trace_which_t which, |
| 191 | int onoff); |
| 192 | int vl_msg_api_trace_free (api_main_t * am, vl_api_trace_which_t which); |
| 193 | int vl_msg_api_trace_save (api_main_t * am, |
| 194 | vl_api_trace_which_t which, FILE * fp); |
| 195 | int vl_msg_api_trace_configure (api_main_t * am, vl_api_trace_which_t which, |
| 196 | u32 nitems); |
| 197 | void vl_msg_api_handler_with_vm_node (api_main_t * am, |
| 198 | void *the_msg, vlib_main_t * vm, |
| 199 | vlib_node_runtime_t * node); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 200 | void vl_msg_api_handler (void *the_msg); |
| 201 | void vl_msg_api_handler_no_free (void *the_msg); |
| 202 | void vl_msg_api_handler_no_trace_no_free (void *the_msg); |
| 203 | void vl_msg_api_trace_only (void *the_msg); |
| 204 | void vl_msg_api_cleanup_handler (void *the_msg); |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 205 | void vl_msg_api_replay_handler (void *the_msg); |
| 206 | void vl_msg_api_socket_handler (void *the_msg); |
| 207 | void vl_msg_api_set_handlers (int msg_id, char *msg_name, |
| 208 | void *handler, |
| 209 | void *cleanup, |
| 210 | void *endian, |
| 211 | void *print, int msg_size, int traced); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 212 | void vl_msg_api_config (vl_msg_api_msg_config_t *); |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 213 | void vl_msg_api_set_cleanup_handler (int msg_id, void *fp); |
| 214 | void vl_msg_api_queue_handler (unix_shared_memory_queue_t * q); |
| 215 | vl_api_trace_t *vl_msg_api_trace_get (api_main_t * am, |
| 216 | vl_api_trace_which_t which); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 217 | |
| 218 | void vl_msg_api_free (void *); |
| 219 | void vl_noop_handler (void *mp); |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 220 | clib_error_t *vl_api_init (vlib_main_t * vm); |
| 221 | void vl_msg_api_increment_missing_client_counter (void); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 222 | void vl_msg_api_post_mortem_dump (void); |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 223 | void vl_msg_api_register_pd_handler (void *handler, |
| 224 | u16 msg_id_host_byte_order); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 225 | int vl_msg_api_pd_handler (void *mp, int rv); |
| 226 | |
| 227 | void vl_msg_api_set_first_available_msg_id (u16 first_avail); |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 228 | u16 vl_msg_api_get_msg_ids (char *name, int n); |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 229 | |
Dave Barach | b44e9bc | 2016-02-19 09:06:23 -0500 | [diff] [blame] | 230 | /* node_serialize.c prototypes */ |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 231 | u8 *vlib_node_serialize (vlib_node_main_t * nm, u8 * vector, |
| 232 | u32 max_threads, int include_nexts, |
| 233 | int include_stats); |
| 234 | vlib_node_t **vlib_node_unserialize (u8 * vector); |
Dave Barach | b44e9bc | 2016-02-19 09:06:23 -0500 | [diff] [blame] | 235 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 236 | #define VLIB_API_INIT_FUNCTION(x) VLIB_DECLARE_INIT_FUNCTION(x,api_init) |
| 237 | |
| 238 | #endif /* included_api_h */ |
Dave Barach | 371e4e1 | 2016-07-08 09:38:52 -0400 | [diff] [blame^] | 239 | |
| 240 | /* |
| 241 | * fd.io coding-style-patch-verification: ON |
| 242 | * |
| 243 | * Local Variables: |
| 244 | * eval: (c-set-style "gnu") |
| 245 | * End: |
| 246 | */ |