blob: d52d9a995a0ade2d39804585f12625fcab1d58c6 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdio.h>
17#include <stdlib.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040018#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070019#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070020#include <vcl/vcl_private.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/fifo_segment.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Corasd85de682018-11-29 17:02:29 -080025static int
Florin Corasc4c4cf52019-08-24 18:17:34 -070026vcl_segment_is_not_mounted (vcl_worker_t * wrk, u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070027{
Florin Corasc4c4cf52019-08-24 18:17:34 -070028 u32 segment_index;
Florin Coras54693d22018-07-17 10:46:29 -070029
Florin Corasd85de682018-11-29 17:02:29 -080030 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
Florin Coras5f45e012019-01-23 09:21:30 -080031 return 0;
Florin Coras54693d22018-07-17 10:46:29 -070032
Florin Corasc4c4cf52019-08-24 18:17:34 -070033 segment_index = vcl_segment_table_lookup (segment_handle);
34 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
35 return 0;
36
Florin Corasd85de682018-11-29 17:02:29 -080037 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070038}
39
Florin Coras30e79c22019-01-02 19:31:22 -080040static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070041vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080042{
43 svm_msg_q_msg_t *msg;
44 u32 n_msgs;
45 int i;
46
Florin Corase003a1b2019-06-05 10:47:16 -070047 n_msgs = clib_min (svm_msg_q_size (mq), n_max_msg);
Florin Coras30e79c22019-01-02 19:31:22 -080048 for (i = 0; i < n_msgs; i++)
49 {
50 vec_add2 (wrk->mq_msg_vector, msg, 1);
51 svm_msg_q_sub_w_lock (mq, msg);
52 }
53 return n_msgs;
54}
55
Florin Coras697faea2018-06-27 17:10:49 -070056const char *
Florin Coras288eaab2019-02-03 15:26:14 -080057vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040058{
59 char *st;
60
61 switch (state)
62 {
Florin Coras54140622020-02-04 19:04:34 +000063 case STATE_CLOSED:
64 st = "STATE_CLOSED";
Dave Wallace543852a2017-08-03 02:11:34 -040065 break;
66
67 case STATE_CONNECT:
68 st = "STATE_CONNECT";
69 break;
70
71 case STATE_LISTEN:
72 st = "STATE_LISTEN";
73 break;
74
75 case STATE_ACCEPT:
76 st = "STATE_ACCEPT";
77 break;
78
Florin Coras3c7d4f92018-12-14 11:28:43 -080079 case STATE_VPP_CLOSING:
80 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050081 break;
82
Dave Wallace543852a2017-08-03 02:11:34 -040083 case STATE_DISCONNECT:
84 st = "STATE_DISCONNECT";
85 break;
86
Florin Corasadcfb152020-02-12 08:50:29 +000087 case STATE_DETACHED:
88 st = "STATE_DETACHED";
Dave Wallace543852a2017-08-03 02:11:34 -040089 break;
90
Florin Coras2d675d72019-01-28 15:54:27 -080091 case STATE_UPDATED:
92 st = "STATE_UPDATED";
93 break;
94
95 case STATE_LISTEN_NO_MQ:
96 st = "STATE_LISTEN_NO_MQ";
97 break;
98
Dave Wallace543852a2017-08-03 02:11:34 -040099 default:
100 st = "UNKNOWN_STATE";
101 break;
102 }
103
104 return st;
105}
106
Dave Wallace543852a2017-08-03 02:11:34 -0400107u8 *
108format_ip4_address (u8 * s, va_list * args)
109{
110 u8 *a = va_arg (*args, u8 *);
111 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
112}
113
114u8 *
115format_ip6_address (u8 * s, va_list * args)
116{
117 ip6_address_t *a = va_arg (*args, ip6_address_t *);
118 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
119
120 i_max_n_zero = ARRAY_LEN (a->as_u16);
121 max_n_zeros = 0;
122 i_first_zero = i_max_n_zero;
123 n_zeros = 0;
124 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
125 {
126 u32 is_zero = a->as_u16[i] == 0;
127 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
128 {
129 i_first_zero = i;
130 n_zeros = 0;
131 }
132 n_zeros += is_zero;
133 if ((!is_zero && n_zeros > max_n_zeros)
134 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
135 {
136 i_max_n_zero = i_first_zero;
137 max_n_zeros = n_zeros;
138 i_first_zero = ARRAY_LEN (a->as_u16);
139 n_zeros = 0;
140 }
141 }
142
143 last_double_colon = 0;
144 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
145 {
146 if (i == i_max_n_zero && max_n_zeros > 1)
147 {
148 s = format (s, "::");
149 i += max_n_zeros - 1;
150 last_double_colon = 1;
151 }
152 else
153 {
154 s = format (s, "%s%x",
155 (last_double_colon || i == 0) ? "" : ":",
156 clib_net_to_host_u16 (a->as_u16[i]));
157 last_double_colon = 0;
158 }
159 }
160
161 return s;
162}
163
164/* Format an IP46 address. */
165u8 *
166format_ip46_address (u8 * s, va_list * args)
167{
168 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
169 ip46_type_t type = va_arg (*args, ip46_type_t);
170 int is_ip4 = 1;
171
172 switch (type)
173 {
174 case IP46_TYPE_ANY:
175 is_ip4 = ip46_address_is_ip4 (ip46);
176 break;
177 case IP46_TYPE_IP4:
178 is_ip4 = 1;
179 break;
180 case IP46_TYPE_IP6:
181 is_ip4 = 0;
182 break;
183 }
184
185 return is_ip4 ?
186 format (s, "%U", format_ip4_address, &ip46->ip4) :
187 format (s, "%U", format_ip6_address, &ip46->ip6);
188}
189
Florin Coras697faea2018-06-27 17:10:49 -0700190/*
191 * VPPCOM Utility Functions
192 */
193
Florin Coras458089b2019-08-21 16:20:44 -0700194static void
195vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
196{
197 app_session_evt_t _app_evt, *app_evt = &_app_evt;
198 session_listen_msg_t *mp;
199 svm_msg_q_t *mq;
200
201 mq = vcl_worker_ctrl_mq (wrk);
202 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
203 mp = (session_listen_msg_t *) app_evt->evt->data;
204 memset (mp, 0, sizeof (*mp));
205 mp->client_index = wrk->my_client_index;
206 mp->context = s->session_index;
207 mp->wrk_index = wrk->vpp_wrk_index;
208 mp->is_ip4 = s->transport.is_ip4;
209 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
210 mp->port = s->transport.lcl_port;
211 mp->proto = s->session_type;
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));
228 mp->client_index = wrk->my_client_index;
229 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));
254 mp->client_index = wrk->my_client_index;
255 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));
273 mp->client_index = wrk->my_client_index;
274 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));
289 mp->client_index = wrk->my_client_index;
290 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;
347 mp->client_index = wrk->my_client_index;
348 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;
376 mp->client_index = wrk->my_client_index;
377 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 Coras54693d22018-07-17 10:46:29 -0700533 session->session_state = STATE_CONNECT;
534
535 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800536 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700537
Florin Coras5e062572019-03-14 19:07:51 -0700538 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
539 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700540 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700541
Florin Coras54693d22018-07-17 10:46:29 -0700542 return session_index;
543}
544
Florin Coras3c7d4f92018-12-14 11:28:43 -0800545static int
546vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
547{
548 vcl_session_msg_t *accepted_msg;
549 int i;
550
551 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
552 {
553 accepted_msg = &session->accept_evts_fifo[i];
554 if (accepted_msg->accepted_msg.handle == handle)
555 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800556 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800557 return 1;
558 }
559 }
560 return 0;
561}
562
Florin Corasc9fbd662018-08-24 12:59:56 -0700563static u32
Florin Coras134a9962018-08-28 11:32:04 -0700564vcl_session_reset_handler (vcl_worker_t * wrk,
565 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700566{
567 vcl_session_t *session;
568 u32 sid;
569
Florin Coras134a9962018-08-28 11:32:04 -0700570 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
571 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700572 if (!session)
573 {
574 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
575 return VCL_INVALID_SESSION_INDEX;
576 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800577
578 /* Caught a reset before actually accepting the session */
579 if (session->session_state == STATE_LISTEN)
580 {
581
582 if (!vcl_flag_accepted_session (session, reset_msg->handle,
583 VCL_ACCEPTED_F_RESET))
584 VDBG (0, "session was not accepted!");
585 return VCL_INVALID_SESSION_INDEX;
586 }
587
Florin Coras080aa502020-05-26 00:47:52 +0000588 if (session->session_state != STATE_CLOSED)
589 session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800590 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700591 return sid;
592}
593
Florin Coras60116992018-08-27 09:52:18 -0700594static u32
Florin Coras134a9962018-08-28 11:32:04 -0700595vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700596{
597 vcl_session_t *session;
598 u32 sid = mp->context;
599
Florin Coras134a9962018-08-28 11:32:04 -0700600 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700601 if (mp->retval)
602 {
Florin Coras5e062572019-03-14 19:07:51 -0700603 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700604 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700605 if (session)
606 {
Florin Corasadcfb152020-02-12 08:50:29 +0000607 session->session_state = STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700608 session->vpp_handle = mp->handle;
609 return sid;
610 }
611 else
612 {
Florin Coras5e062572019-03-14 19:07:51 -0700613 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
614 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700615 return VCL_INVALID_SESSION_INDEX;
616 }
617 }
618
619 session->vpp_handle = mp->handle;
620 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500621 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
622 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700623 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700624 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700625 session->session_state = STATE_LISTEN;
626
Florin Coras5f45e012019-01-23 09:21:30 -0800627 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
628 vec_validate (wrk->vpp_event_queues, 0);
629 wrk->vpp_event_queues[0] = session->vpp_evt_q;
630
Florin Coras6e3c1f82020-01-15 01:30:46 +0000631 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700632 {
633 svm_fifo_t *rx_fifo, *tx_fifo;
634 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
635 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
636 rx_fifo->client_session_index = sid;
637 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
638 tx_fifo->client_session_index = sid;
639 session->rx_fifo = rx_fifo;
640 session->tx_fifo = tx_fifo;
641 }
642
Florin Coras05ecfcc2018-12-12 18:19:39 -0800643 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700644 return sid;
645}
646
Florin Corasdfae9f92019-02-20 19:48:31 -0800647static void
648vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
649{
650 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
651 vcl_session_t *s;
652
653 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000654 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800655 {
656 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
657 return;
658 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000659 if (s->session_state != STATE_DISCONNECT)
660 {
661 /* Connected udp listener */
662 if (s->session_type == VPPCOM_PROTO_UDP
663 && s->session_state == STATE_CLOSED)
664 return;
665
666 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
667 return;
668 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800669
670 if (mp->retval)
671 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700672 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800673
674 if (mp->context != wrk->wrk_index)
675 VDBG (0, "wrong context");
676
677 vcl_session_table_del_vpp_handle (wrk, mp->handle);
678 vcl_session_free (wrk, s);
679}
680
Florin Coras68b7e582020-01-21 18:33:23 -0800681static void
682vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
683{
684 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
685 vcl_session_t *s;
686
687 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
688 if (!s)
689 {
690 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
691 return;
692 }
693
694 s->vpp_thread_index = mp->vpp_thread_index;
Florin Coras57660d92020-04-04 22:45:34 +0000695 s->vpp_handle = mp->new_handle;
Florin Coras68b7e582020-01-21 18:33:23 -0800696 s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
697
698 vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
699 wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
700
701 vcl_session_table_del_vpp_handle (wrk, mp->handle);
702 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
703
704 /* Generate new tx event if we have outstanding data */
705 if (svm_fifo_has_event (s->tx_fifo))
706 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
707 SESSION_IO_EVT_TX, SVM_Q_WAIT);
708
Florin Coras57660d92020-04-04 22:45:34 +0000709 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
710 s->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800711}
712
Florin Coras3c7d4f92018-12-14 11:28:43 -0800713static vcl_session_t *
714vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
715{
716 vcl_session_msg_t *vcl_msg;
717 vcl_session_t *session;
718
719 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
720 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800721 VWRN ("session overlap handle %lu state %u!", msg->handle,
722 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800723
724 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
725 if (!session)
726 {
727 VERR ("couldn't find listen session: listener handle %llx",
728 msg->listener_handle);
729 return 0;
730 }
731
732 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000733 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800734 vcl_msg->accepted_msg = *msg;
735 /* Session handle points to listener until fully accepted by app */
736 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
737
738 return session;
739}
740
741static vcl_session_t *
742vcl_session_disconnected_handler (vcl_worker_t * wrk,
743 session_disconnected_msg_t * msg)
744{
745 vcl_session_t *session;
746
747 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
748 if (!session)
749 {
750 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
751 return 0;
752 }
753
Florin Corasadcfb152020-02-12 08:50:29 +0000754 /* Late disconnect notification on a session that has been closed */
755 if (session->session_state == STATE_CLOSED)
756 return 0;
757
Florin Coras3c7d4f92018-12-14 11:28:43 -0800758 /* Caught a disconnect before actually accepting the session */
759 if (session->session_state == STATE_LISTEN)
760 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800761 if (!vcl_flag_accepted_session (session, msg->handle,
762 VCL_ACCEPTED_F_CLOSED))
763 VDBG (0, "session was not accepted!");
764 return 0;
765 }
766
Florin Corasadcfb152020-02-12 08:50:29 +0000767 /* If not already reset change state */
768 if (session->session_state != STATE_DISCONNECT)
769 session->session_state = STATE_VPP_CLOSING;
770
Florin Coras3c7d4f92018-12-14 11:28:43 -0800771 return session;
772}
773
Florin Coras30e79c22019-01-02 19:31:22 -0800774static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700775vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
776{
777 session_cleanup_msg_t *msg;
778 vcl_session_t *session;
779
780 msg = (session_cleanup_msg_t *) data;
781 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
782 if (!session)
783 {
784 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
785 return;
786 }
787
Florin Coras36d49392020-04-24 23:00:11 +0000788 if (msg->type == SESSION_CLEANUP_TRANSPORT)
789 {
790 /* Transport was cleaned up before we confirmed close. Probably the
791 * app is still waiting for some data that cannot be delivered.
792 * Confirm close to make sure everything is cleaned up */
793 if (session->session_state == STATE_VPP_CLOSING)
794 vcl_session_cleanup (wrk, session, vcl_session_handle (session),
795 1 /* do_disconnect */ );
796 return;
797 }
798
Florin Coras9ace36d2019-10-28 13:14:17 -0700799 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000800 /* Should not happen. App did not close the connection so don't free it. */
801 if (session->session_state != STATE_CLOSED)
802 {
803 VDBG (0, "app did not close session %d", session->session_index);
804 session->session_state = STATE_DETACHED;
805 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
806 return;
807 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700808 vcl_session_free (wrk, session);
809}
810
811static void
Florin Coras30e79c22019-01-02 19:31:22 -0800812vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
813{
814 session_req_worker_update_msg_t *msg;
815 vcl_session_t *s;
816
817 msg = (session_req_worker_update_msg_t *) data;
818 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
819 if (!s)
820 return;
821
822 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
823}
824
825static void
826vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
827{
828 session_worker_update_reply_msg_t *msg;
829 vcl_session_t *s;
830
831 msg = (session_worker_update_reply_msg_t *) data;
832 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
833 if (!s)
834 {
835 VDBG (0, "unknown handle 0x%llx", msg->handle);
836 return;
837 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700838 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800839 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700840 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800841 s->session_index);
842 return;
843 }
Florin Coras30e79c22019-01-02 19:31:22 -0800844
Florin Coras5f45e012019-01-23 09:21:30 -0800845 if (s->rx_fifo)
846 {
847 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
848 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
849 s->rx_fifo->client_session_index = s->session_index;
850 s->tx_fifo->client_session_index = s->session_index;
851 s->rx_fifo->client_thread_index = wrk->wrk_index;
852 s->tx_fifo->client_thread_index = wrk->wrk_index;
853 }
Florin Coras30e79c22019-01-02 19:31:22 -0800854 s->session_state = STATE_UPDATED;
855
Florin Coras30e79c22019-01-02 19:31:22 -0800856 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
857 s->vpp_handle, wrk->wrk_index);
858}
859
Florin Corasc4c4cf52019-08-24 18:17:34 -0700860static void
861vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
862{
863 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
864 session_app_add_segment_msg_t *msg;
865 u64 segment_handle;
866 int fd = -1;
867
868 msg = (session_app_add_segment_msg_t *) data;
869
870 if (msg->fd_flags)
871 {
872 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
873 seg_type = SSVM_SEGMENT_MEMFD;
874 }
875
876 segment_handle = msg->segment_handle;
877 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
878 {
879 clib_warning ("invalid segment handle");
880 return;
881 }
882
883 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
884 seg_type, fd))
885 {
886 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
887 return;
888 }
889
890 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
891 msg->segment_size);
892}
893
894static void
895vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
896{
897 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
898 vcl_segment_detach (msg->segment_handle);
899 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
900}
901
Florin Coras40c07ce2020-07-16 20:46:17 -0700902static void
903vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
904{
905 if (!vcm->wrk_rpc_fn)
906 return;
907
hanlina3a48962020-07-13 11:09:15 +0800908 (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
Florin Coras40c07ce2020-07-16 20:46:17 -0700909}
910
Florin Coras86f04502018-09-12 16:08:01 -0700911static int
912vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700913{
Florin Coras54693d22018-07-17 10:46:29 -0700914 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700915 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700916
917 switch (e->event_type)
918 {
Florin Coras653e43f2019-03-04 10:56:23 -0800919 case SESSION_IO_EVT_RX:
920 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800921 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800922 if (!session || !(session->session_state & STATE_OPEN))
923 break;
Florin Coras86f04502018-09-12 16:08:01 -0700924 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700925 break;
926 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800927 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700928 break;
929 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700930 vcl_session_connected_handler (wrk,
931 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700932 break;
933 case SESSION_CTRL_EVT_DISCONNECTED:
934 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800935 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700936 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800937 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800938 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
939 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700940 break;
941 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700942 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700943 break;
944 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700945 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700946 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800947 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
948 vcl_session_unlisten_reply_handler (wrk, e->data);
949 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800950 case SESSION_CTRL_EVT_MIGRATED:
951 vcl_session_migrated_handler (wrk, e->data);
952 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700953 case SESSION_CTRL_EVT_CLEANUP:
954 vcl_session_cleanup_handler (wrk, e->data);
955 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800956 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
957 vcl_session_req_worker_update_handler (wrk, e->data);
958 break;
959 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
960 vcl_session_worker_update_reply_handler (wrk, e->data);
961 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700962 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
963 vcl_session_app_add_segment_handler (wrk, e->data);
964 break;
965 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
966 vcl_session_app_del_segment_handler (wrk, e->data);
967 break;
hanlina3a48962020-07-13 11:09:15 +0800968 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -0700969 vcl_worker_rpc_handler (wrk, e->data);
970 break;
Florin Coras54693d22018-07-17 10:46:29 -0700971 default:
972 clib_warning ("unhandled %u", e->event_type);
973 }
974 return VPPCOM_OK;
975}
976
Florin Coras30e79c22019-01-02 19:31:22 -0800977static int
Florin Coras697faea2018-06-27 17:10:49 -0700978vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800979 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700980 f64 wait_for_time)
981{
Florin Coras134a9962018-08-28 11:32:04 -0700982 vcl_worker_t *wrk = vcl_worker_get_current ();
983 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700984 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700985 svm_msg_q_msg_t msg;
986 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400987
Florin Coras697faea2018-06-27 17:10:49 -0700988 do
Dave Wallace543852a2017-08-03 02:11:34 -0400989 {
Florin Coras134a9962018-08-28 11:32:04 -0700990 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700991 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700992 {
Florin Coras070453d2018-08-24 17:04:27 -0700993 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700994 }
995 if (session->session_state & state)
996 {
Florin Coras697faea2018-06-27 17:10:49 -0700997 return VPPCOM_OK;
998 }
Florin Corasadcfb152020-02-12 08:50:29 +0000999 if (session->session_state & STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -07001000 {
Florin Coras697faea2018-06-27 17:10:49 -07001001 return VPPCOM_ECONNREFUSED;
1002 }
Florin Coras54693d22018-07-17 10:46:29 -07001003
Florin Coras134a9962018-08-28 11:32:04 -07001004 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -08001005 {
1006 usleep (100);
1007 continue;
1008 }
Florin Coras134a9962018-08-28 11:32:04 -07001009 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -07001010 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001011 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001012 }
Florin Coras134a9962018-08-28 11:32:04 -07001013 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -08001014
Florin Coras05ecfcc2018-12-12 18:19:39 -08001015 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -07001016 vppcom_session_state_str (state));
1017 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -04001018
Florin Coras697faea2018-06-27 17:10:49 -07001019 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001020}
1021
Florin Coras30e79c22019-01-02 19:31:22 -08001022static void
1023vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1024{
Florin Coras288eaab2019-02-03 15:26:14 -08001025 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -08001026 vcl_session_t *s;
1027 u32 *sip;
1028
1029 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1030 return;
1031
1032 vec_foreach (sip, wrk->pending_session_wrk_updates)
1033 {
1034 s = vcl_session_get (wrk, *sip);
1035 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1036 state = s->session_state;
1037 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
1038 s->session_state = state;
1039 }
1040 vec_reset_length (wrk->pending_session_wrk_updates);
1041}
1042
Florin Corasf9240dc2019-01-15 08:03:17 -08001043void
Florin Coras30e79c22019-01-02 19:31:22 -08001044vcl_flush_mq_events (void)
1045{
1046 vcl_worker_t *wrk = vcl_worker_get_current ();
1047 svm_msg_q_msg_t *msg;
1048 session_event_t *e;
1049 svm_msg_q_t *mq;
1050 int i;
1051
1052 mq = wrk->app_event_queue;
1053 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -07001054 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001055 svm_msg_q_unlock (mq);
1056
1057 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1058 {
1059 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1060 e = svm_msg_q_msg_data (mq, msg);
1061 vcl_handle_mq_event (wrk, e);
1062 svm_msg_q_free_msg (mq, msg);
1063 }
1064 vec_reset_length (wrk->mq_msg_vector);
1065 vcl_handle_pending_wrk_updates (wrk);
1066}
1067
Florin Coras697faea2018-06-27 17:10:49 -07001068static int
1069vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001070{
Florin Coras697faea2018-06-27 17:10:49 -07001071 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001072
Florin Coras697faea2018-06-27 17:10:49 -07001073 if (vcm->app_state != STATE_APP_ENABLED)
1074 {
1075 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -07001076 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -07001077 if (PREDICT_FALSE (rv))
1078 {
Florin Coras5e062572019-03-14 19:07:51 -07001079 VDBG (0, "application session enable timed out! returning %d (%s)",
1080 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001081 return rv;
1082 }
1083 }
1084 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001085}
1086
Florin Coras697faea2018-06-27 17:10:49 -07001087static int
1088vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001089{
Florin Coras697faea2018-06-27 17:10:49 -07001090 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001091
Florin Coras697faea2018-06-27 17:10:49 -07001092 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -07001093 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -07001094 if (PREDICT_FALSE (rv))
1095 {
Florin Coras5e062572019-03-14 19:07:51 -07001096 VDBG (0, "application attach timed out! returning %d (%s)", rv,
1097 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001098 return rv;
1099 }
Dave Wallace543852a2017-08-03 02:11:34 -04001100
Florin Coras697faea2018-06-27 17:10:49 -07001101 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001102}
1103
1104static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001105vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001106{
Florin Coras134a9962018-08-28 11:32:04 -07001107 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001108 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001109 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001110 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001111
Florin Corasab2f6db2018-08-31 14:31:41 -07001112 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001113 if (!session)
1114 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001115
Florin Corasaaff5ee2019-07-08 13:00:00 -07001116 /* Flush pending accept events, if any */
1117 while (clib_fifo_elts (session->accept_evts_fifo))
1118 {
1119 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1120 accepted_msg = &evt->accepted_msg;
1121 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1122 vcl_send_session_accepted_reply (session->vpp_evt_q,
1123 accepted_msg->context,
1124 session->vpp_handle, -1);
1125 }
1126 clib_fifo_free (session->accept_evts_fifo);
1127
Florin Coras458089b2019-08-21 16:20:44 -07001128 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001129
Florin Coras5e062572019-03-14 19:07:51 -07001130 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001131 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001132 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001133
1134 session->vpp_handle = ~0;
1135 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001136
Florin Coras070453d2018-08-24 17:04:27 -07001137 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001138}
1139
Florin Coras697faea2018-06-27 17:10:49 -07001140static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001141vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001142{
Florin Coras134a9962018-08-28 11:32:04 -07001143 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001144 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001145 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001146 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001147 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001148
Florin Corasab2f6db2018-08-31 14:31:41 -07001149 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001150 if (!session)
1151 return VPPCOM_EBADFD;
1152
Dave Wallace4878cbe2017-11-21 03:45:09 -05001153 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001154 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001155
Florin Coras5e062572019-03-14 19:07:51 -07001156 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1157 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001158
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001159 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001160 {
Florin Coras5e062572019-03-14 19:07:51 -07001161 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001162 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001163 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001164
Florin Coras3c7d4f92018-12-14 11:28:43 -08001165 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001166 {
Florin Coras134a9962018-08-28 11:32:04 -07001167 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001168 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001169 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001170 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1171 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001172 }
1173 else
Dave Wallace227867f2017-11-13 21:21:53 -05001174 {
Florin Coras5e062572019-03-14 19:07:51 -07001175 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1176 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001177 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001178 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001179
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001180 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1181 {
1182 listen_session = vcl_session_get (wrk, session->listener_index);
1183 listen_session->n_accepted_sessions--;
1184 }
1185
Florin Coras070453d2018-08-24 17:04:27 -07001186 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001187}
1188
Florin Coras940f78f2018-11-30 12:11:20 -08001189/**
1190 * Handle app exit
1191 *
1192 * Notify vpp of the disconnect and mark the worker as free. If we're the
1193 * last worker, do a full cleanup otherwise, since we're probably a forked
1194 * child, avoid syscalls as much as possible. We might've lost privileges.
1195 */
1196void
1197vppcom_app_exit (void)
1198{
1199 if (!pool_elts (vcm->workers))
1200 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001201 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1202 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001203 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001204}
1205
Dave Wallace543852a2017-08-03 02:11:34 -04001206/*
1207 * VPPCOM Public API functions
1208 */
1209int
Florin Coras66ec4672020-06-15 07:59:40 -07001210vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001211{
Dave Wallace543852a2017-08-03 02:11:34 -04001212 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001213 int rv;
1214
Florin Coras47c40e22018-11-26 17:01:36 -08001215 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001216 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001217 VDBG (1, "already initialized");
1218 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001219 }
1220
Florin Coras47c40e22018-11-26 17:01:36 -08001221 vcm->is_init = 1;
1222 vppcom_cfg (&vcm->cfg);
1223 vcl_cfg = &vcm->cfg;
1224
1225 vcm->main_cpu = pthread_self ();
1226 vcm->main_pid = getpid ();
1227 vcm->app_name = format (0, "%s", app_name);
1228 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001229 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1230 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001231 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1232 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001233 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001234 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001235
1236 /* Allocate default worker */
1237 vcl_worker_alloc_and_init ();
1238
1239 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001240 vcl_elog_init (vcm);
1241 vcm->app_state = STATE_APP_START;
1242 rv = vppcom_connect_to_vpp (app_name);
1243 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001244 {
Florin Coras47c40e22018-11-26 17:01:36 -08001245 VERR ("couldn't connect to VPP!");
1246 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001247 }
Florin Coras47c40e22018-11-26 17:01:36 -08001248 VDBG (0, "sending session enable");
1249 rv = vppcom_app_session_enable ();
1250 if (rv)
1251 {
1252 VERR ("vppcom_app_session_enable() failed!");
1253 return rv;
1254 }
1255
1256 VDBG (0, "sending app attach");
1257 rv = vppcom_app_attach ();
1258 if (rv)
1259 {
1260 VERR ("vppcom_app_attach() failed!");
1261 return rv;
1262 }
1263
1264 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1265 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001266
1267 return VPPCOM_OK;
1268}
1269
1270void
1271vppcom_app_destroy (void)
1272{
Florin Corasdc0ded72020-04-30 02:59:55 +00001273 vcl_worker_t *wrk, *current_wrk;
Florin Corasce815de2020-04-16 18:47:27 +00001274 struct dlmallinfo mi;
Florin Corasce815de2020-04-16 18:47:27 +00001275 mspace heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001276
Florin Coras940f78f2018-11-30 12:11:20 -08001277 if (!pool_elts (vcm->workers))
1278 return;
1279
Florin Coras0d427d82018-06-27 03:24:07 -07001280 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001281
Florin Corasdc0ded72020-04-30 02:59:55 +00001282 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001283
Florin Corasce815de2020-04-16 18:47:27 +00001284 /* *INDENT-OFF* */
1285 pool_foreach (wrk, vcm->workers, ({
Florin Corasdc0ded72020-04-30 02:59:55 +00001286 if (current_wrk != wrk)
1287 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Florin Corasce815de2020-04-16 18:47:27 +00001288 }));
1289 /* *INDENT-ON* */
1290
Florin Corasdc0ded72020-04-30 02:59:55 +00001291 vcl_send_app_detach (current_wrk);
1292 vppcom_disconnect_from_vpp ();
1293 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1294
Florin Coras0d427d82018-06-27 03:24:07 -07001295 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001296
1297 /*
1298 * Free the heap and fix vcm
1299 */
1300 heap = clib_mem_get_heap ();
1301 mi = mspace_mallinfo (heap);
1302 munmap (mspace_least_addr (heap), mi.arena);
1303
1304 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001305 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001306}
1307
1308int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001309vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001310{
Florin Coras134a9962018-08-28 11:32:04 -07001311 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001312 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001313
Florin Coras134a9962018-08-28 11:32:04 -07001314 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001315
Florin Coras7e12d942018-06-27 14:32:43 -07001316 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001317 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001318 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001319 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001320
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001321 if (is_nonblocking)
1322 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001323
Florin Coras7e12d942018-06-27 14:32:43 -07001324 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1325 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001326
Florin Coras5e062572019-03-14 19:07:51 -07001327 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001328
Florin Coras134a9962018-08-28 11:32:04 -07001329 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001330}
1331
1332int
Florin Corasf9240dc2019-01-15 08:03:17 -08001333vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1334 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001335{
Florin Coras288eaab2019-02-03 15:26:14 -08001336 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001337 u32 next_sh, vep_sh;
1338 int rv = VPPCOM_OK;
1339 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001340 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001341
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001342 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001343 next_sh = session->vep.next_sh;
1344 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001345 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001346 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001347
Florin Corasf9240dc2019-01-15 08:03:17 -08001348 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001349
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001350 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001351 {
Florin Coras134a9962018-08-28 11:32:04 -07001352 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001353 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001354 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001355 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001356 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001357 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1358 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001359
Florin Coras134a9962018-08-28 11:32:04 -07001360 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001361 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001362 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001363 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001364
1365 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001366 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001367 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1368 if (rv < 0)
1369 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1370 "failed! rv %d (%s)", session->session_index, vpp_handle,
1371 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001372 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001373
Florin Coras9ace36d2019-10-28 13:14:17 -07001374 if (!do_disconnect)
1375 {
1376 VDBG (1, "session %u [0x%llx] disconnect skipped",
1377 session->session_index, vpp_handle);
1378 goto cleanup;
1379 }
1380
1381 if (state & STATE_LISTEN)
1382 {
1383 rv = vppcom_session_unbind (sh);
1384 if (PREDICT_FALSE (rv < 0))
1385 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1386 "rv %d (%s)", session->session_index, vpp_handle, rv,
1387 vppcom_retval_str (rv));
1388 return rv;
1389 }
1390 else if ((state & STATE_OPEN)
1391 || (vcl_session_is_connectable_listener (wrk, session)))
1392 {
1393 rv = vppcom_session_disconnect (sh);
1394 if (PREDICT_FALSE (rv < 0))
1395 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1396 " rv %d (%s)", session->session_index, vpp_handle,
1397 rv, vppcom_retval_str (rv));
1398 }
1399 else if (state == STATE_DISCONNECT)
1400 {
1401 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1402 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1403 session->vpp_handle, 0);
1404 }
Florin Corasadcfb152020-02-12 08:50:29 +00001405 else if (state == STATE_DETACHED)
1406 {
1407 /* Should not happen. VPP cleaned up before app confirmed close */
1408 VDBG (0, "vpp freed session %d before close", session->session_index);
1409 goto free_session;
1410 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001411
Florin Coras54140622020-02-04 19:04:34 +00001412 session->session_state = STATE_CLOSED;
1413
Florin Coras9ace36d2019-10-28 13:14:17 -07001414 /* Session is removed only after vpp confirms the disconnect */
1415 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001416
Florin Corasf9240dc2019-01-15 08:03:17 -08001417cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001418 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001419free_session:
Florin Coras134a9962018-08-28 11:32:04 -07001420 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001421 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001422
Dave Wallace543852a2017-08-03 02:11:34 -04001423 return rv;
1424}
1425
1426int
Florin Corasf9240dc2019-01-15 08:03:17 -08001427vppcom_session_close (uint32_t session_handle)
1428{
1429 vcl_worker_t *wrk = vcl_worker_get_current ();
1430 vcl_session_t *session;
1431
1432 session = vcl_session_get_w_handle (wrk, session_handle);
1433 if (!session)
1434 return VPPCOM_EBADFD;
1435 return vcl_session_cleanup (wrk, session, session_handle,
1436 1 /* do_disconnect */ );
1437}
1438
1439int
Florin Coras134a9962018-08-28 11:32:04 -07001440vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001441{
Florin Coras134a9962018-08-28 11:32:04 -07001442 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001443 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001444
1445 if (!ep || !ep->ip)
1446 return VPPCOM_EINVAL;
1447
Florin Coras134a9962018-08-28 11:32:04 -07001448 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001449 if (!session)
1450 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001451
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001452 if (session->is_vep)
1453 {
Florin Coras5e062572019-03-14 19:07:51 -07001454 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1455 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001456 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001457 }
1458
Florin Coras7e12d942018-06-27 14:32:43 -07001459 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001460 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001461 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1462 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001463 else
Dave Barach178cf492018-11-13 16:34:13 -05001464 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1465 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001466 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001467
Florin Coras5e062572019-03-14 19:07:51 -07001468 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1469 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001470 session->transport.is_ip4 ? "IPv4" : "IPv6",
1471 format_ip46_address, &session->transport.lcl_ip,
1472 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1473 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001474 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001475 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001476
1477 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001478 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001479
Florin Coras070453d2018-08-24 17:04:27 -07001480 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001481}
1482
1483int
Florin Coras134a9962018-08-28 11:32:04 -07001484vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001485{
Florin Coras134a9962018-08-28 11:32:04 -07001486 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001487 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001488 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001489 int rv;
1490
Florin Coras134a9962018-08-28 11:32:04 -07001491 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001492 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001493 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001494
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001495 if (q_len == 0 || q_len == ~0)
1496 q_len = vcm->cfg.listen_queue_size;
1497
Dave Wallaceee45d412017-11-24 21:44:06 -05001498 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001499 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001500 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001501 VDBG (0, "session %u [0x%llx]: already in listen state!",
1502 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001503 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001504 }
1505
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001506 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001507
Florin Coras070453d2018-08-24 17:04:27 -07001508 /*
1509 * Send listen request to vpp and wait for reply
1510 */
Florin Coras458089b2019-08-21 16:20:44 -07001511 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001512 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1513 STATE_LISTEN,
1514 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001515
Florin Coras070453d2018-08-24 17:04:27 -07001516 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001517 {
Florin Coras134a9962018-08-28 11:32:04 -07001518 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001519 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1520 listen_sh, listen_session->vpp_handle, rv,
1521 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001522 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001523 }
1524
Florin Coras070453d2018-08-24 17:04:27 -07001525 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001526}
1527
Ping Yu34a3a082018-11-30 19:16:17 -05001528int
1529vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1530 uint32_t cert_len)
1531{
1532
1533 vcl_worker_t *wrk = vcl_worker_get_current ();
1534 vcl_session_t *session = 0;
1535
1536 session = vcl_session_get_w_handle (wrk, session_handle);
1537 if (!session)
1538 return VPPCOM_EBADFD;
1539
1540 if (cert_len == 0 || cert_len == ~0)
1541 return VPPCOM_EBADFD;
1542
1543 /*
1544 * Send listen request to vpp and wait for reply
1545 */
1546 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001547 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1548 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001549 return VPPCOM_OK;
1550
1551}
1552
1553int
1554vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1555 uint32_t key_len)
1556{
1557
1558 vcl_worker_t *wrk = vcl_worker_get_current ();
1559 vcl_session_t *session = 0;
1560
1561 session = vcl_session_get_w_handle (wrk, session_handle);
1562 if (!session)
1563 return VPPCOM_EBADFD;
1564
1565 if (key_len == 0 || key_len == ~0)
1566 return VPPCOM_EBADFD;
1567
Ping Yu34a3a082018-11-30 19:16:17 -05001568 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001569 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1570 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001571 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001572}
1573
Florin Coras134a9962018-08-28 11:32:04 -07001574static int
Florin Coras5e062572019-03-14 19:07:51 -07001575validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001576{
Florin Coras5e062572019-03-14 19:07:51 -07001577 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001578 {
Florin Coras5e062572019-03-14 19:07:51 -07001579 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1580 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001581 return VPPCOM_EBADFD;
1582 }
1583
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001584 if ((ls->session_state != STATE_LISTEN)
1585 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001586 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001587 VDBG (0,
1588 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1589 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001590 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001591 return VPPCOM_EBADFD;
1592 }
1593 return VPPCOM_OK;
1594}
1595
1596int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001597vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1598{
1599 if (!strcmp (proto_str, "TCP"))
1600 *proto = VPPCOM_PROTO_TCP;
1601 else if (!strcmp (proto_str, "tcp"))
1602 *proto = VPPCOM_PROTO_TCP;
1603 else if (!strcmp (proto_str, "UDP"))
1604 *proto = VPPCOM_PROTO_UDP;
1605 else if (!strcmp (proto_str, "udp"))
1606 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001607 else if (!strcmp (proto_str, "TLS"))
1608 *proto = VPPCOM_PROTO_TLS;
1609 else if (!strcmp (proto_str, "tls"))
1610 *proto = VPPCOM_PROTO_TLS;
1611 else if (!strcmp (proto_str, "QUIC"))
1612 *proto = VPPCOM_PROTO_QUIC;
1613 else if (!strcmp (proto_str, "quic"))
1614 *proto = VPPCOM_PROTO_QUIC;
1615 else
1616 return 1;
1617 return 0;
1618}
1619
1620int
Florin Coras134a9962018-08-28 11:32:04 -07001621vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001622 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001623{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001624 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001625 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001626 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001627 vcl_session_t *listen_session = 0;
1628 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001629 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001630 svm_msg_q_msg_t msg;
1631 session_event_t *e;
1632 u8 is_nonblocking;
1633 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001634
Florin Coras134a9962018-08-28 11:32:04 -07001635 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001636 if (!listen_session)
1637 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001638
Florin Coras134a9962018-08-28 11:32:04 -07001639 listen_session_index = listen_session->session_index;
1640 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001641 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001642
Florin Coras54693d22018-07-17 10:46:29 -07001643 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001644 {
Florin Coras54693d22018-07-17 10:46:29 -07001645 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001646 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001647 accepted_msg = evt->accepted_msg;
1648 goto handle;
1649 }
1650
1651 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1652 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001653 while (1)
1654 {
Carl Smith592a9092019-11-12 14:57:37 +13001655 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1656 return VPPCOM_EAGAIN;
1657
Florin Coras134a9962018-08-28 11:32:04 -07001658 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001659 return VPPCOM_EAGAIN;
1660
Florin Coras134a9962018-08-28 11:32:04 -07001661 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001662 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001663 {
wanghanlin96453fd2019-12-16 19:14:39 +08001664 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001665 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001666 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001667 }
Dave Barach178cf492018-11-13 16:34:13 -05001668 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001669 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001670 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001671 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001672
Florin Coras54693d22018-07-17 10:46:29 -07001673handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001674
Florin Coras00cca802019-06-06 09:38:44 -07001675 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1676 listen_session_index);
1677 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1678 return VPPCOM_ECONNABORTED;
1679
Florin Coras134a9962018-08-28 11:32:04 -07001680 listen_session = vcl_session_get (wrk, listen_session_index);
1681 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001682
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001683 if (flags & O_NONBLOCK)
1684 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001685
Florin Coras5e062572019-03-14 19:07:51 -07001686 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1687 " flags %d, is_nonblocking %u", listen_session->session_index,
1688 listen_session->vpp_handle, client_session_index,
1689 client_session->vpp_handle, flags,
1690 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001691
Dave Wallace048b1d62018-01-03 22:24:41 -05001692 if (ep)
1693 {
Florin Coras7e12d942018-06-27 14:32:43 -07001694 ep->is_ip4 = client_session->transport.is_ip4;
1695 ep->port = client_session->transport.rmt_port;
1696 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001697 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1698 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001699 else
Dave Barach178cf492018-11-13 16:34:13 -05001700 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1701 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001702 }
Dave Wallace60caa062017-11-10 17:07:13 -05001703
Florin Coras05ecfcc2018-12-12 18:19:39 -08001704 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001705 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001706 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001707 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001708 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001709 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001710 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001711 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001712 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001713 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1714 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001715
Florin Coras3c7d4f92018-12-14 11:28:43 -08001716 /*
1717 * Session might have been closed already
1718 */
1719 if (accept_flags)
1720 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001721 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001722 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001723 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001724 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001725 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001726 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001727}
1728
1729int
Florin Coras134a9962018-08-28 11:32:04 -07001730vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001731{
Florin Coras134a9962018-08-28 11:32:04 -07001732 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001733 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001734 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001735 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001736
Florin Coras134a9962018-08-28 11:32:04 -07001737 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001738 if (!session)
1739 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001740 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001741
1742 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001743 {
Florin Coras5e062572019-03-14 19:07:51 -07001744 VDBG (0, "ERROR: cannot connect epoll session %u!",
1745 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001746 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001747 }
1748
Florin Coras7e12d942018-06-27 14:32:43 -07001749 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001750 {
Florin Coras7baeb712019-01-04 17:05:43 -08001751 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001752 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001753 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001754 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001755 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001756 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001757 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001758 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001759 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001760 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001761 }
1762
Florin Coras0a1e1832020-03-29 18:54:04 +00001763 /* Attempt to connect a connectionless listener */
1764 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1765 {
1766 if (session->session_type != VPPCOM_PROTO_UDP)
1767 return VPPCOM_EINVAL;
1768 vcl_send_session_unlisten (wrk, session);
1769 session->session_state = STATE_CLOSED;
1770 }
1771
Florin Coras7e12d942018-06-27 14:32:43 -07001772 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001773 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001774 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001775 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001776 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001777
Florin Coras0a1e1832020-03-29 18:54:04 +00001778 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001779 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001780 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001781 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001782 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001783 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001784 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001785 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001786 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001787
Florin Coras458089b2019-08-21 16:20:44 -07001788 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001789
1790 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1791 return VPPCOM_EINPROGRESS;
1792
1793 /*
1794 * Wait for reply from vpp if blocking
1795 */
Florin Coras070453d2018-08-24 17:04:27 -07001796 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1797 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001798
Florin Coras134a9962018-08-28 11:32:04 -07001799 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001800 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1801 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001802
Dave Wallace4878cbe2017-11-21 03:45:09 -05001803 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001804}
1805
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001806int
1807vppcom_session_stream_connect (uint32_t session_handle,
1808 uint32_t parent_session_handle)
1809{
1810 vcl_worker_t *wrk = vcl_worker_get_current ();
1811 vcl_session_t *session, *parent_session;
1812 u32 session_index, parent_session_index;
1813 int rv;
1814
1815 session = vcl_session_get_w_handle (wrk, session_handle);
1816 if (!session)
1817 return VPPCOM_EBADFD;
1818 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1819 if (!parent_session)
1820 return VPPCOM_EBADFD;
1821
1822 session_index = session->session_index;
1823 parent_session_index = parent_session->session_index;
1824 if (PREDICT_FALSE (session->is_vep))
1825 {
1826 VDBG (0, "ERROR: cannot connect epoll session %u!",
1827 session->session_index);
1828 return VPPCOM_EBADFD;
1829 }
1830
1831 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1832 {
1833 VDBG (0, "session handle %u [0x%llx]: session already "
1834 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1835 session_handle, session->vpp_handle,
1836 parent_session_handle, parent_session->vpp_handle,
1837 vppcom_proto_str (session->session_type), session->session_state,
1838 vppcom_session_state_str (session->session_state));
1839 return VPPCOM_OK;
1840 }
1841
1842 /* Connect to quic session specifics */
1843 session->transport.is_ip4 = parent_session->transport.is_ip4;
1844 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1845 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001846 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001847
1848 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1849 session_handle, parent_session_handle, parent_session->vpp_handle);
1850
1851 /*
1852 * Send connect request and wait for reply from vpp
1853 */
Florin Coras458089b2019-08-21 16:20:44 -07001854 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001855 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1856 vcm->cfg.session_timeout);
1857
1858 session->listener_index = parent_session_index;
1859 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001860 if (parent_session)
1861 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001862
1863 session = vcl_session_get (wrk, session_index);
1864 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1865 session->vpp_handle, rv ? "failed" : "succeeded");
1866
1867 return rv;
1868}
1869
Florin Coras54693d22018-07-17 10:46:29 -07001870static u8
1871vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1872{
Florin Corasc0737e92019-03-04 14:19:39 -08001873 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001874}
1875
Steven58f464e2017-10-25 12:33:12 -07001876static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001877vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001878 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001879{
Florin Coras134a9962018-08-28 11:32:04 -07001880 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001881 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001882 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001883 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001884 svm_msg_q_msg_t msg;
1885 session_event_t *e;
1886 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001887 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001888
Florin Coras070453d2018-08-24 17:04:27 -07001889 if (PREDICT_FALSE (!buf))
1890 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001891
Florin Coras134a9962018-08-28 11:32:04 -07001892 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001893 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001894 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001895
Florin Coras6d0106e2019-01-29 20:11:58 -08001896 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001897 {
Florin Coras5e062572019-03-14 19:07:51 -07001898 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001899 s->session_index, s->vpp_handle, s->session_state,
1900 vppcom_session_state_str (s->session_state));
1901 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001902 }
1903
Florin Coras2cba8532018-09-11 16:33:36 -07001904 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001905 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001906 mq = wrk->app_event_queue;
1907 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001908 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001909
Sirshak Das28aa5392019-02-05 01:33:33 -06001910 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001911 {
Florin Coras54693d22018-07-17 10:46:29 -07001912 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001913 {
Yu Pingb2955352019-12-04 06:49:04 +08001914 if (vcl_session_is_closing (s))
1915 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001916 svm_fifo_unset_event (s->rx_fifo);
1917 return VPPCOM_EWOULDBLOCK;
1918 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001919 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001920 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001921 if (vcl_session_is_closing (s))
1922 return vcl_session_closing_error (s);
1923
Florin Corasc0737e92019-03-04 14:19:39 -08001924 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001925 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001926 if (svm_msg_q_is_empty (mq))
1927 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001928
Florin Coras54693d22018-07-17 10:46:29 -07001929 svm_msg_q_sub_w_lock (mq, &msg);
1930 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001931 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001932 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001933 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001934 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001935 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001936 }
Florin Coras54693d22018-07-17 10:46:29 -07001937
Florin Coras460dce62018-07-27 05:45:06 -07001938 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001939 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001940 else
Florin Coras99368312018-08-02 10:45:44 -07001941 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001942
Sirshak Das28aa5392019-02-05 01:33:33 -06001943 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc34118b2020-08-12 18:58:25 -07001944 {
1945 svm_fifo_unset_event (s->rx_fifo);
1946 if (!svm_fifo_is_empty_cons (rx_fifo)
1947 && svm_fifo_set_event (s->rx_fifo) && is_nonblocking)
1948 {
1949 session_event_t *e;
1950 vec_add2 (wrk->unhandled_evts_vector, e, 1);
1951 e->event_type = SESSION_IO_EVT_RX;
1952 e->session_index = s->session_index;
1953 }
1954 }
Florin Coras41c9e042018-09-11 00:10:41 -07001955
Florin Coras317b8e02019-04-17 09:57:46 -07001956 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001957 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001958 {
1959 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1960 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001961 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001962 }
1963
Florin Coras5e062572019-03-14 19:07:51 -07001964 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1965 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001966
Florin Coras54693d22018-07-17 10:46:29 -07001967 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001968}
1969
Steven58f464e2017-10-25 12:33:12 -07001970int
Florin Coras134a9962018-08-28 11:32:04 -07001971vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001972{
Florin Coras134a9962018-08-28 11:32:04 -07001973 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001974}
1975
1976static int
Florin Coras134a9962018-08-28 11:32:04 -07001977vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001978{
Florin Coras134a9962018-08-28 11:32:04 -07001979 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001980}
1981
Florin Coras2cba8532018-09-11 16:33:36 -07001982int
1983vppcom_session_read_segments (uint32_t session_handle,
1984 vppcom_data_segments_t ds)
1985{
1986 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001987 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001988 vcl_session_t *s = 0;
1989 svm_fifo_t *rx_fifo;
1990 svm_msg_q_msg_t msg;
1991 session_event_t *e;
1992 svm_msg_q_t *mq;
1993 u8 is_ct;
1994
1995 s = vcl_session_get_w_handle (wrk, session_handle);
1996 if (PREDICT_FALSE (!s || s->is_vep))
1997 return VPPCOM_EBADFD;
1998
Florin Coras6d0106e2019-01-29 20:11:58 -08001999 if (PREDICT_FALSE (!vcl_session_is_open (s)))
2000 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07002001
2002 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
2003 is_ct = vcl_session_is_ct (s);
2004 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
2005 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07002006 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07002007
Florin Coras653e43f2019-03-04 10:56:23 -08002008 if (is_ct)
2009 svm_fifo_unset_event (s->rx_fifo);
2010
Sirshak Das28aa5392019-02-05 01:33:33 -06002011 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002012 {
2013 if (is_nonblocking)
2014 {
2015 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07002016 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07002017 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002018 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07002019 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002020 if (vcl_session_is_closing (s))
2021 return vcl_session_closing_error (s);
2022
Florin Coras2cba8532018-09-11 16:33:36 -07002023 svm_fifo_unset_event (rx_fifo);
2024 svm_msg_q_lock (mq);
2025 if (svm_msg_q_is_empty (mq))
2026 svm_msg_q_wait (mq);
2027
2028 svm_msg_q_sub_w_lock (mq, &msg);
2029 e = svm_msg_q_msg_data (mq, &msg);
2030 svm_msg_q_unlock (mq);
2031 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08002032 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07002033 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07002034 }
2035 }
2036
Florin Coras88001c62019-04-24 14:44:46 -07002037 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07002038 svm_fifo_unset_event (rx_fifo);
2039
Florin Coras2cba8532018-09-11 16:33:36 -07002040 return n_read;
2041}
2042
2043void
2044vppcom_session_free_segments (uint32_t session_handle,
2045 vppcom_data_segments_t ds)
2046{
2047 vcl_worker_t *wrk = vcl_worker_get_current ();
2048 vcl_session_t *s;
2049
2050 s = vcl_session_get_w_handle (wrk, session_handle);
2051 if (PREDICT_FALSE (!s || s->is_vep))
2052 return;
2053
Florin Coras88001c62019-04-24 14:44:46 -07002054 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07002055}
2056
Florin Coras2cba8532018-09-11 16:33:36 -07002057int
2058vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
2059{
2060 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05002061 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07002062 if (first_copy < max_bytes)
2063 {
Dave Barach178cf492018-11-13 16:34:13 -05002064 clib_memcpy_fast (buf + first_copy, ds[1].data,
2065 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07002066 }
2067 return 0;
2068}
2069
Florin Coras54693d22018-07-17 10:46:29 -07002070static u8
2071vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2072{
Florin Corasc0737e92019-03-04 14:19:39 -08002073 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04002074}
2075
Florin Coras7a2abce2020-04-05 19:25:44 +00002076always_inline u8
2077vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002078{
Florin Coras7a2abce2020-04-05 19:25:44 +00002079 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2080 if (is_dgram)
2081 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2082 else
2083 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002084}
2085
2086always_inline int
2087vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2088 size_t n, u8 is_flush, u8 is_dgram)
2089{
Florin Coras6d0106e2019-01-29 20:11:58 -08002090 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002091 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07002092 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08002093 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002094 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07002095 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002096 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002097
jiangxiaomingff31ac62019-11-21 23:34:56 +08002098 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002099 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002100
Florin Coras460dce62018-07-27 05:45:06 -07002101 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002102 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002103 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2104 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002105 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002106 }
2107
Florin Coras6d0106e2019-01-29 20:11:58 -08002108 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002109 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002110 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2111 s->session_index, s->vpp_handle, s->session_state,
2112 vppcom_session_state_str (s->session_state));
2113 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002114 }
2115
Florin Coras0e88e852018-09-17 22:09:02 -07002116 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002117 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002118 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002119
Florin Coras653e43f2019-03-04 10:56:23 -08002120 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002121 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002122 {
Florin Coras54693d22018-07-17 10:46:29 -07002123 if (is_nonblocking)
2124 {
Florin Coras070453d2018-08-24 17:04:27 -07002125 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002126 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002127 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002128 {
Florin Coras2d379d82019-06-28 12:45:12 -07002129 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002130 if (vcl_session_is_closing (s))
2131 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002132 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002133 if (svm_msg_q_is_empty (mq))
2134 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002135
Florin Coras54693d22018-07-17 10:46:29 -07002136 svm_msg_q_sub_w_lock (mq, &msg);
2137 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002138 svm_msg_q_unlock (mq);
2139
Florin Coras0e88e852018-09-17 22:09:02 -07002140 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002141 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002142 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002143 }
Dave Wallace543852a2017-08-03 02:11:34 -04002144 }
Dave Wallace543852a2017-08-03 02:11:34 -04002145
Florin Coras653e43f2019-03-04 10:56:23 -08002146 et = SESSION_IO_EVT_TX;
2147 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002148 et = SESSION_IO_EVT_TX_FLUSH;
2149
Florin Coras7a2abce2020-04-05 19:25:44 +00002150 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002151 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002152 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002153 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002154 else
2155 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002156 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002157
Florin Coras14ed6df2019-03-06 21:13:42 -08002158 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002159 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2160 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002161
Florin Coras460dce62018-07-27 05:45:06 -07002162 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002163
Florin Coras6d0106e2019-01-29 20:11:58 -08002164 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2165 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002166
Florin Coras54693d22018-07-17 10:46:29 -07002167 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002168}
2169
Florin Coras42ceddb2018-12-12 10:56:01 -08002170int
2171vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2172{
Florin Coras7a2abce2020-04-05 19:25:44 +00002173 vcl_worker_t *wrk = vcl_worker_get_current ();
2174 vcl_session_t *s;
2175
2176 s = vcl_session_get_w_handle (wrk, session_handle);
2177 if (PREDICT_FALSE (!s))
2178 return VPPCOM_EBADFD;
2179
2180 return vppcom_session_write_inline (wrk, s, buf, n,
2181 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002182}
2183
Florin Corasb0f662f2018-12-27 14:51:46 -08002184int
2185vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2186{
Florin Coras7a2abce2020-04-05 19:25:44 +00002187 vcl_worker_t *wrk = vcl_worker_get_current ();
2188 vcl_session_t *s;
2189
2190 s = vcl_session_get_w_handle (wrk, session_handle);
2191 if (PREDICT_FALSE (!s))
2192 return VPPCOM_EBADFD;
2193
2194 return vppcom_session_write_inline (wrk, s, buf, n,
2195 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002196}
2197
Florin Corasc0737e92019-03-04 14:19:39 -08002198#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002199if (PREDICT_FALSE (!_s->rx_fifo)) \
2200 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002201if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2202 { \
2203 if (!vcl_session_is_ct (_s)) \
2204 { \
2205 svm_fifo_unset_event (_s->rx_fifo); \
2206 if (svm_fifo_is_empty (_s->rx_fifo)) \
2207 break; \
2208 } \
2209 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2210 { \
Florin Coras2f630182020-08-13 00:17:51 -07002211 svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
Florin Corasc0737e92019-03-04 14:19:39 -08002212 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2213 break; \
2214 } \
2215 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002216
Florin Coras86f04502018-09-12 16:08:01 -07002217static void
2218vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2219 unsigned long n_bits, unsigned long *read_map,
2220 unsigned long *write_map,
2221 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002222{
2223 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002224 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002225 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002226 u32 sid;
2227
2228 switch (e->event_type)
2229 {
Florin Corasc0737e92019-03-04 14:19:39 -08002230 case SESSION_IO_EVT_RX:
2231 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002232 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002233 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002234 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002235 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002236 if (sid < n_bits && read_map)
2237 {
David Johnsond9818dd2018-12-14 14:53:41 -05002238 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002239 *bits_set += 1;
2240 }
2241 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002242 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002243 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002244 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002245 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002246 break;
2247 if (sid < n_bits && write_map)
2248 {
David Johnsond9818dd2018-12-14 14:53:41 -05002249 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002250 *bits_set += 1;
2251 }
2252 break;
Florin Coras86f04502018-09-12 16:08:01 -07002253 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002254 session = vcl_session_accepted (wrk,
2255 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002256 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002257 break;
Florin Coras86f04502018-09-12 16:08:01 -07002258 sid = session->session_index;
2259 if (sid < n_bits && read_map)
2260 {
David Johnsond9818dd2018-12-14 14:53:41 -05002261 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002262 *bits_set += 1;
2263 }
2264 break;
2265 case SESSION_CTRL_EVT_CONNECTED:
2266 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002267 sid = vcl_session_connected_handler (wrk, connected_msg);
2268 if (sid == VCL_INVALID_SESSION_INDEX)
2269 break;
2270 if (sid < n_bits && write_map)
2271 {
2272 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2273 *bits_set += 1;
2274 }
Florin Coras86f04502018-09-12 16:08:01 -07002275 break;
2276 case SESSION_CTRL_EVT_DISCONNECTED:
2277 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002278 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2279 if (!session)
2280 break;
2281 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002282 if (sid < n_bits && except_map)
2283 {
David Johnsond9818dd2018-12-14 14:53:41 -05002284 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002285 *bits_set += 1;
2286 }
2287 break;
2288 case SESSION_CTRL_EVT_RESET:
2289 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2290 if (sid < n_bits && except_map)
2291 {
David Johnsond9818dd2018-12-14 14:53:41 -05002292 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002293 *bits_set += 1;
2294 }
2295 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002296 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2297 vcl_session_unlisten_reply_handler (wrk, e->data);
2298 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002299 case SESSION_CTRL_EVT_MIGRATED:
2300 vcl_session_migrated_handler (wrk, e->data);
2301 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002302 case SESSION_CTRL_EVT_CLEANUP:
2303 vcl_session_cleanup_handler (wrk, e->data);
2304 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002305 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2306 vcl_session_worker_update_reply_handler (wrk, e->data);
2307 break;
2308 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2309 vcl_session_req_worker_update_handler (wrk, e->data);
2310 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002311 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2312 vcl_session_app_add_segment_handler (wrk, e->data);
2313 break;
2314 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2315 vcl_session_app_del_segment_handler (wrk, e->data);
2316 break;
hanlina3a48962020-07-13 11:09:15 +08002317 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002318 vcl_worker_rpc_handler (wrk, e->data);
2319 break;
Florin Coras86f04502018-09-12 16:08:01 -07002320 default:
2321 clib_warning ("unhandled: %u", e->event_type);
2322 break;
2323 }
2324}
2325
2326static int
2327vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2328 unsigned long n_bits, unsigned long *read_map,
2329 unsigned long *write_map, unsigned long *except_map,
2330 double time_to_wait, u32 * bits_set)
2331{
Florin Coras99368312018-08-02 10:45:44 -07002332 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002333 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002334 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002335
2336 svm_msg_q_lock (mq);
2337 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002338 {
Florin Coras54693d22018-07-17 10:46:29 -07002339 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002340 {
Florin Coras54693d22018-07-17 10:46:29 -07002341 svm_msg_q_unlock (mq);
2342 return 0;
2343 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002344
Florin Coras54693d22018-07-17 10:46:29 -07002345 if (!time_to_wait)
2346 {
2347 svm_msg_q_unlock (mq);
2348 return 0;
2349 }
2350 else if (time_to_wait < 0)
2351 {
2352 svm_msg_q_wait (mq);
2353 }
2354 else
2355 {
2356 if (svm_msg_q_timedwait (mq, time_to_wait))
2357 {
2358 svm_msg_q_unlock (mq);
2359 return 0;
2360 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002361 }
2362 }
Florin Corase003a1b2019-06-05 10:47:16 -07002363 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002364 svm_msg_q_unlock (mq);
2365
Florin Coras134a9962018-08-28 11:32:04 -07002366 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002367 {
Florin Coras134a9962018-08-28 11:32:04 -07002368 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002369 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002370 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2371 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002372 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002373 }
Florin Coras134a9962018-08-28 11:32:04 -07002374 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002375 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002376 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002377}
2378
Florin Coras99368312018-08-02 10:45:44 -07002379static int
Florin Coras294afe22019-01-07 17:49:17 -08002380vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2381 vcl_si_set * read_map, vcl_si_set * write_map,
2382 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002383 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002384{
Florin Coras14ed6df2019-03-06 21:13:42 -08002385 double wait = 0, start = 0;
2386
2387 if (!*bits_set)
2388 {
2389 wait = time_to_wait;
2390 start = clib_time_now (&wrk->clib_time);
2391 }
2392
2393 do
2394 {
2395 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2396 write_map, except_map, wait, bits_set);
2397 if (*bits_set)
2398 return *bits_set;
2399 if (wait == -1)
2400 continue;
2401
2402 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2403 }
2404 while (wait > 0);
2405
2406 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002407}
2408
2409static int
Florin Coras294afe22019-01-07 17:49:17 -08002410vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2411 vcl_si_set * read_map, vcl_si_set * write_map,
2412 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002413 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002414{
2415 vcl_mq_evt_conn_t *mqc;
2416 int __clib_unused n_read;
2417 int n_mq_evts, i;
2418 u64 buf;
2419
Florin Coras134a9962018-08-28 11:32:04 -07002420 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2421 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2422 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002423 for (i = 0; i < n_mq_evts; i++)
2424 {
Florin Coras134a9962018-08-28 11:32:04 -07002425 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002426 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002427 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002428 except_map, 0, bits_set);
2429 }
2430
2431 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2432}
2433
Dave Wallace543852a2017-08-03 02:11:34 -04002434int
Florin Coras294afe22019-01-07 17:49:17 -08002435vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2436 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002437{
Florin Coras54693d22018-07-17 10:46:29 -07002438 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002439 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002440 vcl_session_t *session = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002441 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002442
Dave Wallace7876d392017-10-19 03:53:57 -04002443 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002444 {
Florin Coras134a9962018-08-28 11:32:04 -07002445 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002446 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002447 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2448 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002449 }
Dave Wallace7876d392017-10-19 03:53:57 -04002450 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002451 {
Florin Coras134a9962018-08-28 11:32:04 -07002452 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002453 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002454 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2455 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002456 }
Dave Wallace7876d392017-10-19 03:53:57 -04002457 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002458 {
Florin Coras134a9962018-08-28 11:32:04 -07002459 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002460 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002461 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2462 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002463 }
2464
Florin Coras54693d22018-07-17 10:46:29 -07002465 if (!n_bits)
2466 return 0;
2467
2468 if (!write_map)
2469 goto check_rd;
2470
2471 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002472 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2473 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002474 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002475 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2476 bits_set++;
2477 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002478 }
2479
Florin Coras5e6222a2020-04-24 17:09:25 +00002480 if (vcl_session_write_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002481 {
David Johnsond9818dd2018-12-14 14:53:41 -05002482 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002483 bits_set++;
2484 }
Florin Coras294afe22019-01-07 17:49:17 -08002485 else
Florin Coras2d379d82019-06-28 12:45:12 -07002486 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002487 }));
2488
2489check_rd:
2490 if (!read_map)
2491 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002492
Florin Coras134a9962018-08-28 11:32:04 -07002493 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2494 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002495 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002496 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2497 bits_set++;
2498 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002499 }
2500
Florin Coras5e6222a2020-04-24 17:09:25 +00002501 if (vcl_session_read_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002502 {
David Johnsond9818dd2018-12-14 14:53:41 -05002503 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002504 bits_set++;
2505 }
2506 }));
2507 /* *INDENT-ON* */
2508
2509check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002510
Florin Coras86f04502018-09-12 16:08:01 -07002511 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2512 {
2513 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2514 read_map, write_map, except_map, &bits_set);
2515 }
2516 vec_reset_length (wrk->unhandled_evts_vector);
2517
Florin Coras99368312018-08-02 10:45:44 -07002518 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002519 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002520 time_to_wait, &bits_set);
2521 else
Florin Coras134a9962018-08-28 11:32:04 -07002522 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002523 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002524
Dave Wallace543852a2017-08-03 02:11:34 -04002525 return (bits_set);
2526}
2527
Dave Wallacef7f809c2017-10-03 01:48:42 -04002528static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002529vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002530{
Florin Coras7e12d942018-06-27 14:32:43 -07002531 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002532 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002533 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002534
Florin Corasc0737e92019-03-04 14:19:39 -08002535 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002536 return;
2537
Florin Coras7e5e62b2019-07-30 14:08:23 -07002538 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002539 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002540 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002541 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002542 goto done;
2543 }
2544 if (PREDICT_FALSE (!session->is_vep))
2545 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002546 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002547 goto done;
2548 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002549 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002550 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002551 "{\n"
2552 " is_vep = %u\n"
2553 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002554 " next_sh = 0x%x (%u)\n"
2555 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002556 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002557
Florin Coras7e5e62b2019-07-30 14:08:23 -07002558 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002559 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002560 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002561 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002562 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002563 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002564 goto done;
2565 }
2566 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002567 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002568 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002569 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002570 else if (PREDICT_FALSE (!session->is_vep_session))
2571 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002572 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002573 goto done;
2574 }
2575 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002576 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2577 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2578 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002579 if (session->is_vep_session)
2580 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002581 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002582 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002583 " next_sh = 0x%x (%u)\n"
2584 " prev_sh = 0x%x (%u)\n"
2585 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002586 " ev.events = 0x%x\n"
2587 " ev.data.u64 = 0x%llx\n"
2588 " et_mask = 0x%x\n"
2589 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002590 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002591 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2592 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002593 }
2594 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002595
2596done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002597 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002598}
2599
2600int
2601vppcom_epoll_create (void)
2602{
Florin Coras134a9962018-08-28 11:32:04 -07002603 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002604 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002605
Florin Coras134a9962018-08-28 11:32:04 -07002606 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002607
2608 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002609 vep_session->vep.vep_sh = ~0;
2610 vep_session->vep.next_sh = ~0;
2611 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002612 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002613
Florin Corasa7a1a222018-12-30 17:11:31 -08002614 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2615 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002616
Florin Corasab2f6db2018-08-31 14:31:41 -07002617 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002618}
2619
2620int
Florin Coras134a9962018-08-28 11:32:04 -07002621vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002622 struct epoll_event *event)
2623{
Florin Coras134a9962018-08-28 11:32:04 -07002624 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002625 vcl_session_t *vep_session;
2626 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002627 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002628
Florin Coras134a9962018-08-28 11:32:04 -07002629 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002630 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002631 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002632 return VPPCOM_EINVAL;
2633 }
2634
Florin Coras134a9962018-08-28 11:32:04 -07002635 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002636 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002637 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002638 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002639 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002640 }
2641 if (PREDICT_FALSE (!vep_session->is_vep))
2642 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002643 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002644 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002645 }
2646
Florin Coras134a9962018-08-28 11:32:04 -07002647 ASSERT (vep_session->vep.vep_sh == ~0);
2648 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002649
Florin Coras134a9962018-08-28 11:32:04 -07002650 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002651 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002652 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002653 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002654 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002655 }
2656 if (PREDICT_FALSE (session->is_vep))
2657 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002658 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002659 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002660 }
2661
2662 switch (op)
2663 {
2664 case EPOLL_CTL_ADD:
2665 if (PREDICT_FALSE (!event))
2666 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002667 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002668 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002669 }
Florin Coras134a9962018-08-28 11:32:04 -07002670 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002671 {
Florin Coras7e12d942018-06-27 14:32:43 -07002672 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002673 next_session = vcl_session_get_w_handle (wrk,
2674 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002675 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002676 {
Florin Coras5e062572019-03-14 19:07:51 -07002677 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002678 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002679 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002680 }
Florin Coras134a9962018-08-28 11:32:04 -07002681 ASSERT (next_session->vep.prev_sh == vep_handle);
2682 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002683 }
Florin Coras134a9962018-08-28 11:32:04 -07002684 session->vep.next_sh = vep_session->vep.next_sh;
2685 session->vep.prev_sh = vep_handle;
2686 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002687 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2688 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002689 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002690 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002691 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002692
Florin Coras1bcad5c2019-01-09 20:04:38 -08002693 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002694 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2695 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002696
Florin Coras6e3c1f82020-01-15 01:30:46 +00002697 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002698 if ((event->events & EPOLLOUT) &&
2699 (vcl_session_write_ready (session) > 0))
2700 {
2701 session_event_t e = { 0 };
2702 e.event_type = SESSION_IO_EVT_TX;
2703 e.session_index = session->session_index;
2704 vec_add1 (wrk->unhandled_evts_vector, e);
2705 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002706 /* Generate EPOLLIN if rx fifo has data */
2707 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2708 {
2709 session_event_t e = { 0 };
2710 e.event_type = SESSION_IO_EVT_RX;
2711 e.session_index = session->session_index;
2712 vec_add1 (wrk->unhandled_evts_vector, e);
2713 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002714 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2715 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002716 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002717 break;
2718
2719 case EPOLL_CTL_MOD:
2720 if (PREDICT_FALSE (!event))
2721 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002722 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002723 rv = VPPCOM_EINVAL;
2724 goto done;
2725 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002726 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002727 {
Florin Coras5e062572019-03-14 19:07:51 -07002728 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002729 rv = VPPCOM_EINVAL;
2730 goto done;
2731 }
Florin Coras134a9962018-08-28 11:32:04 -07002732 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002733 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002734 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2735 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002736 rv = VPPCOM_EINVAL;
2737 goto done;
2738 }
hanlin475c9d72019-12-26 11:44:28 +08002739
2740 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2741 if ((event->events & EPOLLOUT) &&
2742 !(session->vep.ev.events & EPOLLOUT) &&
2743 (vcl_session_write_ready (session) > 0))
2744 {
2745 session_event_t e = { 0 };
2746 e.event_type = SESSION_IO_EVT_TX;
2747 e.session_index = session->session_index;
2748 vec_add1 (wrk->unhandled_evts_vector, e);
2749 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002750 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2751 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002752 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2753 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002754 break;
2755
2756 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002757 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002758 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002759 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002760 rv = VPPCOM_EINVAL;
2761 goto done;
2762 }
Florin Coras134a9962018-08-28 11:32:04 -07002763 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002764 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002765 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2766 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002767 rv = VPPCOM_EINVAL;
2768 goto done;
2769 }
2770
Florin Coras134a9962018-08-28 11:32:04 -07002771 if (session->vep.prev_sh == vep_handle)
2772 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002773 else
2774 {
Florin Coras7e12d942018-06-27 14:32:43 -07002775 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002776 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002777 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002778 {
Florin Coras5e062572019-03-14 19:07:51 -07002779 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002780 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002781 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002782 }
Florin Coras134a9962018-08-28 11:32:04 -07002783 ASSERT (prev_session->vep.next_sh == session_handle);
2784 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002785 }
Florin Coras134a9962018-08-28 11:32:04 -07002786 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002787 {
Florin Coras7e12d942018-06-27 14:32:43 -07002788 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002789 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002790 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002791 {
Florin Coras5e062572019-03-14 19:07:51 -07002792 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002793 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002794 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002795 }
Florin Coras134a9962018-08-28 11:32:04 -07002796 ASSERT (next_session->vep.prev_sh == session_handle);
2797 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002798 }
2799
2800 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002801 session->vep.next_sh = ~0;
2802 session->vep.prev_sh = ~0;
2803 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002804 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002805
2806 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002807 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002808
Florin Coras5e062572019-03-14 19:07:51 -07002809 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002810 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002811 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002812 break;
2813
2814 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002815 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002816 rv = VPPCOM_EINVAL;
2817 }
2818
Florin Coras134a9962018-08-28 11:32:04 -07002819 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002820
2821done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002822 return rv;
2823}
2824
Florin Coras86f04502018-09-12 16:08:01 -07002825static inline void
2826vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2827 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002828{
2829 session_disconnected_msg_t *disconnected_msg;
2830 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002831 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002832 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002833 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002834 u8 add_event = 0;
2835
2836 switch (e->event_type)
2837 {
Florin Coras653e43f2019-03-04 10:56:23 -08002838 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002839 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002840 session = vcl_session_get (wrk, sid);
2841 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002842 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002843 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002844 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002845 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002846 break;
2847 add_event = 1;
2848 events[*num_ev].events |= EPOLLIN;
2849 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002850 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002851 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002852 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002853 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002854 session = vcl_session_get (wrk, sid);
2855 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002856 break;
Florin Coras86f04502018-09-12 16:08:01 -07002857 session_events = session->vep.ev.events;
2858 if (!(EPOLLOUT & session_events))
2859 break;
2860 add_event = 1;
2861 events[*num_ev].events |= EPOLLOUT;
2862 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002863 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002864 break;
Florin Coras86f04502018-09-12 16:08:01 -07002865 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002866 session = vcl_session_accepted (wrk,
2867 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002868 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002869 break;
Florin Coras86f04502018-09-12 16:08:01 -07002870
Florin Coras86f04502018-09-12 16:08:01 -07002871 session_events = session->vep.ev.events;
2872 if (!(EPOLLIN & session_events))
2873 break;
2874
2875 add_event = 1;
2876 events[*num_ev].events |= EPOLLIN;
2877 session_evt_data = session->vep.ev.data.u64;
2878 break;
2879 case SESSION_CTRL_EVT_CONNECTED:
2880 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002881 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002882 /* Generate EPOLLOUT because there's no connected event */
Florin Coras080aa502020-05-26 00:47:52 +00002883 session = vcl_session_get (wrk, sid);
2884 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002885 break;
Florin Coras86f04502018-09-12 16:08:01 -07002886 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002887 if (!(EPOLLOUT & session_events))
2888 break;
2889 add_event = 1;
2890 events[*num_ev].events |= EPOLLOUT;
2891 session_evt_data = session->vep.ev.data.u64;
Florin Corasadcfb152020-02-12 08:50:29 +00002892 if (session->session_state & STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002893 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002894 break;
2895 case SESSION_CTRL_EVT_DISCONNECTED:
2896 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002897 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Coras080aa502020-05-26 00:47:52 +00002898 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002899 break;
Florin Coras72f77822019-01-22 19:05:52 -08002900 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002901 add_event = 1;
2902 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2903 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002904 break;
2905 case SESSION_CTRL_EVT_RESET:
2906 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras080aa502020-05-26 00:47:52 +00002907 session = vcl_session_get (wrk, sid);
2908 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002909 break;
Florin Coras72f77822019-01-22 19:05:52 -08002910 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002911 add_event = 1;
2912 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2913 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002914 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002915 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2916 vcl_session_unlisten_reply_handler (wrk, e->data);
2917 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002918 case SESSION_CTRL_EVT_MIGRATED:
2919 vcl_session_migrated_handler (wrk, e->data);
2920 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002921 case SESSION_CTRL_EVT_CLEANUP:
2922 vcl_session_cleanup_handler (wrk, e->data);
2923 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002924 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2925 vcl_session_req_worker_update_handler (wrk, e->data);
2926 break;
2927 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2928 vcl_session_worker_update_reply_handler (wrk, e->data);
2929 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002930 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2931 vcl_session_app_add_segment_handler (wrk, e->data);
2932 break;
2933 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2934 vcl_session_app_del_segment_handler (wrk, e->data);
2935 break;
hanlina3a48962020-07-13 11:09:15 +08002936 case SESSION_CTRL_EVT_APP_WRK_RPC:
Florin Coras40c07ce2020-07-16 20:46:17 -07002937 vcl_worker_rpc_handler (wrk, e->data);
2938 break;
Florin Coras86f04502018-09-12 16:08:01 -07002939 default:
2940 VDBG (0, "unhandled: %u", e->event_type);
2941 break;
2942 }
2943
2944 if (add_event)
2945 {
2946 events[*num_ev].data.u64 = session_evt_data;
2947 if (EPOLLONESHOT & session_events)
2948 {
2949 session = vcl_session_get (wrk, sid);
2950 session->vep.ev.events = 0;
2951 }
2952 *num_ev += 1;
2953 }
2954}
2955
2956static int
2957vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2958 struct epoll_event *events, u32 maxevents,
2959 double wait_for_time, u32 * num_ev)
2960{
Florin Coras99368312018-08-02 10:45:44 -07002961 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002962 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002963 int i;
2964
Florin Coras539663c2018-09-28 14:59:37 -07002965 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2966 goto handle_dequeued;
2967
Florin Coras54693d22018-07-17 10:46:29 -07002968 svm_msg_q_lock (mq);
2969 if (svm_msg_q_is_empty (mq))
2970 {
2971 if (!wait_for_time)
2972 {
2973 svm_msg_q_unlock (mq);
2974 return 0;
2975 }
2976 else if (wait_for_time < 0)
2977 {
2978 svm_msg_q_wait (mq);
2979 }
2980 else
2981 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002982 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002983 {
2984 svm_msg_q_unlock (mq);
2985 return 0;
2986 }
2987 }
2988 }
Florin Corase003a1b2019-06-05 10:47:16 -07002989 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08002990 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002991 svm_msg_q_unlock (mq);
2992
Florin Coras539663c2018-09-28 14:59:37 -07002993handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002994 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002995 {
Florin Coras134a9962018-08-28 11:32:04 -07002996 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002997 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08002998 if (*num_ev < maxevents)
2999 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
3000 else
3001 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07003002 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07003003 }
Florin Corasaa27eb92018-10-13 12:20:01 -07003004 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08003005 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07003006 return *num_ev;
3007}
3008
Florin Coras99368312018-08-02 10:45:44 -07003009static int
Florin Coras134a9962018-08-28 11:32:04 -07003010vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07003011 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07003012{
Florin Corase003a1b2019-06-05 10:47:16 -07003013 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08003014
3015 if (!n_evts)
3016 {
3017 wait = wait_for_time;
3018 start = clib_time_now (&wrk->clib_time);
3019 }
3020
3021 do
3022 {
3023 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
3024 wait, &n_evts);
3025 if (n_evts)
3026 return n_evts;
3027 if (wait == -1)
3028 continue;
3029
Florin Corase003a1b2019-06-05 10:47:16 -07003030 now = clib_time_now (&wrk->clib_time);
Florin Coras0edfb1a2020-08-04 22:45:45 -07003031 wait -= (now - start) * 1e3;
Florin Corase003a1b2019-06-05 10:47:16 -07003032 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08003033 }
3034 while (wait > 0);
3035
3036 return 0;
Florin Coras99368312018-08-02 10:45:44 -07003037}
3038
3039static int
Florin Coras134a9962018-08-28 11:32:04 -07003040vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07003041 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07003042{
3043 vcl_mq_evt_conn_t *mqc;
3044 int __clib_unused n_read;
3045 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07003046 u64 buf;
3047
Florin Coras134a9962018-08-28 11:32:04 -07003048 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07003049again:
Florin Coras134a9962018-08-28 11:32:04 -07003050 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
3051 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07003052 for (i = 0; i < n_mq_evts; i++)
3053 {
Florin Coras134a9962018-08-28 11:32:04 -07003054 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07003055 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07003056 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07003057 }
Florin Corasa4878ed2018-10-12 13:09:36 -07003058 if (!n_evts && n_mq_evts > 0)
3059 goto again;
Florin Coras99368312018-08-02 10:45:44 -07003060
3061 return (int) n_evts;
3062}
3063
Dave Wallacef7f809c2017-10-03 01:48:42 -04003064int
Florin Coras134a9962018-08-28 11:32:04 -07003065vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003066 int maxevents, double wait_for_time)
3067{
Florin Coras134a9962018-08-28 11:32:04 -07003068 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003069 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07003070 u32 n_evts = 0;
3071 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003072
3073 if (PREDICT_FALSE (maxevents <= 0))
3074 {
Florin Coras5e062572019-03-14 19:07:51 -07003075 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003076 return VPPCOM_EINVAL;
3077 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003078
Florin Coras134a9962018-08-28 11:32:04 -07003079 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003080 if (!vep_session)
3081 return VPPCOM_EBADFD;
3082
Florin Coras54693d22018-07-17 10:46:29 -07003083 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003084 {
Florin Coras5e062572019-03-14 19:07:51 -07003085 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003086 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003087 }
Florin Coras54693d22018-07-17 10:46:29 -07003088
3089 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003090
Florin Coras86f04502018-09-12 16:08:01 -07003091 if (vec_len (wrk->unhandled_evts_vector))
3092 {
3093 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3094 {
3095 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3096 events, &n_evts);
3097 if (n_evts == maxevents)
3098 {
Florin Corase003a1b2019-06-05 10:47:16 -07003099 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3100 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003101 }
3102 }
Florin Corase003a1b2019-06-05 10:47:16 -07003103 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003104 }
3105
3106 if (vcm->cfg.use_mq_eventfd)
3107 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3108 wait_for_time);
3109
3110 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3111 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003112}
3113
Dave Wallace35830af2017-10-09 01:43:42 -04003114int
Florin Coras134a9962018-08-28 11:32:04 -07003115vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003116 void *buffer, uint32_t * buflen)
3117{
Florin Coras134a9962018-08-28 11:32:04 -07003118 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003119 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04003120 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08003121 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003122 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04003123
Florin Coras134a9962018-08-28 11:32:04 -07003124 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003125 if (!session)
3126 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003127
Dave Wallace35830af2017-10-09 01:43:42 -04003128 switch (op)
3129 {
3130 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003131 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003132 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3133 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003134 break;
3135
Dave Wallace227867f2017-11-13 21:21:53 -05003136 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003137 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003138 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3139 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003140 break;
3141
3142 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003143 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003144 {
Simon Zhang53ec9672020-08-07 05:20:47 +08003145 *flags =
3146 O_RDWR |
3147 (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK) ?
3148 O_NONBLOCK : 0);
Dave Wallace35830af2017-10-09 01:43:42 -04003149 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003150 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3151 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003152 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003153 }
3154 else
3155 rv = VPPCOM_EINVAL;
3156 break;
3157
3158 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003159 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003160 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003161 if (*flags & O_NONBLOCK)
3162 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3163 else
3164 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3165
Florin Coras5e062572019-03-14 19:07:51 -07003166 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3167 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003168 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003169 }
3170 else
3171 rv = VPPCOM_EINVAL;
3172 break;
3173
3174 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003175 if (PREDICT_TRUE (buffer && buflen &&
3176 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003177 {
Florin Coras7e12d942018-06-27 14:32:43 -07003178 ep->is_ip4 = session->transport.is_ip4;
3179 ep->port = session->transport.rmt_port;
3180 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003181 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3182 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003183 else
Dave Barach178cf492018-11-13 16:34:13 -05003184 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3185 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003186 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003187 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3188 "addr = %U, port %u", session_handle, ep->is_ip4,
3189 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003190 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3191 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003192 }
3193 else
3194 rv = VPPCOM_EINVAL;
3195 break;
3196
3197 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003198 if (PREDICT_TRUE (buffer && buflen &&
3199 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003200 {
Florin Coras7e12d942018-06-27 14:32:43 -07003201 ep->is_ip4 = session->transport.is_ip4;
3202 ep->port = session->transport.lcl_port;
3203 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003204 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3205 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003206 else
Dave Barach178cf492018-11-13 16:34:13 -05003207 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3208 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003209 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003210 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3211 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003212 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003213 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3214 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003215 }
3216 else
3217 rv = VPPCOM_EINVAL;
3218 break;
Stevenb5a11602017-10-11 09:59:30 -07003219
Florin Corasef7cbf62019-10-17 09:56:27 -07003220 case VPPCOM_ATTR_SET_LCL_ADDR:
3221 if (PREDICT_TRUE (buffer && buflen &&
3222 (*buflen >= sizeof (*ep)) && ep->ip))
3223 {
3224 session->transport.is_ip4 = ep->is_ip4;
3225 session->transport.lcl_port = ep->port;
3226 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3227 *buflen = sizeof (*ep);
3228 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3229 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3230 &session->transport.lcl_ip,
3231 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3232 clib_net_to_host_u16 (ep->port));
3233 }
3234 else
3235 rv = VPPCOM_EINVAL;
3236 break;
3237
Dave Wallace048b1d62018-01-03 22:24:41 -05003238 case VPPCOM_ATTR_GET_LIBC_EPFD:
3239 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003240 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003241 break;
3242
3243 case VPPCOM_ATTR_SET_LIBC_EPFD:
3244 if (PREDICT_TRUE (buffer && buflen &&
3245 (*buflen == sizeof (session->libc_epfd))))
3246 {
3247 session->libc_epfd = *(int *) buffer;
3248 *buflen = sizeof (session->libc_epfd);
3249
Florin Coras5e062572019-03-14 19:07:51 -07003250 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3251 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003252 }
3253 else
3254 rv = VPPCOM_EINVAL;
3255 break;
3256
3257 case VPPCOM_ATTR_GET_PROTOCOL:
3258 if (buffer && buflen && (*buflen >= sizeof (int)))
3259 {
Florin Coras7e12d942018-06-27 14:32:43 -07003260 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003261 *buflen = sizeof (int);
3262
Florin Coras5e062572019-03-14 19:07:51 -07003263 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3264 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003265 }
3266 else
3267 rv = VPPCOM_EINVAL;
3268 break;
3269
3270 case VPPCOM_ATTR_GET_LISTEN:
3271 if (buffer && buflen && (*buflen >= sizeof (int)))
3272 {
3273 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3274 VCL_SESS_ATTR_LISTEN);
3275 *buflen = sizeof (int);
3276
Florin Coras5e062572019-03-14 19:07:51 -07003277 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3278 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003279 }
3280 else
3281 rv = VPPCOM_EINVAL;
3282 break;
3283
3284 case VPPCOM_ATTR_GET_ERROR:
3285 if (buffer && buflen && (*buflen >= sizeof (int)))
3286 {
3287 *(int *) buffer = 0;
3288 *buflen = sizeof (int);
3289
Florin Coras5e062572019-03-14 19:07:51 -07003290 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3291 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003292 }
3293 else
3294 rv = VPPCOM_EINVAL;
3295 break;
3296
3297 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3298 if (buffer && buflen && (*buflen >= sizeof (u32)))
3299 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003300
3301 /* VPP-TBD */
3302 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003303 session->tx_fifo ?
3304 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003305 vcm->cfg.tx_fifo_size);
3306 *buflen = sizeof (u32);
3307
Florin Coras5e062572019-03-14 19:07:51 -07003308 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3309 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3310 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003311 }
3312 else
3313 rv = VPPCOM_EINVAL;
3314 break;
3315
3316 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3317 if (buffer && buflen && (*buflen == sizeof (u32)))
3318 {
3319 /* VPP-TBD */
3320 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003321 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3322 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3323 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003324 }
3325 else
3326 rv = VPPCOM_EINVAL;
3327 break;
3328
3329 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3330 if (buffer && buflen && (*buflen >= sizeof (u32)))
3331 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003332
3333 /* VPP-TBD */
3334 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003335 session->rx_fifo ?
3336 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003337 vcm->cfg.rx_fifo_size);
3338 *buflen = sizeof (u32);
3339
Florin Coras5e062572019-03-14 19:07:51 -07003340 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3341 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003342 }
3343 else
3344 rv = VPPCOM_EINVAL;
3345 break;
3346
3347 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3348 if (buffer && buflen && (*buflen == sizeof (u32)))
3349 {
3350 /* VPP-TBD */
3351 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003352 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3353 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3354 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003355 }
3356 else
3357 rv = VPPCOM_EINVAL;
3358 break;
3359
3360 case VPPCOM_ATTR_GET_REUSEADDR:
3361 if (buffer && buflen && (*buflen >= sizeof (int)))
3362 {
3363 /* VPP-TBD */
3364 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3365 VCL_SESS_ATTR_REUSEADDR);
3366 *buflen = sizeof (int);
3367
Florin Coras5e062572019-03-14 19:07:51 -07003368 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3369 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003370 }
3371 else
3372 rv = VPPCOM_EINVAL;
3373 break;
3374
Stevenb5a11602017-10-11 09:59:30 -07003375 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003376 if (buffer && buflen && (*buflen == sizeof (int)) &&
3377 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3378 {
3379 /* VPP-TBD */
3380 if (*(int *) buffer)
3381 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3382 else
3383 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3384
Florin Coras5e062572019-03-14 19:07:51 -07003385 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3386 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3387 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003388 }
3389 else
3390 rv = VPPCOM_EINVAL;
3391 break;
3392
3393 case VPPCOM_ATTR_GET_REUSEPORT:
3394 if (buffer && buflen && (*buflen >= sizeof (int)))
3395 {
3396 /* VPP-TBD */
3397 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3398 VCL_SESS_ATTR_REUSEPORT);
3399 *buflen = sizeof (int);
3400
Florin Coras5e062572019-03-14 19:07:51 -07003401 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3402 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003403 }
3404 else
3405 rv = VPPCOM_EINVAL;
3406 break;
3407
3408 case VPPCOM_ATTR_SET_REUSEPORT:
3409 if (buffer && buflen && (*buflen == sizeof (int)) &&
3410 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3411 {
3412 /* VPP-TBD */
3413 if (*(int *) buffer)
3414 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3415 else
3416 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3417
Florin Coras5e062572019-03-14 19:07:51 -07003418 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3419 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3420 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003421 }
3422 else
3423 rv = VPPCOM_EINVAL;
3424 break;
3425
3426 case VPPCOM_ATTR_GET_BROADCAST:
3427 if (buffer && buflen && (*buflen >= sizeof (int)))
3428 {
3429 /* VPP-TBD */
3430 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3431 VCL_SESS_ATTR_BROADCAST);
3432 *buflen = sizeof (int);
3433
Florin Coras5e062572019-03-14 19:07:51 -07003434 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3435 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003436 }
3437 else
3438 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003439 break;
3440
3441 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003442 if (buffer && buflen && (*buflen == sizeof (int)))
3443 {
3444 /* VPP-TBD */
3445 if (*(int *) buffer)
3446 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3447 else
3448 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3449
Florin Coras5e062572019-03-14 19:07:51 -07003450 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3451 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3452 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003453 }
3454 else
3455 rv = VPPCOM_EINVAL;
3456 break;
3457
3458 case VPPCOM_ATTR_GET_V6ONLY:
3459 if (buffer && buflen && (*buflen >= sizeof (int)))
3460 {
3461 /* VPP-TBD */
3462 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3463 VCL_SESS_ATTR_V6ONLY);
3464 *buflen = sizeof (int);
3465
Florin Coras5e062572019-03-14 19:07:51 -07003466 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3467 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003468 }
3469 else
3470 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003471 break;
3472
3473 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003474 if (buffer && buflen && (*buflen == sizeof (int)))
3475 {
3476 /* VPP-TBD */
3477 if (*(int *) buffer)
3478 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3479 else
3480 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3481
Florin Coras5e062572019-03-14 19:07:51 -07003482 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3483 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3484 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003485 }
3486 else
3487 rv = VPPCOM_EINVAL;
3488 break;
3489
3490 case VPPCOM_ATTR_GET_KEEPALIVE:
3491 if (buffer && buflen && (*buflen >= sizeof (int)))
3492 {
3493 /* VPP-TBD */
3494 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3495 VCL_SESS_ATTR_KEEPALIVE);
3496 *buflen = sizeof (int);
3497
Florin Coras5e062572019-03-14 19:07:51 -07003498 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3499 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003500 }
3501 else
3502 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003503 break;
Stevenbccd3392017-10-12 20:42:21 -07003504
3505 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003506 if (buffer && buflen && (*buflen == sizeof (int)))
3507 {
3508 /* VPP-TBD */
3509 if (*(int *) buffer)
3510 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3511 else
3512 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3513
Florin Coras5e062572019-03-14 19:07:51 -07003514 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3515 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3516 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003517 }
3518 else
3519 rv = VPPCOM_EINVAL;
3520 break;
3521
3522 case VPPCOM_ATTR_GET_TCP_NODELAY:
3523 if (buffer && buflen && (*buflen >= sizeof (int)))
3524 {
3525 /* VPP-TBD */
3526 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3527 VCL_SESS_ATTR_TCP_NODELAY);
3528 *buflen = sizeof (int);
3529
Florin Coras5e062572019-03-14 19:07:51 -07003530 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3531 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003532 }
3533 else
3534 rv = VPPCOM_EINVAL;
3535 break;
3536
3537 case VPPCOM_ATTR_SET_TCP_NODELAY:
3538 if (buffer && buflen && (*buflen == sizeof (int)))
3539 {
3540 /* VPP-TBD */
3541 if (*(int *) buffer)
3542 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3543 else
3544 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3545
Florin Coras5e062572019-03-14 19:07:51 -07003546 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3547 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3548 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003549 }
3550 else
3551 rv = VPPCOM_EINVAL;
3552 break;
3553
3554 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3555 if (buffer && buflen && (*buflen >= sizeof (int)))
3556 {
3557 /* VPP-TBD */
3558 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3559 VCL_SESS_ATTR_TCP_KEEPIDLE);
3560 *buflen = sizeof (int);
3561
Florin Coras5e062572019-03-14 19:07:51 -07003562 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3563 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003564 }
3565 else
3566 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003567 break;
3568
3569 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003570 if (buffer && buflen && (*buflen == sizeof (int)))
3571 {
3572 /* VPP-TBD */
3573 if (*(int *) buffer)
3574 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3575 else
3576 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3577
Florin Coras5e062572019-03-14 19:07:51 -07003578 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003579 VCL_SESS_ATTR_TEST (session->attr,
3580 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003581 }
3582 else
3583 rv = VPPCOM_EINVAL;
3584 break;
3585
3586 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3587 if (buffer && buflen && (*buflen >= sizeof (int)))
3588 {
3589 /* VPP-TBD */
3590 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3591 VCL_SESS_ATTR_TCP_KEEPINTVL);
3592 *buflen = sizeof (int);
3593
Florin Coras5e062572019-03-14 19:07:51 -07003594 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3595 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003596 }
3597 else
3598 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003599 break;
3600
3601 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003602 if (buffer && buflen && (*buflen == sizeof (int)))
3603 {
3604 /* VPP-TBD */
3605 if (*(int *) buffer)
3606 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3607 else
3608 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3609
Florin Coras5e062572019-03-14 19:07:51 -07003610 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003611 VCL_SESS_ATTR_TEST (session->attr,
3612 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003613 }
3614 else
3615 rv = VPPCOM_EINVAL;
3616 break;
3617
3618 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3619 if (buffer && buflen && (*buflen >= sizeof (u32)))
3620 {
3621 /* VPP-TBD */
3622 *(u32 *) buffer = session->user_mss;
3623 *buflen = sizeof (int);
3624
Florin Coras5e062572019-03-14 19:07:51 -07003625 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3626 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003627 }
3628 else
3629 rv = VPPCOM_EINVAL;
3630 break;
3631
3632 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3633 if (buffer && buflen && (*buflen == sizeof (u32)))
3634 {
3635 /* VPP-TBD */
3636 session->user_mss = *(u32 *) buffer;
3637
Florin Coras5e062572019-03-14 19:07:51 -07003638 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3639 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003640 }
3641 else
3642 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003643 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003644
Florin Coras7baeb712019-01-04 17:05:43 -08003645 case VPPCOM_ATTR_SET_SHUT:
3646 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3647 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3648 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3649 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3650 break;
3651
3652 case VPPCOM_ATTR_GET_SHUT:
3653 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3654 tmp_flags = 1;
3655 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3656 tmp_flags |= 2;
3657 if (tmp_flags == 1)
3658 *(int *) buffer = SHUT_RD;
3659 else if (tmp_flags == 2)
3660 *(int *) buffer = SHUT_WR;
3661 else if (tmp_flags == 3)
3662 *(int *) buffer = SHUT_RDWR;
3663 *buflen = sizeof (int);
3664 break;
Florin Coras1e966172020-05-16 18:18:14 +00003665
3666 case VPPCOM_ATTR_SET_CONNECTED:
3667 session->flags |= VCL_SESSION_F_CONNECTED;
3668 break;
3669
Dave Wallacee22aa742017-10-20 12:30:38 -04003670 default:
3671 rv = VPPCOM_EINVAL;
3672 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003673 }
3674
Dave Wallace35830af2017-10-09 01:43:42 -04003675 return rv;
3676}
3677
Stevenac1f96d2017-10-24 16:03:58 -07003678int
Florin Coras134a9962018-08-28 11:32:04 -07003679vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003680 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3681{
Florin Coras134a9962018-08-28 11:32:04 -07003682 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003683 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003684 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003685
3686 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003687 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003688 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003689 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003690 else
3691 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003692 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003693 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003694 }
3695
Florin Coras0a1e1832020-03-29 18:54:04 +00003696 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003697 {
Florin Coras5da10c42020-04-01 04:31:21 +00003698 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003699 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003700 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3701 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003702 else
Dave Barach178cf492018-11-13 16:34:13 -05003703 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3704 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003705 ep->is_ip4 = session->transport.is_ip4;
3706 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003707 }
Florin Coras460dce62018-07-27 05:45:06 -07003708
Stevenac1f96d2017-10-24 16:03:58 -07003709 return rv;
3710}
3711
3712int
Florin Coras134a9962018-08-28 11:32:04 -07003713vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003714 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3715{
Florin Coras7a2abce2020-04-05 19:25:44 +00003716 vcl_worker_t *wrk = vcl_worker_get_current ();
3717 vcl_session_t *s;
3718
3719 s = vcl_session_get_w_handle (wrk, session_handle);
3720 if (!s)
3721 return VPPCOM_EBADFD;
3722
Dave Wallace617dffa2017-10-26 14:47:06 -04003723 if (!buffer)
3724 return VPPCOM_EINVAL;
3725
3726 if (ep)
3727 {
Florin Coras0a1e1832020-03-29 18:54:04 +00003728 if (s->session_type != VPPCOM_PROTO_UDP
3729 || (s->flags & VCL_SESSION_F_CONNECTED))
Florin Coras5da10c42020-04-01 04:31:21 +00003730 return VPPCOM_EINVAL;
3731
3732 /* Session not connected/bound in vpp. Create it by 'connecting' it */
3733 if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3734 {
3735 vcl_send_session_connect (wrk, s);
3736 }
3737 else
3738 {
3739 s->transport.is_ip4 = ep->is_ip4;
3740 s->transport.rmt_port = ep->port;
3741 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3742 }
Dave Wallace617dffa2017-10-26 14:47:06 -04003743 }
3744
3745 if (flags)
3746 {
3747 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003748 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003749 }
3750
Florin Coras7a2abce2020-04-05 19:25:44 +00003751 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3752 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003753}
3754
Dave Wallace048b1d62018-01-03 22:24:41 -05003755int
3756vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3757{
Florin Coras134a9962018-08-28 11:32:04 -07003758 vcl_worker_t *wrk = vcl_worker_get_current ();
3759 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003760 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003761 svm_msg_q_msg_t msg;
3762 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003763 int rv, num_ev = 0;
3764
Florin Coras5e062572019-03-14 19:07:51 -07003765 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003766
3767 if (!vp)
3768 return VPPCOM_EFAULT;
3769
3770 do
3771 {
Florin Coras7e12d942018-06-27 14:32:43 -07003772 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003773
Florin Coras6917b942018-11-13 22:44:54 -08003774 /* Dequeue all events and drop all unhandled io events */
3775 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3776 {
3777 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3778 vcl_handle_mq_event (wrk, e);
3779 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3780 }
3781 vec_reset_length (wrk->unhandled_evts_vector);
3782
Dave Wallace048b1d62018-01-03 22:24:41 -05003783 for (i = 0; i < n_sids; i++)
3784 {
Florin Coras7baeb712019-01-04 17:05:43 -08003785 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003786 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003787 {
3788 vp[i].revents = POLLHUP;
3789 num_ev++;
3790 continue;
3791 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003792
Florin Coras6917b942018-11-13 22:44:54 -08003793 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003794
3795 if (POLLIN & vp[i].events)
3796 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003797 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003798 if (rv > 0)
3799 {
Florin Coras6917b942018-11-13 22:44:54 -08003800 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003801 num_ev++;
3802 }
3803 else if (rv < 0)
3804 {
3805 switch (rv)
3806 {
3807 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003808 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003809 break;
3810
3811 default:
Florin Coras6917b942018-11-13 22:44:54 -08003812 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003813 break;
3814 }
3815 num_ev++;
3816 }
3817 }
3818
3819 if (POLLOUT & vp[i].events)
3820 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003821 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003822 if (rv > 0)
3823 {
Florin Coras6917b942018-11-13 22:44:54 -08003824 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003825 num_ev++;
3826 }
3827 else if (rv < 0)
3828 {
3829 switch (rv)
3830 {
3831 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003832 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003833 break;
3834
3835 default:
Florin Coras6917b942018-11-13 22:44:54 -08003836 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003837 break;
3838 }
3839 num_ev++;
3840 }
3841 }
3842
Dave Wallace7e607a72018-06-18 18:41:32 -04003843 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003844 {
Florin Coras6917b942018-11-13 22:44:54 -08003845 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003846 num_ev++;
3847 }
3848 }
3849 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003850 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003851 }
3852 while ((num_ev == 0) && keep_trying);
3853
Dave Wallace048b1d62018-01-03 22:24:41 -05003854 return num_ev;
3855}
3856
Florin Coras99368312018-08-02 10:45:44 -07003857int
3858vppcom_mq_epoll_fd (void)
3859{
Florin Coras134a9962018-08-28 11:32:04 -07003860 vcl_worker_t *wrk = vcl_worker_get_current ();
3861 return wrk->mqs_epfd;
3862}
3863
3864int
Florin Coras30e79c22019-01-02 19:31:22 -08003865vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003866{
3867 return session_handle & 0xFFFFFF;
3868}
3869
3870int
Florin Coras30e79c22019-01-02 19:31:22 -08003871vppcom_session_worker (vcl_session_handle_t session_handle)
3872{
3873 return session_handle >> 24;
3874}
3875
3876int
Florin Coras134a9962018-08-28 11:32:04 -07003877vppcom_worker_register (void)
3878{
Florin Corasd4c70922019-11-28 14:21:21 -08003879 vcl_worker_t *wrk;
3880 u8 *wrk_name = 0;
3881 int rv;
3882
Florin Coras47c40e22018-11-26 17:01:36 -08003883 if (!vcl_worker_alloc_and_init ())
3884 return VPPCOM_EEXIST;
3885
Florin Corasd4c70922019-11-28 14:21:21 -08003886 wrk = vcl_worker_get_current ();
3887 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3888
3889 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3890 vec_free (wrk_name);
3891
3892 if (rv)
3893 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003894
3895 if (vcl_worker_register_with_vpp ())
3896 return VPPCOM_EEXIST;
3897
3898 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003899}
3900
Florin Coras369db832019-07-08 12:34:45 -07003901void
3902vppcom_worker_unregister (void)
3903{
3904 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3905 vcl_set_worker_index (~0);
3906}
3907
Pivo6017ff02020-05-04 17:57:33 +02003908void
3909vppcom_worker_index_set (int index)
3910{
3911 vcl_set_worker_index (index);
3912}
3913
Florin Corasdfe4cf42018-11-28 22:13:45 -08003914int
3915vppcom_worker_index (void)
3916{
3917 return vcl_get_worker_index ();
3918}
3919
Florin Corase0982e52019-01-25 13:19:56 -08003920int
3921vppcom_worker_mqs_epfd (void)
3922{
3923 vcl_worker_t *wrk = vcl_worker_get_current ();
3924 if (!vcm->cfg.use_mq_eventfd)
3925 return -1;
3926 return wrk->mqs_epfd;
3927}
3928
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003929int
3930vppcom_session_is_connectable_listener (uint32_t session_handle)
3931{
3932 vcl_session_t *session;
3933 vcl_worker_t *wrk = vcl_worker_get_current ();
3934 session = vcl_session_get_w_handle (wrk, session_handle);
3935 if (!session)
3936 return VPPCOM_EBADFD;
3937 return vcl_session_is_connectable_listener (wrk, session);
3938}
3939
3940int
3941vppcom_session_listener (uint32_t session_handle)
3942{
3943 vcl_worker_t *wrk = vcl_worker_get_current ();
3944 vcl_session_t *listen_session, *session;
3945 session = vcl_session_get_w_handle (wrk, session_handle);
3946 if (!session)
3947 return VPPCOM_EBADFD;
3948 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3949 return VPPCOM_EBADFD;
3950 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3951 if (!listen_session)
3952 return VPPCOM_EBADFD;
3953 return vcl_session_handle (listen_session);
3954}
3955
3956int
3957vppcom_session_n_accepted (uint32_t session_handle)
3958{
3959 vcl_worker_t *wrk = vcl_worker_get_current ();
3960 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3961 if (!session)
3962 return VPPCOM_EBADFD;
3963 return session->n_accepted_sessions;
3964}
3965
Florin Coras66ec4672020-06-15 07:59:40 -07003966const char *
3967vppcom_proto_str (vppcom_proto_t proto)
3968{
3969 char const *proto_str;
3970
3971 switch (proto)
3972 {
3973 case VPPCOM_PROTO_TCP:
3974 proto_str = "TCP";
3975 break;
3976 case VPPCOM_PROTO_UDP:
3977 proto_str = "UDP";
3978 break;
3979 case VPPCOM_PROTO_TLS:
3980 proto_str = "TLS";
3981 break;
3982 case VPPCOM_PROTO_QUIC:
3983 proto_str = "QUIC";
3984 break;
3985 default:
3986 proto_str = "UNKNOWN";
3987 break;
3988 }
3989 return proto_str;
3990}
3991
3992const char *
3993vppcom_retval_str (int retval)
3994{
3995 char const *st;
3996
3997 switch (retval)
3998 {
3999 case VPPCOM_OK:
4000 st = "VPPCOM_OK";
4001 break;
4002
4003 case VPPCOM_EAGAIN:
4004 st = "VPPCOM_EAGAIN";
4005 break;
4006
4007 case VPPCOM_EFAULT:
4008 st = "VPPCOM_EFAULT";
4009 break;
4010
4011 case VPPCOM_ENOMEM:
4012 st = "VPPCOM_ENOMEM";
4013 break;
4014
4015 case VPPCOM_EINVAL:
4016 st = "VPPCOM_EINVAL";
4017 break;
4018
4019 case VPPCOM_EBADFD:
4020 st = "VPPCOM_EBADFD";
4021 break;
4022
4023 case VPPCOM_EAFNOSUPPORT:
4024 st = "VPPCOM_EAFNOSUPPORT";
4025 break;
4026
4027 case VPPCOM_ECONNABORTED:
4028 st = "VPPCOM_ECONNABORTED";
4029 break;
4030
4031 case VPPCOM_ECONNRESET:
4032 st = "VPPCOM_ECONNRESET";
4033 break;
4034
4035 case VPPCOM_ENOTCONN:
4036 st = "VPPCOM_ENOTCONN";
4037 break;
4038
4039 case VPPCOM_ECONNREFUSED:
4040 st = "VPPCOM_ECONNREFUSED";
4041 break;
4042
4043 case VPPCOM_ETIMEDOUT:
4044 st = "VPPCOM_ETIMEDOUT";
4045 break;
4046
4047 default:
4048 st = "UNKNOWN_STATE";
4049 break;
4050 }
4051
4052 return st;
4053}
4054
Dave Wallacee22aa742017-10-20 12:30:38 -04004055/*
4056 * fd.io coding-style-patch-verification: ON
4057 *
4058 * Local Variables:
4059 * eval: (c-set-style "gnu")
4060 * End:
4061 */