blob: 2a401c21189560cf9681ff042aa037c93a69779a [file] [log] [blame]
Klement Sekera8f2a4ea2017-05-04 06:15:18 +02001/*
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 Sekeradc15be22017-06-12 06:49:33 +020024#include <vapi/vapi_common.h>
Mohsin Kazmi3fca5672018-01-04 18:57:26 +010025#include <svm/queue.h>
Klement Sekeradc15be22017-06-12 06:49:33 +020026
27#ifdef __cplusplus
28extern "C"
29{
30#endif
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020031
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 Sekeradc15be22017-06-12 06:49:33 +020046 typedef struct vapi_ctx_s *vapi_ctx_t;
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020047
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 Sekeradc15be22017-06-12 06:49:33 +020058 void *vapi_msg_alloc (vapi_ctx_t ctx, size_t size);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020059
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 Sekeradc15be22017-06-12 06:49:33 +020068 void vapi_msg_free (vapi_ctx_t ctx, void *msg);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020069
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 Sekeradc15be22017-06-12 06:49:33 +020077 vapi_error_e vapi_ctx_alloc (vapi_ctx_t * result);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020078
79/**
80 * @brief free vapi context
81 */
Klement Sekeradc15be22017-06-12 06:49:33 +020082 void vapi_ctx_free (vapi_ctx_t ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020083
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 Sekeradc15be22017-06-12 06:49:33 +020088 bool vapi_is_msg_available (vapi_ctx_t ctx, vapi_msg_id_t type);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +020089
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 Sekeradab732a2018-07-04 13:43:46 +020099 * @param handle_keepalives - if true, automatically handle memclnt_keepalive
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200100 *
101 * @return VAPI_OK on success, other error code on error
102 */
Klement Sekeradc15be22017-06-12 06:49:33 +0200103 vapi_error_e vapi_connect (vapi_ctx_t ctx, const char *name,
104 const char *chroot_prefix,
105 int max_outstanding_requests,
Klement Sekeradab732a2018-07-04 13:43:46 +0200106 int response_queue_size, vapi_mode_e mode,
107 bool handle_keepalives);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200108
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 Sekeradc15be22017-06-12 06:49:33 +0200116 vapi_error_e vapi_disconnect (vapi_ctx_t ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200117
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 Sekeradc15be22017-06-12 06:49:33 +0200129 vapi_error_e vapi_get_fd (vapi_ctx_t ctx, int *fd);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200130
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 Sekeradc15be22017-06-12 06:49:33 +0200142 vapi_error_e vapi_send (vapi_ctx_t ctx, void *msg);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200143
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 Sekeradc15be22017-06-12 06:49:33 +0200157 vapi_error_e vapi_send2 (vapi_ctx_t ctx, void *msg1, void *msg2);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200158
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 Kazmi3fca5672018-01-04 18:57:26 +0100168 * @param cond enum type for blocking, non-blocking or timed wait call
169 * @param time in sec for timed wait
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200170 *
171 * @return VAPI_OK on success, other error code on error
172 */
Mohsin Kazmi3fca5672018-01-04 18:57:26 +0100173 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 Sekera8f2a4ea2017-05-04 06:15:18 +0200175
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 Sekeradc15be22017-06-12 06:49:33 +0200184 vapi_error_e vapi_wait (vapi_ctx_t ctx, vapi_wait_mode_e mode);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200185
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 Sekeradc15be22017-06-12 06:49:33 +0200191 vapi_error_e vapi_dispatch_one (vapi_ctx_t ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200192
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 Sekeradc15be22017-06-12 06:49:33 +0200207 vapi_error_e vapi_dispatch (vapi_ctx_t ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200208
209/** generic vapi event callback */
Klement Sekeradc15be22017-06-12 06:49:33 +0200210 typedef vapi_error_e (*vapi_event_cb) (vapi_ctx_t ctx, void *callback_ctx,
211 void *payload);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200212
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 Sekeradc15be22017-06-12 06:49:33 +0200221 void vapi_set_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id,
222 vapi_event_cb callback, void *callback_ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200223
224/**
225 * @brief clear event callback for given message id
226 *
227 * @param ctx opaque vapi context
228 * @param id message id
229 */
Klement Sekeradc15be22017-06-12 06:49:33 +0200230 void vapi_clear_event_cb (vapi_ctx_t ctx, vapi_msg_id_t id);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200231
232/** generic vapi event callback */
Klement Sekeradc15be22017-06-12 06:49:33 +0200233 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 Sekera8f2a4ea2017-05-04 06:15:18 +0200236/**
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 Sekeradc15be22017-06-12 06:49:33 +0200246 void vapi_set_generic_event_cb (vapi_ctx_t ctx,
247 vapi_generic_event_cb callback,
248 void *callback_ctx);
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200249
250/**
251 * @brief clear generic event callback
252 *
253 * @param ctx opaque vapi context
254 */
Klement Sekeradc15be22017-06-12 06:49:33 +0200255 void vapi_clear_generic_event_cb (vapi_ctx_t ctx);
256
257#ifdef __cplusplus
258}
259#endif
Klement Sekera8f2a4ea2017-05-04 06:15:18 +0200260
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 */