Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 1 | /* |
| 2 | *------------------------------------------------------------------ |
| 3 | * Copyright (c) 2017 Cisco and/or its affiliates. |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at: |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | *------------------------------------------------------------------ |
| 16 | */ |
| 17 | |
| 18 | #ifndef vpp_api_h_included |
| 19 | #define vpp_api_h_included |
| 20 | |
| 21 | #include <string.h> |
| 22 | #include <stdbool.h> |
| 23 | #include <vppinfra/types.h> |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 24 | #include <vapi/vapi_common.h> |
Mohsin Kazmi | 3fca567 | 2018-01-04 18:57:26 +0100 | [diff] [blame] | 25 | #include <svm/queue.h> |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 26 | |
| 27 | #ifdef __cplusplus |
| 28 | extern "C" |
| 29 | { |
| 30 | #endif |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 31 | |
| 32 | /** |
| 33 | * @file vapi.h |
| 34 | * |
| 35 | * common vpp api C declarations |
| 36 | * |
| 37 | * This file declares the common C API functions. These include connect, |
| 38 | * disconnect and utility functions as well as the low-level vapi_send and |
| 39 | * vapi_recv API. This is only the transport layer. |
| 40 | * |
| 41 | * Message formats and higher-level APIs are generated by running the |
| 42 | * vapi_c_gen.py script (which is run for in-tree APIs as part of the build |
| 43 | * process). It's not recommended to mix the higher and lower level APIs. Due |
| 44 | * to version issues, the higher-level APIs are not part of the shared library. |
| 45 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 46 | typedef struct vapi_ctx_s *vapi_ctx_t; |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 47 | |
| 48 | /** |
| 49 | * @brief allocate vapi message of given size |
| 50 | * |
| 51 | * @note message must be freed by vapi_msg_free if not consumed by vapi_send |
| 52 | * call |
| 53 | * |
| 54 | * @param ctx opaque vapi context |
| 55 | * |
| 56 | * @return pointer to message or NULL if out of memory |
| 57 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 58 | void *vapi_msg_alloc (vapi_ctx_t ctx, size_t size); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 59 | |
| 60 | /** |
| 61 | * @brief free a vapi message |
| 62 | * |
| 63 | * @note messages received by vapi_recv must be freed when no longer needed |
| 64 | * |
| 65 | * @param ctx opaque vapi context |
| 66 | * @param msg message to be freed |
| 67 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 68 | void vapi_msg_free (vapi_ctx_t ctx, void *msg); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 69 | |
| 70 | /** |
| 71 | * @brief allocate vapi context |
| 72 | * |
| 73 | * @param[out] pointer to result variable |
| 74 | * |
| 75 | * @return VAPI_OK on success, other error code on error |
| 76 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 77 | vapi_error_e vapi_ctx_alloc (vapi_ctx_t * result); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 78 | |
| 79 | /** |
| 80 | * @brief free vapi context |
| 81 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 82 | void vapi_ctx_free (vapi_ctx_t ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 83 | |
| 84 | /** |
| 85 | * @brief check if message identified by it's message id is known by the vpp to |
| 86 | * which the connection is open |
| 87 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 88 | bool vapi_is_msg_available (vapi_ctx_t ctx, vapi_msg_id_t type); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 89 | |
| 90 | /** |
| 91 | * @brief connect to vpp |
| 92 | * |
| 93 | * @param ctx opaque vapi context, must be allocated using vapi_ctx_alloc first |
| 94 | * @param name application name |
| 95 | * @param chroot_prefix shared memory prefix |
| 96 | * @param max_outstanding_requests max number of outstanding requests queued |
| 97 | * @param response_queue_size size of the response queue |
| 98 | * @param mode mode of operation - blocking or nonblocking |
Klement Sekera | dab732a | 2018-07-04 13:43:46 +0200 | [diff] [blame] | 99 | * @param handle_keepalives - if true, automatically handle memclnt_keepalive |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 100 | * |
| 101 | * @return VAPI_OK on success, other error code on error |
| 102 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 103 | vapi_error_e vapi_connect (vapi_ctx_t ctx, const char *name, |
| 104 | const char *chroot_prefix, |
| 105 | int max_outstanding_requests, |
Klement Sekera | dab732a | 2018-07-04 13:43:46 +0200 | [diff] [blame] | 106 | int response_queue_size, vapi_mode_e mode, |
| 107 | bool handle_keepalives); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 108 | |
| 109 | /** |
| 110 | * @brief disconnect from vpp |
| 111 | * |
| 112 | * @param ctx opaque vapi context |
| 113 | * |
| 114 | * @return VAPI_OK on success, other error code on error |
| 115 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 116 | vapi_error_e vapi_disconnect (vapi_ctx_t ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 117 | |
| 118 | /** |
| 119 | * @brief get event file descriptor |
| 120 | * |
| 121 | * @note this file descriptor becomes readable when messages (from vpp) |
| 122 | * are waiting in queue |
| 123 | * |
| 124 | * @param ctx opaque vapi context |
| 125 | * @param[out] fd pointer to result variable |
| 126 | * |
| 127 | * @return VAPI_OK on success, other error code on error |
| 128 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 129 | vapi_error_e vapi_get_fd (vapi_ctx_t ctx, int *fd); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 130 | |
| 131 | /** |
| 132 | * @brief low-level api for sending messages to vpp |
| 133 | * |
| 134 | * @note it is not recommended to use this api directly, use generated api |
| 135 | * instead |
| 136 | * |
| 137 | * @param ctx opaque vapi context |
| 138 | * @param msg message to send |
| 139 | * |
| 140 | * @return VAPI_OK on success, other error code on error |
| 141 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 142 | vapi_error_e vapi_send (vapi_ctx_t ctx, void *msg); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 143 | |
| 144 | /** |
| 145 | * @brief low-level api for atomically sending two messages to vpp - either |
| 146 | * both messages are sent or neither one is |
| 147 | * |
| 148 | * @note it is not recommended to use this api directly, use generated api |
| 149 | * instead |
| 150 | * |
| 151 | * @param ctx opaque vapi context |
| 152 | * @param msg1 first message to send |
| 153 | * @param msg2 second message to send |
| 154 | * |
| 155 | * @return VAPI_OK on success, other error code on error |
| 156 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 157 | vapi_error_e vapi_send2 (vapi_ctx_t ctx, void *msg1, void *msg2); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 158 | |
| 159 | /** |
| 160 | * @brief low-level api for reading messages from vpp |
| 161 | * |
| 162 | * @note it is not recommended to use this api directly, use generated api |
| 163 | * instead |
| 164 | * |
| 165 | * @param ctx opaque vapi context |
| 166 | * @param[out] msg pointer to result variable containing message |
| 167 | * @param[out] msg_size pointer to result variable containing message size |
Mohsin Kazmi | 3fca567 | 2018-01-04 18:57:26 +0100 | [diff] [blame] | 168 | * @param cond enum type for blocking, non-blocking or timed wait call |
| 169 | * @param time in sec for timed wait |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 170 | * |
| 171 | * @return VAPI_OK on success, other error code on error |
| 172 | */ |
Mohsin Kazmi | 3fca567 | 2018-01-04 18:57:26 +0100 | [diff] [blame] | 173 | vapi_error_e vapi_recv (vapi_ctx_t ctx, void **msg, size_t * msg_size, |
| 174 | svm_q_conditional_wait_t cond, u32 time); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 175 | |
| 176 | /** |
| 177 | * @brief wait for connection to become readable or writable |
| 178 | * |
| 179 | * @param ctx opaque vapi context |
| 180 | * @param mode type of property to wait for - readability, writability or both |
| 181 | * |
| 182 | * @return VAPI_OK on success, other error code on error |
| 183 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 184 | vapi_error_e vapi_wait (vapi_ctx_t ctx, vapi_wait_mode_e mode); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 185 | |
| 186 | /** |
| 187 | * @brief pick next message sent by vpp and call the appropriate callback |
| 188 | * |
| 189 | * @return VAPI_OK on success, other error code on error |
| 190 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 191 | vapi_error_e vapi_dispatch_one (vapi_ctx_t ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 192 | |
| 193 | /** |
| 194 | * @brief loop vapi_dispatch_one until responses to all currently outstanding |
| 195 | * requests have been received and their callbacks called |
| 196 | * |
| 197 | * @note the dispatch loop is interrupted if any error is encountered or |
| 198 | * returned from the callback, in which case this error is returned as the |
| 199 | * result of vapi_dispatch. In this case it might be necessary to call dispatch |
| 200 | * again to process the remaining messages. Returning VAPI_EUSER from |
| 201 | * a callback allows the user to break the dispatch loop (and distinguish |
| 202 | * this case in the calling code from other failures). VAPI never returns |
| 203 | * VAPI_EUSER on its own. |
| 204 | * |
| 205 | * @return VAPI_OK on success, other error code on error |
| 206 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 207 | vapi_error_e vapi_dispatch (vapi_ctx_t ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 208 | |
| 209 | /** generic vapi event callback */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 210 | typedef vapi_error_e (*vapi_event_cb) (vapi_ctx_t ctx, void *callback_ctx, |
| 211 | void *payload); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 212 | |
| 213 | /** |
| 214 | * @brief set event callback to call when message with given id is dispatched |
| 215 | * |
| 216 | * @param ctx opaque vapi context |
| 217 | * @param id message id |
| 218 | * @param callback callback |
| 219 | * @param callback_ctx context pointer stored and passed to callback |
| 220 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 221 | void vapi_set_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id, |
| 222 | vapi_event_cb callback, void *callback_ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 223 | |
| 224 | /** |
| 225 | * @brief clear event callback for given message id |
| 226 | * |
| 227 | * @param ctx opaque vapi context |
| 228 | * @param id message id |
| 229 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 230 | void vapi_clear_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 231 | |
| 232 | /** generic vapi event callback */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 233 | typedef vapi_error_e (*vapi_generic_event_cb) (vapi_ctx_t ctx, |
| 234 | void *callback_ctx, |
| 235 | vapi_msg_id_t id, void *msg); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 236 | /** |
| 237 | * @brief set generic event callback |
| 238 | * |
| 239 | * @note this callback is called by dispatch if no message-type specific |
| 240 | * callback is set (so it's a fallback callback) |
| 241 | * |
| 242 | * @param ctx opaque vapi context |
| 243 | * @param callback callback |
| 244 | * @param callback_ctx context pointer stored and passed to callback |
| 245 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 246 | void vapi_set_generic_event_cb (vapi_ctx_t ctx, |
| 247 | vapi_generic_event_cb callback, |
| 248 | void *callback_ctx); |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 249 | |
| 250 | /** |
| 251 | * @brief clear generic event callback |
| 252 | * |
| 253 | * @param ctx opaque vapi context |
| 254 | */ |
Klement Sekera | dc15be2 | 2017-06-12 06:49:33 +0200 | [diff] [blame] | 255 | void vapi_clear_generic_event_cb (vapi_ctx_t ctx); |
| 256 | |
| 257 | #ifdef __cplusplus |
| 258 | } |
| 259 | #endif |
Klement Sekera | 8f2a4ea | 2017-05-04 06:15:18 +0200 | [diff] [blame] | 260 | |
| 261 | #endif |
| 262 | |
| 263 | /* |
| 264 | * fd.io coding-style-patch-verification: ON |
| 265 | * |
| 266 | * Local Variables: |
| 267 | * eval: (c-set-style "gnu") |
| 268 | * End: |
| 269 | */ |