blob: 49cff413ec8191d1fcdf04efcd720673fffbe7c6 [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>
Dave Wallace048b1d62018-01-03 22:24:41 -050021#include <sys/poll.h>
Dave Wallacef7f809c2017-10-03 01:48:42 -040022#include <sys/epoll.h>
Dave Wallace543852a2017-08-03 02:11:34 -040023
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -080024/* *INDENT-OFF* */
25#ifdef __cplusplus
26extern "C"
27{
28#endif
29/* *INDENT-ON* */
30
Dave Wallace543852a2017-08-03 02:11:34 -040031/*
32 * VPPCOM Public API Definitions, Enums, and Data Structures
33 */
Florin Coras7baeb712019-01-04 17:05:43 -080034#define INVALID_SESSION_ID ((u32)~0)
Florin Coras99368312018-08-02 10:45:44 -070035#define VPPCOM_CONF_DEFAULT "/etc/vpp/vcl.conf"
36#define VPPCOM_ENV_CONF "VCL_CONFIG"
37#define VPPCOM_ENV_DEBUG "VCL_DEBUG"
38#define VPPCOM_ENV_API_PREFIX "VCL_API_PREFIX"
39#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"
Dave Wallace543852a2017-08-03 02:11:34 -040046
47typedef enum
48{
49 VPPCOM_PROTO_TCP = 0,
50 VPPCOM_PROTO_UDP,
Ping Yu34a3a082018-11-30 19:16:17 -050051 VPPCOM_PROTO_SCTP,
52 VPPCOM_PROTO_NONE,
53 VPPCOM_PROTO_TLS,
54 VPPCOM_PROTO_UDPC
Dave Wallace543852a2017-08-03 02:11:34 -040055} vppcom_proto_t;
56
Dave Wallace048b1d62018-01-03 22:24:41 -050057static inline char *
58vppcom_proto_str (vppcom_proto_t proto)
59{
60 char *proto_str;
61
62 switch (proto)
63 {
64 case VPPCOM_PROTO_TCP:
Ping Yu34a3a082018-11-30 19:16:17 -050065 proto_str = "TCP";
Dave Wallace048b1d62018-01-03 22:24:41 -050066 break;
67 case VPPCOM_PROTO_UDP:
Ping Yu34a3a082018-11-30 19:16:17 -050068 proto_str = "UDP";
69 break;
70 case VPPCOM_PROTO_SCTP:
71 proto_str = "SCTP";
72 break;
73 case VPPCOM_PROTO_TLS:
74 proto_str = "TLS";
75 break;
76 case VPPCOM_PROTO_UDPC:
77 proto_str = "UDPC";
Dave Wallace048b1d62018-01-03 22:24:41 -050078 break;
79 default:
80 proto_str = "UNKNOWN";
81 break;
82 }
83 return proto_str;
84}
85
Dave Wallace543852a2017-08-03 02:11:34 -040086typedef enum
87{
88 VPPCOM_IS_IP6 = 0,
89 VPPCOM_IS_IP4,
90} vppcom_is_ip4_t;
91
92typedef struct vppcom_endpt_t_
93{
Dave Wallace543852a2017-08-03 02:11:34 -040094 uint8_t is_cut_thru;
95 uint8_t is_ip4;
96 uint8_t *ip;
97 uint16_t port;
98} vppcom_endpt_t;
99
Florin Coras30e79c22019-01-02 19:31:22 -0800100typedef uint32_t vcl_session_handle_t;
101
Dave Wallace543852a2017-08-03 02:11:34 -0400102typedef enum
103{
104 VPPCOM_OK = 0,
105 VPPCOM_EAGAIN = -EAGAIN,
Florin Coras54693d22018-07-17 10:46:29 -0700106 VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
Dave Wallace048b1d62018-01-03 22:24:41 -0500107 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -0500108 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -0400109 VPPCOM_EINVAL = -EINVAL,
110 VPPCOM_EBADFD = -EBADFD,
111 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -0500112 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -0400113 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -0500114 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -0400115 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
116 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
Florin Coras134a9962018-08-28 11:32:04 -0700117 VPPCOM_EEXIST = -EEXIST
Dave Wallace543852a2017-08-03 02:11:34 -0400118} vppcom_error_t;
119
Dave Wallace35830af2017-10-09 01:43:42 -0400120typedef enum
121{
122 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -0500123 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -0400124 VPPCOM_ATTR_GET_FLAGS,
125 VPPCOM_ATTR_SET_FLAGS,
126 VPPCOM_ATTR_GET_LCL_ADDR,
127 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500128 VPPCOM_ATTR_GET_LIBC_EPFD,
129 VPPCOM_ATTR_SET_LIBC_EPFD,
130 VPPCOM_ATTR_GET_PROTOCOL,
131 VPPCOM_ATTR_GET_LISTEN,
132 VPPCOM_ATTR_GET_ERROR,
133 VPPCOM_ATTR_GET_TX_FIFO_LEN,
134 VPPCOM_ATTR_SET_TX_FIFO_LEN,
135 VPPCOM_ATTR_GET_RX_FIFO_LEN,
136 VPPCOM_ATTR_SET_RX_FIFO_LEN,
137 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700138 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500139 VPPCOM_ATTR_GET_REUSEPORT,
140 VPPCOM_ATTR_SET_REUSEPORT,
141 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700142 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500143 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700144 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500145 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700146 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500147 VPPCOM_ATTR_GET_TCP_NODELAY,
148 VPPCOM_ATTR_SET_TCP_NODELAY,
149 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700150 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500151 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700152 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500153 VPPCOM_ATTR_GET_TCP_USER_MSS,
154 VPPCOM_ATTR_SET_TCP_USER_MSS,
Florin Coras7baeb712019-01-04 17:05:43 -0800155 VPPCOM_ATTR_SET_SHUT,
156 VPPCOM_ATTR_GET_SHUT,
Dave Wallace35830af2017-10-09 01:43:42 -0400157} vppcom_attr_op_t;
158
Dave Wallace048b1d62018-01-03 22:24:41 -0500159typedef struct _vcl_poll
160{
161 uint32_t fds_ndx;
Florin Coras7baeb712019-01-04 17:05:43 -0800162 vcl_session_handle_t sh;
Dave Wallace048b1d62018-01-03 22:24:41 -0500163 short events;
Florin Coras6917b942018-11-13 22:44:54 -0800164 short revents;
Dave Wallace048b1d62018-01-03 22:24:41 -0500165} vcl_poll_t;
166
Florin Coras2cba8532018-09-11 16:33:36 -0700167typedef struct vppcom_data_segment_
168{
169 unsigned char *data;
170 uint32_t len;
171} vppcom_data_segment_t;
172
173typedef vppcom_data_segment_t vppcom_data_segments_t[2];
174
Florin Coras294afe22019-01-07 17:49:17 -0800175typedef unsigned long vcl_si_set;
176
Dave Wallace543852a2017-08-03 02:11:34 -0400177/*
178 * VPPCOM Public API Functions
179 */
180static inline const char *
181vppcom_retval_str (int retval)
182{
183 char *st;
184
185 switch (retval)
186 {
187 case VPPCOM_OK:
188 st = "VPPCOM_OK";
189 break;
190
191 case VPPCOM_EAGAIN:
192 st = "VPPCOM_EAGAIN";
193 break;
194
Dave Wallace048b1d62018-01-03 22:24:41 -0500195 case VPPCOM_EFAULT:
196 st = "VPPCOM_EFAULT";
197 break;
198
Dave Wallacee376f932017-11-19 11:20:02 -0500199 case VPPCOM_ENOMEM:
200 st = "VPPCOM_ENOMEM";
201 break;
202
Dave Wallace543852a2017-08-03 02:11:34 -0400203 case VPPCOM_EINVAL:
204 st = "VPPCOM_EINVAL";
205 break;
206
207 case VPPCOM_EBADFD:
208 st = "VPPCOM_EBADFD";
209 break;
210
211 case VPPCOM_EAFNOSUPPORT:
212 st = "VPPCOM_EAFNOSUPPORT";
213 break;
214
Dave Wallaceee45d412017-11-24 21:44:06 -0500215 case VPPCOM_ECONNABORTED:
216 st = "VPPCOM_ECONNABORTED";
217 break;
218
Dave Wallace543852a2017-08-03 02:11:34 -0400219 case VPPCOM_ECONNRESET:
220 st = "VPPCOM_ECONNRESET";
221 break;
222
Dave Wallace4878cbe2017-11-21 03:45:09 -0500223 case VPPCOM_ENOTCONN:
224 st = "VPPCOM_ENOTCONN";
225 break;
226
Dave Wallace543852a2017-08-03 02:11:34 -0400227 case VPPCOM_ECONNREFUSED:
228 st = "VPPCOM_ECONNREFUSED";
229 break;
230
231 case VPPCOM_ETIMEDOUT:
232 st = "VPPCOM_ETIMEDOUT";
233 break;
234
235 default:
236 st = "UNKNOWN_STATE";
237 break;
238 }
239
240 return st;
241}
242
Dave Wallace543852a2017-08-03 02:11:34 -0400243/* TBD: make these constructor/destructor function */
244extern int vppcom_app_create (char *app_name);
245extern void vppcom_app_destroy (void);
246
Dave Wallacec04cbf12018-02-07 18:14:02 -0500247extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
Florin Coras134a9962018-08-28 11:32:04 -0700248extern int vppcom_session_close (uint32_t session_handle);
249extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
250extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
Dave Wallace543852a2017-08-03 02:11:34 -0400251
Florin Coras134a9962018-08-28 11:32:04 -0700252extern int vppcom_session_accept (uint32_t session_handle,
Dave Wallace048b1d62018-01-03 22:24:41 -0500253 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400254
Florin Coras134a9962018-08-28 11:32:04 -0700255extern int vppcom_session_connect (uint32_t session_handle,
Dave Wallace543852a2017-08-03 02:11:34 -0400256 vppcom_endpt_t * server_ep);
Florin Coras134a9962018-08-28 11:32:04 -0700257extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
258extern int vppcom_session_write (uint32_t session_handle, void *buf,
259 size_t n);
Florin Corasb0f662f2018-12-27 14:51:46 -0800260extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
261 size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400262
Florin Coras294afe22019-01-07 17:49:17 -0800263extern int vppcom_select (int n_bits, vcl_si_set * read_map,
264 vcl_si_set * write_map, vcl_si_set * except_map,
265 double wait_for_time);
Dave Wallace543852a2017-08-03 02:11:34 -0400266
Dave Wallacef7f809c2017-10-03 01:48:42 -0400267extern int vppcom_epoll_create (void);
Florin Coras134a9962018-08-28 11:32:04 -0700268extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
269 uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400270 struct epoll_event *event);
Florin Coras134a9962018-08-28 11:32:04 -0700271extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -0400272 int maxevents, double wait_for_time);
Florin Coras134a9962018-08-28 11:32:04 -0700273extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -0400274 void *buffer, uint32_t * buflen);
Florin Coras134a9962018-08-28 11:32:04 -0700275extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700276 uint32_t buflen, int flags,
277 vppcom_endpt_t * ep);
Florin Coras134a9962018-08-28 11:32:04 -0700278extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -0700279 uint32_t buflen, int flags,
280 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500281extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
282 double wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -0700283extern int vppcom_mq_epoll_fd (void);
Florin Coras30e79c22019-01-02 19:31:22 -0800284extern int vppcom_session_index (vcl_session_handle_t session_handle);
285extern int vppcom_session_worker (vcl_session_handle_t session_handle);
Florin Coras134a9962018-08-28 11:32:04 -0700286
Florin Coras2cba8532018-09-11 16:33:36 -0700287extern int vppcom_session_read_segments (uint32_t session_handle,
288 vppcom_data_segments_t ds);
289extern void vppcom_session_free_segments (uint32_t session_handle,
290 vppcom_data_segments_t ds);
Ping Yu34a3a082018-11-30 19:16:17 -0500291extern int vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
292 uint32_t cert_len);
293extern int vppcom_session_tls_add_key (uint32_t session_handle, char *key,
294 uint32_t key_len);
Florin Coras2cba8532018-09-11 16:33:36 -0700295extern int vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds,
296 uint32_t max_bytes);
297
Florin Coras134a9962018-08-28 11:32:04 -0700298/**
299 * Request from application to register a new worker
300 *
301 * Expectation is that applications will make use of this after a new pthread
302 * is spawned.
303 */
304extern int vppcom_worker_register (void);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400305
Florin Corasdfe4cf42018-11-28 22:13:45 -0800306/**
307 * Retrieve current worker index
308 */
309extern int vppcom_worker_index (void);
310
Florin Corase0982e52019-01-25 13:19:56 -0800311/**
312 * Returns the current worker's message queues epoll fd
313 *
314 * This only works if vcl is configured to do eventfd based message queue
315 * notifications.
316 */
317extern int vppcom_worker_mqs_epfd (void);
318
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800319/* *INDENT-OFF* */
320#ifdef __cplusplus
321}
322#endif
323/* *INDENT-ON* */
324
Dave Wallace543852a2017-08-03 02:11:34 -0400325#endif /* included_vppcom_h */
326
327/*
328 * fd.io coding-style-patch-verification: ON
329 *
330 * Local Variables:
331 * eval: (c-set-style "gnu")
332 * End:
333 */