blob: fd9136aa9fcbeb8607799144e459071bd6d97dc1 [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
Florin Coras54693d22018-07-17 10:46:29 -0700354static u32
Florin Coras00cca802019-06-06 09:38:44 -0700355vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
356 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700357{
358 vcl_session_t *session, *listen_session;
359 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700360 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700361 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700362
Florin Coras134a9962018-08-28 11:32:04 -0700363 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700364
Florin Coras00cca802019-06-06 09:38:44 -0700365 listen_session = vcl_session_get (wrk, ls_index);
366 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700367 {
Florin Coras00cca802019-06-06 09:38:44 -0700368 VDBG (0, "ERROR: listener handle %lu does not match session %u",
369 mp->listener_handle, ls_index);
370 goto error;
371 }
372
Florin Corasc4c4cf52019-08-24 18:17:34 -0700373 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Coras00cca802019-06-06 09:38:44 -0700374 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700375 VDBG (0, "ERROR: segment for session %u is not mounted!",
Florin Coras00cca802019-06-06 09:38:44 -0700376 session->session_index);
377 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700378 }
379
Florin Coras54693d22018-07-17 10:46:29 -0700380 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
381 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Coras653e43f2019-03-04 10:56:23 -0800382 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
383 svm_msg_q_t *);
384 rx_fifo->client_session_index = session->session_index;
385 tx_fifo->client_session_index = session->session_index;
386 rx_fifo->client_thread_index = vcl_get_worker_index ();
387 tx_fifo->client_thread_index = vcl_get_worker_index ();
388 vpp_wrk_index = tx_fifo->master_thread_index;
389 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
390 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700391
392 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800393 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700394 session->rx_fifo = rx_fifo;
395 session->tx_fifo = tx_fifo;
396
397 session->session_state = STATE_ACCEPT;
Florin Coras09d18c22019-04-24 11:10:02 -0700398 session->transport.rmt_port = mp->rmt.port;
399 session->transport.is_ip4 = mp->rmt.is_ip4;
400 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500401 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700402
Florin Coras134a9962018-08-28 11:32:04 -0700403 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700404 session->transport.lcl_port = listen_session->transport.lcl_port;
405 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700406 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200407 session->is_dgram = vcl_proto_is_dgram (session->session_type);
408 session->listener_index = listen_session->session_index;
409 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700410
Florin Coras5e062572019-03-14 19:07:51 -0700411 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
412 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700413 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
414 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
415 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700416 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
417
Florin Coras00cca802019-06-06 09:38:44 -0700418 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
419 session->vpp_handle, 0);
420
Florin Coras134a9962018-08-28 11:32:04 -0700421 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700422
423error:
424 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
425 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
426 VNET_API_ERROR_INVALID_ARGUMENT);
427 vcl_session_free (wrk, session);
428 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700429}
430
431static u32
Florin Coras134a9962018-08-28 11:32:04 -0700432vcl_session_connected_handler (vcl_worker_t * wrk,
433 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700434{
Florin Coras99368312018-08-02 10:45:44 -0700435 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700436 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700437 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -0700438
439 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700440 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700441 if (!session)
442 {
Florin Coras5e062572019-03-14 19:07:51 -0700443 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
444 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700445 return VCL_INVALID_SESSION_INDEX;
446 }
Florin Coras54693d22018-07-17 10:46:29 -0700447 if (mp->retval)
448 {
Florin Coras5e062572019-03-14 19:07:51 -0700449 VDBG (0, "ERROR: session index %u: connect failed! %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700450 session_index, format_session_error, mp->retval);
Florin Corasadcfb152020-02-12 08:50:29 +0000451 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Coras070453d2018-08-24 17:04:27 -0700452 session->vpp_handle = mp->handle;
453 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700454 }
455
Florin Corasdbc9c592019-09-25 16:37:43 -0700456 session->vpp_handle = mp->handle;
457 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
458 svm_msg_q_t *);
Florin Coras460dce62018-07-27 05:45:06 -0700459 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
460 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700461 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Corasd85de682018-11-29 17:02:29 -0800462 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700463 VDBG (0, "segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800464 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000465 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700466 vcl_send_session_disconnect (wrk, session);
467 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800468 }
469
Florin Coras460dce62018-07-27 05:45:06 -0700470 rx_fifo->client_session_index = session_index;
471 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700472 rx_fifo->client_thread_index = vcl_get_worker_index ();
473 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700474
Florin Coras653e43f2019-03-04 10:56:23 -0800475 vpp_wrk_index = tx_fifo->master_thread_index;
476 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
477 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700478
Florin Coras653e43f2019-03-04 10:56:23 -0800479 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700480 {
Florin Coras653e43f2019-03-04 10:56:23 -0800481 session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
482 session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700483 if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
Florin Coras653e43f2019-03-04 10:56:23 -0800484 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700485 VDBG (0, "ct segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800486 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000487 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700488 vcl_send_session_disconnect (wrk, session);
489 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800490 }
Florin Coras99368312018-08-02 10:45:44 -0700491 }
Florin Coras54693d22018-07-17 10:46:29 -0700492
Florin Coras54693d22018-07-17 10:46:29 -0700493 session->rx_fifo = rx_fifo;
494 session->tx_fifo = tx_fifo;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800495 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras09d18c22019-04-24 11:10:02 -0700496 session->transport.is_ip4 = mp->lcl.is_ip4;
497 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500498 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700499 session->transport.lcl_port = mp->lcl.port;
Florin Coras54693d22018-07-17 10:46:29 -0700500 session->session_state = STATE_CONNECT;
501
502 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800503 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700504
Florin Coras5e062572019-03-14 19:07:51 -0700505 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
506 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700507 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700508
Florin Coras54693d22018-07-17 10:46:29 -0700509 return session_index;
510}
511
Florin Coras3c7d4f92018-12-14 11:28:43 -0800512static int
513vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
514{
515 vcl_session_msg_t *accepted_msg;
516 int i;
517
518 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
519 {
520 accepted_msg = &session->accept_evts_fifo[i];
521 if (accepted_msg->accepted_msg.handle == handle)
522 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800523 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800524 return 1;
525 }
526 }
527 return 0;
528}
529
Florin Corasc9fbd662018-08-24 12:59:56 -0700530static u32
Florin Coras134a9962018-08-28 11:32:04 -0700531vcl_session_reset_handler (vcl_worker_t * wrk,
532 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700533{
534 vcl_session_t *session;
535 u32 sid;
536
Florin Coras134a9962018-08-28 11:32:04 -0700537 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
538 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700539 if (!session)
540 {
541 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
542 return VCL_INVALID_SESSION_INDEX;
543 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800544
545 /* Caught a reset before actually accepting the session */
546 if (session->session_state == STATE_LISTEN)
547 {
548
549 if (!vcl_flag_accepted_session (session, reset_msg->handle,
550 VCL_ACCEPTED_F_RESET))
551 VDBG (0, "session was not accepted!");
552 return VCL_INVALID_SESSION_INDEX;
553 }
554
Florin Coras080aa502020-05-26 00:47:52 +0000555 if (session->session_state != STATE_CLOSED)
556 session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800557 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700558 return sid;
559}
560
Florin Coras60116992018-08-27 09:52:18 -0700561static u32
Florin Coras134a9962018-08-28 11:32:04 -0700562vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700563{
564 vcl_session_t *session;
565 u32 sid = mp->context;
566
Florin Coras134a9962018-08-28 11:32:04 -0700567 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700568 if (mp->retval)
569 {
Florin Coras5e062572019-03-14 19:07:51 -0700570 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Coras00e01d32019-10-21 16:07:46 -0700571 format_session_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700572 if (session)
573 {
Florin Corasadcfb152020-02-12 08:50:29 +0000574 session->session_state = STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700575 session->vpp_handle = mp->handle;
576 return sid;
577 }
578 else
579 {
Florin Coras5e062572019-03-14 19:07:51 -0700580 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
581 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700582 return VCL_INVALID_SESSION_INDEX;
583 }
584 }
585
586 session->vpp_handle = mp->handle;
587 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500588 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
589 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700590 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700591 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700592 session->session_state = STATE_LISTEN;
593
Florin Coras5f45e012019-01-23 09:21:30 -0800594 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
595 vec_validate (wrk->vpp_event_queues, 0);
596 wrk->vpp_event_queues[0] = session->vpp_evt_q;
597
Florin Coras6e3c1f82020-01-15 01:30:46 +0000598 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700599 {
600 svm_fifo_t *rx_fifo, *tx_fifo;
601 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
602 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
603 rx_fifo->client_session_index = sid;
604 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
605 tx_fifo->client_session_index = sid;
606 session->rx_fifo = rx_fifo;
607 session->tx_fifo = tx_fifo;
608 }
609
Florin Coras05ecfcc2018-12-12 18:19:39 -0800610 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700611 return sid;
612}
613
Florin Corasdfae9f92019-02-20 19:48:31 -0800614static void
615vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
616{
617 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
618 vcl_session_t *s;
619
620 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
Florin Coras0a1e1832020-03-29 18:54:04 +0000621 if (!s)
Florin Corasdfae9f92019-02-20 19:48:31 -0800622 {
623 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
624 return;
625 }
Florin Coras0a1e1832020-03-29 18:54:04 +0000626 if (s->session_state != STATE_DISCONNECT)
627 {
628 /* Connected udp listener */
629 if (s->session_type == VPPCOM_PROTO_UDP
630 && s->session_state == STATE_CLOSED)
631 return;
632
633 VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
634 return;
635 }
Florin Corasdfae9f92019-02-20 19:48:31 -0800636
637 if (mp->retval)
638 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
Florin Coras00e01d32019-10-21 16:07:46 -0700639 s->session_index, mp->handle, format_session_error, mp->retval);
Florin Corasdfae9f92019-02-20 19:48:31 -0800640
641 if (mp->context != wrk->wrk_index)
642 VDBG (0, "wrong context");
643
644 vcl_session_table_del_vpp_handle (wrk, mp->handle);
645 vcl_session_free (wrk, s);
646}
647
Florin Coras68b7e582020-01-21 18:33:23 -0800648static void
649vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
650{
651 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
652 vcl_session_t *s;
653
654 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
655 if (!s)
656 {
657 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
658 return;
659 }
660
661 s->vpp_thread_index = mp->vpp_thread_index;
Florin Coras57660d92020-04-04 22:45:34 +0000662 s->vpp_handle = mp->new_handle;
Florin Coras68b7e582020-01-21 18:33:23 -0800663 s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
664
665 vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
666 wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
667
668 vcl_session_table_del_vpp_handle (wrk, mp->handle);
669 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
670
671 /* Generate new tx event if we have outstanding data */
672 if (svm_fifo_has_event (s->tx_fifo))
673 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
674 SESSION_IO_EVT_TX, SVM_Q_WAIT);
675
Florin Coras57660d92020-04-04 22:45:34 +0000676 VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
677 s->vpp_thread_index, mp->new_handle);
Florin Coras68b7e582020-01-21 18:33:23 -0800678}
679
Florin Coras3c7d4f92018-12-14 11:28:43 -0800680static vcl_session_t *
681vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
682{
683 vcl_session_msg_t *vcl_msg;
684 vcl_session_t *session;
685
686 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
687 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800688 VWRN ("session overlap handle %lu state %u!", msg->handle,
689 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800690
691 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
692 if (!session)
693 {
694 VERR ("couldn't find listen session: listener handle %llx",
695 msg->listener_handle);
696 return 0;
697 }
698
699 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000700 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800701 vcl_msg->accepted_msg = *msg;
702 /* Session handle points to listener until fully accepted by app */
703 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
704
705 return session;
706}
707
708static vcl_session_t *
709vcl_session_disconnected_handler (vcl_worker_t * wrk,
710 session_disconnected_msg_t * msg)
711{
712 vcl_session_t *session;
713
714 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
715 if (!session)
716 {
717 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
718 return 0;
719 }
720
Florin Corasadcfb152020-02-12 08:50:29 +0000721 /* Late disconnect notification on a session that has been closed */
722 if (session->session_state == STATE_CLOSED)
723 return 0;
724
Florin Coras3c7d4f92018-12-14 11:28:43 -0800725 /* Caught a disconnect before actually accepting the session */
726 if (session->session_state == STATE_LISTEN)
727 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800728 if (!vcl_flag_accepted_session (session, msg->handle,
729 VCL_ACCEPTED_F_CLOSED))
730 VDBG (0, "session was not accepted!");
731 return 0;
732 }
733
Florin Corasadcfb152020-02-12 08:50:29 +0000734 /* If not already reset change state */
735 if (session->session_state != STATE_DISCONNECT)
736 session->session_state = STATE_VPP_CLOSING;
737
Florin Coras3c7d4f92018-12-14 11:28:43 -0800738 return session;
739}
740
Florin Coras30e79c22019-01-02 19:31:22 -0800741static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700742vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
743{
744 session_cleanup_msg_t *msg;
745 vcl_session_t *session;
746
747 msg = (session_cleanup_msg_t *) data;
748 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
749 if (!session)
750 {
751 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
752 return;
753 }
754
Florin Coras36d49392020-04-24 23:00:11 +0000755 if (msg->type == SESSION_CLEANUP_TRANSPORT)
756 {
757 /* Transport was cleaned up before we confirmed close. Probably the
758 * app is still waiting for some data that cannot be delivered.
759 * Confirm close to make sure everything is cleaned up */
760 if (session->session_state == STATE_VPP_CLOSING)
761 vcl_session_cleanup (wrk, session, vcl_session_handle (session),
762 1 /* do_disconnect */ );
763 return;
764 }
765
Florin Coras9ace36d2019-10-28 13:14:17 -0700766 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000767 /* Should not happen. App did not close the connection so don't free it. */
768 if (session->session_state != STATE_CLOSED)
769 {
770 VDBG (0, "app did not close session %d", session->session_index);
771 session->session_state = STATE_DETACHED;
772 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
773 return;
774 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700775 vcl_session_free (wrk, session);
776}
777
778static void
Florin Coras30e79c22019-01-02 19:31:22 -0800779vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
780{
781 session_req_worker_update_msg_t *msg;
782 vcl_session_t *s;
783
784 msg = (session_req_worker_update_msg_t *) data;
785 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
786 if (!s)
787 return;
788
789 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
790}
791
792static void
793vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
794{
795 session_worker_update_reply_msg_t *msg;
796 vcl_session_t *s;
797
798 msg = (session_worker_update_reply_msg_t *) data;
799 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
800 if (!s)
801 {
802 VDBG (0, "unknown handle 0x%llx", msg->handle);
803 return;
804 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700805 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800806 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700807 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800808 s->session_index);
809 return;
810 }
Florin Coras30e79c22019-01-02 19:31:22 -0800811
Florin Coras5f45e012019-01-23 09:21:30 -0800812 if (s->rx_fifo)
813 {
814 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
815 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
816 s->rx_fifo->client_session_index = s->session_index;
817 s->tx_fifo->client_session_index = s->session_index;
818 s->rx_fifo->client_thread_index = wrk->wrk_index;
819 s->tx_fifo->client_thread_index = wrk->wrk_index;
820 }
Florin Coras30e79c22019-01-02 19:31:22 -0800821 s->session_state = STATE_UPDATED;
822
Florin Coras30e79c22019-01-02 19:31:22 -0800823 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
824 s->vpp_handle, wrk->wrk_index);
825}
826
Florin Corasc4c4cf52019-08-24 18:17:34 -0700827static void
828vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
829{
830 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
831 session_app_add_segment_msg_t *msg;
832 u64 segment_handle;
833 int fd = -1;
834
835 msg = (session_app_add_segment_msg_t *) data;
836
837 if (msg->fd_flags)
838 {
839 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
840 seg_type = SSVM_SEGMENT_MEMFD;
841 }
842
843 segment_handle = msg->segment_handle;
844 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
845 {
846 clib_warning ("invalid segment handle");
847 return;
848 }
849
850 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
851 seg_type, fd))
852 {
853 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
854 return;
855 }
856
857 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
858 msg->segment_size);
859}
860
861static void
862vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
863{
864 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
865 vcl_segment_detach (msg->segment_handle);
866 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
867}
868
Florin Coras86f04502018-09-12 16:08:01 -0700869static int
870vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700871{
Florin Coras54693d22018-07-17 10:46:29 -0700872 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700873 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700874
875 switch (e->event_type)
876 {
Florin Coras653e43f2019-03-04 10:56:23 -0800877 case SESSION_IO_EVT_RX:
878 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800879 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800880 if (!session || !(session->session_state & STATE_OPEN))
881 break;
Florin Coras86f04502018-09-12 16:08:01 -0700882 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700883 break;
884 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800885 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700886 break;
887 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700888 vcl_session_connected_handler (wrk,
889 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700890 break;
891 case SESSION_CTRL_EVT_DISCONNECTED:
892 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800893 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700894 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800895 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800896 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
897 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700898 break;
899 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700900 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700901 break;
902 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700903 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700904 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800905 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
906 vcl_session_unlisten_reply_handler (wrk, e->data);
907 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800908 case SESSION_CTRL_EVT_MIGRATED:
909 vcl_session_migrated_handler (wrk, e->data);
910 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700911 case SESSION_CTRL_EVT_CLEANUP:
912 vcl_session_cleanup_handler (wrk, e->data);
913 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800914 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
915 vcl_session_req_worker_update_handler (wrk, e->data);
916 break;
917 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
918 vcl_session_worker_update_reply_handler (wrk, e->data);
919 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700920 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
921 vcl_session_app_add_segment_handler (wrk, e->data);
922 break;
923 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
924 vcl_session_app_del_segment_handler (wrk, e->data);
925 break;
Florin Coras54693d22018-07-17 10:46:29 -0700926 default:
927 clib_warning ("unhandled %u", e->event_type);
928 }
929 return VPPCOM_OK;
930}
931
Florin Coras30e79c22019-01-02 19:31:22 -0800932static int
Florin Coras697faea2018-06-27 17:10:49 -0700933vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800934 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700935 f64 wait_for_time)
936{
Florin Coras134a9962018-08-28 11:32:04 -0700937 vcl_worker_t *wrk = vcl_worker_get_current ();
938 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700939 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700940 svm_msg_q_msg_t msg;
941 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400942
Florin Coras697faea2018-06-27 17:10:49 -0700943 do
Dave Wallace543852a2017-08-03 02:11:34 -0400944 {
Florin Coras134a9962018-08-28 11:32:04 -0700945 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700946 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700947 {
Florin Coras070453d2018-08-24 17:04:27 -0700948 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700949 }
950 if (session->session_state & state)
951 {
Florin Coras697faea2018-06-27 17:10:49 -0700952 return VPPCOM_OK;
953 }
Florin Corasadcfb152020-02-12 08:50:29 +0000954 if (session->session_state & STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -0700955 {
Florin Coras697faea2018-06-27 17:10:49 -0700956 return VPPCOM_ECONNREFUSED;
957 }
Florin Coras54693d22018-07-17 10:46:29 -0700958
Florin Coras134a9962018-08-28 11:32:04 -0700959 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800960 {
961 usleep (100);
962 continue;
963 }
Florin Coras134a9962018-08-28 11:32:04 -0700964 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700965 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700966 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800967 }
Florin Coras134a9962018-08-28 11:32:04 -0700968 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800969
Florin Coras05ecfcc2018-12-12 18:19:39 -0800970 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700971 vppcom_session_state_str (state));
972 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400973
Florin Coras697faea2018-06-27 17:10:49 -0700974 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500975}
976
Florin Coras30e79c22019-01-02 19:31:22 -0800977static void
978vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
979{
Florin Coras288eaab2019-02-03 15:26:14 -0800980 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -0800981 vcl_session_t *s;
982 u32 *sip;
983
984 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
985 return;
986
987 vec_foreach (sip, wrk->pending_session_wrk_updates)
988 {
989 s = vcl_session_get (wrk, *sip);
990 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
991 state = s->session_state;
992 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
993 s->session_state = state;
994 }
995 vec_reset_length (wrk->pending_session_wrk_updates);
996}
997
Florin Corasf9240dc2019-01-15 08:03:17 -0800998void
Florin Coras30e79c22019-01-02 19:31:22 -0800999vcl_flush_mq_events (void)
1000{
1001 vcl_worker_t *wrk = vcl_worker_get_current ();
1002 svm_msg_q_msg_t *msg;
1003 session_event_t *e;
1004 svm_msg_q_t *mq;
1005 int i;
1006
1007 mq = wrk->app_event_queue;
1008 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -07001009 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -08001010 svm_msg_q_unlock (mq);
1011
1012 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1013 {
1014 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1015 e = svm_msg_q_msg_data (mq, msg);
1016 vcl_handle_mq_event (wrk, e);
1017 svm_msg_q_free_msg (mq, msg);
1018 }
1019 vec_reset_length (wrk->mq_msg_vector);
1020 vcl_handle_pending_wrk_updates (wrk);
1021}
1022
Florin Coras697faea2018-06-27 17:10:49 -07001023static int
1024vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001025{
Florin Coras697faea2018-06-27 17:10:49 -07001026 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001027
Florin Coras697faea2018-06-27 17:10:49 -07001028 if (vcm->app_state != STATE_APP_ENABLED)
1029 {
1030 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -07001031 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -07001032 if (PREDICT_FALSE (rv))
1033 {
Florin Coras5e062572019-03-14 19:07:51 -07001034 VDBG (0, "application session enable timed out! returning %d (%s)",
1035 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001036 return rv;
1037 }
1038 }
1039 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001040}
1041
Florin Coras697faea2018-06-27 17:10:49 -07001042static int
1043vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001044{
Florin Coras697faea2018-06-27 17:10:49 -07001045 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001046
Florin Coras697faea2018-06-27 17:10:49 -07001047 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -07001048 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -07001049 if (PREDICT_FALSE (rv))
1050 {
Florin Coras5e062572019-03-14 19:07:51 -07001051 VDBG (0, "application attach timed out! returning %d (%s)", rv,
1052 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001053 return rv;
1054 }
Dave Wallace543852a2017-08-03 02:11:34 -04001055
Florin Coras697faea2018-06-27 17:10:49 -07001056 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001057}
1058
1059static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001060vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001061{
Florin Coras134a9962018-08-28 11:32:04 -07001062 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001063 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001064 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001065 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001066
Florin Corasab2f6db2018-08-31 14:31:41 -07001067 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001068 if (!session)
1069 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001070
Florin Corasaaff5ee2019-07-08 13:00:00 -07001071 /* Flush pending accept events, if any */
1072 while (clib_fifo_elts (session->accept_evts_fifo))
1073 {
1074 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1075 accepted_msg = &evt->accepted_msg;
1076 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1077 vcl_send_session_accepted_reply (session->vpp_evt_q,
1078 accepted_msg->context,
1079 session->vpp_handle, -1);
1080 }
1081 clib_fifo_free (session->accept_evts_fifo);
1082
Florin Coras458089b2019-08-21 16:20:44 -07001083 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001084
Florin Coras5e062572019-03-14 19:07:51 -07001085 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001086 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001087 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001088
1089 session->vpp_handle = ~0;
1090 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001091
Florin Coras070453d2018-08-24 17:04:27 -07001092 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001093}
1094
Florin Coras697faea2018-06-27 17:10:49 -07001095static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001096vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001097{
Florin Coras134a9962018-08-28 11:32:04 -07001098 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001099 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001100 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001101 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001102 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001103
Florin Corasab2f6db2018-08-31 14:31:41 -07001104 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001105 if (!session)
1106 return VPPCOM_EBADFD;
1107
Dave Wallace4878cbe2017-11-21 03:45:09 -05001108 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001109 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001110
Florin Coras5e062572019-03-14 19:07:51 -07001111 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1112 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001113
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001114 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001115 {
Florin Coras5e062572019-03-14 19:07:51 -07001116 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001117 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001118 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001119
Florin Coras3c7d4f92018-12-14 11:28:43 -08001120 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001121 {
Florin Coras134a9962018-08-28 11:32:04 -07001122 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001123 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001124 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001125 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1126 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001127 }
1128 else
Dave Wallace227867f2017-11-13 21:21:53 -05001129 {
Florin Coras5e062572019-03-14 19:07:51 -07001130 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1131 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001132 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001133 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001134
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001135 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1136 {
1137 listen_session = vcl_session_get (wrk, session->listener_index);
1138 listen_session->n_accepted_sessions--;
1139 }
1140
Florin Coras070453d2018-08-24 17:04:27 -07001141 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001142}
1143
Florin Coras940f78f2018-11-30 12:11:20 -08001144/**
1145 * Handle app exit
1146 *
1147 * Notify vpp of the disconnect and mark the worker as free. If we're the
1148 * last worker, do a full cleanup otherwise, since we're probably a forked
1149 * child, avoid syscalls as much as possible. We might've lost privileges.
1150 */
1151void
1152vppcom_app_exit (void)
1153{
1154 if (!pool_elts (vcm->workers))
1155 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001156 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1157 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001158 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001159}
1160
Dave Wallace543852a2017-08-03 02:11:34 -04001161/*
1162 * VPPCOM Public API functions
1163 */
1164int
Florin Coras66ec4672020-06-15 07:59:40 -07001165vppcom_app_create (const char *app_name)
Dave Wallace543852a2017-08-03 02:11:34 -04001166{
Dave Wallace543852a2017-08-03 02:11:34 -04001167 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001168 int rv;
1169
Florin Coras47c40e22018-11-26 17:01:36 -08001170 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001171 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001172 VDBG (1, "already initialized");
1173 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001174 }
1175
Florin Coras47c40e22018-11-26 17:01:36 -08001176 vcm->is_init = 1;
1177 vppcom_cfg (&vcm->cfg);
1178 vcl_cfg = &vcm->cfg;
1179
1180 vcm->main_cpu = pthread_self ();
1181 vcm->main_pid = getpid ();
1182 vcm->app_name = format (0, "%s", app_name);
1183 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001184 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1185 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001186 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1187 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001188 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001189 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001190
1191 /* Allocate default worker */
1192 vcl_worker_alloc_and_init ();
1193
1194 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001195 vcl_elog_init (vcm);
1196 vcm->app_state = STATE_APP_START;
1197 rv = vppcom_connect_to_vpp (app_name);
1198 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001199 {
Florin Coras47c40e22018-11-26 17:01:36 -08001200 VERR ("couldn't connect to VPP!");
1201 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001202 }
Florin Coras47c40e22018-11-26 17:01:36 -08001203 VDBG (0, "sending session enable");
1204 rv = vppcom_app_session_enable ();
1205 if (rv)
1206 {
1207 VERR ("vppcom_app_session_enable() failed!");
1208 return rv;
1209 }
1210
1211 VDBG (0, "sending app attach");
1212 rv = vppcom_app_attach ();
1213 if (rv)
1214 {
1215 VERR ("vppcom_app_attach() failed!");
1216 return rv;
1217 }
1218
1219 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1220 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001221
1222 return VPPCOM_OK;
1223}
1224
1225void
1226vppcom_app_destroy (void)
1227{
Florin Corasdc0ded72020-04-30 02:59:55 +00001228 vcl_worker_t *wrk, *current_wrk;
Florin Corasce815de2020-04-16 18:47:27 +00001229 struct dlmallinfo mi;
Florin Corasce815de2020-04-16 18:47:27 +00001230 mspace heap;
Dave Wallace543852a2017-08-03 02:11:34 -04001231
Florin Coras940f78f2018-11-30 12:11:20 -08001232 if (!pool_elts (vcm->workers))
1233 return;
1234
Florin Coras0d427d82018-06-27 03:24:07 -07001235 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001236
Florin Corasdc0ded72020-04-30 02:59:55 +00001237 current_wrk = vcl_worker_get_current ();
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001238
Florin Corasce815de2020-04-16 18:47:27 +00001239 /* *INDENT-OFF* */
1240 pool_foreach (wrk, vcm->workers, ({
Florin Corasdc0ded72020-04-30 02:59:55 +00001241 if (current_wrk != wrk)
1242 vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
Florin Corasce815de2020-04-16 18:47:27 +00001243 }));
1244 /* *INDENT-ON* */
1245
Florin Corasdc0ded72020-04-30 02:59:55 +00001246 vcl_send_app_detach (current_wrk);
1247 vppcom_disconnect_from_vpp ();
1248 vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1249
Florin Coras0d427d82018-06-27 03:24:07 -07001250 vcl_elog_stop (vcm);
Florin Corasce815de2020-04-16 18:47:27 +00001251
1252 /*
1253 * Free the heap and fix vcm
1254 */
1255 heap = clib_mem_get_heap ();
1256 mi = mspace_mallinfo (heap);
1257 munmap (mspace_least_addr (heap), mi.arena);
1258
1259 vcm = &_vppcom_main;
Florin Coras69d97252020-05-11 17:19:31 +00001260 vcm->is_init = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001261}
1262
1263int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001264vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001265{
Florin Coras134a9962018-08-28 11:32:04 -07001266 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001267 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001268
Florin Coras134a9962018-08-28 11:32:04 -07001269 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001270
Florin Coras7e12d942018-06-27 14:32:43 -07001271 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001272 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001273 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001274 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001275
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001276 if (is_nonblocking)
1277 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001278
Florin Coras7e12d942018-06-27 14:32:43 -07001279 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1280 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001281
Florin Coras5e062572019-03-14 19:07:51 -07001282 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001283
Florin Coras134a9962018-08-28 11:32:04 -07001284 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001285}
1286
1287int
Florin Corasf9240dc2019-01-15 08:03:17 -08001288vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1289 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001290{
Florin Coras288eaab2019-02-03 15:26:14 -08001291 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001292 u32 next_sh, vep_sh;
1293 int rv = VPPCOM_OK;
1294 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001295 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001296
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001297 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001298 next_sh = session->vep.next_sh;
1299 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001300 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001301 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001302
Florin Corasf9240dc2019-01-15 08:03:17 -08001303 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001304
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001305 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001306 {
Florin Coras134a9962018-08-28 11:32:04 -07001307 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001308 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001309 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001310 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001311 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001312 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1313 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001314
Florin Coras134a9962018-08-28 11:32:04 -07001315 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001316 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001317 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001318 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001319
1320 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001321 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001322 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1323 if (rv < 0)
1324 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1325 "failed! rv %d (%s)", session->session_index, vpp_handle,
1326 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001327 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001328
Florin Coras9ace36d2019-10-28 13:14:17 -07001329 if (!do_disconnect)
1330 {
1331 VDBG (1, "session %u [0x%llx] disconnect skipped",
1332 session->session_index, vpp_handle);
1333 goto cleanup;
1334 }
1335
1336 if (state & STATE_LISTEN)
1337 {
1338 rv = vppcom_session_unbind (sh);
1339 if (PREDICT_FALSE (rv < 0))
1340 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1341 "rv %d (%s)", session->session_index, vpp_handle, rv,
1342 vppcom_retval_str (rv));
1343 return rv;
1344 }
1345 else if ((state & STATE_OPEN)
1346 || (vcl_session_is_connectable_listener (wrk, session)))
1347 {
1348 rv = vppcom_session_disconnect (sh);
1349 if (PREDICT_FALSE (rv < 0))
1350 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1351 " rv %d (%s)", session->session_index, vpp_handle,
1352 rv, vppcom_retval_str (rv));
1353 }
1354 else if (state == STATE_DISCONNECT)
1355 {
1356 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1357 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1358 session->vpp_handle, 0);
1359 }
Florin Corasadcfb152020-02-12 08:50:29 +00001360 else if (state == STATE_DETACHED)
1361 {
1362 /* Should not happen. VPP cleaned up before app confirmed close */
1363 VDBG (0, "vpp freed session %d before close", session->session_index);
1364 goto free_session;
1365 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001366
Florin Coras54140622020-02-04 19:04:34 +00001367 session->session_state = STATE_CLOSED;
1368
Florin Coras9ace36d2019-10-28 13:14:17 -07001369 /* Session is removed only after vpp confirms the disconnect */
1370 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001371
Florin Corasf9240dc2019-01-15 08:03:17 -08001372cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001373 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001374free_session:
Florin Coras134a9962018-08-28 11:32:04 -07001375 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001376 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001377
Dave Wallace543852a2017-08-03 02:11:34 -04001378 return rv;
1379}
1380
1381int
Florin Corasf9240dc2019-01-15 08:03:17 -08001382vppcom_session_close (uint32_t session_handle)
1383{
1384 vcl_worker_t *wrk = vcl_worker_get_current ();
1385 vcl_session_t *session;
1386
1387 session = vcl_session_get_w_handle (wrk, session_handle);
1388 if (!session)
1389 return VPPCOM_EBADFD;
1390 return vcl_session_cleanup (wrk, session, session_handle,
1391 1 /* do_disconnect */ );
1392}
1393
1394int
Florin Coras134a9962018-08-28 11:32:04 -07001395vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001396{
Florin Coras134a9962018-08-28 11:32:04 -07001397 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001398 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001399
1400 if (!ep || !ep->ip)
1401 return VPPCOM_EINVAL;
1402
Florin Coras134a9962018-08-28 11:32:04 -07001403 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001404 if (!session)
1405 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001406
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001407 if (session->is_vep)
1408 {
Florin Coras5e062572019-03-14 19:07:51 -07001409 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1410 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001411 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001412 }
1413
Florin Coras7e12d942018-06-27 14:32:43 -07001414 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001415 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001416 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1417 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001418 else
Dave Barach178cf492018-11-13 16:34:13 -05001419 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1420 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001421 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001422
Florin Coras5e062572019-03-14 19:07:51 -07001423 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1424 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001425 session->transport.is_ip4 ? "IPv4" : "IPv6",
1426 format_ip46_address, &session->transport.lcl_ip,
1427 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1428 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001429 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001430 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001431
1432 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001433 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001434
Florin Coras070453d2018-08-24 17:04:27 -07001435 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001436}
1437
1438int
Florin Coras134a9962018-08-28 11:32:04 -07001439vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001440{
Florin Coras134a9962018-08-28 11:32:04 -07001441 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001442 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001443 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001444 int rv;
1445
Florin Coras134a9962018-08-28 11:32:04 -07001446 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001447 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001448 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001449
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001450 if (q_len == 0 || q_len == ~0)
1451 q_len = vcm->cfg.listen_queue_size;
1452
Dave Wallaceee45d412017-11-24 21:44:06 -05001453 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001454 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001455 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001456 VDBG (0, "session %u [0x%llx]: already in listen state!",
1457 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001458 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001459 }
1460
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001461 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001462
Florin Coras070453d2018-08-24 17:04:27 -07001463 /*
1464 * Send listen request to vpp and wait for reply
1465 */
Florin Coras458089b2019-08-21 16:20:44 -07001466 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001467 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1468 STATE_LISTEN,
1469 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001470
Florin Coras070453d2018-08-24 17:04:27 -07001471 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001472 {
Florin Coras134a9962018-08-28 11:32:04 -07001473 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001474 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1475 listen_sh, listen_session->vpp_handle, rv,
1476 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001477 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001478 }
1479
Florin Coras070453d2018-08-24 17:04:27 -07001480 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001481}
1482
Ping Yu34a3a082018-11-30 19:16:17 -05001483int
1484vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1485 uint32_t cert_len)
1486{
1487
1488 vcl_worker_t *wrk = vcl_worker_get_current ();
1489 vcl_session_t *session = 0;
1490
1491 session = vcl_session_get_w_handle (wrk, session_handle);
1492 if (!session)
1493 return VPPCOM_EBADFD;
1494
1495 if (cert_len == 0 || cert_len == ~0)
1496 return VPPCOM_EBADFD;
1497
1498 /*
1499 * Send listen request to vpp and wait for reply
1500 */
1501 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001502 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1503 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001504 return VPPCOM_OK;
1505
1506}
1507
1508int
1509vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1510 uint32_t key_len)
1511{
1512
1513 vcl_worker_t *wrk = vcl_worker_get_current ();
1514 vcl_session_t *session = 0;
1515
1516 session = vcl_session_get_w_handle (wrk, session_handle);
1517 if (!session)
1518 return VPPCOM_EBADFD;
1519
1520 if (key_len == 0 || key_len == ~0)
1521 return VPPCOM_EBADFD;
1522
Ping Yu34a3a082018-11-30 19:16:17 -05001523 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001524 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1525 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001526 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001527}
1528
Florin Coras134a9962018-08-28 11:32:04 -07001529static int
Florin Coras5e062572019-03-14 19:07:51 -07001530validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001531{
Florin Coras5e062572019-03-14 19:07:51 -07001532 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001533 {
Florin Coras5e062572019-03-14 19:07:51 -07001534 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1535 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001536 return VPPCOM_EBADFD;
1537 }
1538
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001539 if ((ls->session_state != STATE_LISTEN)
1540 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001541 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001542 VDBG (0,
1543 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1544 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001545 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001546 return VPPCOM_EBADFD;
1547 }
1548 return VPPCOM_OK;
1549}
1550
1551int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001552vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1553{
1554 if (!strcmp (proto_str, "TCP"))
1555 *proto = VPPCOM_PROTO_TCP;
1556 else if (!strcmp (proto_str, "tcp"))
1557 *proto = VPPCOM_PROTO_TCP;
1558 else if (!strcmp (proto_str, "UDP"))
1559 *proto = VPPCOM_PROTO_UDP;
1560 else if (!strcmp (proto_str, "udp"))
1561 *proto = VPPCOM_PROTO_UDP;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001562 else if (!strcmp (proto_str, "TLS"))
1563 *proto = VPPCOM_PROTO_TLS;
1564 else if (!strcmp (proto_str, "tls"))
1565 *proto = VPPCOM_PROTO_TLS;
1566 else if (!strcmp (proto_str, "QUIC"))
1567 *proto = VPPCOM_PROTO_QUIC;
1568 else if (!strcmp (proto_str, "quic"))
1569 *proto = VPPCOM_PROTO_QUIC;
1570 else
1571 return 1;
1572 return 0;
1573}
1574
1575int
Florin Coras134a9962018-08-28 11:32:04 -07001576vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001577 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001578{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001579 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001580 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001581 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001582 vcl_session_t *listen_session = 0;
1583 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001584 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001585 svm_msg_q_msg_t msg;
1586 session_event_t *e;
1587 u8 is_nonblocking;
1588 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001589
Florin Coras134a9962018-08-28 11:32:04 -07001590 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001591 if (!listen_session)
1592 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001593
Florin Coras134a9962018-08-28 11:32:04 -07001594 listen_session_index = listen_session->session_index;
1595 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001596 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001597
Florin Coras54693d22018-07-17 10:46:29 -07001598 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001599 {
Florin Coras54693d22018-07-17 10:46:29 -07001600 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001601 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001602 accepted_msg = evt->accepted_msg;
1603 goto handle;
1604 }
1605
1606 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1607 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001608 while (1)
1609 {
Carl Smith592a9092019-11-12 14:57:37 +13001610 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1611 return VPPCOM_EAGAIN;
1612
Florin Coras134a9962018-08-28 11:32:04 -07001613 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001614 return VPPCOM_EAGAIN;
1615
Florin Coras134a9962018-08-28 11:32:04 -07001616 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001617 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001618 {
wanghanlin96453fd2019-12-16 19:14:39 +08001619 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001620 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001621 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001622 }
Dave Barach178cf492018-11-13 16:34:13 -05001623 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001624 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001625 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001626 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001627
Florin Coras54693d22018-07-17 10:46:29 -07001628handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001629
Florin Coras00cca802019-06-06 09:38:44 -07001630 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1631 listen_session_index);
1632 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1633 return VPPCOM_ECONNABORTED;
1634
Florin Coras134a9962018-08-28 11:32:04 -07001635 listen_session = vcl_session_get (wrk, listen_session_index);
1636 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001637
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001638 if (flags & O_NONBLOCK)
1639 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001640
Florin Coras5e062572019-03-14 19:07:51 -07001641 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1642 " flags %d, is_nonblocking %u", listen_session->session_index,
1643 listen_session->vpp_handle, client_session_index,
1644 client_session->vpp_handle, flags,
1645 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001646
Dave Wallace048b1d62018-01-03 22:24:41 -05001647 if (ep)
1648 {
Florin Coras7e12d942018-06-27 14:32:43 -07001649 ep->is_ip4 = client_session->transport.is_ip4;
1650 ep->port = client_session->transport.rmt_port;
1651 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001652 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1653 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001654 else
Dave Barach178cf492018-11-13 16:34:13 -05001655 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1656 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001657 }
Dave Wallace60caa062017-11-10 17:07:13 -05001658
Florin Coras05ecfcc2018-12-12 18:19:39 -08001659 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001660 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001661 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001662 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001663 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001664 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001665 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001666 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001667 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001668 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1669 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001670
Florin Coras3c7d4f92018-12-14 11:28:43 -08001671 /*
1672 * Session might have been closed already
1673 */
1674 if (accept_flags)
1675 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001676 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001677 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001678 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001679 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001680 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001681 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001682}
1683
1684int
Florin Coras134a9962018-08-28 11:32:04 -07001685vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001686{
Florin Coras134a9962018-08-28 11:32:04 -07001687 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001688 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001689 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001690 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001691
Florin Coras134a9962018-08-28 11:32:04 -07001692 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001693 if (!session)
1694 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001695 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001696
1697 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001698 {
Florin Coras5e062572019-03-14 19:07:51 -07001699 VDBG (0, "ERROR: cannot connect epoll session %u!",
1700 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001701 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001702 }
1703
Florin Coras7e12d942018-06-27 14:32:43 -07001704 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001705 {
Florin Coras7baeb712019-01-04 17:05:43 -08001706 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001707 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001708 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001709 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001710 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001711 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001712 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001713 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001714 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001715 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001716 }
1717
Florin Coras0a1e1832020-03-29 18:54:04 +00001718 /* Attempt to connect a connectionless listener */
1719 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1720 {
1721 if (session->session_type != VPPCOM_PROTO_UDP)
1722 return VPPCOM_EINVAL;
1723 vcl_send_session_unlisten (wrk, session);
1724 session->session_state = STATE_CLOSED;
1725 }
1726
Florin Coras7e12d942018-06-27 14:32:43 -07001727 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001728 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001729 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001730 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Florin Coras0a1e1832020-03-29 18:54:04 +00001731 session->flags |= VCL_SESSION_F_CONNECTED;
Dave Wallace543852a2017-08-03 02:11:34 -04001732
Florin Coras0a1e1832020-03-29 18:54:04 +00001733 VDBG (0, "session handle %u (%s): connecting to peer %s %U "
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001734 "port %d proto %s", session_handle,
Florin Coras0a1e1832020-03-29 18:54:04 +00001735 vppcom_session_state_str (session->session_state),
Florin Coras7e12d942018-06-27 14:32:43 -07001736 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001737 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001738 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001739 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001740 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001741 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001742
Florin Coras458089b2019-08-21 16:20:44 -07001743 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001744
1745 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1746 return VPPCOM_EINPROGRESS;
1747
1748 /*
1749 * Wait for reply from vpp if blocking
1750 */
Florin Coras070453d2018-08-24 17:04:27 -07001751 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1752 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001753
Florin Coras134a9962018-08-28 11:32:04 -07001754 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001755 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1756 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001757
Dave Wallace4878cbe2017-11-21 03:45:09 -05001758 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001759}
1760
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001761int
1762vppcom_session_stream_connect (uint32_t session_handle,
1763 uint32_t parent_session_handle)
1764{
1765 vcl_worker_t *wrk = vcl_worker_get_current ();
1766 vcl_session_t *session, *parent_session;
1767 u32 session_index, parent_session_index;
1768 int rv;
1769
1770 session = vcl_session_get_w_handle (wrk, session_handle);
1771 if (!session)
1772 return VPPCOM_EBADFD;
1773 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1774 if (!parent_session)
1775 return VPPCOM_EBADFD;
1776
1777 session_index = session->session_index;
1778 parent_session_index = parent_session->session_index;
1779 if (PREDICT_FALSE (session->is_vep))
1780 {
1781 VDBG (0, "ERROR: cannot connect epoll session %u!",
1782 session->session_index);
1783 return VPPCOM_EBADFD;
1784 }
1785
1786 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1787 {
1788 VDBG (0, "session handle %u [0x%llx]: session already "
1789 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1790 session_handle, session->vpp_handle,
1791 parent_session_handle, parent_session->vpp_handle,
1792 vppcom_proto_str (session->session_type), session->session_state,
1793 vppcom_session_state_str (session->session_state));
1794 return VPPCOM_OK;
1795 }
1796
1797 /* Connect to quic session specifics */
1798 session->transport.is_ip4 = parent_session->transport.is_ip4;
1799 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1800 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001801 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001802
1803 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1804 session_handle, parent_session_handle, parent_session->vpp_handle);
1805
1806 /*
1807 * Send connect request and wait for reply from vpp
1808 */
Florin Coras458089b2019-08-21 16:20:44 -07001809 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001810 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1811 vcm->cfg.session_timeout);
1812
1813 session->listener_index = parent_session_index;
1814 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001815 if (parent_session)
1816 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001817
1818 session = vcl_session_get (wrk, session_index);
1819 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1820 session->vpp_handle, rv ? "failed" : "succeeded");
1821
1822 return rv;
1823}
1824
Florin Coras54693d22018-07-17 10:46:29 -07001825static u8
1826vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1827{
Florin Corasc0737e92019-03-04 14:19:39 -08001828 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001829}
1830
Steven58f464e2017-10-25 12:33:12 -07001831static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001832vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001833 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001834{
Florin Coras134a9962018-08-28 11:32:04 -07001835 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001836 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001837 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001838 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001839 svm_msg_q_msg_t msg;
1840 session_event_t *e;
1841 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001842 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001843
Florin Coras070453d2018-08-24 17:04:27 -07001844 if (PREDICT_FALSE (!buf))
1845 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001846
Florin Coras134a9962018-08-28 11:32:04 -07001847 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001848 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001849 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001850
Florin Coras6d0106e2019-01-29 20:11:58 -08001851 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001852 {
Florin Coras5e062572019-03-14 19:07:51 -07001853 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001854 s->session_index, s->vpp_handle, s->session_state,
1855 vppcom_session_state_str (s->session_state));
1856 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001857 }
1858
Florin Coras2cba8532018-09-11 16:33:36 -07001859 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001860 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001861 mq = wrk->app_event_queue;
1862 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001863 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001864
Sirshak Das28aa5392019-02-05 01:33:33 -06001865 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001866 {
Florin Coras54693d22018-07-17 10:46:29 -07001867 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001868 {
Yu Pingb2955352019-12-04 06:49:04 +08001869 if (vcl_session_is_closing (s))
1870 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001871 svm_fifo_unset_event (s->rx_fifo);
1872 return VPPCOM_EWOULDBLOCK;
1873 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001874 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001875 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001876 if (vcl_session_is_closing (s))
1877 return vcl_session_closing_error (s);
1878
Florin Corasc0737e92019-03-04 14:19:39 -08001879 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001880 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001881 if (svm_msg_q_is_empty (mq))
1882 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001883
Florin Coras54693d22018-07-17 10:46:29 -07001884 svm_msg_q_sub_w_lock (mq, &msg);
1885 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001886 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001887 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001888 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001889 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001890 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001891 }
Florin Coras54693d22018-07-17 10:46:29 -07001892
Florin Coras460dce62018-07-27 05:45:06 -07001893 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001894 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001895 else
Florin Coras99368312018-08-02 10:45:44 -07001896 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001897
Sirshak Das28aa5392019-02-05 01:33:33 -06001898 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08001899 svm_fifo_unset_event (s->rx_fifo);
Florin Coras41c9e042018-09-11 00:10:41 -07001900
Florin Coras317b8e02019-04-17 09:57:46 -07001901 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001902 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001903 {
1904 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1905 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001906 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001907 }
1908
Florin Coras5e062572019-03-14 19:07:51 -07001909 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1910 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001911
Florin Coras54693d22018-07-17 10:46:29 -07001912 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001913}
1914
Steven58f464e2017-10-25 12:33:12 -07001915int
Florin Coras134a9962018-08-28 11:32:04 -07001916vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001917{
Florin Coras134a9962018-08-28 11:32:04 -07001918 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001919}
1920
1921static int
Florin Coras134a9962018-08-28 11:32:04 -07001922vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001923{
Florin Coras134a9962018-08-28 11:32:04 -07001924 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001925}
1926
Florin Coras2cba8532018-09-11 16:33:36 -07001927int
1928vppcom_session_read_segments (uint32_t session_handle,
1929 vppcom_data_segments_t ds)
1930{
1931 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001932 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001933 vcl_session_t *s = 0;
1934 svm_fifo_t *rx_fifo;
1935 svm_msg_q_msg_t msg;
1936 session_event_t *e;
1937 svm_msg_q_t *mq;
1938 u8 is_ct;
1939
1940 s = vcl_session_get_w_handle (wrk, session_handle);
1941 if (PREDICT_FALSE (!s || s->is_vep))
1942 return VPPCOM_EBADFD;
1943
Florin Coras6d0106e2019-01-29 20:11:58 -08001944 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1945 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001946
1947 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1948 is_ct = vcl_session_is_ct (s);
1949 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1950 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001951 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001952
Florin Coras653e43f2019-03-04 10:56:23 -08001953 if (is_ct)
1954 svm_fifo_unset_event (s->rx_fifo);
1955
Sirshak Das28aa5392019-02-05 01:33:33 -06001956 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001957 {
1958 if (is_nonblocking)
1959 {
1960 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001961 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001962 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001963 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001964 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001965 if (vcl_session_is_closing (s))
1966 return vcl_session_closing_error (s);
1967
Florin Coras2cba8532018-09-11 16:33:36 -07001968 svm_fifo_unset_event (rx_fifo);
1969 svm_msg_q_lock (mq);
1970 if (svm_msg_q_is_empty (mq))
1971 svm_msg_q_wait (mq);
1972
1973 svm_msg_q_sub_w_lock (mq, &msg);
1974 e = svm_msg_q_msg_data (mq, &msg);
1975 svm_msg_q_unlock (mq);
1976 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001977 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001978 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001979 }
1980 }
1981
Florin Coras88001c62019-04-24 14:44:46 -07001982 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001983 svm_fifo_unset_event (rx_fifo);
1984
Florin Coras2cba8532018-09-11 16:33:36 -07001985 return n_read;
1986}
1987
1988void
1989vppcom_session_free_segments (uint32_t session_handle,
1990 vppcom_data_segments_t ds)
1991{
1992 vcl_worker_t *wrk = vcl_worker_get_current ();
1993 vcl_session_t *s;
1994
1995 s = vcl_session_get_w_handle (wrk, session_handle);
1996 if (PREDICT_FALSE (!s || s->is_vep))
1997 return;
1998
Florin Coras88001c62019-04-24 14:44:46 -07001999 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07002000}
2001
Florin Coras2cba8532018-09-11 16:33:36 -07002002int
2003vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
2004{
2005 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05002006 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07002007 if (first_copy < max_bytes)
2008 {
Dave Barach178cf492018-11-13 16:34:13 -05002009 clib_memcpy_fast (buf + first_copy, ds[1].data,
2010 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07002011 }
2012 return 0;
2013}
2014
Florin Coras54693d22018-07-17 10:46:29 -07002015static u8
2016vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2017{
Florin Corasc0737e92019-03-04 14:19:39 -08002018 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04002019}
2020
Florin Coras7a2abce2020-04-05 19:25:44 +00002021always_inline u8
2022vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
Dave Wallace543852a2017-08-03 02:11:34 -04002023{
Florin Coras7a2abce2020-04-05 19:25:44 +00002024 u32 max_enq = svm_fifo_max_enqueue_prod (f);
2025 if (is_dgram)
2026 return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2027 else
2028 return max_enq > 0;
Florin Coras7a2abce2020-04-05 19:25:44 +00002029}
2030
2031always_inline int
2032vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2033 size_t n, u8 is_flush, u8 is_dgram)
2034{
Florin Coras6d0106e2019-01-29 20:11:58 -08002035 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002036 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07002037 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08002038 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002039 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07002040 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002041 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002042
jiangxiaomingff31ac62019-11-21 23:34:56 +08002043 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002044 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002045
Florin Coras460dce62018-07-27 05:45:06 -07002046 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002047 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002048 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2049 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002050 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002051 }
2052
Florin Coras6d0106e2019-01-29 20:11:58 -08002053 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002054 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002055 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2056 s->session_index, s->vpp_handle, s->session_state,
2057 vppcom_session_state_str (s->session_state));
2058 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002059 }
2060
Florin Coras0e88e852018-09-17 22:09:02 -07002061 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002062 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002063 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002064
Florin Coras653e43f2019-03-04 10:56:23 -08002065 mq = wrk->app_event_queue;
Florin Coras7a2abce2020-04-05 19:25:44 +00002066 if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Dave Wallace543852a2017-08-03 02:11:34 -04002067 {
Florin Coras54693d22018-07-17 10:46:29 -07002068 if (is_nonblocking)
2069 {
Florin Coras070453d2018-08-24 17:04:27 -07002070 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002071 }
Florin Coras7a2abce2020-04-05 19:25:44 +00002072 while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
Florin Coras54693d22018-07-17 10:46:29 -07002073 {
Florin Coras2d379d82019-06-28 12:45:12 -07002074 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002075 if (vcl_session_is_closing (s))
2076 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002077 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002078 if (svm_msg_q_is_empty (mq))
2079 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002080
Florin Coras54693d22018-07-17 10:46:29 -07002081 svm_msg_q_sub_w_lock (mq, &msg);
2082 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002083 svm_msg_q_unlock (mq);
2084
Florin Coras0e88e852018-09-17 22:09:02 -07002085 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002086 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002087 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002088 }
Dave Wallace543852a2017-08-03 02:11:34 -04002089 }
Dave Wallace543852a2017-08-03 02:11:34 -04002090
Florin Coras653e43f2019-03-04 10:56:23 -08002091 et = SESSION_IO_EVT_TX;
2092 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002093 et = SESSION_IO_EVT_TX_FLUSH;
2094
Florin Coras7a2abce2020-04-05 19:25:44 +00002095 if (is_dgram)
Florin Coras460dce62018-07-27 05:45:06 -07002096 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002097 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002098 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002099 else
2100 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002101 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002102
Florin Coras14ed6df2019-03-06 21:13:42 -08002103 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002104 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2105 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002106
Florin Coras460dce62018-07-27 05:45:06 -07002107 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002108
Florin Coras6d0106e2019-01-29 20:11:58 -08002109 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2110 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002111
Florin Coras54693d22018-07-17 10:46:29 -07002112 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002113}
2114
Florin Coras42ceddb2018-12-12 10:56:01 -08002115int
2116vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2117{
Florin Coras7a2abce2020-04-05 19:25:44 +00002118 vcl_worker_t *wrk = vcl_worker_get_current ();
2119 vcl_session_t *s;
2120
2121 s = vcl_session_get_w_handle (wrk, session_handle);
2122 if (PREDICT_FALSE (!s))
2123 return VPPCOM_EBADFD;
2124
2125 return vppcom_session_write_inline (wrk, s, buf, n,
2126 0 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Coras42ceddb2018-12-12 10:56:01 -08002127}
2128
Florin Corasb0f662f2018-12-27 14:51:46 -08002129int
2130vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2131{
Florin Coras7a2abce2020-04-05 19:25:44 +00002132 vcl_worker_t *wrk = vcl_worker_get_current ();
2133 vcl_session_t *s;
2134
2135 s = vcl_session_get_w_handle (wrk, session_handle);
2136 if (PREDICT_FALSE (!s))
2137 return VPPCOM_EBADFD;
2138
2139 return vppcom_session_write_inline (wrk, s, buf, n,
2140 1 /* is_flush */ , s->is_dgram ? 1 : 0);
Florin Corasb0f662f2018-12-27 14:51:46 -08002141}
2142
Florin Corasc0737e92019-03-04 14:19:39 -08002143#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002144if (PREDICT_FALSE (!_s->rx_fifo)) \
2145 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002146if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2147 { \
2148 if (!vcl_session_is_ct (_s)) \
2149 { \
2150 svm_fifo_unset_event (_s->rx_fifo); \
2151 if (svm_fifo_is_empty (_s->rx_fifo)) \
2152 break; \
2153 } \
2154 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2155 { \
2156 svm_fifo_unset_event (_s->ct_rx_fifo); \
2157 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2158 break; \
2159 } \
2160 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002161
Florin Coras86f04502018-09-12 16:08:01 -07002162static void
2163vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2164 unsigned long n_bits, unsigned long *read_map,
2165 unsigned long *write_map,
2166 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002167{
2168 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002169 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002170 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002171 u32 sid;
2172
2173 switch (e->event_type)
2174 {
Florin Corasc0737e92019-03-04 14:19:39 -08002175 case SESSION_IO_EVT_RX:
2176 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002177 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002178 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002179 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002180 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002181 if (sid < n_bits && read_map)
2182 {
David Johnsond9818dd2018-12-14 14:53:41 -05002183 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002184 *bits_set += 1;
2185 }
2186 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002187 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002188 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002189 session = vcl_session_get (wrk, sid);
Florin Corasf49cf472020-04-19 23:12:08 +00002190 if (!session || !vcl_session_is_open (session))
Florin Coras86f04502018-09-12 16:08:01 -07002191 break;
2192 if (sid < n_bits && write_map)
2193 {
David Johnsond9818dd2018-12-14 14:53:41 -05002194 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002195 *bits_set += 1;
2196 }
2197 break;
Florin Coras86f04502018-09-12 16:08:01 -07002198 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002199 session = vcl_session_accepted (wrk,
2200 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002201 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002202 break;
Florin Coras86f04502018-09-12 16:08:01 -07002203 sid = session->session_index;
2204 if (sid < n_bits && read_map)
2205 {
David Johnsond9818dd2018-12-14 14:53:41 -05002206 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002207 *bits_set += 1;
2208 }
2209 break;
2210 case SESSION_CTRL_EVT_CONNECTED:
2211 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002212 sid = vcl_session_connected_handler (wrk, connected_msg);
2213 if (sid == VCL_INVALID_SESSION_INDEX)
2214 break;
2215 if (sid < n_bits && write_map)
2216 {
2217 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2218 *bits_set += 1;
2219 }
Florin Coras86f04502018-09-12 16:08:01 -07002220 break;
2221 case SESSION_CTRL_EVT_DISCONNECTED:
2222 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002223 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2224 if (!session)
2225 break;
2226 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002227 if (sid < n_bits && except_map)
2228 {
David Johnsond9818dd2018-12-14 14:53:41 -05002229 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002230 *bits_set += 1;
2231 }
2232 break;
2233 case SESSION_CTRL_EVT_RESET:
2234 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2235 if (sid < n_bits && except_map)
2236 {
David Johnsond9818dd2018-12-14 14:53:41 -05002237 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002238 *bits_set += 1;
2239 }
2240 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002241 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2242 vcl_session_unlisten_reply_handler (wrk, e->data);
2243 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002244 case SESSION_CTRL_EVT_MIGRATED:
2245 vcl_session_migrated_handler (wrk, e->data);
2246 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002247 case SESSION_CTRL_EVT_CLEANUP:
2248 vcl_session_cleanup_handler (wrk, e->data);
2249 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002250 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2251 vcl_session_worker_update_reply_handler (wrk, e->data);
2252 break;
2253 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2254 vcl_session_req_worker_update_handler (wrk, e->data);
2255 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002256 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2257 vcl_session_app_add_segment_handler (wrk, e->data);
2258 break;
2259 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2260 vcl_session_app_del_segment_handler (wrk, e->data);
2261 break;
Florin Coras86f04502018-09-12 16:08:01 -07002262 default:
2263 clib_warning ("unhandled: %u", e->event_type);
2264 break;
2265 }
2266}
2267
2268static int
2269vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2270 unsigned long n_bits, unsigned long *read_map,
2271 unsigned long *write_map, unsigned long *except_map,
2272 double time_to_wait, u32 * bits_set)
2273{
Florin Coras99368312018-08-02 10:45:44 -07002274 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002275 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002276 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002277
2278 svm_msg_q_lock (mq);
2279 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002280 {
Florin Coras54693d22018-07-17 10:46:29 -07002281 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002282 {
Florin Coras54693d22018-07-17 10:46:29 -07002283 svm_msg_q_unlock (mq);
2284 return 0;
2285 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002286
Florin Coras54693d22018-07-17 10:46:29 -07002287 if (!time_to_wait)
2288 {
2289 svm_msg_q_unlock (mq);
2290 return 0;
2291 }
2292 else if (time_to_wait < 0)
2293 {
2294 svm_msg_q_wait (mq);
2295 }
2296 else
2297 {
2298 if (svm_msg_q_timedwait (mq, time_to_wait))
2299 {
2300 svm_msg_q_unlock (mq);
2301 return 0;
2302 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002303 }
2304 }
Florin Corase003a1b2019-06-05 10:47:16 -07002305 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002306 svm_msg_q_unlock (mq);
2307
Florin Coras134a9962018-08-28 11:32:04 -07002308 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002309 {
Florin Coras134a9962018-08-28 11:32:04 -07002310 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002311 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002312 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2313 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002314 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002315 }
Florin Coras134a9962018-08-28 11:32:04 -07002316 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002317 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002318 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002319}
2320
Florin Coras99368312018-08-02 10:45:44 -07002321static int
Florin Coras294afe22019-01-07 17:49:17 -08002322vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2323 vcl_si_set * read_map, vcl_si_set * write_map,
2324 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002325 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002326{
Florin Coras14ed6df2019-03-06 21:13:42 -08002327 double wait = 0, start = 0;
2328
2329 if (!*bits_set)
2330 {
2331 wait = time_to_wait;
2332 start = clib_time_now (&wrk->clib_time);
2333 }
2334
2335 do
2336 {
2337 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2338 write_map, except_map, wait, bits_set);
2339 if (*bits_set)
2340 return *bits_set;
2341 if (wait == -1)
2342 continue;
2343
2344 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2345 }
2346 while (wait > 0);
2347
2348 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002349}
2350
2351static int
Florin Coras294afe22019-01-07 17:49:17 -08002352vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2353 vcl_si_set * read_map, vcl_si_set * write_map,
2354 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002355 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002356{
2357 vcl_mq_evt_conn_t *mqc;
2358 int __clib_unused n_read;
2359 int n_mq_evts, i;
2360 u64 buf;
2361
Florin Coras134a9962018-08-28 11:32:04 -07002362 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2363 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2364 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002365 for (i = 0; i < n_mq_evts; i++)
2366 {
Florin Coras134a9962018-08-28 11:32:04 -07002367 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002368 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002369 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002370 except_map, 0, bits_set);
2371 }
2372
2373 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2374}
2375
Dave Wallace543852a2017-08-03 02:11:34 -04002376int
Florin Coras294afe22019-01-07 17:49:17 -08002377vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2378 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002379{
Florin Coras54693d22018-07-17 10:46:29 -07002380 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002381 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002382 vcl_session_t *session = 0;
Florin Corasf49cf472020-04-19 23:12:08 +00002383 int i;
Dave Wallace543852a2017-08-03 02:11:34 -04002384
Dave Wallace7876d392017-10-19 03:53:57 -04002385 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002386 {
Florin Coras134a9962018-08-28 11:32:04 -07002387 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002388 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002389 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2390 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002391 }
Dave Wallace7876d392017-10-19 03:53:57 -04002392 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002393 {
Florin Coras134a9962018-08-28 11:32:04 -07002394 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002395 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002396 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2397 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002398 }
Dave Wallace7876d392017-10-19 03:53:57 -04002399 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002400 {
Florin Coras134a9962018-08-28 11:32:04 -07002401 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002402 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002403 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2404 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002405 }
2406
Florin Coras54693d22018-07-17 10:46:29 -07002407 if (!n_bits)
2408 return 0;
2409
2410 if (!write_map)
2411 goto check_rd;
2412
2413 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002414 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2415 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002416 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002417 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2418 bits_set++;
2419 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002420 }
2421
Florin Coras5e6222a2020-04-24 17:09:25 +00002422 if (vcl_session_write_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002423 {
David Johnsond9818dd2018-12-14 14:53:41 -05002424 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002425 bits_set++;
2426 }
Florin Coras294afe22019-01-07 17:49:17 -08002427 else
Florin Coras2d379d82019-06-28 12:45:12 -07002428 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002429 }));
2430
2431check_rd:
2432 if (!read_map)
2433 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002434
Florin Coras134a9962018-08-28 11:32:04 -07002435 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2436 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002437 {
Florin Coras5e6222a2020-04-24 17:09:25 +00002438 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2439 bits_set++;
2440 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002441 }
2442
Florin Coras5e6222a2020-04-24 17:09:25 +00002443 if (vcl_session_read_ready (session))
Florin Coras54693d22018-07-17 10:46:29 -07002444 {
David Johnsond9818dd2018-12-14 14:53:41 -05002445 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002446 bits_set++;
2447 }
2448 }));
2449 /* *INDENT-ON* */
2450
2451check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002452
Florin Coras86f04502018-09-12 16:08:01 -07002453 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2454 {
2455 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2456 read_map, write_map, except_map, &bits_set);
2457 }
2458 vec_reset_length (wrk->unhandled_evts_vector);
2459
Florin Coras99368312018-08-02 10:45:44 -07002460 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002461 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002462 time_to_wait, &bits_set);
2463 else
Florin Coras134a9962018-08-28 11:32:04 -07002464 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002465 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002466
Dave Wallace543852a2017-08-03 02:11:34 -04002467 return (bits_set);
2468}
2469
Dave Wallacef7f809c2017-10-03 01:48:42 -04002470static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002471vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002472{
Florin Coras7e12d942018-06-27 14:32:43 -07002473 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002474 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002475 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002476
Florin Corasc0737e92019-03-04 14:19:39 -08002477 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002478 return;
2479
Florin Coras7e5e62b2019-07-30 14:08:23 -07002480 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002481 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002482 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002483 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002484 goto done;
2485 }
2486 if (PREDICT_FALSE (!session->is_vep))
2487 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002488 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002489 goto done;
2490 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002491 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002492 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002493 "{\n"
2494 " is_vep = %u\n"
2495 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002496 " next_sh = 0x%x (%u)\n"
2497 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002498 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002499
Florin Coras7e5e62b2019-07-30 14:08:23 -07002500 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002501 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002502 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002503 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002504 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002505 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002506 goto done;
2507 }
2508 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002509 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002510 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002511 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002512 else if (PREDICT_FALSE (!session->is_vep_session))
2513 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002514 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002515 goto done;
2516 }
2517 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002518 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2519 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2520 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002521 if (session->is_vep_session)
2522 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002523 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002524 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002525 " next_sh = 0x%x (%u)\n"
2526 " prev_sh = 0x%x (%u)\n"
2527 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002528 " ev.events = 0x%x\n"
2529 " ev.data.u64 = 0x%llx\n"
2530 " et_mask = 0x%x\n"
2531 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002532 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002533 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2534 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002535 }
2536 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002537
2538done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002539 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002540}
2541
2542int
2543vppcom_epoll_create (void)
2544{
Florin Coras134a9962018-08-28 11:32:04 -07002545 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002546 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002547
Florin Coras134a9962018-08-28 11:32:04 -07002548 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002549
2550 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002551 vep_session->vep.vep_sh = ~0;
2552 vep_session->vep.next_sh = ~0;
2553 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002554 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002555
Florin Corasa7a1a222018-12-30 17:11:31 -08002556 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2557 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002558
Florin Corasab2f6db2018-08-31 14:31:41 -07002559 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002560}
2561
2562int
Florin Coras134a9962018-08-28 11:32:04 -07002563vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002564 struct epoll_event *event)
2565{
Florin Coras134a9962018-08-28 11:32:04 -07002566 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002567 vcl_session_t *vep_session;
2568 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002569 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002570
Florin Coras134a9962018-08-28 11:32:04 -07002571 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002572 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002573 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002574 return VPPCOM_EINVAL;
2575 }
2576
Florin Coras134a9962018-08-28 11:32:04 -07002577 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002578 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002579 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002580 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002581 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002582 }
2583 if (PREDICT_FALSE (!vep_session->is_vep))
2584 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002585 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002586 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002587 }
2588
Florin Coras134a9962018-08-28 11:32:04 -07002589 ASSERT (vep_session->vep.vep_sh == ~0);
2590 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591
Florin Coras134a9962018-08-28 11:32:04 -07002592 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002593 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002594 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002595 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002596 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002597 }
2598 if (PREDICT_FALSE (session->is_vep))
2599 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002600 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002601 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002602 }
2603
2604 switch (op)
2605 {
2606 case EPOLL_CTL_ADD:
2607 if (PREDICT_FALSE (!event))
2608 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002609 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002610 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002611 }
Florin Coras134a9962018-08-28 11:32:04 -07002612 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002613 {
Florin Coras7e12d942018-06-27 14:32:43 -07002614 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002615 next_session = vcl_session_get_w_handle (wrk,
2616 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002617 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002618 {
Florin Coras5e062572019-03-14 19:07:51 -07002619 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002620 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002621 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002622 }
Florin Coras134a9962018-08-28 11:32:04 -07002623 ASSERT (next_session->vep.prev_sh == vep_handle);
2624 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002625 }
Florin Coras134a9962018-08-28 11:32:04 -07002626 session->vep.next_sh = vep_session->vep.next_sh;
2627 session->vep.prev_sh = vep_handle;
2628 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002629 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2630 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002631 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002632 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002633 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002634
Florin Coras1bcad5c2019-01-09 20:04:38 -08002635 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002636 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2637 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002638
Florin Coras6e3c1f82020-01-15 01:30:46 +00002639 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002640 if ((event->events & EPOLLOUT) &&
2641 (vcl_session_write_ready (session) > 0))
2642 {
2643 session_event_t e = { 0 };
2644 e.event_type = SESSION_IO_EVT_TX;
2645 e.session_index = session->session_index;
2646 vec_add1 (wrk->unhandled_evts_vector, e);
2647 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002648 /* Generate EPOLLIN if rx fifo has data */
2649 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2650 {
2651 session_event_t e = { 0 };
2652 e.event_type = SESSION_IO_EVT_RX;
2653 e.session_index = session->session_index;
2654 vec_add1 (wrk->unhandled_evts_vector, e);
2655 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002656 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2657 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002658 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002659 break;
2660
2661 case EPOLL_CTL_MOD:
2662 if (PREDICT_FALSE (!event))
2663 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002664 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002665 rv = VPPCOM_EINVAL;
2666 goto done;
2667 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002668 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002669 {
Florin Coras5e062572019-03-14 19:07:51 -07002670 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002671 rv = VPPCOM_EINVAL;
2672 goto done;
2673 }
Florin Coras134a9962018-08-28 11:32:04 -07002674 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002675 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002676 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2677 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002678 rv = VPPCOM_EINVAL;
2679 goto done;
2680 }
hanlin475c9d72019-12-26 11:44:28 +08002681
2682 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2683 if ((event->events & EPOLLOUT) &&
2684 !(session->vep.ev.events & EPOLLOUT) &&
2685 (vcl_session_write_ready (session) > 0))
2686 {
2687 session_event_t e = { 0 };
2688 e.event_type = SESSION_IO_EVT_TX;
2689 e.session_index = session->session_index;
2690 vec_add1 (wrk->unhandled_evts_vector, e);
2691 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002692 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2693 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002694 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2695 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002696 break;
2697
2698 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002699 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002700 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002701 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002702 rv = VPPCOM_EINVAL;
2703 goto done;
2704 }
Florin Coras134a9962018-08-28 11:32:04 -07002705 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002706 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002707 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2708 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002709 rv = VPPCOM_EINVAL;
2710 goto done;
2711 }
2712
Florin Coras134a9962018-08-28 11:32:04 -07002713 if (session->vep.prev_sh == vep_handle)
2714 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002715 else
2716 {
Florin Coras7e12d942018-06-27 14:32:43 -07002717 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002718 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002719 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002720 {
Florin Coras5e062572019-03-14 19:07:51 -07002721 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002722 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002723 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002724 }
Florin Coras134a9962018-08-28 11:32:04 -07002725 ASSERT (prev_session->vep.next_sh == session_handle);
2726 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002727 }
Florin Coras134a9962018-08-28 11:32:04 -07002728 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002729 {
Florin Coras7e12d942018-06-27 14:32:43 -07002730 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002731 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002732 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002733 {
Florin Coras5e062572019-03-14 19:07:51 -07002734 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002735 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002736 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002737 }
Florin Coras134a9962018-08-28 11:32:04 -07002738 ASSERT (next_session->vep.prev_sh == session_handle);
2739 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002740 }
2741
2742 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002743 session->vep.next_sh = ~0;
2744 session->vep.prev_sh = ~0;
2745 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002746 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002747
2748 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002749 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002750
Florin Coras5e062572019-03-14 19:07:51 -07002751 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002752 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002753 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002754 break;
2755
2756 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002757 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002758 rv = VPPCOM_EINVAL;
2759 }
2760
Florin Coras134a9962018-08-28 11:32:04 -07002761 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002762
2763done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002764 return rv;
2765}
2766
Florin Coras86f04502018-09-12 16:08:01 -07002767static inline void
2768vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2769 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002770{
2771 session_disconnected_msg_t *disconnected_msg;
2772 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002773 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002774 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002775 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002776 u8 add_event = 0;
2777
2778 switch (e->event_type)
2779 {
Florin Coras653e43f2019-03-04 10:56:23 -08002780 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002781 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002782 session = vcl_session_get (wrk, sid);
2783 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002784 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002785 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002786 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002787 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002788 break;
2789 add_event = 1;
2790 events[*num_ev].events |= EPOLLIN;
2791 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002792 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002793 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002794 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002795 sid = e->session_index;
Florin Coras080aa502020-05-26 00:47:52 +00002796 session = vcl_session_get (wrk, sid);
2797 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002798 break;
Florin Coras86f04502018-09-12 16:08:01 -07002799 session_events = session->vep.ev.events;
2800 if (!(EPOLLOUT & session_events))
2801 break;
2802 add_event = 1;
2803 events[*num_ev].events |= EPOLLOUT;
2804 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002805 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002806 break;
Florin Coras86f04502018-09-12 16:08:01 -07002807 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002808 session = vcl_session_accepted (wrk,
2809 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002810 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002811 break;
Florin Coras86f04502018-09-12 16:08:01 -07002812
Florin Coras86f04502018-09-12 16:08:01 -07002813 session_events = session->vep.ev.events;
2814 if (!(EPOLLIN & session_events))
2815 break;
2816
2817 add_event = 1;
2818 events[*num_ev].events |= EPOLLIN;
2819 session_evt_data = session->vep.ev.data.u64;
2820 break;
2821 case SESSION_CTRL_EVT_CONNECTED:
2822 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002823 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002824 /* Generate EPOLLOUT because there's no connected event */
Florin Coras080aa502020-05-26 00:47:52 +00002825 session = vcl_session_get (wrk, sid);
2826 if (vcl_session_is_closed (session))
Florin Corasfa915f82018-12-26 16:29:06 -08002827 break;
Florin Coras86f04502018-09-12 16:08:01 -07002828 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002829 if (!(EPOLLOUT & session_events))
2830 break;
2831 add_event = 1;
2832 events[*num_ev].events |= EPOLLOUT;
2833 session_evt_data = session->vep.ev.data.u64;
Florin Corasadcfb152020-02-12 08:50:29 +00002834 if (session->session_state & STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002835 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002836 break;
2837 case SESSION_CTRL_EVT_DISCONNECTED:
2838 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002839 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Coras080aa502020-05-26 00:47:52 +00002840 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002841 break;
Florin Coras72f77822019-01-22 19:05:52 -08002842 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002843 add_event = 1;
2844 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2845 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002846 break;
2847 case SESSION_CTRL_EVT_RESET:
2848 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras080aa502020-05-26 00:47:52 +00002849 session = vcl_session_get (wrk, sid);
2850 if (vcl_session_is_closed (session))
Florin Coras86f04502018-09-12 16:08:01 -07002851 break;
Florin Coras72f77822019-01-22 19:05:52 -08002852 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002853 add_event = 1;
2854 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2855 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002856 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002857 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2858 vcl_session_unlisten_reply_handler (wrk, e->data);
2859 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002860 case SESSION_CTRL_EVT_MIGRATED:
2861 vcl_session_migrated_handler (wrk, e->data);
2862 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002863 case SESSION_CTRL_EVT_CLEANUP:
2864 vcl_session_cleanup_handler (wrk, e->data);
2865 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002866 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2867 vcl_session_req_worker_update_handler (wrk, e->data);
2868 break;
2869 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2870 vcl_session_worker_update_reply_handler (wrk, e->data);
2871 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002872 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2873 vcl_session_app_add_segment_handler (wrk, e->data);
2874 break;
2875 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2876 vcl_session_app_del_segment_handler (wrk, e->data);
2877 break;
Florin Coras86f04502018-09-12 16:08:01 -07002878 default:
2879 VDBG (0, "unhandled: %u", e->event_type);
2880 break;
2881 }
2882
2883 if (add_event)
2884 {
2885 events[*num_ev].data.u64 = session_evt_data;
2886 if (EPOLLONESHOT & session_events)
2887 {
2888 session = vcl_session_get (wrk, sid);
2889 session->vep.ev.events = 0;
2890 }
2891 *num_ev += 1;
2892 }
2893}
2894
2895static int
2896vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2897 struct epoll_event *events, u32 maxevents,
2898 double wait_for_time, u32 * num_ev)
2899{
Florin Coras99368312018-08-02 10:45:44 -07002900 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002901 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002902 int i;
2903
Florin Coras539663c2018-09-28 14:59:37 -07002904 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2905 goto handle_dequeued;
2906
Florin Coras54693d22018-07-17 10:46:29 -07002907 svm_msg_q_lock (mq);
2908 if (svm_msg_q_is_empty (mq))
2909 {
2910 if (!wait_for_time)
2911 {
2912 svm_msg_q_unlock (mq);
2913 return 0;
2914 }
2915 else if (wait_for_time < 0)
2916 {
2917 svm_msg_q_wait (mq);
2918 }
2919 else
2920 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002921 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002922 {
2923 svm_msg_q_unlock (mq);
2924 return 0;
2925 }
2926 }
2927 }
Florin Corase003a1b2019-06-05 10:47:16 -07002928 ASSERT (maxevents > *num_ev);
hanlind0e646f2020-05-11 22:20:37 +08002929 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002930 svm_msg_q_unlock (mq);
2931
Florin Coras539663c2018-09-28 14:59:37 -07002932handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002933 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002934 {
Florin Coras134a9962018-08-28 11:32:04 -07002935 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002936 e = svm_msg_q_msg_data (mq, msg);
hanlind0e646f2020-05-11 22:20:37 +08002937 if (*num_ev < maxevents)
2938 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2939 else
2940 vcl_handle_mq_event (wrk, e);
Florin Coras99368312018-08-02 10:45:44 -07002941 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002942 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002943 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002944 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002945 return *num_ev;
2946}
2947
Florin Coras99368312018-08-02 10:45:44 -07002948static int
Florin Coras134a9962018-08-28 11:32:04 -07002949vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002950 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002951{
Florin Corase003a1b2019-06-05 10:47:16 -07002952 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002953
2954 if (!n_evts)
2955 {
2956 wait = wait_for_time;
2957 start = clib_time_now (&wrk->clib_time);
2958 }
2959
2960 do
2961 {
2962 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2963 wait, &n_evts);
2964 if (n_evts)
2965 return n_evts;
2966 if (wait == -1)
2967 continue;
2968
Florin Corase003a1b2019-06-05 10:47:16 -07002969 now = clib_time_now (&wrk->clib_time);
Florin Coras0edfb1a2020-08-04 22:45:45 -07002970 wait -= (now - start) * 1e3;
Florin Corase003a1b2019-06-05 10:47:16 -07002971 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002972 }
2973 while (wait > 0);
2974
2975 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002976}
2977
2978static int
Florin Coras134a9962018-08-28 11:32:04 -07002979vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002980 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002981{
2982 vcl_mq_evt_conn_t *mqc;
2983 int __clib_unused n_read;
2984 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002985 u64 buf;
2986
Florin Coras134a9962018-08-28 11:32:04 -07002987 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002988again:
Florin Coras134a9962018-08-28 11:32:04 -07002989 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2990 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002991 for (i = 0; i < n_mq_evts; i++)
2992 {
Florin Coras134a9962018-08-28 11:32:04 -07002993 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002994 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002995 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002996 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002997 if (!n_evts && n_mq_evts > 0)
2998 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002999
3000 return (int) n_evts;
3001}
3002
Dave Wallacef7f809c2017-10-03 01:48:42 -04003003int
Florin Coras134a9962018-08-28 11:32:04 -07003004vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04003005 int maxevents, double wait_for_time)
3006{
Florin Coras134a9962018-08-28 11:32:04 -07003007 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003008 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07003009 u32 n_evts = 0;
3010 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003011
3012 if (PREDICT_FALSE (maxevents <= 0))
3013 {
Florin Coras5e062572019-03-14 19:07:51 -07003014 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003015 return VPPCOM_EINVAL;
3016 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04003017
Florin Coras134a9962018-08-28 11:32:04 -07003018 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07003019 if (!vep_session)
3020 return VPPCOM_EBADFD;
3021
Florin Coras54693d22018-07-17 10:46:29 -07003022 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04003023 {
Florin Coras5e062572019-03-14 19:07:51 -07003024 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07003025 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04003026 }
Florin Coras54693d22018-07-17 10:46:29 -07003027
3028 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003029
Florin Coras86f04502018-09-12 16:08:01 -07003030 if (vec_len (wrk->unhandled_evts_vector))
3031 {
3032 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3033 {
3034 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3035 events, &n_evts);
3036 if (n_evts == maxevents)
3037 {
Florin Corase003a1b2019-06-05 10:47:16 -07003038 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3039 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003040 }
3041 }
Florin Corase003a1b2019-06-05 10:47:16 -07003042 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003043 }
3044
3045 if (vcm->cfg.use_mq_eventfd)
3046 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3047 wait_for_time);
3048
3049 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3050 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003051}
3052
Dave Wallace35830af2017-10-09 01:43:42 -04003053int
Florin Coras134a9962018-08-28 11:32:04 -07003054vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003055 void *buffer, uint32_t * buflen)
3056{
Florin Coras134a9962018-08-28 11:32:04 -07003057 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003058 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04003059 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08003060 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003061 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04003062
Florin Coras134a9962018-08-28 11:32:04 -07003063 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003064 if (!session)
3065 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003066
Dave Wallace35830af2017-10-09 01:43:42 -04003067 switch (op)
3068 {
3069 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003070 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003071 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3072 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003073 break;
3074
Dave Wallace227867f2017-11-13 21:21:53 -05003075 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003076 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003077 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3078 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003079 break;
3080
3081 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003082 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003083 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003084 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
3085 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003086 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003087 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3088 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003089 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003090 }
3091 else
3092 rv = VPPCOM_EINVAL;
3093 break;
3094
3095 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003096 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003097 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003098 if (*flags & O_NONBLOCK)
3099 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3100 else
3101 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3102
Florin Coras5e062572019-03-14 19:07:51 -07003103 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3104 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003105 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003106 }
3107 else
3108 rv = VPPCOM_EINVAL;
3109 break;
3110
3111 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003112 if (PREDICT_TRUE (buffer && buflen &&
3113 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003114 {
Florin Coras7e12d942018-06-27 14:32:43 -07003115 ep->is_ip4 = session->transport.is_ip4;
3116 ep->port = session->transport.rmt_port;
3117 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003118 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3119 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003120 else
Dave Barach178cf492018-11-13 16:34:13 -05003121 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3122 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003123 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003124 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3125 "addr = %U, port %u", session_handle, ep->is_ip4,
3126 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003127 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3128 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003129 }
3130 else
3131 rv = VPPCOM_EINVAL;
3132 break;
3133
3134 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003135 if (PREDICT_TRUE (buffer && buflen &&
3136 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003137 {
Florin Coras7e12d942018-06-27 14:32:43 -07003138 ep->is_ip4 = session->transport.is_ip4;
3139 ep->port = session->transport.lcl_port;
3140 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003141 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3142 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003143 else
Dave Barach178cf492018-11-13 16:34:13 -05003144 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3145 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003146 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003147 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3148 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003149 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003150 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3151 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003152 }
3153 else
3154 rv = VPPCOM_EINVAL;
3155 break;
Stevenb5a11602017-10-11 09:59:30 -07003156
Florin Corasef7cbf62019-10-17 09:56:27 -07003157 case VPPCOM_ATTR_SET_LCL_ADDR:
3158 if (PREDICT_TRUE (buffer && buflen &&
3159 (*buflen >= sizeof (*ep)) && ep->ip))
3160 {
3161 session->transport.is_ip4 = ep->is_ip4;
3162 session->transport.lcl_port = ep->port;
3163 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3164 *buflen = sizeof (*ep);
3165 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3166 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3167 &session->transport.lcl_ip,
3168 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3169 clib_net_to_host_u16 (ep->port));
3170 }
3171 else
3172 rv = VPPCOM_EINVAL;
3173 break;
3174
Dave Wallace048b1d62018-01-03 22:24:41 -05003175 case VPPCOM_ATTR_GET_LIBC_EPFD:
3176 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003177 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003178 break;
3179
3180 case VPPCOM_ATTR_SET_LIBC_EPFD:
3181 if (PREDICT_TRUE (buffer && buflen &&
3182 (*buflen == sizeof (session->libc_epfd))))
3183 {
3184 session->libc_epfd = *(int *) buffer;
3185 *buflen = sizeof (session->libc_epfd);
3186
Florin Coras5e062572019-03-14 19:07:51 -07003187 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3188 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003189 }
3190 else
3191 rv = VPPCOM_EINVAL;
3192 break;
3193
3194 case VPPCOM_ATTR_GET_PROTOCOL:
3195 if (buffer && buflen && (*buflen >= sizeof (int)))
3196 {
Florin Coras7e12d942018-06-27 14:32:43 -07003197 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003198 *buflen = sizeof (int);
3199
Florin Coras5e062572019-03-14 19:07:51 -07003200 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3201 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003202 }
3203 else
3204 rv = VPPCOM_EINVAL;
3205 break;
3206
3207 case VPPCOM_ATTR_GET_LISTEN:
3208 if (buffer && buflen && (*buflen >= sizeof (int)))
3209 {
3210 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3211 VCL_SESS_ATTR_LISTEN);
3212 *buflen = sizeof (int);
3213
Florin Coras5e062572019-03-14 19:07:51 -07003214 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3215 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003216 }
3217 else
3218 rv = VPPCOM_EINVAL;
3219 break;
3220
3221 case VPPCOM_ATTR_GET_ERROR:
3222 if (buffer && buflen && (*buflen >= sizeof (int)))
3223 {
3224 *(int *) buffer = 0;
3225 *buflen = sizeof (int);
3226
Florin Coras5e062572019-03-14 19:07:51 -07003227 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3228 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003229 }
3230 else
3231 rv = VPPCOM_EINVAL;
3232 break;
3233
3234 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3235 if (buffer && buflen && (*buflen >= sizeof (u32)))
3236 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003237
3238 /* VPP-TBD */
3239 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003240 session->tx_fifo ?
3241 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003242 vcm->cfg.tx_fifo_size);
3243 *buflen = sizeof (u32);
3244
Florin Coras5e062572019-03-14 19:07:51 -07003245 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3246 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3247 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003248 }
3249 else
3250 rv = VPPCOM_EINVAL;
3251 break;
3252
3253 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3254 if (buffer && buflen && (*buflen == sizeof (u32)))
3255 {
3256 /* VPP-TBD */
3257 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003258 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3259 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3260 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003261 }
3262 else
3263 rv = VPPCOM_EINVAL;
3264 break;
3265
3266 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3267 if (buffer && buflen && (*buflen >= sizeof (u32)))
3268 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003269
3270 /* VPP-TBD */
3271 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003272 session->rx_fifo ?
3273 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003274 vcm->cfg.rx_fifo_size);
3275 *buflen = sizeof (u32);
3276
Florin Coras5e062572019-03-14 19:07:51 -07003277 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3278 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003279 }
3280 else
3281 rv = VPPCOM_EINVAL;
3282 break;
3283
3284 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3285 if (buffer && buflen && (*buflen == sizeof (u32)))
3286 {
3287 /* VPP-TBD */
3288 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003289 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3290 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3291 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003292 }
3293 else
3294 rv = VPPCOM_EINVAL;
3295 break;
3296
3297 case VPPCOM_ATTR_GET_REUSEADDR:
3298 if (buffer && buflen && (*buflen >= sizeof (int)))
3299 {
3300 /* VPP-TBD */
3301 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3302 VCL_SESS_ATTR_REUSEADDR);
3303 *buflen = sizeof (int);
3304
Florin Coras5e062572019-03-14 19:07:51 -07003305 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3306 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003307 }
3308 else
3309 rv = VPPCOM_EINVAL;
3310 break;
3311
Stevenb5a11602017-10-11 09:59:30 -07003312 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003313 if (buffer && buflen && (*buflen == sizeof (int)) &&
3314 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3315 {
3316 /* VPP-TBD */
3317 if (*(int *) buffer)
3318 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3319 else
3320 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3321
Florin Coras5e062572019-03-14 19:07:51 -07003322 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3323 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3324 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003325 }
3326 else
3327 rv = VPPCOM_EINVAL;
3328 break;
3329
3330 case VPPCOM_ATTR_GET_REUSEPORT:
3331 if (buffer && buflen && (*buflen >= sizeof (int)))
3332 {
3333 /* VPP-TBD */
3334 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3335 VCL_SESS_ATTR_REUSEPORT);
3336 *buflen = sizeof (int);
3337
Florin Coras5e062572019-03-14 19:07:51 -07003338 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3339 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003340 }
3341 else
3342 rv = VPPCOM_EINVAL;
3343 break;
3344
3345 case VPPCOM_ATTR_SET_REUSEPORT:
3346 if (buffer && buflen && (*buflen == sizeof (int)) &&
3347 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3348 {
3349 /* VPP-TBD */
3350 if (*(int *) buffer)
3351 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3352 else
3353 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3354
Florin Coras5e062572019-03-14 19:07:51 -07003355 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3356 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3357 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003358 }
3359 else
3360 rv = VPPCOM_EINVAL;
3361 break;
3362
3363 case VPPCOM_ATTR_GET_BROADCAST:
3364 if (buffer && buflen && (*buflen >= sizeof (int)))
3365 {
3366 /* VPP-TBD */
3367 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3368 VCL_SESS_ATTR_BROADCAST);
3369 *buflen = sizeof (int);
3370
Florin Coras5e062572019-03-14 19:07:51 -07003371 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3372 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003373 }
3374 else
3375 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003376 break;
3377
3378 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003379 if (buffer && buflen && (*buflen == sizeof (int)))
3380 {
3381 /* VPP-TBD */
3382 if (*(int *) buffer)
3383 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3384 else
3385 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3386
Florin Coras5e062572019-03-14 19:07:51 -07003387 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3388 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3389 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003390 }
3391 else
3392 rv = VPPCOM_EINVAL;
3393 break;
3394
3395 case VPPCOM_ATTR_GET_V6ONLY:
3396 if (buffer && buflen && (*buflen >= sizeof (int)))
3397 {
3398 /* VPP-TBD */
3399 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3400 VCL_SESS_ATTR_V6ONLY);
3401 *buflen = sizeof (int);
3402
Florin Coras5e062572019-03-14 19:07:51 -07003403 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3404 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003405 }
3406 else
3407 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003408 break;
3409
3410 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003411 if (buffer && buflen && (*buflen == sizeof (int)))
3412 {
3413 /* VPP-TBD */
3414 if (*(int *) buffer)
3415 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3416 else
3417 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3418
Florin Coras5e062572019-03-14 19:07:51 -07003419 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3420 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3421 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003422 }
3423 else
3424 rv = VPPCOM_EINVAL;
3425 break;
3426
3427 case VPPCOM_ATTR_GET_KEEPALIVE:
3428 if (buffer && buflen && (*buflen >= sizeof (int)))
3429 {
3430 /* VPP-TBD */
3431 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3432 VCL_SESS_ATTR_KEEPALIVE);
3433 *buflen = sizeof (int);
3434
Florin Coras5e062572019-03-14 19:07:51 -07003435 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3436 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003437 }
3438 else
3439 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003440 break;
Stevenbccd3392017-10-12 20:42:21 -07003441
3442 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003443 if (buffer && buflen && (*buflen == sizeof (int)))
3444 {
3445 /* VPP-TBD */
3446 if (*(int *) buffer)
3447 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3448 else
3449 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3450
Florin Coras5e062572019-03-14 19:07:51 -07003451 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3452 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3453 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003454 }
3455 else
3456 rv = VPPCOM_EINVAL;
3457 break;
3458
3459 case VPPCOM_ATTR_GET_TCP_NODELAY:
3460 if (buffer && buflen && (*buflen >= sizeof (int)))
3461 {
3462 /* VPP-TBD */
3463 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3464 VCL_SESS_ATTR_TCP_NODELAY);
3465 *buflen = sizeof (int);
3466
Florin Coras5e062572019-03-14 19:07:51 -07003467 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3468 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003469 }
3470 else
3471 rv = VPPCOM_EINVAL;
3472 break;
3473
3474 case VPPCOM_ATTR_SET_TCP_NODELAY:
3475 if (buffer && buflen && (*buflen == sizeof (int)))
3476 {
3477 /* VPP-TBD */
3478 if (*(int *) buffer)
3479 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3480 else
3481 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3482
Florin Coras5e062572019-03-14 19:07:51 -07003483 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3484 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3485 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003486 }
3487 else
3488 rv = VPPCOM_EINVAL;
3489 break;
3490
3491 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3492 if (buffer && buflen && (*buflen >= sizeof (int)))
3493 {
3494 /* VPP-TBD */
3495 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3496 VCL_SESS_ATTR_TCP_KEEPIDLE);
3497 *buflen = sizeof (int);
3498
Florin Coras5e062572019-03-14 19:07:51 -07003499 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3500 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003501 }
3502 else
3503 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003504 break;
3505
3506 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003507 if (buffer && buflen && (*buflen == sizeof (int)))
3508 {
3509 /* VPP-TBD */
3510 if (*(int *) buffer)
3511 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3512 else
3513 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3514
Florin Coras5e062572019-03-14 19:07:51 -07003515 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003516 VCL_SESS_ATTR_TEST (session->attr,
3517 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003518 }
3519 else
3520 rv = VPPCOM_EINVAL;
3521 break;
3522
3523 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3524 if (buffer && buflen && (*buflen >= sizeof (int)))
3525 {
3526 /* VPP-TBD */
3527 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3528 VCL_SESS_ATTR_TCP_KEEPINTVL);
3529 *buflen = sizeof (int);
3530
Florin Coras5e062572019-03-14 19:07:51 -07003531 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3532 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003533 }
3534 else
3535 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003536 break;
3537
3538 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003539 if (buffer && buflen && (*buflen == sizeof (int)))
3540 {
3541 /* VPP-TBD */
3542 if (*(int *) buffer)
3543 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3544 else
3545 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3546
Florin Coras5e062572019-03-14 19:07:51 -07003547 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003548 VCL_SESS_ATTR_TEST (session->attr,
3549 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003550 }
3551 else
3552 rv = VPPCOM_EINVAL;
3553 break;
3554
3555 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3556 if (buffer && buflen && (*buflen >= sizeof (u32)))
3557 {
3558 /* VPP-TBD */
3559 *(u32 *) buffer = session->user_mss;
3560 *buflen = sizeof (int);
3561
Florin Coras5e062572019-03-14 19:07:51 -07003562 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3563 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003564 }
3565 else
3566 rv = VPPCOM_EINVAL;
3567 break;
3568
3569 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3570 if (buffer && buflen && (*buflen == sizeof (u32)))
3571 {
3572 /* VPP-TBD */
3573 session->user_mss = *(u32 *) buffer;
3574
Florin Coras5e062572019-03-14 19:07:51 -07003575 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3576 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003577 }
3578 else
3579 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003580 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003581
Florin Coras7baeb712019-01-04 17:05:43 -08003582 case VPPCOM_ATTR_SET_SHUT:
3583 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3584 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3585 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3586 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3587 break;
3588
3589 case VPPCOM_ATTR_GET_SHUT:
3590 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3591 tmp_flags = 1;
3592 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3593 tmp_flags |= 2;
3594 if (tmp_flags == 1)
3595 *(int *) buffer = SHUT_RD;
3596 else if (tmp_flags == 2)
3597 *(int *) buffer = SHUT_WR;
3598 else if (tmp_flags == 3)
3599 *(int *) buffer = SHUT_RDWR;
3600 *buflen = sizeof (int);
3601 break;
Florin Coras1e966172020-05-16 18:18:14 +00003602
3603 case VPPCOM_ATTR_SET_CONNECTED:
3604 session->flags |= VCL_SESSION_F_CONNECTED;
3605 break;
3606
Dave Wallacee22aa742017-10-20 12:30:38 -04003607 default:
3608 rv = VPPCOM_EINVAL;
3609 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003610 }
3611
Dave Wallace35830af2017-10-09 01:43:42 -04003612 return rv;
3613}
3614
Stevenac1f96d2017-10-24 16:03:58 -07003615int
Florin Coras134a9962018-08-28 11:32:04 -07003616vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003617 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3618{
Florin Coras134a9962018-08-28 11:32:04 -07003619 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras5da10c42020-04-01 04:31:21 +00003620 vcl_session_t *session;
Stevenac1f96d2017-10-24 16:03:58 -07003621 int rv = VPPCOM_OK;
Steven58f464e2017-10-25 12:33:12 -07003622
3623 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003624 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003625 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003626 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003627 else
3628 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003629 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003630 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003631 }
3632
Florin Coras0a1e1832020-03-29 18:54:04 +00003633 if (ep && rv > 0)
Florin Coras99368312018-08-02 10:45:44 -07003634 {
Florin Coras5da10c42020-04-01 04:31:21 +00003635 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras99368312018-08-02 10:45:44 -07003636 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003637 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3638 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003639 else
Dave Barach178cf492018-11-13 16:34:13 -05003640 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3641 sizeof (ip6_address_t));
Florin Coras5da10c42020-04-01 04:31:21 +00003642 ep->is_ip4 = session->transport.is_ip4;
3643 ep->port = session->transport.rmt_port;
Florin Coras99368312018-08-02 10:45:44 -07003644 }
Florin Coras460dce62018-07-27 05:45:06 -07003645
Stevenac1f96d2017-10-24 16:03:58 -07003646 return rv;
3647}
3648
3649int
Florin Coras134a9962018-08-28 11:32:04 -07003650vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003651 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3652{
Florin Coras7a2abce2020-04-05 19:25:44 +00003653 vcl_worker_t *wrk = vcl_worker_get_current ();
3654 vcl_session_t *s;
3655
3656 s = vcl_session_get_w_handle (wrk, session_handle);
3657 if (!s)
3658 return VPPCOM_EBADFD;
3659
Dave Wallace617dffa2017-10-26 14:47:06 -04003660 if (!buffer)
3661 return VPPCOM_EINVAL;
3662
3663 if (ep)
3664 {
Florin Coras0a1e1832020-03-29 18:54:04 +00003665 if (s->session_type != VPPCOM_PROTO_UDP
3666 || (s->flags & VCL_SESSION_F_CONNECTED))
Florin Coras5da10c42020-04-01 04:31:21 +00003667 return VPPCOM_EINVAL;
3668
3669 /* Session not connected/bound in vpp. Create it by 'connecting' it */
3670 if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3671 {
3672 vcl_send_session_connect (wrk, s);
3673 }
3674 else
3675 {
3676 s->transport.is_ip4 = ep->is_ip4;
3677 s->transport.rmt_port = ep->port;
3678 vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3679 }
Dave Wallace617dffa2017-10-26 14:47:06 -04003680 }
3681
3682 if (flags)
3683 {
3684 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003685 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003686 }
3687
Florin Coras7a2abce2020-04-05 19:25:44 +00003688 return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3689 s->is_dgram ? 1 : 0));
Stevenac1f96d2017-10-24 16:03:58 -07003690}
3691
Dave Wallace048b1d62018-01-03 22:24:41 -05003692int
3693vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3694{
Florin Coras134a9962018-08-28 11:32:04 -07003695 vcl_worker_t *wrk = vcl_worker_get_current ();
3696 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003697 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003698 svm_msg_q_msg_t msg;
3699 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003700 int rv, num_ev = 0;
3701
Florin Coras5e062572019-03-14 19:07:51 -07003702 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003703
3704 if (!vp)
3705 return VPPCOM_EFAULT;
3706
3707 do
3708 {
Florin Coras7e12d942018-06-27 14:32:43 -07003709 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003710
Florin Coras6917b942018-11-13 22:44:54 -08003711 /* Dequeue all events and drop all unhandled io events */
3712 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3713 {
3714 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3715 vcl_handle_mq_event (wrk, e);
3716 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3717 }
3718 vec_reset_length (wrk->unhandled_evts_vector);
3719
Dave Wallace048b1d62018-01-03 22:24:41 -05003720 for (i = 0; i < n_sids; i++)
3721 {
Florin Coras7baeb712019-01-04 17:05:43 -08003722 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003723 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003724 {
3725 vp[i].revents = POLLHUP;
3726 num_ev++;
3727 continue;
3728 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003729
Florin Coras6917b942018-11-13 22:44:54 -08003730 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003731
3732 if (POLLIN & vp[i].events)
3733 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003734 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003735 if (rv > 0)
3736 {
Florin Coras6917b942018-11-13 22:44:54 -08003737 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003738 num_ev++;
3739 }
3740 else if (rv < 0)
3741 {
3742 switch (rv)
3743 {
3744 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003745 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003746 break;
3747
3748 default:
Florin Coras6917b942018-11-13 22:44:54 -08003749 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003750 break;
3751 }
3752 num_ev++;
3753 }
3754 }
3755
3756 if (POLLOUT & vp[i].events)
3757 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003758 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003759 if (rv > 0)
3760 {
Florin Coras6917b942018-11-13 22:44:54 -08003761 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003762 num_ev++;
3763 }
3764 else if (rv < 0)
3765 {
3766 switch (rv)
3767 {
3768 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003769 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003770 break;
3771
3772 default:
Florin Coras6917b942018-11-13 22:44:54 -08003773 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003774 break;
3775 }
3776 num_ev++;
3777 }
3778 }
3779
Dave Wallace7e607a72018-06-18 18:41:32 -04003780 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003781 {
Florin Coras6917b942018-11-13 22:44:54 -08003782 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003783 num_ev++;
3784 }
3785 }
3786 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003787 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003788 }
3789 while ((num_ev == 0) && keep_trying);
3790
Dave Wallace048b1d62018-01-03 22:24:41 -05003791 return num_ev;
3792}
3793
Florin Coras99368312018-08-02 10:45:44 -07003794int
3795vppcom_mq_epoll_fd (void)
3796{
Florin Coras134a9962018-08-28 11:32:04 -07003797 vcl_worker_t *wrk = vcl_worker_get_current ();
3798 return wrk->mqs_epfd;
3799}
3800
3801int
Florin Coras30e79c22019-01-02 19:31:22 -08003802vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003803{
3804 return session_handle & 0xFFFFFF;
3805}
3806
3807int
Florin Coras30e79c22019-01-02 19:31:22 -08003808vppcom_session_worker (vcl_session_handle_t session_handle)
3809{
3810 return session_handle >> 24;
3811}
3812
3813int
Florin Coras134a9962018-08-28 11:32:04 -07003814vppcom_worker_register (void)
3815{
Florin Corasd4c70922019-11-28 14:21:21 -08003816 vcl_worker_t *wrk;
3817 u8 *wrk_name = 0;
3818 int rv;
3819
Florin Coras47c40e22018-11-26 17:01:36 -08003820 if (!vcl_worker_alloc_and_init ())
3821 return VPPCOM_EEXIST;
3822
Florin Corasd4c70922019-11-28 14:21:21 -08003823 wrk = vcl_worker_get_current ();
3824 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3825
3826 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3827 vec_free (wrk_name);
3828
3829 if (rv)
3830 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003831
3832 if (vcl_worker_register_with_vpp ())
3833 return VPPCOM_EEXIST;
3834
3835 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003836}
3837
Florin Coras369db832019-07-08 12:34:45 -07003838void
3839vppcom_worker_unregister (void)
3840{
3841 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3842 vcl_set_worker_index (~0);
3843}
3844
Pivo6017ff02020-05-04 17:57:33 +02003845void
3846vppcom_worker_index_set (int index)
3847{
3848 vcl_set_worker_index (index);
3849}
3850
Florin Corasdfe4cf42018-11-28 22:13:45 -08003851int
3852vppcom_worker_index (void)
3853{
3854 return vcl_get_worker_index ();
3855}
3856
Florin Corase0982e52019-01-25 13:19:56 -08003857int
3858vppcom_worker_mqs_epfd (void)
3859{
3860 vcl_worker_t *wrk = vcl_worker_get_current ();
3861 if (!vcm->cfg.use_mq_eventfd)
3862 return -1;
3863 return wrk->mqs_epfd;
3864}
3865
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003866int
3867vppcom_session_is_connectable_listener (uint32_t session_handle)
3868{
3869 vcl_session_t *session;
3870 vcl_worker_t *wrk = vcl_worker_get_current ();
3871 session = vcl_session_get_w_handle (wrk, session_handle);
3872 if (!session)
3873 return VPPCOM_EBADFD;
3874 return vcl_session_is_connectable_listener (wrk, session);
3875}
3876
3877int
3878vppcom_session_listener (uint32_t session_handle)
3879{
3880 vcl_worker_t *wrk = vcl_worker_get_current ();
3881 vcl_session_t *listen_session, *session;
3882 session = vcl_session_get_w_handle (wrk, session_handle);
3883 if (!session)
3884 return VPPCOM_EBADFD;
3885 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3886 return VPPCOM_EBADFD;
3887 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3888 if (!listen_session)
3889 return VPPCOM_EBADFD;
3890 return vcl_session_handle (listen_session);
3891}
3892
3893int
3894vppcom_session_n_accepted (uint32_t session_handle)
3895{
3896 vcl_worker_t *wrk = vcl_worker_get_current ();
3897 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3898 if (!session)
3899 return VPPCOM_EBADFD;
3900 return session->n_accepted_sessions;
3901}
3902
Florin Coras66ec4672020-06-15 07:59:40 -07003903const char *
3904vppcom_proto_str (vppcom_proto_t proto)
3905{
3906 char const *proto_str;
3907
3908 switch (proto)
3909 {
3910 case VPPCOM_PROTO_TCP:
3911 proto_str = "TCP";
3912 break;
3913 case VPPCOM_PROTO_UDP:
3914 proto_str = "UDP";
3915 break;
3916 case VPPCOM_PROTO_TLS:
3917 proto_str = "TLS";
3918 break;
3919 case VPPCOM_PROTO_QUIC:
3920 proto_str = "QUIC";
3921 break;
3922 default:
3923 proto_str = "UNKNOWN";
3924 break;
3925 }
3926 return proto_str;
3927}
3928
3929const char *
3930vppcom_retval_str (int retval)
3931{
3932 char const *st;
3933
3934 switch (retval)
3935 {
3936 case VPPCOM_OK:
3937 st = "VPPCOM_OK";
3938 break;
3939
3940 case VPPCOM_EAGAIN:
3941 st = "VPPCOM_EAGAIN";
3942 break;
3943
3944 case VPPCOM_EFAULT:
3945 st = "VPPCOM_EFAULT";
3946 break;
3947
3948 case VPPCOM_ENOMEM:
3949 st = "VPPCOM_ENOMEM";
3950 break;
3951
3952 case VPPCOM_EINVAL:
3953 st = "VPPCOM_EINVAL";
3954 break;
3955
3956 case VPPCOM_EBADFD:
3957 st = "VPPCOM_EBADFD";
3958 break;
3959
3960 case VPPCOM_EAFNOSUPPORT:
3961 st = "VPPCOM_EAFNOSUPPORT";
3962 break;
3963
3964 case VPPCOM_ECONNABORTED:
3965 st = "VPPCOM_ECONNABORTED";
3966 break;
3967
3968 case VPPCOM_ECONNRESET:
3969 st = "VPPCOM_ECONNRESET";
3970 break;
3971
3972 case VPPCOM_ENOTCONN:
3973 st = "VPPCOM_ENOTCONN";
3974 break;
3975
3976 case VPPCOM_ECONNREFUSED:
3977 st = "VPPCOM_ECONNREFUSED";
3978 break;
3979
3980 case VPPCOM_ETIMEDOUT:
3981 st = "VPPCOM_ETIMEDOUT";
3982 break;
3983
3984 default:
3985 st = "UNKNOWN_STATE";
3986 break;
3987 }
3988
3989 return st;
3990}
3991
Dave Wallacee22aa742017-10-20 12:30:38 -04003992/*
3993 * fd.io coding-style-patch-verification: ON
3994 *
3995 * Local Variables:
3996 * eval: (c-set-style "gnu")
3997 * End:
3998 */