blob: 34a69b2c2eced75be9157add4dec0e669cc8bdf6 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
2 * Copyright (c) 2017 Cisco and/or its affiliates.
3 * 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 */
Dave Wallace774169b2017-11-01 20:07:40 -040034#define INVALID_SESSION_ID (~0)
Dave Wallace774169b2017-11-01 20:07:40 -040035#define VPPCOM_CONF_DEFAULT "/etc/vpp/vcl.conf"
36#define VPPCOM_ENV_CONF "VCL_CONFIG"
Dave Wallace498b3a52017-11-09 13:00:34 -050037#define VPPCOM_ENV_DEBUG "VCL_DEBUG"
Dave Wallaceb5a86ee2018-02-16 18:26:11 -050038#define VPPCOM_ENV_API_PREFIX "VCL_API_PREFIX"
Dave Wallace774169b2017-11-01 20:07:40 -040039#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"
Dave Wallace543852a2017-08-03 02:11:34 -040045
46typedef enum
47{
48 VPPCOM_PROTO_TCP = 0,
49 VPPCOM_PROTO_UDP,
50} vppcom_proto_t;
51
Dave Wallace048b1d62018-01-03 22:24:41 -050052static inline char *
53vppcom_proto_str (vppcom_proto_t proto)
54{
55 char *proto_str;
56
57 switch (proto)
58 {
59 case VPPCOM_PROTO_TCP:
60 proto_str = "VPPCOM_PROTO_TCP";
61 break;
62 case VPPCOM_PROTO_UDP:
63 proto_str = "VPPCOM_PROTO_UDP";
64 break;
65 default:
66 proto_str = "UNKNOWN";
67 break;
68 }
69 return proto_str;
70}
71
Dave Wallace543852a2017-08-03 02:11:34 -040072typedef enum
73{
74 VPPCOM_IS_IP6 = 0,
75 VPPCOM_IS_IP4,
76} vppcom_is_ip4_t;
77
78typedef struct vppcom_endpt_t_
79{
Dave Wallace543852a2017-08-03 02:11:34 -040080 uint8_t is_cut_thru;
81 uint8_t is_ip4;
82 uint8_t *ip;
83 uint16_t port;
84} vppcom_endpt_t;
85
86typedef enum
87{
88 VPPCOM_OK = 0,
89 VPPCOM_EAGAIN = -EAGAIN,
Dave Wallace048b1d62018-01-03 22:24:41 -050090 VPPCOM_EFAULT = -EFAULT,
Dave Wallace60caa062017-11-10 17:07:13 -050091 VPPCOM_ENOMEM = -ENOMEM,
Dave Wallace543852a2017-08-03 02:11:34 -040092 VPPCOM_EINVAL = -EINVAL,
93 VPPCOM_EBADFD = -EBADFD,
94 VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
Dave Wallaceee45d412017-11-24 21:44:06 -050095 VPPCOM_ECONNABORTED = -ECONNABORTED,
Dave Wallace543852a2017-08-03 02:11:34 -040096 VPPCOM_ECONNRESET = -ECONNRESET,
Dave Wallace4878cbe2017-11-21 03:45:09 -050097 VPPCOM_ENOTCONN = -ENOTCONN,
Dave Wallace543852a2017-08-03 02:11:34 -040098 VPPCOM_ECONNREFUSED = -ECONNREFUSED,
99 VPPCOM_ETIMEDOUT = -ETIMEDOUT,
100} vppcom_error_t;
101
Dave Wallace35830af2017-10-09 01:43:42 -0400102typedef enum
103{
104 VPPCOM_ATTR_GET_NREAD,
Dave Wallace227867f2017-11-13 21:21:53 -0500105 VPPCOM_ATTR_GET_NWRITE,
Dave Wallace35830af2017-10-09 01:43:42 -0400106 VPPCOM_ATTR_GET_FLAGS,
107 VPPCOM_ATTR_SET_FLAGS,
108 VPPCOM_ATTR_GET_LCL_ADDR,
109 VPPCOM_ATTR_GET_PEER_ADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500110 VPPCOM_ATTR_GET_LIBC_EPFD,
111 VPPCOM_ATTR_SET_LIBC_EPFD,
112 VPPCOM_ATTR_GET_PROTOCOL,
113 VPPCOM_ATTR_GET_LISTEN,
114 VPPCOM_ATTR_GET_ERROR,
115 VPPCOM_ATTR_GET_TX_FIFO_LEN,
116 VPPCOM_ATTR_SET_TX_FIFO_LEN,
117 VPPCOM_ATTR_GET_RX_FIFO_LEN,
118 VPPCOM_ATTR_SET_RX_FIFO_LEN,
119 VPPCOM_ATTR_GET_REUSEADDR,
Stevenb5a11602017-10-11 09:59:30 -0700120 VPPCOM_ATTR_SET_REUSEADDR,
Dave Wallace048b1d62018-01-03 22:24:41 -0500121 VPPCOM_ATTR_GET_REUSEPORT,
122 VPPCOM_ATTR_SET_REUSEPORT,
123 VPPCOM_ATTR_GET_BROADCAST,
Stevenb5a11602017-10-11 09:59:30 -0700124 VPPCOM_ATTR_SET_BROADCAST,
Dave Wallace048b1d62018-01-03 22:24:41 -0500125 VPPCOM_ATTR_GET_V6ONLY,
Stevenb5a11602017-10-11 09:59:30 -0700126 VPPCOM_ATTR_SET_V6ONLY,
Dave Wallace048b1d62018-01-03 22:24:41 -0500127 VPPCOM_ATTR_GET_KEEPALIVE,
Stevenbccd3392017-10-12 20:42:21 -0700128 VPPCOM_ATTR_SET_KEEPALIVE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500129 VPPCOM_ATTR_GET_TCP_NODELAY,
130 VPPCOM_ATTR_SET_TCP_NODELAY,
131 VPPCOM_ATTR_GET_TCP_KEEPIDLE,
Stevenbccd3392017-10-12 20:42:21 -0700132 VPPCOM_ATTR_SET_TCP_KEEPIDLE,
Dave Wallace048b1d62018-01-03 22:24:41 -0500133 VPPCOM_ATTR_GET_TCP_KEEPINTVL,
Stevenbccd3392017-10-12 20:42:21 -0700134 VPPCOM_ATTR_SET_TCP_KEEPINTVL,
Dave Wallace048b1d62018-01-03 22:24:41 -0500135 VPPCOM_ATTR_GET_TCP_USER_MSS,
136 VPPCOM_ATTR_SET_TCP_USER_MSS,
Dave Wallace35830af2017-10-09 01:43:42 -0400137} vppcom_attr_op_t;
138
Dave Wallace048b1d62018-01-03 22:24:41 -0500139typedef struct _vcl_poll
140{
141 uint32_t fds_ndx;
142 uint32_t sid;
143 short events;
144 short *revents;
145} vcl_poll_t;
146
Dave Wallace543852a2017-08-03 02:11:34 -0400147/*
148 * VPPCOM Public API Functions
149 */
150static inline const char *
151vppcom_retval_str (int retval)
152{
153 char *st;
154
155 switch (retval)
156 {
157 case VPPCOM_OK:
158 st = "VPPCOM_OK";
159 break;
160
161 case VPPCOM_EAGAIN:
162 st = "VPPCOM_EAGAIN";
163 break;
164
Dave Wallace048b1d62018-01-03 22:24:41 -0500165 case VPPCOM_EFAULT:
166 st = "VPPCOM_EFAULT";
167 break;
168
Dave Wallacee376f932017-11-19 11:20:02 -0500169 case VPPCOM_ENOMEM:
170 st = "VPPCOM_ENOMEM";
171 break;
172
Dave Wallace543852a2017-08-03 02:11:34 -0400173 case VPPCOM_EINVAL:
174 st = "VPPCOM_EINVAL";
175 break;
176
177 case VPPCOM_EBADFD:
178 st = "VPPCOM_EBADFD";
179 break;
180
181 case VPPCOM_EAFNOSUPPORT:
182 st = "VPPCOM_EAFNOSUPPORT";
183 break;
184
Dave Wallaceee45d412017-11-24 21:44:06 -0500185 case VPPCOM_ECONNABORTED:
186 st = "VPPCOM_ECONNABORTED";
187 break;
188
Dave Wallace543852a2017-08-03 02:11:34 -0400189 case VPPCOM_ECONNRESET:
190 st = "VPPCOM_ECONNRESET";
191 break;
192
Dave Wallace4878cbe2017-11-21 03:45:09 -0500193 case VPPCOM_ENOTCONN:
194 st = "VPPCOM_ENOTCONN";
195 break;
196
Dave Wallace543852a2017-08-03 02:11:34 -0400197 case VPPCOM_ECONNREFUSED:
198 st = "VPPCOM_ECONNREFUSED";
199 break;
200
201 case VPPCOM_ETIMEDOUT:
202 st = "VPPCOM_ETIMEDOUT";
203 break;
204
205 default:
206 st = "UNKNOWN_STATE";
207 break;
208 }
209
210 return st;
211}
212
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -0800213/**
214 * User registered callback for when connection arrives on listener created
215 * with vppcom_session_register_listener()
216 * @param uint32_t - newly accepted session_index
217 * @param vppcom_endpt_t* - ip/port information of remote
218 * @param void* - user passed arg to pass back
219 */
220typedef void (*vppcom_session_listener_cb) (uint32_t, vppcom_endpt_t *,
221 void *);
222
223/**
224 * User registered ERROR callback for any errors associated with
225 * handling vppcom_session_register_listener() and connections
226 * @param void* - user passed arg to pass back
227 */
228typedef void (*vppcom_session_listener_errcb) (void *);
229
230/**
231 * @brief vppcom_session_register_listener accepts a bound session_index, and
232 * listens for connections.
233 *
234 * On successful connection, calls registered callback (cb) with new
235 * session_index.
236 *
237 * On error, calls registered error callback (errcb).
238 *
239 * @param session_index - bound session_index to create listener on
240 * @param cb - on new accepted session callback
241 * @param errcb - on failure callback
242 * @param flags - placeholder for future use. Must be ZERO
243 * @param q_len - max listener connection backlog
244 * @param ptr - user data
245 * @return
246 */
247extern int vppcom_session_register_listener (uint32_t session_index,
248 vppcom_session_listener_cb cb,
249 vppcom_session_listener_errcb
250 errcb, uint8_t flags, int q_len,
251 void *ptr);
252
Dave Wallace543852a2017-08-03 02:11:34 -0400253/* TBD: make these constructor/destructor function */
254extern int vppcom_app_create (char *app_name);
255extern void vppcom_app_destroy (void);
256
Dave Wallacec04cbf12018-02-07 18:14:02 -0500257extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
Dave Wallace543852a2017-08-03 02:11:34 -0400258extern int vppcom_session_close (uint32_t session_index);
259
260extern int vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep);
261extern int vppcom_session_listen (uint32_t session_index, uint32_t q_len);
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -0800262
Dave Wallace543852a2017-08-03 02:11:34 -0400263extern int vppcom_session_accept (uint32_t session_index,
Dave Wallace048b1d62018-01-03 22:24:41 -0500264 vppcom_endpt_t * client_ep, uint32_t flags);
Dave Wallace543852a2017-08-03 02:11:34 -0400265
266extern int vppcom_session_connect (uint32_t session_index,
267 vppcom_endpt_t * server_ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500268extern int vppcom_session_read (uint32_t session_index, void *buf, size_t n);
269extern int vppcom_session_write (uint32_t session_index, void *buf, size_t n);
Dave Wallace543852a2017-08-03 02:11:34 -0400270
271extern int vppcom_select (unsigned long n_bits,
272 unsigned long *read_map,
273 unsigned long *write_map,
274 unsigned long *except_map, double wait_for_time);
275
Dave Wallacef7f809c2017-10-03 01:48:42 -0400276extern int vppcom_epoll_create (void);
277extern int vppcom_epoll_ctl (uint32_t vep_idx, int op,
278 uint32_t session_index,
279 struct epoll_event *event);
280extern int vppcom_epoll_wait (uint32_t vep_idx, struct epoll_event *events,
281 int maxevents, double wait_for_time);
Dave Wallace35830af2017-10-09 01:43:42 -0400282extern int vppcom_session_attr (uint32_t session_index, uint32_t op,
283 void *buffer, uint32_t * buflen);
Stevenac1f96d2017-10-24 16:03:58 -0700284extern int vppcom_session_recvfrom (uint32_t session_index, void *buffer,
285 uint32_t buflen, int flags,
286 vppcom_endpt_t * ep);
287extern int vppcom_session_sendto (uint32_t session_index, void *buffer,
288 uint32_t buflen, int flags,
289 vppcom_endpt_t * ep);
Dave Wallace048b1d62018-01-03 22:24:41 -0500290extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
291 double wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400292
Keith Burns (alagalah)5a2946c2018-02-02 08:21:56 -0800293/* *INDENT-OFF* */
294#ifdef __cplusplus
295}
296#endif
297/* *INDENT-ON* */
298
Dave Wallace543852a2017-08-03 02:11:34 -0400299#endif /* included_vppcom_h */
300
301/*
302 * fd.io coding-style-patch-verification: ON
303 *
304 * Local Variables:
305 * eval: (c-set-style "gnu")
306 * End:
307 */