tcp: avoid updating rcv wnd in resets
[vpp.git] / src / vcl / vppcom.h
1 /*
2  * Copyright (c) 2017-2019 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>
21 #include <sys/fcntl.h>
22 #include <sys/poll.h>
23 #include <sys/epoll.h>
24
25 /* *INDENT-OFF* */
26 #ifdef __cplusplus
27 extern "C"
28 {
29 #endif
30 /* *INDENT-ON* */
31
32 /*
33  * VPPCOM Public API Definitions, Enums, and Data Structures
34  */
35 #define INVALID_SESSION_ID                      ((u32)~0)
36 #define VPPCOM_CONF_DEFAULT                     "/etc/vpp/vcl.conf"
37 #define VPPCOM_ENV_CONF                         "VCL_CONFIG"
38 #define VPPCOM_ENV_DEBUG                        "VCL_DEBUG"
39 #define VPPCOM_ENV_API_PREFIX                   "VCL_API_PREFIX"
40 #define VPPCOM_ENV_APP_PROXY_TRANSPORT_TCP      "VCL_APP_PROXY_TRANSPORT_TCP"
41 #define VPPCOM_ENV_APP_PROXY_TRANSPORT_UDP      "VCL_APP_PROXY_TRANSPORT_UDP"
42 #define VPPCOM_ENV_APP_NAMESPACE_ID             "VCL_APP_NAMESPACE_ID"
43 #define VPPCOM_ENV_APP_NAMESPACE_SECRET         "VCL_APP_NAMESPACE_SECRET"
44 #define VPPCOM_ENV_APP_SCOPE_LOCAL              "VCL_APP_SCOPE_LOCAL"
45 #define VPPCOM_ENV_APP_SCOPE_GLOBAL             "VCL_APP_SCOPE_GLOBAL"
46 #define VPPCOM_ENV_VPP_API_SOCKET               "VCL_VPP_API_SOCKET"
47
48 typedef enum
49 {
50   VPPCOM_PROTO_TCP = 0,
51   VPPCOM_PROTO_UDP,
52   VPPCOM_PROTO_SCTP,
53   VPPCOM_PROTO_NONE,
54   VPPCOM_PROTO_TLS,
55   VPPCOM_PROTO_UDPC,
56   VPPCOM_PROTO_QUIC,
57 } vppcom_proto_t;
58
59 static inline char *
60 vppcom_proto_str (vppcom_proto_t proto)
61 {
62   char *proto_str;
63
64   switch (proto)
65     {
66     case VPPCOM_PROTO_TCP:
67       proto_str = "TCP";
68       break;
69     case VPPCOM_PROTO_UDP:
70       proto_str = "UDP";
71       break;
72     case VPPCOM_PROTO_SCTP:
73       proto_str = "SCTP";
74       break;
75     case VPPCOM_PROTO_TLS:
76       proto_str = "TLS";
77       break;
78     case VPPCOM_PROTO_UDPC:
79       proto_str = "UDPC";
80       break;
81     case VPPCOM_PROTO_QUIC:
82       proto_str = "QUIC";
83       break;
84     default:
85       proto_str = "UNKNOWN";
86       break;
87     }
88   return proto_str;
89 }
90
91 static inline int
92 vcl_proto_is_dgram (uint8_t proto)
93 {
94   return proto == VPPCOM_PROTO_UDP || proto == VPPCOM_PROTO_UDPC;
95 }
96
97 typedef enum
98 {
99   VPPCOM_IS_IP6 = 0,
100   VPPCOM_IS_IP4,
101 } vppcom_is_ip4_t;
102
103 typedef struct vppcom_endpt_t_
104 {
105   uint8_t is_cut_thru;
106   uint8_t is_ip4;
107   uint8_t *ip;
108   uint16_t port;
109   uint64_t parent_handle;
110 } vppcom_endpt_t;
111
112 typedef uint32_t vcl_session_handle_t;
113
114 typedef enum
115 {
116   VPPCOM_OK = 0,
117   VPPCOM_EAGAIN = -EAGAIN,
118   VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
119   VPPCOM_EINPROGRESS = -EINPROGRESS,
120   VPPCOM_EFAULT = -EFAULT,
121   VPPCOM_ENOMEM = -ENOMEM,
122   VPPCOM_EINVAL = -EINVAL,
123   VPPCOM_EBADFD = -EBADFD,
124   VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
125   VPPCOM_ECONNABORTED = -ECONNABORTED,
126   VPPCOM_ECONNRESET = -ECONNRESET,
127   VPPCOM_ENOTCONN = -ENOTCONN,
128   VPPCOM_ECONNREFUSED = -ECONNREFUSED,
129   VPPCOM_ETIMEDOUT = -ETIMEDOUT,
130   VPPCOM_EEXIST = -EEXIST
131 } vppcom_error_t;
132
133 typedef enum
134 {
135   VPPCOM_ATTR_GET_NREAD,
136   VPPCOM_ATTR_GET_NWRITE,
137   VPPCOM_ATTR_GET_FLAGS,
138   VPPCOM_ATTR_SET_FLAGS,
139   VPPCOM_ATTR_GET_LCL_ADDR,
140   VPPCOM_ATTR_SET_LCL_ADDR,
141   VPPCOM_ATTR_GET_PEER_ADDR,
142   VPPCOM_ATTR_GET_LIBC_EPFD,
143   VPPCOM_ATTR_SET_LIBC_EPFD,
144   VPPCOM_ATTR_GET_PROTOCOL,
145   VPPCOM_ATTR_GET_LISTEN,
146   VPPCOM_ATTR_GET_ERROR,
147   VPPCOM_ATTR_GET_TX_FIFO_LEN,
148   VPPCOM_ATTR_SET_TX_FIFO_LEN,
149   VPPCOM_ATTR_GET_RX_FIFO_LEN,
150   VPPCOM_ATTR_SET_RX_FIFO_LEN,
151   VPPCOM_ATTR_GET_REUSEADDR,
152   VPPCOM_ATTR_SET_REUSEADDR,
153   VPPCOM_ATTR_GET_REUSEPORT,
154   VPPCOM_ATTR_SET_REUSEPORT,
155   VPPCOM_ATTR_GET_BROADCAST,
156   VPPCOM_ATTR_SET_BROADCAST,
157   VPPCOM_ATTR_GET_V6ONLY,
158   VPPCOM_ATTR_SET_V6ONLY,
159   VPPCOM_ATTR_GET_KEEPALIVE,
160   VPPCOM_ATTR_SET_KEEPALIVE,
161   VPPCOM_ATTR_GET_TCP_NODELAY,
162   VPPCOM_ATTR_SET_TCP_NODELAY,
163   VPPCOM_ATTR_GET_TCP_KEEPIDLE,
164   VPPCOM_ATTR_SET_TCP_KEEPIDLE,
165   VPPCOM_ATTR_GET_TCP_KEEPINTVL,
166   VPPCOM_ATTR_SET_TCP_KEEPINTVL,
167   VPPCOM_ATTR_GET_TCP_USER_MSS,
168   VPPCOM_ATTR_SET_TCP_USER_MSS,
169   VPPCOM_ATTR_SET_SHUT,
170   VPPCOM_ATTR_GET_SHUT,
171 } vppcom_attr_op_t;
172
173 typedef struct _vcl_poll
174 {
175   uint32_t fds_ndx;
176   vcl_session_handle_t sh;
177   short events;
178   short revents;
179 } vcl_poll_t;
180
181 typedef struct vppcom_data_segment_
182 {
183   unsigned char *data;
184   uint32_t len;
185 } vppcom_data_segment_t;
186
187 typedef vppcom_data_segment_t vppcom_data_segments_t[2];
188
189 typedef unsigned long vcl_si_set;
190
191 /*
192  * VPPCOM Public API Functions
193  */
194 static inline const char *
195 vppcom_retval_str (int retval)
196 {
197   char *st;
198
199   switch (retval)
200     {
201     case VPPCOM_OK:
202       st = "VPPCOM_OK";
203       break;
204
205     case VPPCOM_EAGAIN:
206       st = "VPPCOM_EAGAIN";
207       break;
208
209     case VPPCOM_EFAULT:
210       st = "VPPCOM_EFAULT";
211       break;
212
213     case VPPCOM_ENOMEM:
214       st = "VPPCOM_ENOMEM";
215       break;
216
217     case VPPCOM_EINVAL:
218       st = "VPPCOM_EINVAL";
219       break;
220
221     case VPPCOM_EBADFD:
222       st = "VPPCOM_EBADFD";
223       break;
224
225     case VPPCOM_EAFNOSUPPORT:
226       st = "VPPCOM_EAFNOSUPPORT";
227       break;
228
229     case VPPCOM_ECONNABORTED:
230       st = "VPPCOM_ECONNABORTED";
231       break;
232
233     case VPPCOM_ECONNRESET:
234       st = "VPPCOM_ECONNRESET";
235       break;
236
237     case VPPCOM_ENOTCONN:
238       st = "VPPCOM_ENOTCONN";
239       break;
240
241     case VPPCOM_ECONNREFUSED:
242       st = "VPPCOM_ECONNREFUSED";
243       break;
244
245     case VPPCOM_ETIMEDOUT:
246       st = "VPPCOM_ETIMEDOUT";
247       break;
248
249     default:
250       st = "UNKNOWN_STATE";
251       break;
252     }
253
254   return st;
255 }
256
257 /* TBD: make these constructor/destructor function */
258 extern int vppcom_app_create (char *app_name);
259 extern void vppcom_app_destroy (void);
260
261 extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
262 extern int vppcom_session_close (uint32_t session_handle);
263 extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
264 extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
265
266 extern int vppcom_session_accept (uint32_t session_handle,
267                                   vppcom_endpt_t * client_ep, uint32_t flags);
268
269 extern int vppcom_session_connect (uint32_t session_handle,
270                                    vppcom_endpt_t * server_ep);
271 extern int vppcom_session_stream_connect (uint32_t session_handle,
272                                           uint32_t parent_session_handle);
273 extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
274 extern int vppcom_session_write (uint32_t session_handle, void *buf,
275                                  size_t n);
276 extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
277                                      size_t n);
278
279 extern int vppcom_select (int n_bits, vcl_si_set * read_map,
280                           vcl_si_set * write_map, vcl_si_set * except_map,
281                           double wait_for_time);
282
283 extern int vppcom_epoll_create (void);
284 extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
285                              uint32_t session_handle,
286                              struct epoll_event *event);
287 extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
288                               int maxevents, double wait_for_time);
289 extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
290                                 void *buffer, uint32_t * buflen);
291 extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
292                                     uint32_t buflen, int flags,
293                                     vppcom_endpt_t * ep);
294 extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
295                                   uint32_t buflen, int flags,
296                                   vppcom_endpt_t * ep);
297 extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
298                         double wait_for_time);
299 extern int vppcom_mq_epoll_fd (void);
300 extern int vppcom_session_index (vcl_session_handle_t session_handle);
301 extern int vppcom_session_worker (vcl_session_handle_t session_handle);
302
303 extern int vppcom_session_read_segments (uint32_t session_handle,
304                                          vppcom_data_segments_t ds);
305 extern void vppcom_session_free_segments (uint32_t session_handle,
306                                           vppcom_data_segments_t ds);
307 extern int vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
308                                         uint32_t cert_len);
309 extern int vppcom_session_tls_add_key (uint32_t session_handle, char *key,
310                                        uint32_t key_len);
311 extern int vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds,
312                                      uint32_t max_bytes);
313 extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
314 extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
315 extern int vppcom_session_listener (uint32_t session_handle);
316 extern int vppcom_session_n_accepted (uint32_t session_handle);
317
318 /**
319  * Request from application to register a new worker
320  *
321  * Expectation is that applications will make use of this after a new pthread
322  * is spawned.
323  */
324 extern int vppcom_worker_register (void);
325
326 /**
327  * Unregister current worker
328  */
329 extern void vppcom_worker_unregister (void);
330
331 /**
332  * Retrieve current worker index
333  */
334 extern int vppcom_worker_index (void);
335
336 /**
337  * Returns the current worker's message queues epoll fd
338  *
339  * This only works if vcl is configured to do eventfd based message queue
340  * notifications.
341  */
342 extern int vppcom_worker_mqs_epfd (void);
343
344 /* *INDENT-OFF* */
345 #ifdef __cplusplus
346 }
347 #endif
348 /* *INDENT-ON* */
349
350 #endif /* included_vppcom_h */
351
352 /*
353  * fd.io coding-style-patch-verification: ON
354  *
355  * Local Variables:
356  * eval: (c-set-style "gnu")
357  * End:
358  */