Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 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> |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 21 | #include <sys/poll.h> |
Dave Wallace | f7f809c | 2017-10-03 01:48:42 -0400 | [diff] [blame] | 22 | #include <sys/epoll.h> |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 23 | |
Keith Burns (alagalah) | 5a2946c | 2018-02-02 08:21:56 -0800 | [diff] [blame] | 24 | /* *INDENT-OFF* */ |
| 25 | #ifdef __cplusplus |
| 26 | extern "C" |
| 27 | { |
| 28 | #endif |
| 29 | /* *INDENT-ON* */ |
| 30 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 31 | /* |
| 32 | * VPPCOM Public API Definitions, Enums, and Data Structures |
| 33 | */ |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 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" |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 46 | |
| 47 | typedef enum |
| 48 | { |
| 49 | VPPCOM_PROTO_TCP = 0, |
| 50 | VPPCOM_PROTO_UDP, |
| 51 | } vppcom_proto_t; |
| 52 | |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 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 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 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 | { |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 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, |
Florin Coras | 54693d2 | 2018-07-17 10:46:29 -0700 | [diff] [blame] | 91 | VPPCOM_EWOULDBLOCK = -EWOULDBLOCK, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 92 | VPPCOM_EFAULT = -EFAULT, |
Dave Wallace | 60caa06 | 2017-11-10 17:07:13 -0500 | [diff] [blame] | 93 | VPPCOM_ENOMEM = -ENOMEM, |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 94 | VPPCOM_EINVAL = -EINVAL, |
| 95 | VPPCOM_EBADFD = -EBADFD, |
| 96 | VPPCOM_EAFNOSUPPORT = -EAFNOSUPPORT, |
Dave Wallace | ee45d41 | 2017-11-24 21:44:06 -0500 | [diff] [blame] | 97 | VPPCOM_ECONNABORTED = -ECONNABORTED, |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 98 | VPPCOM_ECONNRESET = -ECONNRESET, |
Dave Wallace | 4878cbe | 2017-11-21 03:45:09 -0500 | [diff] [blame] | 99 | VPPCOM_ENOTCONN = -ENOTCONN, |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 100 | VPPCOM_ECONNREFUSED = -ECONNREFUSED, |
| 101 | VPPCOM_ETIMEDOUT = -ETIMEDOUT, |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 102 | VPPCOM_EEXIST = -EEXIST |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 103 | } vppcom_error_t; |
| 104 | |
Dave Wallace | 35830af | 2017-10-09 01:43:42 -0400 | [diff] [blame] | 105 | typedef enum |
| 106 | { |
| 107 | VPPCOM_ATTR_GET_NREAD, |
Dave Wallace | 227867f | 2017-11-13 21:21:53 -0500 | [diff] [blame] | 108 | VPPCOM_ATTR_GET_NWRITE, |
Dave Wallace | 35830af | 2017-10-09 01:43:42 -0400 | [diff] [blame] | 109 | VPPCOM_ATTR_GET_FLAGS, |
| 110 | VPPCOM_ATTR_SET_FLAGS, |
| 111 | VPPCOM_ATTR_GET_LCL_ADDR, |
| 112 | VPPCOM_ATTR_GET_PEER_ADDR, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 113 | VPPCOM_ATTR_GET_LIBC_EPFD, |
| 114 | VPPCOM_ATTR_SET_LIBC_EPFD, |
| 115 | VPPCOM_ATTR_GET_PROTOCOL, |
| 116 | VPPCOM_ATTR_GET_LISTEN, |
| 117 | VPPCOM_ATTR_GET_ERROR, |
| 118 | VPPCOM_ATTR_GET_TX_FIFO_LEN, |
| 119 | VPPCOM_ATTR_SET_TX_FIFO_LEN, |
| 120 | VPPCOM_ATTR_GET_RX_FIFO_LEN, |
| 121 | VPPCOM_ATTR_SET_RX_FIFO_LEN, |
| 122 | VPPCOM_ATTR_GET_REUSEADDR, |
Steven | b5a1160 | 2017-10-11 09:59:30 -0700 | [diff] [blame] | 123 | VPPCOM_ATTR_SET_REUSEADDR, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 124 | VPPCOM_ATTR_GET_REUSEPORT, |
| 125 | VPPCOM_ATTR_SET_REUSEPORT, |
| 126 | VPPCOM_ATTR_GET_BROADCAST, |
Steven | b5a1160 | 2017-10-11 09:59:30 -0700 | [diff] [blame] | 127 | VPPCOM_ATTR_SET_BROADCAST, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 128 | VPPCOM_ATTR_GET_V6ONLY, |
Steven | b5a1160 | 2017-10-11 09:59:30 -0700 | [diff] [blame] | 129 | VPPCOM_ATTR_SET_V6ONLY, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 130 | VPPCOM_ATTR_GET_KEEPALIVE, |
Steven | bccd339 | 2017-10-12 20:42:21 -0700 | [diff] [blame] | 131 | VPPCOM_ATTR_SET_KEEPALIVE, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 132 | VPPCOM_ATTR_GET_TCP_NODELAY, |
| 133 | VPPCOM_ATTR_SET_TCP_NODELAY, |
| 134 | VPPCOM_ATTR_GET_TCP_KEEPIDLE, |
Steven | bccd339 | 2017-10-12 20:42:21 -0700 | [diff] [blame] | 135 | VPPCOM_ATTR_SET_TCP_KEEPIDLE, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 136 | VPPCOM_ATTR_GET_TCP_KEEPINTVL, |
Steven | bccd339 | 2017-10-12 20:42:21 -0700 | [diff] [blame] | 137 | VPPCOM_ATTR_SET_TCP_KEEPINTVL, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 138 | VPPCOM_ATTR_GET_TCP_USER_MSS, |
| 139 | VPPCOM_ATTR_SET_TCP_USER_MSS, |
Dave Wallace | 35830af | 2017-10-09 01:43:42 -0400 | [diff] [blame] | 140 | } vppcom_attr_op_t; |
| 141 | |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 142 | typedef struct _vcl_poll |
| 143 | { |
| 144 | uint32_t fds_ndx; |
| 145 | uint32_t sid; |
| 146 | short events; |
Florin Coras | 6917b94 | 2018-11-13 22:44:54 -0800 | [diff] [blame] | 147 | short revents; |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 148 | } vcl_poll_t; |
| 149 | |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 150 | typedef struct vppcom_data_segment_ |
| 151 | { |
| 152 | unsigned char *data; |
| 153 | uint32_t len; |
| 154 | } vppcom_data_segment_t; |
| 155 | |
| 156 | typedef vppcom_data_segment_t vppcom_data_segments_t[2]; |
| 157 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 158 | /* |
| 159 | * VPPCOM Public API Functions |
| 160 | */ |
| 161 | static inline const char * |
| 162 | vppcom_retval_str (int retval) |
| 163 | { |
| 164 | char *st; |
| 165 | |
| 166 | switch (retval) |
| 167 | { |
| 168 | case VPPCOM_OK: |
| 169 | st = "VPPCOM_OK"; |
| 170 | break; |
| 171 | |
| 172 | case VPPCOM_EAGAIN: |
| 173 | st = "VPPCOM_EAGAIN"; |
| 174 | break; |
| 175 | |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 176 | case VPPCOM_EFAULT: |
| 177 | st = "VPPCOM_EFAULT"; |
| 178 | break; |
| 179 | |
Dave Wallace | e376f93 | 2017-11-19 11:20:02 -0500 | [diff] [blame] | 180 | case VPPCOM_ENOMEM: |
| 181 | st = "VPPCOM_ENOMEM"; |
| 182 | break; |
| 183 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 184 | case VPPCOM_EINVAL: |
| 185 | st = "VPPCOM_EINVAL"; |
| 186 | break; |
| 187 | |
| 188 | case VPPCOM_EBADFD: |
| 189 | st = "VPPCOM_EBADFD"; |
| 190 | break; |
| 191 | |
| 192 | case VPPCOM_EAFNOSUPPORT: |
| 193 | st = "VPPCOM_EAFNOSUPPORT"; |
| 194 | break; |
| 195 | |
Dave Wallace | ee45d41 | 2017-11-24 21:44:06 -0500 | [diff] [blame] | 196 | case VPPCOM_ECONNABORTED: |
| 197 | st = "VPPCOM_ECONNABORTED"; |
| 198 | break; |
| 199 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 200 | case VPPCOM_ECONNRESET: |
| 201 | st = "VPPCOM_ECONNRESET"; |
| 202 | break; |
| 203 | |
Dave Wallace | 4878cbe | 2017-11-21 03:45:09 -0500 | [diff] [blame] | 204 | case VPPCOM_ENOTCONN: |
| 205 | st = "VPPCOM_ENOTCONN"; |
| 206 | break; |
| 207 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 208 | case VPPCOM_ECONNREFUSED: |
| 209 | st = "VPPCOM_ECONNREFUSED"; |
| 210 | break; |
| 211 | |
| 212 | case VPPCOM_ETIMEDOUT: |
| 213 | st = "VPPCOM_ETIMEDOUT"; |
| 214 | break; |
| 215 | |
| 216 | default: |
| 217 | st = "UNKNOWN_STATE"; |
| 218 | break; |
| 219 | } |
| 220 | |
| 221 | return st; |
| 222 | } |
| 223 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 224 | /* TBD: make these constructor/destructor function */ |
| 225 | extern int vppcom_app_create (char *app_name); |
| 226 | extern void vppcom_app_destroy (void); |
| 227 | |
Dave Wallace | c04cbf1 | 2018-02-07 18:14:02 -0500 | [diff] [blame] | 228 | extern int vppcom_session_create (uint8_t proto, uint8_t is_nonblocking); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 229 | extern int vppcom_session_close (uint32_t session_handle); |
| 230 | extern int vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep); |
| 231 | extern int vppcom_session_listen (uint32_t session_handle, uint32_t q_len); |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 232 | |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 233 | extern int vppcom_session_accept (uint32_t session_handle, |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 234 | vppcom_endpt_t * client_ep, uint32_t flags); |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 235 | |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 236 | extern int vppcom_session_connect (uint32_t session_handle, |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 237 | vppcom_endpt_t * server_ep); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 238 | extern int vppcom_session_read (uint32_t session_handle, void *buf, size_t n); |
| 239 | extern int vppcom_session_write (uint32_t session_handle, void *buf, |
| 240 | size_t n); |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 241 | |
| 242 | extern int vppcom_select (unsigned long n_bits, |
| 243 | unsigned long *read_map, |
| 244 | unsigned long *write_map, |
| 245 | unsigned long *except_map, double wait_for_time); |
| 246 | |
Dave Wallace | f7f809c | 2017-10-03 01:48:42 -0400 | [diff] [blame] | 247 | extern int vppcom_epoll_create (void); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 248 | extern int vppcom_epoll_ctl (uint32_t vep_handle, int op, |
| 249 | uint32_t session_handle, |
Dave Wallace | f7f809c | 2017-10-03 01:48:42 -0400 | [diff] [blame] | 250 | struct epoll_event *event); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 251 | extern int vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events, |
Dave Wallace | f7f809c | 2017-10-03 01:48:42 -0400 | [diff] [blame] | 252 | int maxevents, double wait_for_time); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 253 | extern int vppcom_session_attr (uint32_t session_handle, uint32_t op, |
Dave Wallace | 35830af | 2017-10-09 01:43:42 -0400 | [diff] [blame] | 254 | void *buffer, uint32_t * buflen); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 255 | extern int vppcom_session_recvfrom (uint32_t session_handle, void *buffer, |
Steven | ac1f96d | 2017-10-24 16:03:58 -0700 | [diff] [blame] | 256 | uint32_t buflen, int flags, |
| 257 | vppcom_endpt_t * ep); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 258 | extern int vppcom_session_sendto (uint32_t session_handle, void *buffer, |
Steven | ac1f96d | 2017-10-24 16:03:58 -0700 | [diff] [blame] | 259 | uint32_t buflen, int flags, |
| 260 | vppcom_endpt_t * ep); |
Dave Wallace | 048b1d6 | 2018-01-03 22:24:41 -0500 | [diff] [blame] | 261 | extern int vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, |
| 262 | double wait_for_time); |
Florin Coras | 9936831 | 2018-08-02 10:45:44 -0700 | [diff] [blame] | 263 | extern int vppcom_mq_epoll_fd (void); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 264 | extern int vppcom_session_index (uint32_t session_handle); |
Florin Coras | 30e273b | 2018-11-27 00:04:59 -0800 | [diff] [blame] | 265 | extern int vppcom_session_handle (uint32_t session_index); |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 266 | |
Florin Coras | 2cba853 | 2018-09-11 16:33:36 -0700 | [diff] [blame] | 267 | extern int vppcom_session_read_segments (uint32_t session_handle, |
| 268 | vppcom_data_segments_t ds); |
| 269 | extern void vppcom_session_free_segments (uint32_t session_handle, |
| 270 | vppcom_data_segments_t ds); |
| 271 | extern int vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, |
| 272 | uint32_t max_bytes); |
| 273 | |
Florin Coras | 134a996 | 2018-08-28 11:32:04 -0700 | [diff] [blame] | 274 | /** |
| 275 | * Request from application to register a new worker |
| 276 | * |
| 277 | * Expectation is that applications will make use of this after a new pthread |
| 278 | * is spawned. |
| 279 | */ |
| 280 | extern int vppcom_worker_register (void); |
Dave Wallace | f7f809c | 2017-10-03 01:48:42 -0400 | [diff] [blame] | 281 | |
Florin Coras | dfe4cf4 | 2018-11-28 22:13:45 -0800 | [diff] [blame^] | 282 | /** |
| 283 | * Retrieve current worker index |
| 284 | */ |
| 285 | extern int vppcom_worker_index (void); |
| 286 | |
Keith Burns (alagalah) | 5a2946c | 2018-02-02 08:21:56 -0800 | [diff] [blame] | 287 | /* *INDENT-OFF* */ |
| 288 | #ifdef __cplusplus |
| 289 | } |
| 290 | #endif |
| 291 | /* *INDENT-ON* */ |
| 292 | |
Dave Wallace | 543852a | 2017-08-03 02:11:34 -0400 | [diff] [blame] | 293 | #endif /* included_vppcom_h */ |
| 294 | |
| 295 | /* |
| 296 | * fd.io coding-style-patch-verification: ON |
| 297 | * |
| 298 | * Local Variables: |
| 299 | * eval: (c-set-style "gnu") |
| 300 | * End: |
| 301 | */ |