blob: d956b5f93f7aef339b39f3059a223bbbaf10d34f [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
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"
Florin Coras99368312018-08-02 10:45:44 -070039#define VPPCOM_ENV_APP_PROXY_TRANSPORT_TCP "VCL_APP_PROXY_TRANSPORT_TCP"
40#define VPPCOM_ENV_APP_PROXY_TRANSPORT_UDP "VCL_APP_PROXY_TRANSPORT_UDP"
41#define VPPCOM_ENV_APP_NAMESPACE_ID "VCL_APP_NAMESPACE_ID"
42#define VPPCOM_ENV_APP_NAMESPACE_SECRET "VCL_APP_NAMESPACE_SECRET"
43#define VPPCOM_ENV_APP_SCOPE_LOCAL "VCL_APP_SCOPE_LOCAL"
44#define VPPCOM_ENV_APP_SCOPE_GLOBAL "VCL_APP_SCOPE_GLOBAL"
45#define VPPCOM_ENV_VPP_API_SOCKET "VCL_VPP_API_SOCKET"
Florin Coras165f3ae2020-11-08 18:04:33 -080046#define VPPCOM_ENV_VPP_SAPI_SOCKET "VCL_VPP_SAPI_SOCKET"
Dave Wallace543852a2017-08-03 02:11:34 -040047
Florin Coras4b47ee22020-11-19 13:38:26 -080048 typedef enum
49 {
50 VPPCOM_PROTO_TCP = 0,
51 VPPCOM_PROTO_UDP,
52 VPPCOM_PROTO_NONE,
53 VPPCOM_PROTO_TLS,
54 VPPCOM_PROTO_QUIC,
55 VPPCOM_PROTO_DTLS,
56 } vppcom_proto_t;
Dave Wallace543852a2017-08-03 02:11:34 -040057
Florin Coras4b47ee22020-11-19 13:38:26 -080058 typedef enum
59 {
60 VPPCOM_IS_IP6 = 0,
61 VPPCOM_IS_IP4,
62 } vppcom_is_ip4_t;
Dave Wallace543852a2017-08-03 02:11:34 -040063
Florin Coras4b47ee22020-11-19 13:38:26 -080064 typedef struct vppcom_endpt_t_
65 {
66 uint8_t is_cut_thru;
67 uint8_t is_ip4;
68 uint8_t *ip;
69 uint16_t port;
70 uint64_t parent_handle;
71 } vppcom_endpt_t;
Dave Wallace543852a2017-08-03 02:11:34 -040072
Florin Coras30e79c22019-01-02 19:31:22 -080073typedef uint32_t vcl_session_handle_t;
74
Florin Corasa5a9efd2021-01-05 17:03:29 -080075typedef struct vppcom_cert_key_pair_
76{
77 char *cert;
78 char *key;
79 uint32_t cert_len;
80 uint32_t key_len;
81} vppcom_cert_key_pair_t;
82
Dave Wallace543852a2017-08-03 02:11:34 -040083typedef enum
84{
85 VPPCOM_OK = 0,
86 VPPCOM_EAGAIN = -EAGAIN,
Florin Coras54693d22018-07-17 10:46:29 -070087 VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
Florin Coras57c88932019-08-29 12:03:17 -070088 VPPCOM_EINPROGRESS = -EINPROGRESS,
Dave Wallace048b1d62018-01-03 22:24:41 -050089 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -050090 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -040091 VPPCOM_EINVAL = -EINVAL,
92 VPPCOM_EBADFD = -EBADFD,
93 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -050094 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -040095 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -050096 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -040097 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
98 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
Florin Coras04ae8272021-04-12 19:55:37 -070099 VPPCOM_EEXIST = -EEXIST,
100 VPPCOM_ENOPROTOOPT = -ENOPROTOOPT
Dave Wallace543852a2017-08-03 02:11:34 -0400101} vppcom_error_t;
102
Dave Wallace35830af2017-10-09 01:43:42 -0400103typedef enum
104{
105 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -0500106 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -0400107 VPPCOM_ATTR_GET_FLAGS,
108 VPPCOM_ATTR_SET_FLAGS,
109 VPPCOM_ATTR_GET_LCL_ADDR,
Florin Corasef7cbf62019-10-17 09:56:27 -0700110 VPPCOM_ATTR_SET_LCL_ADDR,
Dave Wallace35830af2017-10-09 01:43:42 -0400111 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500112 VPPCOM_ATTR_GET_LIBC_EPFD,
113 VPPCOM_ATTR_SET_LIBC_EPFD,
114 VPPCOM_ATTR_GET_PROTOCOL,
115 VPPCOM_ATTR_GET_LISTEN,
116 VPPCOM_ATTR_GET_ERROR,
117 VPPCOM_ATTR_GET_TX_FIFO_LEN,
118 VPPCOM_ATTR_SET_TX_FIFO_LEN,
119 VPPCOM_ATTR_GET_RX_FIFO_LEN,
120 VPPCOM_ATTR_SET_RX_FIFO_LEN,
121 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700122 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500123 VPPCOM_ATTR_GET_REUSEPORT,
124 VPPCOM_ATTR_SET_REUSEPORT,
125 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700126 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500127 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700128 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500129 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700130 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500131 VPPCOM_ATTR_GET_TCP_NODELAY,
132 VPPCOM_ATTR_SET_TCP_NODELAY,
133 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700134 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500135 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700136 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500137 VPPCOM_ATTR_GET_TCP_USER_MSS,
138 VPPCOM_ATTR_SET_TCP_USER_MSS,
Florin Coras7baeb712019-01-04 17:05:43 -0800139 VPPCOM_ATTR_SET_SHUT,
140 VPPCOM_ATTR_GET_SHUT,
Florin Coras1e966172020-05-16 18:18:14 +0000141 VPPCOM_ATTR_SET_CONNECTED,
Florin Corasa5a9efd2021-01-05 17:03:29 -0800142 VPPCOM_ATTR_SET_CKPAIR,
Florin Coras6a6555a2021-01-28 11:39:27 -0800143 VPPCOM_ATTR_SET_VRF,
144 VPPCOM_ATTR_GET_VRF,
wanghanlin0674f852021-02-22 10:38:36 +0800145 VPPCOM_ATTR_GET_DOMAIN,
Dave Wallace35830af2017-10-09 01:43:42 -0400146} vppcom_attr_op_t;
147
Dave Wallace048b1d62018-01-03 22:24:41 -0500148typedef struct _vcl_poll
149{
150 uint32_t fds_ndx;
Florin Coras7baeb712019-01-04 17:05:43 -0800151 vcl_session_handle_t sh;
Dave Wallace048b1d62018-01-03 22:24:41 -0500152 short events;
Florin Coras6917b942018-11-13 22:44:54 -0800153 short revents;
Dave Wallace048b1d62018-01-03 22:24:41 -0500154} vcl_poll_t;
155
Florin Coras2cba8532018-09-11 16:33:36 -0700156typedef struct vppcom_data_segment_
157{
158 unsigned char *data;
159 uint32_t len;
160} vppcom_data_segment_t;
161
162typedef vppcom_data_segment_t vppcom_data_segments_t[2];
163
Florin Coras294afe22019-01-07 17:49:17 -0800164typedef unsigned long vcl_si_set;
165
Dave Wallace543852a2017-08-03 02:11:34 -0400166/*
167 * VPPCOM Public API Functions
168 */
Dave Wallace543852a2017-08-03 02:11:34 -0400169
Florin Coras66ec4672020-06-15 07:59:40 -0700170extern int vppcom_app_create (const char *app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400171extern void vppcom_app_destroy (void);
172
Dave Wallacec04cbf12018-02-07 18:14:02 -0500173extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
Florin Coras134a9962018-08-28 11:32:04 -0700174extern int vppcom_session_close (uint32_t session_handle);
175extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
176extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
Dave Wallace543852a2017-08-03 02:11:34 -0400177
Florin Coras134a9962018-08-28 11:32:04 -0700178extern int vppcom_session_accept (uint32_t session_handle,
Dave Wallace048b1d62018-01-03 22:24:41 -0500179 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400180
Florin Coras134a9962018-08-28 11:32:04 -0700181extern int vppcom_session_connect (uint32_t session_handle,
Dave Wallace543852a2017-08-03 02:11:34 -0400182 vppcom_endpt_t * server_ep);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200183extern int vppcom_session_stream_connect (uint32_t session_handle,
184 uint32_t parent_session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700185extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
186extern int vppcom_session_write (uint32_t session_handle, void *buf,
187 size_t n);
Florin Corasb0f662f2018-12-27 14:51:46 -0800188extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
189 size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400190
Florin Coras294afe22019-01-07 17:49:17 -0800191extern int vppcom_select (int n_bits, vcl_si_set * read_map,
192 vcl_si_set * write_map, vcl_si_set * except_map,
193 double wait_for_time);
Dave Wallace543852a2017-08-03 02:11:34 -0400194
Dave Wallacef7f809c2017-10-03 01:48:42 -0400195extern int vppcom_epoll_create (void);
Florin Coras134a9962018-08-28 11:32:04 -0700196extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
197 uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400198 struct epoll_event *event);
Florin Coras134a9962018-08-28 11:32:04 -0700199extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400200 int maxevents, double wait_for_time);
Florin Coras134a9962018-08-28 11:32:04 -0700201extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -0400202 void *buffer, uint32_t * buflen);
Florin Coras134a9962018-08-28 11:32:04 -0700203extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700204 uint32_t buflen, int flags,
205 vppcom_endpt_t * ep);
Florin Coras134a9962018-08-28 11:32:04 -0700206extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700207 uint32_t buflen, int flags,
208 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500209extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
210 double wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -0700211extern int vppcom_mq_epoll_fd (void);
Florin Coras30e79c22019-01-02 19:31:22 -0800212extern int vppcom_session_index (vcl_session_handle_t session_handle);
213extern int vppcom_session_worker (vcl_session_handle_t session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700214
Florin Coras2cba8532018-09-11 16:33:36 -0700215extern int vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700216 vppcom_data_segment_t * ds,
217 uint32_t n_segments,
218 uint32_t max_bytes);
Florin Coras2cba8532018-09-11 16:33:36 -0700219extern void vppcom_session_free_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700220 uint32_t n_bytes);
Florin Corasa5a9efd2021-01-05 17:03:29 -0800221extern int vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair);
222extern int vppcom_del_cert_key_pair (uint32_t ckpair_index);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200223extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
224extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
225extern int vppcom_session_listener (uint32_t session_handle);
226extern int vppcom_session_n_accepted (uint32_t session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -0700227
Florin Coras66ec4672020-06-15 07:59:40 -0700228extern const char *vppcom_proto_str (vppcom_proto_t proto);
229extern const char *vppcom_retval_str (int retval);
230
Florin Coras134a9962018-08-28 11:32:04 -0700231/**
232 * Request from application to register a new worker
233 *
234 * Expectation is that applications will make use of this after a new pthread
235 * is spawned.
236 */
237extern int vppcom_worker_register (void);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400238
Florin Corasdfe4cf42018-11-28 22:13:45 -0800239/**
Florin Coras369db832019-07-08 12:34:45 -0700240 * Unregister current worker
241 */
242extern void vppcom_worker_unregister (void);
243
244/**
Florin Corasdfe4cf42018-11-28 22:13:45 -0800245 * Retrieve current worker index
246 */
247extern int vppcom_worker_index (void);
248
Florin Corase0982e52019-01-25 13:19:56 -0800249/**
Pivo6017ff02020-05-04 17:57:33 +0200250 * Set current worker index
251 */
252extern void vppcom_worker_index_set (int);
253
254/**
Florin Corase0982e52019-01-25 13:19:56 -0800255 * Returns the current worker's message queues epoll fd
256 *
257 * This only works if vcl is configured to do eventfd based message queue
258 * notifications.
259 */
260extern int vppcom_worker_mqs_epfd (void);
261
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800262/* *INDENT-OFF* */
263#ifdef __cplusplus
264}
265#endif
266/* *INDENT-ON* */
267
Dave Wallace543852a2017-08-03 02:11:34 -0400268#endif /* included_vppcom_h */
269
270/*
271 * fd.io coding-style-patch-verification: ON
272 *
273 * Local Variables:
274 * eval: (c-set-style "gnu")
275 * End:
276 */