19a01c798b5988e067a449233d244a5bee09c6fc
[vpp.git] / src / vcl / vppcom.h
1 /*
2  * Copyright (c) 2017-2020 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_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 #define VPPCOM_ENV_VPP_SAPI_SOCKET              "VCL_VPP_SAPI_SOCKET"
47
48   typedef enum
49   {
50     VPPCOM_PROTO_TCP = 0,
51     VPPCOM_PROTO_UDP,
52     VPPCOM_PROTO_NONE,
53     VPPCOM_PROTO_TLS,
54     VPPCOM_PROTO_QUIC,
55     VPPCOM_PROTO_DTLS,
56     VPPCOM_PROTO_SRTP,
57   } vppcom_proto_t;
58
59   typedef enum
60   {
61     VPPCOM_IS_IP6 = 0,
62     VPPCOM_IS_IP4,
63   } vppcom_is_ip4_t;
64
65   typedef struct vppcom_endpt_t_
66   {
67     uint8_t is_cut_thru;
68     uint8_t is_ip4;
69     uint8_t *ip;
70     uint16_t port;
71     uint64_t parent_handle;
72   } vppcom_endpt_t;
73
74 typedef uint32_t vcl_session_handle_t;
75
76 typedef struct vppcom_cert_key_pair_
77 {
78   char *cert;
79   char *key;
80   uint32_t cert_len;
81   uint32_t key_len;
82 } vppcom_cert_key_pair_t;
83
84 typedef enum
85 {
86   VPPCOM_OK = 0,
87   VPPCOM_EAGAIN = -EAGAIN,
88   VPPCOM_EWOULDBLOCK = -EWOULDBLOCK,
89   VPPCOM_EINPROGRESS = -EINPROGRESS,
90   VPPCOM_EFAULT = -EFAULT,
91   VPPCOM_ENOMEM = -ENOMEM,
92   VPPCOM_EINVAL = -EINVAL,
93   VPPCOM_EBADFD = -EBADFD,
94   VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT,
95   VPPCOM_ECONNABORTED = -ECONNABORTED,
96   VPPCOM_ECONNRESET = -ECONNRESET,
97   VPPCOM_ENOTCONN = -ENOTCONN,
98   VPPCOM_ECONNREFUSED = -ECONNREFUSED,
99   VPPCOM_ETIMEDOUT = -ETIMEDOUT,
100   VPPCOM_EEXIST = -EEXIST,
101   VPPCOM_ENOPROTOOPT = -ENOPROTOOPT,
102   VPPCOM_EPIPE = -EPIPE,
103   VPPCOM_ENOENT = -ENOENT,
104 } vppcom_error_t;
105
106 typedef enum
107 {
108   VPPCOM_ATTR_GET_NREAD,
109   VPPCOM_ATTR_GET_NWRITE,
110   VPPCOM_ATTR_GET_FLAGS,
111   VPPCOM_ATTR_SET_FLAGS,
112   VPPCOM_ATTR_GET_LCL_ADDR,
113   VPPCOM_ATTR_SET_LCL_ADDR,
114   VPPCOM_ATTR_GET_PEER_ADDR,
115   VPPCOM_ATTR_GET_LIBC_EPFD,
116   VPPCOM_ATTR_SET_LIBC_EPFD,
117   VPPCOM_ATTR_GET_PROTOCOL,
118   VPPCOM_ATTR_GET_LISTEN,
119   VPPCOM_ATTR_GET_ERROR,
120   VPPCOM_ATTR_GET_TX_FIFO_LEN,
121   VPPCOM_ATTR_SET_TX_FIFO_LEN,
122   VPPCOM_ATTR_GET_RX_FIFO_LEN,
123   VPPCOM_ATTR_SET_RX_FIFO_LEN,
124   VPPCOM_ATTR_GET_REUSEADDR,
125   VPPCOM_ATTR_SET_REUSEADDR,
126   VPPCOM_ATTR_GET_REUSEPORT,
127   VPPCOM_ATTR_SET_REUSEPORT,
128   VPPCOM_ATTR_GET_BROADCAST,
129   VPPCOM_ATTR_SET_BROADCAST,
130   VPPCOM_ATTR_GET_V6ONLY,
131   VPPCOM_ATTR_SET_V6ONLY,
132   VPPCOM_ATTR_GET_KEEPALIVE,
133   VPPCOM_ATTR_SET_KEEPALIVE,
134   VPPCOM_ATTR_GET_TCP_NODELAY,
135   VPPCOM_ATTR_SET_TCP_NODELAY,
136   VPPCOM_ATTR_GET_TCP_KEEPIDLE,
137   VPPCOM_ATTR_SET_TCP_KEEPIDLE,
138   VPPCOM_ATTR_GET_TCP_KEEPINTVL,
139   VPPCOM_ATTR_SET_TCP_KEEPINTVL,
140   VPPCOM_ATTR_GET_TCP_USER_MSS,
141   VPPCOM_ATTR_SET_TCP_USER_MSS,
142   VPPCOM_ATTR_SET_CONNECTED,
143   VPPCOM_ATTR_SET_CKPAIR,
144   VPPCOM_ATTR_SET_VRF,
145   VPPCOM_ATTR_GET_VRF,
146   VPPCOM_ATTR_GET_DOMAIN,
147   VPPCOM_ATTR_SET_ENDPT_EXT_CFG,
148 } vppcom_attr_op_t;
149
150 typedef struct _vcl_poll
151 {
152   uint32_t fds_ndx;
153   vcl_session_handle_t sh;
154   short events;
155   short revents;
156 } vcl_poll_t;
157
158 typedef struct vppcom_data_segment_
159 {
160   unsigned char *data;
161   uint32_t len;
162 } vppcom_data_segment_t;
163
164 typedef vppcom_data_segment_t vppcom_data_segments_t[2];
165
166 typedef unsigned long vcl_si_set;
167
168 /*
169  * VPPCOM Public API Functions
170  */
171
172 extern int vppcom_app_create (const char *app_name);
173 extern void vppcom_app_destroy (void);
174
175 extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking);
176 extern int vppcom_session_shutdown (uint32_t session_handle, int how);
177 extern int vppcom_session_close (uint32_t session_handle);
178 extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep);
179 extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len);
180
181 extern int vppcom_session_accept (uint32_t session_handle,
182                                   vppcom_endpt_t * client_ep, uint32_t flags);
183
184 extern int vppcom_session_connect (uint32_t session_handle,
185                                    vppcom_endpt_t * server_ep);
186 extern int vppcom_session_stream_connect (uint32_t session_handle,
187                                           uint32_t parent_session_handle);
188 extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n);
189 extern int vppcom_session_write (uint32_t session_handle, void *buf,
190                                  size_t n);
191 extern int vppcom_session_write_msg (uint32_t session_handle, void *buf,
192                                      size_t n);
193
194 extern int vppcom_select (int n_bits, vcl_si_set * read_map,
195                           vcl_si_set * write_map, vcl_si_set * except_map,
196                           double wait_for_time);
197
198 extern int vppcom_epoll_create (void);
199 extern int vppcom_epoll_ctl (uint32_t vep_handle, int op,
200                              uint32_t session_handle,
201                              struct epoll_event *event);
202 extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
203                               int maxevents, double wait_for_time);
204 extern int vppcom_session_attr (uint32_t session_handle, uint32_t op,
205                                 void *buffer, uint32_t * buflen);
206 extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
207                                     uint32_t buflen, int flags,
208                                     vppcom_endpt_t * ep);
209 extern int vppcom_session_sendto (uint32_t session_handle, void *buffer,
210                                   uint32_t buflen, int flags,
211                                   vppcom_endpt_t * ep);
212 extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids,
213                         double wait_for_time);
214 extern int vppcom_mq_epoll_fd (void);
215 extern int vppcom_session_index (vcl_session_handle_t session_handle);
216 extern int vppcom_session_worker (vcl_session_handle_t session_handle);
217
218 extern int vppcom_session_read_segments (uint32_t session_handle,
219                                          vppcom_data_segment_t * ds,
220                                          uint32_t n_segments,
221                                          uint32_t max_bytes);
222 extern void vppcom_session_free_segments (uint32_t session_handle,
223                                           uint32_t n_bytes);
224 extern int vppcom_add_cert_key_pair (vppcom_cert_key_pair_t *ckpair);
225 extern int vppcom_del_cert_key_pair (uint32_t ckpair_index);
226 extern int vppcom_unformat_proto (uint8_t * proto, char *proto_str);
227 extern int vppcom_session_is_connectable_listener (uint32_t session_handle);
228 extern int vppcom_session_listener (uint32_t session_handle);
229 extern int vppcom_session_n_accepted (uint32_t session_handle);
230
231 extern const char *vppcom_proto_str (vppcom_proto_t proto);
232 extern const char *vppcom_retval_str (int retval);
233
234 /**
235  * Request from application to register a new worker
236  *
237  * Expectation is that applications will make use of this after a new pthread
238  * is spawned.
239  */
240 extern int vppcom_worker_register (void);
241
242 /**
243  * Unregister current worker
244  */
245 extern void vppcom_worker_unregister (void);
246
247 /**
248  * Retrieve current worker index
249  */
250 extern int vppcom_worker_index (void);
251
252 /**
253  * Set current worker index
254  */
255 extern void vppcom_worker_index_set (int);
256
257 /**
258  * Returns the current worker's message queues epoll fd
259  *
260  * This only works if vcl is configured to do eventfd based message queue
261  * notifications.
262  */
263 extern int vppcom_worker_mqs_epfd (void);
264
265 /* *INDENT-OFF* */
266 #ifdef __cplusplus
267 }
268 #endif
269 /* *INDENT-ON* */
270
271 #endif /* included_vppcom_h */
272
273 /*
274  * fd.io coding-style-patch-verification: ON
275  *
276  * Local Variables:
277  * eval: (c-set-style "gnu")
278  * End:
279  */