blob: 62815090e370d59b1e7072c6eaf83195b5bbb6b0 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#ifndef included_vppcom_h
17#define included_vppcom_h
18
19#include <netdb.h>
20#include <errno.h>
Florin Coras57c88932019-08-29 12:03:17 -070021#include <sys/fcntl.h>
Dave Wallace048b1d62018-01-03 22:24:41 -050022#include <sys/poll.h>
Dave Wallacef7f809c2017-10-03 01:48:42 -040023#include <sys/epoll.h>
Dave Wallace543852a2017-08-03 02:11:34 -040024
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -080025/* *INDENT-OFF* */
26#ifdef __cplusplus
27extern "C"
28{
29#endif
30/* *INDENT-ON* */
31
Dave Wallace543852a2017-08-03 02:11:34 -040032/*
33 * VPPCOM Public API Definitions, Enums, and Data Structures
34 */
Florin Coras7baeb712019-01-04 17:05:43 -080035#define INVALID_SESSION_ID ((u32)~0)
Florin Coras99368312018-08-02 10:45:44 -070036#define VPPCOM_CONF_DEFAULT "/etc/vpp/vcl.conf"
37#define VPPCOM_ENV_CONF "VCL_CONFIG"
38#define VPPCOM_ENV_DEBUG "VCL_DEBUG"
39#define VPPCOM_ENV_API_PREFIX "VCL_API_PREFIX"
40#define VPPCOM_ENV_APP_PROXY_TRANSPORT_TCP "VCL_APP_PROXY_TRANSPORT_TCP"
41#define VPPCOM_ENV_APP_PROXY_TRANSPORT_UDP "VCL_APP_PROXY_TRANSPORT_UDP"
42#define VPPCOM_ENV_APP_NAMESPACE_ID "VCL_APP_NAMESPACE_ID"
43#define VPPCOM_ENV_APP_NAMESPACE_SECRET "VCL_APP_NAMESPACE_SECRET"
44#define VPPCOM_ENV_APP_SCOPE_LOCAL "VCL_APP_SCOPE_LOCAL"
45#define VPPCOM_ENV_APP_SCOPE_GLOBAL "VCL_APP_SCOPE_GLOBAL"
46#define VPPCOM_ENV_VPP_API_SOCKET "VCL_VPP_API_SOCKET"
Dave Wallace543852a2017-08-03 02:11:34 -040047
48typedef enum
49{
50 VPPCOM_PROTO_TCP = 0,
51 VPPCOM_PROTO_UDP,
Ping Yu34a3a082018-11-30 19:16:17 -050052 VPPCOM_PROTO_SCTP,
53 VPPCOM_PROTO_NONE,
54 VPPCOM_PROTO_TLS,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +020055 VPPCOM_PROTO_UDPC,
56 VPPCOM_PROTO_QUIC,
Dave Wallace543852a2017-08-03 02:11:34 -040057} vppcom_proto_t;
58
Dave Wallace048b1d62018-01-03 22:24:41 -050059static inline char *
60vppcom_proto_str (vppcom_proto_t proto)
61{
62 char *proto_str;
63
64 switch (proto)
65 {
66 case VPPCOM_PROTO_TCP:
Ping Yu34a3a082018-11-30 19:16:17 -050067 proto_str = "TCP";
Dave Wallace048b1d62018-01-03 22:24:41 -050068 break;
69 case VPPCOM_PROTO_UDP:
Ping Yu34a3a082018-11-30 19:16:17 -050070 proto_str = "UDP";
71 break;
72 case VPPCOM_PROTO_SCTP:
73 proto_str = "SCTP";
74 break;
75 case VPPCOM_PROTO_TLS:
76 proto_str = "TLS";
77 break;
78 case VPPCOM_PROTO_UDPC:
79 proto_str = "UDPC";
Dave Wallace048b1d62018-01-03 22:24:41 -050080 break;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +020081 case VPPCOM_PROTO_QUIC:
82 proto_str = "QUIC";
83 break;
Dave Wallace048b1d62018-01-03 22:24:41 -050084 default:
85 proto_str = "UNKNOWN";
86 break;
87 }
88 return proto_str;
89}
90
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +020091static inline int
92vcl_proto_is_dgram (uint8_t proto)
93{
94 return proto == VPPCOM_PROTO_UDP || proto == VPPCOM_PROTO_UDPC;
95}
96
Dave Wallace543852a2017-08-03 02:11:34 -040097typedef enum
98{
99 VPPCOM_IS_IP6 = 0,
100 VPPCOM_IS_IP4,
101} vppcom_is_ip4_t;
102
103typedef struct vppcom_endpt_t_
104{
Dave Wallace543852a2017-08-03 02:11:34 -0400105 uint8_t is_cut_thru;
106 uint8_t is_ip4;
107 uint8_t *ip;
108 uint16_t port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +0200109 uint64_t parent_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400110} vppcom_endpt_t;
111
Florin Coras30e79c22019-01-02 19:31:22 -0800112typedef uint32_t vcl_session_handle_t;
113
Dave Wallace543852a2017-08-03 02:11:34 -0400114typedef enum
115{
116 VPPCOM_OK = 0,
117 VPPCOM_EAGAIN = -EAGAIN,
Florin Coras54693d22018-07-17 10:46:29 -0700118 VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
Florin Coras57c88932019-08-29 12:03:17 -0700119 VPPCOM_EINPROGRESS = -EINPROGRESS,
Dave Wallace048b1d62018-01-03 22:24:41 -0500120 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -0500121 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -0400122 VPPCOM_EINVAL = -EINVAL,
123 VPPCOM_EBADFD = -EBADFD,
124 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -0500125 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -0400126 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -0500127 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -0400128 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
129 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
Florin Coras134a9962018-08-28 11:32:04 -0700130 VPPCOM_EEXIST = -EEXIST
Dave Wallace543852a2017-08-03 02:11:34 -0400131} vppcom_error_t;
132
Dave Wallace35830af2017-10-09 01:43:42 -0400133typedef enum
134{
135 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -0500136 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -0400137 VPPCOM_ATTR_GET_FLAGS,
138 VPPCOM_ATTR_SET_FLAGS,
139 VPPCOM_ATTR_GET_LCL_ADDR,
140 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500141 VPPCOM_ATTR_GET_LIBC_EPFD,
142 VPPCOM_ATTR_SET_LIBC_EPFD,
143 VPPCOM_ATTR_GET_PROTOCOL,
144 VPPCOM_ATTR_GET_LISTEN,
145 VPPCOM_ATTR_GET_ERROR,
146 VPPCOM_ATTR_GET_TX_FIFO_LEN,
147 VPPCOM_ATTR_SET_TX_FIFO_LEN,
148 VPPCOM_ATTR_GET_RX_FIFO_LEN,
149 VPPCOM_ATTR_SET_RX_FIFO_LEN,
150 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700151 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500152 VPPCOM_ATTR_GET_REUSEPORT,
153 VPPCOM_ATTR_SET_REUSEPORT,
154 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700155 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500156 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700157 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500158 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700159 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500160 VPPCOM_ATTR_GET_TCP_NODELAY,
161 VPPCOM_ATTR_SET_TCP_NODELAY,
162 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700163 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500164 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700165 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500166 VPPCOM_ATTR_GET_TCP_USER_MSS,
167 VPPCOM_ATTR_SET_TCP_USER_MSS,
Florin Coras7baeb712019-01-04 17:05:43 -0800168 VPPCOM_ATTR_SET_SHUT,
169 VPPCOM_ATTR_GET_SHUT,
Dave Wallace35830af2017-10-09 01:43:42 -0400170} vppcom_attr_op_t;
171
Dave Wallace048b1d62018-01-03 22:24:41 -0500172typedef struct _vcl_poll
173{
174 uint32_t fds_ndx;
Florin Coras7baeb712019-01-04 17:05:43 -0800175 vcl_session_handle_t sh;
Dave Wallace048b1d62018-01-03 22:24:41 -0500176 short events;
Florin Coras6917b942018-11-13 22:44:54 -0800177 short revents;
Dave Wallace048b1d62018-01-03 22:24:41 -0500178} vcl_poll_t;
179
Florin Coras2cba8532018-09-11 16:33:36 -0700180typedef struct vppcom_data_segment_
181{
182 unsigned char *data;
183 uint32_t len;
184} vppcom_data_segment_t;
185
186typedef vppcom_data_segment_t vppcom_data_segments_t[2];
187
Florin Coras294afe22019-01-07 17:49:17 -0800188typedef unsigned long vcl_si_set;
189
Dave Wallace543852a2017-08-03 02:11:34 -0400190/*
191 * VPPCOM Public API Functions
192 */
193static inline const char *
194vppcom_retval_str (int retval)
195{
196 char *st;
197
198 switch (retval)
199 {
200 case VPPCOM_OK:
201 st = "VPPCOM_OK";
202 break;
203
204 case VPPCOM_EAGAIN:
205 st = "VPPCOM_EAGAIN";
206 break;
207
Dave Wallace048b1d62018-01-03 22:24:41 -0500208 case VPPCOM_EFAULT:
209 st = "VPPCOM_EFAULT";
210 break;
211
Dave Wallacee376f932017-11-19 11:20:02 -0500212 case VPPCOM_ENOMEM:
213 st = "VPPCOM_ENOMEM";
214 break;
215
Dave Wallace543852a2017-08-03 02:11:34 -0400216 case VPPCOM_EINVAL:
217 st = "VPPCOM_EINVAL";
218 break;
219
220 case VPPCOM_EBADFD:
221 st = "VPPCOM_EBADFD";
222 break;
223
224 case VPPCOM_EAFNOSUPPORT:
225 st = "VPPCOM_EAFNOSUPPORT";
226 break;
227
Dave Wallaceee45d412017-11-24 21:44:06 -0500228 case VPPCOM_ECONNABORTED:
229 st = "VPPCOM_ECONNABORTED";
230 break;
231
Dave Wallace543852a2017-08-03 02:11:34 -0400232 case VPPCOM_ECONNRESET:
233 st = "VPPCOM_ECONNRESET";
234 break;
235
Dave Wallace4878cbe2017-11-21 03:45:09 -0500236 case VPPCOM_ENOTCONN:
237 st = "VPPCOM_ENOTCONN";
238 break;
239
Dave Wallace543852a2017-08-03 02:11:34 -0400240 case VPPCOM_ECONNREFUSED:
241 st = "VPPCOM_ECONNREFUSED";
242 break;
243
244 case VPPCOM_ETIMEDOUT:
245 st = "VPPCOM_ETIMEDOUT";
246 break;
247
248 default:
249 st = "UNKNOWN_STATE";
250 break;
251 }
252
253 return st;
254}
255
Dave Wallace543852a2017-08-03 02:11:34 -0400256/* TBD: make these constructor/destructor function */
257extern int vppcom_app_create (char *app_name);
258extern void vppcom_app_destroy (void);
259
Dave Wallacec04cbf12018-02-07 18:14:02 -0500260extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
Florin Coras134a9962018-08-28 11:32:04 -0700261extern int vppcom_session_close (uint32_t session_handle);
262extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
263extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
Dave Wallace543852a2017-08-03 02:11:34 -0400264
Florin Coras134a9962018-08-28 11:32:04 -0700265extern int vppcom_session_accept (uint32_t session_handle,
Dave Wallace048b1d62018-01-03 22:24:41 -0500266 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400267
Florin Coras134a9962018-08-28 11:32:04 -0700268extern int vppcom_session_connect (uint32_t session_handle,
Dave Wallace543852a2017-08-03 02:11:34 -0400269 vppcom_endpt_t * server_ep);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200270extern int vppcom_session_stream_connect (uint32_t session_handle,
271 uint32_t parent_session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700272extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
273extern int vppcom_session_write (uint32_t session_handle, void *buf,
274 size_t n);
Florin Corasb0f662f2018-12-27 14:51:46 -0800275extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
276 size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400277
Florin Coras294afe22019-01-07 17:49:17 -0800278extern int vppcom_select (int n_bits, vcl_si_set * read_map,
279 vcl_si_set * write_map, vcl_si_set * except_map,
280 double wait_for_time);
Dave Wallace543852a2017-08-03 02:11:34 -0400281
Dave Wallacef7f809c2017-10-03 01:48:42 -0400282extern int vppcom_epoll_create (void);
Florin Coras134a9962018-08-28 11:32:04 -0700283extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
284 uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400285 struct epoll_event *event);
Florin Coras134a9962018-08-28 11:32:04 -0700286extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400287 int maxevents, double wait_for_time);
Florin Coras134a9962018-08-28 11:32:04 -0700288extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -0400289 void *buffer, uint32_t * buflen);
Florin Coras134a9962018-08-28 11:32:04 -0700290extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700291 uint32_t buflen, int flags,
292 vppcom_endpt_t * ep);
Florin Coras134a9962018-08-28 11:32:04 -0700293extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700294 uint32_t buflen, int flags,
295 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500296extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
297 double wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -0700298extern int vppcom_mq_epoll_fd (void);
Florin Coras30e79c22019-01-02 19:31:22 -0800299extern int vppcom_session_index (vcl_session_handle_t session_handle);
300extern int vppcom_session_worker (vcl_session_handle_t session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700301
Florin Coras2cba8532018-09-11 16:33:36 -0700302extern int vppcom_session_read_segments (uint32_t session_handle,
303 vppcom_data_segments_t ds);
304extern void vppcom_session_free_segments (uint32_t session_handle,
305 vppcom_data_segments_t ds);
Ping Yu34a3a082018-11-30 19:16:17 -0500306extern int vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
307 uint32_t cert_len);
308extern int vppcom_session_tls_add_key (uint32_t session_handle, char *key,
309 uint32_t key_len);
Florin Coras2cba8532018-09-11 16:33:36 -0700310extern int vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds,
311 uint32_t max_bytes);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200312extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
313extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
314extern int vppcom_session_listener (uint32_t session_handle);
315extern int vppcom_session_n_accepted (uint32_t session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -0700316
Florin Coras134a9962018-08-28 11:32:04 -0700317/**
318 * Request from application to register a new worker
319 *
320 * Expectation is that applications will make use of this after a new pthread
321 * is spawned.
322 */
323extern int vppcom_worker_register (void);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400324
Florin Corasdfe4cf42018-11-28 22:13:45 -0800325/**
Florin Coras369db832019-07-08 12:34:45 -0700326 * Unregister current worker
327 */
328extern void vppcom_worker_unregister (void);
329
330/**
Florin Corasdfe4cf42018-11-28 22:13:45 -0800331 * Retrieve current worker index
332 */
333extern int vppcom_worker_index (void);
334
Florin Corase0982e52019-01-25 13:19:56 -0800335/**
336 * Returns the current worker's message queues epoll fd
337 *
338 * This only works if vcl is configured to do eventfd based message queue
339 * notifications.
340 */
341extern int vppcom_worker_mqs_epfd (void);
342
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800343/* *INDENT-OFF* */
344#ifdef __cplusplus
345}
346#endif
347/* *INDENT-ON* */
348
Dave Wallace543852a2017-08-03 02:11:34 -0400349#endif /* included_vppcom_h */
350
351/*
352 * fd.io coding-style-patch-verification: ON
353 *
354 * Local Variables:
355 * eval: (c-set-style "gnu")
356 * End:
357 */