vcl: support for eventfd mq signaling
[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_t;
52
53 static inline char *
54 vppcom_proto_str (vppcom_proto_t proto)
55 {
56   char *proto_str;
57
58   switch (proto)
59     {
60     case VPPCOM_PROTO_TCP:
61       proto_str = "VPPCOM_PROTO_TCP";
62       break;
63     case VPPCOM_PROTO_UDP:
64       proto_str = "VPPCOM_PROTO_UDP";
65       break;
66     default:
67       proto_str = "UNKNOWN";
68       break;
69     }
70   return proto_str;
71 }
72
73 typedef enum
74 {
75   VPPCOM_IS_IP6 = 0,
76   VPPCOM_IS_IP4,
77 } vppcom_is_ip4_t;
78
79 typedef struct vppcom_endpt_t_
80 {
81   uint8_t is_cut_thru;
82   uint8_t is_ip4;
83   uint8_t *ip;
84   uint16_t port;
85 } vppcom_endpt_t;
86
87 typedef enum
88 {
89   VPPCOM_OK = 0,
90   VPPCOM_EAGAIN = -EAGAIN,
91   VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
92   VPPCOM_EFAULT = -EFAULT,
93   VPPCOM_ENOMEM = -ENOMEM,
94   VPPCOM_EINVAL = -EINVAL,
95   VPPCOM_EBADFD = -EBADFD,
96   VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
97   VPPCOM_ECONNABORTED = -ECONNABORTED,
98   VPPCOM_ECONNRESET = -ECONNRESET,
99   VPPCOM_ENOTCONN = -ENOTCONN,
100   VPPCOM_ECONNREFUSED = -ECONNREFUSED,
101   VPPCOM_ETIMEDOUT = -ETIMEDOUT,
102 } vppcom_error_t;
103
104 typedef enum
105 {
106   VPPCOM_ATTR_GET_NREAD,
107   VPPCOM_ATTR_GET_NWRITE,
108   VPPCOM_ATTR_GET_FLAGS,
109   VPPCOM_ATTR_SET_FLAGS,
110   VPPCOM_ATTR_GET_LCL_ADDR,
111   VPPCOM_ATTR_GET_PEER_ADDR,
112   VPPCOM_ATTR_GET_LIBC_EPFD,
113   VPPCOM_ATTR_SET_LIBC_EPFD,
114   VPPCOM_ATTR_GET_PROTOCOL,
115   VPPCOM_ATTR_GET_LISTEN,
116   VPPCOM_ATTR_GET_ERROR,
117   VPPCOM_ATTR_GET_TX_FIFO_LEN,
118   VPPCOM_ATTR_SET_TX_FIFO_LEN,
119   VPPCOM_ATTR_GET_RX_FIFO_LEN,
120   VPPCOM_ATTR_SET_RX_FIFO_LEN,
121   VPPCOM_ATTR_GET_REUSEADDR,
122   VPPCOM_ATTR_SET_REUSEADDR,
123   VPPCOM_ATTR_GET_REUSEPORT,
124   VPPCOM_ATTR_SET_REUSEPORT,
125   VPPCOM_ATTR_GET_BROADCAST,
126   VPPCOM_ATTR_SET_BROADCAST,
127   VPPCOM_ATTR_GET_V6ONLY,
128   VPPCOM_ATTR_SET_V6ONLY,
129   VPPCOM_ATTR_GET_KEEPALIVE,
130   VPPCOM_ATTR_SET_KEEPALIVE,
131   VPPCOM_ATTR_GET_TCP_NODELAY,
132   VPPCOM_ATTR_SET_TCP_NODELAY,
133   VPPCOM_ATTR_GET_TCP_KEEPIDLE,
134   VPPCOM_ATTR_SET_TCP_KEEPIDLE,
135   VPPCOM_ATTR_GET_TCP_KEEPINTVL,
136   VPPCOM_ATTR_SET_TCP_KEEPINTVL,
137   VPPCOM_ATTR_GET_TCP_USER_MSS,
138   VPPCOM_ATTR_SET_TCP_USER_MSS,
139 } vppcom_attr_op_t;
140
141 typedef struct _vcl_poll
142 {
143   uint32_t fds_ndx;
144   uint32_t sid;
145   short events;
146   short *revents;
147 } vcl_poll_t;
148
149 /*
150  * VPPCOM Public API Functions
151  */
152 static inline const char *
153 vppcom_retval_str (int retval)
154 {
155   char *st;
156
157   switch (retval)
158     {
159     case VPPCOM_OK:
160       st = "VPPCOM_OK";
161       break;
162
163     case VPPCOM_EAGAIN:
164       st = "VPPCOM_EAGAIN";
165       break;
166
167     case VPPCOM_EFAULT:
168       st = "VPPCOM_EFAULT";
169       break;
170
171     case VPPCOM_ENOMEM:
172       st = "VPPCOM_ENOMEM";
173       break;
174
175     case VPPCOM_EINVAL:
176       st = "VPPCOM_EINVAL";
177       break;
178
179     case VPPCOM_EBADFD:
180       st = "VPPCOM_EBADFD";
181       break;
182
183     case VPPCOM_EAFNOSUPPORT:
184       st = "VPPCOM_EAFNOSUPPORT";
185       break;
186
187     case VPPCOM_ECONNABORTED:
188       st = "VPPCOM_ECONNABORTED";
189       break;
190
191     case VPPCOM_ECONNRESET:
192       st = "VPPCOM_ECONNRESET";
193       break;
194
195     case VPPCOM_ENOTCONN:
196       st = "VPPCOM_ENOTCONN";
197       break;
198
199     case VPPCOM_ECONNREFUSED:
200       st = "VPPCOM_ECONNREFUSED";
201       break;
202
203     case VPPCOM_ETIMEDOUT:
204       st = "VPPCOM_ETIMEDOUT";
205       break;
206
207     default:
208       st = "UNKNOWN_STATE";
209       break;
210     }
211
212   return st;
213 }
214
215 /* TBD: make these constructor/destructor function */
216 extern int vppcom_app_create (char *app_name);
217 extern void vppcom_app_destroy (void);
218
219 extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
220 extern int vppcom_session_close (uint32_t session_index);
221
222 extern int vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep);
223 extern int vppcom_session_listen (uint32_t session_index, uint32_t q_len);
224
225 extern int vppcom_session_accept (uint32_t session_index,
226                                   vppcom_endpt_t * client_ep, uint32_t flags);
227
228 extern int vppcom_session_connect (uint32_t session_index,
229                                    vppcom_endpt_t * server_ep);
230 extern int vppcom_session_read (uint32_t session_index, void *buf, size_t n);
231 extern int vppcom_session_write (uint32_t session_index, void *buf, size_t n);
232
233 extern int vppcom_select (unsigned long n_bits,
234                           unsigned long *read_map,
235                           unsigned long *write_map,
236                           unsigned long *except_map, double wait_for_time);
237
238 extern int vppcom_epoll_create (void);
239 extern int vppcom_epoll_ctl (uint32_t vep_idx, int op,
240                              uint32_t session_index,
241                              struct epoll_event *event);
242 extern int vppcom_epoll_wait (uint32_t vep_idx, struct epoll_event *events,
243                               int maxevents, double wait_for_time);
244 extern int vppcom_session_attr (uint32_t session_index, uint32_t op,
245                                 void *buffer, uint32_t * buflen);
246 extern int vppcom_session_recvfrom (uint32_t session_index, void *buffer,
247                                     uint32_t buflen, int flags,
248                                     vppcom_endpt_t * ep);
249 extern int vppcom_session_sendto (uint32_t session_index, void *buffer,
250                                   uint32_t buflen, int flags,
251                                   vppcom_endpt_t * ep);
252 extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
253                         double wait_for_time);
254 extern int vppcom_mq_epoll_fd (void);
255
256 /*
257  * VPPCOM Event Functions
258  */
259 extern void vce_poll_wait_connect_request_handler_fn (void *arg);
260
261 /* *INDENT-OFF* */
262 #ifdef __cplusplus
263 }
264 #endif
265 /* *INDENT-ON* */
266
267 #endif /* included_vppcom_h */
268
269 /*
270  * fd.io coding-style-patch-verification: ON
271  *
272  * Local Variables:
273  * eval: (c-set-style "gnu")
274  * End:
275  */