blob: dd37460a32247dc1fe81147338b64bd89b79b88a [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
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#include <stdio.h>
17#include <stdlib.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040018#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070019#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070020#include <vcl/vcl_private.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/fifo_segment.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Corasd85de682018-11-29 17:02:29 -080025static int
Florin Corasc4c4cf52019-08-24 18:17:34 -070026vcl_segment_is_not_mounted (vcl_worker_t * wrk, u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070027{
Florin Corasc4c4cf52019-08-24 18:17:34 -070028 u32 segment_index;
Florin Coras54693d22018-07-17 10:46:29 -070029
Florin Corasd85de682018-11-29 17:02:29 -080030 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
Florin Coras5f45e012019-01-23 09:21:30 -080031 return 0;
Florin Coras54693d22018-07-17 10:46:29 -070032
Florin Corasc4c4cf52019-08-24 18:17:34 -070033 segment_index = vcl_segment_table_lookup (segment_handle);
34 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
35 return 0;
36
Florin Corasd85de682018-11-29 17:02:29 -080037 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070038}
39
Florin Coras30e79c22019-01-02 19:31:22 -080040static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070041vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080042{
43 svm_msg_q_msg_t *msg;
44 u32 n_msgs;
45 int i;
46
Florin Corase003a1b2019-06-05 10:47:16 -070047 n_msgs = clib_min (svm_msg_q_size (mq), n_max_msg);
Florin Coras30e79c22019-01-02 19:31:22 -080048 for (i = 0; i < n_msgs; i++)
49 {
50 vec_add2 (wrk->mq_msg_vector, msg, 1);
51 svm_msg_q_sub_w_lock (mq, msg);
52 }
53 return n_msgs;
54}
55
Florin Coras697faea2018-06-27 17:10:49 -070056const char *
Florin Coras288eaab2019-02-03 15:26:14 -080057vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040058{
59 char *st;
60
61 switch (state)
62 {
Florin Coras54140622020-02-04 19:04:34 +000063 case STATE_CLOSED:
64 st = "STATE_CLOSED";
Dave Wallace543852a2017-08-03 02:11:34 -040065 break;
66
67 case STATE_CONNECT:
68 st = "STATE_CONNECT";
69 break;
70
71 case STATE_LISTEN:
72 st = "STATE_LISTEN";
73 break;
74
75 case STATE_ACCEPT:
76 st = "STATE_ACCEPT";
77 break;
78
Florin Coras3c7d4f92018-12-14 11:28:43 -080079 case STATE_VPP_CLOSING:
80 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050081 break;
82
Dave Wallace543852a2017-08-03 02:11:34 -040083 case STATE_DISCONNECT:
84 st = "STATE_DISCONNECT";
85 break;
86
Florin Corasadcfb152020-02-12 08:50:29 +000087 case STATE_DETACHED:
88 st = "STATE_DETACHED";
Dave Wallace543852a2017-08-03 02:11:34 -040089 break;
90
Florin Coras2d675d72019-01-28 15:54:27 -080091 case STATE_UPDATED:
92 st = "STATE_UPDATED";
93 break;
94
95 case STATE_LISTEN_NO_MQ:
96 st = "STATE_LISTEN_NO_MQ";
97 break;
98
Dave Wallace543852a2017-08-03 02:11:34 -040099 default:
100 st = "UNKNOWN_STATE";
101 break;
102 }
103
104 return st;
105}
106
Dave Wallace543852a2017-08-03 02:11:34 -0400107u8 *
108format_ip4_address (u8 * s, va_list * args)
109{
110 u8 *a = va_arg (*args, u8 *);
111 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
112}
113
114u8 *
115format_ip6_address (u8 * s, va_list * args)
116{
117 ip6_address_t *a = va_arg (*args, ip6_address_t *);
118 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
119
120 i_max_n_zero = ARRAY_LEN (a->as_u16);
121 max_n_zeros = 0;
122 i_first_zero = i_max_n_zero;
123 n_zeros = 0;
124 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
125 {
126 u32 is_zero = a->as_u16[i] == 0;
127 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
128 {
129 i_first_zero = i;
130 n_zeros = 0;
131 }
132 n_zeros += is_zero;
133 if ((!is_zero && n_zeros > max_n_zeros)
134 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
135 {
136 i_max_n_zero = i_first_zero;
137 max_n_zeros = n_zeros;
138 i_first_zero = ARRAY_LEN (a->as_u16);
139 n_zeros = 0;
140 }
141 }
142
143 last_double_colon = 0;
144 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
145 {
146 if (i == i_max_n_zero && max_n_zeros > 1)
147 {
148 s = format (s, "::");
149 i += max_n_zeros - 1;
150 last_double_colon = 1;
151 }
152 else
153 {
154 s = format (s, "%s%x",
155 (last_double_colon || i == 0) ? "" : ":",
156 clib_net_to_host_u16 (a->as_u16[i]));
157 last_double_colon = 0;
158 }
159 }
160
161 return s;
162}
163
164/* Format an IP46 address. */
165u8 *
166format_ip46_address (u8 * s, va_list * args)
167{
168 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
169 ip46_type_t type = va_arg (*args, ip46_type_t);
170 int is_ip4 = 1;
171
172 switch (type)
173 {
174 case IP46_TYPE_ANY:
175 is_ip4 = ip46_address_is_ip4 (ip46);
176 break;
177 case IP46_TYPE_IP4:
178 is_ip4 = 1;
179 break;
180 case IP46_TYPE_IP6:
181 is_ip4 = 0;
182 break;
183 }
184
185 return is_ip4 ?
186 format (s, "%U", format_ip4_address, &ip46->ip4) :
187 format (s, "%U", format_ip6_address, &ip46->ip6);
188}
189
Florin Coras697faea2018-06-27 17:10:49 -0700190/*
191 * VPPCOM Utility Functions
192 */
193
Florin Coras458089b2019-08-21 16:20:44 -0700194static void
195vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
196{
197 app_session_evt_t _app_evt, *app_evt = &_app_evt;
198 session_listen_msg_t *mp;
199 svm_msg_q_t *mq;
200
201 mq = vcl_worker_ctrl_mq (wrk);
202 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
203 mp = (session_listen_msg_t *) app_evt->evt->data;
204 memset (mp, 0, sizeof (*mp));
205 mp->client_index = wrk->my_client_index;
206 mp->context = s->session_index;
207 mp->wrk_index = wrk->vpp_wrk_index;
208 mp->is_ip4 = s->transport.is_ip4;
209 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
210 mp->port = s->transport.lcl_port;
211 mp->proto = s->session_type;
212 app_send_ctrl_evt_to_vpp (mq, app_evt);
213}
214
215static void
216vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
217{
218 app_session_evt_t _app_evt, *app_evt = &_app_evt;
219 session_connect_msg_t *mp;
220 svm_msg_q_t *mq;
221
222 mq = vcl_worker_ctrl_mq (wrk);
223 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
224 mp = (session_connect_msg_t *) app_evt->evt->data;
225 memset (mp, 0, sizeof (*mp));
226 mp->client_index = wrk->my_client_index;
227 mp->context = s->session_index;
228 mp->wrk_index = wrk->vpp_wrk_index;
229 mp->is_ip4 = s->transport.is_ip4;
230 mp->parent_handle = s->parent_handle;
231 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700232 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700233 mp->port = s->transport.rmt_port;
Florin Coras0a1e1832020-03-29 18:54:04 +0000234 mp->lcl_port = s->transport.lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700235 mp->proto = s->session_type;
Florin Coras0a1e1832020-03-29 18:54:04 +0000236 if (s->flags & VCL_SESSION_F_CONNECTED)
237 mp->flags |= TRANSPORT_CFG_F_CONNECTED;
Florin Coras458089b2019-08-21 16:20:44 -0700238 app_send_ctrl_evt_to_vpp (mq, app_evt);
239}
240
241void
242vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
243{
244 app_session_evt_t _app_evt, *app_evt = &_app_evt;
245 session_unlisten_msg_t *mp;
246 svm_msg_q_t *mq;
247
248 mq = vcl_worker_ctrl_mq (wrk);
249 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
250 mp = (session_unlisten_msg_t *) app_evt->evt->data;
251 memset (mp, 0, sizeof (*mp));
252 mp->client_index = wrk->my_client_index;
253 mp->wrk_index = wrk->vpp_wrk_index;
254 mp->handle = s->vpp_handle;
255 mp->context = wrk->wrk_index;
256 app_send_ctrl_evt_to_vpp (mq, app_evt);
257}
258
259static void
260vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
261{
262 app_session_evt_t _app_evt, *app_evt = &_app_evt;
263 session_disconnect_msg_t *mp;
264 svm_msg_q_t *mq;
265
266 /* Send to thread that owns the session */
267 mq = s->vpp_evt_q;
268 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
269 mp = (session_disconnect_msg_t *) app_evt->evt->data;
270 memset (mp, 0, sizeof (*mp));
271 mp->client_index = wrk->my_client_index;
272 mp->handle = s->vpp_handle;
273 app_send_ctrl_evt_to_vpp (mq, app_evt);
274}
275
276static void
277vcl_send_app_detach (vcl_worker_t * wrk)
278{
279 app_session_evt_t _app_evt, *app_evt = &_app_evt;
280 session_app_detach_msg_t *mp;
281 svm_msg_q_t *mq;
282
283 mq = vcl_worker_ctrl_mq (wrk);
284 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
285 mp = (session_app_detach_msg_t *) app_evt->evt->data;
286 memset (mp, 0, sizeof (*mp));
287 mp->client_index = wrk->my_client_index;
288 app_send_ctrl_evt_to_vpp (mq, app_evt);
289}
Florin Coras697faea2018-06-27 17:10:49 -0700290
Florin Coras54693d22018-07-17 10:46:29 -0700291static void
292vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
293 session_handle_t handle, int retval)
294{
295 app_session_evt_t _app_evt, *app_evt = &_app_evt;
296 session_accepted_reply_msg_t *rmp;
297 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
298 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
299 rmp->handle = handle;
300 rmp->context = context;
301 rmp->retval = retval;
302 app_send_ctrl_evt_to_vpp (mq, app_evt);
303}
304
Florin Coras99368312018-08-02 10:45:44 -0700305static void
306vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
307 session_handle_t handle, int retval)
308{
309 app_session_evt_t _app_evt, *app_evt = &_app_evt;
310 session_disconnected_reply_msg_t *rmp;
311 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
312 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
313 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
314 rmp->handle = handle;
315 rmp->context = context;
316 rmp->retval = retval;
317 app_send_ctrl_evt_to_vpp (mq, app_evt);
318}
319
Florin Corasc9fbd662018-08-24 12:59:56 -0700320static void
321vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
322 session_handle_t handle, int retval)
323{
324 app_session_evt_t _app_evt, *app_evt = &_app_evt;
325 session_reset_reply_msg_t *rmp;
326 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
327 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
328 rmp->handle = handle;
329 rmp->context = context;
330 rmp->retval = retval;
331 app_send_ctrl_evt_to_vpp (mq, app_evt);
332}
333
Florin Coras30e79c22019-01-02 19:31:22 -0800334void
335vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
336 u32 wrk_index)
337{
338 app_session_evt_t _app_evt, *app_evt = &_app_evt;
339 session_worker_update_msg_t *mp;
340 svm_msg_q_t *mq;
341
342 mq = vcl_session_vpp_evt_q (wrk, s);
343 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
344 mp = (session_worker_update_msg_t *) app_evt->evt->data;
345 mp->client_index = wrk->my_client_index;
346 mp->handle = s->vpp_handle;
347 mp->req_wrk_index = wrk->vpp_wrk_index;
348 mp->wrk_index = wrk_index;
349 app_send_ctrl_evt_to_vpp (mq, app_evt);
350}
351
Florin Coras54693d22018-07-17 10:46:29 -0700352static u32
Florin Coras00cca802019-06-06 09:38:44 -0700353vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
354 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700355{
356 vcl_session_t *session, *listen_session;
357 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700358 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700359 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700360
Florin Coras134a9962018-08-28 11:32:04 -0700361 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700362
Florin Coras00cca802019-06-06 09:38:44 -0700363 listen_session = vcl_session_get (wrk, ls_index);
364 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700365 {
Florin Coras00cca802019-06-06 09:38:44 -0700366 VDBG (0, "ERROR: listener handle %lu does not match session %u",
367 mp->listener_handle, ls_index);
368 goto error;
369 }
370
Florin Corasc4c4cf52019-08-24 18:17:34 -0700371 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Coras00cca802019-06-06 09:38:44 -0700372 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700373 VDBG (0, "ERROR: segment for session %u is not mounted!",
Florin Coras00cca802019-06-06 09:38:44 -0700374 session->session_index);
375 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700376 }
377
Florin Coras54693d22018-07-17 10:46:29 -0700378 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
379 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Coras653e43f2019-03-04 10:56:23 -0800380 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
381 svm_msg_q_t *);
382 rx_fifo->client_session_index = session->session_index;
383 tx_fifo->client_session_index = session->session_index;
384 rx_fifo->client_thread_index = vcl_get_worker_index ();
385 tx_fifo->client_thread_index = vcl_get_worker_index ();
386 vpp_wrk_index = tx_fifo->master_thread_index;
387 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
388 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700389
390 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800391 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700392 session->rx_fifo = rx_fifo;
393 session->tx_fifo = tx_fifo;
394
395 session->session_state = STATE_ACCEPT;
Florin Coras09d18c22019-04-24 11:10:02 -0700396 session->transport.rmt_port = mp->rmt.port;
397 session->transport.is_ip4 = mp->rmt.is_ip4;
398 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500399 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700400
Florin Coras134a9962018-08-28 11:32:04 -0700401 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700402 session->transport.lcl_port = listen_session->transport.lcl_port;
403 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700404 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200405 session->is_dgram = vcl_proto_is_dgram (session->session_type);
406 session->listener_index = listen_session->session_index;
407 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700408
Florin Coras5e062572019-03-14 19:07:51 -0700409 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
410 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700411 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
412 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
413 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700414 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
415
Florin Coras00cca802019-06-06 09:38:44 -0700416 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
417 session->vpp_handle, 0);
418
Florin Coras134a9962018-08-28 11:32:04 -0700419 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700420
421error:
422 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
423 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
424 VNET_API_ERROR_INVALID_ARGUMENT);
425 vcl_session_free (wrk, session);
426 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700427}
428
429static u32
Florin Coras134a9962018-08-28 11:32:04 -0700430vcl_session_connected_handler (vcl_worker_t * wrk,
431 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700432{
Florin Coras99368312018-08-02 10:45:44 -0700433 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700434 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700435 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -0700436
437 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700438 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700439 if (!session)
440 {
Florin Coras5e062572019-03-14 19:07:51 -0700441 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
442 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700443 return VCL_INVALID_SESSION_INDEX;
444 }
Florin Coras54693d22018-07-17 10:46:29 -0700445 if (mp->retval)
446 {
Florin Coras5e062572019-03-14 19:07:51 -0700447 VDBG (0, "ERROR: session index %u: connect failed! %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700448 session_index, format_session_error, mp->retval);
Florin Corasadcfb152020-02-12 08:50:29 +0000449 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Coras070453d2018-08-24 17:04:27 -0700450 session->vpp_handle = mp->handle;
451 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700452 }
453
Florin Corasdbc9c592019-09-25 16:37:43 -0700454 session->vpp_handle = mp->handle;
455 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
456 svm_msg_q_t *);
Florin Coras460dce62018-07-27 05:45:06 -0700457 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
458 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700459 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Corasd85de682018-11-29 17:02:29 -0800460 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700461 VDBG (0, "segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800462 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000463 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700464 vcl_send_session_disconnect (wrk, session);
465 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800466 }
467
Florin Coras460dce62018-07-27 05:45:06 -0700468 rx_fifo->client_session_index = session_index;
469 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700470 rx_fifo->client_thread_index = vcl_get_worker_index ();
471 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700472
Florin Coras653e43f2019-03-04 10:56:23 -0800473 vpp_wrk_index = tx_fifo->master_thread_index;
474 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
475 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700476
Florin Coras653e43f2019-03-04 10:56:23 -0800477 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700478 {
Florin Coras653e43f2019-03-04 10:56:23 -0800479 session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
480 session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700481 if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
Florin Coras653e43f2019-03-04 10:56:23 -0800482 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700483 VDBG (0, "ct segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800484 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000485 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700486 vcl_send_session_disconnect (wrk, session);
487 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800488 }
Florin Coras99368312018-08-02 10:45:44 -0700489 }
Florin Coras54693d22018-07-17 10:46:29 -0700490
Florin Coras54693d22018-07-17 10:46:29 -0700491 session->rx_fifo = rx_fifo;
492 session->tx_fifo = tx_fifo;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800493 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras09d18c22019-04-24 11:10:02 -0700494 session->transport.is_ip4 = mp->lcl.is_ip4;
495 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500496 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700497 session->transport.lcl_port = mp->lcl.port;
Florin Coras54693d22018-07-17 10:46:29 -0700498 session->session_state = STATE_CONNECT;
499
500 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800501 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700502
Florin Coras5e062572019-03-14 19:07:51 -0700503 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
504 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700505 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700506
Florin Coras54693d22018-07-17 10:46:29 -0700507 return session_index;
508}
509
Florin Coras3c7d4f92018-12-14 11:28:43 -0800510static int
511vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
512{
513 vcl_session_msg_t *accepted_msg;
514 int i;
515
516 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
517 {
518 accepted_msg = &session->accept_evts_fifo[i];
519 if (accepted_msg->accepted_msg.handle == handle)
520 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800521 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800522 return 1;
523 }
524 }
525 return 0;
526}
527
Florin Corasc9fbd662018-08-24 12:59:56 -0700528static u32
Florin Coras134a9962018-08-28 11:32:04 -0700529vcl_session_reset_handler (vcl_worker_t * wrk,
530 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700531{
532 vcl_session_t *session;
533 u32 sid;
534
Florin Coras134a9962018-08-28 11:32:04 -0700535 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
536 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700537 if (!session)
538 {
539 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
540 return VCL_INVALID_SESSION_INDEX;
541 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800542
543 /* Caught a reset before actually accepting the session */
544 if (session->session_state == STATE_LISTEN)
545 {
546
547 if (!vcl_flag_accepted_session (session, reset_msg->handle,
548 VCL_ACCEPTED_F_RESET))
549 VDBG (0, "session was not accepted!");
550 return VCL_INVALID_SESSION_INDEX;
551 }
552
553 session->session_state = STATE_DISCONNECT;
554 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700555 return sid;
556}
557
Florin Coras60116992018-08-27 09:52:18 -0700558static u32
Florin Coras134a9962018-08-28 11:32:04 -0700559vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700560{
561 vcl_session_t *session;
562 u32 sid = mp->context;
563
Florin Coras134a9962018-08-28 11:32:04 -0700564 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700565 if (mp->retval)
566 {
Florin Coras5e062572019-03-14 19:07:51 -0700567 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700568 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700569 if (session)
570 {
Florin Corasadcfb152020-02-12 08:50:29 +0000571 session->session_state = STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700572 session->vpp_handle = mp->handle;
573 return sid;
574 }
575 else
576 {
Florin Coras5e062572019-03-14 19:07:51 -0700577 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
578 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700579 return VCL_INVALID_SESSION_INDEX;
580 }
581 }
582
583 session->vpp_handle = mp->handle;
584 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500585 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
586 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700587 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700588 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700589 session->session_state = STATE_LISTEN;
590
Florin Coras5f45e012019-01-23 09:21:30 -0800591 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
592 vec_validate (wrk->vpp_event_queues, 0);
593 wrk->vpp_event_queues[0] = session->vpp_evt_q;
594
Florin Coras6e3c1f82020-01-15 01:30:46 +0000595 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700596 {
597 svm_fifo_t *rx_fifo, *tx_fifo;
598 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
599 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
600 rx_fifo->client_session_index = sid;
601 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
602 tx_fifo->client_session_index = sid;
603 session->rx_fifo = rx_fifo;
604 session->tx_fifo = tx_fifo;
605 }
606
Florin Coras05ecfcc2018-12-12 18:19:39 -0800607 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700608 return sid;
609}
610
Florin Corasdfae9f92019-02-20 19:48:31 -0800611static void
612vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
613{
614 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
615 vcl_session_t *s;
616
617 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000618 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800619 {
620 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
621 return;
622 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000623 if (s->session_state != STATE_DISCONNECT)
624 {
625 /* Connected udp listener */
626 if (s->session_type == VPPCOM_PROTO_UDP
627 && s->session_state == STATE_CLOSED)
628 return;
629
630 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
631 return;
632 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800633
634 if (mp->retval)
635 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700636 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800637
638 if (mp->context != wrk->wrk_index)
639 VDBG (0, "wrong context");
640
641 vcl_session_table_del_vpp_handle (wrk, mp->handle);
642 vcl_session_free (wrk, s);
643}
644
Florin Coras68b7e582020-01-21 18:33:23 -0800645static void
646vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
647{
648 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
649 vcl_session_t *s;
650
651 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
652 if (!s)
653 {
654 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
655 return;
656 }
657
658 s->vpp_thread_index = mp->vpp_thread_index;
Florin Coras57660d92020-04-04 22:45:34 +0000659 s->vpp_handle = mp->new_handle;
Florin Coras68b7e582020-01-21 18:33:23 -0800660 s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
661
662 vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
663 wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
664
665 vcl_session_table_del_vpp_handle (wrk, mp->handle);
666 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
667
668 /* Generate new tx event if we have outstanding data */
669 if (svm_fifo_has_event (s->tx_fifo))
670 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
671 SESSION_IO_EVT_TX, SVM_Q_WAIT);
672
Florin Coras57660d92020-04-04 22:45:34 +0000673 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
674 s->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800675}
676
Florin Coras3c7d4f92018-12-14 11:28:43 -0800677static vcl_session_t *
678vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
679{
680 vcl_session_msg_t *vcl_msg;
681 vcl_session_t *session;
682
683 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
684 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800685 VWRN ("session overlap handle %lu state %u!", msg->handle,
686 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800687
688 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
689 if (!session)
690 {
691 VERR ("couldn't find listen session: listener handle %llx",
692 msg->listener_handle);
693 return 0;
694 }
695
696 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000697 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800698 vcl_msg->accepted_msg = *msg;
699 /* Session handle points to listener until fully accepted by app */
700 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
701
702 return session;
703}
704
705static vcl_session_t *
706vcl_session_disconnected_handler (vcl_worker_t * wrk,
707 session_disconnected_msg_t * msg)
708{
709 vcl_session_t *session;
710
711 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
712 if (!session)
713 {
714 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
715 return 0;
716 }
717
Florin Corasadcfb152020-02-12 08:50:29 +0000718 /* Late disconnect notification on a session that has been closed */
719 if (session->session_state == STATE_CLOSED)
720 return 0;
721
Florin Coras3c7d4f92018-12-14 11:28:43 -0800722 /* Caught a disconnect before actually accepting the session */
723 if (session->session_state == STATE_LISTEN)
724 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800725 if (!vcl_flag_accepted_session (session, msg->handle,
726 VCL_ACCEPTED_F_CLOSED))
727 VDBG (0, "session was not accepted!");
728 return 0;
729 }
730
Florin Corasadcfb152020-02-12 08:50:29 +0000731 /* If not already reset change state */
732 if (session->session_state != STATE_DISCONNECT)
733 session->session_state = STATE_VPP_CLOSING;
734
Florin Coras3c7d4f92018-12-14 11:28:43 -0800735 return session;
736}
737
Florin Coras30e79c22019-01-02 19:31:22 -0800738static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700739vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
740{
741 session_cleanup_msg_t *msg;
742 vcl_session_t *session;
743
744 msg = (session_cleanup_msg_t *) data;
745 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
746 if (!session)
747 {
748 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
749 return;
750 }
751
752 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000753 /* Should not happen. App did not close the connection so don't free it. */
754 if (session->session_state != STATE_CLOSED)
755 {
756 VDBG (0, "app did not close session %d", session->session_index);
757 session->session_state = STATE_DETACHED;
758 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
759 return;
760 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700761 vcl_session_free (wrk, session);
762}
763
764static void
Florin Coras30e79c22019-01-02 19:31:22 -0800765vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
766{
767 session_req_worker_update_msg_t *msg;
768 vcl_session_t *s;
769
770 msg = (session_req_worker_update_msg_t *) data;
771 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
772 if (!s)
773 return;
774
775 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
776}
777
778static void
779vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
780{
781 session_worker_update_reply_msg_t *msg;
782 vcl_session_t *s;
783
784 msg = (session_worker_update_reply_msg_t *) data;
785 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
786 if (!s)
787 {
788 VDBG (0, "unknown handle 0x%llx", msg->handle);
789 return;
790 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700791 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800792 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700793 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800794 s->session_index);
795 return;
796 }
Florin Coras30e79c22019-01-02 19:31:22 -0800797
Florin Coras5f45e012019-01-23 09:21:30 -0800798 if (s->rx_fifo)
799 {
800 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
801 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
802 s->rx_fifo->client_session_index = s->session_index;
803 s->tx_fifo->client_session_index = s->session_index;
804 s->rx_fifo->client_thread_index = wrk->wrk_index;
805 s->tx_fifo->client_thread_index = wrk->wrk_index;
806 }
Florin Coras30e79c22019-01-02 19:31:22 -0800807 s->session_state = STATE_UPDATED;
808
Florin Coras30e79c22019-01-02 19:31:22 -0800809 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
810 s->vpp_handle, wrk->wrk_index);
811}
812
Florin Corasc4c4cf52019-08-24 18:17:34 -0700813static void
814vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
815{
816 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
817 session_app_add_segment_msg_t *msg;
818 u64 segment_handle;
819 int fd = -1;
820
821 msg = (session_app_add_segment_msg_t *) data;
822
823 if (msg->fd_flags)
824 {
825 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
826 seg_type = SSVM_SEGMENT_MEMFD;
827 }
828
829 segment_handle = msg->segment_handle;
830 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
831 {
832 clib_warning ("invalid segment handle");
833 return;
834 }
835
836 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
837 seg_type, fd))
838 {
839 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
840 return;
841 }
842
843 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
844 msg->segment_size);
845}
846
847static void
848vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
849{
850 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
851 vcl_segment_detach (msg->segment_handle);
852 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
853}
854
Florin Coras86f04502018-09-12 16:08:01 -0700855static int
856vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700857{
Florin Coras54693d22018-07-17 10:46:29 -0700858 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700859 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700860
861 switch (e->event_type)
862 {
Florin Coras653e43f2019-03-04 10:56:23 -0800863 case SESSION_IO_EVT_RX:
864 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800865 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800866 if (!session || !(session->session_state & STATE_OPEN))
867 break;
Florin Coras86f04502018-09-12 16:08:01 -0700868 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700869 break;
870 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800871 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700872 break;
873 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700874 vcl_session_connected_handler (wrk,
875 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700876 break;
877 case SESSION_CTRL_EVT_DISCONNECTED:
878 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800879 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700880 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800881 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800882 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
883 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700884 break;
885 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700886 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700887 break;
888 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700889 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700890 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800891 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
892 vcl_session_unlisten_reply_handler (wrk, e->data);
893 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800894 case SESSION_CTRL_EVT_MIGRATED:
895 vcl_session_migrated_handler (wrk, e->data);
896 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700897 case SESSION_CTRL_EVT_CLEANUP:
898 vcl_session_cleanup_handler (wrk, e->data);
899 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800900 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
901 vcl_session_req_worker_update_handler (wrk, e->data);
902 break;
903 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
904 vcl_session_worker_update_reply_handler (wrk, e->data);
905 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700906 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
907 vcl_session_app_add_segment_handler (wrk, e->data);
908 break;
909 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
910 vcl_session_app_del_segment_handler (wrk, e->data);
911 break;
Florin Coras54693d22018-07-17 10:46:29 -0700912 default:
913 clib_warning ("unhandled %u", e->event_type);
914 }
915 return VPPCOM_OK;
916}
917
Florin Coras30e79c22019-01-02 19:31:22 -0800918static int
Florin Coras697faea2018-06-27 17:10:49 -0700919vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800920 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700921 f64 wait_for_time)
922{
Florin Coras134a9962018-08-28 11:32:04 -0700923 vcl_worker_t *wrk = vcl_worker_get_current ();
924 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700925 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700926 svm_msg_q_msg_t msg;
927 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400928
Florin Coras697faea2018-06-27 17:10:49 -0700929 do
Dave Wallace543852a2017-08-03 02:11:34 -0400930 {
Florin Coras134a9962018-08-28 11:32:04 -0700931 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700932 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700933 {
Florin Coras070453d2018-08-24 17:04:27 -0700934 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700935 }
936 if (session->session_state & state)
937 {
Florin Coras697faea2018-06-27 17:10:49 -0700938 return VPPCOM_OK;
939 }
Florin Corasadcfb152020-02-12 08:50:29 +0000940 if (session->session_state & STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -0700941 {
Florin Coras697faea2018-06-27 17:10:49 -0700942 return VPPCOM_ECONNREFUSED;
943 }
Florin Coras54693d22018-07-17 10:46:29 -0700944
Florin Coras134a9962018-08-28 11:32:04 -0700945 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800946 {
947 usleep (100);
948 continue;
949 }
Florin Coras134a9962018-08-28 11:32:04 -0700950 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700951 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700952 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800953 }
Florin Coras134a9962018-08-28 11:32:04 -0700954 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800955
Florin Coras05ecfcc2018-12-12 18:19:39 -0800956 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700957 vppcom_session_state_str (state));
958 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400959
Florin Coras697faea2018-06-27 17:10:49 -0700960 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500961}
962
Florin Coras30e79c22019-01-02 19:31:22 -0800963static void
964vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
965{
Florin Coras288eaab2019-02-03 15:26:14 -0800966 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -0800967 vcl_session_t *s;
968 u32 *sip;
969
970 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
971 return;
972
973 vec_foreach (sip, wrk->pending_session_wrk_updates)
974 {
975 s = vcl_session_get (wrk, *sip);
976 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
977 state = s->session_state;
978 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
979 s->session_state = state;
980 }
981 vec_reset_length (wrk->pending_session_wrk_updates);
982}
983
Florin Corasf9240dc2019-01-15 08:03:17 -0800984void
Florin Coras30e79c22019-01-02 19:31:22 -0800985vcl_flush_mq_events (void)
986{
987 vcl_worker_t *wrk = vcl_worker_get_current ();
988 svm_msg_q_msg_t *msg;
989 session_event_t *e;
990 svm_msg_q_t *mq;
991 int i;
992
993 mq = wrk->app_event_queue;
994 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -0700995 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -0800996 svm_msg_q_unlock (mq);
997
998 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
999 {
1000 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1001 e = svm_msg_q_msg_data (mq, msg);
1002 vcl_handle_mq_event (wrk, e);
1003 svm_msg_q_free_msg (mq, msg);
1004 }
1005 vec_reset_length (wrk->mq_msg_vector);
1006 vcl_handle_pending_wrk_updates (wrk);
1007}
1008
Florin Coras697faea2018-06-27 17:10:49 -07001009static int
1010vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001011{
Florin Coras697faea2018-06-27 17:10:49 -07001012 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001013
Florin Coras697faea2018-06-27 17:10:49 -07001014 if (vcm->app_state != STATE_APP_ENABLED)
1015 {
1016 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -07001017 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -07001018 if (PREDICT_FALSE (rv))
1019 {
Florin Coras5e062572019-03-14 19:07:51 -07001020 VDBG (0, "application session enable timed out! returning %d (%s)",
1021 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001022 return rv;
1023 }
1024 }
1025 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001026}
1027
Florin Coras697faea2018-06-27 17:10:49 -07001028static int
1029vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001030{
Florin Coras697faea2018-06-27 17:10:49 -07001031 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001032
Florin Coras697faea2018-06-27 17:10:49 -07001033 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -07001034 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -07001035 if (PREDICT_FALSE (rv))
1036 {
Florin Coras5e062572019-03-14 19:07:51 -07001037 VDBG (0, "application attach timed out! returning %d (%s)", rv,
1038 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001039 return rv;
1040 }
Dave Wallace543852a2017-08-03 02:11:34 -04001041
Florin Coras697faea2018-06-27 17:10:49 -07001042 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001043}
1044
1045static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001046vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001047{
Florin Coras134a9962018-08-28 11:32:04 -07001048 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001049 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001050 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001051 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001052
Florin Corasab2f6db2018-08-31 14:31:41 -07001053 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001054 if (!session)
1055 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001056
Florin Corasaaff5ee2019-07-08 13:00:00 -07001057 /* Flush pending accept events, if any */
1058 while (clib_fifo_elts (session->accept_evts_fifo))
1059 {
1060 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1061 accepted_msg = &evt->accepted_msg;
1062 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1063 vcl_send_session_accepted_reply (session->vpp_evt_q,
1064 accepted_msg->context,
1065 session->vpp_handle, -1);
1066 }
1067 clib_fifo_free (session->accept_evts_fifo);
1068
Florin Coras458089b2019-08-21 16:20:44 -07001069 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001070
Florin Coras5e062572019-03-14 19:07:51 -07001071 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001072 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001073 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001074
1075 session->vpp_handle = ~0;
1076 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001077
Florin Coras070453d2018-08-24 17:04:27 -07001078 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001079}
1080
Florin Coras697faea2018-06-27 17:10:49 -07001081static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001082vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001083{
Florin Coras134a9962018-08-28 11:32:04 -07001084 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001085 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001086 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001087 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001088 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001089
Florin Corasab2f6db2018-08-31 14:31:41 -07001090 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001091 if (!session)
1092 return VPPCOM_EBADFD;
1093
Dave Wallace4878cbe2017-11-21 03:45:09 -05001094 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001095 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001096
Florin Coras5e062572019-03-14 19:07:51 -07001097 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1098 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001099
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001100 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001101 {
Florin Coras5e062572019-03-14 19:07:51 -07001102 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001103 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001104 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001105
Florin Coras3c7d4f92018-12-14 11:28:43 -08001106 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001107 {
Florin Coras134a9962018-08-28 11:32:04 -07001108 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001109 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001110 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001111 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1112 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001113 }
1114 else
Dave Wallace227867f2017-11-13 21:21:53 -05001115 {
Florin Coras5e062572019-03-14 19:07:51 -07001116 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1117 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001118 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001119 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001120
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001121 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1122 {
1123 listen_session = vcl_session_get (wrk, session->listener_index);
1124 listen_session->n_accepted_sessions--;
1125 }
1126
Florin Coras070453d2018-08-24 17:04:27 -07001127 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001128}
1129
Florin Coras940f78f2018-11-30 12:11:20 -08001130/**
1131 * Handle app exit
1132 *
1133 * Notify vpp of the disconnect and mark the worker as free. If we're the
1134 * last worker, do a full cleanup otherwise, since we're probably a forked
1135 * child, avoid syscalls as much as possible. We might've lost privileges.
1136 */
1137void
1138vppcom_app_exit (void)
1139{
1140 if (!pool_elts (vcm->workers))
1141 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001142 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1143 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001144 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001145}
1146
Dave Wallace543852a2017-08-03 02:11:34 -04001147/*
1148 * VPPCOM Public API functions
1149 */
1150int
1151vppcom_app_create (char *app_name)
1152{
Dave Wallace543852a2017-08-03 02:11:34 -04001153 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001154 int rv;
1155
Florin Coras47c40e22018-11-26 17:01:36 -08001156 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001157 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001158 VDBG (1, "already initialized");
1159 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001160 }
1161
Florin Coras47c40e22018-11-26 17:01:36 -08001162 vcm->is_init = 1;
1163 vppcom_cfg (&vcm->cfg);
1164 vcl_cfg = &vcm->cfg;
1165
1166 vcm->main_cpu = pthread_self ();
1167 vcm->main_pid = getpid ();
1168 vcm->app_name = format (0, "%s", app_name);
1169 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001170 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1171 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001172 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1173 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001174 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001175 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001176
1177 /* Allocate default worker */
1178 vcl_worker_alloc_and_init ();
1179
1180 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001181 vcl_elog_init (vcm);
1182 vcm->app_state = STATE_APP_START;
1183 rv = vppcom_connect_to_vpp (app_name);
1184 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001185 {
Florin Coras47c40e22018-11-26 17:01:36 -08001186 VERR ("couldn't connect to VPP!");
1187 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001188 }
Florin Coras47c40e22018-11-26 17:01:36 -08001189 VDBG (0, "sending session enable");
1190 rv = vppcom_app_session_enable ();
1191 if (rv)
1192 {
1193 VERR ("vppcom_app_session_enable() failed!");
1194 return rv;
1195 }
1196
1197 VDBG (0, "sending app attach");
1198 rv = vppcom_app_attach ();
1199 if (rv)
1200 {
1201 VERR ("vppcom_app_attach() failed!");
1202 return rv;
1203 }
1204
1205 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1206 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001207
1208 return VPPCOM_OK;
1209}
1210
1211void
1212vppcom_app_destroy (void)
1213{
Dave Wallace543852a2017-08-03 02:11:34 -04001214 int rv;
Dave Wallacede910062018-03-20 09:22:13 -04001215 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -04001216
Florin Coras940f78f2018-11-30 12:11:20 -08001217 if (!pool_elts (vcm->workers))
1218 return;
1219
Florin Coras0d427d82018-06-27 03:24:07 -07001220 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001221
Florin Coras940f78f2018-11-30 12:11:20 -08001222 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -08001223 {
Florin Coras458089b2019-08-21 16:20:44 -07001224 vcl_send_app_detach (vcl_worker_get_current ());
Florin Coras47c40e22018-11-26 17:01:36 -08001225 orig_app_timeout = vcm->cfg.app_timeout;
1226 vcm->cfg.app_timeout = 2.0;
1227 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
1228 vcm->cfg.app_timeout = orig_app_timeout;
1229 if (PREDICT_FALSE (rv))
1230 VDBG (0, "application detach timed out! returning %d (%s)", rv,
1231 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -08001232 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -08001233 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001234 }
1235 else
1236 {
Florin Coras01f3f892018-12-02 12:45:53 -08001237 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001238 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001239
Florin Coras01f3f892018-12-02 12:45:53 -08001240 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -07001241 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -04001242 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001243}
1244
1245int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001246vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001247{
Florin Coras134a9962018-08-28 11:32:04 -07001248 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001249 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001250
Florin Coras134a9962018-08-28 11:32:04 -07001251 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001252
Florin Coras7e12d942018-06-27 14:32:43 -07001253 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001254 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001255 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001256 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001257
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001258 if (is_nonblocking)
1259 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001260
Florin Coras7e12d942018-06-27 14:32:43 -07001261 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1262 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001263
Florin Coras5e062572019-03-14 19:07:51 -07001264 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001265
Florin Coras134a9962018-08-28 11:32:04 -07001266 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001267}
1268
1269int
Florin Corasf9240dc2019-01-15 08:03:17 -08001270vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1271 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001272{
Florin Coras288eaab2019-02-03 15:26:14 -08001273 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001274 u32 next_sh, vep_sh;
1275 int rv = VPPCOM_OK;
1276 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001277 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001278
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001279 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001280 next_sh = session->vep.next_sh;
1281 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001282 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001283 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001284
Florin Corasf9240dc2019-01-15 08:03:17 -08001285 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001286
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001287 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001288 {
Florin Coras134a9962018-08-28 11:32:04 -07001289 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001290 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001291 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001292 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001293 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001294 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1295 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001296
Florin Coras134a9962018-08-28 11:32:04 -07001297 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001298 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001299 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001300 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001301
1302 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001303 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001304 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1305 if (rv < 0)
1306 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1307 "failed! rv %d (%s)", session->session_index, vpp_handle,
1308 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001309 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001310
Florin Coras9ace36d2019-10-28 13:14:17 -07001311 if (!do_disconnect)
1312 {
1313 VDBG (1, "session %u [0x%llx] disconnect skipped",
1314 session->session_index, vpp_handle);
1315 goto cleanup;
1316 }
1317
1318 if (state & STATE_LISTEN)
1319 {
1320 rv = vppcom_session_unbind (sh);
1321 if (PREDICT_FALSE (rv < 0))
1322 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1323 "rv %d (%s)", session->session_index, vpp_handle, rv,
1324 vppcom_retval_str (rv));
1325 return rv;
1326 }
1327 else if ((state & STATE_OPEN)
1328 || (vcl_session_is_connectable_listener (wrk, session)))
1329 {
1330 rv = vppcom_session_disconnect (sh);
1331 if (PREDICT_FALSE (rv < 0))
1332 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1333 " rv %d (%s)", session->session_index, vpp_handle,
1334 rv, vppcom_retval_str (rv));
1335 }
1336 else if (state == STATE_DISCONNECT)
1337 {
1338 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1339 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1340 session->vpp_handle, 0);
1341 }
Florin Corasadcfb152020-02-12 08:50:29 +00001342 else if (state == STATE_DETACHED)
1343 {
1344 /* Should not happen. VPP cleaned up before app confirmed close */
1345 VDBG (0, "vpp freed session %d before close", session->session_index);
1346 goto free_session;
1347 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001348
Florin Coras54140622020-02-04 19:04:34 +00001349 session->session_state = STATE_CLOSED;
1350
Florin Coras9ace36d2019-10-28 13:14:17 -07001351 /* Session is removed only after vpp confirms the disconnect */
1352 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001353
Florin Corasf9240dc2019-01-15 08:03:17 -08001354cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001355 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001356free_session:
Florin Coras134a9962018-08-28 11:32:04 -07001357 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001358 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001359
Dave Wallace543852a2017-08-03 02:11:34 -04001360 return rv;
1361}
1362
1363int
Florin Corasf9240dc2019-01-15 08:03:17 -08001364vppcom_session_close (uint32_t session_handle)
1365{
1366 vcl_worker_t *wrk = vcl_worker_get_current ();
1367 vcl_session_t *session;
1368
1369 session = vcl_session_get_w_handle (wrk, session_handle);
1370 if (!session)
1371 return VPPCOM_EBADFD;
1372 return vcl_session_cleanup (wrk, session, session_handle,
1373 1 /* do_disconnect */ );
1374}
1375
1376int
Florin Coras134a9962018-08-28 11:32:04 -07001377vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001378{
Florin Coras134a9962018-08-28 11:32:04 -07001379 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001380 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001381
1382 if (!ep || !ep->ip)
1383 return VPPCOM_EINVAL;
1384
Florin Coras134a9962018-08-28 11:32:04 -07001385 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001386 if (!session)
1387 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001388
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001389 if (session->is_vep)
1390 {
Florin Coras5e062572019-03-14 19:07:51 -07001391 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1392 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001393 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001394 }
1395
Florin Coras7e12d942018-06-27 14:32:43 -07001396 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001397 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001398 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1399 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001400 else
Dave Barach178cf492018-11-13 16:34:13 -05001401 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1402 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001403 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001404
Florin Coras5e062572019-03-14 19:07:51 -07001405 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1406 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001407 session->transport.is_ip4 ? "IPv4" : "IPv6",
1408 format_ip46_address, &session->transport.lcl_ip,
1409 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1410 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001411 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001412 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001413
1414 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001415 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001416
Florin Coras070453d2018-08-24 17:04:27 -07001417 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001418}
1419
1420int
Florin Coras134a9962018-08-28 11:32:04 -07001421vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001422{
Florin Coras134a9962018-08-28 11:32:04 -07001423 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001424 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001425 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001426 int rv;
1427
Florin Coras134a9962018-08-28 11:32:04 -07001428 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001429 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001430 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001431
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001432 if (q_len == 0 || q_len == ~0)
1433 q_len = vcm->cfg.listen_queue_size;
1434
Dave Wallaceee45d412017-11-24 21:44:06 -05001435 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001436 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001437 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001438 VDBG (0, "session %u [0x%llx]: already in listen state!",
1439 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001440 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001441 }
1442
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001443 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001444
Florin Coras070453d2018-08-24 17:04:27 -07001445 /*
1446 * Send listen request to vpp and wait for reply
1447 */
Florin Coras458089b2019-08-21 16:20:44 -07001448 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001449 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1450 STATE_LISTEN,
1451 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001452
Florin Coras070453d2018-08-24 17:04:27 -07001453 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001454 {
Florin Coras134a9962018-08-28 11:32:04 -07001455 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001456 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1457 listen_sh, listen_session->vpp_handle, rv,
1458 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001459 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001460 }
1461
Florin Coras070453d2018-08-24 17:04:27 -07001462 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001463}
1464
Ping Yu34a3a082018-11-30 19:16:17 -05001465int
1466vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1467 uint32_t cert_len)
1468{
1469
1470 vcl_worker_t *wrk = vcl_worker_get_current ();
1471 vcl_session_t *session = 0;
1472
1473 session = vcl_session_get_w_handle (wrk, session_handle);
1474 if (!session)
1475 return VPPCOM_EBADFD;
1476
1477 if (cert_len == 0 || cert_len == ~0)
1478 return VPPCOM_EBADFD;
1479
1480 /*
1481 * Send listen request to vpp and wait for reply
1482 */
1483 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001484 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1485 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001486 return VPPCOM_OK;
1487
1488}
1489
1490int
1491vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1492 uint32_t key_len)
1493{
1494
1495 vcl_worker_t *wrk = vcl_worker_get_current ();
1496 vcl_session_t *session = 0;
1497
1498 session = vcl_session_get_w_handle (wrk, session_handle);
1499 if (!session)
1500 return VPPCOM_EBADFD;
1501
1502 if (key_len == 0 || key_len == ~0)
1503 return VPPCOM_EBADFD;
1504
Ping Yu34a3a082018-11-30 19:16:17 -05001505 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001506 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1507 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001508 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001509}
1510
Florin Coras134a9962018-08-28 11:32:04 -07001511static int
Florin Coras5e062572019-03-14 19:07:51 -07001512validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001513{
Florin Coras5e062572019-03-14 19:07:51 -07001514 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001515 {
Florin Coras5e062572019-03-14 19:07:51 -07001516 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1517 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001518 return VPPCOM_EBADFD;
1519 }
1520
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001521 if ((ls->session_state != STATE_LISTEN)
1522 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001523 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001524 VDBG (0,
1525 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1526 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001527 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001528 return VPPCOM_EBADFD;
1529 }
1530 return VPPCOM_OK;
1531}
1532
1533int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001534vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1535{
1536 if (!strcmp (proto_str, "TCP"))
1537 *proto = VPPCOM_PROTO_TCP;
1538 else if (!strcmp (proto_str, "tcp"))
1539 *proto = VPPCOM_PROTO_TCP;
1540 else if (!strcmp (proto_str, "UDP"))
1541 *proto = VPPCOM_PROTO_UDP;
1542 else if (!strcmp (proto_str, "udp"))
1543 *proto = VPPCOM_PROTO_UDP;
1544 else if (!strcmp (proto_str, "UDPC"))
1545 *proto = VPPCOM_PROTO_UDPC;
1546 else if (!strcmp (proto_str, "udpc"))
1547 *proto = VPPCOM_PROTO_UDPC;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001548 else if (!strcmp (proto_str, "TLS"))
1549 *proto = VPPCOM_PROTO_TLS;
1550 else if (!strcmp (proto_str, "tls"))
1551 *proto = VPPCOM_PROTO_TLS;
1552 else if (!strcmp (proto_str, "QUIC"))
1553 *proto = VPPCOM_PROTO_QUIC;
1554 else if (!strcmp (proto_str, "quic"))
1555 *proto = VPPCOM_PROTO_QUIC;
1556 else
1557 return 1;
1558 return 0;
1559}
1560
1561int
Florin Coras134a9962018-08-28 11:32:04 -07001562vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001563 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001564{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001565 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001566 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001567 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001568 vcl_session_t *listen_session = 0;
1569 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001570 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001571 svm_msg_q_msg_t msg;
1572 session_event_t *e;
1573 u8 is_nonblocking;
1574 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001575
Florin Coras134a9962018-08-28 11:32:04 -07001576 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001577 if (!listen_session)
1578 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001579
Florin Coras134a9962018-08-28 11:32:04 -07001580 listen_session_index = listen_session->session_index;
1581 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001582 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001583
Florin Coras54693d22018-07-17 10:46:29 -07001584 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001585 {
Florin Coras54693d22018-07-17 10:46:29 -07001586 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001587 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001588 accepted_msg = evt->accepted_msg;
1589 goto handle;
1590 }
1591
1592 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1593 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001594 while (1)
1595 {
Carl Smith592a9092019-11-12 14:57:37 +13001596 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1597 return VPPCOM_EAGAIN;
1598
Florin Coras134a9962018-08-28 11:32:04 -07001599 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001600 return VPPCOM_EAGAIN;
1601
Florin Coras134a9962018-08-28 11:32:04 -07001602 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001603 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001604 {
wanghanlin96453fd2019-12-16 19:14:39 +08001605 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001606 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001607 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001608 }
Dave Barach178cf492018-11-13 16:34:13 -05001609 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001610 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001611 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001612 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001613
Florin Coras54693d22018-07-17 10:46:29 -07001614handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001615
Florin Coras00cca802019-06-06 09:38:44 -07001616 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1617 listen_session_index);
1618 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1619 return VPPCOM_ECONNABORTED;
1620
Florin Coras134a9962018-08-28 11:32:04 -07001621 listen_session = vcl_session_get (wrk, listen_session_index);
1622 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001623
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001624 if (flags & O_NONBLOCK)
1625 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001626
Florin Coras5e062572019-03-14 19:07:51 -07001627 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1628 " flags %d, is_nonblocking %u", listen_session->session_index,
1629 listen_session->vpp_handle, client_session_index,
1630 client_session->vpp_handle, flags,
1631 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001632
Dave Wallace048b1d62018-01-03 22:24:41 -05001633 if (ep)
1634 {
Florin Coras7e12d942018-06-27 14:32:43 -07001635 ep->is_ip4 = client_session->transport.is_ip4;
1636 ep->port = client_session->transport.rmt_port;
1637 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001638 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1639 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001640 else
Dave Barach178cf492018-11-13 16:34:13 -05001641 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1642 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001643 }
Dave Wallace60caa062017-11-10 17:07:13 -05001644
Florin Coras05ecfcc2018-12-12 18:19:39 -08001645 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001646 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001647 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001648 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001649 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001650 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001651 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001652 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001653 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001654 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1655 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001656
Florin Coras3c7d4f92018-12-14 11:28:43 -08001657 /*
1658 * Session might have been closed already
1659 */
1660 if (accept_flags)
1661 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001662 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001663 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001664 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001665 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001666 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001667 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001668}
1669
1670int
Florin Coras134a9962018-08-28 11:32:04 -07001671vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001672{
Florin Coras134a9962018-08-28 11:32:04 -07001673 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001674 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001675 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001676 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001677
Florin Coras134a9962018-08-28 11:32:04 -07001678 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001679 if (!session)
1680 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001681 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001682
1683 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001684 {
Florin Coras5e062572019-03-14 19:07:51 -07001685 VDBG (0, "ERROR: cannot connect epoll session %u!",
1686 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001687 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001688 }
1689
Florin Coras7e12d942018-06-27 14:32:43 -07001690 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001691 {
Florin Coras7baeb712019-01-04 17:05:43 -08001692 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001693 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001694 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001695 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001696 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001697 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001698 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001699 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001700 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001701 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001702 }
1703
Florin Coras0a1e1832020-03-29 18:54:04 +00001704 /* Attempt to connect a connectionless listener */
1705 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1706 {
1707 if (session->session_type != VPPCOM_PROTO_UDP)
1708 return VPPCOM_EINVAL;
1709 vcl_send_session_unlisten (wrk, session);
1710 session->session_state = STATE_CLOSED;
1711 }
1712
Florin Coras7e12d942018-06-27 14:32:43 -07001713 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001714 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001715 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001716 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001717 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001718
Florin Coras0a1e1832020-03-29 18:54:04 +00001719 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001720 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001721 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001722 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001723 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001724 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001725 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001726 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001727 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001728
Florin Coras458089b2019-08-21 16:20:44 -07001729 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001730
1731 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1732 return VPPCOM_EINPROGRESS;
1733
1734 /*
1735 * Wait for reply from vpp if blocking
1736 */
Florin Coras070453d2018-08-24 17:04:27 -07001737 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1738 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001739
Florin Coras134a9962018-08-28 11:32:04 -07001740 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001741 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1742 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001743
Dave Wallace4878cbe2017-11-21 03:45:09 -05001744 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001745}
1746
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001747int
1748vppcom_session_stream_connect (uint32_t session_handle,
1749 uint32_t parent_session_handle)
1750{
1751 vcl_worker_t *wrk = vcl_worker_get_current ();
1752 vcl_session_t *session, *parent_session;
1753 u32 session_index, parent_session_index;
1754 int rv;
1755
1756 session = vcl_session_get_w_handle (wrk, session_handle);
1757 if (!session)
1758 return VPPCOM_EBADFD;
1759 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1760 if (!parent_session)
1761 return VPPCOM_EBADFD;
1762
1763 session_index = session->session_index;
1764 parent_session_index = parent_session->session_index;
1765 if (PREDICT_FALSE (session->is_vep))
1766 {
1767 VDBG (0, "ERROR: cannot connect epoll session %u!",
1768 session->session_index);
1769 return VPPCOM_EBADFD;
1770 }
1771
1772 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1773 {
1774 VDBG (0, "session handle %u [0x%llx]: session already "
1775 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1776 session_handle, session->vpp_handle,
1777 parent_session_handle, parent_session->vpp_handle,
1778 vppcom_proto_str (session->session_type), session->session_state,
1779 vppcom_session_state_str (session->session_state));
1780 return VPPCOM_OK;
1781 }
1782
1783 /* Connect to quic session specifics */
1784 session->transport.is_ip4 = parent_session->transport.is_ip4;
1785 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1786 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001787 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001788
1789 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1790 session_handle, parent_session_handle, parent_session->vpp_handle);
1791
1792 /*
1793 * Send connect request and wait for reply from vpp
1794 */
Florin Coras458089b2019-08-21 16:20:44 -07001795 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001796 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1797 vcm->cfg.session_timeout);
1798
1799 session->listener_index = parent_session_index;
1800 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001801 if (parent_session)
1802 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001803
1804 session = vcl_session_get (wrk, session_index);
1805 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1806 session->vpp_handle, rv ? "failed" : "succeeded");
1807
1808 return rv;
1809}
1810
Florin Coras54693d22018-07-17 10:46:29 -07001811static u8
1812vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1813{
Florin Corasc0737e92019-03-04 14:19:39 -08001814 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001815}
1816
Steven58f464e2017-10-25 12:33:12 -07001817static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001818vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001819 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001820{
Florin Coras134a9962018-08-28 11:32:04 -07001821 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001822 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001823 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001824 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001825 svm_msg_q_msg_t msg;
1826 session_event_t *e;
1827 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001828 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001829
Florin Coras070453d2018-08-24 17:04:27 -07001830 if (PREDICT_FALSE (!buf))
1831 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001832
Florin Coras134a9962018-08-28 11:32:04 -07001833 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001834 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001835 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001836
Florin Coras6d0106e2019-01-29 20:11:58 -08001837 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001838 {
Florin Coras5e062572019-03-14 19:07:51 -07001839 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001840 s->session_index, s->vpp_handle, s->session_state,
1841 vppcom_session_state_str (s->session_state));
1842 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001843 }
1844
Florin Coras2cba8532018-09-11 16:33:36 -07001845 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001846 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001847 mq = wrk->app_event_queue;
1848 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001849 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001850
Sirshak Das28aa5392019-02-05 01:33:33 -06001851 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001852 {
Florin Coras54693d22018-07-17 10:46:29 -07001853 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001854 {
Yu Pingb2955352019-12-04 06:49:04 +08001855 if (vcl_session_is_closing (s))
1856 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001857 svm_fifo_unset_event (s->rx_fifo);
1858 return VPPCOM_EWOULDBLOCK;
1859 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001860 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001861 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001862 if (vcl_session_is_closing (s))
1863 return vcl_session_closing_error (s);
1864
Florin Corasc0737e92019-03-04 14:19:39 -08001865 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001866 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001867 if (svm_msg_q_is_empty (mq))
1868 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001869
Florin Coras54693d22018-07-17 10:46:29 -07001870 svm_msg_q_sub_w_lock (mq, &msg);
1871 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001872 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001873 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001874 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001875 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001876 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001877 }
Florin Coras54693d22018-07-17 10:46:29 -07001878
Florin Coras460dce62018-07-27 05:45:06 -07001879 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001880 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001881 else
Florin Coras99368312018-08-02 10:45:44 -07001882 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001883
Sirshak Das28aa5392019-02-05 01:33:33 -06001884 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08001885 svm_fifo_unset_event (s->rx_fifo);
Florin Coras41c9e042018-09-11 00:10:41 -07001886
Florin Coras317b8e02019-04-17 09:57:46 -07001887 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001888 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001889 {
1890 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1891 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001892 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001893 }
1894
Florin Coras5e062572019-03-14 19:07:51 -07001895 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1896 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001897
Florin Coras54693d22018-07-17 10:46:29 -07001898 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001899}
1900
Steven58f464e2017-10-25 12:33:12 -07001901int
Florin Coras134a9962018-08-28 11:32:04 -07001902vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001903{
Florin Coras134a9962018-08-28 11:32:04 -07001904 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001905}
1906
1907static int
Florin Coras134a9962018-08-28 11:32:04 -07001908vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001909{
Florin Coras134a9962018-08-28 11:32:04 -07001910 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001911}
1912
Florin Coras2cba8532018-09-11 16:33:36 -07001913int
1914vppcom_session_read_segments (uint32_t session_handle,
1915 vppcom_data_segments_t ds)
1916{
1917 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001918 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001919 vcl_session_t *s = 0;
1920 svm_fifo_t *rx_fifo;
1921 svm_msg_q_msg_t msg;
1922 session_event_t *e;
1923 svm_msg_q_t *mq;
1924 u8 is_ct;
1925
1926 s = vcl_session_get_w_handle (wrk, session_handle);
1927 if (PREDICT_FALSE (!s || s->is_vep))
1928 return VPPCOM_EBADFD;
1929
Florin Coras6d0106e2019-01-29 20:11:58 -08001930 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1931 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001932
1933 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1934 is_ct = vcl_session_is_ct (s);
1935 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1936 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001937 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001938
Florin Coras653e43f2019-03-04 10:56:23 -08001939 if (is_ct)
1940 svm_fifo_unset_event (s->rx_fifo);
1941
Sirshak Das28aa5392019-02-05 01:33:33 -06001942 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001943 {
1944 if (is_nonblocking)
1945 {
1946 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001947 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001948 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001949 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001950 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001951 if (vcl_session_is_closing (s))
1952 return vcl_session_closing_error (s);
1953
Florin Coras2cba8532018-09-11 16:33:36 -07001954 svm_fifo_unset_event (rx_fifo);
1955 svm_msg_q_lock (mq);
1956 if (svm_msg_q_is_empty (mq))
1957 svm_msg_q_wait (mq);
1958
1959 svm_msg_q_sub_w_lock (mq, &msg);
1960 e = svm_msg_q_msg_data (mq, &msg);
1961 svm_msg_q_unlock (mq);
1962 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001963 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001964 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001965 }
1966 }
1967
Florin Coras88001c62019-04-24 14:44:46 -07001968 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001969 svm_fifo_unset_event (rx_fifo);
1970
Florin Coras2cba8532018-09-11 16:33:36 -07001971 return n_read;
1972}
1973
1974void
1975vppcom_session_free_segments (uint32_t session_handle,
1976 vppcom_data_segments_t ds)
1977{
1978 vcl_worker_t *wrk = vcl_worker_get_current ();
1979 vcl_session_t *s;
1980
1981 s = vcl_session_get_w_handle (wrk, session_handle);
1982 if (PREDICT_FALSE (!s || s->is_vep))
1983 return;
1984
Florin Coras88001c62019-04-24 14:44:46 -07001985 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001986}
1987
Florin Coras2cba8532018-09-11 16:33:36 -07001988int
1989vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1990{
1991 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001992 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001993 if (first_copy < max_bytes)
1994 {
Dave Barach178cf492018-11-13 16:34:13 -05001995 clib_memcpy_fast (buf + first_copy, ds[1].data,
1996 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001997 }
1998 return 0;
1999}
2000
Florin Coras54693d22018-07-17 10:46:29 -07002001static u8
2002vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2003{
Florin Corasc0737e92019-03-04 14:19:39 -08002004 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04002005}
2006
Florin Coras7a2abce2020-04-05 19:25:44 +00002007always_inline u8
2008vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002009{
Florin Coras7a2abce2020-04-05 19:25:44 +00002010 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2011 if (is_dgram)
2012 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2013 else
2014 return max_enq > 0;
2015
2016}
2017
2018always_inline int
2019vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2020 size_t n, u8 is_flush, u8 is_dgram)
2021{
Florin Coras6d0106e2019-01-29 20:11:58 -08002022 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002023 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07002024 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08002025 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002026 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07002027 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002028 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002029
jiangxiaomingff31ac62019-11-21 23:34:56 +08002030 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002031 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002032
Florin Coras460dce62018-07-27 05:45:06 -07002033 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002034 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002035 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2036 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002037 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002038 }
2039
Florin Coras6d0106e2019-01-29 20:11:58 -08002040 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002041 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002042 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2043 s->session_index, s->vpp_handle, s->session_state,
2044 vppcom_session_state_str (s->session_state));
2045 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002046 }
2047
Florin Coras0e88e852018-09-17 22:09:02 -07002048 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002049 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002050 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002051
Florin Coras653e43f2019-03-04 10:56:23 -08002052 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002053 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002054 {
Florin Coras54693d22018-07-17 10:46:29 -07002055 if (is_nonblocking)
2056 {
Florin Coras070453d2018-08-24 17:04:27 -07002057 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002058 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002059 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002060 {
Florin Coras2d379d82019-06-28 12:45:12 -07002061 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002062 if (vcl_session_is_closing (s))
2063 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002064 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002065 if (svm_msg_q_is_empty (mq))
2066 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002067
Florin Coras54693d22018-07-17 10:46:29 -07002068 svm_msg_q_sub_w_lock (mq, &msg);
2069 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002070 svm_msg_q_unlock (mq);
2071
Florin Coras0e88e852018-09-17 22:09:02 -07002072 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002073 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002074 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002075 }
Dave Wallace543852a2017-08-03 02:11:34 -04002076 }
Dave Wallace543852a2017-08-03 02:11:34 -04002077
Florin Coras653e43f2019-03-04 10:56:23 -08002078 et = SESSION_IO_EVT_TX;
2079 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002080 et = SESSION_IO_EVT_TX_FLUSH;
2081
Florin Coras7a2abce2020-04-05 19:25:44 +00002082 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002083 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002084 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002085 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002086 else
2087 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002088 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002089
Florin Coras14ed6df2019-03-06 21:13:42 -08002090 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002091 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2092 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002093
Florin Coras460dce62018-07-27 05:45:06 -07002094 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002095
Florin Coras6d0106e2019-01-29 20:11:58 -08002096 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2097 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002098
Florin Coras54693d22018-07-17 10:46:29 -07002099 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002100}
2101
Florin Coras42ceddb2018-12-12 10:56:01 -08002102int
2103vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2104{
Florin Coras7a2abce2020-04-05 19:25:44 +00002105 vcl_worker_t *wrk = vcl_worker_get_current ();
2106 vcl_session_t *s;
2107
2108 s = vcl_session_get_w_handle (wrk, session_handle);
2109 if (PREDICT_FALSE (!s))
2110 return VPPCOM_EBADFD;
2111
2112 return vppcom_session_write_inline (wrk, s, buf, n,
2113 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002114}
2115
Florin Corasb0f662f2018-12-27 14:51:46 -08002116int
2117vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2118{
Florin Coras7a2abce2020-04-05 19:25:44 +00002119 vcl_worker_t *wrk = vcl_worker_get_current ();
2120 vcl_session_t *s;
2121
2122 s = vcl_session_get_w_handle (wrk, session_handle);
2123 if (PREDICT_FALSE (!s))
2124 return VPPCOM_EBADFD;
2125
2126 return vppcom_session_write_inline (wrk, s, buf, n,
2127 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002128}
2129
Florin Corasc0737e92019-03-04 14:19:39 -08002130#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002131if (PREDICT_FALSE (!_s->rx_fifo)) \
2132 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002133if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2134 { \
2135 if (!vcl_session_is_ct (_s)) \
2136 { \
2137 svm_fifo_unset_event (_s->rx_fifo); \
2138 if (svm_fifo_is_empty (_s->rx_fifo)) \
2139 break; \
2140 } \
2141 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2142 { \
2143 svm_fifo_unset_event (_s->ct_rx_fifo); \
2144 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2145 break; \
2146 } \
2147 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002148
Florin Coras86f04502018-09-12 16:08:01 -07002149static void
2150vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2151 unsigned long n_bits, unsigned long *read_map,
2152 unsigned long *write_map,
2153 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002154{
2155 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002156 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002157 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002158 u32 sid;
2159
2160 switch (e->event_type)
2161 {
Florin Corasc0737e92019-03-04 14:19:39 -08002162 case SESSION_IO_EVT_RX:
2163 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002164 session = vcl_session_get (wrk, sid);
2165 if (!session)
2166 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002167 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002168 if (sid < n_bits && read_map)
2169 {
David Johnsond9818dd2018-12-14 14:53:41 -05002170 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002171 *bits_set += 1;
2172 }
2173 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002174 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002175 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002176 session = vcl_session_get (wrk, sid);
2177 if (!session)
2178 break;
2179 if (sid < n_bits && write_map)
2180 {
David Johnsond9818dd2018-12-14 14:53:41 -05002181 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002182 *bits_set += 1;
2183 }
2184 break;
Florin Coras86f04502018-09-12 16:08:01 -07002185 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002186 session = vcl_session_accepted (wrk,
2187 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002188 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002189 break;
Florin Coras86f04502018-09-12 16:08:01 -07002190 sid = session->session_index;
2191 if (sid < n_bits && read_map)
2192 {
David Johnsond9818dd2018-12-14 14:53:41 -05002193 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002194 *bits_set += 1;
2195 }
2196 break;
2197 case SESSION_CTRL_EVT_CONNECTED:
2198 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002199 sid = vcl_session_connected_handler (wrk, connected_msg);
2200 if (sid == VCL_INVALID_SESSION_INDEX)
2201 break;
2202 if (sid < n_bits && write_map)
2203 {
2204 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2205 *bits_set += 1;
2206 }
Florin Coras86f04502018-09-12 16:08:01 -07002207 break;
2208 case SESSION_CTRL_EVT_DISCONNECTED:
2209 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002210 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2211 if (!session)
2212 break;
2213 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002214 if (sid < n_bits && except_map)
2215 {
David Johnsond9818dd2018-12-14 14:53:41 -05002216 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002217 *bits_set += 1;
2218 }
2219 break;
2220 case SESSION_CTRL_EVT_RESET:
2221 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2222 if (sid < n_bits && except_map)
2223 {
David Johnsond9818dd2018-12-14 14:53:41 -05002224 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002225 *bits_set += 1;
2226 }
2227 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002228 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2229 vcl_session_unlisten_reply_handler (wrk, e->data);
2230 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002231 case SESSION_CTRL_EVT_MIGRATED:
2232 vcl_session_migrated_handler (wrk, e->data);
2233 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002234 case SESSION_CTRL_EVT_CLEANUP:
2235 vcl_session_cleanup_handler (wrk, e->data);
2236 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002237 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2238 vcl_session_worker_update_reply_handler (wrk, e->data);
2239 break;
2240 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2241 vcl_session_req_worker_update_handler (wrk, e->data);
2242 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002243 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2244 vcl_session_app_add_segment_handler (wrk, e->data);
2245 break;
2246 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2247 vcl_session_app_del_segment_handler (wrk, e->data);
2248 break;
Florin Coras86f04502018-09-12 16:08:01 -07002249 default:
2250 clib_warning ("unhandled: %u", e->event_type);
2251 break;
2252 }
2253}
2254
2255static int
2256vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2257 unsigned long n_bits, unsigned long *read_map,
2258 unsigned long *write_map, unsigned long *except_map,
2259 double time_to_wait, u32 * bits_set)
2260{
Florin Coras99368312018-08-02 10:45:44 -07002261 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002262 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002263 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002264
2265 svm_msg_q_lock (mq);
2266 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002267 {
Florin Coras54693d22018-07-17 10:46:29 -07002268 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002269 {
Florin Coras54693d22018-07-17 10:46:29 -07002270 svm_msg_q_unlock (mq);
2271 return 0;
2272 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002273
Florin Coras54693d22018-07-17 10:46:29 -07002274 if (!time_to_wait)
2275 {
2276 svm_msg_q_unlock (mq);
2277 return 0;
2278 }
2279 else if (time_to_wait < 0)
2280 {
2281 svm_msg_q_wait (mq);
2282 }
2283 else
2284 {
2285 if (svm_msg_q_timedwait (mq, time_to_wait))
2286 {
2287 svm_msg_q_unlock (mq);
2288 return 0;
2289 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002290 }
2291 }
Florin Corase003a1b2019-06-05 10:47:16 -07002292 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002293 svm_msg_q_unlock (mq);
2294
Florin Coras134a9962018-08-28 11:32:04 -07002295 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002296 {
Florin Coras134a9962018-08-28 11:32:04 -07002297 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002298 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002299 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2300 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002301 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002302 }
Florin Coras134a9962018-08-28 11:32:04 -07002303 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002304 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002305 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002306}
2307
Florin Coras99368312018-08-02 10:45:44 -07002308static int
Florin Coras294afe22019-01-07 17:49:17 -08002309vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2310 vcl_si_set * read_map, vcl_si_set * write_map,
2311 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002312 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002313{
Florin Coras14ed6df2019-03-06 21:13:42 -08002314 double wait = 0, start = 0;
2315
2316 if (!*bits_set)
2317 {
2318 wait = time_to_wait;
2319 start = clib_time_now (&wrk->clib_time);
2320 }
2321
2322 do
2323 {
2324 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2325 write_map, except_map, wait, bits_set);
2326 if (*bits_set)
2327 return *bits_set;
2328 if (wait == -1)
2329 continue;
2330
2331 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2332 }
2333 while (wait > 0);
2334
2335 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002336}
2337
2338static int
Florin Coras294afe22019-01-07 17:49:17 -08002339vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2340 vcl_si_set * read_map, vcl_si_set * write_map,
2341 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002342 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002343{
2344 vcl_mq_evt_conn_t *mqc;
2345 int __clib_unused n_read;
2346 int n_mq_evts, i;
2347 u64 buf;
2348
Florin Coras134a9962018-08-28 11:32:04 -07002349 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2350 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2351 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002352 for (i = 0; i < n_mq_evts; i++)
2353 {
Florin Coras134a9962018-08-28 11:32:04 -07002354 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002355 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002356 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002357 except_map, 0, bits_set);
2358 }
2359
2360 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2361}
2362
Dave Wallace543852a2017-08-03 02:11:34 -04002363int
Florin Coras294afe22019-01-07 17:49:17 -08002364vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2365 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002366{
Florin Coras54693d22018-07-17 10:46:29 -07002367 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002368 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002369 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002370 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002371
Dave Wallace7876d392017-10-19 03:53:57 -04002372 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002373 {
Florin Coras134a9962018-08-28 11:32:04 -07002374 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002375 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002376 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2377 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002378 }
Dave Wallace7876d392017-10-19 03:53:57 -04002379 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002380 {
Florin Coras134a9962018-08-28 11:32:04 -07002381 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002382 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002383 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2384 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002385 }
Dave Wallace7876d392017-10-19 03:53:57 -04002386 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002387 {
Florin Coras134a9962018-08-28 11:32:04 -07002388 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002389 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002390 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2391 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002392 }
2393
Florin Coras54693d22018-07-17 10:46:29 -07002394 if (!n_bits)
2395 return 0;
2396
2397 if (!write_map)
2398 goto check_rd;
2399
2400 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002401 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2402 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002403 {
Florin Coras47c40e22018-11-26 17:01:36 -08002404 if (except_map && sid < minbits)
2405 clib_bitmap_set_no_check (except_map, sid, 1);
2406 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002407 }
2408
Sirshak Das28aa5392019-02-05 01:33:33 -06002409 rv = svm_fifo_is_full_prod (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002410 if (!rv)
2411 {
David Johnsond9818dd2018-12-14 14:53:41 -05002412 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002413 bits_set++;
2414 }
Florin Coras294afe22019-01-07 17:49:17 -08002415 else
Florin Coras2d379d82019-06-28 12:45:12 -07002416 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002417 }));
2418
2419check_rd:
2420 if (!read_map)
2421 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002422
Florin Coras134a9962018-08-28 11:32:04 -07002423 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2424 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002425 {
Florin Coras47c40e22018-11-26 17:01:36 -08002426 if (except_map && sid < minbits)
2427 clib_bitmap_set_no_check (except_map, sid, 1);
2428 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002429 }
2430
Florin Coras0ef8ef22019-01-18 08:37:13 -08002431 rv = vcl_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002432 if (rv)
2433 {
David Johnsond9818dd2018-12-14 14:53:41 -05002434 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002435 bits_set++;
2436 }
2437 }));
2438 /* *INDENT-ON* */
2439
2440check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002441
Florin Coras86f04502018-09-12 16:08:01 -07002442 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2443 {
2444 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2445 read_map, write_map, except_map, &bits_set);
2446 }
2447 vec_reset_length (wrk->unhandled_evts_vector);
2448
Florin Coras99368312018-08-02 10:45:44 -07002449 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002450 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002451 time_to_wait, &bits_set);
2452 else
Florin Coras134a9962018-08-28 11:32:04 -07002453 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002454 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002455
Dave Wallace543852a2017-08-03 02:11:34 -04002456 return (bits_set);
2457}
2458
Dave Wallacef7f809c2017-10-03 01:48:42 -04002459static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002460vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002461{
Florin Coras7e12d942018-06-27 14:32:43 -07002462 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002463 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002464 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002465
Florin Corasc0737e92019-03-04 14:19:39 -08002466 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002467 return;
2468
Florin Coras7e5e62b2019-07-30 14:08:23 -07002469 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002470 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002471 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002472 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002473 goto done;
2474 }
2475 if (PREDICT_FALSE (!session->is_vep))
2476 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002477 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002478 goto done;
2479 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002480 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002481 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002482 "{\n"
2483 " is_vep = %u\n"
2484 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002485 " next_sh = 0x%x (%u)\n"
2486 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002487 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002488
Florin Coras7e5e62b2019-07-30 14:08:23 -07002489 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002490 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002491 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002492 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002493 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002494 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002495 goto done;
2496 }
2497 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002498 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002499 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002500 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002501 else if (PREDICT_FALSE (!session->is_vep_session))
2502 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002503 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002504 goto done;
2505 }
2506 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002507 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2508 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2509 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002510 if (session->is_vep_session)
2511 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002512 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002513 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002514 " next_sh = 0x%x (%u)\n"
2515 " prev_sh = 0x%x (%u)\n"
2516 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002517 " ev.events = 0x%x\n"
2518 " ev.data.u64 = 0x%llx\n"
2519 " et_mask = 0x%x\n"
2520 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002521 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002522 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2523 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002524 }
2525 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002526
2527done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002528 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002529}
2530
2531int
2532vppcom_epoll_create (void)
2533{
Florin Coras134a9962018-08-28 11:32:04 -07002534 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002535 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002536
Florin Coras134a9962018-08-28 11:32:04 -07002537 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002538
2539 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002540 vep_session->vep.vep_sh = ~0;
2541 vep_session->vep.next_sh = ~0;
2542 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002543 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002544
Florin Corasa7a1a222018-12-30 17:11:31 -08002545 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2546 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002547
Florin Corasab2f6db2018-08-31 14:31:41 -07002548 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002549}
2550
2551int
Florin Coras134a9962018-08-28 11:32:04 -07002552vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002553 struct epoll_event *event)
2554{
Florin Coras134a9962018-08-28 11:32:04 -07002555 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002556 vcl_session_t *vep_session;
2557 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002558 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002559
Florin Coras134a9962018-08-28 11:32:04 -07002560 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002561 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002562 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002563 return VPPCOM_EINVAL;
2564 }
2565
Florin Coras134a9962018-08-28 11:32:04 -07002566 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002567 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002568 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002569 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002570 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002571 }
2572 if (PREDICT_FALSE (!vep_session->is_vep))
2573 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002574 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002575 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002576 }
2577
Florin Coras134a9962018-08-28 11:32:04 -07002578 ASSERT (vep_session->vep.vep_sh == ~0);
2579 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002580
Florin Coras134a9962018-08-28 11:32:04 -07002581 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002582 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002583 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002584 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002585 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002586 }
2587 if (PREDICT_FALSE (session->is_vep))
2588 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002589 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002590 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591 }
2592
2593 switch (op)
2594 {
2595 case EPOLL_CTL_ADD:
2596 if (PREDICT_FALSE (!event))
2597 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002598 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002599 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002600 }
Florin Coras134a9962018-08-28 11:32:04 -07002601 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002602 {
Florin Coras7e12d942018-06-27 14:32:43 -07002603 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002604 next_session = vcl_session_get_w_handle (wrk,
2605 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002606 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002607 {
Florin Coras5e062572019-03-14 19:07:51 -07002608 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002609 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002610 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002611 }
Florin Coras134a9962018-08-28 11:32:04 -07002612 ASSERT (next_session->vep.prev_sh == vep_handle);
2613 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002614 }
Florin Coras134a9962018-08-28 11:32:04 -07002615 session->vep.next_sh = vep_session->vep.next_sh;
2616 session->vep.prev_sh = vep_handle;
2617 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002618 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2619 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002620 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002621 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002622 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002623
Florin Coras1bcad5c2019-01-09 20:04:38 -08002624 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002625 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2626 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002627
Florin Coras6e3c1f82020-01-15 01:30:46 +00002628 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002629 if ((event->events & EPOLLOUT) &&
2630 (vcl_session_write_ready (session) > 0))
2631 {
2632 session_event_t e = { 0 };
2633 e.event_type = SESSION_IO_EVT_TX;
2634 e.session_index = session->session_index;
2635 vec_add1 (wrk->unhandled_evts_vector, e);
2636 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002637 /* Generate EPOLLIN if rx fifo has data */
2638 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2639 {
2640 session_event_t e = { 0 };
2641 e.event_type = SESSION_IO_EVT_RX;
2642 e.session_index = session->session_index;
2643 vec_add1 (wrk->unhandled_evts_vector, e);
2644 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002645 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2646 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002647 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002648 break;
2649
2650 case EPOLL_CTL_MOD:
2651 if (PREDICT_FALSE (!event))
2652 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002653 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002654 rv = VPPCOM_EINVAL;
2655 goto done;
2656 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002657 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002658 {
Florin Coras5e062572019-03-14 19:07:51 -07002659 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002660 rv = VPPCOM_EINVAL;
2661 goto done;
2662 }
Florin Coras134a9962018-08-28 11:32:04 -07002663 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002664 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002665 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2666 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002667 rv = VPPCOM_EINVAL;
2668 goto done;
2669 }
hanlin475c9d72019-12-26 11:44:28 +08002670
2671 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2672 if ((event->events & EPOLLOUT) &&
2673 !(session->vep.ev.events & EPOLLOUT) &&
2674 (vcl_session_write_ready (session) > 0))
2675 {
2676 session_event_t e = { 0 };
2677 e.event_type = SESSION_IO_EVT_TX;
2678 e.session_index = session->session_index;
2679 vec_add1 (wrk->unhandled_evts_vector, e);
2680 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002681 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2682 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002683 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2684 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002685 break;
2686
2687 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002688 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002689 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002690 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002691 rv = VPPCOM_EINVAL;
2692 goto done;
2693 }
Florin Coras134a9962018-08-28 11:32:04 -07002694 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002695 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002696 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2697 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002698 rv = VPPCOM_EINVAL;
2699 goto done;
2700 }
2701
Florin Coras134a9962018-08-28 11:32:04 -07002702 if (session->vep.prev_sh == vep_handle)
2703 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002704 else
2705 {
Florin Coras7e12d942018-06-27 14:32:43 -07002706 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002707 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002708 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002709 {
Florin Coras5e062572019-03-14 19:07:51 -07002710 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002711 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002712 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002713 }
Florin Coras134a9962018-08-28 11:32:04 -07002714 ASSERT (prev_session->vep.next_sh == session_handle);
2715 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002716 }
Florin Coras134a9962018-08-28 11:32:04 -07002717 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002718 {
Florin Coras7e12d942018-06-27 14:32:43 -07002719 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002720 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002721 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002722 {
Florin Coras5e062572019-03-14 19:07:51 -07002723 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002724 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002725 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002726 }
Florin Coras134a9962018-08-28 11:32:04 -07002727 ASSERT (next_session->vep.prev_sh == session_handle);
2728 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002729 }
2730
2731 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002732 session->vep.next_sh = ~0;
2733 session->vep.prev_sh = ~0;
2734 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002735 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002736
2737 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002738 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002739
Florin Coras5e062572019-03-14 19:07:51 -07002740 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002741 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002742 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002743 break;
2744
2745 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002746 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002747 rv = VPPCOM_EINVAL;
2748 }
2749
Florin Coras134a9962018-08-28 11:32:04 -07002750 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002751
2752done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002753 return rv;
2754}
2755
Florin Coras86f04502018-09-12 16:08:01 -07002756static inline void
2757vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2758 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002759{
2760 session_disconnected_msg_t *disconnected_msg;
2761 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002762 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002763 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002764 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002765 u8 add_event = 0;
2766
2767 switch (e->event_type)
2768 {
Florin Coras653e43f2019-03-04 10:56:23 -08002769 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002770 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002771 if (!(session = vcl_session_get (wrk, sid)))
2772 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002773 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002774 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002775 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002776 break;
2777 add_event = 1;
2778 events[*num_ev].events |= EPOLLIN;
2779 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002780 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002781 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002782 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002783 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002784 if (!(session = vcl_session_get (wrk, sid)))
2785 break;
Florin Coras86f04502018-09-12 16:08:01 -07002786 session_events = session->vep.ev.events;
2787 if (!(EPOLLOUT & session_events))
2788 break;
2789 add_event = 1;
2790 events[*num_ev].events |= EPOLLOUT;
2791 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002792 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002793 break;
Florin Coras86f04502018-09-12 16:08:01 -07002794 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002795 session = vcl_session_accepted (wrk,
2796 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002797 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002798 break;
Florin Coras86f04502018-09-12 16:08:01 -07002799
Florin Coras86f04502018-09-12 16:08:01 -07002800 session_events = session->vep.ev.events;
2801 if (!(EPOLLIN & session_events))
2802 break;
2803
2804 add_event = 1;
2805 events[*num_ev].events |= EPOLLIN;
2806 session_evt_data = session->vep.ev.data.u64;
2807 break;
2808 case SESSION_CTRL_EVT_CONNECTED:
2809 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002810 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002811 /* Generate EPOLLOUT because there's no connected event */
Florin Corasfa915f82018-12-26 16:29:06 -08002812 if (!(session = vcl_session_get (wrk, sid)))
2813 break;
Florin Coras86f04502018-09-12 16:08:01 -07002814 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002815 if (!(EPOLLOUT & session_events))
2816 break;
2817 add_event = 1;
2818 events[*num_ev].events |= EPOLLOUT;
2819 session_evt_data = session->vep.ev.data.u64;
Florin Corasadcfb152020-02-12 08:50:29 +00002820 if (session->session_state & STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002821 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002822 break;
2823 case SESSION_CTRL_EVT_DISCONNECTED:
2824 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002825 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2826 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002827 break;
Florin Coras72f77822019-01-22 19:05:52 -08002828 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002829 add_event = 1;
2830 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2831 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002832 break;
2833 case SESSION_CTRL_EVT_RESET:
2834 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2835 if (!(session = vcl_session_get (wrk, sid)))
2836 break;
Florin Coras72f77822019-01-22 19:05:52 -08002837 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002838 add_event = 1;
2839 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2840 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002841 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002842 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2843 vcl_session_unlisten_reply_handler (wrk, e->data);
2844 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002845 case SESSION_CTRL_EVT_MIGRATED:
2846 vcl_session_migrated_handler (wrk, e->data);
2847 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002848 case SESSION_CTRL_EVT_CLEANUP:
2849 vcl_session_cleanup_handler (wrk, e->data);
2850 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002851 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2852 vcl_session_req_worker_update_handler (wrk, e->data);
2853 break;
2854 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2855 vcl_session_worker_update_reply_handler (wrk, e->data);
2856 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002857 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2858 vcl_session_app_add_segment_handler (wrk, e->data);
2859 break;
2860 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2861 vcl_session_app_del_segment_handler (wrk, e->data);
2862 break;
Florin Coras86f04502018-09-12 16:08:01 -07002863 default:
2864 VDBG (0, "unhandled: %u", e->event_type);
2865 break;
2866 }
2867
2868 if (add_event)
2869 {
2870 events[*num_ev].data.u64 = session_evt_data;
2871 if (EPOLLONESHOT & session_events)
2872 {
2873 session = vcl_session_get (wrk, sid);
2874 session->vep.ev.events = 0;
2875 }
2876 *num_ev += 1;
2877 }
2878}
2879
2880static int
2881vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2882 struct epoll_event *events, u32 maxevents,
2883 double wait_for_time, u32 * num_ev)
2884{
Florin Coras99368312018-08-02 10:45:44 -07002885 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002886 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002887 int i;
2888
Florin Coras539663c2018-09-28 14:59:37 -07002889 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2890 goto handle_dequeued;
2891
Florin Coras54693d22018-07-17 10:46:29 -07002892 svm_msg_q_lock (mq);
2893 if (svm_msg_q_is_empty (mq))
2894 {
2895 if (!wait_for_time)
2896 {
2897 svm_msg_q_unlock (mq);
2898 return 0;
2899 }
2900 else if (wait_for_time < 0)
2901 {
2902 svm_msg_q_wait (mq);
2903 }
2904 else
2905 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002906 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002907 {
2908 svm_msg_q_unlock (mq);
2909 return 0;
2910 }
2911 }
2912 }
Florin Corase003a1b2019-06-05 10:47:16 -07002913 ASSERT (maxevents > *num_ev);
2914 vcl_mq_dequeue_batch (wrk, mq, maxevents - *num_ev);
Florin Coras54693d22018-07-17 10:46:29 -07002915 svm_msg_q_unlock (mq);
2916
Florin Coras539663c2018-09-28 14:59:37 -07002917handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002918 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002919 {
Florin Coras134a9962018-08-28 11:32:04 -07002920 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002921 e = svm_msg_q_msg_data (mq, msg);
Florin Corase003a1b2019-06-05 10:47:16 -07002922 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
Florin Coras99368312018-08-02 10:45:44 -07002923 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002924 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002925 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002926 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002927 return *num_ev;
2928}
2929
Florin Coras99368312018-08-02 10:45:44 -07002930static int
Florin Coras134a9962018-08-28 11:32:04 -07002931vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002932 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002933{
Florin Corase003a1b2019-06-05 10:47:16 -07002934 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002935
2936 if (!n_evts)
2937 {
2938 wait = wait_for_time;
2939 start = clib_time_now (&wrk->clib_time);
2940 }
2941
2942 do
2943 {
2944 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2945 wait, &n_evts);
2946 if (n_evts)
2947 return n_evts;
2948 if (wait == -1)
2949 continue;
2950
Florin Corase003a1b2019-06-05 10:47:16 -07002951 now = clib_time_now (&wrk->clib_time);
2952 wait -= now - start;
2953 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002954 }
2955 while (wait > 0);
2956
2957 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002958}
2959
2960static int
Florin Coras134a9962018-08-28 11:32:04 -07002961vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002962 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002963{
2964 vcl_mq_evt_conn_t *mqc;
2965 int __clib_unused n_read;
2966 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002967 u64 buf;
2968
Florin Coras134a9962018-08-28 11:32:04 -07002969 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002970again:
Florin Coras134a9962018-08-28 11:32:04 -07002971 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2972 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002973 for (i = 0; i < n_mq_evts; i++)
2974 {
Florin Coras134a9962018-08-28 11:32:04 -07002975 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002976 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002977 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002978 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002979 if (!n_evts && n_mq_evts > 0)
2980 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002981
2982 return (int) n_evts;
2983}
2984
Dave Wallacef7f809c2017-10-03 01:48:42 -04002985int
Florin Coras134a9962018-08-28 11:32:04 -07002986vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002987 int maxevents, double wait_for_time)
2988{
Florin Coras134a9962018-08-28 11:32:04 -07002989 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002990 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002991 u32 n_evts = 0;
2992 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002993
2994 if (PREDICT_FALSE (maxevents <= 0))
2995 {
Florin Coras5e062572019-03-14 19:07:51 -07002996 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002997 return VPPCOM_EINVAL;
2998 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002999
Florin Coras134a9962018-08-28 11:32:04 -07003000 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003001 if (!vep_session)
3002 return VPPCOM_EBADFD;
3003
Florin Coras54693d22018-07-17 10:46:29 -07003004 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003005 {
Florin Coras5e062572019-03-14 19:07:51 -07003006 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003007 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003008 }
Florin Coras54693d22018-07-17 10:46:29 -07003009
3010 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003011
Florin Coras86f04502018-09-12 16:08:01 -07003012 if (vec_len (wrk->unhandled_evts_vector))
3013 {
3014 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3015 {
3016 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3017 events, &n_evts);
3018 if (n_evts == maxevents)
3019 {
Florin Corase003a1b2019-06-05 10:47:16 -07003020 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3021 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003022 }
3023 }
Florin Corase003a1b2019-06-05 10:47:16 -07003024 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003025 }
3026
3027 if (vcm->cfg.use_mq_eventfd)
3028 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3029 wait_for_time);
3030
3031 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3032 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003033}
3034
Dave Wallace35830af2017-10-09 01:43:42 -04003035int
Florin Coras134a9962018-08-28 11:32:04 -07003036vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003037 void *buffer, uint32_t * buflen)
3038{
Florin Coras134a9962018-08-28 11:32:04 -07003039 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003040 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04003041 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08003042 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003043 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04003044
Florin Coras134a9962018-08-28 11:32:04 -07003045 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003046 if (!session)
3047 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003048
Dave Wallace35830af2017-10-09 01:43:42 -04003049 switch (op)
3050 {
3051 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003052 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003053 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3054 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003055 break;
3056
Dave Wallace227867f2017-11-13 21:21:53 -05003057 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003058 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003059 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3060 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003061 break;
3062
3063 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003064 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003065 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003066 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
3067 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003068 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003069 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3070 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003071 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003072 }
3073 else
3074 rv = VPPCOM_EINVAL;
3075 break;
3076
3077 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003078 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003079 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003080 if (*flags & O_NONBLOCK)
3081 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3082 else
3083 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3084
Florin Coras5e062572019-03-14 19:07:51 -07003085 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3086 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003087 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003088 }
3089 else
3090 rv = VPPCOM_EINVAL;
3091 break;
3092
3093 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003094 if (PREDICT_TRUE (buffer && buflen &&
3095 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003096 {
Florin Coras7e12d942018-06-27 14:32:43 -07003097 ep->is_ip4 = session->transport.is_ip4;
3098 ep->port = session->transport.rmt_port;
3099 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003100 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3101 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003102 else
Dave Barach178cf492018-11-13 16:34:13 -05003103 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3104 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003105 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003106 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3107 "addr = %U, port %u", session_handle, ep->is_ip4,
3108 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003109 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3110 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003111 }
3112 else
3113 rv = VPPCOM_EINVAL;
3114 break;
3115
3116 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003117 if (PREDICT_TRUE (buffer && buflen &&
3118 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003119 {
Florin Coras7e12d942018-06-27 14:32:43 -07003120 ep->is_ip4 = session->transport.is_ip4;
3121 ep->port = session->transport.lcl_port;
3122 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003123 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3124 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003125 else
Dave Barach178cf492018-11-13 16:34:13 -05003126 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3127 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003128 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003129 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3130 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003131 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003132 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3133 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003134 }
3135 else
3136 rv = VPPCOM_EINVAL;
3137 break;
Stevenb5a11602017-10-11 09:59:30 -07003138
Florin Corasef7cbf62019-10-17 09:56:27 -07003139 case VPPCOM_ATTR_SET_LCL_ADDR:
3140 if (PREDICT_TRUE (buffer && buflen &&
3141 (*buflen >= sizeof (*ep)) && ep->ip))
3142 {
3143 session->transport.is_ip4 = ep->is_ip4;
3144 session->transport.lcl_port = ep->port;
3145 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3146 *buflen = sizeof (*ep);
3147 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3148 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3149 &session->transport.lcl_ip,
3150 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3151 clib_net_to_host_u16 (ep->port));
3152 }
3153 else
3154 rv = VPPCOM_EINVAL;
3155 break;
3156
Dave Wallace048b1d62018-01-03 22:24:41 -05003157 case VPPCOM_ATTR_GET_LIBC_EPFD:
3158 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003159 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003160 break;
3161
3162 case VPPCOM_ATTR_SET_LIBC_EPFD:
3163 if (PREDICT_TRUE (buffer && buflen &&
3164 (*buflen == sizeof (session->libc_epfd))))
3165 {
3166 session->libc_epfd = *(int *) buffer;
3167 *buflen = sizeof (session->libc_epfd);
3168
Florin Coras5e062572019-03-14 19:07:51 -07003169 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3170 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003171 }
3172 else
3173 rv = VPPCOM_EINVAL;
3174 break;
3175
3176 case VPPCOM_ATTR_GET_PROTOCOL:
3177 if (buffer && buflen && (*buflen >= sizeof (int)))
3178 {
Florin Coras7e12d942018-06-27 14:32:43 -07003179 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003180 *buflen = sizeof (int);
3181
Florin Coras5e062572019-03-14 19:07:51 -07003182 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3183 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003184 }
3185 else
3186 rv = VPPCOM_EINVAL;
3187 break;
3188
3189 case VPPCOM_ATTR_GET_LISTEN:
3190 if (buffer && buflen && (*buflen >= sizeof (int)))
3191 {
3192 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3193 VCL_SESS_ATTR_LISTEN);
3194 *buflen = sizeof (int);
3195
Florin Coras5e062572019-03-14 19:07:51 -07003196 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3197 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003198 }
3199 else
3200 rv = VPPCOM_EINVAL;
3201 break;
3202
3203 case VPPCOM_ATTR_GET_ERROR:
3204 if (buffer && buflen && (*buflen >= sizeof (int)))
3205 {
3206 *(int *) buffer = 0;
3207 *buflen = sizeof (int);
3208
Florin Coras5e062572019-03-14 19:07:51 -07003209 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3210 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003211 }
3212 else
3213 rv = VPPCOM_EINVAL;
3214 break;
3215
3216 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3217 if (buffer && buflen && (*buflen >= sizeof (u32)))
3218 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003219
3220 /* VPP-TBD */
3221 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003222 session->tx_fifo ?
3223 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003224 vcm->cfg.tx_fifo_size);
3225 *buflen = sizeof (u32);
3226
Florin Coras5e062572019-03-14 19:07:51 -07003227 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3228 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3229 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003230 }
3231 else
3232 rv = VPPCOM_EINVAL;
3233 break;
3234
3235 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3236 if (buffer && buflen && (*buflen == sizeof (u32)))
3237 {
3238 /* VPP-TBD */
3239 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003240 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3241 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3242 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003243 }
3244 else
3245 rv = VPPCOM_EINVAL;
3246 break;
3247
3248 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3249 if (buffer && buflen && (*buflen >= sizeof (u32)))
3250 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003251
3252 /* VPP-TBD */
3253 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003254 session->rx_fifo ?
3255 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003256 vcm->cfg.rx_fifo_size);
3257 *buflen = sizeof (u32);
3258
Florin Coras5e062572019-03-14 19:07:51 -07003259 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3260 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003261 }
3262 else
3263 rv = VPPCOM_EINVAL;
3264 break;
3265
3266 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3267 if (buffer && buflen && (*buflen == sizeof (u32)))
3268 {
3269 /* VPP-TBD */
3270 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003271 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3272 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3273 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003274 }
3275 else
3276 rv = VPPCOM_EINVAL;
3277 break;
3278
3279 case VPPCOM_ATTR_GET_REUSEADDR:
3280 if (buffer && buflen && (*buflen >= sizeof (int)))
3281 {
3282 /* VPP-TBD */
3283 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3284 VCL_SESS_ATTR_REUSEADDR);
3285 *buflen = sizeof (int);
3286
Florin Coras5e062572019-03-14 19:07:51 -07003287 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3288 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003289 }
3290 else
3291 rv = VPPCOM_EINVAL;
3292 break;
3293
Stevenb5a11602017-10-11 09:59:30 -07003294 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003295 if (buffer && buflen && (*buflen == sizeof (int)) &&
3296 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3297 {
3298 /* VPP-TBD */
3299 if (*(int *) buffer)
3300 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3301 else
3302 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3303
Florin Coras5e062572019-03-14 19:07:51 -07003304 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3305 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3306 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003307 }
3308 else
3309 rv = VPPCOM_EINVAL;
3310 break;
3311
3312 case VPPCOM_ATTR_GET_REUSEPORT:
3313 if (buffer && buflen && (*buflen >= sizeof (int)))
3314 {
3315 /* VPP-TBD */
3316 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3317 VCL_SESS_ATTR_REUSEPORT);
3318 *buflen = sizeof (int);
3319
Florin Coras5e062572019-03-14 19:07:51 -07003320 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3321 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003322 }
3323 else
3324 rv = VPPCOM_EINVAL;
3325 break;
3326
3327 case VPPCOM_ATTR_SET_REUSEPORT:
3328 if (buffer && buflen && (*buflen == sizeof (int)) &&
3329 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3330 {
3331 /* VPP-TBD */
3332 if (*(int *) buffer)
3333 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3334 else
3335 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3336
Florin Coras5e062572019-03-14 19:07:51 -07003337 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3338 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3339 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003340 }
3341 else
3342 rv = VPPCOM_EINVAL;
3343 break;
3344
3345 case VPPCOM_ATTR_GET_BROADCAST:
3346 if (buffer && buflen && (*buflen >= sizeof (int)))
3347 {
3348 /* VPP-TBD */
3349 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3350 VCL_SESS_ATTR_BROADCAST);
3351 *buflen = sizeof (int);
3352
Florin Coras5e062572019-03-14 19:07:51 -07003353 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3354 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003355 }
3356 else
3357 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003358 break;
3359
3360 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003361 if (buffer && buflen && (*buflen == sizeof (int)))
3362 {
3363 /* VPP-TBD */
3364 if (*(int *) buffer)
3365 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3366 else
3367 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3368
Florin Coras5e062572019-03-14 19:07:51 -07003369 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3370 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3371 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003372 }
3373 else
3374 rv = VPPCOM_EINVAL;
3375 break;
3376
3377 case VPPCOM_ATTR_GET_V6ONLY:
3378 if (buffer && buflen && (*buflen >= sizeof (int)))
3379 {
3380 /* VPP-TBD */
3381 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3382 VCL_SESS_ATTR_V6ONLY);
3383 *buflen = sizeof (int);
3384
Florin Coras5e062572019-03-14 19:07:51 -07003385 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3386 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003387 }
3388 else
3389 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003390 break;
3391
3392 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003393 if (buffer && buflen && (*buflen == sizeof (int)))
3394 {
3395 /* VPP-TBD */
3396 if (*(int *) buffer)
3397 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3398 else
3399 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3400
Florin Coras5e062572019-03-14 19:07:51 -07003401 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3402 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3403 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003404 }
3405 else
3406 rv = VPPCOM_EINVAL;
3407 break;
3408
3409 case VPPCOM_ATTR_GET_KEEPALIVE:
3410 if (buffer && buflen && (*buflen >= sizeof (int)))
3411 {
3412 /* VPP-TBD */
3413 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3414 VCL_SESS_ATTR_KEEPALIVE);
3415 *buflen = sizeof (int);
3416
Florin Coras5e062572019-03-14 19:07:51 -07003417 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3418 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003419 }
3420 else
3421 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003422 break;
Stevenbccd3392017-10-12 20:42:21 -07003423
3424 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003425 if (buffer && buflen && (*buflen == sizeof (int)))
3426 {
3427 /* VPP-TBD */
3428 if (*(int *) buffer)
3429 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3430 else
3431 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3432
Florin Coras5e062572019-03-14 19:07:51 -07003433 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3434 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3435 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003436 }
3437 else
3438 rv = VPPCOM_EINVAL;
3439 break;
3440
3441 case VPPCOM_ATTR_GET_TCP_NODELAY:
3442 if (buffer && buflen && (*buflen >= sizeof (int)))
3443 {
3444 /* VPP-TBD */
3445 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3446 VCL_SESS_ATTR_TCP_NODELAY);
3447 *buflen = sizeof (int);
3448
Florin Coras5e062572019-03-14 19:07:51 -07003449 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3450 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003451 }
3452 else
3453 rv = VPPCOM_EINVAL;
3454 break;
3455
3456 case VPPCOM_ATTR_SET_TCP_NODELAY:
3457 if (buffer && buflen && (*buflen == sizeof (int)))
3458 {
3459 /* VPP-TBD */
3460 if (*(int *) buffer)
3461 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3462 else
3463 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3464
Florin Coras5e062572019-03-14 19:07:51 -07003465 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3466 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3467 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003468 }
3469 else
3470 rv = VPPCOM_EINVAL;
3471 break;
3472
3473 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3474 if (buffer && buflen && (*buflen >= sizeof (int)))
3475 {
3476 /* VPP-TBD */
3477 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3478 VCL_SESS_ATTR_TCP_KEEPIDLE);
3479 *buflen = sizeof (int);
3480
Florin Coras5e062572019-03-14 19:07:51 -07003481 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3482 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003483 }
3484 else
3485 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003486 break;
3487
3488 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003489 if (buffer && buflen && (*buflen == sizeof (int)))
3490 {
3491 /* VPP-TBD */
3492 if (*(int *) buffer)
3493 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3494 else
3495 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3496
Florin Coras5e062572019-03-14 19:07:51 -07003497 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003498 VCL_SESS_ATTR_TEST (session->attr,
3499 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003500 }
3501 else
3502 rv = VPPCOM_EINVAL;
3503 break;
3504
3505 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3506 if (buffer && buflen && (*buflen >= sizeof (int)))
3507 {
3508 /* VPP-TBD */
3509 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3510 VCL_SESS_ATTR_TCP_KEEPINTVL);
3511 *buflen = sizeof (int);
3512
Florin Coras5e062572019-03-14 19:07:51 -07003513 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3514 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003515 }
3516 else
3517 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003518 break;
3519
3520 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003521 if (buffer && buflen && (*buflen == sizeof (int)))
3522 {
3523 /* VPP-TBD */
3524 if (*(int *) buffer)
3525 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3526 else
3527 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3528
Florin Coras5e062572019-03-14 19:07:51 -07003529 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003530 VCL_SESS_ATTR_TEST (session->attr,
3531 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003532 }
3533 else
3534 rv = VPPCOM_EINVAL;
3535 break;
3536
3537 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3538 if (buffer && buflen && (*buflen >= sizeof (u32)))
3539 {
3540 /* VPP-TBD */
3541 *(u32 *) buffer = session->user_mss;
3542 *buflen = sizeof (int);
3543
Florin Coras5e062572019-03-14 19:07:51 -07003544 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3545 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003546 }
3547 else
3548 rv = VPPCOM_EINVAL;
3549 break;
3550
3551 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3552 if (buffer && buflen && (*buflen == sizeof (u32)))
3553 {
3554 /* VPP-TBD */
3555 session->user_mss = *(u32 *) buffer;
3556
Florin Coras5e062572019-03-14 19:07:51 -07003557 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3558 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003559 }
3560 else
3561 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003562 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003563
Florin Coras7baeb712019-01-04 17:05:43 -08003564 case VPPCOM_ATTR_SET_SHUT:
3565 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3566 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3567 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3568 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3569 break;
3570
3571 case VPPCOM_ATTR_GET_SHUT:
3572 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3573 tmp_flags = 1;
3574 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3575 tmp_flags |= 2;
3576 if (tmp_flags == 1)
3577 *(int *) buffer = SHUT_RD;
3578 else if (tmp_flags == 2)
3579 *(int *) buffer = SHUT_WR;
3580 else if (tmp_flags == 3)
3581 *(int *) buffer = SHUT_RDWR;
3582 *buflen = sizeof (int);
3583 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003584 default:
3585 rv = VPPCOM_EINVAL;
3586 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003587 }
3588
Dave Wallace35830af2017-10-09 01:43:42 -04003589 return rv;
3590}
3591
Stevenac1f96d2017-10-24 16:03:58 -07003592int
Florin Coras134a9962018-08-28 11:32:04 -07003593vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003594 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3595{
Florin Coras134a9962018-08-28 11:32:04 -07003596 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003597 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003598 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003599
3600 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003601 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003602 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003603 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003604 else
3605 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003606 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003607 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003608 }
3609
Florin Coras0a1e1832020-03-29 18:54:04 +00003610 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003611 {
Florin Coras5da10c42020-04-01 04:31:21 +00003612 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003613 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003614 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3615 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003616 else
Dave Barach178cf492018-11-13 16:34:13 -05003617 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3618 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003619 ep->is_ip4 = session->transport.is_ip4;
3620 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003621 }
Florin Coras460dce62018-07-27 05:45:06 -07003622
Stevenac1f96d2017-10-24 16:03:58 -07003623 return rv;
3624}
3625
3626int
Florin Coras134a9962018-08-28 11:32:04 -07003627vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003628 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3629{
Florin Coras7a2abce2020-04-05 19:25:44 +00003630 vcl_worker_t *wrk = vcl_worker_get_current ();
3631 vcl_session_t *s;
3632
3633 s = vcl_session_get_w_handle (wrk, session_handle);
3634 if (!s)
3635 return VPPCOM_EBADFD;
3636
Dave Wallace617dffa2017-10-26 14:47:06 -04003637 if (!buffer)
3638 return VPPCOM_EINVAL;
3639
3640 if (ep)
3641 {
Florin Coras0a1e1832020-03-29 18:54:04 +00003642 if (s->session_type != VPPCOM_PROTO_UDP
3643 || (s->flags & VCL_SESSION_F_CONNECTED))
Florin Coras5da10c42020-04-01 04:31:21 +00003644 return VPPCOM_EINVAL;
3645
3646 /* Session not connected/bound in vpp. Create it by 'connecting' it */
3647 if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3648 {
3649 vcl_send_session_connect (wrk, s);
3650 }
3651 else
3652 {
3653 s->transport.is_ip4 = ep->is_ip4;
3654 s->transport.rmt_port = ep->port;
3655 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3656 }
Dave Wallace617dffa2017-10-26 14:47:06 -04003657 }
3658
3659 if (flags)
3660 {
3661 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003662 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003663 }
3664
Florin Coras7a2abce2020-04-05 19:25:44 +00003665 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3666 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003667}
3668
Dave Wallace048b1d62018-01-03 22:24:41 -05003669int
3670vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3671{
Florin Coras134a9962018-08-28 11:32:04 -07003672 vcl_worker_t *wrk = vcl_worker_get_current ();
3673 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003674 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003675 svm_msg_q_msg_t msg;
3676 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003677 int rv, num_ev = 0;
3678
Florin Coras5e062572019-03-14 19:07:51 -07003679 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003680
3681 if (!vp)
3682 return VPPCOM_EFAULT;
3683
3684 do
3685 {
Florin Coras7e12d942018-06-27 14:32:43 -07003686 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003687
Florin Coras6917b942018-11-13 22:44:54 -08003688 /* Dequeue all events and drop all unhandled io events */
3689 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3690 {
3691 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3692 vcl_handle_mq_event (wrk, e);
3693 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3694 }
3695 vec_reset_length (wrk->unhandled_evts_vector);
3696
Dave Wallace048b1d62018-01-03 22:24:41 -05003697 for (i = 0; i < n_sids; i++)
3698 {
Florin Coras7baeb712019-01-04 17:05:43 -08003699 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003700 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003701 {
3702 vp[i].revents = POLLHUP;
3703 num_ev++;
3704 continue;
3705 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003706
Florin Coras6917b942018-11-13 22:44:54 -08003707 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003708
3709 if (POLLIN & vp[i].events)
3710 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003711 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003712 if (rv > 0)
3713 {
Florin Coras6917b942018-11-13 22:44:54 -08003714 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003715 num_ev++;
3716 }
3717 else if (rv < 0)
3718 {
3719 switch (rv)
3720 {
3721 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003722 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003723 break;
3724
3725 default:
Florin Coras6917b942018-11-13 22:44:54 -08003726 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003727 break;
3728 }
3729 num_ev++;
3730 }
3731 }
3732
3733 if (POLLOUT & vp[i].events)
3734 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003735 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003736 if (rv > 0)
3737 {
Florin Coras6917b942018-11-13 22:44:54 -08003738 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003739 num_ev++;
3740 }
3741 else if (rv < 0)
3742 {
3743 switch (rv)
3744 {
3745 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003746 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003747 break;
3748
3749 default:
Florin Coras6917b942018-11-13 22:44:54 -08003750 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003751 break;
3752 }
3753 num_ev++;
3754 }
3755 }
3756
Dave Wallace7e607a72018-06-18 18:41:32 -04003757 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003758 {
Florin Coras6917b942018-11-13 22:44:54 -08003759 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003760 num_ev++;
3761 }
3762 }
3763 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003764 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003765 }
3766 while ((num_ev == 0) && keep_trying);
3767
Dave Wallace048b1d62018-01-03 22:24:41 -05003768 return num_ev;
3769}
3770
Florin Coras99368312018-08-02 10:45:44 -07003771int
3772vppcom_mq_epoll_fd (void)
3773{
Florin Coras134a9962018-08-28 11:32:04 -07003774 vcl_worker_t *wrk = vcl_worker_get_current ();
3775 return wrk->mqs_epfd;
3776}
3777
3778int
Florin Coras30e79c22019-01-02 19:31:22 -08003779vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003780{
3781 return session_handle & 0xFFFFFF;
3782}
3783
3784int
Florin Coras30e79c22019-01-02 19:31:22 -08003785vppcom_session_worker (vcl_session_handle_t session_handle)
3786{
3787 return session_handle >> 24;
3788}
3789
3790int
Florin Coras134a9962018-08-28 11:32:04 -07003791vppcom_worker_register (void)
3792{
Florin Corasd4c70922019-11-28 14:21:21 -08003793 vcl_worker_t *wrk;
3794 u8 *wrk_name = 0;
3795 int rv;
3796
Florin Coras47c40e22018-11-26 17:01:36 -08003797 if (!vcl_worker_alloc_and_init ())
3798 return VPPCOM_EEXIST;
3799
Florin Corasd4c70922019-11-28 14:21:21 -08003800 wrk = vcl_worker_get_current ();
3801 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3802
3803 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3804 vec_free (wrk_name);
3805
3806 if (rv)
3807 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003808
3809 if (vcl_worker_register_with_vpp ())
3810 return VPPCOM_EEXIST;
3811
3812 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003813}
3814
Florin Coras369db832019-07-08 12:34:45 -07003815void
3816vppcom_worker_unregister (void)
3817{
3818 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3819 vcl_set_worker_index (~0);
3820}
3821
Florin Corasdfe4cf42018-11-28 22:13:45 -08003822int
3823vppcom_worker_index (void)
3824{
3825 return vcl_get_worker_index ();
3826}
3827
Florin Corase0982e52019-01-25 13:19:56 -08003828int
3829vppcom_worker_mqs_epfd (void)
3830{
3831 vcl_worker_t *wrk = vcl_worker_get_current ();
3832 if (!vcm->cfg.use_mq_eventfd)
3833 return -1;
3834 return wrk->mqs_epfd;
3835}
3836
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003837int
3838vppcom_session_is_connectable_listener (uint32_t session_handle)
3839{
3840 vcl_session_t *session;
3841 vcl_worker_t *wrk = vcl_worker_get_current ();
3842 session = vcl_session_get_w_handle (wrk, session_handle);
3843 if (!session)
3844 return VPPCOM_EBADFD;
3845 return vcl_session_is_connectable_listener (wrk, session);
3846}
3847
3848int
3849vppcom_session_listener (uint32_t session_handle)
3850{
3851 vcl_worker_t *wrk = vcl_worker_get_current ();
3852 vcl_session_t *listen_session, *session;
3853 session = vcl_session_get_w_handle (wrk, session_handle);
3854 if (!session)
3855 return VPPCOM_EBADFD;
3856 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3857 return VPPCOM_EBADFD;
3858 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3859 if (!listen_session)
3860 return VPPCOM_EBADFD;
3861 return vcl_session_handle (listen_session);
3862}
3863
3864int
3865vppcom_session_n_accepted (uint32_t session_handle)
3866{
3867 vcl_worker_t *wrk = vcl_worker_get_current ();
3868 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3869 if (!session)
3870 return VPPCOM_EBADFD;
3871 return session->n_accepted_sessions;
3872}
3873
Dave Wallacee22aa742017-10-20 12:30:38 -04003874/*
3875 * fd.io coding-style-patch-verification: ON
3876 *
3877 * Local Variables:
3878 * eval: (c-set-style "gnu")
3879 * End:
3880 */