blob: 6b9e36c2d7d0f802142d2b710305b05fb4067ab7 [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));
Florin Corascc7c88e2020-09-15 15:56:51 -0700205 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700206 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;
Florin Coras1e966172020-05-16 18:18:14 +0000212 if (s->flags & VCL_SESSION_F_CONNECTED)
213 mp->flags = TRANSPORT_CFG_F_CONNECTED;
Florin Coras458089b2019-08-21 16:20:44 -0700214 app_send_ctrl_evt_to_vpp (mq, app_evt);
215}
216
217static void
218vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
219{
220 app_session_evt_t _app_evt, *app_evt = &_app_evt;
221 session_connect_msg_t *mp;
222 svm_msg_q_t *mq;
223
224 mq = vcl_worker_ctrl_mq (wrk);
225 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
226 mp = (session_connect_msg_t *) app_evt->evt->data;
227 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700228 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700229 mp->context = s->session_index;
230 mp->wrk_index = wrk->vpp_wrk_index;
231 mp->is_ip4 = s->transport.is_ip4;
232 mp->parent_handle = s->parent_handle;
233 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700234 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700235 mp->port = s->transport.rmt_port;
Florin Coras0a1e1832020-03-29 18:54:04 +0000236 mp->lcl_port = s->transport.lcl_port;
Florin Coras458089b2019-08-21 16:20:44 -0700237 mp->proto = s->session_type;
Florin Coras0a1e1832020-03-29 18:54:04 +0000238 if (s->flags & VCL_SESSION_F_CONNECTED)
239 mp->flags |= TRANSPORT_CFG_F_CONNECTED;
Florin Coras458089b2019-08-21 16:20:44 -0700240 app_send_ctrl_evt_to_vpp (mq, app_evt);
241}
242
243void
244vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
245{
246 app_session_evt_t _app_evt, *app_evt = &_app_evt;
247 session_unlisten_msg_t *mp;
248 svm_msg_q_t *mq;
249
250 mq = vcl_worker_ctrl_mq (wrk);
251 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
252 mp = (session_unlisten_msg_t *) app_evt->evt->data;
253 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700254 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700255 mp->wrk_index = wrk->vpp_wrk_index;
256 mp->handle = s->vpp_handle;
257 mp->context = wrk->wrk_index;
258 app_send_ctrl_evt_to_vpp (mq, app_evt);
259}
260
261static void
262vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
263{
264 app_session_evt_t _app_evt, *app_evt = &_app_evt;
265 session_disconnect_msg_t *mp;
266 svm_msg_q_t *mq;
267
268 /* Send to thread that owns the session */
269 mq = s->vpp_evt_q;
270 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
271 mp = (session_disconnect_msg_t *) app_evt->evt->data;
272 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700273 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700274 mp->handle = s->vpp_handle;
275 app_send_ctrl_evt_to_vpp (mq, app_evt);
276}
277
278static void
279vcl_send_app_detach (vcl_worker_t * wrk)
280{
281 app_session_evt_t _app_evt, *app_evt = &_app_evt;
282 session_app_detach_msg_t *mp;
283 svm_msg_q_t *mq;
284
285 mq = vcl_worker_ctrl_mq (wrk);
286 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
287 mp = (session_app_detach_msg_t *) app_evt->evt->data;
288 memset (mp, 0, sizeof (*mp));
Florin Corascc7c88e2020-09-15 15:56:51 -0700289 mp->client_index = wrk->api_client_handle;
Florin Coras458089b2019-08-21 16:20:44 -0700290 app_send_ctrl_evt_to_vpp (mq, app_evt);
291}
Florin Coras697faea2018-06-27 17:10:49 -0700292
Florin Coras54693d22018-07-17 10:46:29 -0700293static void
294vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
295 session_handle_t handle, int retval)
296{
297 app_session_evt_t _app_evt, *app_evt = &_app_evt;
298 session_accepted_reply_msg_t *rmp;
299 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
300 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
301 rmp->handle = handle;
302 rmp->context = context;
303 rmp->retval = retval;
304 app_send_ctrl_evt_to_vpp (mq, app_evt);
305}
306
Florin Coras99368312018-08-02 10:45:44 -0700307static void
308vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
309 session_handle_t handle, int retval)
310{
311 app_session_evt_t _app_evt, *app_evt = &_app_evt;
312 session_disconnected_reply_msg_t *rmp;
313 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
314 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
315 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
316 rmp->handle = handle;
317 rmp->context = context;
318 rmp->retval = retval;
319 app_send_ctrl_evt_to_vpp (mq, app_evt);
320}
321
Florin Corasc9fbd662018-08-24 12:59:56 -0700322static void
323vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
324 session_handle_t handle, int retval)
325{
326 app_session_evt_t _app_evt, *app_evt = &_app_evt;
327 session_reset_reply_msg_t *rmp;
328 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
329 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
330 rmp->handle = handle;
331 rmp->context = context;
332 rmp->retval = retval;
333 app_send_ctrl_evt_to_vpp (mq, app_evt);
334}
335
Florin Coras30e79c22019-01-02 19:31:22 -0800336void
337vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
338 u32 wrk_index)
339{
340 app_session_evt_t _app_evt, *app_evt = &_app_evt;
341 session_worker_update_msg_t *mp;
342 svm_msg_q_t *mq;
343
344 mq = vcl_session_vpp_evt_q (wrk, s);
345 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
346 mp = (session_worker_update_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700347 mp->client_index = wrk->api_client_handle;
Florin Coras30e79c22019-01-02 19:31:22 -0800348 mp->handle = s->vpp_handle;
349 mp->req_wrk_index = wrk->vpp_wrk_index;
350 mp->wrk_index = wrk_index;
351 app_send_ctrl_evt_to_vpp (mq, app_evt);
352}
353
hanlina3a48962020-07-13 11:09:15 +0800354int
Florin Coras40c07ce2020-07-16 20:46:17 -0700355vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len)
356{
357 app_session_evt_t _app_evt, *app_evt = &_app_evt;
358 session_app_wrk_rpc_msg_t *mp;
359 vcl_worker_t *dst_wrk, *wrk;
360 svm_msg_q_t *mq;
hanlina3a48962020-07-13 11:09:15 +0800361 int ret = -1;
Florin Coras40c07ce2020-07-16 20:46:17 -0700362
363 if (data_len > sizeof (mp->data))
364 goto done;
365
366 clib_spinlock_lock (&vcm->workers_lock);
367
368 dst_wrk = vcl_worker_get_if_valid (dst_wrk_index);
369 if (!dst_wrk)
370 goto done;
371
372 wrk = vcl_worker_get_current ();
373 mq = vcl_worker_ctrl_mq (wrk);
374 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_WRK_RPC);
375 mp = (session_app_wrk_rpc_msg_t *) app_evt->evt->data;
Florin Corascc7c88e2020-09-15 15:56:51 -0700376 mp->client_index = wrk->api_client_handle;
Florin Coras40c07ce2020-07-16 20:46:17 -0700377 mp->wrk_index = dst_wrk->vpp_wrk_index;
378 clib_memcpy (mp->data, data, data_len);
379 app_send_ctrl_evt_to_vpp (mq, app_evt);
hanlina3a48962020-07-13 11:09:15 +0800380 ret = 0;
Florin Coras40c07ce2020-07-16 20:46:17 -0700381
382done:
383 clib_spinlock_unlock (&vcm->workers_lock);
hanlina3a48962020-07-13 11:09:15 +0800384 return ret;
Florin Coras40c07ce2020-07-16 20:46:17 -0700385}
386
Florin Coras54693d22018-07-17 10:46:29 -0700387static u32
Florin Coras00cca802019-06-06 09:38:44 -0700388vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
389 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700390{
391 vcl_session_t *session, *listen_session;
392 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700393 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700394 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700395
Florin Coras134a9962018-08-28 11:32:04 -0700396 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700397
Florin Coras00cca802019-06-06 09:38:44 -0700398 listen_session = vcl_session_get (wrk, ls_index);
399 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700400 {
Florin Coras00cca802019-06-06 09:38:44 -0700401 VDBG (0, "ERROR: listener handle %lu does not match session %u",
402 mp->listener_handle, ls_index);
403 goto error;
404 }
405
Florin Corasc4c4cf52019-08-24 18:17:34 -0700406 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Coras00cca802019-06-06 09:38:44 -0700407 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700408 VDBG (0, "ERROR: segment for session %u is not mounted!",
Florin Coras00cca802019-06-06 09:38:44 -0700409 session->session_index);
410 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700411 }
412
Florin Coras54693d22018-07-17 10:46:29 -0700413 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
414 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Coras653e43f2019-03-04 10:56:23 -0800415 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
416 svm_msg_q_t *);
417 rx_fifo->client_session_index = session->session_index;
418 tx_fifo->client_session_index = session->session_index;
419 rx_fifo->client_thread_index = vcl_get_worker_index ();
420 tx_fifo->client_thread_index = vcl_get_worker_index ();
421 vpp_wrk_index = tx_fifo->master_thread_index;
422 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
423 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700424
425 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800426 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700427 session->rx_fifo = rx_fifo;
428 session->tx_fifo = tx_fifo;
429
430 session->session_state = STATE_ACCEPT;
Florin Coras09d18c22019-04-24 11:10:02 -0700431 session->transport.rmt_port = mp->rmt.port;
432 session->transport.is_ip4 = mp->rmt.is_ip4;
433 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500434 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700435
Florin Coras134a9962018-08-28 11:32:04 -0700436 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700437 session->transport.lcl_port = listen_session->transport.lcl_port;
438 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700439 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200440 session->is_dgram = vcl_proto_is_dgram (session->session_type);
441 session->listener_index = listen_session->session_index;
442 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700443
Florin Coras5e062572019-03-14 19:07:51 -0700444 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
445 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700446 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
447 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
448 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700449 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
450
Florin Coras00cca802019-06-06 09:38:44 -0700451 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
452 session->vpp_handle, 0);
453
Florin Coras134a9962018-08-28 11:32:04 -0700454 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700455
456error:
457 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
458 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
459 VNET_API_ERROR_INVALID_ARGUMENT);
460 vcl_session_free (wrk, session);
461 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700462}
463
464static u32
Florin Coras134a9962018-08-28 11:32:04 -0700465vcl_session_connected_handler (vcl_worker_t * wrk,
466 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700467{
Florin Coras99368312018-08-02 10:45:44 -0700468 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700469 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700470 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -0700471
472 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700473 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700474 if (!session)
475 {
Florin Coras5e062572019-03-14 19:07:51 -0700476 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
477 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700478 return VCL_INVALID_SESSION_INDEX;
479 }
Florin Coras54693d22018-07-17 10:46:29 -0700480 if (mp->retval)
481 {
Florin Coras5e062572019-03-14 19:07:51 -0700482 VDBG (0, "ERROR: session index %u: connect failed! %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700483 session_index, format_session_error, mp->retval);
Florin Corasadcfb152020-02-12 08:50:29 +0000484 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Coras070453d2018-08-24 17:04:27 -0700485 session->vpp_handle = mp->handle;
486 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700487 }
488
Florin Corasdbc9c592019-09-25 16:37:43 -0700489 session->vpp_handle = mp->handle;
490 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
491 svm_msg_q_t *);
Florin Coras460dce62018-07-27 05:45:06 -0700492 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
493 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700494 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Corasd85de682018-11-29 17:02:29 -0800495 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700496 VDBG (0, "segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800497 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000498 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700499 vcl_send_session_disconnect (wrk, session);
500 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800501 }
502
Florin Coras460dce62018-07-27 05:45:06 -0700503 rx_fifo->client_session_index = session_index;
504 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700505 rx_fifo->client_thread_index = vcl_get_worker_index ();
506 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700507
Florin Coras653e43f2019-03-04 10:56:23 -0800508 vpp_wrk_index = tx_fifo->master_thread_index;
509 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
510 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700511
Florin Coras653e43f2019-03-04 10:56:23 -0800512 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700513 {
Florin Coras653e43f2019-03-04 10:56:23 -0800514 session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
515 session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700516 if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
Florin Coras653e43f2019-03-04 10:56:23 -0800517 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700518 VDBG (0, "ct segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800519 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000520 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700521 vcl_send_session_disconnect (wrk, session);
522 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800523 }
Florin Coras99368312018-08-02 10:45:44 -0700524 }
Florin Coras54693d22018-07-17 10:46:29 -0700525
Florin Coras54693d22018-07-17 10:46:29 -0700526 session->rx_fifo = rx_fifo;
527 session->tx_fifo = tx_fifo;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800528 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras09d18c22019-04-24 11:10:02 -0700529 session->transport.is_ip4 = mp->lcl.is_ip4;
530 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500531 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700532 session->transport.lcl_port = mp->lcl.port;
Florin Corasa5ea8212020-08-24 21:23:51 -0700533
534 /* Application closed session before connect reply */
535 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK)
536 && session->session_state == STATE_CLOSED)
537 vcl_send_session_disconnect (wrk, session);
538 else
539 session->session_state = STATE_CONNECT;
Florin Coras54693d22018-07-17 10:46:29 -0700540
541 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800542 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700543
Florin Coras5e062572019-03-14 19:07:51 -0700544 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
545 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700546 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700547
Florin Coras54693d22018-07-17 10:46:29 -0700548 return session_index;
549}
550
Florin Coras3c7d4f92018-12-14 11:28:43 -0800551static int
552vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
553{
554 vcl_session_msg_t *accepted_msg;
555 int i;
556
557 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
558 {
559 accepted_msg = &session->accept_evts_fifo[i];
560 if (accepted_msg->accepted_msg.handle == handle)
561 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800562 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800563 return 1;
564 }
565 }
566 return 0;
567}
568
Florin Corasc9fbd662018-08-24 12:59:56 -0700569static u32
Florin Coras134a9962018-08-28 11:32:04 -0700570vcl_session_reset_handler (vcl_worker_t * wrk,
571 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700572{
573 vcl_session_t *session;
574 u32 sid;
575
Florin Coras134a9962018-08-28 11:32:04 -0700576 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
577 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700578 if (!session)
579 {
580 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
581 return VCL_INVALID_SESSION_INDEX;
582 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800583
584 /* Caught a reset before actually accepting the session */
585 if (session->session_state == STATE_LISTEN)
586 {
587
588 if (!vcl_flag_accepted_session (session, reset_msg->handle,
589 VCL_ACCEPTED_F_RESET))
590 VDBG (0, "session was not accepted!");
591 return VCL_INVALID_SESSION_INDEX;
592 }
593
Florin Coras080aa502020-05-26 00:47:52 +0000594 if (session->session_state != STATE_CLOSED)
595 session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800596 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700597 return sid;
598}
599
Florin Coras60116992018-08-27 09:52:18 -0700600static u32
Florin Coras134a9962018-08-28 11:32:04 -0700601vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700602{
603 vcl_session_t *session;
604 u32 sid = mp->context;
605
Florin Coras134a9962018-08-28 11:32:04 -0700606 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700607 if (mp->retval)
608 {
Florin Coras5e062572019-03-14 19:07:51 -0700609 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700610 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700611 if (session)
612 {
Florin Corasadcfb152020-02-12 08:50:29 +0000613 session->session_state = STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700614 session->vpp_handle = mp->handle;
615 return sid;
616 }
617 else
618 {
Florin Coras5e062572019-03-14 19:07:51 -0700619 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
620 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700621 return VCL_INVALID_SESSION_INDEX;
622 }
623 }
624
625 session->vpp_handle = mp->handle;
626 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500627 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
628 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700629 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700630 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700631 session->session_state = STATE_LISTEN;
632
Florin Coras5f45e012019-01-23 09:21:30 -0800633 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
634 vec_validate (wrk->vpp_event_queues, 0);
635 wrk->vpp_event_queues[0] = session->vpp_evt_q;
636
Florin Coras6e3c1f82020-01-15 01:30:46 +0000637 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700638 {
639 svm_fifo_t *rx_fifo, *tx_fifo;
640 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
641 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
642 rx_fifo->client_session_index = sid;
643 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
644 tx_fifo->client_session_index = sid;
645 session->rx_fifo = rx_fifo;
646 session->tx_fifo = tx_fifo;
647 }
648
Florin Coras05ecfcc2018-12-12 18:19:39 -0800649 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700650 return sid;
651}
652
Florin Corasdfae9f92019-02-20 19:48:31 -0800653static void
654vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
655{
656 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
657 vcl_session_t *s;
658
659 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000660 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800661 {
662 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
663 return;
664 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000665 if (s->session_state != STATE_DISCONNECT)
666 {
667 /* Connected udp listener */
668 if (s->session_type == VPPCOM_PROTO_UDP
669 && s->session_state == STATE_CLOSED)
670 return;
671
672 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
673 return;
674 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800675
676 if (mp->retval)
677 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700678 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800679
680 if (mp->context != wrk->wrk_index)
681 VDBG (0, "wrong context");
682
683 vcl_session_table_del_vpp_handle (wrk, mp->handle);
684 vcl_session_free (wrk, s);
685}
686
Florin Coras68b7e582020-01-21 18:33:23 -0800687static void
688vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
689{
690 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
691 vcl_session_t *s;
692
693 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
694 if (!s)
695 {
696 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
697 return;
698 }
699
700 s->vpp_thread_index = mp->vpp_thread_index;
Florin Coras57660d92020-04-04 22:45:34 +0000701 s->vpp_handle = mp->new_handle;
Florin Coras68b7e582020-01-21 18:33:23 -0800702 s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
703
704 vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
705 wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
706
707 vcl_session_table_del_vpp_handle (wrk, mp->handle);
708 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
709
710 /* Generate new tx event if we have outstanding data */
711 if (svm_fifo_has_event (s->tx_fifo))
712 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
713 SESSION_IO_EVT_TX, SVM_Q_WAIT);
714
Florin Coras57660d92020-04-04 22:45:34 +0000715 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
716 s->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800717}
718
Florin Coras3c7d4f92018-12-14 11:28:43 -0800719static vcl_session_t *
720vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
721{
722 vcl_session_msg_t *vcl_msg;
723 vcl_session_t *session;
724
725 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
726 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800727 VWRN ("session overlap handle %lu state %u!", msg->handle,
728 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800729
730 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
731 if (!session)
732 {
733 VERR ("couldn't find listen session: listener handle %llx",
734 msg->listener_handle);
735 return 0;
736 }
737
738 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000739 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800740 vcl_msg->accepted_msg = *msg;
741 /* Session handle points to listener until fully accepted by app */
742 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
743
744 return session;
745}
746
747static vcl_session_t *
748vcl_session_disconnected_handler (vcl_worker_t * wrk,
749 session_disconnected_msg_t * msg)
750{
751 vcl_session_t *session;
752
753 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
754 if (!session)
755 {
756 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
757 return 0;
758 }
759
Florin Corasadcfb152020-02-12 08:50:29 +0000760 /* Late disconnect notification on a session that has been closed */
761 if (session->session_state == STATE_CLOSED)
762 return 0;
763
Florin Coras3c7d4f92018-12-14 11:28:43 -0800764 /* Caught a disconnect before actually accepting the session */
765 if (session->session_state == STATE_LISTEN)
766 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800767 if (!vcl_flag_accepted_session (session, msg->handle,
768 VCL_ACCEPTED_F_CLOSED))
769 VDBG (0, "session was not accepted!");
770 return 0;
771 }
772
Florin Corasadcfb152020-02-12 08:50:29 +0000773 /* If not already reset change state */
774 if (session->session_state != STATE_DISCONNECT)
775 session->session_state = STATE_VPP_CLOSING;
776
Florin Coras3c7d4f92018-12-14 11:28:43 -0800777 return session;
778}
779
Florin Coras30e79c22019-01-02 19:31:22 -0800780static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700781vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
782{
783 session_cleanup_msg_t *msg;
784 vcl_session_t *session;
785
786 msg = (session_cleanup_msg_t *) data;
787 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
788 if (!session)
789 {
790 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
791 return;
792 }
793
Florin Coras36d49392020-04-24 23:00:11 +0000794 if (msg->type == SESSION_CLEANUP_TRANSPORT)
795 {
796 /* Transport was cleaned up before we confirmed close. Probably the
797 * app is still waiting for some data that cannot be delivered.
798 * Confirm close to make sure everything is cleaned up */
799 if (session->session_state == STATE_VPP_CLOSING)
800 vcl_session_cleanup (wrk, session, vcl_session_handle (session),
801 1 /* do_disconnect */ );
802 return;
803 }
804
Florin Coras9ace36d2019-10-28 13:14:17 -0700805 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000806 /* Should not happen. App did not close the connection so don't free it. */
807 if (session->session_state != STATE_CLOSED)
808 {
809 VDBG (0, "app did not close session %d", session->session_index);
810 session->session_state = STATE_DETACHED;
811 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
812 return;
813 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700814 vcl_session_free (wrk, session);
815}
816
817static void
Florin Coras30e79c22019-01-02 19:31:22 -0800818vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
819{
820 session_req_worker_update_msg_t *msg;
821 vcl_session_t *s;
822
823 msg = (session_req_worker_update_msg_t *) data;
824 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
825 if (!s)
826 return;
827
828 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
829}
830
831static void
832vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
833{
834 session_worker_update_reply_msg_t *msg;
835 vcl_session_t *s;
836
837 msg = (session_worker_update_reply_msg_t *) data;
838 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
839 if (!s)
840 {
841 VDBG (0, "unknown handle 0x%llx", msg->handle);
842 return;
843 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700844 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800845 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700846 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800847 s->session_index);
848 return;
849 }
Florin Coras30e79c22019-01-02 19:31:22 -0800850
Florin Coras5f45e012019-01-23 09:21:30 -0800851 if (s->rx_fifo)
852 {
853 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
854 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
855 s->rx_fifo->client_session_index = s->session_index;
856 s->tx_fifo->client_session_index = s->session_index;
857 s->rx_fifo->client_thread_index = wrk->wrk_index;
858 s->tx_fifo->client_thread_index = wrk->wrk_index;
859 }
Florin Coras30e79c22019-01-02 19:31:22 -0800860 s->session_state = STATE_UPDATED;
861
Florin Coras30e79c22019-01-02 19:31:22 -0800862 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
863 s->vpp_handle, wrk->wrk_index);
864}
865
Florin Coras935ce752020-09-08 22:43:47 -0700866static int
867vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
868{
869
870 if (vcm->cfg.vpp_app_socket_api)
871 return vcl_sapi_recv_fds (wrk, fds, n_fds);
872
873 return vcl_bapi_recv_fds (wrk, fds, n_fds);
874}
875
Florin Corasc4c4cf52019-08-24 18:17:34 -0700876static void
877vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
878{
879 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
880 session_app_add_segment_msg_t *msg;
881 u64 segment_handle;
882 int fd = -1;
883
884 msg = (session_app_add_segment_msg_t *) data;
885
886 if (msg->fd_flags)
887 {
Florin Coras935ce752020-09-08 22:43:47 -0700888 vcl_api_recv_fd (wrk, &fd, 1);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700889 seg_type = SSVM_SEGMENT_MEMFD;
890 }
891
892 segment_handle = msg->segment_handle;
893 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
894 {
895 clib_warning ("invalid segment handle");
896 return;
897 }
898
899 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
900 seg_type, fd))
901 {
902 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
903 return;
904 }
905
906 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
907 msg->segment_size);
908}
909
910static void
911vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
912{
913 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
914 vcl_segment_detach (msg->segment_handle);
915 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
916}
917
Florin Coras40c07ce2020-07-16 20:46:17 -0700918static void
919vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
920{
921 if (!vcm->wrk_rpc_fn)
922 return;
923
hanlina3a48962020-07-13 11:09:15 +0800924 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700925}
926
Florin Coras86f04502018-09-12 16:08:01 -0700927static int
928vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700929{
Florin Coras54693d22018-07-17 10:46:29 -0700930 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700931 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700932
933 switch (e->event_type)
934 {
Florin Coras653e43f2019-03-04 10:56:23 -0800935 case SESSION_IO_EVT_RX:
936 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800937 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800938 if (!session || !(session->session_state & STATE_OPEN))
939 break;
Florin Coras86f04502018-09-12 16:08:01 -0700940 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700941 break;
942 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800943 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700944 break;
945 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700946 vcl_session_connected_handler (wrk,
947 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700948 break;
949 case SESSION_CTRL_EVT_DISCONNECTED:
950 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800951 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700952 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800953 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800954 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
955 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700956 break;
957 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700958 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700959 break;
960 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700961 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700962 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800963 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
964 vcl_session_unlisten_reply_handler (wrk, e->data);
965 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800966 case SESSION_CTRL_EVT_MIGRATED:
967 vcl_session_migrated_handler (wrk, e->data);
968 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700969 case SESSION_CTRL_EVT_CLEANUP:
970 vcl_session_cleanup_handler (wrk, e->data);
971 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800972 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
973 vcl_session_req_worker_update_handler (wrk, e->data);
974 break;
975 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
976 vcl_session_worker_update_reply_handler (wrk, e->data);
977 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700978 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
979 vcl_session_app_add_segment_handler (wrk, e->data);
980 break;
981 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
982 vcl_session_app_del_segment_handler (wrk, e->data);
983 break;
hanlina3a48962020-07-13 11:09:15 +0800984 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -0700985 vcl_worker_rpc_handler (wrk, e->data);
986 break;
Florin Coras54693d22018-07-17 10:46:29 -0700987 default:
988 clib_warning ("unhandled %u", e->event_type);
989 }
990 return VPPCOM_OK;
991}
992
Florin Coras30e79c22019-01-02 19:31:22 -0800993static int
Florin Coras697faea2018-06-27 17:10:49 -0700994vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800995 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700996 f64 wait_for_time)
997{
Florin Coras134a9962018-08-28 11:32:04 -0700998 vcl_worker_t *wrk = vcl_worker_get_current ();
999 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -07001000 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -07001001 svm_msg_q_msg_t msg;
1002 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -04001003
Florin Coras697faea2018-06-27 17:10:49 -07001004 do
Dave Wallace543852a2017-08-03 02:11:34 -04001005 {
Florin Coras134a9962018-08-28 11:32:04 -07001006 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001007 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -07001008 {
Florin Coras070453d2018-08-24 17:04:27 -07001009 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -07001010 }
1011 if (session->session_state & state)
1012 {
Florin Coras697faea2018-06-27 17:10:49 -07001013 return VPPCOM_OK;
1014 }
Florin Corasadcfb152020-02-12 08:50:29 +00001015 if (session->session_state & STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001016 {
Florin Coras697faea2018-06-27 17:10:49 -07001017 return VPPCOM_ECONNREFUSED;
1018 }
Florin Coras54693d22018-07-17 10:46:29 -07001019
Florin Coras134a9962018-08-28 11:32:04 -07001020 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001021 {
1022 usleep (100);
1023 continue;
1024 }
Florin Coras134a9962018-08-28 11:32:04 -07001025 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001026 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001027 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001028 }
Florin Coras134a9962018-08-28 11:32:04 -07001029 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001030
Florin Coras05ecfcc2018-12-12 18:19:39 -08001031 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -07001032 vppcom_session_state_str (state));
1033 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001034
Florin Coras697faea2018-06-27 17:10:49 -07001035 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001036}
1037
Florin Coras30e79c22019-01-02 19:31:22 -08001038static void
1039vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1040{
Florin Coras288eaab2019-02-03 15:26:14 -08001041 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001042 vcl_session_t *s;
1043 u32 *sip;
1044
1045 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1046 return;
1047
1048 vec_foreach (sip, wrk->pending_session_wrk_updates)
1049 {
1050 s = vcl_session_get (wrk, *sip);
1051 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1052 state = s->session_state;
1053 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
1054 s->session_state = state;
1055 }
1056 vec_reset_length (wrk->pending_session_wrk_updates);
1057}
1058
Florin Corasf9240dc2019-01-15 08:03:17 -08001059void
Florin Coras30e79c22019-01-02 19:31:22 -08001060vcl_flush_mq_events (void)
1061{
1062 vcl_worker_t *wrk = vcl_worker_get_current ();
1063 svm_msg_q_msg_t *msg;
1064 session_event_t *e;
1065 svm_msg_q_t *mq;
1066 int i;
1067
1068 mq = wrk->app_event_queue;
1069 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -07001070 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001071 svm_msg_q_unlock (mq);
1072
1073 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1074 {
1075 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1076 e = svm_msg_q_msg_data (mq, msg);
1077 vcl_handle_mq_event (wrk, e);
1078 svm_msg_q_free_msg (mq, msg);
1079 }
1080 vec_reset_length (wrk->mq_msg_vector);
1081 vcl_handle_pending_wrk_updates (wrk);
1082}
1083
Florin Coras697faea2018-06-27 17:10:49 -07001084static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001085vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001086{
Florin Coras134a9962018-08-28 11:32:04 -07001087 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001088 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001089 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001090 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001091
Florin Corasab2f6db2018-08-31 14:31:41 -07001092 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001093 if (!session)
1094 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001095
Florin Corasaaff5ee2019-07-08 13:00:00 -07001096 /* Flush pending accept events, if any */
1097 while (clib_fifo_elts (session->accept_evts_fifo))
1098 {
1099 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1100 accepted_msg = &evt->accepted_msg;
1101 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1102 vcl_send_session_accepted_reply (session->vpp_evt_q,
1103 accepted_msg->context,
1104 session->vpp_handle, -1);
1105 }
1106 clib_fifo_free (session->accept_evts_fifo);
1107
Florin Coras458089b2019-08-21 16:20:44 -07001108 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001109
Florin Coras5e062572019-03-14 19:07:51 -07001110 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001111 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001112 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001113
1114 session->vpp_handle = ~0;
1115 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001116
Florin Coras070453d2018-08-24 17:04:27 -07001117 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001118}
1119
Florin Coras697faea2018-06-27 17:10:49 -07001120static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001121vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001122{
Florin Coras134a9962018-08-28 11:32:04 -07001123 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001124 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001125 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001126 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001127 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001128
Florin Corasab2f6db2018-08-31 14:31:41 -07001129 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001130 if (!session)
1131 return VPPCOM_EBADFD;
1132
Dave Wallace4878cbe2017-11-21 03:45:09 -05001133 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001134 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001135
Florin Coras5e062572019-03-14 19:07:51 -07001136 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1137 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001138
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001139 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001140 {
Florin Coras5e062572019-03-14 19:07:51 -07001141 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001142 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001143 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001144
Florin Coras3c7d4f92018-12-14 11:28:43 -08001145 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001146 {
Florin Coras134a9962018-08-28 11:32:04 -07001147 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Corascc7c88e2020-09-15 15:56:51 -07001148 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->api_client_handle,
Florin Coras99368312018-08-02 10:45:44 -07001149 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001150 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1151 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001152 }
1153 else
Dave Wallace227867f2017-11-13 21:21:53 -05001154 {
Florin Corasa5ea8212020-08-24 21:23:51 -07001155 /* Session doesn't have an event queue yet. Probably a non-blocking
1156 * connect. Wait for the reply */
1157 if (PREDICT_FALSE (!session->vpp_evt_q))
1158 return VPPCOM_OK;
1159
Florin Coras5e062572019-03-14 19:07:51 -07001160 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1161 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001162 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001163 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001164
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001165 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1166 {
1167 listen_session = vcl_session_get (wrk, session->listener_index);
1168 listen_session->n_accepted_sessions--;
1169 }
1170
Florin Coras070453d2018-08-24 17:04:27 -07001171 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001172}
1173
Florin Coras940f78f2018-11-30 12:11:20 -08001174/**
1175 * Handle app exit
1176 *
1177 * Notify vpp of the disconnect and mark the worker as free. If we're the
1178 * last worker, do a full cleanup otherwise, since we're probably a forked
1179 * child, avoid syscalls as much as possible. We might've lost privileges.
1180 */
1181void
1182vppcom_app_exit (void)
1183{
1184 if (!pool_elts (vcm->workers))
1185 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001186 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1187 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001188 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001189}
1190
Florin Coras935ce752020-09-08 22:43:47 -07001191static int
1192vcl_api_attach (void)
1193{
1194 if (vcm->cfg.vpp_app_socket_api)
1195 return vcl_sapi_attach ();
1196
1197 return vcl_bapi_attach ();
1198}
1199
1200static void
1201vcl_api_detach (vcl_worker_t * wrk)
1202{
1203 vcl_send_app_detach (wrk);
1204
1205 if (vcm->cfg.vpp_app_socket_api)
1206 return vcl_sapi_detach (wrk);
1207
1208 return vcl_bapi_disconnect_from_vpp ();
1209}
1210
Dave Wallace543852a2017-08-03 02:11:34 -04001211/*
1212 * VPPCOM Public API functions
1213 */
1214int
Florin Coras66ec4672020-06-15 07:59:40 -07001215vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001216{
Dave Wallace543852a2017-08-03 02:11:34 -04001217 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001218 int rv;
1219
Florin Coras47c40e22018-11-26 17:01:36 -08001220 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001221 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001222 VDBG (1, "already initialized");
1223 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001224 }
1225
Florin Coras47c40e22018-11-26 17:01:36 -08001226 vcm->is_init = 1;
1227 vppcom_cfg (&vcm->cfg);
1228 vcl_cfg = &vcm->cfg;
1229
1230 vcm->main_cpu = pthread_self ();
1231 vcm->main_pid = getpid ();
1232 vcm->app_name = format (0, "%s", app_name);
Florin Coras88001c62019-04-24 14:44:46 -07001233 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1234 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001235 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1236 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001237 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001238 atexit (vppcom_app_exit);
Florin Corasb88de902020-09-08 16:47:57 -07001239 vcl_elog_init (vcm);
Florin Coras47c40e22018-11-26 17:01:36 -08001240
1241 /* Allocate default worker */
1242 vcl_worker_alloc_and_init ();
1243
Florin Coras935ce752020-09-08 22:43:47 -07001244 if ((rv = vcl_api_attach ()))
Florin Corasb88de902020-09-08 16:47:57 -07001245 return rv;
Florin Coras47c40e22018-11-26 17:01:36 -08001246
1247 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
Florin Corascc7c88e2020-09-15 15:56:51 -07001248 vcm->workers[0].api_client_handle, vcm->workers[0].api_client_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001249
1250 return VPPCOM_OK;
1251}
1252
1253void
1254vppcom_app_destroy (void)
1255{
Florin Corasdc0ded72020-04-30 02:59:55 +00001256 vcl_worker_t *wrk, *current_wrk;
Damjan Marion4537c302020-09-28 19:03:37 +02001257 void *heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001258
Florin Coras940f78f2018-11-30 12:11:20 -08001259 if (!pool_elts (vcm->workers))
1260 return;
1261
Florin Coras0d427d82018-06-27 03:24:07 -07001262 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001263
Florin Corasdc0ded72020-04-30 02:59:55 +00001264 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001265
Florin Corasce815de2020-04-16 18:47:27 +00001266 /* *INDENT-OFF* */
1267 pool_foreach (wrk, vcm->workers, ({
Florin Corasdc0ded72020-04-30 02:59:55 +00001268 if (current_wrk != wrk)
1269 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Florin Corasce815de2020-04-16 18:47:27 +00001270 }));
1271 /* *INDENT-ON* */
1272
Florin Coras935ce752020-09-08 22:43:47 -07001273 vcl_api_detach (current_wrk);
Florin Corasdc0ded72020-04-30 02:59:55 +00001274 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1275
Florin Coras0d427d82018-06-27 03:24:07 -07001276 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001277
1278 /*
1279 * Free the heap and fix vcm
1280 */
1281 heap = clib_mem_get_heap ();
Damjan Marion4537c302020-09-28 19:03:37 +02001282 munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
Florin Corasce815de2020-04-16 18:47:27 +00001283
1284 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001285 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001286}
1287
1288int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001289vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001290{
Florin Coras134a9962018-08-28 11:32:04 -07001291 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001292 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001293
Florin Coras134a9962018-08-28 11:32:04 -07001294 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001295
Florin Coras7e12d942018-06-27 14:32:43 -07001296 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001297 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001298 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001299 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001300
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001301 if (is_nonblocking)
1302 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001303
Florin Coras7e12d942018-06-27 14:32:43 -07001304 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1305 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001306
Florin Coras5e062572019-03-14 19:07:51 -07001307 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001308
Florin Coras134a9962018-08-28 11:32:04 -07001309 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001310}
1311
1312int
Florin Corasf9240dc2019-01-15 08:03:17 -08001313vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1314 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001315{
Florin Coras288eaab2019-02-03 15:26:14 -08001316 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001317 u32 next_sh, vep_sh;
1318 int rv = VPPCOM_OK;
1319 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001320 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001321
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001322 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001323 next_sh = session->vep.next_sh;
1324 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001325 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001326 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001327
Florin Corasf9240dc2019-01-15 08:03:17 -08001328 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001329
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001330 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001331 {
Florin Coras134a9962018-08-28 11:32:04 -07001332 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001333 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001334 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001335 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001336 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001337 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1338 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001339
Florin Coras134a9962018-08-28 11:32:04 -07001340 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001341 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001342 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001343 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001344
1345 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001346 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001347 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1348 if (rv < 0)
1349 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1350 "failed! rv %d (%s)", session->session_index, vpp_handle,
1351 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001352 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001353
Florin Coras9ace36d2019-10-28 13:14:17 -07001354 if (!do_disconnect)
1355 {
1356 VDBG (1, "session %u [0x%llx] disconnect skipped",
1357 session->session_index, vpp_handle);
1358 goto cleanup;
1359 }
1360
1361 if (state & STATE_LISTEN)
1362 {
1363 rv = vppcom_session_unbind (sh);
1364 if (PREDICT_FALSE (rv < 0))
1365 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1366 "rv %d (%s)", session->session_index, vpp_handle, rv,
1367 vppcom_retval_str (rv));
1368 return rv;
1369 }
1370 else if ((state & STATE_OPEN)
1371 || (vcl_session_is_connectable_listener (wrk, session)))
1372 {
1373 rv = vppcom_session_disconnect (sh);
1374 if (PREDICT_FALSE (rv < 0))
1375 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1376 " rv %d (%s)", session->session_index, vpp_handle,
1377 rv, vppcom_retval_str (rv));
1378 }
1379 else if (state == STATE_DISCONNECT)
1380 {
1381 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
Florin Corascc7c88e2020-09-15 15:56:51 -07001382 vcl_send_session_reset_reply (mq, wrk->api_client_handle,
Florin Coras9ace36d2019-10-28 13:14:17 -07001383 session->vpp_handle, 0);
1384 }
Florin Corasadcfb152020-02-12 08:50:29 +00001385 else if (state == STATE_DETACHED)
1386 {
1387 /* Should not happen. VPP cleaned up before app confirmed close */
1388 VDBG (0, "vpp freed session %d before close", session->session_index);
1389 goto free_session;
1390 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001391
Florin Coras54140622020-02-04 19:04:34 +00001392 session->session_state = STATE_CLOSED;
1393
Florin Coras9ace36d2019-10-28 13:14:17 -07001394 /* Session is removed only after vpp confirms the disconnect */
1395 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001396
Florin Corasf9240dc2019-01-15 08:03:17 -08001397cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001398 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001399free_session:
Florin Coras134a9962018-08-28 11:32:04 -07001400 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001401 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001402
Dave Wallace543852a2017-08-03 02:11:34 -04001403 return rv;
1404}
1405
1406int
Florin Corasf9240dc2019-01-15 08:03:17 -08001407vppcom_session_close (uint32_t session_handle)
1408{
1409 vcl_worker_t *wrk = vcl_worker_get_current ();
1410 vcl_session_t *session;
1411
1412 session = vcl_session_get_w_handle (wrk, session_handle);
1413 if (!session)
1414 return VPPCOM_EBADFD;
1415 return vcl_session_cleanup (wrk, session, session_handle,
1416 1 /* do_disconnect */ );
1417}
1418
1419int
Florin Coras134a9962018-08-28 11:32:04 -07001420vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001421{
Florin Coras134a9962018-08-28 11:32:04 -07001422 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001423 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001424
1425 if (!ep || !ep->ip)
1426 return VPPCOM_EINVAL;
1427
Florin Coras134a9962018-08-28 11:32:04 -07001428 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001429 if (!session)
1430 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001431
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001432 if (session->is_vep)
1433 {
Florin Coras5e062572019-03-14 19:07:51 -07001434 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1435 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001436 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001437 }
1438
Florin Coras7e12d942018-06-27 14:32:43 -07001439 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001440 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001441 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1442 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001443 else
Dave Barach178cf492018-11-13 16:34:13 -05001444 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1445 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001446 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001447
Florin Coras5e062572019-03-14 19:07:51 -07001448 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1449 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001450 session->transport.is_ip4 ? "IPv4" : "IPv6",
1451 format_ip46_address, &session->transport.lcl_ip,
1452 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1453 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001454 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001455 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001456
1457 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001458 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001459
Florin Coras070453d2018-08-24 17:04:27 -07001460 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001461}
1462
1463int
Florin Coras134a9962018-08-28 11:32:04 -07001464vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001465{
Florin Coras134a9962018-08-28 11:32:04 -07001466 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001467 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001468 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001469 int rv;
1470
Florin Coras134a9962018-08-28 11:32:04 -07001471 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001472 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001473 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001474
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001475 if (q_len == 0 || q_len == ~0)
1476 q_len = vcm->cfg.listen_queue_size;
1477
Dave Wallaceee45d412017-11-24 21:44:06 -05001478 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001479 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001480 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001481 VDBG (0, "session %u [0x%llx]: already in listen state!",
1482 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001483 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001484 }
1485
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001486 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001487
Florin Coras070453d2018-08-24 17:04:27 -07001488 /*
1489 * Send listen request to vpp and wait for reply
1490 */
Florin Coras458089b2019-08-21 16:20:44 -07001491 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001492 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1493 STATE_LISTEN,
1494 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001495
Florin Coras070453d2018-08-24 17:04:27 -07001496 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001497 {
Florin Coras134a9962018-08-28 11:32:04 -07001498 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001499 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1500 listen_sh, listen_session->vpp_handle, rv,
1501 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001502 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001503 }
1504
Florin Coras070453d2018-08-24 17:04:27 -07001505 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001506}
1507
Florin Coras134a9962018-08-28 11:32:04 -07001508static int
Florin Coras5e062572019-03-14 19:07:51 -07001509validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001510{
Florin Coras5e062572019-03-14 19:07:51 -07001511 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001512 {
Florin Coras5e062572019-03-14 19:07:51 -07001513 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1514 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001515 return VPPCOM_EBADFD;
1516 }
1517
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001518 if ((ls->session_state != STATE_LISTEN)
1519 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001520 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001521 VDBG (0,
1522 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1523 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001524 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001525 return VPPCOM_EBADFD;
1526 }
1527 return VPPCOM_OK;
1528}
1529
1530int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001531vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1532{
1533 if (!strcmp (proto_str, "TCP"))
1534 *proto = VPPCOM_PROTO_TCP;
1535 else if (!strcmp (proto_str, "tcp"))
1536 *proto = VPPCOM_PROTO_TCP;
1537 else if (!strcmp (proto_str, "UDP"))
1538 *proto = VPPCOM_PROTO_UDP;
1539 else if (!strcmp (proto_str, "udp"))
1540 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001541 else if (!strcmp (proto_str, "TLS"))
1542 *proto = VPPCOM_PROTO_TLS;
1543 else if (!strcmp (proto_str, "tls"))
1544 *proto = VPPCOM_PROTO_TLS;
1545 else if (!strcmp (proto_str, "QUIC"))
1546 *proto = VPPCOM_PROTO_QUIC;
1547 else if (!strcmp (proto_str, "quic"))
1548 *proto = VPPCOM_PROTO_QUIC;
1549 else
1550 return 1;
1551 return 0;
1552}
1553
1554int
Florin Coras134a9962018-08-28 11:32:04 -07001555vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001556 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001557{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001558 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001559 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001560 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001561 vcl_session_t *listen_session = 0;
1562 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001563 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001564 svm_msg_q_msg_t msg;
1565 session_event_t *e;
1566 u8 is_nonblocking;
1567 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001568
Florin Coras134a9962018-08-28 11:32:04 -07001569 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001570 if (!listen_session)
1571 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001572
Florin Coras134a9962018-08-28 11:32:04 -07001573 listen_session_index = listen_session->session_index;
1574 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001575 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001576
Florin Coras54693d22018-07-17 10:46:29 -07001577 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001578 {
Florin Coras54693d22018-07-17 10:46:29 -07001579 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001580 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001581 accepted_msg = evt->accepted_msg;
1582 goto handle;
1583 }
1584
1585 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1586 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001587 while (1)
1588 {
Carl Smith592a9092019-11-12 14:57:37 +13001589 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1590 return VPPCOM_EAGAIN;
1591
Florin Coras134a9962018-08-28 11:32:04 -07001592 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001593 return VPPCOM_EAGAIN;
1594
Florin Coras134a9962018-08-28 11:32:04 -07001595 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001596 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001597 {
wanghanlin96453fd2019-12-16 19:14:39 +08001598 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001599 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001600 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001601 }
Dave Barach178cf492018-11-13 16:34:13 -05001602 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001603 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001604 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001605 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001606
Florin Coras54693d22018-07-17 10:46:29 -07001607handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001608
Florin Coras00cca802019-06-06 09:38:44 -07001609 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1610 listen_session_index);
1611 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1612 return VPPCOM_ECONNABORTED;
1613
Florin Coras134a9962018-08-28 11:32:04 -07001614 listen_session = vcl_session_get (wrk, listen_session_index);
1615 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001616
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001617 if (flags & O_NONBLOCK)
1618 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001619
Florin Coras5e062572019-03-14 19:07:51 -07001620 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1621 " flags %d, is_nonblocking %u", listen_session->session_index,
1622 listen_session->vpp_handle, client_session_index,
1623 client_session->vpp_handle, flags,
1624 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001625
Dave Wallace048b1d62018-01-03 22:24:41 -05001626 if (ep)
1627 {
Florin Coras7e12d942018-06-27 14:32:43 -07001628 ep->is_ip4 = client_session->transport.is_ip4;
1629 ep->port = client_session->transport.rmt_port;
1630 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001631 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1632 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001633 else
Dave Barach178cf492018-11-13 16:34:13 -05001634 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1635 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001636 }
Dave Wallace60caa062017-11-10 17:07:13 -05001637
Florin Coras05ecfcc2018-12-12 18:19:39 -08001638 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001639 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001640 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001641 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001642 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001643 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001644 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001645 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001646 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001647 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1648 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001649
Florin Coras3c7d4f92018-12-14 11:28:43 -08001650 /*
1651 * Session might have been closed already
1652 */
1653 if (accept_flags)
1654 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001655 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001656 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001657 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001658 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001659 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001660 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001661}
1662
1663int
Florin Coras134a9962018-08-28 11:32:04 -07001664vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001665{
Florin Coras134a9962018-08-28 11:32:04 -07001666 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001667 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001668 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001669 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001670
Florin Coras134a9962018-08-28 11:32:04 -07001671 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001672 if (!session)
1673 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001674 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001675
1676 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001677 {
Florin Coras5e062572019-03-14 19:07:51 -07001678 VDBG (0, "ERROR: cannot connect epoll session %u!",
1679 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001680 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001681 }
1682
Florin Coras7e12d942018-06-27 14:32:43 -07001683 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001684 {
Florin Coras7baeb712019-01-04 17:05:43 -08001685 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001686 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001687 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001688 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001689 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001690 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001691 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001692 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001693 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001694 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001695 }
1696
Florin Coras0a1e1832020-03-29 18:54:04 +00001697 /* Attempt to connect a connectionless listener */
1698 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1699 {
1700 if (session->session_type != VPPCOM_PROTO_UDP)
1701 return VPPCOM_EINVAL;
1702 vcl_send_session_unlisten (wrk, session);
1703 session->session_state = STATE_CLOSED;
1704 }
1705
Florin Coras7e12d942018-06-27 14:32:43 -07001706 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001707 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001708 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001709 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001710 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001711
Florin Coras0a1e1832020-03-29 18:54:04 +00001712 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001713 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001714 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001715 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001716 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001717 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001718 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001719 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001720 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001721
Florin Coras458089b2019-08-21 16:20:44 -07001722 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001723
1724 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
Florin Corasa5ea8212020-08-24 21:23:51 -07001725 {
fanyfa49d59d2020-10-13 17:07:16 +08001726 /* State set to STATE_UPDATED to ensure the session is not assumed
1727 * to be open and to also allow the app to close it prior to vpp's
1728 * connected reply. */
1729 session->session_state = STATE_UPDATED;
Florin Corasa5ea8212020-08-24 21:23:51 -07001730 return VPPCOM_EINPROGRESS;
1731 }
Florin Coras57c88932019-08-29 12:03:17 -07001732
1733 /*
1734 * Wait for reply from vpp if blocking
1735 */
Florin Coras070453d2018-08-24 17:04:27 -07001736 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1737 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001738
Florin Coras134a9962018-08-28 11:32:04 -07001739 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001740 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1741 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001742
Dave Wallace4878cbe2017-11-21 03:45:09 -05001743 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001744}
1745
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001746int
1747vppcom_session_stream_connect (uint32_t session_handle,
1748 uint32_t parent_session_handle)
1749{
1750 vcl_worker_t *wrk = vcl_worker_get_current ();
1751 vcl_session_t *session, *parent_session;
1752 u32 session_index, parent_session_index;
1753 int rv;
1754
1755 session = vcl_session_get_w_handle (wrk, session_handle);
1756 if (!session)
1757 return VPPCOM_EBADFD;
1758 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1759 if (!parent_session)
1760 return VPPCOM_EBADFD;
1761
1762 session_index = session->session_index;
1763 parent_session_index = parent_session->session_index;
1764 if (PREDICT_FALSE (session->is_vep))
1765 {
1766 VDBG (0, "ERROR: cannot connect epoll session %u!",
1767 session->session_index);
1768 return VPPCOM_EBADFD;
1769 }
1770
1771 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1772 {
1773 VDBG (0, "session handle %u [0x%llx]: session already "
1774 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1775 session_handle, session->vpp_handle,
1776 parent_session_handle, parent_session->vpp_handle,
1777 vppcom_proto_str (session->session_type), session->session_state,
1778 vppcom_session_state_str (session->session_state));
1779 return VPPCOM_OK;
1780 }
1781
1782 /* Connect to quic session specifics */
1783 session->transport.is_ip4 = parent_session->transport.is_ip4;
1784 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1785 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001786 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001787
1788 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1789 session_handle, parent_session_handle, parent_session->vpp_handle);
1790
1791 /*
1792 * Send connect request and wait for reply from vpp
1793 */
Florin Coras458089b2019-08-21 16:20:44 -07001794 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001795 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1796 vcm->cfg.session_timeout);
1797
1798 session->listener_index = parent_session_index;
1799 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001800 if (parent_session)
1801 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001802
1803 session = vcl_session_get (wrk, session_index);
1804 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1805 session->vpp_handle, rv ? "failed" : "succeeded");
1806
1807 return rv;
1808}
1809
Florin Coras54693d22018-07-17 10:46:29 -07001810static u8
1811vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1812{
Florin Corasc0737e92019-03-04 14:19:39 -08001813 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001814}
1815
Steven58f464e2017-10-25 12:33:12 -07001816static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001817vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001818 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001819{
Florin Coras134a9962018-08-28 11:32:04 -07001820 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras4a2c7942020-09-10 12:27:14 -07001821 int rv, n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001822 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001823 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001824 svm_msg_q_msg_t msg;
1825 session_event_t *e;
1826 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001827 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001828
Florin Coras070453d2018-08-24 17:04:27 -07001829 if (PREDICT_FALSE (!buf))
1830 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001831
Florin Coras134a9962018-08-28 11:32:04 -07001832 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001833 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001834 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001835
Florin Coras6d0106e2019-01-29 20:11:58 -08001836 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001837 {
Florin Coras5e062572019-03-14 19:07:51 -07001838 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001839 s->session_index, s->vpp_handle, s->session_state,
1840 vppcom_session_state_str (s->session_state));
1841 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001842 }
1843
Florin Coras2cba8532018-09-11 16:33:36 -07001844 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001845 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001846 mq = wrk->app_event_queue;
1847 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001848 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001849
Sirshak Das28aa5392019-02-05 01:33:33 -06001850 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001851 {
Florin Coras54693d22018-07-17 10:46:29 -07001852 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001853 {
Yu Pingb2955352019-12-04 06:49:04 +08001854 if (vcl_session_is_closing (s))
1855 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001856 svm_fifo_unset_event (s->rx_fifo);
1857 return VPPCOM_EWOULDBLOCK;
1858 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001859 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001860 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001861 if (vcl_session_is_closing (s))
1862 return vcl_session_closing_error (s);
1863
Florin Corasc0737e92019-03-04 14:19:39 -08001864 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001865 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001866 if (svm_msg_q_is_empty (mq))
1867 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001868
Florin Coras54693d22018-07-17 10:46:29 -07001869 svm_msg_q_sub_w_lock (mq, &msg);
1870 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001871 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001872 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001873 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001874 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001875 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001876 }
Florin Coras54693d22018-07-17 10:46:29 -07001877
Florin Coras4a2c7942020-09-10 12:27:14 -07001878read_again:
1879
Florin Coras460dce62018-07-27 05:45:06 -07001880 if (s->is_dgram)
Florin Coras4a2c7942020-09-10 12:27:14 -07001881 rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001882 else
Florin Coras4a2c7942020-09-10 12:27:14 -07001883 rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1884
1885 ASSERT (rv >= 0);
1886 n_read += rv;
Florin Coras54693d22018-07-17 10:46:29 -07001887
Sirshak Das28aa5392019-02-05 01:33:33 -06001888 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07001889 {
1890 svm_fifo_unset_event (s->rx_fifo);
1891 if (!svm_fifo_is_empty_cons (rx_fifo)
1892 && svm_fifo_set_event (s->rx_fifo) && is_nonblocking)
1893 {
Florin Corasc34118b2020-08-12 18:58:25 -07001894 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1895 e->event_type = SESSION_IO_EVT_RX;
1896 e->session_index = s->session_index;
1897 }
1898 }
Florin Coras4a2c7942020-09-10 12:27:14 -07001899 else if (PREDICT_FALSE (rv < n))
1900 {
1901 /* More data enqueued while reading. Try to drain it
1902 * or fill the buffer */
1903 buf += rv;
1904 n -= rv;
1905 goto read_again;
1906 }
Florin Coras41c9e042018-09-11 00:10:41 -07001907
Florin Coras17ec5772020-08-12 20:46:29 -07001908 if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
Florin Coras317b8e02019-04-17 09:57:46 -07001909 {
Florin Coras17ec5772020-08-12 20:46:29 -07001910 svm_fifo_clear_deq_ntf (rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001911 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1912 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras317b8e02019-04-17 09:57:46 -07001913 }
1914
Florin Coras5e062572019-03-14 19:07:51 -07001915 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1916 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001917
Florin Coras54693d22018-07-17 10:46:29 -07001918 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001919}
1920
Steven58f464e2017-10-25 12:33:12 -07001921int
Florin Coras134a9962018-08-28 11:32:04 -07001922vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001923{
Florin Coras134a9962018-08-28 11:32:04 -07001924 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001925}
1926
1927static int
Florin Coras134a9962018-08-28 11:32:04 -07001928vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001929{
Florin Coras134a9962018-08-28 11:32:04 -07001930 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001931}
1932
Florin Coras2cba8532018-09-11 16:33:36 -07001933int
1934vppcom_session_read_segments (uint32_t session_handle,
Florin Corasd68faf82020-09-25 15:18:13 -07001935 vppcom_data_segment_t * ds, uint32_t n_segments,
1936 uint32_t max_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07001937{
1938 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001939 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001940 vcl_session_t *s = 0;
1941 svm_fifo_t *rx_fifo;
1942 svm_msg_q_msg_t msg;
1943 session_event_t *e;
1944 svm_msg_q_t *mq;
1945 u8 is_ct;
1946
1947 s = vcl_session_get_w_handle (wrk, session_handle);
1948 if (PREDICT_FALSE (!s || s->is_vep))
1949 return VPPCOM_EBADFD;
1950
Florin Coras6d0106e2019-01-29 20:11:58 -08001951 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1952 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001953
1954 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1955 is_ct = vcl_session_is_ct (s);
1956 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1957 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001958 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001959
Florin Coras653e43f2019-03-04 10:56:23 -08001960 if (is_ct)
1961 svm_fifo_unset_event (s->rx_fifo);
1962
Sirshak Das28aa5392019-02-05 01:33:33 -06001963 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001964 {
1965 if (is_nonblocking)
1966 {
1967 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001968 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001969 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001970 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001971 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001972 if (vcl_session_is_closing (s))
1973 return vcl_session_closing_error (s);
1974
Florin Coras2cba8532018-09-11 16:33:36 -07001975 svm_fifo_unset_event (rx_fifo);
1976 svm_msg_q_lock (mq);
1977 if (svm_msg_q_is_empty (mq))
1978 svm_msg_q_wait (mq);
1979
1980 svm_msg_q_sub_w_lock (mq, &msg);
1981 e = svm_msg_q_msg_data (mq, &msg);
1982 svm_msg_q_unlock (mq);
1983 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001984 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001985 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001986 }
1987 }
1988
Florin Corasd1cc38d2020-10-11 11:05:04 -07001989 n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
1990 (svm_fifo_seg_t *) ds, n_segments, max_bytes);
1991 if (n_read < 0)
1992 return VPPCOM_EAGAIN;
1993
1994 if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
1995 {
1996 svm_fifo_unset_event (s->rx_fifo);
1997 if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
1998 && svm_fifo_set_event (s->rx_fifo)
1999 && VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK))
2000 {
2001 session_event_t *e;
2002 vec_add2 (wrk->unhandled_evts_vector, e, 1);
2003 e->event_type = SESSION_IO_EVT_RX;
2004 e->session_index = s->session_index;
2005 }
2006 }
2007
2008 s->rx_bytes_pending += n_read;
Florin Coras2cba8532018-09-11 16:33:36 -07002009 return n_read;
2010}
2011
2012void
Florin Corasd68faf82020-09-25 15:18:13 -07002013vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
Florin Coras2cba8532018-09-11 16:33:36 -07002014{
2015 vcl_worker_t *wrk = vcl_worker_get_current ();
2016 vcl_session_t *s;
2017
2018 s = vcl_session_get_w_handle (wrk, session_handle);
2019 if (PREDICT_FALSE (!s || s->is_vep))
2020 return;
2021
Florin Corasd68faf82020-09-25 15:18:13 -07002022 svm_fifo_dequeue_drop (s->rx_fifo, n_bytes);
Florin Corasd1cc38d2020-10-11 11:05:04 -07002023
2024 ASSERT (s->rx_bytes_pending < n_bytes);
2025 s->rx_bytes_pending -= n_bytes;
Florin Coras2cba8532018-09-11 16:33:36 -07002026}
2027
Florin Coras54693d22018-07-17 10:46:29 -07002028static u8
2029vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2030{
Florin Corasc0737e92019-03-04 14:19:39 -08002031 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04002032}
2033
Florin Coras7a2abce2020-04-05 19:25:44 +00002034always_inline u8
2035vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002036{
Florin Coras7a2abce2020-04-05 19:25:44 +00002037 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2038 if (is_dgram)
2039 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2040 else
2041 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002042}
2043
2044always_inline int
2045vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2046 size_t n, u8 is_flush, u8 is_dgram)
2047{
Florin Coras6d0106e2019-01-29 20:11:58 -08002048 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002049 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07002050 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08002051 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002052 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07002053 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002054 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002055
jiangxiaomingff31ac62019-11-21 23:34:56 +08002056 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002057 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002058
Florin Coras460dce62018-07-27 05:45:06 -07002059 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002060 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002061 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2062 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002063 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002064 }
2065
Florin Coras6d0106e2019-01-29 20:11:58 -08002066 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002067 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002068 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2069 s->session_index, s->vpp_handle, s->session_state,
2070 vppcom_session_state_str (s->session_state));
2071 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002072 }
2073
Florin Coras0e88e852018-09-17 22:09:02 -07002074 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002075 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002076 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002077
Florin Coras653e43f2019-03-04 10:56:23 -08002078 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002079 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002080 {
Florin Coras54693d22018-07-17 10:46:29 -07002081 if (is_nonblocking)
2082 {
Florin Coras070453d2018-08-24 17:04:27 -07002083 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002084 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002085 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002086 {
Florin Coras2d379d82019-06-28 12:45:12 -07002087 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002088 if (vcl_session_is_closing (s))
2089 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002090 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002091 if (svm_msg_q_is_empty (mq))
2092 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002093
Florin Coras54693d22018-07-17 10:46:29 -07002094 svm_msg_q_sub_w_lock (mq, &msg);
2095 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002096 svm_msg_q_unlock (mq);
2097
Florin Coras0e88e852018-09-17 22:09:02 -07002098 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002099 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002100 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002101 }
Dave Wallace543852a2017-08-03 02:11:34 -04002102 }
Dave Wallace543852a2017-08-03 02:11:34 -04002103
Florin Coras653e43f2019-03-04 10:56:23 -08002104 et = SESSION_IO_EVT_TX;
2105 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002106 et = SESSION_IO_EVT_TX_FLUSH;
2107
Florin Coras7a2abce2020-04-05 19:25:44 +00002108 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002109 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002110 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002111 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002112 else
2113 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002114 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002115
Florin Coras14ed6df2019-03-06 21:13:42 -08002116 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002117 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2118 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002119
Florin Coras56230092020-09-02 20:52:58 -07002120 /* The underlying fifo segment can run out of memory */
2121 if (PREDICT_FALSE (n_write < 0))
2122 return VPPCOM_EAGAIN;
Dave Wallace543852a2017-08-03 02:11:34 -04002123
Florin Coras6d0106e2019-01-29 20:11:58 -08002124 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2125 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002126
Florin Coras54693d22018-07-17 10:46:29 -07002127 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002128}
2129
Florin Coras42ceddb2018-12-12 10:56:01 -08002130int
2131vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2132{
Florin Coras7a2abce2020-04-05 19:25:44 +00002133 vcl_worker_t *wrk = vcl_worker_get_current ();
2134 vcl_session_t *s;
2135
2136 s = vcl_session_get_w_handle (wrk, session_handle);
2137 if (PREDICT_FALSE (!s))
2138 return VPPCOM_EBADFD;
2139
2140 return vppcom_session_write_inline (wrk, s, buf, n,
2141 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002142}
2143
Florin Corasb0f662f2018-12-27 14:51:46 -08002144int
2145vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2146{
Florin Coras7a2abce2020-04-05 19:25:44 +00002147 vcl_worker_t *wrk = vcl_worker_get_current ();
2148 vcl_session_t *s;
2149
2150 s = vcl_session_get_w_handle (wrk, session_handle);
2151 if (PREDICT_FALSE (!s))
2152 return VPPCOM_EBADFD;
2153
2154 return vppcom_session_write_inline (wrk, s, buf, n,
2155 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002156}
2157
Florin Corasc0737e92019-03-04 14:19:39 -08002158#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002159if (PREDICT_FALSE (!_s->rx_fifo)) \
2160 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002161if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2162 { \
2163 if (!vcl_session_is_ct (_s)) \
2164 { \
2165 svm_fifo_unset_event (_s->rx_fifo); \
2166 if (svm_fifo_is_empty (_s->rx_fifo)) \
2167 break; \
2168 } \
2169 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2170 { \
Florin Coras2f630182020-08-13 00:17:51 -07002171 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002172 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2173 break; \
2174 } \
2175 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002176
Florin Coras86f04502018-09-12 16:08:01 -07002177static void
2178vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2179 unsigned long n_bits, unsigned long *read_map,
2180 unsigned long *write_map,
2181 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002182{
2183 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002184 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002185 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002186 u32 sid;
2187
2188 switch (e->event_type)
2189 {
Florin Corasc0737e92019-03-04 14:19:39 -08002190 case SESSION_IO_EVT_RX:
2191 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002192 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002193 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002194 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002195 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002196 if (sid < n_bits && read_map)
2197 {
David Johnsond9818dd2018-12-14 14:53:41 -05002198 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002199 *bits_set += 1;
2200 }
2201 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002202 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002203 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002204 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002205 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002206 break;
2207 if (sid < n_bits && write_map)
2208 {
David Johnsond9818dd2018-12-14 14:53:41 -05002209 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002210 *bits_set += 1;
2211 }
2212 break;
Florin Coras86f04502018-09-12 16:08:01 -07002213 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002214 session = vcl_session_accepted (wrk,
2215 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002216 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002217 break;
Florin Coras86f04502018-09-12 16:08:01 -07002218 sid = session->session_index;
2219 if (sid < n_bits && read_map)
2220 {
David Johnsond9818dd2018-12-14 14:53:41 -05002221 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002222 *bits_set += 1;
2223 }
2224 break;
2225 case SESSION_CTRL_EVT_CONNECTED:
2226 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002227 sid = vcl_session_connected_handler (wrk, connected_msg);
2228 if (sid == VCL_INVALID_SESSION_INDEX)
2229 break;
2230 if (sid < n_bits && write_map)
2231 {
2232 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2233 *bits_set += 1;
2234 }
Florin Coras86f04502018-09-12 16:08:01 -07002235 break;
2236 case SESSION_CTRL_EVT_DISCONNECTED:
2237 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002238 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2239 if (!session)
2240 break;
2241 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002242 if (sid < n_bits && except_map)
2243 {
David Johnsond9818dd2018-12-14 14:53:41 -05002244 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002245 *bits_set += 1;
2246 }
2247 break;
2248 case SESSION_CTRL_EVT_RESET:
2249 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2250 if (sid < n_bits && except_map)
2251 {
David Johnsond9818dd2018-12-14 14:53:41 -05002252 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002253 *bits_set += 1;
2254 }
2255 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002256 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2257 vcl_session_unlisten_reply_handler (wrk, e->data);
2258 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002259 case SESSION_CTRL_EVT_MIGRATED:
2260 vcl_session_migrated_handler (wrk, e->data);
2261 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002262 case SESSION_CTRL_EVT_CLEANUP:
2263 vcl_session_cleanup_handler (wrk, e->data);
2264 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002265 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2266 vcl_session_worker_update_reply_handler (wrk, e->data);
2267 break;
2268 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2269 vcl_session_req_worker_update_handler (wrk, e->data);
2270 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002271 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2272 vcl_session_app_add_segment_handler (wrk, e->data);
2273 break;
2274 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2275 vcl_session_app_del_segment_handler (wrk, e->data);
2276 break;
hanlina3a48962020-07-13 11:09:15 +08002277 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002278 vcl_worker_rpc_handler (wrk, e->data);
2279 break;
Florin Coras86f04502018-09-12 16:08:01 -07002280 default:
2281 clib_warning ("unhandled: %u", e->event_type);
2282 break;
2283 }
2284}
2285
2286static int
2287vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2288 unsigned long n_bits, unsigned long *read_map,
2289 unsigned long *write_map, unsigned long *except_map,
2290 double time_to_wait, u32 * bits_set)
2291{
Florin Coras99368312018-08-02 10:45:44 -07002292 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002293 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002294 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002295
2296 svm_msg_q_lock (mq);
2297 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002298 {
Florin Coras54693d22018-07-17 10:46:29 -07002299 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002300 {
Florin Coras54693d22018-07-17 10:46:29 -07002301 svm_msg_q_unlock (mq);
2302 return 0;
2303 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002304
Florin Coras54693d22018-07-17 10:46:29 -07002305 if (!time_to_wait)
2306 {
2307 svm_msg_q_unlock (mq);
2308 return 0;
2309 }
2310 else if (time_to_wait < 0)
2311 {
2312 svm_msg_q_wait (mq);
2313 }
2314 else
2315 {
2316 if (svm_msg_q_timedwait (mq, time_to_wait))
2317 {
2318 svm_msg_q_unlock (mq);
2319 return 0;
2320 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002321 }
2322 }
Florin Corase003a1b2019-06-05 10:47:16 -07002323 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002324 svm_msg_q_unlock (mq);
2325
Florin Coras134a9962018-08-28 11:32:04 -07002326 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002327 {
Florin Coras134a9962018-08-28 11:32:04 -07002328 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002329 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002330 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2331 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002332 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002333 }
Florin Coras134a9962018-08-28 11:32:04 -07002334 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002335 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002336 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002337}
2338
Florin Coras99368312018-08-02 10:45:44 -07002339static int
Florin Coras294afe22019-01-07 17:49:17 -08002340vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2341 vcl_si_set * read_map, vcl_si_set * write_map,
2342 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002343 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002344{
Florin Coras14ed6df2019-03-06 21:13:42 -08002345 double wait = 0, start = 0;
2346
2347 if (!*bits_set)
2348 {
2349 wait = time_to_wait;
2350 start = clib_time_now (&wrk->clib_time);
2351 }
2352
2353 do
2354 {
2355 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2356 write_map, except_map, wait, bits_set);
2357 if (*bits_set)
2358 return *bits_set;
2359 if (wait == -1)
2360 continue;
2361
2362 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2363 }
2364 while (wait > 0);
2365
2366 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002367}
2368
2369static int
Florin Coras294afe22019-01-07 17:49:17 -08002370vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2371 vcl_si_set * read_map, vcl_si_set * write_map,
2372 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002373 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002374{
2375 vcl_mq_evt_conn_t *mqc;
2376 int __clib_unused n_read;
2377 int n_mq_evts, i;
2378 u64 buf;
2379
Florin Coras134a9962018-08-28 11:32:04 -07002380 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2381 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2382 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002383 for (i = 0; i < n_mq_evts; i++)
2384 {
Florin Coras134a9962018-08-28 11:32:04 -07002385 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002386 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002387 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002388 except_map, 0, bits_set);
2389 }
2390
2391 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2392}
2393
Dave Wallace543852a2017-08-03 02:11:34 -04002394int
Florin Coras294afe22019-01-07 17:49:17 -08002395vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2396 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002397{
Florin Coras54693d22018-07-17 10:46:29 -07002398 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002399 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002400 vcl_session_t *session = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002401 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002402
Dave Wallace7876d392017-10-19 03:53:57 -04002403 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002404 {
Florin Coras134a9962018-08-28 11:32:04 -07002405 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002406 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002407 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2408 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002409 }
Dave Wallace7876d392017-10-19 03:53:57 -04002410 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002411 {
Florin Coras134a9962018-08-28 11:32:04 -07002412 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002413 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002414 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2415 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002416 }
Dave Wallace7876d392017-10-19 03:53:57 -04002417 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002418 {
Florin Coras134a9962018-08-28 11:32:04 -07002419 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002420 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002421 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2422 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002423 }
2424
Florin Coras54693d22018-07-17 10:46:29 -07002425 if (!n_bits)
2426 return 0;
2427
2428 if (!write_map)
2429 goto check_rd;
2430
2431 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002432 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2433 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002434 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002435 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2436 bits_set++;
2437 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002438 }
2439
Florin Coras5e6222a2020-04-24 17:09:25 +00002440 if (vcl_session_write_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002441 {
David Johnsond9818dd2018-12-14 14:53:41 -05002442 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002443 bits_set++;
2444 }
Florin Coras294afe22019-01-07 17:49:17 -08002445 else
Florin Coras2d379d82019-06-28 12:45:12 -07002446 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002447 }));
2448
2449check_rd:
2450 if (!read_map)
2451 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002452
Florin Coras134a9962018-08-28 11:32:04 -07002453 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2454 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002455 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002456 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2457 bits_set++;
2458 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002459 }
2460
Florin Coras5e6222a2020-04-24 17:09:25 +00002461 if (vcl_session_read_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002462 {
David Johnsond9818dd2018-12-14 14:53:41 -05002463 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002464 bits_set++;
2465 }
2466 }));
2467 /* *INDENT-ON* */
2468
2469check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002470
Florin Coras86f04502018-09-12 16:08:01 -07002471 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2472 {
2473 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2474 read_map, write_map, except_map, &bits_set);
2475 }
2476 vec_reset_length (wrk->unhandled_evts_vector);
2477
Florin Coras99368312018-08-02 10:45:44 -07002478 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002479 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002480 time_to_wait, &bits_set);
2481 else
Florin Coras134a9962018-08-28 11:32:04 -07002482 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002483 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002484
Dave Wallace543852a2017-08-03 02:11:34 -04002485 return (bits_set);
2486}
2487
Dave Wallacef7f809c2017-10-03 01:48:42 -04002488static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002489vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002490{
Florin Coras7e12d942018-06-27 14:32:43 -07002491 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002492 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002493 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002494
Florin Corasc0737e92019-03-04 14:19:39 -08002495 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002496 return;
2497
Florin Coras7e5e62b2019-07-30 14:08:23 -07002498 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002499 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002500 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002501 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002502 goto done;
2503 }
2504 if (PREDICT_FALSE (!session->is_vep))
2505 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002506 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002507 goto done;
2508 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002509 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002510 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002511 "{\n"
2512 " is_vep = %u\n"
2513 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002514 " next_sh = 0x%x (%u)\n"
2515 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002516 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002517
Florin Coras7e5e62b2019-07-30 14:08:23 -07002518 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002519 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002520 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002521 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002522 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002523 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002524 goto done;
2525 }
2526 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002527 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002528 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002529 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002530 else if (PREDICT_FALSE (!session->is_vep_session))
2531 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002532 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002533 goto done;
2534 }
2535 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002536 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2537 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2538 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002539 if (session->is_vep_session)
2540 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002541 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002542 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002543 " next_sh = 0x%x (%u)\n"
2544 " prev_sh = 0x%x (%u)\n"
2545 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002546 " ev.events = 0x%x\n"
2547 " ev.data.u64 = 0x%llx\n"
2548 " et_mask = 0x%x\n"
2549 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002550 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002551 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2552 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002553 }
2554 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002555
2556done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002557 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002558}
2559
2560int
2561vppcom_epoll_create (void)
2562{
Florin Coras134a9962018-08-28 11:32:04 -07002563 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002564 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002565
Florin Coras134a9962018-08-28 11:32:04 -07002566 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002567
2568 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002569 vep_session->vep.vep_sh = ~0;
2570 vep_session->vep.next_sh = ~0;
2571 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002572 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002573
Florin Corasa7a1a222018-12-30 17:11:31 -08002574 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2575 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002576
Florin Corasab2f6db2018-08-31 14:31:41 -07002577 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002578}
2579
2580int
Florin Coras134a9962018-08-28 11:32:04 -07002581vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002582 struct epoll_event *event)
2583{
Florin Coras134a9962018-08-28 11:32:04 -07002584 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002585 vcl_session_t *vep_session;
Florin Coras070453d2018-08-24 17:04:27 -07002586 int rv = VPPCOM_OK;
Florin Coras17ec5772020-08-12 20:46:29 -07002587 vcl_session_t *s;
2588 svm_fifo_t *txf;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002589
Florin Coras134a9962018-08-28 11:32:04 -07002590 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002592 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002593 return VPPCOM_EINVAL;
2594 }
2595
Florin Coras134a9962018-08-28 11:32:04 -07002596 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002597 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002598 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002599 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002600 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002601 }
2602 if (PREDICT_FALSE (!vep_session->is_vep))
2603 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002604 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002605 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002606 }
2607
Florin Coras134a9962018-08-28 11:32:04 -07002608 ASSERT (vep_session->vep.vep_sh == ~0);
2609 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002610
Florin Coras17ec5772020-08-12 20:46:29 -07002611 s = vcl_session_get_w_handle (wrk, session_handle);
2612 if (PREDICT_FALSE (!s))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002613 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002614 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002615 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002616 }
Florin Coras17ec5772020-08-12 20:46:29 -07002617 if (PREDICT_FALSE (s->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002618 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002619 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002620 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002621 }
2622
2623 switch (op)
2624 {
2625 case EPOLL_CTL_ADD:
2626 if (PREDICT_FALSE (!event))
2627 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002628 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002629 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002630 }
Florin Coras134a9962018-08-28 11:32:04 -07002631 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002632 {
Florin Coras7e12d942018-06-27 14:32:43 -07002633 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002634 next_session = vcl_session_get_w_handle (wrk,
2635 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002636 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002637 {
Florin Coras5e062572019-03-14 19:07:51 -07002638 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002639 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002640 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002641 }
Florin Coras134a9962018-08-28 11:32:04 -07002642 ASSERT (next_session->vep.prev_sh == vep_handle);
2643 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002644 }
Florin Coras17ec5772020-08-12 20:46:29 -07002645 s->vep.next_sh = vep_session->vep.next_sh;
2646 s->vep.prev_sh = vep_handle;
2647 s->vep.vep_sh = vep_handle;
2648 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2649 s->vep.ev = *event;
2650 s->is_vep = 0;
2651 s->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002652 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002653
Florin Coras17ec5772020-08-12 20:46:29 -07002654 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2655 if (txf && (event->events & EPOLLOUT))
2656 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002657
Florin Coras6e3c1f82020-01-15 01:30:46 +00002658 /* Generate EPOLLOUT if tx fifo not full */
Florin Coras17ec5772020-08-12 20:46:29 -07002659 if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002660 {
2661 session_event_t e = { 0 };
2662 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002663 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002664 vec_add1 (wrk->unhandled_evts_vector, e);
2665 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002666 /* Generate EPOLLIN if rx fifo has data */
Florin Coras17ec5772020-08-12 20:46:29 -07002667 if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
Florin Coras6e3c1f82020-01-15 01:30:46 +00002668 {
2669 session_event_t e = { 0 };
2670 e.event_type = SESSION_IO_EVT_RX;
Florin Coras17ec5772020-08-12 20:46:29 -07002671 e.session_index = s->session_index;
Florin Coras6e3c1f82020-01-15 01:30:46 +00002672 vec_add1 (wrk->unhandled_evts_vector, e);
2673 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002674 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2675 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras17ec5772020-08-12 20:46:29 -07002676 vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002677 break;
2678
2679 case EPOLL_CTL_MOD:
2680 if (PREDICT_FALSE (!event))
2681 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002682 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002683 rv = VPPCOM_EINVAL;
2684 goto done;
2685 }
Florin Coras17ec5772020-08-12 20:46:29 -07002686 else if (PREDICT_FALSE (!s->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002687 {
Florin Coras5e062572019-03-14 19:07:51 -07002688 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002689 rv = VPPCOM_EINVAL;
2690 goto done;
2691 }
Florin Coras17ec5772020-08-12 20:46:29 -07002692 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002693 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002694 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002695 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002696 rv = VPPCOM_EINVAL;
2697 goto done;
2698 }
hanlin475c9d72019-12-26 11:44:28 +08002699
2700 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2701 if ((event->events & EPOLLOUT) &&
Florin Coras17ec5772020-08-12 20:46:29 -07002702 !(s->vep.ev.events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
hanlin475c9d72019-12-26 11:44:28 +08002703 {
2704 session_event_t e = { 0 };
2705 e.event_type = SESSION_IO_EVT_TX;
Florin Coras17ec5772020-08-12 20:46:29 -07002706 e.session_index = s->session_index;
hanlin475c9d72019-12-26 11:44:28 +08002707 vec_add1 (wrk->unhandled_evts_vector, e);
2708 }
Florin Coras17ec5772020-08-12 20:46:29 -07002709 s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2710 s->vep.ev = *event;
2711 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2712 if (event->events & EPOLLOUT)
2713 svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2714 else
2715 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Corasa7a1a222018-12-30 17:11:31 -08002716 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2717 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002718 break;
2719
2720 case EPOLL_CTL_DEL:
Florin Coras17ec5772020-08-12 20:46:29 -07002721 if (PREDICT_FALSE (!s->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002722 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002723 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002724 rv = VPPCOM_EINVAL;
2725 goto done;
2726 }
Florin Coras17ec5772020-08-12 20:46:29 -07002727 else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002728 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002729 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002730 session_handle, s->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002731 rv = VPPCOM_EINVAL;
2732 goto done;
2733 }
2734
Florin Coras17ec5772020-08-12 20:46:29 -07002735 if (s->vep.prev_sh == vep_handle)
2736 vep_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002737 else
2738 {
Florin Coras7e12d942018-06-27 14:32:43 -07002739 vcl_session_t *prev_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002740 prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002741 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002742 {
Florin Coras5e062572019-03-14 19:07:51 -07002743 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002744 s->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002745 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002746 }
Florin Coras134a9962018-08-28 11:32:04 -07002747 ASSERT (prev_session->vep.next_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002748 prev_session->vep.next_sh = s->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002749 }
Florin Coras17ec5772020-08-12 20:46:29 -07002750 if (s->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002751 {
Florin Coras7e12d942018-06-27 14:32:43 -07002752 vcl_session_t *next_session;
Florin Coras17ec5772020-08-12 20:46:29 -07002753 next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002754 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002755 {
Florin Coras5e062572019-03-14 19:07:51 -07002756 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Coras17ec5772020-08-12 20:46:29 -07002757 s->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002758 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002759 }
Florin Coras134a9962018-08-28 11:32:04 -07002760 ASSERT (next_session->vep.prev_sh == session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002761 next_session->vep.prev_sh = s->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002762 }
2763
Florin Coras17ec5772020-08-12 20:46:29 -07002764 memset (&s->vep, 0, sizeof (s->vep));
2765 s->vep.next_sh = ~0;
2766 s->vep.prev_sh = ~0;
2767 s->vep.vep_sh = ~0;
2768 s->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002769
Florin Coras17ec5772020-08-12 20:46:29 -07002770 txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2771 if (txf)
2772 svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002773
Florin Coras5e062572019-03-14 19:07:51 -07002774 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002775 session_handle);
Florin Coras17ec5772020-08-12 20:46:29 -07002776 vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002777 break;
2778
2779 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002780 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002781 rv = VPPCOM_EINVAL;
2782 }
2783
Florin Coras134a9962018-08-28 11:32:04 -07002784 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002785
2786done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002787 return rv;
2788}
2789
Florin Coras86f04502018-09-12 16:08:01 -07002790static inline void
2791vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2792 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002793{
2794 session_disconnected_msg_t *disconnected_msg;
2795 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002796 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002797 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002798 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002799 u8 add_event = 0;
2800
2801 switch (e->event_type)
2802 {
Florin Coras653e43f2019-03-04 10:56:23 -08002803 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002804 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002805 session = vcl_session_get (wrk, sid);
2806 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002807 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002808 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002809 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002810 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002811 break;
2812 add_event = 1;
2813 events[*num_ev].events |= EPOLLIN;
2814 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002815 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002816 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002817 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002818 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002819 session = vcl_session_get (wrk, sid);
2820 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002821 break;
Florin Coras86f04502018-09-12 16:08:01 -07002822 session_events = session->vep.ev.events;
2823 if (!(EPOLLOUT & session_events))
2824 break;
2825 add_event = 1;
2826 events[*num_ev].events |= EPOLLOUT;
2827 session_evt_data = session->vep.ev.data.u64;
Florin Coras17ec5772020-08-12 20:46:29 -07002828 svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (session) ?
2829 session->ct_tx_fifo : session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002830 break;
Florin Coras86f04502018-09-12 16:08:01 -07002831 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002832 session = vcl_session_accepted (wrk,
2833 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002834 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002835 break;
Florin Coras86f04502018-09-12 16:08:01 -07002836
Florin Coras86f04502018-09-12 16:08:01 -07002837 session_events = session->vep.ev.events;
2838 if (!(EPOLLIN & session_events))
2839 break;
2840
2841 add_event = 1;
2842 events[*num_ev].events |= EPOLLIN;
2843 session_evt_data = session->vep.ev.data.u64;
2844 break;
2845 case SESSION_CTRL_EVT_CONNECTED:
2846 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002847 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002848 /* Generate EPOLLOUT because there's no connected event */
Florin Coras080aa502020-05-26 00:47:52 +00002849 session = vcl_session_get (wrk, sid);
2850 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002851 break;
Florin Coras86f04502018-09-12 16:08:01 -07002852 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002853 if (!(EPOLLOUT & session_events))
2854 break;
2855 add_event = 1;
2856 events[*num_ev].events |= EPOLLOUT;
2857 session_evt_data = session->vep.ev.data.u64;
Florin Corasadcfb152020-02-12 08:50:29 +00002858 if (session->session_state & STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002859 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002860 break;
2861 case SESSION_CTRL_EVT_DISCONNECTED:
2862 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002863 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Coras080aa502020-05-26 00:47:52 +00002864 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002865 break;
Florin Coras72f77822019-01-22 19:05:52 -08002866 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002867 add_event = 1;
2868 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2869 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002870 break;
2871 case SESSION_CTRL_EVT_RESET:
2872 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras080aa502020-05-26 00:47:52 +00002873 session = vcl_session_get (wrk, sid);
2874 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002875 break;
Florin Coras72f77822019-01-22 19:05:52 -08002876 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002877 add_event = 1;
2878 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2879 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002880 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002881 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2882 vcl_session_unlisten_reply_handler (wrk, e->data);
2883 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002884 case SESSION_CTRL_EVT_MIGRATED:
2885 vcl_session_migrated_handler (wrk, e->data);
2886 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002887 case SESSION_CTRL_EVT_CLEANUP:
2888 vcl_session_cleanup_handler (wrk, e->data);
2889 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002890 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2891 vcl_session_req_worker_update_handler (wrk, e->data);
2892 break;
2893 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2894 vcl_session_worker_update_reply_handler (wrk, e->data);
2895 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002896 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2897 vcl_session_app_add_segment_handler (wrk, e->data);
2898 break;
2899 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2900 vcl_session_app_del_segment_handler (wrk, e->data);
2901 break;
hanlina3a48962020-07-13 11:09:15 +08002902 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002903 vcl_worker_rpc_handler (wrk, e->data);
2904 break;
Florin Coras86f04502018-09-12 16:08:01 -07002905 default:
2906 VDBG (0, "unhandled: %u", e->event_type);
2907 break;
2908 }
2909
2910 if (add_event)
2911 {
2912 events[*num_ev].data.u64 = session_evt_data;
2913 if (EPOLLONESHOT & session_events)
2914 {
2915 session = vcl_session_get (wrk, sid);
2916 session->vep.ev.events = 0;
2917 }
2918 *num_ev += 1;
2919 }
2920}
2921
2922static int
2923vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2924 struct epoll_event *events, u32 maxevents,
2925 double wait_for_time, u32 * num_ev)
2926{
Florin Coras99368312018-08-02 10:45:44 -07002927 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002928 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002929 int i;
2930
Florin Coras539663c2018-09-28 14:59:37 -07002931 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2932 goto handle_dequeued;
2933
Florin Coras54693d22018-07-17 10:46:29 -07002934 svm_msg_q_lock (mq);
2935 if (svm_msg_q_is_empty (mq))
2936 {
2937 if (!wait_for_time)
2938 {
2939 svm_msg_q_unlock (mq);
2940 return 0;
2941 }
2942 else if (wait_for_time < 0)
2943 {
2944 svm_msg_q_wait (mq);
2945 }
2946 else
2947 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002948 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002949 {
2950 svm_msg_q_unlock (mq);
2951 return 0;
2952 }
2953 }
2954 }
Florin Corase003a1b2019-06-05 10:47:16 -07002955 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08002956 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002957 svm_msg_q_unlock (mq);
2958
Florin Coras539663c2018-09-28 14:59:37 -07002959handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002960 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002961 {
Florin Coras134a9962018-08-28 11:32:04 -07002962 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002963 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08002964 if (*num_ev < maxevents)
2965 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2966 else
2967 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07002968 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002969 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002970 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002971 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002972 return *num_ev;
2973}
2974
Florin Coras99368312018-08-02 10:45:44 -07002975static int
Florin Coras134a9962018-08-28 11:32:04 -07002976vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002977 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002978{
Florin Corase003a1b2019-06-05 10:47:16 -07002979 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002980
2981 if (!n_evts)
2982 {
2983 wait = wait_for_time;
2984 start = clib_time_now (&wrk->clib_time);
2985 }
2986
2987 do
2988 {
2989 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2990 wait, &n_evts);
2991 if (n_evts)
2992 return n_evts;
2993 if (wait == -1)
2994 continue;
2995
Florin Corase003a1b2019-06-05 10:47:16 -07002996 now = clib_time_now (&wrk->clib_time);
Florin Coras0edfb1a2020-08-04 22:45:45 -07002997 wait -= (now - start) * 1e3;
Florin Corase003a1b2019-06-05 10:47:16 -07002998 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002999 }
3000 while (wait > 0);
3001
3002 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003003}
3004
3005static int
Florin Coras134a9962018-08-28 11:32:04 -07003006vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07003007 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07003008{
3009 vcl_mq_evt_conn_t *mqc;
3010 int __clib_unused n_read;
3011 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07003012 u64 buf;
3013
Florin Coras134a9962018-08-28 11:32:04 -07003014 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07003015again:
Florin Coras134a9962018-08-28 11:32:04 -07003016 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
3017 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07003018 for (i = 0; i < n_mq_evts; i++)
3019 {
Florin Coras134a9962018-08-28 11:32:04 -07003020 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07003021 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07003022 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07003023 }
Florin Corasa4878ed2018-10-12 13:09:36 -07003024 if (!n_evts && n_mq_evts > 0)
3025 goto again;
Florin Coras99368312018-08-02 10:45:44 -07003026
3027 return (int) n_evts;
3028}
3029
Dave Wallacef7f809c2017-10-03 01:48:42 -04003030int
Florin Coras134a9962018-08-28 11:32:04 -07003031vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003032 int maxevents, double wait_for_time)
3033{
Florin Coras134a9962018-08-28 11:32:04 -07003034 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003035 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07003036 u32 n_evts = 0;
3037 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003038
3039 if (PREDICT_FALSE (maxevents <= 0))
3040 {
Florin Coras5e062572019-03-14 19:07:51 -07003041 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003042 return VPPCOM_EINVAL;
3043 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003044
Florin Coras134a9962018-08-28 11:32:04 -07003045 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003046 if (!vep_session)
3047 return VPPCOM_EBADFD;
3048
Florin Coras54693d22018-07-17 10:46:29 -07003049 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003050 {
Florin Coras5e062572019-03-14 19:07:51 -07003051 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003052 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003053 }
Florin Coras54693d22018-07-17 10:46:29 -07003054
3055 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003056
Florin Coras86f04502018-09-12 16:08:01 -07003057 if (vec_len (wrk->unhandled_evts_vector))
3058 {
3059 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3060 {
3061 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3062 events, &n_evts);
3063 if (n_evts == maxevents)
3064 {
Florin Corase003a1b2019-06-05 10:47:16 -07003065 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3066 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003067 }
3068 }
Florin Corase003a1b2019-06-05 10:47:16 -07003069 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003070 }
3071
3072 if (vcm->cfg.use_mq_eventfd)
3073 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3074 wait_for_time);
3075
3076 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3077 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003078}
3079
Dave Wallace35830af2017-10-09 01:43:42 -04003080int
Florin Coras134a9962018-08-28 11:32:04 -07003081vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003082 void *buffer, uint32_t * buflen)
3083{
Florin Coras134a9962018-08-28 11:32:04 -07003084 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003085 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04003086 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08003087 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003088 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04003089
Florin Coras134a9962018-08-28 11:32:04 -07003090 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003091 if (!session)
3092 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003093
Dave Wallace35830af2017-10-09 01:43:42 -04003094 switch (op)
3095 {
3096 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003097 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003098 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3099 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003100 break;
3101
Dave Wallace227867f2017-11-13 21:21:53 -05003102 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003103 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003104 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3105 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003106 break;
3107
3108 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003109 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003110 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003111 *flags =
3112 O_RDWR |
3113 (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK) ?
3114 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003115 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003116 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3117 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003118 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003119 }
3120 else
3121 rv = VPPCOM_EINVAL;
3122 break;
3123
3124 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003125 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003126 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003127 if (*flags & O_NONBLOCK)
3128 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3129 else
3130 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3131
Florin Coras5e062572019-03-14 19:07:51 -07003132 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3133 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003134 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003135 }
3136 else
3137 rv = VPPCOM_EINVAL;
3138 break;
3139
3140 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003141 if (PREDICT_TRUE (buffer && buflen &&
3142 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003143 {
Florin Coras7e12d942018-06-27 14:32:43 -07003144 ep->is_ip4 = session->transport.is_ip4;
3145 ep->port = session->transport.rmt_port;
3146 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003147 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3148 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003149 else
Dave Barach178cf492018-11-13 16:34:13 -05003150 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3151 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003152 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003153 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3154 "addr = %U, port %u", session_handle, ep->is_ip4,
3155 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003156 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3157 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003158 }
3159 else
3160 rv = VPPCOM_EINVAL;
3161 break;
3162
3163 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003164 if (PREDICT_TRUE (buffer && buflen &&
3165 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003166 {
Florin Coras7e12d942018-06-27 14:32:43 -07003167 ep->is_ip4 = session->transport.is_ip4;
3168 ep->port = session->transport.lcl_port;
3169 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003170 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3171 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003172 else
Dave Barach178cf492018-11-13 16:34:13 -05003173 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3174 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003175 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003176 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3177 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003178 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003179 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3180 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003181 }
3182 else
3183 rv = VPPCOM_EINVAL;
3184 break;
Stevenb5a11602017-10-11 09:59:30 -07003185
Florin Corasef7cbf62019-10-17 09:56:27 -07003186 case VPPCOM_ATTR_SET_LCL_ADDR:
3187 if (PREDICT_TRUE (buffer && buflen &&
3188 (*buflen >= sizeof (*ep)) && ep->ip))
3189 {
3190 session->transport.is_ip4 = ep->is_ip4;
3191 session->transport.lcl_port = ep->port;
3192 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3193 *buflen = sizeof (*ep);
3194 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3195 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3196 &session->transport.lcl_ip,
3197 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3198 clib_net_to_host_u16 (ep->port));
3199 }
3200 else
3201 rv = VPPCOM_EINVAL;
3202 break;
3203
Dave Wallace048b1d62018-01-03 22:24:41 -05003204 case VPPCOM_ATTR_GET_LIBC_EPFD:
3205 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003206 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003207 break;
3208
3209 case VPPCOM_ATTR_SET_LIBC_EPFD:
3210 if (PREDICT_TRUE (buffer && buflen &&
3211 (*buflen == sizeof (session->libc_epfd))))
3212 {
3213 session->libc_epfd = *(int *) buffer;
3214 *buflen = sizeof (session->libc_epfd);
3215
Florin Coras5e062572019-03-14 19:07:51 -07003216 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3217 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003218 }
3219 else
3220 rv = VPPCOM_EINVAL;
3221 break;
3222
3223 case VPPCOM_ATTR_GET_PROTOCOL:
3224 if (buffer && buflen && (*buflen >= sizeof (int)))
3225 {
Florin Coras7e12d942018-06-27 14:32:43 -07003226 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003227 *buflen = sizeof (int);
3228
Florin Coras5e062572019-03-14 19:07:51 -07003229 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3230 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003231 }
3232 else
3233 rv = VPPCOM_EINVAL;
3234 break;
3235
3236 case VPPCOM_ATTR_GET_LISTEN:
3237 if (buffer && buflen && (*buflen >= sizeof (int)))
3238 {
3239 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3240 VCL_SESS_ATTR_LISTEN);
3241 *buflen = sizeof (int);
3242
Florin Coras5e062572019-03-14 19:07:51 -07003243 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3244 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003245 }
3246 else
3247 rv = VPPCOM_EINVAL;
3248 break;
3249
3250 case VPPCOM_ATTR_GET_ERROR:
3251 if (buffer && buflen && (*buflen >= sizeof (int)))
3252 {
3253 *(int *) buffer = 0;
3254 *buflen = sizeof (int);
3255
Florin Coras5e062572019-03-14 19:07:51 -07003256 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3257 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003258 }
3259 else
3260 rv = VPPCOM_EINVAL;
3261 break;
3262
3263 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3264 if (buffer && buflen && (*buflen >= sizeof (u32)))
3265 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003266
3267 /* VPP-TBD */
3268 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003269 session->tx_fifo ?
3270 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003271 vcm->cfg.tx_fifo_size);
3272 *buflen = sizeof (u32);
3273
Florin Coras5e062572019-03-14 19:07:51 -07003274 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3275 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3276 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003277 }
3278 else
3279 rv = VPPCOM_EINVAL;
3280 break;
3281
3282 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3283 if (buffer && buflen && (*buflen == sizeof (u32)))
3284 {
3285 /* VPP-TBD */
3286 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003287 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3288 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3289 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003290 }
3291 else
3292 rv = VPPCOM_EINVAL;
3293 break;
3294
3295 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3296 if (buffer && buflen && (*buflen >= sizeof (u32)))
3297 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003298
3299 /* VPP-TBD */
3300 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003301 session->rx_fifo ?
3302 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003303 vcm->cfg.rx_fifo_size);
3304 *buflen = sizeof (u32);
3305
Florin Coras5e062572019-03-14 19:07:51 -07003306 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3307 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003308 }
3309 else
3310 rv = VPPCOM_EINVAL;
3311 break;
3312
3313 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3314 if (buffer && buflen && (*buflen == sizeof (u32)))
3315 {
3316 /* VPP-TBD */
3317 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003318 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3319 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3320 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003321 }
3322 else
3323 rv = VPPCOM_EINVAL;
3324 break;
3325
3326 case VPPCOM_ATTR_GET_REUSEADDR:
3327 if (buffer && buflen && (*buflen >= sizeof (int)))
3328 {
3329 /* VPP-TBD */
3330 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3331 VCL_SESS_ATTR_REUSEADDR);
3332 *buflen = sizeof (int);
3333
Florin Coras5e062572019-03-14 19:07:51 -07003334 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3335 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003336 }
3337 else
3338 rv = VPPCOM_EINVAL;
3339 break;
3340
Stevenb5a11602017-10-11 09:59:30 -07003341 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003342 if (buffer && buflen && (*buflen == sizeof (int)) &&
3343 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3344 {
3345 /* VPP-TBD */
3346 if (*(int *) buffer)
3347 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3348 else
3349 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3350
Florin Coras5e062572019-03-14 19:07:51 -07003351 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3352 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3353 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003354 }
3355 else
3356 rv = VPPCOM_EINVAL;
3357 break;
3358
3359 case VPPCOM_ATTR_GET_REUSEPORT:
3360 if (buffer && buflen && (*buflen >= sizeof (int)))
3361 {
3362 /* VPP-TBD */
3363 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3364 VCL_SESS_ATTR_REUSEPORT);
3365 *buflen = sizeof (int);
3366
Florin Coras5e062572019-03-14 19:07:51 -07003367 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3368 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003369 }
3370 else
3371 rv = VPPCOM_EINVAL;
3372 break;
3373
3374 case VPPCOM_ATTR_SET_REUSEPORT:
3375 if (buffer && buflen && (*buflen == sizeof (int)) &&
3376 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3377 {
3378 /* VPP-TBD */
3379 if (*(int *) buffer)
3380 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3381 else
3382 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3383
Florin Coras5e062572019-03-14 19:07:51 -07003384 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3385 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3386 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003387 }
3388 else
3389 rv = VPPCOM_EINVAL;
3390 break;
3391
3392 case VPPCOM_ATTR_GET_BROADCAST:
3393 if (buffer && buflen && (*buflen >= sizeof (int)))
3394 {
3395 /* VPP-TBD */
3396 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3397 VCL_SESS_ATTR_BROADCAST);
3398 *buflen = sizeof (int);
3399
Florin Coras5e062572019-03-14 19:07:51 -07003400 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3401 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003402 }
3403 else
3404 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003405 break;
3406
3407 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003408 if (buffer && buflen && (*buflen == sizeof (int)))
3409 {
3410 /* VPP-TBD */
3411 if (*(int *) buffer)
3412 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3413 else
3414 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3415
Florin Coras5e062572019-03-14 19:07:51 -07003416 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3417 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3418 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003419 }
3420 else
3421 rv = VPPCOM_EINVAL;
3422 break;
3423
3424 case VPPCOM_ATTR_GET_V6ONLY:
3425 if (buffer && buflen && (*buflen >= sizeof (int)))
3426 {
3427 /* VPP-TBD */
3428 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3429 VCL_SESS_ATTR_V6ONLY);
3430 *buflen = sizeof (int);
3431
Florin Coras5e062572019-03-14 19:07:51 -07003432 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3433 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003434 }
3435 else
3436 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003437 break;
3438
3439 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003440 if (buffer && buflen && (*buflen == sizeof (int)))
3441 {
3442 /* VPP-TBD */
3443 if (*(int *) buffer)
3444 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3445 else
3446 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3447
Florin Coras5e062572019-03-14 19:07:51 -07003448 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3449 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3450 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003451 }
3452 else
3453 rv = VPPCOM_EINVAL;
3454 break;
3455
3456 case VPPCOM_ATTR_GET_KEEPALIVE:
3457 if (buffer && buflen && (*buflen >= sizeof (int)))
3458 {
3459 /* VPP-TBD */
3460 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3461 VCL_SESS_ATTR_KEEPALIVE);
3462 *buflen = sizeof (int);
3463
Florin Coras5e062572019-03-14 19:07:51 -07003464 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3465 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003466 }
3467 else
3468 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003469 break;
Stevenbccd3392017-10-12 20:42:21 -07003470
3471 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003472 if (buffer && buflen && (*buflen == sizeof (int)))
3473 {
3474 /* VPP-TBD */
3475 if (*(int *) buffer)
3476 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3477 else
3478 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3479
Florin Coras5e062572019-03-14 19:07:51 -07003480 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3481 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3482 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003483 }
3484 else
3485 rv = VPPCOM_EINVAL;
3486 break;
3487
3488 case VPPCOM_ATTR_GET_TCP_NODELAY:
3489 if (buffer && buflen && (*buflen >= sizeof (int)))
3490 {
3491 /* VPP-TBD */
3492 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3493 VCL_SESS_ATTR_TCP_NODELAY);
3494 *buflen = sizeof (int);
3495
Florin Coras5e062572019-03-14 19:07:51 -07003496 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3497 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003498 }
3499 else
3500 rv = VPPCOM_EINVAL;
3501 break;
3502
3503 case VPPCOM_ATTR_SET_TCP_NODELAY:
3504 if (buffer && buflen && (*buflen == sizeof (int)))
3505 {
3506 /* VPP-TBD */
3507 if (*(int *) buffer)
3508 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3509 else
3510 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3511
Florin Coras5e062572019-03-14 19:07:51 -07003512 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3513 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3514 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003515 }
3516 else
3517 rv = VPPCOM_EINVAL;
3518 break;
3519
3520 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3521 if (buffer && buflen && (*buflen >= sizeof (int)))
3522 {
3523 /* VPP-TBD */
3524 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3525 VCL_SESS_ATTR_TCP_KEEPIDLE);
3526 *buflen = sizeof (int);
3527
Florin Coras5e062572019-03-14 19:07:51 -07003528 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3529 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003530 }
3531 else
3532 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003533 break;
3534
3535 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003536 if (buffer && buflen && (*buflen == sizeof (int)))
3537 {
3538 /* VPP-TBD */
3539 if (*(int *) buffer)
3540 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3541 else
3542 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3543
Florin Coras5e062572019-03-14 19:07:51 -07003544 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003545 VCL_SESS_ATTR_TEST (session->attr,
3546 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003547 }
3548 else
3549 rv = VPPCOM_EINVAL;
3550 break;
3551
3552 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3553 if (buffer && buflen && (*buflen >= sizeof (int)))
3554 {
3555 /* VPP-TBD */
3556 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3557 VCL_SESS_ATTR_TCP_KEEPINTVL);
3558 *buflen = sizeof (int);
3559
Florin Coras5e062572019-03-14 19:07:51 -07003560 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3561 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003562 }
3563 else
3564 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003565 break;
3566
3567 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003568 if (buffer && buflen && (*buflen == sizeof (int)))
3569 {
3570 /* VPP-TBD */
3571 if (*(int *) buffer)
3572 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3573 else
3574 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3575
Florin Coras5e062572019-03-14 19:07:51 -07003576 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003577 VCL_SESS_ATTR_TEST (session->attr,
3578 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003579 }
3580 else
3581 rv = VPPCOM_EINVAL;
3582 break;
3583
3584 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3585 if (buffer && buflen && (*buflen >= sizeof (u32)))
3586 {
3587 /* VPP-TBD */
3588 *(u32 *) buffer = session->user_mss;
3589 *buflen = sizeof (int);
3590
Florin Coras5e062572019-03-14 19:07:51 -07003591 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3592 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003593 }
3594 else
3595 rv = VPPCOM_EINVAL;
3596 break;
3597
3598 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3599 if (buffer && buflen && (*buflen == sizeof (u32)))
3600 {
3601 /* VPP-TBD */
3602 session->user_mss = *(u32 *) buffer;
3603
Florin Coras5e062572019-03-14 19:07:51 -07003604 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3605 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003606 }
3607 else
3608 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003609 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003610
Florin Coras7baeb712019-01-04 17:05:43 -08003611 case VPPCOM_ATTR_SET_SHUT:
3612 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3613 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3614 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3615 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3616 break;
3617
3618 case VPPCOM_ATTR_GET_SHUT:
3619 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3620 tmp_flags = 1;
3621 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3622 tmp_flags |= 2;
3623 if (tmp_flags == 1)
3624 *(int *) buffer = SHUT_RD;
3625 else if (tmp_flags == 2)
3626 *(int *) buffer = SHUT_WR;
3627 else if (tmp_flags == 3)
3628 *(int *) buffer = SHUT_RDWR;
3629 *buflen = sizeof (int);
3630 break;
Florin Coras1e966172020-05-16 18:18:14 +00003631
3632 case VPPCOM_ATTR_SET_CONNECTED:
3633 session->flags |= VCL_SESSION_F_CONNECTED;
3634 break;
3635
Dave Wallacee22aa742017-10-20 12:30:38 -04003636 default:
3637 rv = VPPCOM_EINVAL;
3638 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003639 }
3640
Dave Wallace35830af2017-10-09 01:43:42 -04003641 return rv;
3642}
3643
Stevenac1f96d2017-10-24 16:03:58 -07003644int
Florin Coras134a9962018-08-28 11:32:04 -07003645vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003646 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3647{
Florin Coras134a9962018-08-28 11:32:04 -07003648 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003649 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003650 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003651
3652 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003653 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003654 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003655 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003656 else
3657 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003658 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003659 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003660 }
3661
Florin Coras0a1e1832020-03-29 18:54:04 +00003662 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003663 {
Florin Coras5da10c42020-04-01 04:31:21 +00003664 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003665 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003666 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3667 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003668 else
Dave Barach178cf492018-11-13 16:34:13 -05003669 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3670 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003671 ep->is_ip4 = session->transport.is_ip4;
3672 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003673 }
Florin Coras460dce62018-07-27 05:45:06 -07003674
Stevenac1f96d2017-10-24 16:03:58 -07003675 return rv;
3676}
3677
3678int
Florin Coras134a9962018-08-28 11:32:04 -07003679vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003680 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3681{
Florin Coras7a2abce2020-04-05 19:25:44 +00003682 vcl_worker_t *wrk = vcl_worker_get_current ();
3683 vcl_session_t *s;
3684
3685 s = vcl_session_get_w_handle (wrk, session_handle);
3686 if (!s)
3687 return VPPCOM_EBADFD;
3688
Dave Wallace617dffa2017-10-26 14:47:06 -04003689 if (!buffer)
3690 return VPPCOM_EINVAL;
3691
3692 if (ep)
3693 {
Florin Coras0a1e1832020-03-29 18:54:04 +00003694 if (s->session_type != VPPCOM_PROTO_UDP
3695 || (s->flags & VCL_SESSION_F_CONNECTED))
Florin Coras5da10c42020-04-01 04:31:21 +00003696 return VPPCOM_EINVAL;
3697
3698 /* Session not connected/bound in vpp. Create it by 'connecting' it */
3699 if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3700 {
3701 vcl_send_session_connect (wrk, s);
3702 }
3703 else
3704 {
3705 s->transport.is_ip4 = ep->is_ip4;
3706 s->transport.rmt_port = ep->port;
3707 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3708 }
Dave Wallace617dffa2017-10-26 14:47:06 -04003709 }
3710
3711 if (flags)
3712 {
3713 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003714 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003715 }
3716
Florin Coras7a2abce2020-04-05 19:25:44 +00003717 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3718 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003719}
3720
Dave Wallace048b1d62018-01-03 22:24:41 -05003721int
3722vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3723{
Florin Coras134a9962018-08-28 11:32:04 -07003724 vcl_worker_t *wrk = vcl_worker_get_current ();
3725 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003726 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003727 svm_msg_q_msg_t msg;
3728 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003729 int rv, num_ev = 0;
3730
Florin Coras5e062572019-03-14 19:07:51 -07003731 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003732
3733 if (!vp)
3734 return VPPCOM_EFAULT;
3735
3736 do
3737 {
Florin Coras7e12d942018-06-27 14:32:43 -07003738 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003739
Florin Coras6917b942018-11-13 22:44:54 -08003740 /* Dequeue all events and drop all unhandled io events */
3741 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3742 {
3743 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3744 vcl_handle_mq_event (wrk, e);
3745 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3746 }
3747 vec_reset_length (wrk->unhandled_evts_vector);
3748
Dave Wallace048b1d62018-01-03 22:24:41 -05003749 for (i = 0; i < n_sids; i++)
3750 {
Florin Coras7baeb712019-01-04 17:05:43 -08003751 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003752 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003753 {
3754 vp[i].revents = POLLHUP;
3755 num_ev++;
3756 continue;
3757 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003758
Florin Coras6917b942018-11-13 22:44:54 -08003759 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003760
3761 if (POLLIN & vp[i].events)
3762 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003763 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003764 if (rv > 0)
3765 {
Florin Coras6917b942018-11-13 22:44:54 -08003766 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003767 num_ev++;
3768 }
3769 else if (rv < 0)
3770 {
3771 switch (rv)
3772 {
3773 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003774 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003775 break;
3776
3777 default:
Florin Coras6917b942018-11-13 22:44:54 -08003778 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003779 break;
3780 }
3781 num_ev++;
3782 }
3783 }
3784
3785 if (POLLOUT & vp[i].events)
3786 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003787 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003788 if (rv > 0)
3789 {
Florin Coras6917b942018-11-13 22:44:54 -08003790 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003791 num_ev++;
3792 }
3793 else if (rv < 0)
3794 {
3795 switch (rv)
3796 {
3797 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003798 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003799 break;
3800
3801 default:
Florin Coras6917b942018-11-13 22:44:54 -08003802 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003803 break;
3804 }
3805 num_ev++;
3806 }
3807 }
3808
Dave Wallace7e607a72018-06-18 18:41:32 -04003809 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003810 {
Florin Coras6917b942018-11-13 22:44:54 -08003811 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003812 num_ev++;
3813 }
3814 }
3815 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003816 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003817 }
3818 while ((num_ev == 0) && keep_trying);
3819
Dave Wallace048b1d62018-01-03 22:24:41 -05003820 return num_ev;
3821}
3822
Florin Coras99368312018-08-02 10:45:44 -07003823int
3824vppcom_mq_epoll_fd (void)
3825{
Florin Coras134a9962018-08-28 11:32:04 -07003826 vcl_worker_t *wrk = vcl_worker_get_current ();
3827 return wrk->mqs_epfd;
3828}
3829
3830int
Florin Coras30e79c22019-01-02 19:31:22 -08003831vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003832{
3833 return session_handle & 0xFFFFFF;
3834}
3835
3836int
Florin Coras30e79c22019-01-02 19:31:22 -08003837vppcom_session_worker (vcl_session_handle_t session_handle)
3838{
3839 return session_handle >> 24;
3840}
3841
3842int
Florin Coras134a9962018-08-28 11:32:04 -07003843vppcom_worker_register (void)
3844{
Florin Coras47c40e22018-11-26 17:01:36 -08003845 if (!vcl_worker_alloc_and_init ())
3846 return VPPCOM_EEXIST;
3847
Florin Coras47c40e22018-11-26 17:01:36 -08003848 if (vcl_worker_register_with_vpp ())
3849 return VPPCOM_EEXIST;
3850
3851 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003852}
3853
Florin Coras369db832019-07-08 12:34:45 -07003854void
3855vppcom_worker_unregister (void)
3856{
3857 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3858 vcl_set_worker_index (~0);
3859}
3860
Pivo6017ff02020-05-04 17:57:33 +02003861void
3862vppcom_worker_index_set (int index)
3863{
3864 vcl_set_worker_index (index);
3865}
3866
Florin Corasdfe4cf42018-11-28 22:13:45 -08003867int
3868vppcom_worker_index (void)
3869{
3870 return vcl_get_worker_index ();
3871}
3872
Florin Corase0982e52019-01-25 13:19:56 -08003873int
3874vppcom_worker_mqs_epfd (void)
3875{
3876 vcl_worker_t *wrk = vcl_worker_get_current ();
3877 if (!vcm->cfg.use_mq_eventfd)
3878 return -1;
3879 return wrk->mqs_epfd;
3880}
3881
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003882int
3883vppcom_session_is_connectable_listener (uint32_t session_handle)
3884{
3885 vcl_session_t *session;
3886 vcl_worker_t *wrk = vcl_worker_get_current ();
3887 session = vcl_session_get_w_handle (wrk, session_handle);
3888 if (!session)
3889 return VPPCOM_EBADFD;
3890 return vcl_session_is_connectable_listener (wrk, session);
3891}
3892
3893int
3894vppcom_session_listener (uint32_t session_handle)
3895{
3896 vcl_worker_t *wrk = vcl_worker_get_current ();
3897 vcl_session_t *listen_session, *session;
3898 session = vcl_session_get_w_handle (wrk, session_handle);
3899 if (!session)
3900 return VPPCOM_EBADFD;
3901 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3902 return VPPCOM_EBADFD;
3903 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3904 if (!listen_session)
3905 return VPPCOM_EBADFD;
3906 return vcl_session_handle (listen_session);
3907}
3908
3909int
3910vppcom_session_n_accepted (uint32_t session_handle)
3911{
3912 vcl_worker_t *wrk = vcl_worker_get_current ();
3913 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3914 if (!session)
3915 return VPPCOM_EBADFD;
3916 return session->n_accepted_sessions;
3917}
3918
Florin Coras66ec4672020-06-15 07:59:40 -07003919const char *
3920vppcom_proto_str (vppcom_proto_t proto)
3921{
3922 char const *proto_str;
3923
3924 switch (proto)
3925 {
3926 case VPPCOM_PROTO_TCP:
3927 proto_str = "TCP";
3928 break;
3929 case VPPCOM_PROTO_UDP:
3930 proto_str = "UDP";
3931 break;
3932 case VPPCOM_PROTO_TLS:
3933 proto_str = "TLS";
3934 break;
3935 case VPPCOM_PROTO_QUIC:
3936 proto_str = "QUIC";
3937 break;
3938 default:
3939 proto_str = "UNKNOWN";
3940 break;
3941 }
3942 return proto_str;
3943}
3944
3945const char *
3946vppcom_retval_str (int retval)
3947{
3948 char const *st;
3949
3950 switch (retval)
3951 {
3952 case VPPCOM_OK:
3953 st = "VPPCOM_OK";
3954 break;
3955
3956 case VPPCOM_EAGAIN:
3957 st = "VPPCOM_EAGAIN";
3958 break;
3959
3960 case VPPCOM_EFAULT:
3961 st = "VPPCOM_EFAULT";
3962 break;
3963
3964 case VPPCOM_ENOMEM:
3965 st = "VPPCOM_ENOMEM";
3966 break;
3967
3968 case VPPCOM_EINVAL:
3969 st = "VPPCOM_EINVAL";
3970 break;
3971
3972 case VPPCOM_EBADFD:
3973 st = "VPPCOM_EBADFD";
3974 break;
3975
3976 case VPPCOM_EAFNOSUPPORT:
3977 st = "VPPCOM_EAFNOSUPPORT";
3978 break;
3979
3980 case VPPCOM_ECONNABORTED:
3981 st = "VPPCOM_ECONNABORTED";
3982 break;
3983
3984 case VPPCOM_ECONNRESET:
3985 st = "VPPCOM_ECONNRESET";
3986 break;
3987
3988 case VPPCOM_ENOTCONN:
3989 st = "VPPCOM_ENOTCONN";
3990 break;
3991
3992 case VPPCOM_ECONNREFUSED:
3993 st = "VPPCOM_ECONNREFUSED";
3994 break;
3995
3996 case VPPCOM_ETIMEDOUT:
3997 st = "VPPCOM_ETIMEDOUT";
3998 break;
3999
4000 default:
4001 st = "UNKNOWN_STATE";
4002 break;
4003 }
4004
4005 return st;
4006}
4007
Dave Wallacee22aa742017-10-20 12:30:38 -04004008/*
4009 * fd.io coding-style-patch-verification: ON
4010 *
4011 * Local Variables:
4012 * eval: (c-set-style "gnu")
4013 * End:
4014 */