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