blob: 46cea2a1884be4a0d8072698fbce58a06b289ce6 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdio.h>
17#include <stdlib.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040018#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070019#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070020#include <vcl/vcl_private.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/fifo_segment.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Corasd85de682018-11-29 17:02:29 -080025static int
Florin Corasc4c4cf52019-08-24 18:17:34 -070026vcl_segment_is_not_mounted (vcl_worker_t * wrk, u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070027{
Florin Corasc4c4cf52019-08-24 18:17:34 -070028 u32 segment_index;
Florin Coras54693d22018-07-17 10:46:29 -070029
Florin Corasd85de682018-11-29 17:02:29 -080030 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
Florin Coras5f45e012019-01-23 09:21:30 -080031 return 0;
Florin Coras54693d22018-07-17 10:46:29 -070032
Florin Corasc4c4cf52019-08-24 18:17:34 -070033 segment_index = vcl_segment_table_lookup (segment_handle);
34 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
35 return 0;
36
Florin Corasd85de682018-11-29 17:02:29 -080037 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070038}
39
Florin Coras30e79c22019-01-02 19:31:22 -080040static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070041vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080042{
43 svm_msg_q_msg_t *msg;
44 u32 n_msgs;
45 int i;
46
Florin Corase003a1b2019-06-05 10:47:16 -070047 n_msgs = clib_min (svm_msg_q_size (mq), n_max_msg);
Florin Coras30e79c22019-01-02 19:31:22 -080048 for (i = 0; i < n_msgs; i++)
49 {
50 vec_add2 (wrk->mq_msg_vector, msg, 1);
51 svm_msg_q_sub_w_lock (mq, msg);
52 }
53 return n_msgs;
54}
55
Florin Coras697faea2018-06-27 17:10:49 -070056const char *
Florin Coras288eaab2019-02-03 15:26:14 -080057vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040058{
59 char *st;
60
61 switch (state)
62 {
Florin Coras54140622020-02-04 19:04:34 +000063 case STATE_CLOSED:
64 st = "STATE_CLOSED";
Dave Wallace543852a2017-08-03 02:11:34 -040065 break;
66
67 case STATE_CONNECT:
68 st = "STATE_CONNECT";
69 break;
70
71 case STATE_LISTEN:
72 st = "STATE_LISTEN";
73 break;
74
75 case STATE_ACCEPT:
76 st = "STATE_ACCEPT";
77 break;
78
Florin Coras3c7d4f92018-12-14 11:28:43 -080079 case STATE_VPP_CLOSING:
80 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050081 break;
82
Dave Wallace543852a2017-08-03 02:11:34 -040083 case STATE_DISCONNECT:
84 st = "STATE_DISCONNECT";
85 break;
86
Florin Corasadcfb152020-02-12 08:50:29 +000087 case STATE_DETACHED:
88 st = "STATE_DETACHED";
Dave Wallace543852a2017-08-03 02:11:34 -040089 break;
90
Florin Coras2d675d72019-01-28 15:54:27 -080091 case STATE_UPDATED:
92 st = "STATE_UPDATED";
93 break;
94
95 case STATE_LISTEN_NO_MQ:
96 st = "STATE_LISTEN_NO_MQ";
97 break;
98
Dave Wallace543852a2017-08-03 02:11:34 -040099 default:
100 st = "UNKNOWN_STATE";
101 break;
102 }
103
104 return st;
105}
106
Dave Wallace543852a2017-08-03 02:11:34 -0400107u8 *
108format_ip4_address (u8 * s, va_list * args)
109{
110 u8 *a = va_arg (*args, u8 *);
111 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
112}
113
114u8 *
115format_ip6_address (u8 * s, va_list * args)
116{
117 ip6_address_t *a = va_arg (*args, ip6_address_t *);
118 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
119
120 i_max_n_zero = ARRAY_LEN (a->as_u16);
121 max_n_zeros = 0;
122 i_first_zero = i_max_n_zero;
123 n_zeros = 0;
124 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
125 {
126 u32 is_zero = a->as_u16[i] == 0;
127 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
128 {
129 i_first_zero = i;
130 n_zeros = 0;
131 }
132 n_zeros += is_zero;
133 if ((!is_zero && n_zeros > max_n_zeros)
134 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
135 {
136 i_max_n_zero = i_first_zero;
137 max_n_zeros = n_zeros;
138 i_first_zero = ARRAY_LEN (a->as_u16);
139 n_zeros = 0;
140 }
141 }
142
143 last_double_colon = 0;
144 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
145 {
146 if (i == i_max_n_zero && max_n_zeros > 1)
147 {
148 s = format (s, "::");
149 i += max_n_zeros - 1;
150 last_double_colon = 1;
151 }
152 else
153 {
154 s = format (s, "%s%x",
155 (last_double_colon || i == 0) ? "" : ":",
156 clib_net_to_host_u16 (a->as_u16[i]));
157 last_double_colon = 0;
158 }
159 }
160
161 return s;
162}
163
164/* Format an IP46 address. */
165u8 *
166format_ip46_address (u8 * s, va_list * args)
167{
168 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
169 ip46_type_t type = va_arg (*args, ip46_type_t);
170 int is_ip4 = 1;
171
172 switch (type)
173 {
174 case IP46_TYPE_ANY:
175 is_ip4 = ip46_address_is_ip4 (ip46);
176 break;
177 case IP46_TYPE_IP4:
178 is_ip4 = 1;
179 break;
180 case IP46_TYPE_IP6:
181 is_ip4 = 0;
182 break;
183 }
184
185 return is_ip4 ?
186 format (s, "%U", format_ip4_address, &ip46->ip4) :
187 format (s, "%U", format_ip6_address, &ip46->ip6);
188}
189
Florin Coras697faea2018-06-27 17:10:49 -0700190/*
191 * VPPCOM Utility Functions
192 */
193
Florin Coras458089b2019-08-21 16:20:44 -0700194static void
195vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
196{
197 app_session_evt_t _app_evt, *app_evt = &_app_evt;
198 session_listen_msg_t *mp;
199 svm_msg_q_t *mq;
200
201 mq = vcl_worker_ctrl_mq (wrk);
202 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
203 mp = (session_listen_msg_t *) app_evt->evt->data;
204 memset (mp, 0, sizeof (*mp));
205 mp->client_index = wrk->my_client_index;
206 mp->context = s->session_index;
207 mp->wrk_index = wrk->vpp_wrk_index;
208 mp->is_ip4 = s->transport.is_ip4;
209 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
210 mp->port = s->transport.lcl_port;
211 mp->proto = s->session_type;
212 app_send_ctrl_evt_to_vpp (mq, app_evt);
213}
214
215static void
216vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
217{
218 app_session_evt_t _app_evt, *app_evt = &_app_evt;
219 session_connect_msg_t *mp;
220 svm_msg_q_t *mq;
221
222 mq = vcl_worker_ctrl_mq (wrk);
223 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
224 mp = (session_connect_msg_t *) app_evt->evt->data;
225 memset (mp, 0, sizeof (*mp));
226 mp->client_index = wrk->my_client_index;
227 mp->context = s->session_index;
228 mp->wrk_index = wrk->vpp_wrk_index;
229 mp->is_ip4 = s->transport.is_ip4;
230 mp->parent_handle = s->parent_handle;
231 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700232 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700233 mp->port = s->transport.rmt_port;
234 mp->proto = s->session_type;
235 app_send_ctrl_evt_to_vpp (mq, app_evt);
236}
237
238void
239vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
240{
241 app_session_evt_t _app_evt, *app_evt = &_app_evt;
242 session_unlisten_msg_t *mp;
243 svm_msg_q_t *mq;
244
245 mq = vcl_worker_ctrl_mq (wrk);
246 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
247 mp = (session_unlisten_msg_t *) app_evt->evt->data;
248 memset (mp, 0, sizeof (*mp));
249 mp->client_index = wrk->my_client_index;
250 mp->wrk_index = wrk->vpp_wrk_index;
251 mp->handle = s->vpp_handle;
252 mp->context = wrk->wrk_index;
253 app_send_ctrl_evt_to_vpp (mq, app_evt);
254}
255
256static void
257vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
258{
259 app_session_evt_t _app_evt, *app_evt = &_app_evt;
260 session_disconnect_msg_t *mp;
261 svm_msg_q_t *mq;
262
263 /* Send to thread that owns the session */
264 mq = s->vpp_evt_q;
265 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
266 mp = (session_disconnect_msg_t *) app_evt->evt->data;
267 memset (mp, 0, sizeof (*mp));
268 mp->client_index = wrk->my_client_index;
269 mp->handle = s->vpp_handle;
270 app_send_ctrl_evt_to_vpp (mq, app_evt);
271}
272
273static void
274vcl_send_app_detach (vcl_worker_t * wrk)
275{
276 app_session_evt_t _app_evt, *app_evt = &_app_evt;
277 session_app_detach_msg_t *mp;
278 svm_msg_q_t *mq;
279
280 mq = vcl_worker_ctrl_mq (wrk);
281 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
282 mp = (session_app_detach_msg_t *) app_evt->evt->data;
283 memset (mp, 0, sizeof (*mp));
284 mp->client_index = wrk->my_client_index;
285 app_send_ctrl_evt_to_vpp (mq, app_evt);
286}
Florin Coras697faea2018-06-27 17:10:49 -0700287
Florin Coras54693d22018-07-17 10:46:29 -0700288static void
289vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
290 session_handle_t handle, int retval)
291{
292 app_session_evt_t _app_evt, *app_evt = &_app_evt;
293 session_accepted_reply_msg_t *rmp;
294 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
295 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
296 rmp->handle = handle;
297 rmp->context = context;
298 rmp->retval = retval;
299 app_send_ctrl_evt_to_vpp (mq, app_evt);
300}
301
Florin Coras99368312018-08-02 10:45:44 -0700302static void
303vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
304 session_handle_t handle, int retval)
305{
306 app_session_evt_t _app_evt, *app_evt = &_app_evt;
307 session_disconnected_reply_msg_t *rmp;
308 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
309 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
310 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
311 rmp->handle = handle;
312 rmp->context = context;
313 rmp->retval = retval;
314 app_send_ctrl_evt_to_vpp (mq, app_evt);
315}
316
Florin Corasc9fbd662018-08-24 12:59:56 -0700317static void
318vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
319 session_handle_t handle, int retval)
320{
321 app_session_evt_t _app_evt, *app_evt = &_app_evt;
322 session_reset_reply_msg_t *rmp;
323 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
324 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
325 rmp->handle = handle;
326 rmp->context = context;
327 rmp->retval = retval;
328 app_send_ctrl_evt_to_vpp (mq, app_evt);
329}
330
Florin Coras30e79c22019-01-02 19:31:22 -0800331void
332vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
333 u32 wrk_index)
334{
335 app_session_evt_t _app_evt, *app_evt = &_app_evt;
336 session_worker_update_msg_t *mp;
337 svm_msg_q_t *mq;
338
339 mq = vcl_session_vpp_evt_q (wrk, s);
340 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
341 mp = (session_worker_update_msg_t *) app_evt->evt->data;
342 mp->client_index = wrk->my_client_index;
343 mp->handle = s->vpp_handle;
344 mp->req_wrk_index = wrk->vpp_wrk_index;
345 mp->wrk_index = wrk_index;
346 app_send_ctrl_evt_to_vpp (mq, app_evt);
347}
348
Florin Coras54693d22018-07-17 10:46:29 -0700349static u32
Florin Coras00cca802019-06-06 09:38:44 -0700350vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
351 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700352{
353 vcl_session_t *session, *listen_session;
354 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700355 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700356 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700357
Florin Coras134a9962018-08-28 11:32:04 -0700358 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700359
Florin Coras00cca802019-06-06 09:38:44 -0700360 listen_session = vcl_session_get (wrk, ls_index);
361 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700362 {
Florin Coras00cca802019-06-06 09:38:44 -0700363 VDBG (0, "ERROR: listener handle %lu does not match session %u",
364 mp->listener_handle, ls_index);
365 goto error;
366 }
367
Florin Corasc4c4cf52019-08-24 18:17:34 -0700368 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Coras00cca802019-06-06 09:38:44 -0700369 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700370 VDBG (0, "ERROR: segment for session %u is not mounted!",
Florin Coras00cca802019-06-06 09:38:44 -0700371 session->session_index);
372 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700373 }
374
Florin Coras54693d22018-07-17 10:46:29 -0700375 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
376 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Coras653e43f2019-03-04 10:56:23 -0800377 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
378 svm_msg_q_t *);
379 rx_fifo->client_session_index = session->session_index;
380 tx_fifo->client_session_index = session->session_index;
381 rx_fifo->client_thread_index = vcl_get_worker_index ();
382 tx_fifo->client_thread_index = vcl_get_worker_index ();
383 vpp_wrk_index = tx_fifo->master_thread_index;
384 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
385 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700386
387 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800388 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700389 session->rx_fifo = rx_fifo;
390 session->tx_fifo = tx_fifo;
391
392 session->session_state = STATE_ACCEPT;
Florin Coras09d18c22019-04-24 11:10:02 -0700393 session->transport.rmt_port = mp->rmt.port;
394 session->transport.is_ip4 = mp->rmt.is_ip4;
395 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500396 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700397
Florin Coras134a9962018-08-28 11:32:04 -0700398 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700399 session->transport.lcl_port = listen_session->transport.lcl_port;
400 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700401 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200402 session->is_dgram = vcl_proto_is_dgram (session->session_type);
403 session->listener_index = listen_session->session_index;
404 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700405
Florin Coras5e062572019-03-14 19:07:51 -0700406 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
407 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700408 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
409 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
410 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700411 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
412
Florin Coras00cca802019-06-06 09:38:44 -0700413 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
414 session->vpp_handle, 0);
415
Florin Coras134a9962018-08-28 11:32:04 -0700416 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700417
418error:
419 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
420 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
421 VNET_API_ERROR_INVALID_ARGUMENT);
422 vcl_session_free (wrk, session);
423 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700424}
425
426static u32
Florin Coras134a9962018-08-28 11:32:04 -0700427vcl_session_connected_handler (vcl_worker_t * wrk,
428 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700429{
Florin Coras99368312018-08-02 10:45:44 -0700430 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700431 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700432 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -0700433
434 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700435 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700436 if (!session)
437 {
Florin Coras5e062572019-03-14 19:07:51 -0700438 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
439 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700440 return VCL_INVALID_SESSION_INDEX;
441 }
Florin Coras54693d22018-07-17 10:46:29 -0700442 if (mp->retval)
443 {
Florin Coras5e062572019-03-14 19:07:51 -0700444 VDBG (0, "ERROR: session index %u: connect failed! %U",
445 session_index, format_api_error, ntohl (mp->retval));
Florin Corasadcfb152020-02-12 08:50:29 +0000446 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Coras070453d2018-08-24 17:04:27 -0700447 session->vpp_handle = mp->handle;
448 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700449 }
450
Florin Corasdbc9c592019-09-25 16:37:43 -0700451 session->vpp_handle = mp->handle;
452 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
453 svm_msg_q_t *);
Florin Coras460dce62018-07-27 05:45:06 -0700454 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
455 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700456 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Corasd85de682018-11-29 17:02:29 -0800457 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700458 VDBG (0, "segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800459 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000460 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700461 vcl_send_session_disconnect (wrk, session);
462 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800463 }
464
Florin Coras460dce62018-07-27 05:45:06 -0700465 rx_fifo->client_session_index = session_index;
466 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700467 rx_fifo->client_thread_index = vcl_get_worker_index ();
468 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700469
Florin Coras653e43f2019-03-04 10:56:23 -0800470 vpp_wrk_index = tx_fifo->master_thread_index;
471 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
472 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700473
Florin Coras653e43f2019-03-04 10:56:23 -0800474 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700475 {
Florin Coras653e43f2019-03-04 10:56:23 -0800476 session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
477 session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700478 if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
Florin Coras653e43f2019-03-04 10:56:23 -0800479 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700480 VDBG (0, "ct segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800481 session->session_index);
Florin Corasadcfb152020-02-12 08:50:29 +0000482 session->session_state = STATE_DETACHED | STATE_DISCONNECT;
Florin Corasdbc9c592019-09-25 16:37:43 -0700483 vcl_send_session_disconnect (wrk, session);
484 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800485 }
Florin Coras99368312018-08-02 10:45:44 -0700486 }
Florin Coras54693d22018-07-17 10:46:29 -0700487
Florin Coras54693d22018-07-17 10:46:29 -0700488 session->rx_fifo = rx_fifo;
489 session->tx_fifo = tx_fifo;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800490 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras09d18c22019-04-24 11:10:02 -0700491 session->transport.is_ip4 = mp->lcl.is_ip4;
492 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500493 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700494 session->transport.lcl_port = mp->lcl.port;
Florin Coras54693d22018-07-17 10:46:29 -0700495 session->session_state = STATE_CONNECT;
496
497 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800498 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700499
Florin Coras5e062572019-03-14 19:07:51 -0700500 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
501 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700502 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700503
Florin Coras54693d22018-07-17 10:46:29 -0700504 return session_index;
505}
506
Florin Coras3c7d4f92018-12-14 11:28:43 -0800507static int
508vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
509{
510 vcl_session_msg_t *accepted_msg;
511 int i;
512
513 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
514 {
515 accepted_msg = &session->accept_evts_fifo[i];
516 if (accepted_msg->accepted_msg.handle == handle)
517 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800518 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800519 return 1;
520 }
521 }
522 return 0;
523}
524
Florin Corasc9fbd662018-08-24 12:59:56 -0700525static u32
Florin Coras134a9962018-08-28 11:32:04 -0700526vcl_session_reset_handler (vcl_worker_t * wrk,
527 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700528{
529 vcl_session_t *session;
530 u32 sid;
531
Florin Coras134a9962018-08-28 11:32:04 -0700532 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
533 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700534 if (!session)
535 {
536 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
537 return VCL_INVALID_SESSION_INDEX;
538 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800539
540 /* Caught a reset before actually accepting the session */
541 if (session->session_state == STATE_LISTEN)
542 {
543
544 if (!vcl_flag_accepted_session (session, reset_msg->handle,
545 VCL_ACCEPTED_F_RESET))
546 VDBG (0, "session was not accepted!");
547 return VCL_INVALID_SESSION_INDEX;
548 }
549
550 session->session_state = STATE_DISCONNECT;
551 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700552 return sid;
553}
554
Florin Coras60116992018-08-27 09:52:18 -0700555static u32
Florin Coras134a9962018-08-28 11:32:04 -0700556vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700557{
558 vcl_session_t *session;
559 u32 sid = mp->context;
560
Florin Coras134a9962018-08-28 11:32:04 -0700561 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700562 if (mp->retval)
563 {
Florin Coras5e062572019-03-14 19:07:51 -0700564 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Corasd85de682018-11-29 17:02:29 -0800565 format_api_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700566 if (session)
567 {
Florin Corasadcfb152020-02-12 08:50:29 +0000568 session->session_state = STATE_DETACHED;
Florin Coras60116992018-08-27 09:52:18 -0700569 session->vpp_handle = mp->handle;
570 return sid;
571 }
572 else
573 {
Florin Coras5e062572019-03-14 19:07:51 -0700574 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
575 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700576 return VCL_INVALID_SESSION_INDEX;
577 }
578 }
579
580 session->vpp_handle = mp->handle;
581 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500582 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
583 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700584 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700585 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700586 session->session_state = STATE_LISTEN;
587
Florin Coras5f45e012019-01-23 09:21:30 -0800588 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
589 vec_validate (wrk->vpp_event_queues, 0);
590 wrk->vpp_event_queues[0] = session->vpp_evt_q;
591
Florin Coras6e3c1f82020-01-15 01:30:46 +0000592 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700593 {
594 svm_fifo_t *rx_fifo, *tx_fifo;
595 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
596 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
597 rx_fifo->client_session_index = sid;
598 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
599 tx_fifo->client_session_index = sid;
600 session->rx_fifo = rx_fifo;
601 session->tx_fifo = tx_fifo;
602 }
603
Florin Coras05ecfcc2018-12-12 18:19:39 -0800604 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700605 return sid;
606}
607
Florin Corasdfae9f92019-02-20 19:48:31 -0800608static void
609vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
610{
611 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
612 vcl_session_t *s;
613
614 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
615 if (!s || s->session_state != STATE_DISCONNECT)
616 {
617 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
618 return;
619 }
620
621 if (mp->retval)
622 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
623 s->session_index, mp->handle, format_api_error, ntohl (mp->retval));
624
625 if (mp->context != wrk->wrk_index)
626 VDBG (0, "wrong context");
627
628 vcl_session_table_del_vpp_handle (wrk, mp->handle);
629 vcl_session_free (wrk, s);
630}
631
Florin Coras68b7e582020-01-21 18:33:23 -0800632static void
633vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
634{
635 session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
636 vcl_session_t *s;
637
638 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
639 if (!s)
640 {
641 VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
642 return;
643 }
644
645 s->vpp_thread_index = mp->vpp_thread_index;
646 s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
647
648 vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
649 wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
650
651 vcl_session_table_del_vpp_handle (wrk, mp->handle);
652 vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
653
654 /* Generate new tx event if we have outstanding data */
655 if (svm_fifo_has_event (s->tx_fifo))
656 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
657 SESSION_IO_EVT_TX, SVM_Q_WAIT);
658
659 VDBG (0, "Migrated 0x%x to thread %u", mp->handle, s->vpp_thread_index);
660}
661
Florin Coras3c7d4f92018-12-14 11:28:43 -0800662static vcl_session_t *
663vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
664{
665 vcl_session_msg_t *vcl_msg;
666 vcl_session_t *session;
667
668 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
669 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800670 VWRN ("session overlap handle %lu state %u!", msg->handle,
671 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800672
673 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
674 if (!session)
675 {
676 VERR ("couldn't find listen session: listener handle %llx",
677 msg->listener_handle);
678 return 0;
679 }
680
681 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
Florin Corase88845e2020-02-13 20:04:28 +0000682 vcl_msg->flags = 0;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800683 vcl_msg->accepted_msg = *msg;
684 /* Session handle points to listener until fully accepted by app */
685 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
686
687 return session;
688}
689
690static vcl_session_t *
691vcl_session_disconnected_handler (vcl_worker_t * wrk,
692 session_disconnected_msg_t * msg)
693{
694 vcl_session_t *session;
695
696 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
697 if (!session)
698 {
699 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
700 return 0;
701 }
702
Florin Corasadcfb152020-02-12 08:50:29 +0000703 /* Late disconnect notification on a session that has been closed */
704 if (session->session_state == STATE_CLOSED)
705 return 0;
706
Florin Coras3c7d4f92018-12-14 11:28:43 -0800707 /* Caught a disconnect before actually accepting the session */
708 if (session->session_state == STATE_LISTEN)
709 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800710 if (!vcl_flag_accepted_session (session, msg->handle,
711 VCL_ACCEPTED_F_CLOSED))
712 VDBG (0, "session was not accepted!");
713 return 0;
714 }
715
Florin Corasadcfb152020-02-12 08:50:29 +0000716 /* If not already reset change state */
717 if (session->session_state != STATE_DISCONNECT)
718 session->session_state = STATE_VPP_CLOSING;
719
Florin Coras3c7d4f92018-12-14 11:28:43 -0800720 return session;
721}
722
Florin Coras30e79c22019-01-02 19:31:22 -0800723static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700724vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
725{
726 session_cleanup_msg_t *msg;
727 vcl_session_t *session;
728
729 msg = (session_cleanup_msg_t *) data;
730 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
731 if (!session)
732 {
733 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
734 return;
735 }
736
737 vcl_session_table_del_vpp_handle (wrk, msg->handle);
Florin Corasadcfb152020-02-12 08:50:29 +0000738 /* Should not happen. App did not close the connection so don't free it. */
739 if (session->session_state != STATE_CLOSED)
740 {
741 VDBG (0, "app did not close session %d", session->session_index);
742 session->session_state = STATE_DETACHED;
743 session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
744 return;
745 }
Florin Coras9ace36d2019-10-28 13:14:17 -0700746 vcl_session_free (wrk, session);
747}
748
749static void
Florin Coras30e79c22019-01-02 19:31:22 -0800750vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
751{
752 session_req_worker_update_msg_t *msg;
753 vcl_session_t *s;
754
755 msg = (session_req_worker_update_msg_t *) data;
756 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
757 if (!s)
758 return;
759
760 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
761}
762
763static void
764vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
765{
766 session_worker_update_reply_msg_t *msg;
767 vcl_session_t *s;
768
769 msg = (session_worker_update_reply_msg_t *) data;
770 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
771 if (!s)
772 {
773 VDBG (0, "unknown handle 0x%llx", msg->handle);
774 return;
775 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700776 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800777 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700778 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800779 s->session_index);
780 return;
781 }
Florin Coras30e79c22019-01-02 19:31:22 -0800782
Florin Coras5f45e012019-01-23 09:21:30 -0800783 if (s->rx_fifo)
784 {
785 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
786 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
787 s->rx_fifo->client_session_index = s->session_index;
788 s->tx_fifo->client_session_index = s->session_index;
789 s->rx_fifo->client_thread_index = wrk->wrk_index;
790 s->tx_fifo->client_thread_index = wrk->wrk_index;
791 }
Florin Coras30e79c22019-01-02 19:31:22 -0800792 s->session_state = STATE_UPDATED;
793
Florin Coras30e79c22019-01-02 19:31:22 -0800794 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
795 s->vpp_handle, wrk->wrk_index);
796}
797
Florin Corasc4c4cf52019-08-24 18:17:34 -0700798static void
799vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
800{
801 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
802 session_app_add_segment_msg_t *msg;
803 u64 segment_handle;
804 int fd = -1;
805
806 msg = (session_app_add_segment_msg_t *) data;
807
808 if (msg->fd_flags)
809 {
810 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
811 seg_type = SSVM_SEGMENT_MEMFD;
812 }
813
814 segment_handle = msg->segment_handle;
815 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
816 {
817 clib_warning ("invalid segment handle");
818 return;
819 }
820
821 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
822 seg_type, fd))
823 {
824 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
825 return;
826 }
827
828 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
829 msg->segment_size);
830}
831
832static void
833vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
834{
835 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
836 vcl_segment_detach (msg->segment_handle);
837 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
838}
839
Florin Coras86f04502018-09-12 16:08:01 -0700840static int
841vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700842{
Florin Coras54693d22018-07-17 10:46:29 -0700843 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700844 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700845
846 switch (e->event_type)
847 {
Florin Coras653e43f2019-03-04 10:56:23 -0800848 case SESSION_IO_EVT_RX:
849 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800850 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800851 if (!session || !(session->session_state & STATE_OPEN))
852 break;
Florin Coras86f04502018-09-12 16:08:01 -0700853 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700854 break;
855 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800856 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700857 break;
858 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700859 vcl_session_connected_handler (wrk,
860 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700861 break;
862 case SESSION_CTRL_EVT_DISCONNECTED:
863 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800864 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700865 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800866 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800867 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
868 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700869 break;
870 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700871 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700872 break;
873 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700874 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700875 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800876 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
877 vcl_session_unlisten_reply_handler (wrk, e->data);
878 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800879 case SESSION_CTRL_EVT_MIGRATED:
880 vcl_session_migrated_handler (wrk, e->data);
881 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700882 case SESSION_CTRL_EVT_CLEANUP:
883 vcl_session_cleanup_handler (wrk, e->data);
884 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800885 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
886 vcl_session_req_worker_update_handler (wrk, e->data);
887 break;
888 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
889 vcl_session_worker_update_reply_handler (wrk, e->data);
890 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700891 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
892 vcl_session_app_add_segment_handler (wrk, e->data);
893 break;
894 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
895 vcl_session_app_del_segment_handler (wrk, e->data);
896 break;
Florin Coras54693d22018-07-17 10:46:29 -0700897 default:
898 clib_warning ("unhandled %u", e->event_type);
899 }
900 return VPPCOM_OK;
901}
902
Florin Coras30e79c22019-01-02 19:31:22 -0800903static int
Florin Coras697faea2018-06-27 17:10:49 -0700904vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800905 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700906 f64 wait_for_time)
907{
Florin Coras134a9962018-08-28 11:32:04 -0700908 vcl_worker_t *wrk = vcl_worker_get_current ();
909 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700910 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700911 svm_msg_q_msg_t msg;
912 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400913
Florin Coras697faea2018-06-27 17:10:49 -0700914 do
Dave Wallace543852a2017-08-03 02:11:34 -0400915 {
Florin Coras134a9962018-08-28 11:32:04 -0700916 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700917 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700918 {
Florin Coras070453d2018-08-24 17:04:27 -0700919 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700920 }
921 if (session->session_state & state)
922 {
Florin Coras697faea2018-06-27 17:10:49 -0700923 return VPPCOM_OK;
924 }
Florin Corasadcfb152020-02-12 08:50:29 +0000925 if (session->session_state & STATE_DETACHED)
Florin Coras697faea2018-06-27 17:10:49 -0700926 {
Florin Coras697faea2018-06-27 17:10:49 -0700927 return VPPCOM_ECONNREFUSED;
928 }
Florin Coras54693d22018-07-17 10:46:29 -0700929
Florin Coras134a9962018-08-28 11:32:04 -0700930 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800931 {
932 usleep (100);
933 continue;
934 }
Florin Coras134a9962018-08-28 11:32:04 -0700935 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700936 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700937 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800938 }
Florin Coras134a9962018-08-28 11:32:04 -0700939 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800940
Florin Coras05ecfcc2018-12-12 18:19:39 -0800941 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700942 vppcom_session_state_str (state));
943 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400944
Florin Coras697faea2018-06-27 17:10:49 -0700945 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500946}
947
Florin Coras30e79c22019-01-02 19:31:22 -0800948static void
949vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
950{
Florin Coras288eaab2019-02-03 15:26:14 -0800951 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -0800952 vcl_session_t *s;
953 u32 *sip;
954
955 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
956 return;
957
958 vec_foreach (sip, wrk->pending_session_wrk_updates)
959 {
960 s = vcl_session_get (wrk, *sip);
961 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
962 state = s->session_state;
963 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
964 s->session_state = state;
965 }
966 vec_reset_length (wrk->pending_session_wrk_updates);
967}
968
Florin Corasf9240dc2019-01-15 08:03:17 -0800969void
Florin Coras30e79c22019-01-02 19:31:22 -0800970vcl_flush_mq_events (void)
971{
972 vcl_worker_t *wrk = vcl_worker_get_current ();
973 svm_msg_q_msg_t *msg;
974 session_event_t *e;
975 svm_msg_q_t *mq;
976 int i;
977
978 mq = wrk->app_event_queue;
979 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -0700980 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -0800981 svm_msg_q_unlock (mq);
982
983 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
984 {
985 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
986 e = svm_msg_q_msg_data (mq, msg);
987 vcl_handle_mq_event (wrk, e);
988 svm_msg_q_free_msg (mq, msg);
989 }
990 vec_reset_length (wrk->mq_msg_vector);
991 vcl_handle_pending_wrk_updates (wrk);
992}
993
Florin Coras697faea2018-06-27 17:10:49 -0700994static int
995vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400996{
Florin Coras697faea2018-06-27 17:10:49 -0700997 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400998
Florin Coras697faea2018-06-27 17:10:49 -0700999 if (vcm->app_state != STATE_APP_ENABLED)
1000 {
1001 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -07001002 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -07001003 if (PREDICT_FALSE (rv))
1004 {
Florin Coras5e062572019-03-14 19:07:51 -07001005 VDBG (0, "application session enable timed out! returning %d (%s)",
1006 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001007 return rv;
1008 }
1009 }
1010 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001011}
1012
Florin Coras697faea2018-06-27 17:10:49 -07001013static int
1014vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -04001015{
Florin Coras697faea2018-06-27 17:10:49 -07001016 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001017
Florin Coras697faea2018-06-27 17:10:49 -07001018 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -07001019 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -07001020 if (PREDICT_FALSE (rv))
1021 {
Florin Coras5e062572019-03-14 19:07:51 -07001022 VDBG (0, "application attach timed out! returning %d (%s)", rv,
1023 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001024 return rv;
1025 }
Dave Wallace543852a2017-08-03 02:11:34 -04001026
Florin Coras697faea2018-06-27 17:10:49 -07001027 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001028}
1029
1030static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001031vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001032{
Florin Coras134a9962018-08-28 11:32:04 -07001033 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001034 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001035 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001036 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001037
Florin Corasab2f6db2018-08-31 14:31:41 -07001038 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001039 if (!session)
1040 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001041
Florin Corasaaff5ee2019-07-08 13:00:00 -07001042 /* Flush pending accept events, if any */
1043 while (clib_fifo_elts (session->accept_evts_fifo))
1044 {
1045 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1046 accepted_msg = &evt->accepted_msg;
1047 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1048 vcl_send_session_accepted_reply (session->vpp_evt_q,
1049 accepted_msg->context,
1050 session->vpp_handle, -1);
1051 }
1052 clib_fifo_free (session->accept_evts_fifo);
1053
Florin Coras458089b2019-08-21 16:20:44 -07001054 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001055
Florin Coras5e062572019-03-14 19:07:51 -07001056 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001057 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001058 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001059
1060 session->vpp_handle = ~0;
1061 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001062
Florin Coras070453d2018-08-24 17:04:27 -07001063 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001064}
1065
Florin Coras697faea2018-06-27 17:10:49 -07001066static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001067vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001068{
Florin Coras134a9962018-08-28 11:32:04 -07001069 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001070 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001071 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001072 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001073 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001074
Florin Corasab2f6db2018-08-31 14:31:41 -07001075 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001076 if (!session)
1077 return VPPCOM_EBADFD;
1078
Dave Wallace4878cbe2017-11-21 03:45:09 -05001079 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001080 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001081
Florin Coras5e062572019-03-14 19:07:51 -07001082 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1083 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001084
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001085 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001086 {
Florin Coras5e062572019-03-14 19:07:51 -07001087 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001088 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001089 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001090
Florin Coras3c7d4f92018-12-14 11:28:43 -08001091 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001092 {
Florin Coras134a9962018-08-28 11:32:04 -07001093 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001094 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001095 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001096 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1097 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001098 }
1099 else
Dave Wallace227867f2017-11-13 21:21:53 -05001100 {
Florin Coras5e062572019-03-14 19:07:51 -07001101 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1102 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001103 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001104 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001105
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001106 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1107 {
1108 listen_session = vcl_session_get (wrk, session->listener_index);
1109 listen_session->n_accepted_sessions--;
1110 }
1111
Florin Coras070453d2018-08-24 17:04:27 -07001112 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001113}
1114
Florin Coras940f78f2018-11-30 12:11:20 -08001115/**
1116 * Handle app exit
1117 *
1118 * Notify vpp of the disconnect and mark the worker as free. If we're the
1119 * last worker, do a full cleanup otherwise, since we're probably a forked
1120 * child, avoid syscalls as much as possible. We might've lost privileges.
1121 */
1122void
1123vppcom_app_exit (void)
1124{
1125 if (!pool_elts (vcm->workers))
1126 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001127 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1128 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001129 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001130}
1131
Dave Wallace543852a2017-08-03 02:11:34 -04001132/*
1133 * VPPCOM Public API functions
1134 */
1135int
1136vppcom_app_create (char *app_name)
1137{
Dave Wallace543852a2017-08-03 02:11:34 -04001138 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001139 int rv;
1140
Florin Coras47c40e22018-11-26 17:01:36 -08001141 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001142 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001143 VDBG (1, "already initialized");
1144 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001145 }
1146
Florin Coras47c40e22018-11-26 17:01:36 -08001147 vcm->is_init = 1;
1148 vppcom_cfg (&vcm->cfg);
1149 vcl_cfg = &vcm->cfg;
1150
1151 vcm->main_cpu = pthread_self ();
1152 vcm->main_pid = getpid ();
1153 vcm->app_name = format (0, "%s", app_name);
1154 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001155 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1156 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001157 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1158 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001159 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001160 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001161
1162 /* Allocate default worker */
1163 vcl_worker_alloc_and_init ();
1164
1165 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001166 vcl_elog_init (vcm);
1167 vcm->app_state = STATE_APP_START;
1168 rv = vppcom_connect_to_vpp (app_name);
1169 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001170 {
Florin Coras47c40e22018-11-26 17:01:36 -08001171 VERR ("couldn't connect to VPP!");
1172 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001173 }
Florin Coras47c40e22018-11-26 17:01:36 -08001174 VDBG (0, "sending session enable");
1175 rv = vppcom_app_session_enable ();
1176 if (rv)
1177 {
1178 VERR ("vppcom_app_session_enable() failed!");
1179 return rv;
1180 }
1181
1182 VDBG (0, "sending app attach");
1183 rv = vppcom_app_attach ();
1184 if (rv)
1185 {
1186 VERR ("vppcom_app_attach() failed!");
1187 return rv;
1188 }
1189
1190 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1191 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001192
1193 return VPPCOM_OK;
1194}
1195
1196void
1197vppcom_app_destroy (void)
1198{
Dave Wallace543852a2017-08-03 02:11:34 -04001199 int rv;
Dave Wallacede910062018-03-20 09:22:13 -04001200 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -04001201
Florin Coras940f78f2018-11-30 12:11:20 -08001202 if (!pool_elts (vcm->workers))
1203 return;
1204
Florin Coras0d427d82018-06-27 03:24:07 -07001205 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001206
Florin Coras940f78f2018-11-30 12:11:20 -08001207 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -08001208 {
Florin Coras458089b2019-08-21 16:20:44 -07001209 vcl_send_app_detach (vcl_worker_get_current ());
Florin Coras47c40e22018-11-26 17:01:36 -08001210 orig_app_timeout = vcm->cfg.app_timeout;
1211 vcm->cfg.app_timeout = 2.0;
1212 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
1213 vcm->cfg.app_timeout = orig_app_timeout;
1214 if (PREDICT_FALSE (rv))
1215 VDBG (0, "application detach timed out! returning %d (%s)", rv,
1216 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -08001217 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -08001218 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001219 }
1220 else
1221 {
Florin Coras01f3f892018-12-02 12:45:53 -08001222 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001223 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001224
Florin Coras01f3f892018-12-02 12:45:53 -08001225 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -07001226 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -04001227 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001228}
1229
1230int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001231vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001232{
Florin Coras134a9962018-08-28 11:32:04 -07001233 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001234 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001235
Florin Coras134a9962018-08-28 11:32:04 -07001236 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001237
Florin Coras7e12d942018-06-27 14:32:43 -07001238 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001239 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001240 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001241 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001242
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001243 if (is_nonblocking)
1244 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001245
Florin Coras7e12d942018-06-27 14:32:43 -07001246 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1247 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001248
Florin Coras5e062572019-03-14 19:07:51 -07001249 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001250
Florin Coras134a9962018-08-28 11:32:04 -07001251 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001252}
1253
1254int
Florin Corasf9240dc2019-01-15 08:03:17 -08001255vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1256 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001257{
Florin Coras288eaab2019-02-03 15:26:14 -08001258 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001259 u32 next_sh, vep_sh;
1260 int rv = VPPCOM_OK;
1261 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001262 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001263
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001264 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001265 next_sh = session->vep.next_sh;
1266 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001267 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001268 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001269
Florin Corasf9240dc2019-01-15 08:03:17 -08001270 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001271
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001272 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001273 {
Florin Coras134a9962018-08-28 11:32:04 -07001274 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001275 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001276 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001277 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001278 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001279 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1280 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001281
Florin Coras134a9962018-08-28 11:32:04 -07001282 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001283 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001284 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001285 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001286
1287 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001288 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001289 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1290 if (rv < 0)
1291 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1292 "failed! rv %d (%s)", session->session_index, vpp_handle,
1293 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001294 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001295
Florin Coras9ace36d2019-10-28 13:14:17 -07001296 if (!do_disconnect)
1297 {
1298 VDBG (1, "session %u [0x%llx] disconnect skipped",
1299 session->session_index, vpp_handle);
1300 goto cleanup;
1301 }
1302
1303 if (state & STATE_LISTEN)
1304 {
1305 rv = vppcom_session_unbind (sh);
1306 if (PREDICT_FALSE (rv < 0))
1307 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1308 "rv %d (%s)", session->session_index, vpp_handle, rv,
1309 vppcom_retval_str (rv));
1310 return rv;
1311 }
1312 else if ((state & STATE_OPEN)
1313 || (vcl_session_is_connectable_listener (wrk, session)))
1314 {
1315 rv = vppcom_session_disconnect (sh);
1316 if (PREDICT_FALSE (rv < 0))
1317 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1318 " rv %d (%s)", session->session_index, vpp_handle,
1319 rv, vppcom_retval_str (rv));
1320 }
1321 else if (state == STATE_DISCONNECT)
1322 {
1323 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1324 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1325 session->vpp_handle, 0);
1326 }
Florin Corasadcfb152020-02-12 08:50:29 +00001327 else if (state == STATE_DETACHED)
1328 {
1329 /* Should not happen. VPP cleaned up before app confirmed close */
1330 VDBG (0, "vpp freed session %d before close", session->session_index);
1331 goto free_session;
1332 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001333
Florin Coras54140622020-02-04 19:04:34 +00001334 session->session_state = STATE_CLOSED;
1335
Florin Coras9ace36d2019-10-28 13:14:17 -07001336 /* Session is removed only after vpp confirms the disconnect */
1337 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001338
Florin Corasf9240dc2019-01-15 08:03:17 -08001339cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001340 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Corasadcfb152020-02-12 08:50:29 +00001341free_session:
Florin Coras134a9962018-08-28 11:32:04 -07001342 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001343 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001344
Dave Wallace543852a2017-08-03 02:11:34 -04001345 return rv;
1346}
1347
1348int
Florin Corasf9240dc2019-01-15 08:03:17 -08001349vppcom_session_close (uint32_t session_handle)
1350{
1351 vcl_worker_t *wrk = vcl_worker_get_current ();
1352 vcl_session_t *session;
1353
1354 session = vcl_session_get_w_handle (wrk, session_handle);
1355 if (!session)
1356 return VPPCOM_EBADFD;
1357 return vcl_session_cleanup (wrk, session, session_handle,
1358 1 /* do_disconnect */ );
1359}
1360
1361int
Florin Coras134a9962018-08-28 11:32:04 -07001362vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001363{
Florin Coras134a9962018-08-28 11:32:04 -07001364 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001365 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001366
1367 if (!ep || !ep->ip)
1368 return VPPCOM_EINVAL;
1369
Florin Coras134a9962018-08-28 11:32:04 -07001370 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001371 if (!session)
1372 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001373
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001374 if (session->is_vep)
1375 {
Florin Coras5e062572019-03-14 19:07:51 -07001376 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1377 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001378 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001379 }
1380
Florin Coras7e12d942018-06-27 14:32:43 -07001381 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001382 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001383 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1384 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001385 else
Dave Barach178cf492018-11-13 16:34:13 -05001386 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1387 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001388 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001389
Florin Coras5e062572019-03-14 19:07:51 -07001390 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1391 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001392 session->transport.is_ip4 ? "IPv4" : "IPv6",
1393 format_ip46_address, &session->transport.lcl_ip,
1394 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1395 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001396 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001397 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001398
1399 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001400 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001401
Florin Coras070453d2018-08-24 17:04:27 -07001402 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001403}
1404
1405int
Florin Coras134a9962018-08-28 11:32:04 -07001406vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001407{
Florin Coras134a9962018-08-28 11:32:04 -07001408 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001409 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001410 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001411 int rv;
1412
Florin Coras134a9962018-08-28 11:32:04 -07001413 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001414 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001415 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001416
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001417 if (q_len == 0 || q_len == ~0)
1418 q_len = vcm->cfg.listen_queue_size;
1419
Dave Wallaceee45d412017-11-24 21:44:06 -05001420 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001421 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001422 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001423 VDBG (0, "session %u [0x%llx]: already in listen state!",
1424 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001425 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001426 }
1427
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001428 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001429
Florin Coras070453d2018-08-24 17:04:27 -07001430 /*
1431 * Send listen request to vpp and wait for reply
1432 */
Florin Coras458089b2019-08-21 16:20:44 -07001433 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001434 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1435 STATE_LISTEN,
1436 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001437
Florin Coras070453d2018-08-24 17:04:27 -07001438 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001439 {
Florin Coras134a9962018-08-28 11:32:04 -07001440 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001441 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1442 listen_sh, listen_session->vpp_handle, rv,
1443 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001444 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001445 }
1446
Florin Coras070453d2018-08-24 17:04:27 -07001447 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001448}
1449
Ping Yu34a3a082018-11-30 19:16:17 -05001450int
1451vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1452 uint32_t cert_len)
1453{
1454
1455 vcl_worker_t *wrk = vcl_worker_get_current ();
1456 vcl_session_t *session = 0;
1457
1458 session = vcl_session_get_w_handle (wrk, session_handle);
1459 if (!session)
1460 return VPPCOM_EBADFD;
1461
1462 if (cert_len == 0 || cert_len == ~0)
1463 return VPPCOM_EBADFD;
1464
1465 /*
1466 * Send listen request to vpp and wait for reply
1467 */
1468 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001469 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1470 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001471 return VPPCOM_OK;
1472
1473}
1474
1475int
1476vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1477 uint32_t key_len)
1478{
1479
1480 vcl_worker_t *wrk = vcl_worker_get_current ();
1481 vcl_session_t *session = 0;
1482
1483 session = vcl_session_get_w_handle (wrk, session_handle);
1484 if (!session)
1485 return VPPCOM_EBADFD;
1486
1487 if (key_len == 0 || key_len == ~0)
1488 return VPPCOM_EBADFD;
1489
Ping Yu34a3a082018-11-30 19:16:17 -05001490 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001491 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1492 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001493 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001494}
1495
Florin Coras134a9962018-08-28 11:32:04 -07001496static int
Florin Coras5e062572019-03-14 19:07:51 -07001497validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001498{
Florin Coras5e062572019-03-14 19:07:51 -07001499 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001500 {
Florin Coras5e062572019-03-14 19:07:51 -07001501 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1502 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001503 return VPPCOM_EBADFD;
1504 }
1505
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001506 if ((ls->session_state != STATE_LISTEN)
1507 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001508 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001509 VDBG (0,
1510 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1511 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001512 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001513 return VPPCOM_EBADFD;
1514 }
1515 return VPPCOM_OK;
1516}
1517
1518int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001519vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1520{
1521 if (!strcmp (proto_str, "TCP"))
1522 *proto = VPPCOM_PROTO_TCP;
1523 else if (!strcmp (proto_str, "tcp"))
1524 *proto = VPPCOM_PROTO_TCP;
1525 else if (!strcmp (proto_str, "UDP"))
1526 *proto = VPPCOM_PROTO_UDP;
1527 else if (!strcmp (proto_str, "udp"))
1528 *proto = VPPCOM_PROTO_UDP;
1529 else if (!strcmp (proto_str, "UDPC"))
1530 *proto = VPPCOM_PROTO_UDPC;
1531 else if (!strcmp (proto_str, "udpc"))
1532 *proto = VPPCOM_PROTO_UDPC;
1533 else if (!strcmp (proto_str, "SCTP"))
1534 *proto = VPPCOM_PROTO_SCTP;
1535 else if (!strcmp (proto_str, "sctp"))
1536 *proto = VPPCOM_PROTO_SCTP;
1537 else if (!strcmp (proto_str, "TLS"))
1538 *proto = VPPCOM_PROTO_TLS;
1539 else if (!strcmp (proto_str, "tls"))
1540 *proto = VPPCOM_PROTO_TLS;
1541 else if (!strcmp (proto_str, "QUIC"))
1542 *proto = VPPCOM_PROTO_QUIC;
1543 else if (!strcmp (proto_str, "quic"))
1544 *proto = VPPCOM_PROTO_QUIC;
1545 else
1546 return 1;
1547 return 0;
1548}
1549
1550int
Florin Coras134a9962018-08-28 11:32:04 -07001551vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001552 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001553{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001554 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001555 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001556 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001557 vcl_session_t *listen_session = 0;
1558 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001559 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001560 svm_msg_q_msg_t msg;
1561 session_event_t *e;
1562 u8 is_nonblocking;
1563 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001564
Florin Coras134a9962018-08-28 11:32:04 -07001565 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001566 if (!listen_session)
1567 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001568
Florin Coras134a9962018-08-28 11:32:04 -07001569 listen_session_index = listen_session->session_index;
1570 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001571 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001572
Florin Coras54693d22018-07-17 10:46:29 -07001573 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001574 {
Florin Coras54693d22018-07-17 10:46:29 -07001575 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001576 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001577 accepted_msg = evt->accepted_msg;
1578 goto handle;
1579 }
1580
1581 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1582 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001583 while (1)
1584 {
Carl Smith592a9092019-11-12 14:57:37 +13001585 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1586 return VPPCOM_EAGAIN;
1587
Florin Coras134a9962018-08-28 11:32:04 -07001588 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001589 return VPPCOM_EAGAIN;
1590
Florin Coras134a9962018-08-28 11:32:04 -07001591 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001592 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001593 {
wanghanlin96453fd2019-12-16 19:14:39 +08001594 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001595 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001596 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001597 }
Dave Barach178cf492018-11-13 16:34:13 -05001598 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001599 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001600 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001601 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001602
Florin Coras54693d22018-07-17 10:46:29 -07001603handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001604
Florin Coras00cca802019-06-06 09:38:44 -07001605 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1606 listen_session_index);
1607 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1608 return VPPCOM_ECONNABORTED;
1609
Florin Coras134a9962018-08-28 11:32:04 -07001610 listen_session = vcl_session_get (wrk, listen_session_index);
1611 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001612
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001613 if (flags & O_NONBLOCK)
1614 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001615
Florin Coras5e062572019-03-14 19:07:51 -07001616 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1617 " flags %d, is_nonblocking %u", listen_session->session_index,
1618 listen_session->vpp_handle, client_session_index,
1619 client_session->vpp_handle, flags,
1620 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001621
Dave Wallace048b1d62018-01-03 22:24:41 -05001622 if (ep)
1623 {
Florin Coras7e12d942018-06-27 14:32:43 -07001624 ep->is_ip4 = client_session->transport.is_ip4;
1625 ep->port = client_session->transport.rmt_port;
1626 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001627 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1628 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001629 else
Dave Barach178cf492018-11-13 16:34:13 -05001630 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1631 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001632 }
Dave Wallace60caa062017-11-10 17:07:13 -05001633
Florin Coras05ecfcc2018-12-12 18:19:39 -08001634 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001635 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001636 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001637 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001638 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001639 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001640 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001641 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001642 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001643 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1644 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001645
Florin Coras3c7d4f92018-12-14 11:28:43 -08001646 /*
1647 * Session might have been closed already
1648 */
1649 if (accept_flags)
1650 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001651 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001652 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001653 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001654 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001655 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001656 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001657}
1658
Florin Corasef7cbf62019-10-17 09:56:27 -07001659static void
1660vcl_ip_copy_from_ep (ip46_address_t * ip, vppcom_endpt_t * ep)
1661{
1662 if (ep->is_ip4)
1663 clib_memcpy_fast (&ip->ip4, ep->ip, sizeof (ip4_address_t));
1664 else
1665 clib_memcpy_fast (&ip->ip6, ep->ip, sizeof (ip6_address_t));
1666}
1667
1668void
1669vcl_ip_copy_to_ep (ip46_address_t * ip, vppcom_endpt_t * ep, u8 is_ip4)
1670{
1671 ep->is_ip4 = is_ip4;
1672 if (is_ip4)
1673 clib_memcpy_fast (ep->ip, &ip->ip4, sizeof (ip4_address_t));
1674 else
1675 clib_memcpy_fast (ep->ip, &ip->ip6, sizeof (ip6_address_t));
1676}
1677
Dave Wallace543852a2017-08-03 02:11:34 -04001678int
Florin Coras134a9962018-08-28 11:32:04 -07001679vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001680{
Florin Coras134a9962018-08-28 11:32:04 -07001681 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001682 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001683 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001684 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001685
Florin Coras134a9962018-08-28 11:32:04 -07001686 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001687 if (!session)
1688 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001689 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001690
1691 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001692 {
Florin Coras5e062572019-03-14 19:07:51 -07001693 VDBG (0, "ERROR: cannot connect epoll session %u!",
1694 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001695 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001696 }
1697
Florin Coras7e12d942018-06-27 14:32:43 -07001698 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001699 {
Florin Coras7baeb712019-01-04 17:05:43 -08001700 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001701 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001702 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001703 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001704 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001705 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001706 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001707 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001708 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001709 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001710 }
1711
Florin Coras7e12d942018-06-27 14:32:43 -07001712 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001713 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001714 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001715 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Dave Wallace543852a2017-08-03 02:11:34 -04001716
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001717 VDBG (0, "session handle %u: connecting to server %s %U "
1718 "port %d proto %s", session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001719 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001720 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001721 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001722 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001723 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001724 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001725
Florin Coras458089b2019-08-21 16:20:44 -07001726 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001727
1728 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1729 return VPPCOM_EINPROGRESS;
1730
1731 /*
1732 * Wait for reply from vpp if blocking
1733 */
Florin Coras070453d2018-08-24 17:04:27 -07001734 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1735 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001736
Florin Coras134a9962018-08-28 11:32:04 -07001737 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001738 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1739 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001740
Dave Wallace4878cbe2017-11-21 03:45:09 -05001741 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001742}
1743
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001744int
1745vppcom_session_stream_connect (uint32_t session_handle,
1746 uint32_t parent_session_handle)
1747{
1748 vcl_worker_t *wrk = vcl_worker_get_current ();
1749 vcl_session_t *session, *parent_session;
1750 u32 session_index, parent_session_index;
1751 int rv;
1752
1753 session = vcl_session_get_w_handle (wrk, session_handle);
1754 if (!session)
1755 return VPPCOM_EBADFD;
1756 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1757 if (!parent_session)
1758 return VPPCOM_EBADFD;
1759
1760 session_index = session->session_index;
1761 parent_session_index = parent_session->session_index;
1762 if (PREDICT_FALSE (session->is_vep))
1763 {
1764 VDBG (0, "ERROR: cannot connect epoll session %u!",
1765 session->session_index);
1766 return VPPCOM_EBADFD;
1767 }
1768
1769 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1770 {
1771 VDBG (0, "session handle %u [0x%llx]: session already "
1772 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1773 session_handle, session->vpp_handle,
1774 parent_session_handle, parent_session->vpp_handle,
1775 vppcom_proto_str (session->session_type), session->session_state,
1776 vppcom_session_state_str (session->session_state));
1777 return VPPCOM_OK;
1778 }
1779
1780 /* Connect to quic session specifics */
1781 session->transport.is_ip4 = parent_session->transport.is_ip4;
1782 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1783 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001784 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001785
1786 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1787 session_handle, parent_session_handle, parent_session->vpp_handle);
1788
1789 /*
1790 * Send connect request and wait for reply from vpp
1791 */
Florin Coras458089b2019-08-21 16:20:44 -07001792 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001793 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1794 vcm->cfg.session_timeout);
1795
1796 session->listener_index = parent_session_index;
1797 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001798 if (parent_session)
1799 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001800
1801 session = vcl_session_get (wrk, session_index);
1802 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1803 session->vpp_handle, rv ? "failed" : "succeeded");
1804
1805 return rv;
1806}
1807
Florin Coras54693d22018-07-17 10:46:29 -07001808static u8
1809vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1810{
Florin Corasc0737e92019-03-04 14:19:39 -08001811 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001812}
1813
Steven58f464e2017-10-25 12:33:12 -07001814static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001815vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001816 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001817{
Florin Coras134a9962018-08-28 11:32:04 -07001818 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001819 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001820 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001821 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001822 svm_msg_q_msg_t msg;
1823 session_event_t *e;
1824 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001825 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001826
Florin Coras070453d2018-08-24 17:04:27 -07001827 if (PREDICT_FALSE (!buf))
1828 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001829
Florin Coras134a9962018-08-28 11:32:04 -07001830 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001831 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001832 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001833
Florin Coras6d0106e2019-01-29 20:11:58 -08001834 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001835 {
Florin Coras5e062572019-03-14 19:07:51 -07001836 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001837 s->session_index, s->vpp_handle, s->session_state,
1838 vppcom_session_state_str (s->session_state));
1839 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001840 }
1841
Florin Coras2cba8532018-09-11 16:33:36 -07001842 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001843 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001844 mq = wrk->app_event_queue;
1845 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001846 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001847
Sirshak Das28aa5392019-02-05 01:33:33 -06001848 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001849 {
Florin Coras54693d22018-07-17 10:46:29 -07001850 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001851 {
Yu Pingb2955352019-12-04 06:49:04 +08001852 if (vcl_session_is_closing (s))
1853 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001854 svm_fifo_unset_event (s->rx_fifo);
1855 return VPPCOM_EWOULDBLOCK;
1856 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001857 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001858 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001859 if (vcl_session_is_closing (s))
1860 return vcl_session_closing_error (s);
1861
Florin Corasc0737e92019-03-04 14:19:39 -08001862 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001863 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001864 if (svm_msg_q_is_empty (mq))
1865 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001866
Florin Coras54693d22018-07-17 10:46:29 -07001867 svm_msg_q_sub_w_lock (mq, &msg);
1868 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001869 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001870 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001871 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001872 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001873 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001874 }
Florin Coras54693d22018-07-17 10:46:29 -07001875
Florin Coras460dce62018-07-27 05:45:06 -07001876 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001877 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001878 else
Florin Coras99368312018-08-02 10:45:44 -07001879 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001880
Sirshak Das28aa5392019-02-05 01:33:33 -06001881 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08001882 svm_fifo_unset_event (s->rx_fifo);
Florin Coras41c9e042018-09-11 00:10:41 -07001883
Florin Coras317b8e02019-04-17 09:57:46 -07001884 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001885 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001886 {
1887 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1888 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001889 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001890 }
1891
Florin Coras5e062572019-03-14 19:07:51 -07001892 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1893 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001894
Florin Coras54693d22018-07-17 10:46:29 -07001895 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001896}
1897
Steven58f464e2017-10-25 12:33:12 -07001898int
Florin Coras134a9962018-08-28 11:32:04 -07001899vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001900{
Florin Coras134a9962018-08-28 11:32:04 -07001901 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001902}
1903
1904static int
Florin Coras134a9962018-08-28 11:32:04 -07001905vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001906{
Florin Coras134a9962018-08-28 11:32:04 -07001907 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001908}
1909
Florin Coras2cba8532018-09-11 16:33:36 -07001910int
1911vppcom_session_read_segments (uint32_t session_handle,
1912 vppcom_data_segments_t ds)
1913{
1914 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001915 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001916 vcl_session_t *s = 0;
1917 svm_fifo_t *rx_fifo;
1918 svm_msg_q_msg_t msg;
1919 session_event_t *e;
1920 svm_msg_q_t *mq;
1921 u8 is_ct;
1922
1923 s = vcl_session_get_w_handle (wrk, session_handle);
1924 if (PREDICT_FALSE (!s || s->is_vep))
1925 return VPPCOM_EBADFD;
1926
Florin Coras6d0106e2019-01-29 20:11:58 -08001927 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1928 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001929
1930 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1931 is_ct = vcl_session_is_ct (s);
1932 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1933 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001934 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001935
Florin Coras653e43f2019-03-04 10:56:23 -08001936 if (is_ct)
1937 svm_fifo_unset_event (s->rx_fifo);
1938
Sirshak Das28aa5392019-02-05 01:33:33 -06001939 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001940 {
1941 if (is_nonblocking)
1942 {
1943 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001944 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001945 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001946 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001947 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001948 if (vcl_session_is_closing (s))
1949 return vcl_session_closing_error (s);
1950
Florin Coras2cba8532018-09-11 16:33:36 -07001951 svm_fifo_unset_event (rx_fifo);
1952 svm_msg_q_lock (mq);
1953 if (svm_msg_q_is_empty (mq))
1954 svm_msg_q_wait (mq);
1955
1956 svm_msg_q_sub_w_lock (mq, &msg);
1957 e = svm_msg_q_msg_data (mq, &msg);
1958 svm_msg_q_unlock (mq);
1959 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001960 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001961 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001962 }
1963 }
1964
Florin Coras88001c62019-04-24 14:44:46 -07001965 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001966 svm_fifo_unset_event (rx_fifo);
1967
Florin Coras2cba8532018-09-11 16:33:36 -07001968 return n_read;
1969}
1970
1971void
1972vppcom_session_free_segments (uint32_t session_handle,
1973 vppcom_data_segments_t ds)
1974{
1975 vcl_worker_t *wrk = vcl_worker_get_current ();
1976 vcl_session_t *s;
1977
1978 s = vcl_session_get_w_handle (wrk, session_handle);
1979 if (PREDICT_FALSE (!s || s->is_vep))
1980 return;
1981
Florin Coras88001c62019-04-24 14:44:46 -07001982 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001983}
1984
Florin Coras2cba8532018-09-11 16:33:36 -07001985int
1986vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1987{
1988 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001989 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001990 if (first_copy < max_bytes)
1991 {
Dave Barach178cf492018-11-13 16:34:13 -05001992 clib_memcpy_fast (buf + first_copy, ds[1].data,
1993 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001994 }
1995 return 0;
1996}
1997
Florin Coras54693d22018-07-17 10:46:29 -07001998static u8
1999vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2000{
Florin Corasc0737e92019-03-04 14:19:39 -08002001 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04002002}
2003
Florin Coras42ceddb2018-12-12 10:56:01 -08002004static inline int
2005vppcom_session_write_inline (uint32_t session_handle, void *buf, size_t n,
2006 u8 is_flush)
Dave Wallace543852a2017-08-03 02:11:34 -04002007{
Florin Coras134a9962018-08-28 11:32:04 -07002008 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08002009 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07002010 vcl_session_t *s = 0;
Florin Coras460dce62018-07-27 05:45:06 -07002011 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07002012 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08002013 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07002014 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07002015 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07002016 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04002017
jiangxiaomingff31ac62019-11-21 23:34:56 +08002018 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07002019 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04002020
Florin Coras134a9962018-08-28 11:32:04 -07002021 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002022 if (PREDICT_FALSE (!s))
2023 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002024
Florin Coras460dce62018-07-27 05:45:06 -07002025 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002026 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002027 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2028 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002029 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002030 }
2031
Florin Coras6d0106e2019-01-29 20:11:58 -08002032 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002033 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002034 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2035 s->session_index, s->vpp_handle, s->session_state,
2036 vppcom_session_state_str (s->session_state));
2037 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002038 }
2039
Florin Coras0e88e852018-09-17 22:09:02 -07002040 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002041 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002042 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002043
Florin Coras653e43f2019-03-04 10:56:23 -08002044 mq = wrk->app_event_queue;
Sirshak Das28aa5392019-02-05 01:33:33 -06002045 if (svm_fifo_is_full_prod (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04002046 {
Florin Coras54693d22018-07-17 10:46:29 -07002047 if (is_nonblocking)
2048 {
Florin Coras070453d2018-08-24 17:04:27 -07002049 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002050 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002051 while (svm_fifo_is_full_prod (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002052 {
Florin Coras2d379d82019-06-28 12:45:12 -07002053 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002054 if (vcl_session_is_closing (s))
2055 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002056 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002057 if (svm_msg_q_is_empty (mq))
2058 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002059
Florin Coras54693d22018-07-17 10:46:29 -07002060 svm_msg_q_sub_w_lock (mq, &msg);
2061 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002062 svm_msg_q_unlock (mq);
2063
Florin Coras0e88e852018-09-17 22:09:02 -07002064 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002065 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002066 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002067 }
Dave Wallace543852a2017-08-03 02:11:34 -04002068 }
Dave Wallace543852a2017-08-03 02:11:34 -04002069
Florin Coras653e43f2019-03-04 10:56:23 -08002070 et = SESSION_IO_EVT_TX;
2071 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002072 et = SESSION_IO_EVT_TX_FLUSH;
2073
Florin Coras460dce62018-07-27 05:45:06 -07002074 if (s->is_dgram)
2075 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002076 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002077 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002078 else
2079 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002080 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002081
Florin Coras14ed6df2019-03-06 21:13:42 -08002082 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002083 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2084 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002085
Florin Coras460dce62018-07-27 05:45:06 -07002086 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002087
Florin Coras6d0106e2019-01-29 20:11:58 -08002088 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2089 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002090
Florin Coras54693d22018-07-17 10:46:29 -07002091 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002092}
2093
Florin Coras42ceddb2018-12-12 10:56:01 -08002094int
2095vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2096{
2097 return vppcom_session_write_inline (session_handle, buf, n,
2098 0 /* is_flush */ );
2099}
2100
Florin Corasb0f662f2018-12-27 14:51:46 -08002101int
2102vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2103{
2104 return vppcom_session_write_inline (session_handle, buf, n,
2105 1 /* is_flush */ );
2106}
2107
Florin Corasc0737e92019-03-04 14:19:39 -08002108#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002109if (PREDICT_FALSE (!_s->rx_fifo)) \
2110 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002111if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2112 { \
2113 if (!vcl_session_is_ct (_s)) \
2114 { \
2115 svm_fifo_unset_event (_s->rx_fifo); \
2116 if (svm_fifo_is_empty (_s->rx_fifo)) \
2117 break; \
2118 } \
2119 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2120 { \
2121 svm_fifo_unset_event (_s->ct_rx_fifo); \
2122 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2123 break; \
2124 } \
2125 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002126
Florin Coras86f04502018-09-12 16:08:01 -07002127static void
2128vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2129 unsigned long n_bits, unsigned long *read_map,
2130 unsigned long *write_map,
2131 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002132{
2133 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002134 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002135 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002136 u32 sid;
2137
2138 switch (e->event_type)
2139 {
Florin Corasc0737e92019-03-04 14:19:39 -08002140 case SESSION_IO_EVT_RX:
2141 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002142 session = vcl_session_get (wrk, sid);
2143 if (!session)
2144 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002145 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002146 if (sid < n_bits && read_map)
2147 {
David Johnsond9818dd2018-12-14 14:53:41 -05002148 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002149 *bits_set += 1;
2150 }
2151 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002152 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002153 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002154 session = vcl_session_get (wrk, sid);
2155 if (!session)
2156 break;
2157 if (sid < n_bits && write_map)
2158 {
David Johnsond9818dd2018-12-14 14:53:41 -05002159 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002160 *bits_set += 1;
2161 }
2162 break;
Florin Coras86f04502018-09-12 16:08:01 -07002163 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002164 session = vcl_session_accepted (wrk,
2165 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002166 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002167 break;
Florin Coras86f04502018-09-12 16:08:01 -07002168 sid = session->session_index;
2169 if (sid < n_bits && read_map)
2170 {
David Johnsond9818dd2018-12-14 14:53:41 -05002171 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002172 *bits_set += 1;
2173 }
2174 break;
2175 case SESSION_CTRL_EVT_CONNECTED:
2176 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002177 sid = vcl_session_connected_handler (wrk, connected_msg);
2178 if (sid == VCL_INVALID_SESSION_INDEX)
2179 break;
2180 if (sid < n_bits && write_map)
2181 {
2182 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2183 *bits_set += 1;
2184 }
Florin Coras86f04502018-09-12 16:08:01 -07002185 break;
2186 case SESSION_CTRL_EVT_DISCONNECTED:
2187 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002188 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2189 if (!session)
2190 break;
2191 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002192 if (sid < n_bits && except_map)
2193 {
David Johnsond9818dd2018-12-14 14:53:41 -05002194 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002195 *bits_set += 1;
2196 }
2197 break;
2198 case SESSION_CTRL_EVT_RESET:
2199 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2200 if (sid < n_bits && except_map)
2201 {
David Johnsond9818dd2018-12-14 14:53:41 -05002202 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002203 *bits_set += 1;
2204 }
2205 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002206 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2207 vcl_session_unlisten_reply_handler (wrk, e->data);
2208 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002209 case SESSION_CTRL_EVT_MIGRATED:
2210 vcl_session_migrated_handler (wrk, e->data);
2211 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002212 case SESSION_CTRL_EVT_CLEANUP:
2213 vcl_session_cleanup_handler (wrk, e->data);
2214 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002215 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2216 vcl_session_worker_update_reply_handler (wrk, e->data);
2217 break;
2218 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2219 vcl_session_req_worker_update_handler (wrk, e->data);
2220 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002221 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2222 vcl_session_app_add_segment_handler (wrk, e->data);
2223 break;
2224 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2225 vcl_session_app_del_segment_handler (wrk, e->data);
2226 break;
Florin Coras86f04502018-09-12 16:08:01 -07002227 default:
2228 clib_warning ("unhandled: %u", e->event_type);
2229 break;
2230 }
2231}
2232
2233static int
2234vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2235 unsigned long n_bits, unsigned long *read_map,
2236 unsigned long *write_map, unsigned long *except_map,
2237 double time_to_wait, u32 * bits_set)
2238{
Florin Coras99368312018-08-02 10:45:44 -07002239 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002240 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002241 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002242
2243 svm_msg_q_lock (mq);
2244 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002245 {
Florin Coras54693d22018-07-17 10:46:29 -07002246 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002247 {
Florin Coras54693d22018-07-17 10:46:29 -07002248 svm_msg_q_unlock (mq);
2249 return 0;
2250 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002251
Florin Coras54693d22018-07-17 10:46:29 -07002252 if (!time_to_wait)
2253 {
2254 svm_msg_q_unlock (mq);
2255 return 0;
2256 }
2257 else if (time_to_wait < 0)
2258 {
2259 svm_msg_q_wait (mq);
2260 }
2261 else
2262 {
2263 if (svm_msg_q_timedwait (mq, time_to_wait))
2264 {
2265 svm_msg_q_unlock (mq);
2266 return 0;
2267 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002268 }
2269 }
Florin Corase003a1b2019-06-05 10:47:16 -07002270 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002271 svm_msg_q_unlock (mq);
2272
Florin Coras134a9962018-08-28 11:32:04 -07002273 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002274 {
Florin Coras134a9962018-08-28 11:32:04 -07002275 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002276 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002277 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2278 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002279 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002280 }
Florin Coras134a9962018-08-28 11:32:04 -07002281 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002282 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002283 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002284}
2285
Florin Coras99368312018-08-02 10:45:44 -07002286static int
Florin Coras294afe22019-01-07 17:49:17 -08002287vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2288 vcl_si_set * read_map, vcl_si_set * write_map,
2289 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002290 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002291{
Florin Coras14ed6df2019-03-06 21:13:42 -08002292 double wait = 0, start = 0;
2293
2294 if (!*bits_set)
2295 {
2296 wait = time_to_wait;
2297 start = clib_time_now (&wrk->clib_time);
2298 }
2299
2300 do
2301 {
2302 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2303 write_map, except_map, wait, bits_set);
2304 if (*bits_set)
2305 return *bits_set;
2306 if (wait == -1)
2307 continue;
2308
2309 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2310 }
2311 while (wait > 0);
2312
2313 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002314}
2315
2316static int
Florin Coras294afe22019-01-07 17:49:17 -08002317vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2318 vcl_si_set * read_map, vcl_si_set * write_map,
2319 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002320 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002321{
2322 vcl_mq_evt_conn_t *mqc;
2323 int __clib_unused n_read;
2324 int n_mq_evts, i;
2325 u64 buf;
2326
Florin Coras134a9962018-08-28 11:32:04 -07002327 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2328 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2329 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002330 for (i = 0; i < n_mq_evts; i++)
2331 {
Florin Coras134a9962018-08-28 11:32:04 -07002332 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002333 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002334 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002335 except_map, 0, bits_set);
2336 }
2337
2338 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2339}
2340
Dave Wallace543852a2017-08-03 02:11:34 -04002341int
Florin Coras294afe22019-01-07 17:49:17 -08002342vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2343 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002344{
Florin Coras54693d22018-07-17 10:46:29 -07002345 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002346 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002347 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002348 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002349
Dave Wallace7876d392017-10-19 03:53:57 -04002350 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002351 {
Florin Coras134a9962018-08-28 11:32:04 -07002352 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002353 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002354 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2355 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002356 }
Dave Wallace7876d392017-10-19 03:53:57 -04002357 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002358 {
Florin Coras134a9962018-08-28 11:32:04 -07002359 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002360 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002361 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2362 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002363 }
Dave Wallace7876d392017-10-19 03:53:57 -04002364 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002365 {
Florin Coras134a9962018-08-28 11:32:04 -07002366 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002367 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002368 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2369 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002370 }
2371
Florin Coras54693d22018-07-17 10:46:29 -07002372 if (!n_bits)
2373 return 0;
2374
2375 if (!write_map)
2376 goto check_rd;
2377
2378 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002379 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2380 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002381 {
Florin Coras47c40e22018-11-26 17:01:36 -08002382 if (except_map && sid < minbits)
2383 clib_bitmap_set_no_check (except_map, sid, 1);
2384 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002385 }
2386
Sirshak Das28aa5392019-02-05 01:33:33 -06002387 rv = svm_fifo_is_full_prod (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002388 if (!rv)
2389 {
David Johnsond9818dd2018-12-14 14:53:41 -05002390 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002391 bits_set++;
2392 }
Florin Coras294afe22019-01-07 17:49:17 -08002393 else
Florin Coras2d379d82019-06-28 12:45:12 -07002394 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002395 }));
2396
2397check_rd:
2398 if (!read_map)
2399 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002400
Florin Coras134a9962018-08-28 11:32:04 -07002401 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2402 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002403 {
Florin Coras47c40e22018-11-26 17:01:36 -08002404 if (except_map && sid < minbits)
2405 clib_bitmap_set_no_check (except_map, sid, 1);
2406 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002407 }
2408
Florin Coras0ef8ef22019-01-18 08:37:13 -08002409 rv = vcl_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002410 if (rv)
2411 {
David Johnsond9818dd2018-12-14 14:53:41 -05002412 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002413 bits_set++;
2414 }
2415 }));
2416 /* *INDENT-ON* */
2417
2418check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002419
Florin Coras86f04502018-09-12 16:08:01 -07002420 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2421 {
2422 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2423 read_map, write_map, except_map, &bits_set);
2424 }
2425 vec_reset_length (wrk->unhandled_evts_vector);
2426
Florin Coras99368312018-08-02 10:45:44 -07002427 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002428 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002429 time_to_wait, &bits_set);
2430 else
Florin Coras134a9962018-08-28 11:32:04 -07002431 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002432 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002433
Dave Wallace543852a2017-08-03 02:11:34 -04002434 return (bits_set);
2435}
2436
Dave Wallacef7f809c2017-10-03 01:48:42 -04002437static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002438vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002439{
Florin Coras7e12d942018-06-27 14:32:43 -07002440 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002441 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002442 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002443
Florin Corasc0737e92019-03-04 14:19:39 -08002444 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002445 return;
2446
Florin Coras7e5e62b2019-07-30 14:08:23 -07002447 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002448 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002449 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002450 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002451 goto done;
2452 }
2453 if (PREDICT_FALSE (!session->is_vep))
2454 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002455 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002456 goto done;
2457 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002458 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002459 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002460 "{\n"
2461 " is_vep = %u\n"
2462 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002463 " next_sh = 0x%x (%u)\n"
2464 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002465 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002466
Florin Coras7e5e62b2019-07-30 14:08:23 -07002467 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002468 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002469 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002470 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002471 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002472 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002473 goto done;
2474 }
2475 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002476 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002477 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002478 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002479 else if (PREDICT_FALSE (!session->is_vep_session))
2480 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002481 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002482 goto done;
2483 }
2484 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002485 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2486 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2487 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002488 if (session->is_vep_session)
2489 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002490 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002491 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002492 " next_sh = 0x%x (%u)\n"
2493 " prev_sh = 0x%x (%u)\n"
2494 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002495 " ev.events = 0x%x\n"
2496 " ev.data.u64 = 0x%llx\n"
2497 " et_mask = 0x%x\n"
2498 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002499 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002500 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2501 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002502 }
2503 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002504
2505done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002506 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002507}
2508
2509int
2510vppcom_epoll_create (void)
2511{
Florin Coras134a9962018-08-28 11:32:04 -07002512 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002513 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002514
Florin Coras134a9962018-08-28 11:32:04 -07002515 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002516
2517 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002518 vep_session->vep.vep_sh = ~0;
2519 vep_session->vep.next_sh = ~0;
2520 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002521 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002522
Florin Corasa7a1a222018-12-30 17:11:31 -08002523 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2524 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002525
Florin Corasab2f6db2018-08-31 14:31:41 -07002526 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002527}
2528
2529int
Florin Coras134a9962018-08-28 11:32:04 -07002530vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002531 struct epoll_event *event)
2532{
Florin Coras134a9962018-08-28 11:32:04 -07002533 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002534 vcl_session_t *vep_session;
2535 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002536 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002537
Florin Coras134a9962018-08-28 11:32:04 -07002538 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002539 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002540 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002541 return VPPCOM_EINVAL;
2542 }
2543
Florin Coras134a9962018-08-28 11:32:04 -07002544 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002545 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002546 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002547 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002548 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002549 }
2550 if (PREDICT_FALSE (!vep_session->is_vep))
2551 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002552 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002553 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002554 }
2555
Florin Coras134a9962018-08-28 11:32:04 -07002556 ASSERT (vep_session->vep.vep_sh == ~0);
2557 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002558
Florin Coras134a9962018-08-28 11:32:04 -07002559 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002560 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002561 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002562 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002563 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002564 }
2565 if (PREDICT_FALSE (session->is_vep))
2566 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002567 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002568 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002569 }
2570
2571 switch (op)
2572 {
2573 case EPOLL_CTL_ADD:
2574 if (PREDICT_FALSE (!event))
2575 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002576 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002577 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002578 }
Florin Coras134a9962018-08-28 11:32:04 -07002579 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002580 {
Florin Coras7e12d942018-06-27 14:32:43 -07002581 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002582 next_session = vcl_session_get_w_handle (wrk,
2583 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002584 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002585 {
Florin Coras5e062572019-03-14 19:07:51 -07002586 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002587 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002588 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002589 }
Florin Coras134a9962018-08-28 11:32:04 -07002590 ASSERT (next_session->vep.prev_sh == vep_handle);
2591 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002592 }
Florin Coras134a9962018-08-28 11:32:04 -07002593 session->vep.next_sh = vep_session->vep.next_sh;
2594 session->vep.prev_sh = vep_handle;
2595 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002596 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2597 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002598 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002599 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002600 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002601
Florin Coras1bcad5c2019-01-09 20:04:38 -08002602 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002603 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2604 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002605
Florin Coras6e3c1f82020-01-15 01:30:46 +00002606 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002607 if ((event->events & EPOLLOUT) &&
2608 (vcl_session_write_ready (session) > 0))
2609 {
2610 session_event_t e = { 0 };
2611 e.event_type = SESSION_IO_EVT_TX;
2612 e.session_index = session->session_index;
2613 vec_add1 (wrk->unhandled_evts_vector, e);
2614 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002615 /* Generate EPOLLIN if rx fifo has data */
2616 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2617 {
2618 session_event_t e = { 0 };
2619 e.event_type = SESSION_IO_EVT_RX;
2620 e.session_index = session->session_index;
2621 vec_add1 (wrk->unhandled_evts_vector, e);
2622 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002623 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2624 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002625 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002626 break;
2627
2628 case EPOLL_CTL_MOD:
2629 if (PREDICT_FALSE (!event))
2630 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002631 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002632 rv = VPPCOM_EINVAL;
2633 goto done;
2634 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002635 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002636 {
Florin Coras5e062572019-03-14 19:07:51 -07002637 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002638 rv = VPPCOM_EINVAL;
2639 goto done;
2640 }
Florin Coras134a9962018-08-28 11:32:04 -07002641 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002642 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002643 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2644 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002645 rv = VPPCOM_EINVAL;
2646 goto done;
2647 }
hanlin475c9d72019-12-26 11:44:28 +08002648
2649 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2650 if ((event->events & EPOLLOUT) &&
2651 !(session->vep.ev.events & EPOLLOUT) &&
2652 (vcl_session_write_ready (session) > 0))
2653 {
2654 session_event_t e = { 0 };
2655 e.event_type = SESSION_IO_EVT_TX;
2656 e.session_index = session->session_index;
2657 vec_add1 (wrk->unhandled_evts_vector, e);
2658 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002659 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2660 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002661 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2662 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002663 break;
2664
2665 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002666 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002667 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002668 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002669 rv = VPPCOM_EINVAL;
2670 goto done;
2671 }
Florin Coras134a9962018-08-28 11:32:04 -07002672 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002673 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002674 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2675 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002676 rv = VPPCOM_EINVAL;
2677 goto done;
2678 }
2679
Florin Coras134a9962018-08-28 11:32:04 -07002680 if (session->vep.prev_sh == vep_handle)
2681 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002682 else
2683 {
Florin Coras7e12d942018-06-27 14:32:43 -07002684 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002685 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002686 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002687 {
Florin Coras5e062572019-03-14 19:07:51 -07002688 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002689 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002690 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002691 }
Florin Coras134a9962018-08-28 11:32:04 -07002692 ASSERT (prev_session->vep.next_sh == session_handle);
2693 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002694 }
Florin Coras134a9962018-08-28 11:32:04 -07002695 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002696 {
Florin Coras7e12d942018-06-27 14:32:43 -07002697 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002698 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002699 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002700 {
Florin Coras5e062572019-03-14 19:07:51 -07002701 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002702 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002703 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002704 }
Florin Coras134a9962018-08-28 11:32:04 -07002705 ASSERT (next_session->vep.prev_sh == session_handle);
2706 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002707 }
2708
2709 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002710 session->vep.next_sh = ~0;
2711 session->vep.prev_sh = ~0;
2712 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002713 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002714
2715 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002716 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002717
Florin Coras5e062572019-03-14 19:07:51 -07002718 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002719 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002720 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002721 break;
2722
2723 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002724 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002725 rv = VPPCOM_EINVAL;
2726 }
2727
Florin Coras134a9962018-08-28 11:32:04 -07002728 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002729
2730done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002731 return rv;
2732}
2733
Florin Coras86f04502018-09-12 16:08:01 -07002734static inline void
2735vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2736 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002737{
2738 session_disconnected_msg_t *disconnected_msg;
2739 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002740 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002741 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002742 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002743 u8 add_event = 0;
2744
2745 switch (e->event_type)
2746 {
Florin Coras653e43f2019-03-04 10:56:23 -08002747 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002748 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002749 if (!(session = vcl_session_get (wrk, sid)))
2750 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002751 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002752 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002753 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002754 break;
2755 add_event = 1;
2756 events[*num_ev].events |= EPOLLIN;
2757 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002758 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002759 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002760 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002761 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002762 if (!(session = vcl_session_get (wrk, sid)))
2763 break;
Florin Coras86f04502018-09-12 16:08:01 -07002764 session_events = session->vep.ev.events;
2765 if (!(EPOLLOUT & session_events))
2766 break;
2767 add_event = 1;
2768 events[*num_ev].events |= EPOLLOUT;
2769 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002770 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002771 break;
Florin Coras86f04502018-09-12 16:08:01 -07002772 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002773 session = vcl_session_accepted (wrk,
2774 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002775 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002776 break;
Florin Coras86f04502018-09-12 16:08:01 -07002777
Florin Coras86f04502018-09-12 16:08:01 -07002778 session_events = session->vep.ev.events;
2779 if (!(EPOLLIN & session_events))
2780 break;
2781
2782 add_event = 1;
2783 events[*num_ev].events |= EPOLLIN;
2784 session_evt_data = session->vep.ev.data.u64;
2785 break;
2786 case SESSION_CTRL_EVT_CONNECTED:
2787 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002788 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002789 /* Generate EPOLLOUT because there's no connected event */
Florin Corasfa915f82018-12-26 16:29:06 -08002790 if (!(session = vcl_session_get (wrk, sid)))
2791 break;
Florin Coras86f04502018-09-12 16:08:01 -07002792 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002793 if (!(EPOLLOUT & session_events))
2794 break;
2795 add_event = 1;
2796 events[*num_ev].events |= EPOLLOUT;
2797 session_evt_data = session->vep.ev.data.u64;
Florin Corasadcfb152020-02-12 08:50:29 +00002798 if (session->session_state & STATE_DETACHED)
Florin Corasdbc9c592019-09-25 16:37:43 -07002799 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002800 break;
2801 case SESSION_CTRL_EVT_DISCONNECTED:
2802 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002803 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2804 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002805 break;
Florin Coras72f77822019-01-22 19:05:52 -08002806 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002807 add_event = 1;
2808 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2809 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002810 break;
2811 case SESSION_CTRL_EVT_RESET:
2812 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2813 if (!(session = vcl_session_get (wrk, sid)))
2814 break;
Florin Coras72f77822019-01-22 19:05:52 -08002815 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002816 add_event = 1;
2817 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2818 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002819 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002820 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2821 vcl_session_unlisten_reply_handler (wrk, e->data);
2822 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002823 case SESSION_CTRL_EVT_MIGRATED:
2824 vcl_session_migrated_handler (wrk, e->data);
2825 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002826 case SESSION_CTRL_EVT_CLEANUP:
2827 vcl_session_cleanup_handler (wrk, e->data);
2828 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002829 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2830 vcl_session_req_worker_update_handler (wrk, e->data);
2831 break;
2832 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2833 vcl_session_worker_update_reply_handler (wrk, e->data);
2834 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002835 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2836 vcl_session_app_add_segment_handler (wrk, e->data);
2837 break;
2838 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2839 vcl_session_app_del_segment_handler (wrk, e->data);
2840 break;
Florin Coras86f04502018-09-12 16:08:01 -07002841 default:
2842 VDBG (0, "unhandled: %u", e->event_type);
2843 break;
2844 }
2845
2846 if (add_event)
2847 {
2848 events[*num_ev].data.u64 = session_evt_data;
2849 if (EPOLLONESHOT & session_events)
2850 {
2851 session = vcl_session_get (wrk, sid);
2852 session->vep.ev.events = 0;
2853 }
2854 *num_ev += 1;
2855 }
2856}
2857
2858static int
2859vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2860 struct epoll_event *events, u32 maxevents,
2861 double wait_for_time, u32 * num_ev)
2862{
Florin Coras99368312018-08-02 10:45:44 -07002863 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002864 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002865 int i;
2866
Florin Coras539663c2018-09-28 14:59:37 -07002867 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2868 goto handle_dequeued;
2869
Florin Coras54693d22018-07-17 10:46:29 -07002870 svm_msg_q_lock (mq);
2871 if (svm_msg_q_is_empty (mq))
2872 {
2873 if (!wait_for_time)
2874 {
2875 svm_msg_q_unlock (mq);
2876 return 0;
2877 }
2878 else if (wait_for_time < 0)
2879 {
2880 svm_msg_q_wait (mq);
2881 }
2882 else
2883 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002884 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002885 {
2886 svm_msg_q_unlock (mq);
2887 return 0;
2888 }
2889 }
2890 }
Florin Corase003a1b2019-06-05 10:47:16 -07002891 ASSERT (maxevents > *num_ev);
2892 vcl_mq_dequeue_batch (wrk, mq, maxevents - *num_ev);
Florin Coras54693d22018-07-17 10:46:29 -07002893 svm_msg_q_unlock (mq);
2894
Florin Coras539663c2018-09-28 14:59:37 -07002895handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002896 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002897 {
Florin Coras134a9962018-08-28 11:32:04 -07002898 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002899 e = svm_msg_q_msg_data (mq, msg);
Florin Corase003a1b2019-06-05 10:47:16 -07002900 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
Florin Coras99368312018-08-02 10:45:44 -07002901 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002902 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002903 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002904 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002905 return *num_ev;
2906}
2907
Florin Coras99368312018-08-02 10:45:44 -07002908static int
Florin Coras134a9962018-08-28 11:32:04 -07002909vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002910 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002911{
Florin Corase003a1b2019-06-05 10:47:16 -07002912 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002913
2914 if (!n_evts)
2915 {
2916 wait = wait_for_time;
2917 start = clib_time_now (&wrk->clib_time);
2918 }
2919
2920 do
2921 {
2922 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2923 wait, &n_evts);
2924 if (n_evts)
2925 return n_evts;
2926 if (wait == -1)
2927 continue;
2928
Florin Corase003a1b2019-06-05 10:47:16 -07002929 now = clib_time_now (&wrk->clib_time);
2930 wait -= now - start;
2931 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002932 }
2933 while (wait > 0);
2934
2935 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002936}
2937
2938static int
Florin Coras134a9962018-08-28 11:32:04 -07002939vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002940 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002941{
2942 vcl_mq_evt_conn_t *mqc;
2943 int __clib_unused n_read;
2944 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002945 u64 buf;
2946
Florin Coras134a9962018-08-28 11:32:04 -07002947 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002948again:
Florin Coras134a9962018-08-28 11:32:04 -07002949 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2950 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002951 for (i = 0; i < n_mq_evts; i++)
2952 {
Florin Coras134a9962018-08-28 11:32:04 -07002953 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002954 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002955 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002956 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002957 if (!n_evts && n_mq_evts > 0)
2958 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002959
2960 return (int) n_evts;
2961}
2962
Dave Wallacef7f809c2017-10-03 01:48:42 -04002963int
Florin Coras134a9962018-08-28 11:32:04 -07002964vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002965 int maxevents, double wait_for_time)
2966{
Florin Coras134a9962018-08-28 11:32:04 -07002967 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002968 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002969 u32 n_evts = 0;
2970 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002971
2972 if (PREDICT_FALSE (maxevents <= 0))
2973 {
Florin Coras5e062572019-03-14 19:07:51 -07002974 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002975 return VPPCOM_EINVAL;
2976 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002977
Florin Coras134a9962018-08-28 11:32:04 -07002978 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002979 if (!vep_session)
2980 return VPPCOM_EBADFD;
2981
Florin Coras54693d22018-07-17 10:46:29 -07002982 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002983 {
Florin Coras5e062572019-03-14 19:07:51 -07002984 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002985 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002986 }
Florin Coras54693d22018-07-17 10:46:29 -07002987
2988 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002989
Florin Coras86f04502018-09-12 16:08:01 -07002990 if (vec_len (wrk->unhandled_evts_vector))
2991 {
2992 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2993 {
2994 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2995 events, &n_evts);
2996 if (n_evts == maxevents)
2997 {
Florin Corase003a1b2019-06-05 10:47:16 -07002998 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
2999 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07003000 }
3001 }
Florin Corase003a1b2019-06-05 10:47:16 -07003002 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07003003 }
3004
3005 if (vcm->cfg.use_mq_eventfd)
3006 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3007 wait_for_time);
3008
3009 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3010 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04003011}
3012
Dave Wallace35830af2017-10-09 01:43:42 -04003013int
Florin Coras134a9962018-08-28 11:32:04 -07003014vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04003015 void *buffer, uint32_t * buflen)
3016{
Florin Coras134a9962018-08-28 11:32:04 -07003017 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07003018 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04003019 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08003020 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07003021 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04003022
Florin Coras134a9962018-08-28 11:32:04 -07003023 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003024 if (!session)
3025 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003026
Dave Wallace35830af2017-10-09 01:43:42 -04003027 switch (op)
3028 {
3029 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003030 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003031 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3032 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003033 break;
3034
Dave Wallace227867f2017-11-13 21:21:53 -05003035 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003036 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003037 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3038 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003039 break;
3040
3041 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003042 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003043 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003044 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
3045 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003046 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003047 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3048 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003049 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003050 }
3051 else
3052 rv = VPPCOM_EINVAL;
3053 break;
3054
3055 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003056 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003057 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003058 if (*flags & O_NONBLOCK)
3059 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3060 else
3061 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3062
Florin Coras5e062572019-03-14 19:07:51 -07003063 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3064 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003065 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003066 }
3067 else
3068 rv = VPPCOM_EINVAL;
3069 break;
3070
3071 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003072 if (PREDICT_TRUE (buffer && buflen &&
3073 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003074 {
Florin Coras7e12d942018-06-27 14:32:43 -07003075 ep->is_ip4 = session->transport.is_ip4;
3076 ep->port = session->transport.rmt_port;
3077 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003078 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3079 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003080 else
Dave Barach178cf492018-11-13 16:34:13 -05003081 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3082 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003083 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003084 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3085 "addr = %U, port %u", session_handle, ep->is_ip4,
3086 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003087 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3088 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003089 }
3090 else
3091 rv = VPPCOM_EINVAL;
3092 break;
3093
3094 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003095 if (PREDICT_TRUE (buffer && buflen &&
3096 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003097 {
Florin Coras7e12d942018-06-27 14:32:43 -07003098 ep->is_ip4 = session->transport.is_ip4;
3099 ep->port = session->transport.lcl_port;
3100 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003101 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3102 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003103 else
Dave Barach178cf492018-11-13 16:34:13 -05003104 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3105 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003106 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003107 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3108 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003109 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003110 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3111 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003112 }
3113 else
3114 rv = VPPCOM_EINVAL;
3115 break;
Stevenb5a11602017-10-11 09:59:30 -07003116
Florin Corasef7cbf62019-10-17 09:56:27 -07003117 case VPPCOM_ATTR_SET_LCL_ADDR:
3118 if (PREDICT_TRUE (buffer && buflen &&
3119 (*buflen >= sizeof (*ep)) && ep->ip))
3120 {
3121 session->transport.is_ip4 = ep->is_ip4;
3122 session->transport.lcl_port = ep->port;
3123 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3124 *buflen = sizeof (*ep);
3125 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3126 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3127 &session->transport.lcl_ip,
3128 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3129 clib_net_to_host_u16 (ep->port));
3130 }
3131 else
3132 rv = VPPCOM_EINVAL;
3133 break;
3134
Dave Wallace048b1d62018-01-03 22:24:41 -05003135 case VPPCOM_ATTR_GET_LIBC_EPFD:
3136 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003137 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003138 break;
3139
3140 case VPPCOM_ATTR_SET_LIBC_EPFD:
3141 if (PREDICT_TRUE (buffer && buflen &&
3142 (*buflen == sizeof (session->libc_epfd))))
3143 {
3144 session->libc_epfd = *(int *) buffer;
3145 *buflen = sizeof (session->libc_epfd);
3146
Florin Coras5e062572019-03-14 19:07:51 -07003147 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3148 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003149 }
3150 else
3151 rv = VPPCOM_EINVAL;
3152 break;
3153
3154 case VPPCOM_ATTR_GET_PROTOCOL:
3155 if (buffer && buflen && (*buflen >= sizeof (int)))
3156 {
Florin Coras7e12d942018-06-27 14:32:43 -07003157 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003158 *buflen = sizeof (int);
3159
Florin Coras5e062572019-03-14 19:07:51 -07003160 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3161 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003162 }
3163 else
3164 rv = VPPCOM_EINVAL;
3165 break;
3166
3167 case VPPCOM_ATTR_GET_LISTEN:
3168 if (buffer && buflen && (*buflen >= sizeof (int)))
3169 {
3170 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3171 VCL_SESS_ATTR_LISTEN);
3172 *buflen = sizeof (int);
3173
Florin Coras5e062572019-03-14 19:07:51 -07003174 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3175 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003176 }
3177 else
3178 rv = VPPCOM_EINVAL;
3179 break;
3180
3181 case VPPCOM_ATTR_GET_ERROR:
3182 if (buffer && buflen && (*buflen >= sizeof (int)))
3183 {
3184 *(int *) buffer = 0;
3185 *buflen = sizeof (int);
3186
Florin Coras5e062572019-03-14 19:07:51 -07003187 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3188 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003189 }
3190 else
3191 rv = VPPCOM_EINVAL;
3192 break;
3193
3194 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3195 if (buffer && buflen && (*buflen >= sizeof (u32)))
3196 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003197
3198 /* VPP-TBD */
3199 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003200 session->tx_fifo ?
3201 svm_fifo_size (session->tx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003202 vcm->cfg.tx_fifo_size);
3203 *buflen = sizeof (u32);
3204
Florin Coras5e062572019-03-14 19:07:51 -07003205 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3206 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3207 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003208 }
3209 else
3210 rv = VPPCOM_EINVAL;
3211 break;
3212
3213 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3214 if (buffer && buflen && (*buflen == sizeof (u32)))
3215 {
3216 /* VPP-TBD */
3217 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003218 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3219 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3220 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003221 }
3222 else
3223 rv = VPPCOM_EINVAL;
3224 break;
3225
3226 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3227 if (buffer && buflen && (*buflen >= sizeof (u32)))
3228 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003229
3230 /* VPP-TBD */
3231 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Florin Corasf22f4e52019-12-19 16:10:58 -08003232 session->rx_fifo ?
3233 svm_fifo_size (session->rx_fifo) :
Dave Wallace048b1d62018-01-03 22:24:41 -05003234 vcm->cfg.rx_fifo_size);
3235 *buflen = sizeof (u32);
3236
Florin Coras5e062572019-03-14 19:07:51 -07003237 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3238 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003239 }
3240 else
3241 rv = VPPCOM_EINVAL;
3242 break;
3243
3244 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3245 if (buffer && buflen && (*buflen == sizeof (u32)))
3246 {
3247 /* VPP-TBD */
3248 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003249 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3250 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3251 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003252 }
3253 else
3254 rv = VPPCOM_EINVAL;
3255 break;
3256
3257 case VPPCOM_ATTR_GET_REUSEADDR:
3258 if (buffer && buflen && (*buflen >= sizeof (int)))
3259 {
3260 /* VPP-TBD */
3261 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3262 VCL_SESS_ATTR_REUSEADDR);
3263 *buflen = sizeof (int);
3264
Florin Coras5e062572019-03-14 19:07:51 -07003265 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3266 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003267 }
3268 else
3269 rv = VPPCOM_EINVAL;
3270 break;
3271
Stevenb5a11602017-10-11 09:59:30 -07003272 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003273 if (buffer && buflen && (*buflen == sizeof (int)) &&
3274 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3275 {
3276 /* VPP-TBD */
3277 if (*(int *) buffer)
3278 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3279 else
3280 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3281
Florin Coras5e062572019-03-14 19:07:51 -07003282 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3283 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3284 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003285 }
3286 else
3287 rv = VPPCOM_EINVAL;
3288 break;
3289
3290 case VPPCOM_ATTR_GET_REUSEPORT:
3291 if (buffer && buflen && (*buflen >= sizeof (int)))
3292 {
3293 /* VPP-TBD */
3294 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3295 VCL_SESS_ATTR_REUSEPORT);
3296 *buflen = sizeof (int);
3297
Florin Coras5e062572019-03-14 19:07:51 -07003298 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3299 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003300 }
3301 else
3302 rv = VPPCOM_EINVAL;
3303 break;
3304
3305 case VPPCOM_ATTR_SET_REUSEPORT:
3306 if (buffer && buflen && (*buflen == sizeof (int)) &&
3307 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3308 {
3309 /* VPP-TBD */
3310 if (*(int *) buffer)
3311 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3312 else
3313 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3314
Florin Coras5e062572019-03-14 19:07:51 -07003315 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3316 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3317 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003318 }
3319 else
3320 rv = VPPCOM_EINVAL;
3321 break;
3322
3323 case VPPCOM_ATTR_GET_BROADCAST:
3324 if (buffer && buflen && (*buflen >= sizeof (int)))
3325 {
3326 /* VPP-TBD */
3327 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3328 VCL_SESS_ATTR_BROADCAST);
3329 *buflen = sizeof (int);
3330
Florin Coras5e062572019-03-14 19:07:51 -07003331 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3332 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003333 }
3334 else
3335 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003336 break;
3337
3338 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003339 if (buffer && buflen && (*buflen == sizeof (int)))
3340 {
3341 /* VPP-TBD */
3342 if (*(int *) buffer)
3343 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3344 else
3345 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3346
Florin Coras5e062572019-03-14 19:07:51 -07003347 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3348 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3349 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003350 }
3351 else
3352 rv = VPPCOM_EINVAL;
3353 break;
3354
3355 case VPPCOM_ATTR_GET_V6ONLY:
3356 if (buffer && buflen && (*buflen >= sizeof (int)))
3357 {
3358 /* VPP-TBD */
3359 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3360 VCL_SESS_ATTR_V6ONLY);
3361 *buflen = sizeof (int);
3362
Florin Coras5e062572019-03-14 19:07:51 -07003363 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3364 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003365 }
3366 else
3367 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003368 break;
3369
3370 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003371 if (buffer && buflen && (*buflen == sizeof (int)))
3372 {
3373 /* VPP-TBD */
3374 if (*(int *) buffer)
3375 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3376 else
3377 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3378
Florin Coras5e062572019-03-14 19:07:51 -07003379 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3380 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3381 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003382 }
3383 else
3384 rv = VPPCOM_EINVAL;
3385 break;
3386
3387 case VPPCOM_ATTR_GET_KEEPALIVE:
3388 if (buffer && buflen && (*buflen >= sizeof (int)))
3389 {
3390 /* VPP-TBD */
3391 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3392 VCL_SESS_ATTR_KEEPALIVE);
3393 *buflen = sizeof (int);
3394
Florin Coras5e062572019-03-14 19:07:51 -07003395 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3396 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003397 }
3398 else
3399 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003400 break;
Stevenbccd3392017-10-12 20:42:21 -07003401
3402 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003403 if (buffer && buflen && (*buflen == sizeof (int)))
3404 {
3405 /* VPP-TBD */
3406 if (*(int *) buffer)
3407 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3408 else
3409 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3410
Florin Coras5e062572019-03-14 19:07:51 -07003411 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3412 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3413 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003414 }
3415 else
3416 rv = VPPCOM_EINVAL;
3417 break;
3418
3419 case VPPCOM_ATTR_GET_TCP_NODELAY:
3420 if (buffer && buflen && (*buflen >= sizeof (int)))
3421 {
3422 /* VPP-TBD */
3423 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3424 VCL_SESS_ATTR_TCP_NODELAY);
3425 *buflen = sizeof (int);
3426
Florin Coras5e062572019-03-14 19:07:51 -07003427 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3428 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003429 }
3430 else
3431 rv = VPPCOM_EINVAL;
3432 break;
3433
3434 case VPPCOM_ATTR_SET_TCP_NODELAY:
3435 if (buffer && buflen && (*buflen == sizeof (int)))
3436 {
3437 /* VPP-TBD */
3438 if (*(int *) buffer)
3439 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3440 else
3441 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3442
Florin Coras5e062572019-03-14 19:07:51 -07003443 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3444 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3445 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003446 }
3447 else
3448 rv = VPPCOM_EINVAL;
3449 break;
3450
3451 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3452 if (buffer && buflen && (*buflen >= sizeof (int)))
3453 {
3454 /* VPP-TBD */
3455 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3456 VCL_SESS_ATTR_TCP_KEEPIDLE);
3457 *buflen = sizeof (int);
3458
Florin Coras5e062572019-03-14 19:07:51 -07003459 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3460 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003461 }
3462 else
3463 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003464 break;
3465
3466 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003467 if (buffer && buflen && (*buflen == sizeof (int)))
3468 {
3469 /* VPP-TBD */
3470 if (*(int *) buffer)
3471 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3472 else
3473 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3474
Florin Coras5e062572019-03-14 19:07:51 -07003475 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003476 VCL_SESS_ATTR_TEST (session->attr,
3477 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003478 }
3479 else
3480 rv = VPPCOM_EINVAL;
3481 break;
3482
3483 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3484 if (buffer && buflen && (*buflen >= sizeof (int)))
3485 {
3486 /* VPP-TBD */
3487 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3488 VCL_SESS_ATTR_TCP_KEEPINTVL);
3489 *buflen = sizeof (int);
3490
Florin Coras5e062572019-03-14 19:07:51 -07003491 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3492 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003493 }
3494 else
3495 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003496 break;
3497
3498 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003499 if (buffer && buflen && (*buflen == sizeof (int)))
3500 {
3501 /* VPP-TBD */
3502 if (*(int *) buffer)
3503 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3504 else
3505 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3506
Florin Coras5e062572019-03-14 19:07:51 -07003507 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003508 VCL_SESS_ATTR_TEST (session->attr,
3509 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003510 }
3511 else
3512 rv = VPPCOM_EINVAL;
3513 break;
3514
3515 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3516 if (buffer && buflen && (*buflen >= sizeof (u32)))
3517 {
3518 /* VPP-TBD */
3519 *(u32 *) buffer = session->user_mss;
3520 *buflen = sizeof (int);
3521
Florin Coras5e062572019-03-14 19:07:51 -07003522 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3523 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003524 }
3525 else
3526 rv = VPPCOM_EINVAL;
3527 break;
3528
3529 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3530 if (buffer && buflen && (*buflen == sizeof (u32)))
3531 {
3532 /* VPP-TBD */
3533 session->user_mss = *(u32 *) buffer;
3534
Florin Coras5e062572019-03-14 19:07:51 -07003535 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3536 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003537 }
3538 else
3539 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003540 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003541
Florin Coras7baeb712019-01-04 17:05:43 -08003542 case VPPCOM_ATTR_SET_SHUT:
3543 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3544 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3545 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3546 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3547 break;
3548
3549 case VPPCOM_ATTR_GET_SHUT:
3550 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3551 tmp_flags = 1;
3552 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3553 tmp_flags |= 2;
3554 if (tmp_flags == 1)
3555 *(int *) buffer = SHUT_RD;
3556 else if (tmp_flags == 2)
3557 *(int *) buffer = SHUT_WR;
3558 else if (tmp_flags == 3)
3559 *(int *) buffer = SHUT_RDWR;
3560 *buflen = sizeof (int);
3561 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003562 default:
3563 rv = VPPCOM_EINVAL;
3564 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003565 }
3566
Dave Wallace35830af2017-10-09 01:43:42 -04003567 return rv;
3568}
3569
Stevenac1f96d2017-10-24 16:03:58 -07003570int
Florin Coras134a9962018-08-28 11:32:04 -07003571vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003572 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3573{
Florin Coras134a9962018-08-28 11:32:04 -07003574 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003575 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003576 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003577
3578 if (ep)
3579 {
Florin Coras134a9962018-08-28 11:32:04 -07003580 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003581 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003582 {
Florin Coras5e062572019-03-14 19:07:51 -07003583 VDBG (0, "sh 0x%llx is closed!", session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003584 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003585 }
Florin Coras7e12d942018-06-27 14:32:43 -07003586 ep->is_ip4 = session->transport.is_ip4;
3587 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003588 }
Steven58f464e2017-10-25 12:33:12 -07003589
3590 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003591 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003592 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003593 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003594 else
3595 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003596 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003597 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003598 }
3599
Florin Coras99368312018-08-02 10:45:44 -07003600 if (ep)
3601 {
3602 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003603 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3604 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003605 else
Dave Barach178cf492018-11-13 16:34:13 -05003606 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3607 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003608 }
Florin Coras460dce62018-07-27 05:45:06 -07003609
Stevenac1f96d2017-10-24 16:03:58 -07003610 return rv;
3611}
3612
3613int
Florin Coras134a9962018-08-28 11:32:04 -07003614vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003615 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3616{
Dave Wallace617dffa2017-10-26 14:47:06 -04003617 if (!buffer)
3618 return VPPCOM_EINVAL;
3619
3620 if (ep)
3621 {
3622 // TBD
3623 return VPPCOM_EINVAL;
3624 }
3625
3626 if (flags)
3627 {
3628 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003629 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003630 }
3631
Florin Coras42ceddb2018-12-12 10:56:01 -08003632 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003633}
3634
Dave Wallace048b1d62018-01-03 22:24:41 -05003635int
3636vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3637{
Florin Coras134a9962018-08-28 11:32:04 -07003638 vcl_worker_t *wrk = vcl_worker_get_current ();
3639 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003640 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003641 svm_msg_q_msg_t msg;
3642 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003643 int rv, num_ev = 0;
3644
Florin Coras5e062572019-03-14 19:07:51 -07003645 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003646
3647 if (!vp)
3648 return VPPCOM_EFAULT;
3649
3650 do
3651 {
Florin Coras7e12d942018-06-27 14:32:43 -07003652 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003653
Florin Coras6917b942018-11-13 22:44:54 -08003654 /* Dequeue all events and drop all unhandled io events */
3655 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3656 {
3657 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3658 vcl_handle_mq_event (wrk, e);
3659 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3660 }
3661 vec_reset_length (wrk->unhandled_evts_vector);
3662
Dave Wallace048b1d62018-01-03 22:24:41 -05003663 for (i = 0; i < n_sids; i++)
3664 {
Florin Coras7baeb712019-01-04 17:05:43 -08003665 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003666 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003667 {
3668 vp[i].revents = POLLHUP;
3669 num_ev++;
3670 continue;
3671 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003672
Florin Coras6917b942018-11-13 22:44:54 -08003673 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003674
3675 if (POLLIN & vp[i].events)
3676 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003677 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003678 if (rv > 0)
3679 {
Florin Coras6917b942018-11-13 22:44:54 -08003680 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003681 num_ev++;
3682 }
3683 else if (rv < 0)
3684 {
3685 switch (rv)
3686 {
3687 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003688 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003689 break;
3690
3691 default:
Florin Coras6917b942018-11-13 22:44:54 -08003692 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003693 break;
3694 }
3695 num_ev++;
3696 }
3697 }
3698
3699 if (POLLOUT & vp[i].events)
3700 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003701 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003702 if (rv > 0)
3703 {
Florin Coras6917b942018-11-13 22:44:54 -08003704 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003705 num_ev++;
3706 }
3707 else if (rv < 0)
3708 {
3709 switch (rv)
3710 {
3711 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003712 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003713 break;
3714
3715 default:
Florin Coras6917b942018-11-13 22:44:54 -08003716 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003717 break;
3718 }
3719 num_ev++;
3720 }
3721 }
3722
Dave Wallace7e607a72018-06-18 18:41:32 -04003723 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003724 {
Florin Coras6917b942018-11-13 22:44:54 -08003725 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003726 num_ev++;
3727 }
3728 }
3729 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003730 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003731 }
3732 while ((num_ev == 0) && keep_trying);
3733
Dave Wallace048b1d62018-01-03 22:24:41 -05003734 return num_ev;
3735}
3736
Florin Coras99368312018-08-02 10:45:44 -07003737int
3738vppcom_mq_epoll_fd (void)
3739{
Florin Coras134a9962018-08-28 11:32:04 -07003740 vcl_worker_t *wrk = vcl_worker_get_current ();
3741 return wrk->mqs_epfd;
3742}
3743
3744int
Florin Coras30e79c22019-01-02 19:31:22 -08003745vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003746{
3747 return session_handle & 0xFFFFFF;
3748}
3749
3750int
Florin Coras30e79c22019-01-02 19:31:22 -08003751vppcom_session_worker (vcl_session_handle_t session_handle)
3752{
3753 return session_handle >> 24;
3754}
3755
3756int
Florin Coras134a9962018-08-28 11:32:04 -07003757vppcom_worker_register (void)
3758{
Florin Corasd4c70922019-11-28 14:21:21 -08003759 vcl_worker_t *wrk;
3760 u8 *wrk_name = 0;
3761 int rv;
3762
Florin Coras47c40e22018-11-26 17:01:36 -08003763 if (!vcl_worker_alloc_and_init ())
3764 return VPPCOM_EEXIST;
3765
Florin Corasd4c70922019-11-28 14:21:21 -08003766 wrk = vcl_worker_get_current ();
3767 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3768
3769 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3770 vec_free (wrk_name);
3771
3772 if (rv)
3773 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003774
3775 if (vcl_worker_register_with_vpp ())
3776 return VPPCOM_EEXIST;
3777
3778 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003779}
3780
Florin Coras369db832019-07-08 12:34:45 -07003781void
3782vppcom_worker_unregister (void)
3783{
3784 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3785 vcl_set_worker_index (~0);
3786}
3787
Florin Corasdfe4cf42018-11-28 22:13:45 -08003788int
3789vppcom_worker_index (void)
3790{
3791 return vcl_get_worker_index ();
3792}
3793
Florin Corase0982e52019-01-25 13:19:56 -08003794int
3795vppcom_worker_mqs_epfd (void)
3796{
3797 vcl_worker_t *wrk = vcl_worker_get_current ();
3798 if (!vcm->cfg.use_mq_eventfd)
3799 return -1;
3800 return wrk->mqs_epfd;
3801}
3802
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003803int
3804vppcom_session_is_connectable_listener (uint32_t session_handle)
3805{
3806 vcl_session_t *session;
3807 vcl_worker_t *wrk = vcl_worker_get_current ();
3808 session = vcl_session_get_w_handle (wrk, session_handle);
3809 if (!session)
3810 return VPPCOM_EBADFD;
3811 return vcl_session_is_connectable_listener (wrk, session);
3812}
3813
3814int
3815vppcom_session_listener (uint32_t session_handle)
3816{
3817 vcl_worker_t *wrk = vcl_worker_get_current ();
3818 vcl_session_t *listen_session, *session;
3819 session = vcl_session_get_w_handle (wrk, session_handle);
3820 if (!session)
3821 return VPPCOM_EBADFD;
3822 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3823 return VPPCOM_EBADFD;
3824 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3825 if (!listen_session)
3826 return VPPCOM_EBADFD;
3827 return vcl_session_handle (listen_session);
3828}
3829
3830int
3831vppcom_session_n_accepted (uint32_t session_handle)
3832{
3833 vcl_worker_t *wrk = vcl_worker_get_current ();
3834 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3835 if (!session)
3836 return VPPCOM_EBADFD;
3837 return session->n_accepted_sessions;
3838}
3839
Dave Wallacee22aa742017-10-20 12:30:38 -04003840/*
3841 * fd.io coding-style-patch-verification: ON
3842 *
3843 * Local Variables:
3844 * eval: (c-set-style "gnu")
3845 * End:
3846 */