vcl/session: add api for changing session app worker
[vpp.git] / src / vcl / vppcom.h
1 /*
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>
21 #include <sys/poll.h>
22 #include <sys/epoll.h>
23
24 /* *INDENT-OFF* */
25 #ifdef __cplusplus
26 extern "C"
27 {
28 #endif
29 /* *INDENT-ON* */
30
31 /*
32  * VPPCOM Public API Definitions, Enums, and Data Structures
33  */
34 #define INVALID_SESSION_ID                      (~0)
35 #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"
46
47 typedef enum
48 {
49   VPPCOM_PROTO_TCP = 0,
50   VPPCOM_PROTO_UDP,
51   VPPCOM_PROTO_SCTP,
52   VPPCOM_PROTO_NONE,
53   VPPCOM_PROTO_TLS,
54   VPPCOM_PROTO_UDPC
55 } vppcom_proto_t;
56
57 static inline char *
58 vppcom_proto_str (vppcom_proto_t proto)
59 {
60   char *proto_str;
61
62   switch (proto)
63     {
64     case VPPCOM_PROTO_TCP:
65       proto_str = "TCP";
66       break;
67     case VPPCOM_PROTO_UDP:
68       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";
78       break;
79     default:
80       proto_str = "UNKNOWN";
81       break;
82     }
83   return proto_str;
84 }
85
86 typedef enum
87 {
88   VPPCOM_IS_IP6 = 0,
89   VPPCOM_IS_IP4,
90 } vppcom_is_ip4_t;
91
92 typedef struct vppcom_endpt_t_
93 {
94   uint8_t is_cut_thru;
95   uint8_t is_ip4;
96   uint8_t *ip;
97   uint16_t port;
98 } vppcom_endpt_t;
99
100 typedef uint32_t vcl_session_handle_t;
101
102 typedef enum
103 {
104   VPPCOM_OK = 0,
105   VPPCOM_EAGAIN = -EAGAIN,
106   VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
107   VPPCOM_EFAULT = -EFAULT,
108   VPPCOM_ENOMEM = -ENOMEM,
109   VPPCOM_EINVAL = -EINVAL,
110   VPPCOM_EBADFD = -EBADFD,
111   VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
112   VPPCOM_ECONNABORTED = -ECONNABORTED,
113   VPPCOM_ECONNRESET = -ECONNRESET,
114   VPPCOM_ENOTCONN = -ENOTCONN,
115   VPPCOM_ECONNREFUSED = -ECONNREFUSED,
116   VPPCOM_ETIMEDOUT = -ETIMEDOUT,
117   VPPCOM_EEXIST = -EEXIST
118 } vppcom_error_t;
119
120 typedef enum
121 {
122   VPPCOM_ATTR_GET_NREAD,
123   VPPCOM_ATTR_GET_NWRITE,
124   VPPCOM_ATTR_GET_FLAGS,
125   VPPCOM_ATTR_SET_FLAGS,
126   VPPCOM_ATTR_GET_LCL_ADDR,
127   VPPCOM_ATTR_GET_PEER_ADDR,
128   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,
138   VPPCOM_ATTR_SET_REUSEADDR,
139   VPPCOM_ATTR_GET_REUSEPORT,
140   VPPCOM_ATTR_SET_REUSEPORT,
141   VPPCOM_ATTR_GET_BROADCAST,
142   VPPCOM_ATTR_SET_BROADCAST,
143   VPPCOM_ATTR_GET_V6ONLY,
144   VPPCOM_ATTR_SET_V6ONLY,
145   VPPCOM_ATTR_GET_KEEPALIVE,
146   VPPCOM_ATTR_SET_KEEPALIVE,
147   VPPCOM_ATTR_GET_TCP_NODELAY,
148   VPPCOM_ATTR_SET_TCP_NODELAY,
149   VPPCOM_ATTR_GET_TCP_KEEPIDLE,
150   VPPCOM_ATTR_SET_TCP_KEEPIDLE,
151   VPPCOM_ATTR_GET_TCP_KEEPINTVL,
152   VPPCOM_ATTR_SET_TCP_KEEPINTVL,
153   VPPCOM_ATTR_GET_TCP_USER_MSS,
154   VPPCOM_ATTR_SET_TCP_USER_MSS,
155   VPPCOM_ATTR_GET_REFCNT,
156 } vppcom_attr_op_t;
157
158 typedef struct _vcl_poll
159 {
160   uint32_t fds_ndx;
161   uint32_t sid;
162   short events;
163   short revents;
164 } vcl_poll_t;
165
166 typedef struct vppcom_data_segment_
167 {
168   unsigned char *data;
169   uint32_t len;
170 } vppcom_data_segment_t;
171
172 typedef vppcom_data_segment_t vppcom_data_segments_t[2];
173
174 /*
175  * VPPCOM Public API Functions
176  */
177 static inline const char *
178 vppcom_retval_str (int retval)
179 {
180   char *st;
181
182   switch (retval)
183     {
184     case VPPCOM_OK:
185       st = "VPPCOM_OK";
186       break;
187
188     case VPPCOM_EAGAIN:
189       st = "VPPCOM_EAGAIN";
190       break;
191
192     case VPPCOM_EFAULT:
193       st = "VPPCOM_EFAULT";
194       break;
195
196     case VPPCOM_ENOMEM:
197       st = "VPPCOM_ENOMEM";
198       break;
199
200     case VPPCOM_EINVAL:
201       st = "VPPCOM_EINVAL";
202       break;
203
204     case VPPCOM_EBADFD:
205       st = "VPPCOM_EBADFD";
206       break;
207
208     case VPPCOM_EAFNOSUPPORT:
209       st = "VPPCOM_EAFNOSUPPORT";
210       break;
211
212     case VPPCOM_ECONNABORTED:
213       st = "VPPCOM_ECONNABORTED";
214       break;
215
216     case VPPCOM_ECONNRESET:
217       st = "VPPCOM_ECONNRESET";
218       break;
219
220     case VPPCOM_ENOTCONN:
221       st = "VPPCOM_ENOTCONN";
222       break;
223
224     case VPPCOM_ECONNREFUSED:
225       st = "VPPCOM_ECONNREFUSED";
226       break;
227
228     case VPPCOM_ETIMEDOUT:
229       st = "VPPCOM_ETIMEDOUT";
230       break;
231
232     default:
233       st = "UNKNOWN_STATE";
234       break;
235     }
236
237   return st;
238 }
239
240 /* TBD: make these constructor/destructor function */
241 extern int vppcom_app_create (char *app_name);
242 extern void vppcom_app_destroy (void);
243
244 extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
245 extern int vppcom_session_close (uint32_t session_handle);
246 extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
247 extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
248
249 extern int vppcom_session_accept (uint32_t session_handle,
250                                   vppcom_endpt_t * client_ep, uint32_t flags);
251
252 extern int vppcom_session_connect (uint32_t session_handle,
253                                    vppcom_endpt_t * server_ep);
254 extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
255 extern int vppcom_session_write (uint32_t session_handle, void *buf,
256                                  size_t n);
257 extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
258                                      size_t n);
259
260 extern int vppcom_select (unsigned long n_bits,
261                           unsigned long *read_map,
262                           unsigned long *write_map,
263                           unsigned long *except_map, double wait_for_time);
264
265 extern int vppcom_epoll_create (void);
266 extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
267                              uint32_t session_handle,
268                              struct epoll_event *event);
269 extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
270                               int maxevents, double wait_for_time);
271 extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
272                                 void *buffer, uint32_t * buflen);
273 extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
274                                     uint32_t buflen, int flags,
275                                     vppcom_endpt_t * ep);
276 extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
277                                   uint32_t buflen, int flags,
278                                   vppcom_endpt_t * ep);
279 extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
280                         double wait_for_time);
281 extern int vppcom_mq_epoll_fd (void);
282 extern int vppcom_session_index (vcl_session_handle_t session_handle);
283 extern int vppcom_session_worker (vcl_session_handle_t session_handle);
284 extern int vppcom_session_handle (uint32_t session_index);
285
286 extern int vppcom_session_read_segments (uint32_t session_handle,
287                                          vppcom_data_segments_t ds);
288 extern void vppcom_session_free_segments (uint32_t session_handle,
289                                           vppcom_data_segments_t ds);
290 extern int vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
291                                         uint32_t cert_len);
292 extern int vppcom_session_tls_add_key (uint32_t session_handle, char *key,
293                                        uint32_t key_len);
294 extern int vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds,
295                                      uint32_t max_bytes);
296
297 /**
298  * Request from application to register a new worker
299  *
300  * Expectation is that applications will make use of this after a new pthread
301  * is spawned.
302  */
303 extern int vppcom_worker_register (void);
304
305 /**
306  * Retrieve current worker index
307  */
308 extern int vppcom_worker_index (void);
309
310 /* *INDENT-OFF* */
311 #ifdef __cplusplus
312 }
313 #endif
314 /* *INDENT-ON* */
315
316 #endif /* included_vppcom_h */
317
318 /*
319  * fd.io coding-style-patch-verification: ON
320  *
321  * Local Variables:
322  * eval: (c-set-style "gnu")
323  * End:
324  */