blob: 09303008870febfab021544a01f96d3f285da530 [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
48typedef enum
49{
50 VPPCOM_PROTO_TCP = 0,
51 VPPCOM_PROTO_UDP,
Ping Yu34a3a082018-11-30 19:16:17 -050052 VPPCOM_PROTO_NONE,
53 VPPCOM_PROTO_TLS,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +020054 VPPCOM_PROTO_QUIC,
Dave Wallace543852a2017-08-03 02:11:34 -040055} vppcom_proto_t;
56
57typedef enum
58{
59 VPPCOM_IS_IP6 = 0,
60 VPPCOM_IS_IP4,
61} vppcom_is_ip4_t;
62
63typedef struct vppcom_endpt_t_
64{
Dave Wallace543852a2017-08-03 02:11:34 -040065 uint8_t is_cut_thru;
66 uint8_t is_ip4;
67 uint8_t *ip;
68 uint16_t port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +020069 uint64_t parent_handle;
Dave Wallace543852a2017-08-03 02:11:34 -040070} vppcom_endpt_t;
71
Florin Coras30e79c22019-01-02 19:31:22 -080072typedef uint32_t vcl_session_handle_t;
73
Dave Wallace543852a2017-08-03 02:11:34 -040074typedef enum
75{
76 VPPCOM_OK = 0,
77 VPPCOM_EAGAIN = -EAGAIN,
Florin Coras54693d22018-07-17 10:46:29 -070078 VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
Florin Coras57c88932019-08-29 12:03:17 -070079 VPPCOM_EINPROGRESS = -EINPROGRESS,
Dave Wallace048b1d62018-01-03 22:24:41 -050080 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -050081 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -040082 VPPCOM_EINVAL = -EINVAL,
83 VPPCOM_EBADFD = -EBADFD,
84 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -050085 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -040086 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -050087 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -040088 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
89 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
Florin Coras134a9962018-08-28 11:32:04 -070090 VPPCOM_EEXIST = -EEXIST
Dave Wallace543852a2017-08-03 02:11:34 -040091} vppcom_error_t;
92
Dave Wallace35830af2017-10-09 01:43:42 -040093typedef enum
94{
95 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -050096 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -040097 VPPCOM_ATTR_GET_FLAGS,
98 VPPCOM_ATTR_SET_FLAGS,
99 VPPCOM_ATTR_GET_LCL_ADDR,
Florin Corasef7cbf62019-10-17 09:56:27 -0700100 VPPCOM_ATTR_SET_LCL_ADDR,
Dave Wallace35830af2017-10-09 01:43:42 -0400101 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500102 VPPCOM_ATTR_GET_LIBC_EPFD,
103 VPPCOM_ATTR_SET_LIBC_EPFD,
104 VPPCOM_ATTR_GET_PROTOCOL,
105 VPPCOM_ATTR_GET_LISTEN,
106 VPPCOM_ATTR_GET_ERROR,
107 VPPCOM_ATTR_GET_TX_FIFO_LEN,
108 VPPCOM_ATTR_SET_TX_FIFO_LEN,
109 VPPCOM_ATTR_GET_RX_FIFO_LEN,
110 VPPCOM_ATTR_SET_RX_FIFO_LEN,
111 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700112 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500113 VPPCOM_ATTR_GET_REUSEPORT,
114 VPPCOM_ATTR_SET_REUSEPORT,
115 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700116 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500117 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700118 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500119 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700120 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500121 VPPCOM_ATTR_GET_TCP_NODELAY,
122 VPPCOM_ATTR_SET_TCP_NODELAY,
123 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700124 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500125 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700126 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500127 VPPCOM_ATTR_GET_TCP_USER_MSS,
128 VPPCOM_ATTR_SET_TCP_USER_MSS,
Florin Coras7baeb712019-01-04 17:05:43 -0800129 VPPCOM_ATTR_SET_SHUT,
130 VPPCOM_ATTR_GET_SHUT,
Florin Coras1e966172020-05-16 18:18:14 +0000131 VPPCOM_ATTR_SET_CONNECTED,
Dave Wallace35830af2017-10-09 01:43:42 -0400132} vppcom_attr_op_t;
133
Dave Wallace048b1d62018-01-03 22:24:41 -0500134typedef struct _vcl_poll
135{
136 uint32_t fds_ndx;
Florin Coras7baeb712019-01-04 17:05:43 -0800137 vcl_session_handle_t sh;
Dave Wallace048b1d62018-01-03 22:24:41 -0500138 short events;
Florin Coras6917b942018-11-13 22:44:54 -0800139 short revents;
Dave Wallace048b1d62018-01-03 22:24:41 -0500140} vcl_poll_t;
141
Florin Coras2cba8532018-09-11 16:33:36 -0700142typedef struct vppcom_data_segment_
143{
144 unsigned char *data;
145 uint32_t len;
146} vppcom_data_segment_t;
147
148typedef vppcom_data_segment_t vppcom_data_segments_t[2];
149
Florin Coras294afe22019-01-07 17:49:17 -0800150typedef unsigned long vcl_si_set;
151
Dave Wallace543852a2017-08-03 02:11:34 -0400152/*
153 * VPPCOM Public API Functions
154 */
Dave Wallace543852a2017-08-03 02:11:34 -0400155
Florin Coras66ec4672020-06-15 07:59:40 -0700156extern int vppcom_app_create (const char *app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400157extern void vppcom_app_destroy (void);
158
Dave Wallacec04cbf12018-02-07 18:14:02 -0500159extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
Florin Coras134a9962018-08-28 11:32:04 -0700160extern int vppcom_session_close (uint32_t session_handle);
161extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
162extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
Dave Wallace543852a2017-08-03 02:11:34 -0400163
Florin Coras134a9962018-08-28 11:32:04 -0700164extern int vppcom_session_accept (uint32_t session_handle,
Dave Wallace048b1d62018-01-03 22:24:41 -0500165 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400166
Florin Coras134a9962018-08-28 11:32:04 -0700167extern int vppcom_session_connect (uint32_t session_handle,
Dave Wallace543852a2017-08-03 02:11:34 -0400168 vppcom_endpt_t * server_ep);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200169extern int vppcom_session_stream_connect (uint32_t session_handle,
170 uint32_t parent_session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700171extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
172extern int vppcom_session_write (uint32_t session_handle, void *buf,
173 size_t n);
Florin Corasb0f662f2018-12-27 14:51:46 -0800174extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
175 size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400176
Florin Coras294afe22019-01-07 17:49:17 -0800177extern int vppcom_select (int n_bits, vcl_si_set * read_map,
178 vcl_si_set * write_map, vcl_si_set * except_map,
179 double wait_for_time);
Dave Wallace543852a2017-08-03 02:11:34 -0400180
Dave Wallacef7f809c2017-10-03 01:48:42 -0400181extern int vppcom_epoll_create (void);
Florin Coras134a9962018-08-28 11:32:04 -0700182extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
183 uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400184 struct epoll_event *event);
Florin Coras134a9962018-08-28 11:32:04 -0700185extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400186 int maxevents, double wait_for_time);
Florin Coras134a9962018-08-28 11:32:04 -0700187extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -0400188 void *buffer, uint32_t * buflen);
Florin Coras134a9962018-08-28 11:32:04 -0700189extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700190 uint32_t buflen, int flags,
191 vppcom_endpt_t * ep);
Florin Coras134a9962018-08-28 11:32:04 -0700192extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700193 uint32_t buflen, int flags,
194 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500195extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
196 double wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -0700197extern int vppcom_mq_epoll_fd (void);
Florin Coras30e79c22019-01-02 19:31:22 -0800198extern int vppcom_session_index (vcl_session_handle_t session_handle);
199extern int vppcom_session_worker (vcl_session_handle_t session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700200
Florin Coras2cba8532018-09-11 16:33:36 -0700201extern int vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700202 vppcom_data_segment_t * ds,
203 uint32_t n_segments,
204 uint32_t max_bytes);
Florin Coras2cba8532018-09-11 16:33:36 -0700205extern void vppcom_session_free_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -0700206 uint32_t n_bytes);
Ping Yu34a3a082018-11-30 19:16:17 -0500207extern int vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
208 uint32_t cert_len);
209extern int vppcom_session_tls_add_key (uint32_t session_handle, char *key,
210 uint32_t key_len);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200211extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
212extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
213extern int vppcom_session_listener (uint32_t session_handle);
214extern int vppcom_session_n_accepted (uint32_t session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -0700215
Florin Coras66ec4672020-06-15 07:59:40 -0700216extern const char *vppcom_proto_str (vppcom_proto_t proto);
217extern const char *vppcom_retval_str (int retval);
218
Florin Coras134a9962018-08-28 11:32:04 -0700219/**
220 * Request from application to register a new worker
221 *
222 * Expectation is that applications will make use of this after a new pthread
223 * is spawned.
224 */
225extern int vppcom_worker_register (void);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400226
Florin Corasdfe4cf42018-11-28 22:13:45 -0800227/**
Florin Coras369db832019-07-08 12:34:45 -0700228 * Unregister current worker
229 */
230extern void vppcom_worker_unregister (void);
231
232/**
Florin Corasdfe4cf42018-11-28 22:13:45 -0800233 * Retrieve current worker index
234 */
235extern int vppcom_worker_index (void);
236
Florin Corase0982e52019-01-25 13:19:56 -0800237/**
Pivo6017ff02020-05-04 17:57:33 +0200238 * Set current worker index
239 */
240extern void vppcom_worker_index_set (int);
241
242/**
Florin Corase0982e52019-01-25 13:19:56 -0800243 * Returns the current worker's message queues epoll fd
244 *
245 * This only works if vcl is configured to do eventfd based message queue
246 * notifications.
247 */
248extern int vppcom_worker_mqs_epfd (void);
249
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800250/* *INDENT-OFF* */
251#ifdef __cplusplus
252}
253#endif
254/* *INDENT-ON* */
255
Dave Wallace543852a2017-08-03 02:11:34 -0400256#endif /* included_vppcom_h */
257
258/*
259 * fd.io coding-style-patch-verification: ON
260 *
261 * Local Variables:
262 * eval: (c-set-style "gnu")
263 * End:
264 */