blob: 892d65c348c3c22625b9baea5efefc0215083d8d [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
87 case STATE_FAILED:
88 st = "STATE_FAILED";
89 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 Corasdbc9c592019-09-25 16:37:43 -0700446 session->session_state = STATE_FAILED | 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 Corasdbc9c592019-09-25 16:37:43 -0700460 session->session_state = STATE_FAILED | STATE_DISCONNECT;
461 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 Corasdbc9c592019-09-25 16:37:43 -0700482 session->session_state = STATE_FAILED | STATE_DISCONNECT;
483 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 {
568 session->session_state = STATE_FAILED;
569 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);
682 vcl_msg->accepted_msg = *msg;
683 /* Session handle points to listener until fully accepted by app */
684 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
685
686 return session;
687}
688
689static vcl_session_t *
690vcl_session_disconnected_handler (vcl_worker_t * wrk,
691 session_disconnected_msg_t * msg)
692{
693 vcl_session_t *session;
694
695 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
696 if (!session)
697 {
698 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
699 return 0;
700 }
701
702 /* Caught a disconnect before actually accepting the session */
703 if (session->session_state == STATE_LISTEN)
704 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800705 if (!vcl_flag_accepted_session (session, msg->handle,
706 VCL_ACCEPTED_F_CLOSED))
707 VDBG (0, "session was not accepted!");
708 return 0;
709 }
710
711 session->session_state = STATE_VPP_CLOSING;
712 return session;
713}
714
Florin Coras30e79c22019-01-02 19:31:22 -0800715static void
Florin Coras9ace36d2019-10-28 13:14:17 -0700716vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
717{
718 session_cleanup_msg_t *msg;
719 vcl_session_t *session;
720
721 msg = (session_cleanup_msg_t *) data;
722 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
723 if (!session)
724 {
725 VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
726 return;
727 }
728
729 vcl_session_table_del_vpp_handle (wrk, msg->handle);
730 vcl_session_free (wrk, session);
731}
732
733static void
Florin Coras30e79c22019-01-02 19:31:22 -0800734vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
735{
736 session_req_worker_update_msg_t *msg;
737 vcl_session_t *s;
738
739 msg = (session_req_worker_update_msg_t *) data;
740 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
741 if (!s)
742 return;
743
744 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
745}
746
747static void
748vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
749{
750 session_worker_update_reply_msg_t *msg;
751 vcl_session_t *s;
752
753 msg = (session_worker_update_reply_msg_t *) data;
754 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
755 if (!s)
756 {
757 VDBG (0, "unknown handle 0x%llx", msg->handle);
758 return;
759 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700760 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800761 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700762 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800763 s->session_index);
764 return;
765 }
Florin Coras30e79c22019-01-02 19:31:22 -0800766
Florin Coras5f45e012019-01-23 09:21:30 -0800767 if (s->rx_fifo)
768 {
769 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
770 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
771 s->rx_fifo->client_session_index = s->session_index;
772 s->tx_fifo->client_session_index = s->session_index;
773 s->rx_fifo->client_thread_index = wrk->wrk_index;
774 s->tx_fifo->client_thread_index = wrk->wrk_index;
775 }
Florin Coras30e79c22019-01-02 19:31:22 -0800776 s->session_state = STATE_UPDATED;
777
Florin Coras30e79c22019-01-02 19:31:22 -0800778 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
779 s->vpp_handle, wrk->wrk_index);
780}
781
Florin Corasc4c4cf52019-08-24 18:17:34 -0700782static void
783vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
784{
785 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
786 session_app_add_segment_msg_t *msg;
787 u64 segment_handle;
788 int fd = -1;
789
790 msg = (session_app_add_segment_msg_t *) data;
791
792 if (msg->fd_flags)
793 {
794 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
795 seg_type = SSVM_SEGMENT_MEMFD;
796 }
797
798 segment_handle = msg->segment_handle;
799 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
800 {
801 clib_warning ("invalid segment handle");
802 return;
803 }
804
805 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
806 seg_type, fd))
807 {
808 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
809 return;
810 }
811
812 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
813 msg->segment_size);
814}
815
816static void
817vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
818{
819 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
820 vcl_segment_detach (msg->segment_handle);
821 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
822}
823
Florin Coras86f04502018-09-12 16:08:01 -0700824static int
825vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700826{
Florin Coras54693d22018-07-17 10:46:29 -0700827 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700828 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700829
830 switch (e->event_type)
831 {
Florin Coras653e43f2019-03-04 10:56:23 -0800832 case SESSION_IO_EVT_RX:
833 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800834 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800835 if (!session || !(session->session_state & STATE_OPEN))
836 break;
Florin Coras86f04502018-09-12 16:08:01 -0700837 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700838 break;
839 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800840 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700841 break;
842 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700843 vcl_session_connected_handler (wrk,
844 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700845 break;
846 case SESSION_CTRL_EVT_DISCONNECTED:
847 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800848 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700849 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800850 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800851 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
852 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700853 break;
854 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700855 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700856 break;
857 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700858 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700859 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800860 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
861 vcl_session_unlisten_reply_handler (wrk, e->data);
862 break;
Florin Coras68b7e582020-01-21 18:33:23 -0800863 case SESSION_CTRL_EVT_MIGRATED:
864 vcl_session_migrated_handler (wrk, e->data);
865 break;
Florin Coras9ace36d2019-10-28 13:14:17 -0700866 case SESSION_CTRL_EVT_CLEANUP:
867 vcl_session_cleanup_handler (wrk, e->data);
868 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800869 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
870 vcl_session_req_worker_update_handler (wrk, e->data);
871 break;
872 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
873 vcl_session_worker_update_reply_handler (wrk, e->data);
874 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700875 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
876 vcl_session_app_add_segment_handler (wrk, e->data);
877 break;
878 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
879 vcl_session_app_del_segment_handler (wrk, e->data);
880 break;
Florin Coras54693d22018-07-17 10:46:29 -0700881 default:
882 clib_warning ("unhandled %u", e->event_type);
883 }
884 return VPPCOM_OK;
885}
886
Florin Coras30e79c22019-01-02 19:31:22 -0800887static int
Florin Coras697faea2018-06-27 17:10:49 -0700888vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800889 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700890 f64 wait_for_time)
891{
Florin Coras134a9962018-08-28 11:32:04 -0700892 vcl_worker_t *wrk = vcl_worker_get_current ();
893 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700894 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700895 svm_msg_q_msg_t msg;
896 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400897
Florin Coras697faea2018-06-27 17:10:49 -0700898 do
Dave Wallace543852a2017-08-03 02:11:34 -0400899 {
Florin Coras134a9962018-08-28 11:32:04 -0700900 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700901 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700902 {
Florin Coras070453d2018-08-24 17:04:27 -0700903 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700904 }
905 if (session->session_state & state)
906 {
Florin Coras697faea2018-06-27 17:10:49 -0700907 return VPPCOM_OK;
908 }
909 if (session->session_state & STATE_FAILED)
910 {
Florin Coras697faea2018-06-27 17:10:49 -0700911 return VPPCOM_ECONNREFUSED;
912 }
Florin Coras54693d22018-07-17 10:46:29 -0700913
Florin Coras134a9962018-08-28 11:32:04 -0700914 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800915 {
916 usleep (100);
917 continue;
918 }
Florin Coras134a9962018-08-28 11:32:04 -0700919 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700920 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700921 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800922 }
Florin Coras134a9962018-08-28 11:32:04 -0700923 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800924
Florin Coras05ecfcc2018-12-12 18:19:39 -0800925 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700926 vppcom_session_state_str (state));
927 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400928
Florin Coras697faea2018-06-27 17:10:49 -0700929 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500930}
931
Florin Coras30e79c22019-01-02 19:31:22 -0800932static void
933vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
934{
Florin Coras288eaab2019-02-03 15:26:14 -0800935 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -0800936 vcl_session_t *s;
937 u32 *sip;
938
939 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
940 return;
941
942 vec_foreach (sip, wrk->pending_session_wrk_updates)
943 {
944 s = vcl_session_get (wrk, *sip);
945 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
946 state = s->session_state;
947 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
948 s->session_state = state;
949 }
950 vec_reset_length (wrk->pending_session_wrk_updates);
951}
952
Florin Corasf9240dc2019-01-15 08:03:17 -0800953void
Florin Coras30e79c22019-01-02 19:31:22 -0800954vcl_flush_mq_events (void)
955{
956 vcl_worker_t *wrk = vcl_worker_get_current ();
957 svm_msg_q_msg_t *msg;
958 session_event_t *e;
959 svm_msg_q_t *mq;
960 int i;
961
962 mq = wrk->app_event_queue;
963 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -0700964 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -0800965 svm_msg_q_unlock (mq);
966
967 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
968 {
969 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
970 e = svm_msg_q_msg_data (mq, msg);
971 vcl_handle_mq_event (wrk, e);
972 svm_msg_q_free_msg (mq, msg);
973 }
974 vec_reset_length (wrk->mq_msg_vector);
975 vcl_handle_pending_wrk_updates (wrk);
976}
977
Florin Coras697faea2018-06-27 17:10:49 -0700978static int
979vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400980{
Florin Coras697faea2018-06-27 17:10:49 -0700981 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400982
Florin Coras697faea2018-06-27 17:10:49 -0700983 if (vcm->app_state != STATE_APP_ENABLED)
984 {
985 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700986 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700987 if (PREDICT_FALSE (rv))
988 {
Florin Coras5e062572019-03-14 19:07:51 -0700989 VDBG (0, "application session enable timed out! returning %d (%s)",
990 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -0700991 return rv;
992 }
993 }
994 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400995}
996
Florin Coras697faea2018-06-27 17:10:49 -0700997static int
998vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400999{
Florin Coras697faea2018-06-27 17:10:49 -07001000 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001001
Florin Coras697faea2018-06-27 17:10:49 -07001002 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -07001003 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -07001004 if (PREDICT_FALSE (rv))
1005 {
Florin Coras5e062572019-03-14 19:07:51 -07001006 VDBG (0, "application attach timed out! returning %d (%s)", rv,
1007 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -07001008 return rv;
1009 }
Dave Wallace543852a2017-08-03 02:11:34 -04001010
Florin Coras697faea2018-06-27 17:10:49 -07001011 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001012}
1013
1014static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001015vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001016{
Florin Coras134a9962018-08-28 11:32:04 -07001017 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -07001018 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001019 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -07001020 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -04001021
Florin Corasab2f6db2018-08-31 14:31:41 -07001022 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001023 if (!session)
1024 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001025
Florin Corasaaff5ee2019-07-08 13:00:00 -07001026 /* Flush pending accept events, if any */
1027 while (clib_fifo_elts (session->accept_evts_fifo))
1028 {
1029 clib_fifo_sub2 (session->accept_evts_fifo, evt);
1030 accepted_msg = &evt->accepted_msg;
1031 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1032 vcl_send_session_accepted_reply (session->vpp_evt_q,
1033 accepted_msg->context,
1034 session->vpp_handle, -1);
1035 }
1036 clib_fifo_free (session->accept_evts_fifo);
1037
Florin Coras458089b2019-08-21 16:20:44 -07001038 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001039
Florin Coras5e062572019-03-14 19:07:51 -07001040 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -07001041 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -07001042 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -07001043
1044 session->vpp_handle = ~0;
1045 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001046
Florin Coras070453d2018-08-24 17:04:27 -07001047 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001048}
1049
Florin Coras697faea2018-06-27 17:10:49 -07001050static int
Florin Corasab2f6db2018-08-31 14:31:41 -07001051vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001052{
Florin Coras134a9962018-08-28 11:32:04 -07001053 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001054 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001055 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001056 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001057 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001058
Florin Corasab2f6db2018-08-31 14:31:41 -07001059 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001060 if (!session)
1061 return VPPCOM_EBADFD;
1062
Dave Wallace4878cbe2017-11-21 03:45:09 -05001063 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001064 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001065
Florin Coras5e062572019-03-14 19:07:51 -07001066 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1067 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001068
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001069 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001070 {
Florin Coras5e062572019-03-14 19:07:51 -07001071 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001072 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001073 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001074
Florin Coras3c7d4f92018-12-14 11:28:43 -08001075 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001076 {
Florin Coras134a9962018-08-28 11:32:04 -07001077 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001078 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001079 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001080 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1081 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001082 }
1083 else
Dave Wallace227867f2017-11-13 21:21:53 -05001084 {
Florin Coras5e062572019-03-14 19:07:51 -07001085 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1086 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001087 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001088 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001089
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001090 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1091 {
1092 listen_session = vcl_session_get (wrk, session->listener_index);
1093 listen_session->n_accepted_sessions--;
1094 }
1095
Florin Coras070453d2018-08-24 17:04:27 -07001096 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001097}
1098
Florin Coras940f78f2018-11-30 12:11:20 -08001099/**
1100 * Handle app exit
1101 *
1102 * Notify vpp of the disconnect and mark the worker as free. If we're the
1103 * last worker, do a full cleanup otherwise, since we're probably a forked
1104 * child, avoid syscalls as much as possible. We might've lost privileges.
1105 */
1106void
1107vppcom_app_exit (void)
1108{
1109 if (!pool_elts (vcm->workers))
1110 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001111 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1112 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001113 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001114}
1115
Dave Wallace543852a2017-08-03 02:11:34 -04001116/*
1117 * VPPCOM Public API functions
1118 */
1119int
1120vppcom_app_create (char *app_name)
1121{
Dave Wallace543852a2017-08-03 02:11:34 -04001122 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001123 int rv;
1124
Florin Coras47c40e22018-11-26 17:01:36 -08001125 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001126 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001127 VDBG (1, "already initialized");
1128 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001129 }
1130
Florin Coras47c40e22018-11-26 17:01:36 -08001131 vcm->is_init = 1;
1132 vppcom_cfg (&vcm->cfg);
1133 vcl_cfg = &vcm->cfg;
1134
1135 vcm->main_cpu = pthread_self ();
1136 vcm->main_pid = getpid ();
1137 vcm->app_name = format (0, "%s", app_name);
1138 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001139 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1140 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001141 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1142 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001143 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001144 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001145
1146 /* Allocate default worker */
1147 vcl_worker_alloc_and_init ();
1148
1149 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001150 vcl_elog_init (vcm);
1151 vcm->app_state = STATE_APP_START;
1152 rv = vppcom_connect_to_vpp (app_name);
1153 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001154 {
Florin Coras47c40e22018-11-26 17:01:36 -08001155 VERR ("couldn't connect to VPP!");
1156 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001157 }
Florin Coras47c40e22018-11-26 17:01:36 -08001158 VDBG (0, "sending session enable");
1159 rv = vppcom_app_session_enable ();
1160 if (rv)
1161 {
1162 VERR ("vppcom_app_session_enable() failed!");
1163 return rv;
1164 }
1165
1166 VDBG (0, "sending app attach");
1167 rv = vppcom_app_attach ();
1168 if (rv)
1169 {
1170 VERR ("vppcom_app_attach() failed!");
1171 return rv;
1172 }
1173
1174 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1175 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001176
1177 return VPPCOM_OK;
1178}
1179
1180void
1181vppcom_app_destroy (void)
1182{
Dave Wallace543852a2017-08-03 02:11:34 -04001183 int rv;
Dave Wallacede910062018-03-20 09:22:13 -04001184 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -04001185
Florin Coras940f78f2018-11-30 12:11:20 -08001186 if (!pool_elts (vcm->workers))
1187 return;
1188
Florin Coras0d427d82018-06-27 03:24:07 -07001189 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001190
Florin Coras940f78f2018-11-30 12:11:20 -08001191 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -08001192 {
Florin Coras458089b2019-08-21 16:20:44 -07001193 vcl_send_app_detach (vcl_worker_get_current ());
Florin Coras47c40e22018-11-26 17:01:36 -08001194 orig_app_timeout = vcm->cfg.app_timeout;
1195 vcm->cfg.app_timeout = 2.0;
1196 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
1197 vcm->cfg.app_timeout = orig_app_timeout;
1198 if (PREDICT_FALSE (rv))
1199 VDBG (0, "application detach timed out! returning %d (%s)", rv,
1200 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -08001201 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -08001202 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001203 }
1204 else
1205 {
Florin Coras01f3f892018-12-02 12:45:53 -08001206 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001207 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001208
Florin Coras01f3f892018-12-02 12:45:53 -08001209 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -07001210 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -04001211 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001212}
1213
1214int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001215vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001216{
Florin Coras134a9962018-08-28 11:32:04 -07001217 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001218 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001219
Florin Coras134a9962018-08-28 11:32:04 -07001220 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001221
Florin Coras7e12d942018-06-27 14:32:43 -07001222 session->session_type = proto;
Florin Coras54140622020-02-04 19:04:34 +00001223 session->session_state = STATE_CLOSED;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001224 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001225 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001226
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001227 if (is_nonblocking)
1228 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001229
Florin Coras7e12d942018-06-27 14:32:43 -07001230 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1231 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001232
Florin Coras5e062572019-03-14 19:07:51 -07001233 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001234
Florin Coras134a9962018-08-28 11:32:04 -07001235 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001236}
1237
1238int
Florin Corasf9240dc2019-01-15 08:03:17 -08001239vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1240 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001241{
Florin Coras288eaab2019-02-03 15:26:14 -08001242 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001243 u32 next_sh, vep_sh;
1244 int rv = VPPCOM_OK;
1245 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001246 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001247
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001248 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001249 next_sh = session->vep.next_sh;
1250 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001251 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001252 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001253
Florin Corasf9240dc2019-01-15 08:03:17 -08001254 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001255
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001256 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001257 {
Florin Coras134a9962018-08-28 11:32:04 -07001258 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001259 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001260 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001261 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001262 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001263 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1264 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001265
Florin Coras134a9962018-08-28 11:32:04 -07001266 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001267 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001268 goto cleanup;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001269 }
Florin Coras9ace36d2019-10-28 13:14:17 -07001270
1271 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001272 {
Florin Coras9ace36d2019-10-28 13:14:17 -07001273 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1274 if (rv < 0)
1275 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1276 "failed! rv %d (%s)", session->session_index, vpp_handle,
1277 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallace19481612017-09-15 18:47:44 -04001278 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001279
Florin Coras9ace36d2019-10-28 13:14:17 -07001280 if (!do_disconnect)
1281 {
1282 VDBG (1, "session %u [0x%llx] disconnect skipped",
1283 session->session_index, vpp_handle);
1284 goto cleanup;
1285 }
1286
1287 if (state & STATE_LISTEN)
1288 {
1289 rv = vppcom_session_unbind (sh);
1290 if (PREDICT_FALSE (rv < 0))
1291 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1292 "rv %d (%s)", session->session_index, vpp_handle, rv,
1293 vppcom_retval_str (rv));
1294 return rv;
1295 }
1296 else if ((state & STATE_OPEN)
1297 || (vcl_session_is_connectable_listener (wrk, session)))
1298 {
1299 rv = vppcom_session_disconnect (sh);
1300 if (PREDICT_FALSE (rv < 0))
1301 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1302 " rv %d (%s)", session->session_index, vpp_handle,
1303 rv, vppcom_retval_str (rv));
1304 }
1305 else if (state == STATE_DISCONNECT)
1306 {
1307 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1308 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1309 session->vpp_handle, 0);
1310 }
1311
Florin Coras54140622020-02-04 19:04:34 +00001312 session->session_state = STATE_CLOSED;
1313
Florin Coras9ace36d2019-10-28 13:14:17 -07001314 /* Session is removed only after vpp confirms the disconnect */
1315 return rv;
Florin Coras0ef8ef22019-01-18 08:37:13 -08001316
Florin Corasf9240dc2019-01-15 08:03:17 -08001317cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001318 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Coras134a9962018-08-28 11:32:04 -07001319 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001320 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001321
Dave Wallace543852a2017-08-03 02:11:34 -04001322 return rv;
1323}
1324
1325int
Florin Corasf9240dc2019-01-15 08:03:17 -08001326vppcom_session_close (uint32_t session_handle)
1327{
1328 vcl_worker_t *wrk = vcl_worker_get_current ();
1329 vcl_session_t *session;
1330
1331 session = vcl_session_get_w_handle (wrk, session_handle);
1332 if (!session)
1333 return VPPCOM_EBADFD;
1334 return vcl_session_cleanup (wrk, session, session_handle,
1335 1 /* do_disconnect */ );
1336}
1337
1338int
Florin Coras134a9962018-08-28 11:32:04 -07001339vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001340{
Florin Coras134a9962018-08-28 11:32:04 -07001341 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001342 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001343
1344 if (!ep || !ep->ip)
1345 return VPPCOM_EINVAL;
1346
Florin Coras134a9962018-08-28 11:32:04 -07001347 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001348 if (!session)
1349 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001350
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001351 if (session->is_vep)
1352 {
Florin Coras5e062572019-03-14 19:07:51 -07001353 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1354 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001355 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001356 }
1357
Florin Coras7e12d942018-06-27 14:32:43 -07001358 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001359 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001360 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1361 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001362 else
Dave Barach178cf492018-11-13 16:34:13 -05001363 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1364 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001365 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001366
Florin Coras5e062572019-03-14 19:07:51 -07001367 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1368 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001369 session->transport.is_ip4 ? "IPv4" : "IPv6",
1370 format_ip46_address, &session->transport.lcl_ip,
1371 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1372 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001373 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001374 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001375
1376 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001377 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001378
Florin Coras070453d2018-08-24 17:04:27 -07001379 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001380}
1381
1382int
Florin Coras134a9962018-08-28 11:32:04 -07001383vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001384{
Florin Coras134a9962018-08-28 11:32:04 -07001385 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001386 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001387 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001388 int rv;
1389
Florin Coras134a9962018-08-28 11:32:04 -07001390 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001391 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001392 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001393
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001394 if (q_len == 0 || q_len == ~0)
1395 q_len = vcm->cfg.listen_queue_size;
1396
Dave Wallaceee45d412017-11-24 21:44:06 -05001397 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001398 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001399 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001400 VDBG (0, "session %u [0x%llx]: already in listen state!",
1401 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001402 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001403 }
1404
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001405 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001406
Florin Coras070453d2018-08-24 17:04:27 -07001407 /*
1408 * Send listen request to vpp and wait for reply
1409 */
Florin Coras458089b2019-08-21 16:20:44 -07001410 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001411 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1412 STATE_LISTEN,
1413 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001414
Florin Coras070453d2018-08-24 17:04:27 -07001415 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001416 {
Florin Coras134a9962018-08-28 11:32:04 -07001417 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001418 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1419 listen_sh, listen_session->vpp_handle, rv,
1420 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001421 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001422 }
1423
Florin Coras070453d2018-08-24 17:04:27 -07001424 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001425}
1426
Ping Yu34a3a082018-11-30 19:16:17 -05001427int
1428vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1429 uint32_t cert_len)
1430{
1431
1432 vcl_worker_t *wrk = vcl_worker_get_current ();
1433 vcl_session_t *session = 0;
1434
1435 session = vcl_session_get_w_handle (wrk, session_handle);
1436 if (!session)
1437 return VPPCOM_EBADFD;
1438
1439 if (cert_len == 0 || cert_len == ~0)
1440 return VPPCOM_EBADFD;
1441
1442 /*
1443 * Send listen request to vpp and wait for reply
1444 */
1445 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001446 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1447 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001448 return VPPCOM_OK;
1449
1450}
1451
1452int
1453vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1454 uint32_t key_len)
1455{
1456
1457 vcl_worker_t *wrk = vcl_worker_get_current ();
1458 vcl_session_t *session = 0;
1459
1460 session = vcl_session_get_w_handle (wrk, session_handle);
1461 if (!session)
1462 return VPPCOM_EBADFD;
1463
1464 if (key_len == 0 || key_len == ~0)
1465 return VPPCOM_EBADFD;
1466
Ping Yu34a3a082018-11-30 19:16:17 -05001467 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001468 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1469 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001470 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001471}
1472
Florin Coras134a9962018-08-28 11:32:04 -07001473static int
Florin Coras5e062572019-03-14 19:07:51 -07001474validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001475{
Florin Coras5e062572019-03-14 19:07:51 -07001476 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001477 {
Florin Coras5e062572019-03-14 19:07:51 -07001478 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1479 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001480 return VPPCOM_EBADFD;
1481 }
1482
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001483 if ((ls->session_state != STATE_LISTEN)
1484 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001485 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001486 VDBG (0,
1487 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1488 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001489 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001490 return VPPCOM_EBADFD;
1491 }
1492 return VPPCOM_OK;
1493}
1494
1495int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001496vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1497{
1498 if (!strcmp (proto_str, "TCP"))
1499 *proto = VPPCOM_PROTO_TCP;
1500 else if (!strcmp (proto_str, "tcp"))
1501 *proto = VPPCOM_PROTO_TCP;
1502 else if (!strcmp (proto_str, "UDP"))
1503 *proto = VPPCOM_PROTO_UDP;
1504 else if (!strcmp (proto_str, "udp"))
1505 *proto = VPPCOM_PROTO_UDP;
1506 else if (!strcmp (proto_str, "UDPC"))
1507 *proto = VPPCOM_PROTO_UDPC;
1508 else if (!strcmp (proto_str, "udpc"))
1509 *proto = VPPCOM_PROTO_UDPC;
1510 else if (!strcmp (proto_str, "SCTP"))
1511 *proto = VPPCOM_PROTO_SCTP;
1512 else if (!strcmp (proto_str, "sctp"))
1513 *proto = VPPCOM_PROTO_SCTP;
1514 else if (!strcmp (proto_str, "TLS"))
1515 *proto = VPPCOM_PROTO_TLS;
1516 else if (!strcmp (proto_str, "tls"))
1517 *proto = VPPCOM_PROTO_TLS;
1518 else if (!strcmp (proto_str, "QUIC"))
1519 *proto = VPPCOM_PROTO_QUIC;
1520 else if (!strcmp (proto_str, "quic"))
1521 *proto = VPPCOM_PROTO_QUIC;
1522 else
1523 return 1;
1524 return 0;
1525}
1526
1527int
Florin Coras134a9962018-08-28 11:32:04 -07001528vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001529 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001530{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001531 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001532 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001533 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001534 vcl_session_t *listen_session = 0;
1535 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001536 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001537 svm_msg_q_msg_t msg;
1538 session_event_t *e;
1539 u8 is_nonblocking;
1540 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001541
Florin Coras134a9962018-08-28 11:32:04 -07001542 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001543 if (!listen_session)
1544 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001545
Florin Coras134a9962018-08-28 11:32:04 -07001546 listen_session_index = listen_session->session_index;
1547 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001548 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001549
Florin Coras54693d22018-07-17 10:46:29 -07001550 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001551 {
Florin Coras54693d22018-07-17 10:46:29 -07001552 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001553 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001554 accepted_msg = evt->accepted_msg;
1555 goto handle;
1556 }
1557
1558 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1559 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001560 while (1)
1561 {
Carl Smith592a9092019-11-12 14:57:37 +13001562 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1563 return VPPCOM_EAGAIN;
1564
Florin Coras134a9962018-08-28 11:32:04 -07001565 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001566 return VPPCOM_EAGAIN;
1567
Florin Coras134a9962018-08-28 11:32:04 -07001568 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001569 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001570 {
wanghanlin96453fd2019-12-16 19:14:39 +08001571 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001572 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001573 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001574 }
Dave Barach178cf492018-11-13 16:34:13 -05001575 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001576 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001577 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001578 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001579
Florin Coras54693d22018-07-17 10:46:29 -07001580handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001581
Florin Coras00cca802019-06-06 09:38:44 -07001582 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1583 listen_session_index);
1584 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1585 return VPPCOM_ECONNABORTED;
1586
Florin Coras134a9962018-08-28 11:32:04 -07001587 listen_session = vcl_session_get (wrk, listen_session_index);
1588 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001589
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001590 if (flags & O_NONBLOCK)
1591 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001592
Florin Coras5e062572019-03-14 19:07:51 -07001593 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1594 " flags %d, is_nonblocking %u", listen_session->session_index,
1595 listen_session->vpp_handle, client_session_index,
1596 client_session->vpp_handle, flags,
1597 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001598
Dave Wallace048b1d62018-01-03 22:24:41 -05001599 if (ep)
1600 {
Florin Coras7e12d942018-06-27 14:32:43 -07001601 ep->is_ip4 = client_session->transport.is_ip4;
1602 ep->port = client_session->transport.rmt_port;
1603 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001604 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1605 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001606 else
Dave Barach178cf492018-11-13 16:34:13 -05001607 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1608 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001609 }
Dave Wallace60caa062017-11-10 17:07:13 -05001610
Florin Coras05ecfcc2018-12-12 18:19:39 -08001611 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001612 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001613 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001614 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001615 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001616 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001617 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001618 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001619 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001620 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1621 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001622
Florin Coras3c7d4f92018-12-14 11:28:43 -08001623 /*
1624 * Session might have been closed already
1625 */
1626 if (accept_flags)
1627 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001628 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001629 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001630 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001631 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001632 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001633 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001634}
1635
Florin Corasef7cbf62019-10-17 09:56:27 -07001636static void
1637vcl_ip_copy_from_ep (ip46_address_t * ip, vppcom_endpt_t * ep)
1638{
1639 if (ep->is_ip4)
1640 clib_memcpy_fast (&ip->ip4, ep->ip, sizeof (ip4_address_t));
1641 else
1642 clib_memcpy_fast (&ip->ip6, ep->ip, sizeof (ip6_address_t));
1643}
1644
1645void
1646vcl_ip_copy_to_ep (ip46_address_t * ip, vppcom_endpt_t * ep, u8 is_ip4)
1647{
1648 ep->is_ip4 = is_ip4;
1649 if (is_ip4)
1650 clib_memcpy_fast (ep->ip, &ip->ip4, sizeof (ip4_address_t));
1651 else
1652 clib_memcpy_fast (ep->ip, &ip->ip6, sizeof (ip6_address_t));
1653}
1654
Dave Wallace543852a2017-08-03 02:11:34 -04001655int
Florin Coras134a9962018-08-28 11:32:04 -07001656vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001657{
Florin Coras134a9962018-08-28 11:32:04 -07001658 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001659 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001660 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001661 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001662
Florin Coras134a9962018-08-28 11:32:04 -07001663 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001664 if (!session)
1665 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001666 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001667
1668 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001669 {
Florin Coras5e062572019-03-14 19:07:51 -07001670 VDBG (0, "ERROR: cannot connect epoll session %u!",
1671 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001672 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001673 }
1674
Florin Coras7e12d942018-06-27 14:32:43 -07001675 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001676 {
Florin Coras7baeb712019-01-04 17:05:43 -08001677 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001678 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001679 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001680 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001681 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001682 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001683 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001684 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001685 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001686 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001687 }
1688
Florin Coras7e12d942018-06-27 14:32:43 -07001689 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001690 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001691 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001692 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Dave Wallace543852a2017-08-03 02:11:34 -04001693
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001694 VDBG (0, "session handle %u: connecting to server %s %U "
1695 "port %d proto %s", session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001696 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001697 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001698 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001699 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001700 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001701 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001702
Florin Coras458089b2019-08-21 16:20:44 -07001703 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001704
1705 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1706 return VPPCOM_EINPROGRESS;
1707
1708 /*
1709 * Wait for reply from vpp if blocking
1710 */
Florin Coras070453d2018-08-24 17:04:27 -07001711 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1712 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001713
Florin Coras134a9962018-08-28 11:32:04 -07001714 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001715 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1716 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001717
Dave Wallace4878cbe2017-11-21 03:45:09 -05001718 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001719}
1720
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001721int
1722vppcom_session_stream_connect (uint32_t session_handle,
1723 uint32_t parent_session_handle)
1724{
1725 vcl_worker_t *wrk = vcl_worker_get_current ();
1726 vcl_session_t *session, *parent_session;
1727 u32 session_index, parent_session_index;
1728 int rv;
1729
1730 session = vcl_session_get_w_handle (wrk, session_handle);
1731 if (!session)
1732 return VPPCOM_EBADFD;
1733 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1734 if (!parent_session)
1735 return VPPCOM_EBADFD;
1736
1737 session_index = session->session_index;
1738 parent_session_index = parent_session->session_index;
1739 if (PREDICT_FALSE (session->is_vep))
1740 {
1741 VDBG (0, "ERROR: cannot connect epoll session %u!",
1742 session->session_index);
1743 return VPPCOM_EBADFD;
1744 }
1745
1746 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1747 {
1748 VDBG (0, "session handle %u [0x%llx]: session already "
1749 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1750 session_handle, session->vpp_handle,
1751 parent_session_handle, parent_session->vpp_handle,
1752 vppcom_proto_str (session->session_type), session->session_state,
1753 vppcom_session_state_str (session->session_state));
1754 return VPPCOM_OK;
1755 }
1756
1757 /* Connect to quic session specifics */
1758 session->transport.is_ip4 = parent_session->transport.is_ip4;
1759 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1760 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001761 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001762
1763 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1764 session_handle, parent_session_handle, parent_session->vpp_handle);
1765
1766 /*
1767 * Send connect request and wait for reply from vpp
1768 */
Florin Coras458089b2019-08-21 16:20:44 -07001769 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001770 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1771 vcm->cfg.session_timeout);
1772
1773 session->listener_index = parent_session_index;
1774 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001775 if (parent_session)
1776 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001777
1778 session = vcl_session_get (wrk, session_index);
1779 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1780 session->vpp_handle, rv ? "failed" : "succeeded");
1781
1782 return rv;
1783}
1784
Florin Coras54693d22018-07-17 10:46:29 -07001785static u8
1786vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1787{
Florin Corasc0737e92019-03-04 14:19:39 -08001788 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001789}
1790
Steven58f464e2017-10-25 12:33:12 -07001791static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001792vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001793 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001794{
Florin Coras134a9962018-08-28 11:32:04 -07001795 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001796 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001797 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001798 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001799 svm_msg_q_msg_t msg;
1800 session_event_t *e;
1801 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001802 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001803
Florin Coras070453d2018-08-24 17:04:27 -07001804 if (PREDICT_FALSE (!buf))
1805 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001806
Florin Coras134a9962018-08-28 11:32:04 -07001807 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001808 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001809 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001810
Florin Coras6d0106e2019-01-29 20:11:58 -08001811 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001812 {
Florin Coras5e062572019-03-14 19:07:51 -07001813 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001814 s->session_index, s->vpp_handle, s->session_state,
1815 vppcom_session_state_str (s->session_state));
1816 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001817 }
1818
Florin Coras2cba8532018-09-11 16:33:36 -07001819 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001820 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001821 mq = wrk->app_event_queue;
1822 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001823 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001824
Sirshak Das28aa5392019-02-05 01:33:33 -06001825 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001826 {
Florin Coras54693d22018-07-17 10:46:29 -07001827 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001828 {
Yu Pingb2955352019-12-04 06:49:04 +08001829 if (vcl_session_is_closing (s))
1830 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001831 svm_fifo_unset_event (s->rx_fifo);
1832 return VPPCOM_EWOULDBLOCK;
1833 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001834 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001835 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001836 if (vcl_session_is_closing (s))
1837 return vcl_session_closing_error (s);
1838
Florin Corasc0737e92019-03-04 14:19:39 -08001839 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001840 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001841 if (svm_msg_q_is_empty (mq))
1842 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001843
Florin Coras54693d22018-07-17 10:46:29 -07001844 svm_msg_q_sub_w_lock (mq, &msg);
1845 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001846 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001847 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001848 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001849 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001850 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001851 }
Florin Coras54693d22018-07-17 10:46:29 -07001852
Florin Coras460dce62018-07-27 05:45:06 -07001853 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001854 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001855 else
Florin Coras99368312018-08-02 10:45:44 -07001856 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001857
Sirshak Das28aa5392019-02-05 01:33:33 -06001858 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08001859 svm_fifo_unset_event (s->rx_fifo);
Florin Coras41c9e042018-09-11 00:10:41 -07001860
Florin Coras317b8e02019-04-17 09:57:46 -07001861 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001862 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001863 {
1864 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1865 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001866 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001867 }
1868
Florin Coras5e062572019-03-14 19:07:51 -07001869 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1870 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001871
Florin Coras54693d22018-07-17 10:46:29 -07001872 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001873}
1874
Steven58f464e2017-10-25 12:33:12 -07001875int
Florin Coras134a9962018-08-28 11:32:04 -07001876vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001877{
Florin Coras134a9962018-08-28 11:32:04 -07001878 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001879}
1880
1881static int
Florin Coras134a9962018-08-28 11:32:04 -07001882vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001883{
Florin Coras134a9962018-08-28 11:32:04 -07001884 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001885}
1886
Florin Coras2cba8532018-09-11 16:33:36 -07001887int
1888vppcom_session_read_segments (uint32_t session_handle,
1889 vppcom_data_segments_t ds)
1890{
1891 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001892 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001893 vcl_session_t *s = 0;
1894 svm_fifo_t *rx_fifo;
1895 svm_msg_q_msg_t msg;
1896 session_event_t *e;
1897 svm_msg_q_t *mq;
1898 u8 is_ct;
1899
1900 s = vcl_session_get_w_handle (wrk, session_handle);
1901 if (PREDICT_FALSE (!s || s->is_vep))
1902 return VPPCOM_EBADFD;
1903
Florin Coras6d0106e2019-01-29 20:11:58 -08001904 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1905 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001906
1907 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1908 is_ct = vcl_session_is_ct (s);
1909 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1910 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001911 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001912
Florin Coras653e43f2019-03-04 10:56:23 -08001913 if (is_ct)
1914 svm_fifo_unset_event (s->rx_fifo);
1915
Sirshak Das28aa5392019-02-05 01:33:33 -06001916 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001917 {
1918 if (is_nonblocking)
1919 {
1920 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001921 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001922 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001923 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001924 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001925 if (vcl_session_is_closing (s))
1926 return vcl_session_closing_error (s);
1927
Florin Coras2cba8532018-09-11 16:33:36 -07001928 svm_fifo_unset_event (rx_fifo);
1929 svm_msg_q_lock (mq);
1930 if (svm_msg_q_is_empty (mq))
1931 svm_msg_q_wait (mq);
1932
1933 svm_msg_q_sub_w_lock (mq, &msg);
1934 e = svm_msg_q_msg_data (mq, &msg);
1935 svm_msg_q_unlock (mq);
1936 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001937 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001938 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001939 }
1940 }
1941
Florin Coras88001c62019-04-24 14:44:46 -07001942 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001943 svm_fifo_unset_event (rx_fifo);
1944
Florin Coras2cba8532018-09-11 16:33:36 -07001945 return n_read;
1946}
1947
1948void
1949vppcom_session_free_segments (uint32_t session_handle,
1950 vppcom_data_segments_t ds)
1951{
1952 vcl_worker_t *wrk = vcl_worker_get_current ();
1953 vcl_session_t *s;
1954
1955 s = vcl_session_get_w_handle (wrk, session_handle);
1956 if (PREDICT_FALSE (!s || s->is_vep))
1957 return;
1958
Florin Coras88001c62019-04-24 14:44:46 -07001959 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001960}
1961
Florin Coras2cba8532018-09-11 16:33:36 -07001962int
1963vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1964{
1965 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001966 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001967 if (first_copy < max_bytes)
1968 {
Dave Barach178cf492018-11-13 16:34:13 -05001969 clib_memcpy_fast (buf + first_copy, ds[1].data,
1970 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001971 }
1972 return 0;
1973}
1974
Florin Coras54693d22018-07-17 10:46:29 -07001975static u8
1976vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1977{
Florin Corasc0737e92019-03-04 14:19:39 -08001978 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001979}
1980
Florin Coras42ceddb2018-12-12 10:56:01 -08001981static inline int
1982vppcom_session_write_inline (uint32_t session_handle, void *buf, size_t n,
1983 u8 is_flush)
Dave Wallace543852a2017-08-03 02:11:34 -04001984{
Florin Coras134a9962018-08-28 11:32:04 -07001985 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001986 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001987 vcl_session_t *s = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001988 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001989 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08001990 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001991 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001992 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001993 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001994
jiangxiaomingff31ac62019-11-21 23:34:56 +08001995 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07001996 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001997
Florin Coras134a9962018-08-28 11:32:04 -07001998 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001999 if (PREDICT_FALSE (!s))
2000 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002001
Florin Coras460dce62018-07-27 05:45:06 -07002002 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04002003 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002004 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2005 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002006 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04002007 }
2008
Florin Coras6d0106e2019-01-29 20:11:58 -08002009 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002010 {
Florin Coras6d0106e2019-01-29 20:11:58 -08002011 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2012 s->session_index, s->vpp_handle, s->session_state,
2013 vppcom_session_state_str (s->session_state));
2014 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04002015 }
2016
Florin Coras0e88e852018-09-17 22:09:02 -07002017 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08002018 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07002019 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06002020
Florin Coras653e43f2019-03-04 10:56:23 -08002021 mq = wrk->app_event_queue;
Sirshak Das28aa5392019-02-05 01:33:33 -06002022 if (svm_fifo_is_full_prod (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04002023 {
Florin Coras54693d22018-07-17 10:46:29 -07002024 if (is_nonblocking)
2025 {
Florin Coras070453d2018-08-24 17:04:27 -07002026 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07002027 }
Sirshak Das28aa5392019-02-05 01:33:33 -06002028 while (svm_fifo_is_full_prod (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002029 {
Florin Coras2d379d82019-06-28 12:45:12 -07002030 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08002031 if (vcl_session_is_closing (s))
2032 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07002033 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07002034 if (svm_msg_q_is_empty (mq))
2035 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07002036
Florin Coras54693d22018-07-17 10:46:29 -07002037 svm_msg_q_sub_w_lock (mq, &msg);
2038 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07002039 svm_msg_q_unlock (mq);
2040
Florin Coras0e88e852018-09-17 22:09:02 -07002041 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07002042 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07002043 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07002044 }
Dave Wallace543852a2017-08-03 02:11:34 -04002045 }
Dave Wallace543852a2017-08-03 02:11:34 -04002046
Florin Coras653e43f2019-03-04 10:56:23 -08002047 et = SESSION_IO_EVT_TX;
2048 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08002049 et = SESSION_IO_EVT_TX_FLUSH;
2050
Florin Coras460dce62018-07-27 05:45:06 -07002051 if (s->is_dgram)
2052 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08002053 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002054 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07002055 else
2056 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002057 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002058
Florin Coras14ed6df2019-03-06 21:13:42 -08002059 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002060 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2061 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002062
Florin Coras460dce62018-07-27 05:45:06 -07002063 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002064
Florin Coras6d0106e2019-01-29 20:11:58 -08002065 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2066 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002067
Florin Coras54693d22018-07-17 10:46:29 -07002068 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002069}
2070
Florin Coras42ceddb2018-12-12 10:56:01 -08002071int
2072vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2073{
2074 return vppcom_session_write_inline (session_handle, buf, n,
2075 0 /* is_flush */ );
2076}
2077
Florin Corasb0f662f2018-12-27 14:51:46 -08002078int
2079vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2080{
2081 return vppcom_session_write_inline (session_handle, buf, n,
2082 1 /* is_flush */ );
2083}
2084
Florin Corasc0737e92019-03-04 14:19:39 -08002085#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002086if (PREDICT_FALSE (!_s->rx_fifo)) \
2087 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002088if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2089 { \
2090 if (!vcl_session_is_ct (_s)) \
2091 { \
2092 svm_fifo_unset_event (_s->rx_fifo); \
2093 if (svm_fifo_is_empty (_s->rx_fifo)) \
2094 break; \
2095 } \
2096 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2097 { \
2098 svm_fifo_unset_event (_s->ct_rx_fifo); \
2099 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2100 break; \
2101 } \
2102 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002103
Florin Coras86f04502018-09-12 16:08:01 -07002104static void
2105vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2106 unsigned long n_bits, unsigned long *read_map,
2107 unsigned long *write_map,
2108 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002109{
2110 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002111 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002112 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002113 u32 sid;
2114
2115 switch (e->event_type)
2116 {
Florin Corasc0737e92019-03-04 14:19:39 -08002117 case SESSION_IO_EVT_RX:
2118 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002119 session = vcl_session_get (wrk, sid);
2120 if (!session)
2121 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002122 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002123 if (sid < n_bits && read_map)
2124 {
David Johnsond9818dd2018-12-14 14:53:41 -05002125 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002126 *bits_set += 1;
2127 }
2128 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002129 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002130 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002131 session = vcl_session_get (wrk, sid);
2132 if (!session)
2133 break;
2134 if (sid < n_bits && write_map)
2135 {
David Johnsond9818dd2018-12-14 14:53:41 -05002136 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002137 *bits_set += 1;
2138 }
2139 break;
Florin Coras86f04502018-09-12 16:08:01 -07002140 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002141 session = vcl_session_accepted (wrk,
2142 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002143 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002144 break;
Florin Coras86f04502018-09-12 16:08:01 -07002145 sid = session->session_index;
2146 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;
2152 case SESSION_CTRL_EVT_CONNECTED:
2153 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002154 sid = vcl_session_connected_handler (wrk, connected_msg);
2155 if (sid == VCL_INVALID_SESSION_INDEX)
2156 break;
2157 if (sid < n_bits && write_map)
2158 {
2159 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2160 *bits_set += 1;
2161 }
Florin Coras86f04502018-09-12 16:08:01 -07002162 break;
2163 case SESSION_CTRL_EVT_DISCONNECTED:
2164 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002165 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2166 if (!session)
2167 break;
2168 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002169 if (sid < n_bits && except_map)
2170 {
David Johnsond9818dd2018-12-14 14:53:41 -05002171 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002172 *bits_set += 1;
2173 }
2174 break;
2175 case SESSION_CTRL_EVT_RESET:
2176 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2177 if (sid < n_bits && except_map)
2178 {
David Johnsond9818dd2018-12-14 14:53:41 -05002179 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002180 *bits_set += 1;
2181 }
2182 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002183 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2184 vcl_session_unlisten_reply_handler (wrk, e->data);
2185 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002186 case SESSION_CTRL_EVT_MIGRATED:
2187 vcl_session_migrated_handler (wrk, e->data);
2188 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002189 case SESSION_CTRL_EVT_CLEANUP:
2190 vcl_session_cleanup_handler (wrk, e->data);
2191 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002192 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2193 vcl_session_worker_update_reply_handler (wrk, e->data);
2194 break;
2195 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2196 vcl_session_req_worker_update_handler (wrk, e->data);
2197 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002198 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2199 vcl_session_app_add_segment_handler (wrk, e->data);
2200 break;
2201 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2202 vcl_session_app_del_segment_handler (wrk, e->data);
2203 break;
Florin Coras86f04502018-09-12 16:08:01 -07002204 default:
2205 clib_warning ("unhandled: %u", e->event_type);
2206 break;
2207 }
2208}
2209
2210static int
2211vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2212 unsigned long n_bits, unsigned long *read_map,
2213 unsigned long *write_map, unsigned long *except_map,
2214 double time_to_wait, u32 * bits_set)
2215{
Florin Coras99368312018-08-02 10:45:44 -07002216 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002217 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002218 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002219
2220 svm_msg_q_lock (mq);
2221 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002222 {
Florin Coras54693d22018-07-17 10:46:29 -07002223 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002224 {
Florin Coras54693d22018-07-17 10:46:29 -07002225 svm_msg_q_unlock (mq);
2226 return 0;
2227 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002228
Florin Coras54693d22018-07-17 10:46:29 -07002229 if (!time_to_wait)
2230 {
2231 svm_msg_q_unlock (mq);
2232 return 0;
2233 }
2234 else if (time_to_wait < 0)
2235 {
2236 svm_msg_q_wait (mq);
2237 }
2238 else
2239 {
2240 if (svm_msg_q_timedwait (mq, time_to_wait))
2241 {
2242 svm_msg_q_unlock (mq);
2243 return 0;
2244 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002245 }
2246 }
Florin Corase003a1b2019-06-05 10:47:16 -07002247 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002248 svm_msg_q_unlock (mq);
2249
Florin Coras134a9962018-08-28 11:32:04 -07002250 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002251 {
Florin Coras134a9962018-08-28 11:32:04 -07002252 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002253 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002254 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2255 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002256 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002257 }
Florin Coras134a9962018-08-28 11:32:04 -07002258 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002259 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002260 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002261}
2262
Florin Coras99368312018-08-02 10:45:44 -07002263static int
Florin Coras294afe22019-01-07 17:49:17 -08002264vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2265 vcl_si_set * read_map, vcl_si_set * write_map,
2266 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002267 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002268{
Florin Coras14ed6df2019-03-06 21:13:42 -08002269 double wait = 0, start = 0;
2270
2271 if (!*bits_set)
2272 {
2273 wait = time_to_wait;
2274 start = clib_time_now (&wrk->clib_time);
2275 }
2276
2277 do
2278 {
2279 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2280 write_map, except_map, wait, bits_set);
2281 if (*bits_set)
2282 return *bits_set;
2283 if (wait == -1)
2284 continue;
2285
2286 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2287 }
2288 while (wait > 0);
2289
2290 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002291}
2292
2293static int
Florin Coras294afe22019-01-07 17:49:17 -08002294vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2295 vcl_si_set * read_map, vcl_si_set * write_map,
2296 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002297 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002298{
2299 vcl_mq_evt_conn_t *mqc;
2300 int __clib_unused n_read;
2301 int n_mq_evts, i;
2302 u64 buf;
2303
Florin Coras134a9962018-08-28 11:32:04 -07002304 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2305 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2306 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002307 for (i = 0; i < n_mq_evts; i++)
2308 {
Florin Coras134a9962018-08-28 11:32:04 -07002309 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002310 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002311 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002312 except_map, 0, bits_set);
2313 }
2314
2315 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2316}
2317
Dave Wallace543852a2017-08-03 02:11:34 -04002318int
Florin Coras294afe22019-01-07 17:49:17 -08002319vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2320 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002321{
Florin Coras54693d22018-07-17 10:46:29 -07002322 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002323 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002324 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002325 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002326
Dave Wallace7876d392017-10-19 03:53:57 -04002327 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002328 {
Florin Coras134a9962018-08-28 11:32:04 -07002329 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002330 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002331 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2332 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002333 }
Dave Wallace7876d392017-10-19 03:53:57 -04002334 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002335 {
Florin Coras134a9962018-08-28 11:32:04 -07002336 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002337 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002338 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2339 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002340 }
Dave Wallace7876d392017-10-19 03:53:57 -04002341 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002342 {
Florin Coras134a9962018-08-28 11:32:04 -07002343 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002344 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002345 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2346 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002347 }
2348
Florin Coras54693d22018-07-17 10:46:29 -07002349 if (!n_bits)
2350 return 0;
2351
2352 if (!write_map)
2353 goto check_rd;
2354
2355 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002356 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2357 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002358 {
Florin Coras47c40e22018-11-26 17:01:36 -08002359 if (except_map && sid < minbits)
2360 clib_bitmap_set_no_check (except_map, sid, 1);
2361 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002362 }
2363
Sirshak Das28aa5392019-02-05 01:33:33 -06002364 rv = svm_fifo_is_full_prod (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002365 if (!rv)
2366 {
David Johnsond9818dd2018-12-14 14:53:41 -05002367 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002368 bits_set++;
2369 }
Florin Coras294afe22019-01-07 17:49:17 -08002370 else
Florin Coras2d379d82019-06-28 12:45:12 -07002371 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002372 }));
2373
2374check_rd:
2375 if (!read_map)
2376 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002377
Florin Coras134a9962018-08-28 11:32:04 -07002378 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2379 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002380 {
Florin Coras47c40e22018-11-26 17:01:36 -08002381 if (except_map && sid < minbits)
2382 clib_bitmap_set_no_check (except_map, sid, 1);
2383 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002384 }
2385
Florin Coras0ef8ef22019-01-18 08:37:13 -08002386 rv = vcl_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002387 if (rv)
2388 {
David Johnsond9818dd2018-12-14 14:53:41 -05002389 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002390 bits_set++;
2391 }
2392 }));
2393 /* *INDENT-ON* */
2394
2395check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002396
Florin Coras86f04502018-09-12 16:08:01 -07002397 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2398 {
2399 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2400 read_map, write_map, except_map, &bits_set);
2401 }
2402 vec_reset_length (wrk->unhandled_evts_vector);
2403
Florin Coras99368312018-08-02 10:45:44 -07002404 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002405 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002406 time_to_wait, &bits_set);
2407 else
Florin Coras134a9962018-08-28 11:32:04 -07002408 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002409 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002410
Dave Wallace543852a2017-08-03 02:11:34 -04002411 return (bits_set);
2412}
2413
Dave Wallacef7f809c2017-10-03 01:48:42 -04002414static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002415vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002416{
Florin Coras7e12d942018-06-27 14:32:43 -07002417 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002418 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002419 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002420
Florin Corasc0737e92019-03-04 14:19:39 -08002421 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002422 return;
2423
Florin Coras7e5e62b2019-07-30 14:08:23 -07002424 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002425 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002426 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002427 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002428 goto done;
2429 }
2430 if (PREDICT_FALSE (!session->is_vep))
2431 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002432 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002433 goto done;
2434 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002435 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002436 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002437 "{\n"
2438 " is_vep = %u\n"
2439 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002440 " next_sh = 0x%x (%u)\n"
2441 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002442 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002443
Florin Coras7e5e62b2019-07-30 14:08:23 -07002444 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002445 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002446 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002447 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002448 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002449 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002450 goto done;
2451 }
2452 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002453 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002454 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002455 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002456 else if (PREDICT_FALSE (!session->is_vep_session))
2457 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002458 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002459 goto done;
2460 }
2461 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002462 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2463 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2464 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002465 if (session->is_vep_session)
2466 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002467 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002468 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002469 " next_sh = 0x%x (%u)\n"
2470 " prev_sh = 0x%x (%u)\n"
2471 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002472 " ev.events = 0x%x\n"
2473 " ev.data.u64 = 0x%llx\n"
2474 " et_mask = 0x%x\n"
2475 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002476 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002477 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2478 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002479 }
2480 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002481
2482done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002483 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002484}
2485
2486int
2487vppcom_epoll_create (void)
2488{
Florin Coras134a9962018-08-28 11:32:04 -07002489 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002490 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002491
Florin Coras134a9962018-08-28 11:32:04 -07002492 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002493
2494 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002495 vep_session->vep.vep_sh = ~0;
2496 vep_session->vep.next_sh = ~0;
2497 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002498 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002499
Florin Corasa7a1a222018-12-30 17:11:31 -08002500 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2501 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002502
Florin Corasab2f6db2018-08-31 14:31:41 -07002503 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002504}
2505
2506int
Florin Coras134a9962018-08-28 11:32:04 -07002507vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002508 struct epoll_event *event)
2509{
Florin Coras134a9962018-08-28 11:32:04 -07002510 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002511 vcl_session_t *vep_session;
2512 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002513 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002514
Florin Coras134a9962018-08-28 11:32:04 -07002515 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002516 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002517 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002518 return VPPCOM_EINVAL;
2519 }
2520
Florin Coras134a9962018-08-28 11:32:04 -07002521 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002522 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002523 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002524 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002525 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002526 }
2527 if (PREDICT_FALSE (!vep_session->is_vep))
2528 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002529 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002530 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002531 }
2532
Florin Coras134a9962018-08-28 11:32:04 -07002533 ASSERT (vep_session->vep.vep_sh == ~0);
2534 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002535
Florin Coras134a9962018-08-28 11:32:04 -07002536 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002537 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002538 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002539 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002540 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002541 }
2542 if (PREDICT_FALSE (session->is_vep))
2543 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002544 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002545 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002546 }
2547
2548 switch (op)
2549 {
2550 case EPOLL_CTL_ADD:
2551 if (PREDICT_FALSE (!event))
2552 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002553 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002554 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002555 }
Florin Coras134a9962018-08-28 11:32:04 -07002556 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002557 {
Florin Coras7e12d942018-06-27 14:32:43 -07002558 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002559 next_session = vcl_session_get_w_handle (wrk,
2560 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002561 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002562 {
Florin Coras5e062572019-03-14 19:07:51 -07002563 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002564 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002565 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002566 }
Florin Coras134a9962018-08-28 11:32:04 -07002567 ASSERT (next_session->vep.prev_sh == vep_handle);
2568 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002569 }
Florin Coras134a9962018-08-28 11:32:04 -07002570 session->vep.next_sh = vep_session->vep.next_sh;
2571 session->vep.prev_sh = vep_handle;
2572 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002573 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2574 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002575 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002576 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002577 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002578
Florin Coras1bcad5c2019-01-09 20:04:38 -08002579 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002580 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2581 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002582
Florin Coras6e3c1f82020-01-15 01:30:46 +00002583 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002584 if ((event->events & EPOLLOUT) &&
2585 (vcl_session_write_ready (session) > 0))
2586 {
2587 session_event_t e = { 0 };
2588 e.event_type = SESSION_IO_EVT_TX;
2589 e.session_index = session->session_index;
2590 vec_add1 (wrk->unhandled_evts_vector, e);
2591 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002592 /* Generate EPOLLIN if rx fifo has data */
2593 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2594 {
2595 session_event_t e = { 0 };
2596 e.event_type = SESSION_IO_EVT_RX;
2597 e.session_index = session->session_index;
2598 vec_add1 (wrk->unhandled_evts_vector, e);
2599 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002600 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2601 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002602 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002603 break;
2604
2605 case EPOLL_CTL_MOD:
2606 if (PREDICT_FALSE (!event))
2607 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002608 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002609 rv = VPPCOM_EINVAL;
2610 goto done;
2611 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002612 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002613 {
Florin Coras5e062572019-03-14 19:07:51 -07002614 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002615 rv = VPPCOM_EINVAL;
2616 goto done;
2617 }
Florin Coras134a9962018-08-28 11:32:04 -07002618 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002619 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002620 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2621 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002622 rv = VPPCOM_EINVAL;
2623 goto done;
2624 }
hanlin475c9d72019-12-26 11:44:28 +08002625
2626 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2627 if ((event->events & EPOLLOUT) &&
2628 !(session->vep.ev.events & EPOLLOUT) &&
2629 (vcl_session_write_ready (session) > 0))
2630 {
2631 session_event_t e = { 0 };
2632 e.event_type = SESSION_IO_EVT_TX;
2633 e.session_index = session->session_index;
2634 vec_add1 (wrk->unhandled_evts_vector, e);
2635 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002636 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2637 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002638 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2639 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002640 break;
2641
2642 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002643 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002644 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002645 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002646 rv = VPPCOM_EINVAL;
2647 goto done;
2648 }
Florin Coras134a9962018-08-28 11:32:04 -07002649 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002650 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002651 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2652 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002653 rv = VPPCOM_EINVAL;
2654 goto done;
2655 }
2656
Florin Coras134a9962018-08-28 11:32:04 -07002657 if (session->vep.prev_sh == vep_handle)
2658 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002659 else
2660 {
Florin Coras7e12d942018-06-27 14:32:43 -07002661 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002662 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002663 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002664 {
Florin Coras5e062572019-03-14 19:07:51 -07002665 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002666 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002667 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002668 }
Florin Coras134a9962018-08-28 11:32:04 -07002669 ASSERT (prev_session->vep.next_sh == session_handle);
2670 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002671 }
Florin Coras134a9962018-08-28 11:32:04 -07002672 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002673 {
Florin Coras7e12d942018-06-27 14:32:43 -07002674 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002675 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002676 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002677 {
Florin Coras5e062572019-03-14 19:07:51 -07002678 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002679 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002680 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002681 }
Florin Coras134a9962018-08-28 11:32:04 -07002682 ASSERT (next_session->vep.prev_sh == session_handle);
2683 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002684 }
2685
2686 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002687 session->vep.next_sh = ~0;
2688 session->vep.prev_sh = ~0;
2689 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002690 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002691
2692 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002693 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002694
Florin Coras5e062572019-03-14 19:07:51 -07002695 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002696 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002697 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002698 break;
2699
2700 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002701 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002702 rv = VPPCOM_EINVAL;
2703 }
2704
Florin Coras134a9962018-08-28 11:32:04 -07002705 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002706
2707done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002708 return rv;
2709}
2710
Florin Coras86f04502018-09-12 16:08:01 -07002711static inline void
2712vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2713 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002714{
2715 session_disconnected_msg_t *disconnected_msg;
2716 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002717 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002718 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002719 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002720 u8 add_event = 0;
2721
2722 switch (e->event_type)
2723 {
Florin Coras653e43f2019-03-04 10:56:23 -08002724 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002725 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002726 if (!(session = vcl_session_get (wrk, sid)))
2727 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002728 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002729 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002730 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002731 break;
2732 add_event = 1;
2733 events[*num_ev].events |= EPOLLIN;
2734 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002735 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002736 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002737 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002738 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002739 if (!(session = vcl_session_get (wrk, sid)))
2740 break;
Florin Coras86f04502018-09-12 16:08:01 -07002741 session_events = session->vep.ev.events;
2742 if (!(EPOLLOUT & session_events))
2743 break;
2744 add_event = 1;
2745 events[*num_ev].events |= EPOLLOUT;
2746 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002747 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002748 break;
Florin Coras86f04502018-09-12 16:08:01 -07002749 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002750 session = vcl_session_accepted (wrk,
2751 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002752 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002753 break;
Florin Coras86f04502018-09-12 16:08:01 -07002754
Florin Coras86f04502018-09-12 16:08:01 -07002755 session_events = session->vep.ev.events;
2756 if (!(EPOLLIN & session_events))
2757 break;
2758
2759 add_event = 1;
2760 events[*num_ev].events |= EPOLLIN;
2761 session_evt_data = session->vep.ev.data.u64;
2762 break;
2763 case SESSION_CTRL_EVT_CONNECTED:
2764 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002765 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002766 /* Generate EPOLLOUT because there's no connected event */
Florin Corasfa915f82018-12-26 16:29:06 -08002767 if (!(session = vcl_session_get (wrk, sid)))
2768 break;
Florin Coras86f04502018-09-12 16:08:01 -07002769 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002770 if (!(EPOLLOUT & session_events))
2771 break;
2772 add_event = 1;
2773 events[*num_ev].events |= EPOLLOUT;
2774 session_evt_data = session->vep.ev.data.u64;
Florin Corasdbc9c592019-09-25 16:37:43 -07002775 if (session->session_state & STATE_FAILED)
2776 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002777 break;
2778 case SESSION_CTRL_EVT_DISCONNECTED:
2779 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002780 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2781 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002782 break;
Florin Coras72f77822019-01-22 19:05:52 -08002783 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002784 add_event = 1;
2785 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2786 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002787 break;
2788 case SESSION_CTRL_EVT_RESET:
2789 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2790 if (!(session = vcl_session_get (wrk, sid)))
2791 break;
Florin Coras72f77822019-01-22 19:05:52 -08002792 session_events = session->vep.ev.events;
Florin Coras86f04502018-09-12 16:08:01 -07002793 add_event = 1;
2794 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2795 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002796 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002797 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2798 vcl_session_unlisten_reply_handler (wrk, e->data);
2799 break;
Florin Coras68b7e582020-01-21 18:33:23 -08002800 case SESSION_CTRL_EVT_MIGRATED:
2801 vcl_session_migrated_handler (wrk, e->data);
2802 break;
Florin Coras9ace36d2019-10-28 13:14:17 -07002803 case SESSION_CTRL_EVT_CLEANUP:
2804 vcl_session_cleanup_handler (wrk, e->data);
2805 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002806 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2807 vcl_session_req_worker_update_handler (wrk, e->data);
2808 break;
2809 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2810 vcl_session_worker_update_reply_handler (wrk, e->data);
2811 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002812 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2813 vcl_session_app_add_segment_handler (wrk, e->data);
2814 break;
2815 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2816 vcl_session_app_del_segment_handler (wrk, e->data);
2817 break;
Florin Coras86f04502018-09-12 16:08:01 -07002818 default:
2819 VDBG (0, "unhandled: %u", e->event_type);
2820 break;
2821 }
2822
2823 if (add_event)
2824 {
2825 events[*num_ev].data.u64 = session_evt_data;
2826 if (EPOLLONESHOT & session_events)
2827 {
2828 session = vcl_session_get (wrk, sid);
2829 session->vep.ev.events = 0;
2830 }
2831 *num_ev += 1;
2832 }
2833}
2834
2835static int
2836vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2837 struct epoll_event *events, u32 maxevents,
2838 double wait_for_time, u32 * num_ev)
2839{
Florin Coras99368312018-08-02 10:45:44 -07002840 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002841 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002842 int i;
2843
Florin Coras539663c2018-09-28 14:59:37 -07002844 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2845 goto handle_dequeued;
2846
Florin Coras54693d22018-07-17 10:46:29 -07002847 svm_msg_q_lock (mq);
2848 if (svm_msg_q_is_empty (mq))
2849 {
2850 if (!wait_for_time)
2851 {
2852 svm_msg_q_unlock (mq);
2853 return 0;
2854 }
2855 else if (wait_for_time < 0)
2856 {
2857 svm_msg_q_wait (mq);
2858 }
2859 else
2860 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002861 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002862 {
2863 svm_msg_q_unlock (mq);
2864 return 0;
2865 }
2866 }
2867 }
Florin Corase003a1b2019-06-05 10:47:16 -07002868 ASSERT (maxevents > *num_ev);
2869 vcl_mq_dequeue_batch (wrk, mq, maxevents - *num_ev);
Florin Coras54693d22018-07-17 10:46:29 -07002870 svm_msg_q_unlock (mq);
2871
Florin Coras539663c2018-09-28 14:59:37 -07002872handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002873 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002874 {
Florin Coras134a9962018-08-28 11:32:04 -07002875 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002876 e = svm_msg_q_msg_data (mq, msg);
Florin Corase003a1b2019-06-05 10:47:16 -07002877 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
Florin Coras99368312018-08-02 10:45:44 -07002878 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002879 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002880 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002881 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002882 return *num_ev;
2883}
2884
Florin Coras99368312018-08-02 10:45:44 -07002885static int
Florin Coras134a9962018-08-28 11:32:04 -07002886vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002887 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002888{
Florin Corase003a1b2019-06-05 10:47:16 -07002889 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002890
2891 if (!n_evts)
2892 {
2893 wait = wait_for_time;
2894 start = clib_time_now (&wrk->clib_time);
2895 }
2896
2897 do
2898 {
2899 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2900 wait, &n_evts);
2901 if (n_evts)
2902 return n_evts;
2903 if (wait == -1)
2904 continue;
2905
Florin Corase003a1b2019-06-05 10:47:16 -07002906 now = clib_time_now (&wrk->clib_time);
2907 wait -= now - start;
2908 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002909 }
2910 while (wait > 0);
2911
2912 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002913}
2914
2915static int
Florin Coras134a9962018-08-28 11:32:04 -07002916vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002917 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002918{
2919 vcl_mq_evt_conn_t *mqc;
2920 int __clib_unused n_read;
2921 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002922 u64 buf;
2923
Florin Coras134a9962018-08-28 11:32:04 -07002924 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002925again:
Florin Coras134a9962018-08-28 11:32:04 -07002926 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2927 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002928 for (i = 0; i < n_mq_evts; i++)
2929 {
Florin Coras134a9962018-08-28 11:32:04 -07002930 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002931 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002932 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002933 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002934 if (!n_evts && n_mq_evts > 0)
2935 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002936
2937 return (int) n_evts;
2938}
2939
Dave Wallacef7f809c2017-10-03 01:48:42 -04002940int
Florin Coras134a9962018-08-28 11:32:04 -07002941vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002942 int maxevents, double wait_for_time)
2943{
Florin Coras134a9962018-08-28 11:32:04 -07002944 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002945 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002946 u32 n_evts = 0;
2947 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002948
2949 if (PREDICT_FALSE (maxevents <= 0))
2950 {
Florin Coras5e062572019-03-14 19:07:51 -07002951 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002952 return VPPCOM_EINVAL;
2953 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002954
Florin Coras134a9962018-08-28 11:32:04 -07002955 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002956 if (!vep_session)
2957 return VPPCOM_EBADFD;
2958
Florin Coras54693d22018-07-17 10:46:29 -07002959 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002960 {
Florin Coras5e062572019-03-14 19:07:51 -07002961 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002962 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002963 }
Florin Coras54693d22018-07-17 10:46:29 -07002964
2965 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002966
Florin Coras86f04502018-09-12 16:08:01 -07002967 if (vec_len (wrk->unhandled_evts_vector))
2968 {
2969 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2970 {
2971 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2972 events, &n_evts);
2973 if (n_evts == maxevents)
2974 {
Florin Corase003a1b2019-06-05 10:47:16 -07002975 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
2976 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07002977 }
2978 }
Florin Corase003a1b2019-06-05 10:47:16 -07002979 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002980 }
2981
2982 if (vcm->cfg.use_mq_eventfd)
2983 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2984 wait_for_time);
2985
2986 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2987 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002988}
2989
Dave Wallace35830af2017-10-09 01:43:42 -04002990int
Florin Coras134a9962018-08-28 11:32:04 -07002991vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002992 void *buffer, uint32_t * buflen)
2993{
Florin Coras134a9962018-08-28 11:32:04 -07002994 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002995 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002996 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08002997 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07002998 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002999
Florin Coras134a9962018-08-28 11:32:04 -07003000 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003001 if (!session)
3002 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003003
Dave Wallace35830af2017-10-09 01:43:42 -04003004 switch (op)
3005 {
3006 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003007 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003008 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3009 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003010 break;
3011
Dave Wallace227867f2017-11-13 21:21:53 -05003012 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08003013 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07003014 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3015 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04003016 break;
3017
3018 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003019 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003020 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003021 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
3022 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003023 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07003024 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3025 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003026 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003027 }
3028 else
3029 rv = VPPCOM_EINVAL;
3030 break;
3031
3032 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05003033 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04003034 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003035 if (*flags & O_NONBLOCK)
3036 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3037 else
3038 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3039
Florin Coras5e062572019-03-14 19:07:51 -07003040 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3041 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07003042 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04003043 }
3044 else
3045 rv = VPPCOM_EINVAL;
3046 break;
3047
3048 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003049 if (PREDICT_TRUE (buffer && buflen &&
3050 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003051 {
Florin Coras7e12d942018-06-27 14:32:43 -07003052 ep->is_ip4 = session->transport.is_ip4;
3053 ep->port = session->transport.rmt_port;
3054 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003055 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3056 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003057 else
Dave Barach178cf492018-11-13 16:34:13 -05003058 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3059 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003060 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003061 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3062 "addr = %U, port %u", session_handle, ep->is_ip4,
3063 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003064 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3065 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003066 }
3067 else
3068 rv = VPPCOM_EINVAL;
3069 break;
3070
3071 case VPPCOM_ATTR_GET_LCL_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.lcl_port;
3077 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003078 clib_memcpy_fast (ep->ip, &session->transport.lcl_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.lcl_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_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3085 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003086 &session->transport.lcl_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;
Stevenb5a11602017-10-11 09:59:30 -07003093
Florin Corasef7cbf62019-10-17 09:56:27 -07003094 case VPPCOM_ATTR_SET_LCL_ADDR:
3095 if (PREDICT_TRUE (buffer && buflen &&
3096 (*buflen >= sizeof (*ep)) && ep->ip))
3097 {
3098 session->transport.is_ip4 = ep->is_ip4;
3099 session->transport.lcl_port = ep->port;
3100 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3101 *buflen = sizeof (*ep);
3102 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3103 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3104 &session->transport.lcl_ip,
3105 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3106 clib_net_to_host_u16 (ep->port));
3107 }
3108 else
3109 rv = VPPCOM_EINVAL;
3110 break;
3111
Dave Wallace048b1d62018-01-03 22:24:41 -05003112 case VPPCOM_ATTR_GET_LIBC_EPFD:
3113 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003114 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003115 break;
3116
3117 case VPPCOM_ATTR_SET_LIBC_EPFD:
3118 if (PREDICT_TRUE (buffer && buflen &&
3119 (*buflen == sizeof (session->libc_epfd))))
3120 {
3121 session->libc_epfd = *(int *) buffer;
3122 *buflen = sizeof (session->libc_epfd);
3123
Florin Coras5e062572019-03-14 19:07:51 -07003124 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3125 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003126 }
3127 else
3128 rv = VPPCOM_EINVAL;
3129 break;
3130
3131 case VPPCOM_ATTR_GET_PROTOCOL:
3132 if (buffer && buflen && (*buflen >= sizeof (int)))
3133 {
Florin Coras7e12d942018-06-27 14:32:43 -07003134 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003135 *buflen = sizeof (int);
3136
Florin Coras5e062572019-03-14 19:07:51 -07003137 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3138 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003139 }
3140 else
3141 rv = VPPCOM_EINVAL;
3142 break;
3143
3144 case VPPCOM_ATTR_GET_LISTEN:
3145 if (buffer && buflen && (*buflen >= sizeof (int)))
3146 {
3147 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3148 VCL_SESS_ATTR_LISTEN);
3149 *buflen = sizeof (int);
3150
Florin Coras5e062572019-03-14 19:07:51 -07003151 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3152 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003153 }
3154 else
3155 rv = VPPCOM_EINVAL;
3156 break;
3157
3158 case VPPCOM_ATTR_GET_ERROR:
3159 if (buffer && buflen && (*buflen >= sizeof (int)))
3160 {
3161 *(int *) buffer = 0;
3162 *buflen = sizeof (int);
3163
Florin Coras5e062572019-03-14 19:07:51 -07003164 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3165 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003166 }
3167 else
3168 rv = VPPCOM_EINVAL;
3169 break;
3170
3171 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3172 if (buffer && buflen && (*buflen >= sizeof (u32)))
3173 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003174
3175 /* VPP-TBD */
3176 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003177 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003178 vcm->cfg.tx_fifo_size);
3179 *buflen = sizeof (u32);
3180
Florin Coras5e062572019-03-14 19:07:51 -07003181 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3182 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3183 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003184 }
3185 else
3186 rv = VPPCOM_EINVAL;
3187 break;
3188
3189 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3190 if (buffer && buflen && (*buflen == sizeof (u32)))
3191 {
3192 /* VPP-TBD */
3193 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003194 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3195 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3196 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003197 }
3198 else
3199 rv = VPPCOM_EINVAL;
3200 break;
3201
3202 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3203 if (buffer && buflen && (*buflen >= sizeof (u32)))
3204 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003205
3206 /* VPP-TBD */
3207 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003208 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003209 vcm->cfg.rx_fifo_size);
3210 *buflen = sizeof (u32);
3211
Florin Coras5e062572019-03-14 19:07:51 -07003212 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3213 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003214 }
3215 else
3216 rv = VPPCOM_EINVAL;
3217 break;
3218
3219 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3220 if (buffer && buflen && (*buflen == sizeof (u32)))
3221 {
3222 /* VPP-TBD */
3223 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003224 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3225 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3226 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003227 }
3228 else
3229 rv = VPPCOM_EINVAL;
3230 break;
3231
3232 case VPPCOM_ATTR_GET_REUSEADDR:
3233 if (buffer && buflen && (*buflen >= sizeof (int)))
3234 {
3235 /* VPP-TBD */
3236 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3237 VCL_SESS_ATTR_REUSEADDR);
3238 *buflen = sizeof (int);
3239
Florin Coras5e062572019-03-14 19:07:51 -07003240 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3241 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003242 }
3243 else
3244 rv = VPPCOM_EINVAL;
3245 break;
3246
Stevenb5a11602017-10-11 09:59:30 -07003247 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003248 if (buffer && buflen && (*buflen == sizeof (int)) &&
3249 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3250 {
3251 /* VPP-TBD */
3252 if (*(int *) buffer)
3253 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3254 else
3255 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3256
Florin Coras5e062572019-03-14 19:07:51 -07003257 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3258 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3259 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003260 }
3261 else
3262 rv = VPPCOM_EINVAL;
3263 break;
3264
3265 case VPPCOM_ATTR_GET_REUSEPORT:
3266 if (buffer && buflen && (*buflen >= sizeof (int)))
3267 {
3268 /* VPP-TBD */
3269 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3270 VCL_SESS_ATTR_REUSEPORT);
3271 *buflen = sizeof (int);
3272
Florin Coras5e062572019-03-14 19:07:51 -07003273 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3274 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003275 }
3276 else
3277 rv = VPPCOM_EINVAL;
3278 break;
3279
3280 case VPPCOM_ATTR_SET_REUSEPORT:
3281 if (buffer && buflen && (*buflen == sizeof (int)) &&
3282 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3283 {
3284 /* VPP-TBD */
3285 if (*(int *) buffer)
3286 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3287 else
3288 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3289
Florin Coras5e062572019-03-14 19:07:51 -07003290 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3291 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3292 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003293 }
3294 else
3295 rv = VPPCOM_EINVAL;
3296 break;
3297
3298 case VPPCOM_ATTR_GET_BROADCAST:
3299 if (buffer && buflen && (*buflen >= sizeof (int)))
3300 {
3301 /* VPP-TBD */
3302 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3303 VCL_SESS_ATTR_BROADCAST);
3304 *buflen = sizeof (int);
3305
Florin Coras5e062572019-03-14 19:07:51 -07003306 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3307 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003308 }
3309 else
3310 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003311 break;
3312
3313 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003314 if (buffer && buflen && (*buflen == sizeof (int)))
3315 {
3316 /* VPP-TBD */
3317 if (*(int *) buffer)
3318 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3319 else
3320 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3321
Florin Coras5e062572019-03-14 19:07:51 -07003322 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3323 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3324 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003325 }
3326 else
3327 rv = VPPCOM_EINVAL;
3328 break;
3329
3330 case VPPCOM_ATTR_GET_V6ONLY:
3331 if (buffer && buflen && (*buflen >= sizeof (int)))
3332 {
3333 /* VPP-TBD */
3334 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3335 VCL_SESS_ATTR_V6ONLY);
3336 *buflen = sizeof (int);
3337
Florin Coras5e062572019-03-14 19:07:51 -07003338 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3339 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003340 }
3341 else
3342 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003343 break;
3344
3345 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003346 if (buffer && buflen && (*buflen == sizeof (int)))
3347 {
3348 /* VPP-TBD */
3349 if (*(int *) buffer)
3350 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3351 else
3352 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3353
Florin Coras5e062572019-03-14 19:07:51 -07003354 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3355 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3356 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003357 }
3358 else
3359 rv = VPPCOM_EINVAL;
3360 break;
3361
3362 case VPPCOM_ATTR_GET_KEEPALIVE:
3363 if (buffer && buflen && (*buflen >= sizeof (int)))
3364 {
3365 /* VPP-TBD */
3366 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3367 VCL_SESS_ATTR_KEEPALIVE);
3368 *buflen = sizeof (int);
3369
Florin Coras5e062572019-03-14 19:07:51 -07003370 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3371 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003372 }
3373 else
3374 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003375 break;
Stevenbccd3392017-10-12 20:42:21 -07003376
3377 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003378 if (buffer && buflen && (*buflen == sizeof (int)))
3379 {
3380 /* VPP-TBD */
3381 if (*(int *) buffer)
3382 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3383 else
3384 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3385
Florin Coras5e062572019-03-14 19:07:51 -07003386 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3387 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3388 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003389 }
3390 else
3391 rv = VPPCOM_EINVAL;
3392 break;
3393
3394 case VPPCOM_ATTR_GET_TCP_NODELAY:
3395 if (buffer && buflen && (*buflen >= sizeof (int)))
3396 {
3397 /* VPP-TBD */
3398 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3399 VCL_SESS_ATTR_TCP_NODELAY);
3400 *buflen = sizeof (int);
3401
Florin Coras5e062572019-03-14 19:07:51 -07003402 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3403 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003404 }
3405 else
3406 rv = VPPCOM_EINVAL;
3407 break;
3408
3409 case VPPCOM_ATTR_SET_TCP_NODELAY:
3410 if (buffer && buflen && (*buflen == sizeof (int)))
3411 {
3412 /* VPP-TBD */
3413 if (*(int *) buffer)
3414 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3415 else
3416 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3417
Florin Coras5e062572019-03-14 19:07:51 -07003418 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3419 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3420 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003421 }
3422 else
3423 rv = VPPCOM_EINVAL;
3424 break;
3425
3426 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3427 if (buffer && buflen && (*buflen >= sizeof (int)))
3428 {
3429 /* VPP-TBD */
3430 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3431 VCL_SESS_ATTR_TCP_KEEPIDLE);
3432 *buflen = sizeof (int);
3433
Florin Coras5e062572019-03-14 19:07:51 -07003434 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3435 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003436 }
3437 else
3438 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003439 break;
3440
3441 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003442 if (buffer && buflen && (*buflen == sizeof (int)))
3443 {
3444 /* VPP-TBD */
3445 if (*(int *) buffer)
3446 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3447 else
3448 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3449
Florin Coras5e062572019-03-14 19:07:51 -07003450 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003451 VCL_SESS_ATTR_TEST (session->attr,
3452 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003453 }
3454 else
3455 rv = VPPCOM_EINVAL;
3456 break;
3457
3458 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3459 if (buffer && buflen && (*buflen >= sizeof (int)))
3460 {
3461 /* VPP-TBD */
3462 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3463 VCL_SESS_ATTR_TCP_KEEPINTVL);
3464 *buflen = sizeof (int);
3465
Florin Coras5e062572019-03-14 19:07:51 -07003466 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3467 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003468 }
3469 else
3470 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003471 break;
3472
3473 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003474 if (buffer && buflen && (*buflen == sizeof (int)))
3475 {
3476 /* VPP-TBD */
3477 if (*(int *) buffer)
3478 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3479 else
3480 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3481
Florin Coras5e062572019-03-14 19:07:51 -07003482 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003483 VCL_SESS_ATTR_TEST (session->attr,
3484 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003485 }
3486 else
3487 rv = VPPCOM_EINVAL;
3488 break;
3489
3490 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3491 if (buffer && buflen && (*buflen >= sizeof (u32)))
3492 {
3493 /* VPP-TBD */
3494 *(u32 *) buffer = session->user_mss;
3495 *buflen = sizeof (int);
3496
Florin Coras5e062572019-03-14 19:07:51 -07003497 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3498 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003499 }
3500 else
3501 rv = VPPCOM_EINVAL;
3502 break;
3503
3504 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3505 if (buffer && buflen && (*buflen == sizeof (u32)))
3506 {
3507 /* VPP-TBD */
3508 session->user_mss = *(u32 *) buffer;
3509
Florin Coras5e062572019-03-14 19:07:51 -07003510 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3511 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003512 }
3513 else
3514 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003515 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003516
Florin Coras7baeb712019-01-04 17:05:43 -08003517 case VPPCOM_ATTR_SET_SHUT:
3518 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3519 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3520 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3521 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3522 break;
3523
3524 case VPPCOM_ATTR_GET_SHUT:
3525 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3526 tmp_flags = 1;
3527 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3528 tmp_flags |= 2;
3529 if (tmp_flags == 1)
3530 *(int *) buffer = SHUT_RD;
3531 else if (tmp_flags == 2)
3532 *(int *) buffer = SHUT_WR;
3533 else if (tmp_flags == 3)
3534 *(int *) buffer = SHUT_RDWR;
3535 *buflen = sizeof (int);
3536 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003537 default:
3538 rv = VPPCOM_EINVAL;
3539 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003540 }
3541
Dave Wallace35830af2017-10-09 01:43:42 -04003542 return rv;
3543}
3544
Stevenac1f96d2017-10-24 16:03:58 -07003545int
Florin Coras134a9962018-08-28 11:32:04 -07003546vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003547 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3548{
Florin Coras134a9962018-08-28 11:32:04 -07003549 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003550 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003551 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003552
3553 if (ep)
3554 {
Florin Coras134a9962018-08-28 11:32:04 -07003555 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003556 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003557 {
Florin Coras5e062572019-03-14 19:07:51 -07003558 VDBG (0, "sh 0x%llx is closed!", session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003559 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003560 }
Florin Coras7e12d942018-06-27 14:32:43 -07003561 ep->is_ip4 = session->transport.is_ip4;
3562 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003563 }
Steven58f464e2017-10-25 12:33:12 -07003564
3565 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003566 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003567 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003568 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003569 else
3570 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003571 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003572 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003573 }
3574
Florin Coras99368312018-08-02 10:45:44 -07003575 if (ep)
3576 {
3577 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003578 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3579 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003580 else
Dave Barach178cf492018-11-13 16:34:13 -05003581 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3582 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003583 }
Florin Coras460dce62018-07-27 05:45:06 -07003584
Stevenac1f96d2017-10-24 16:03:58 -07003585 return rv;
3586}
3587
3588int
Florin Coras134a9962018-08-28 11:32:04 -07003589vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003590 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3591{
Dave Wallace617dffa2017-10-26 14:47:06 -04003592 if (!buffer)
3593 return VPPCOM_EINVAL;
3594
3595 if (ep)
3596 {
3597 // TBD
3598 return VPPCOM_EINVAL;
3599 }
3600
3601 if (flags)
3602 {
3603 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003604 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003605 }
3606
Florin Coras42ceddb2018-12-12 10:56:01 -08003607 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003608}
3609
Dave Wallace048b1d62018-01-03 22:24:41 -05003610int
3611vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3612{
Florin Coras134a9962018-08-28 11:32:04 -07003613 vcl_worker_t *wrk = vcl_worker_get_current ();
3614 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003615 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003616 svm_msg_q_msg_t msg;
3617 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003618 int rv, num_ev = 0;
3619
Florin Coras5e062572019-03-14 19:07:51 -07003620 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003621
3622 if (!vp)
3623 return VPPCOM_EFAULT;
3624
3625 do
3626 {
Florin Coras7e12d942018-06-27 14:32:43 -07003627 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003628
Florin Coras6917b942018-11-13 22:44:54 -08003629 /* Dequeue all events and drop all unhandled io events */
3630 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3631 {
3632 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3633 vcl_handle_mq_event (wrk, e);
3634 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3635 }
3636 vec_reset_length (wrk->unhandled_evts_vector);
3637
Dave Wallace048b1d62018-01-03 22:24:41 -05003638 for (i = 0; i < n_sids; i++)
3639 {
Florin Coras7baeb712019-01-04 17:05:43 -08003640 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003641 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003642 {
3643 vp[i].revents = POLLHUP;
3644 num_ev++;
3645 continue;
3646 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003647
Florin Coras6917b942018-11-13 22:44:54 -08003648 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003649
3650 if (POLLIN & vp[i].events)
3651 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003652 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003653 if (rv > 0)
3654 {
Florin Coras6917b942018-11-13 22:44:54 -08003655 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003656 num_ev++;
3657 }
3658 else if (rv < 0)
3659 {
3660 switch (rv)
3661 {
3662 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003663 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003664 break;
3665
3666 default:
Florin Coras6917b942018-11-13 22:44:54 -08003667 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003668 break;
3669 }
3670 num_ev++;
3671 }
3672 }
3673
3674 if (POLLOUT & vp[i].events)
3675 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003676 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003677 if (rv > 0)
3678 {
Florin Coras6917b942018-11-13 22:44:54 -08003679 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003680 num_ev++;
3681 }
3682 else if (rv < 0)
3683 {
3684 switch (rv)
3685 {
3686 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003687 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003688 break;
3689
3690 default:
Florin Coras6917b942018-11-13 22:44:54 -08003691 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003692 break;
3693 }
3694 num_ev++;
3695 }
3696 }
3697
Dave Wallace7e607a72018-06-18 18:41:32 -04003698 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003699 {
Florin Coras6917b942018-11-13 22:44:54 -08003700 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003701 num_ev++;
3702 }
3703 }
3704 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003705 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003706 }
3707 while ((num_ev == 0) && keep_trying);
3708
Dave Wallace048b1d62018-01-03 22:24:41 -05003709 return num_ev;
3710}
3711
Florin Coras99368312018-08-02 10:45:44 -07003712int
3713vppcom_mq_epoll_fd (void)
3714{
Florin Coras134a9962018-08-28 11:32:04 -07003715 vcl_worker_t *wrk = vcl_worker_get_current ();
3716 return wrk->mqs_epfd;
3717}
3718
3719int
Florin Coras30e79c22019-01-02 19:31:22 -08003720vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003721{
3722 return session_handle & 0xFFFFFF;
3723}
3724
3725int
Florin Coras30e79c22019-01-02 19:31:22 -08003726vppcom_session_worker (vcl_session_handle_t session_handle)
3727{
3728 return session_handle >> 24;
3729}
3730
3731int
Florin Coras134a9962018-08-28 11:32:04 -07003732vppcom_worker_register (void)
3733{
Florin Corasd4c70922019-11-28 14:21:21 -08003734 vcl_worker_t *wrk;
3735 u8 *wrk_name = 0;
3736 int rv;
3737
Florin Coras47c40e22018-11-26 17:01:36 -08003738 if (!vcl_worker_alloc_and_init ())
3739 return VPPCOM_EEXIST;
3740
Florin Corasd4c70922019-11-28 14:21:21 -08003741 wrk = vcl_worker_get_current ();
3742 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3743
3744 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3745 vec_free (wrk_name);
3746
3747 if (rv)
3748 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003749
3750 if (vcl_worker_register_with_vpp ())
3751 return VPPCOM_EEXIST;
3752
3753 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003754}
3755
Florin Coras369db832019-07-08 12:34:45 -07003756void
3757vppcom_worker_unregister (void)
3758{
3759 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3760 vcl_set_worker_index (~0);
3761}
3762
Florin Corasdfe4cf42018-11-28 22:13:45 -08003763int
3764vppcom_worker_index (void)
3765{
3766 return vcl_get_worker_index ();
3767}
3768
Florin Corase0982e52019-01-25 13:19:56 -08003769int
3770vppcom_worker_mqs_epfd (void)
3771{
3772 vcl_worker_t *wrk = vcl_worker_get_current ();
3773 if (!vcm->cfg.use_mq_eventfd)
3774 return -1;
3775 return wrk->mqs_epfd;
3776}
3777
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003778int
3779vppcom_session_is_connectable_listener (uint32_t session_handle)
3780{
3781 vcl_session_t *session;
3782 vcl_worker_t *wrk = vcl_worker_get_current ();
3783 session = vcl_session_get_w_handle (wrk, session_handle);
3784 if (!session)
3785 return VPPCOM_EBADFD;
3786 return vcl_session_is_connectable_listener (wrk, session);
3787}
3788
3789int
3790vppcom_session_listener (uint32_t session_handle)
3791{
3792 vcl_worker_t *wrk = vcl_worker_get_current ();
3793 vcl_session_t *listen_session, *session;
3794 session = vcl_session_get_w_handle (wrk, session_handle);
3795 if (!session)
3796 return VPPCOM_EBADFD;
3797 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3798 return VPPCOM_EBADFD;
3799 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3800 if (!listen_session)
3801 return VPPCOM_EBADFD;
3802 return vcl_session_handle (listen_session);
3803}
3804
3805int
3806vppcom_session_n_accepted (uint32_t session_handle)
3807{
3808 vcl_worker_t *wrk = vcl_worker_get_current ();
3809 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3810 if (!session)
3811 return VPPCOM_EBADFD;
3812 return session->n_accepted_sessions;
3813}
3814
Dave Wallacee22aa742017-10-20 12:30:38 -04003815/*
3816 * fd.io coding-style-patch-verification: ON
3817 *
3818 * Local Variables:
3819 * eval: (c-set-style "gnu")
3820 * End:
3821 */