blob: 5683cb2cf0b1fdf7ecdf9d7cacbe372c73eb07eb [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras66ec4672020-06-15 07:59:40 -07002 * Copyright (c) 2017-2020 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
Tom Jonesb613d412024-01-30 16:21:58 +000019#ifdef __FreeBSD__
20#include <sys/types.h>
21#endif /* __FreeBSD__ */
Dave Wallace543852a2017-08-03 02:11:34 -040022#include <netdb.h>
23#include <errno.h>
Guillaume Solignacaf5744c2023-01-10 15:37:18 +010024#include <fcntl.h>
25#include <poll.h>
Dave Wallacef7f809c2017-10-03 01:48:42 -040026#include <sys/epoll.h>
Dave Wallace543852a2017-08-03 02:11:34 -040027
Florin Coraseff5f7a2023-02-07 17:36:17 -080028/* clang-format off */
29
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -080030#ifdef __cplusplus
31extern "C"
32{
33#endif
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -080034
Dave Wallace543852a2017-08-03 02:11:34 -040035/*
36 * VPPCOM Public API Definitions, Enums, and Data Structures
37 */
Florin Coras7baeb712019-01-04 17:05:43 -080038#define INVALID_SESSION_ID ((u32)~0)
Florin Coras99368312018-08-02 10:45:44 -070039#define VPPCOM_CONF_DEFAULT "/etc/vpp/vcl.conf"
40#define VPPCOM_ENV_CONF "VCL_CONFIG"
41#define VPPCOM_ENV_DEBUG "VCL_DEBUG"
Florin Coras99368312018-08-02 10:45:44 -070042#define VPPCOM_ENV_APP_PROXY_TRANSPORT_TCP "VCL_APP_PROXY_TRANSPORT_TCP"
43#define VPPCOM_ENV_APP_PROXY_TRANSPORT_UDP "VCL_APP_PROXY_TRANSPORT_UDP"
44#define VPPCOM_ENV_APP_NAMESPACE_ID "VCL_APP_NAMESPACE_ID"
45#define VPPCOM_ENV_APP_NAMESPACE_SECRET "VCL_APP_NAMESPACE_SECRET"
46#define VPPCOM_ENV_APP_SCOPE_LOCAL "VCL_APP_SCOPE_LOCAL"
47#define VPPCOM_ENV_APP_SCOPE_GLOBAL "VCL_APP_SCOPE_GLOBAL"
Filip Tehlar794599b2022-02-09 08:35:26 +000048#define VPPCOM_ENV_APP_USE_MQ_EVENTFD "VCL_APP_USE_MQ_EVENTFD"
Florin Coras99368312018-08-02 10:45:44 -070049#define VPPCOM_ENV_VPP_API_SOCKET "VCL_VPP_API_SOCKET"
Florin Coras165f3ae2020-11-08 18:04:33 -080050#define VPPCOM_ENV_VPP_SAPI_SOCKET "VCL_VPP_SAPI_SOCKET"
Dave Wallace543852a2017-08-03 02:11:34 -040051
Florin Coraseff5f7a2023-02-07 17:36:17 -080052typedef enum vppcom_proto_
53{
54 VPPCOM_PROTO_TCP = 0,
55 VPPCOM_PROTO_UDP,
56 VPPCOM_PROTO_NONE,
57 VPPCOM_PROTO_TLS,
58 VPPCOM_PROTO_QUIC,
59 VPPCOM_PROTO_DTLS,
60 VPPCOM_PROTO_SRTP,
61} vppcom_proto_t;
Dave Wallace543852a2017-08-03 02:11:34 -040062
Florin Coraseff5f7a2023-02-07 17:36:17 -080063typedef enum
64{
65 VPPCOM_IS_IP6 = 0,
66 VPPCOM_IS_IP4,
67} vppcom_is_ip4_t;
68
69typedef struct vppcom_endpt_tlv_t_
70{
71 uint32_t data_type;
72 uint32_t data_len;
73 uint8_t data[0];
74} vppcom_endpt_tlv_t;
75
76typedef struct vppcom_endpt_t_
77{
78 uint8_t unused; /**< unused */
79 uint8_t is_ip4; /**< flag set if if ip is ipv4 */
80 uint8_t *ip; /**< pointer to ip address */
81 uint16_t port; /**< transport port */
82 uint64_t unused2; /**< unused */
83 uint32_t app_tlv_len; /**< length of app provided tlvs */
84 vppcom_endpt_tlv_t *app_tlvs; /**< array of app provided tlvs */
85} vppcom_endpt_t;
Dave Wallace543852a2017-08-03 02:11:34 -040086
Dou Chao243a0432022-11-29 19:41:34 +080087#define VCL_UDP_OPTS_BASE (VPPCOM_PROTO_UDP << 16)
88#define VCL_UDP_SEGMENT (VCL_UDP_OPTS_BASE + 0)
89
Florin Coraseff5f7a2023-02-07 17:36:17 -080090/* By convention we'll use 127 for IP since we don't support IP as protocol */
91#define VCL_IP_OPTS_BASE (127 << 16)
92#define VCL_IP_PKTINFO (VCL_IP_OPTS_BASE + 1)
Dou Chao243a0432022-11-29 19:41:34 +080093
Florin Coraseff5f7a2023-02-07 17:36:17 -080094#define VCL_EP_APP_TLV_LEN(tlv_) (sizeof (vppcom_endpt_tlv_t) + tlv->data_len)
95#define VCL_EP_APP_TLV_POS(ep_, tlv_) ((void *)ep_->app_tlvs - (void *)tlv_)
96#define VCL_EP_APP_TLV_LEN_LEFT(ep_, tlv_) \
97 (ep_->app_tlv_len - VCL_EP_APP_TLV_POS (ep_, tlv_))
98#define VCL_EP_NEXT_APP_TLV(ep_, tlv_) \
99 (VCL_EP_APP_TLV_LEN (tlv_) < VCL_EP_APP_TLV_POS (ep_, tlv_) ? ( \
100 (vppcom_endpt_tlv_t *)((uint8_t *)tlv_ + VCL_EP_APP_TLV_LEN (tlv_))) \
101 : 0)
Dave Wallace543852a2017-08-03 02:11:34 -0400102
Florin Coras30e79c22019-01-02 19:31:22 -0800103typedef uint32_t vcl_session_handle_t;
104
Florin Corasa5a9efd2021-01-05 17:03:29 -0800105typedef struct vppcom_cert_key_pair_
106{
107 char *cert;
108 char *key;
109 uint32_t cert_len;
110 uint32_t key_len;
111} vppcom_cert_key_pair_t;
112
Dave Wallace543852a2017-08-03 02:11:34 -0400113typedef enum
114{
115 VPPCOM_OK = 0,
116 VPPCOM_EAGAIN = -EAGAIN,
Florin Coras54693d22018-07-17 10:46:29 -0700117 VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
Florin Coras57c88932019-08-29 12:03:17 -0700118 VPPCOM_EINPROGRESS = -EINPROGRESS,
Dave Wallace048b1d62018-01-03 22:24:41 -0500119 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -0500120 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -0400121 VPPCOM_EINVAL = -EINVAL,
Tom Jonesb613d412024-01-30 16:21:58 +0000122#ifdef __linux__
Dave Wallace543852a2017-08-03 02:11:34 -0400123 VPPCOM_EBADFD = -EBADFD,
Tom Jonesb613d412024-01-30 16:21:58 +0000124#else
125 VPPCOM_EBADFD = -EBADF,
126#endif /* __linux__ */
Dave Wallace543852a2017-08-03 02:11:34 -0400127 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -0500128 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -0400129 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -0500130 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -0400131 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
132 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
Florin Coras04ae8272021-04-12 19:55:37 -0700133 VPPCOM_EEXIST = -EEXIST,
Florin Coras2645f682021-06-04 15:59:41 -0700134 VPPCOM_ENOPROTOOPT = -ENOPROTOOPT,
liuyacan55c952e2021-06-13 14:54:55 +0800135 VPPCOM_EPIPE = -EPIPE,
Florin Coras2645f682021-06-04 15:59:41 -0700136 VPPCOM_ENOENT = -ENOENT,
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +0200137 VPPCOM_EADDRINUSE = -EADDRINUSE,
138 VPPCOM_ENOTSUP = -ENOTSUP
Dave Wallace543852a2017-08-03 02:11:34 -0400139} vppcom_error_t;
140
Dave Wallace35830af2017-10-09 01:43:42 -0400141typedef enum
142{
143 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -0500144 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -0400145 VPPCOM_ATTR_GET_FLAGS,
146 VPPCOM_ATTR_SET_FLAGS,
147 VPPCOM_ATTR_GET_LCL_ADDR,
Florin Corasef7cbf62019-10-17 09:56:27 -0700148 VPPCOM_ATTR_SET_LCL_ADDR,
Dave Wallace35830af2017-10-09 01:43:42 -0400149 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500150 VPPCOM_ATTR_GET_LIBC_EPFD,
151 VPPCOM_ATTR_SET_LIBC_EPFD,
152 VPPCOM_ATTR_GET_PROTOCOL,
153 VPPCOM_ATTR_GET_LISTEN,
154 VPPCOM_ATTR_GET_ERROR,
155 VPPCOM_ATTR_GET_TX_FIFO_LEN,
156 VPPCOM_ATTR_SET_TX_FIFO_LEN,
157 VPPCOM_ATTR_GET_RX_FIFO_LEN,
158 VPPCOM_ATTR_SET_RX_FIFO_LEN,
159 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700160 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500161 VPPCOM_ATTR_GET_REUSEPORT,
162 VPPCOM_ATTR_SET_REUSEPORT,
163 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700164 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500165 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700166 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500167 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700168 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500169 VPPCOM_ATTR_GET_TCP_NODELAY,
170 VPPCOM_ATTR_SET_TCP_NODELAY,
171 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700172 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500173 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700174 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500175 VPPCOM_ATTR_GET_TCP_USER_MSS,
176 VPPCOM_ATTR_SET_TCP_USER_MSS,
Florin Coras1e966172020-05-16 18:18:14 +0000177 VPPCOM_ATTR_SET_CONNECTED,
Florin Corasa5a9efd2021-01-05 17:03:29 -0800178 VPPCOM_ATTR_SET_CKPAIR,
Florin Coras6a6555a2021-01-28 11:39:27 -0800179 VPPCOM_ATTR_SET_VRF,
180 VPPCOM_ATTR_GET_VRF,
wanghanlin0674f852021-02-22 10:38:36 +0800181 VPPCOM_ATTR_GET_DOMAIN,
Florin Coras87f63892021-05-01 16:01:40 -0700182 VPPCOM_ATTR_SET_ENDPT_EXT_CFG,
Filip Tehlar2f09bfc2021-11-15 10:26:56 +0000183 VPPCOM_ATTR_SET_DSCP,
Florin Coraseff5f7a2023-02-07 17:36:17 -0800184 VPPCOM_ATTR_SET_IP_PKTINFO,
185 VPPCOM_ATTR_GET_IP_PKTINFO,
qinyangaf9b7152023-06-27 01:11:53 -0700186 VPPCOM_ATTR_GET_ORIGINAL_DST,
Dave Wallace35830af2017-10-09 01:43:42 -0400187} vppcom_attr_op_t;
188
Dave Wallace048b1d62018-01-03 22:24:41 -0500189typedef struct _vcl_poll
190{
191 uint32_t fds_ndx;
Florin Coras7baeb712019-01-04 17:05:43 -0800192 vcl_session_handle_t sh;
Dave Wallace048b1d62018-01-03 22:24:41 -0500193 short events;
Florin Coras6917b942018-11-13 22:44:54 -0800194 short revents;
Dave Wallace048b1d62018-01-03 22:24:41 -0500195} vcl_poll_t;
196
Florin Coras2cba8532018-09-11 16:33:36 -0700197typedef struct vppcom_data_segment_
198{
199 unsigned char *data;
200 uint32_t len;
201} vppcom_data_segment_t;
202
203typedef vppcom_data_segment_t vppcom_data_segments_t[2];
204
Florin Coras294afe22019-01-07 17:49:17 -0800205typedef unsigned long vcl_si_set;
206
Dave Wallace543852a2017-08-03 02:11:34 -0400207/*
208 * VPPCOM Public API Functions
209 */
Dave Wallace543852a2017-08-03 02:11:34 -0400210
Florin Coras66ec4672020-06-15 07:59:40 -0700211extern int vppcom_app_create (const char *app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400212extern void vppcom_app_destroy (void);
213
Dave Wallacec04cbf12018-02-07 18:14:02 -0500214extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
liuyacan55c952e2021-06-13 14:54:55 +0800215extern int vppcom_session_shutdown (uint32_t session_handle, int how);
Florin Coras134a9962018-08-28 11:32:04 -0700216extern int vppcom_session_close (uint32_t session_handle);
217extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
218extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
Dave Wallace543852a2017-08-03 02:11:34 -0400219
Florin Coras134a9962018-08-28 11:32:04 -0700220extern int vppcom_session_accept (uint32_t session_handle,
Dave Wallace048b1d62018-01-03 22:24:41 -0500221 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400222
Florin Coras134a9962018-08-28 11:32:04 -0700223extern int vppcom_session_connect (uint32_t session_handle,
Dave Wallace543852a2017-08-03 02:11:34 -0400224 vppcom_endpt_t * server_ep);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200225extern int vppcom_session_stream_connect (uint32_t session_handle,
226 uint32_t parent_session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700227extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
228extern int vppcom_session_write (uint32_t session_handle, void *buf,
229 size_t n);
Florin Corasb0f662f2018-12-27 14:51:46 -0800230extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
231 size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400232
Florin Coras294afe22019-01-07 17:49:17 -0800233extern int vppcom_select (int n_bits, vcl_si_set * read_map,
234 vcl_si_set * write_map, vcl_si_set * except_map,
235 double wait_for_time);
Dave Wallace543852a2017-08-03 02:11:34 -0400236
Dave Wallacef7f809c2017-10-03 01:48:42 -0400237extern int vppcom_epoll_create (void);
Florin Coras134a9962018-08-28 11:32:04 -0700238extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
239 uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400240 struct epoll_event *event);
Florin Coras134a9962018-08-28 11:32:04 -0700241extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400242 int maxevents, double wait_for_time);
Florin Coras134a9962018-08-28 11:32:04 -0700243extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -0400244 void *buffer, uint32_t * buflen);
Florin Coras134a9962018-08-28 11:32:04 -0700245extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700246 uint32_t buflen, int flags,
247 vppcom_endpt_t * ep);
Florin Coras134a9962018-08-28 11:32:04 -0700248extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700249 uint32_t buflen, int flags,
250 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500251extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
252 double wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -0700253extern int vppcom_mq_epoll_fd (void);
Florin Coras30e79c22019-01-02 19:31:22 -0800254extern int vppcom_session_index (vcl_session_handle_t session_handle);
255extern int vppcom_session_worker (vcl_session_handle_t session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700256
Florin Coras2cba8532018-09-11 16:33:36 -0700257extern int vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700258 vppcom_data_segment_t * ds,
259 uint32_t n_segments,
260 uint32_t max_bytes);
Florin Coras2cba8532018-09-11 16:33:36 -0700261extern void vppcom_session_free_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700262 uint32_t n_bytes);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800263extern int vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair);
264extern int vppcom_del_cert_key_pair (uint32_t ckpair_index);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200265extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
266extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
267extern int vppcom_session_listener (uint32_t session_handle);
268extern int vppcom_session_n_accepted (uint32_t session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -0700269
Florin Coras66ec4672020-06-15 07:59:40 -0700270extern const char *vppcom_proto_str (vppcom_proto_t proto);
271extern const char *vppcom_retval_str (int retval);
272
Florin Coras134a9962018-08-28 11:32:04 -0700273/**
274 * Request from application to register a new worker
275 *
276 * Expectation is that applications will make use of this after a new pthread
277 * is spawned.
278 */
279extern int vppcom_worker_register (void);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400280
Florin Corasdfe4cf42018-11-28 22:13:45 -0800281/**
Florin Coras369db832019-07-08 12:34:45 -0700282 * Unregister current worker
283 */
284extern void vppcom_worker_unregister (void);
285
286/**
Florin Corasdfe4cf42018-11-28 22:13:45 -0800287 * Retrieve current worker index
288 */
289extern int vppcom_worker_index (void);
290
Florin Corase0982e52019-01-25 13:19:56 -0800291/**
Pivo6017ff02020-05-04 17:57:33 +0200292 * Set current worker index
293 */
294extern void vppcom_worker_index_set (int);
295
296/**
Florin Corase0982e52019-01-25 13:19:56 -0800297 * Returns the current worker's message queues epoll fd
298 *
299 * This only works if vcl is configured to do eventfd based message queue
300 * notifications.
301 */
302extern int vppcom_worker_mqs_epfd (void);
303
Radha krishna Saragadamdd92bde2022-07-18 19:41:05 +0530304/**
305 * Returns Session error
306 *
307 * Application can use this API to find the detailed session error
308 */
309extern int vppcom_session_get_error (uint32_t session_handle);
310
Maros Ondrejicka6ff8e902022-10-06 18:17:05 +0200311/**
312 * Returns true if current worker is disconnected from vpp
313 *
314 * Application can use this API to check if VPP is disconnected
315 * as long as `use-mq-eventfd` is being set
316 */
317extern int vppcom_worker_is_detached (void);
318
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800319#ifdef __cplusplus
320}
321#endif
Florin Coraseff5f7a2023-02-07 17:36:17 -0800322/* clang-format on */
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800323
Dave Wallace543852a2017-08-03 02:11:34 -0400324#endif /* included_vppcom_h */
325
326/*
327 * fd.io coding-style-patch-verification: ON
328 *
329 * Local Variables:
330 * eval: (c-set-style "gnu")
331 * End:
332 */