blob: 8572b69aa13b05bad25a847088fd1f5e5c7dc1d1 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Dave Wallace33e002b2017-09-06 01:20:02 -04002 * Copyright (c) 2017 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 Wallace543852a2017-08-03 02:11:34 -040018#include <svm/svm_fifo_segment.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040019#include <vcl/vppcom.h>
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -080020#include <vcl/vcl_event.h>
Florin Coras0d427d82018-06-27 03:24:07 -070021#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070022#include <vcl/vcl_private.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040023
Florin Coras54693d22018-07-17 10:46:29 -070024static u8 not_ready;
25
26void
27sigsegv_signal (int signum)
28{
29 not_ready = 1;
30}
31
32static void
33vcl_wait_for_memory (void *mem)
34{
35 u8 __clib_unused test;
Florin Coras460dce62018-07-27 05:45:06 -070036 if (vcm->mounting_segment)
37 {
38 while (vcm->mounting_segment)
39 ;
40 return;
41 }
Florin Coras54693d22018-07-17 10:46:29 -070042 if (1 || vcm->debug)
43 {
Florin Coras460dce62018-07-27 05:45:06 -070044 usleep (1e5);
Florin Coras54693d22018-07-17 10:46:29 -070045 return;
46 }
47 if (signal (SIGSEGV, sigsegv_signal))
48 {
49 perror ("signal()");
50 return;
51 }
52 not_ready = 0;
53
54again:
55 test = *(u8 *) mem;
56 if (not_ready)
57 {
58 not_ready = 0;
59 usleep (1);
60 goto again;
61 }
62
63 signal (SIGSEGV, SIG_DFL);
64}
65
Dave Wallace543852a2017-08-03 02:11:34 -040066static const char *
67vppcom_app_state_str (app_state_t state)
68{
69 char *st;
70
71 switch (state)
72 {
73 case STATE_APP_START:
74 st = "STATE_APP_START";
75 break;
76
77 case STATE_APP_CONN_VPP:
78 st = "STATE_APP_CONN_VPP";
79 break;
80
81 case STATE_APP_ENABLED:
82 st = "STATE_APP_ENABLED";
83 break;
84
85 case STATE_APP_ATTACHED:
86 st = "STATE_APP_ATTACHED";
87 break;
88
89 default:
90 st = "UNKNOWN_APP_STATE";
91 break;
92 }
93
94 return st;
95}
96
Florin Coras697faea2018-06-27 17:10:49 -070097const char *
Dave Wallace543852a2017-08-03 02:11:34 -040098vppcom_session_state_str (session_state_t state)
99{
100 char *st;
101
102 switch (state)
103 {
104 case STATE_START:
105 st = "STATE_START";
106 break;
107
108 case STATE_CONNECT:
109 st = "STATE_CONNECT";
110 break;
111
112 case STATE_LISTEN:
113 st = "STATE_LISTEN";
114 break;
115
116 case STATE_ACCEPT:
117 st = "STATE_ACCEPT";
118 break;
119
Dave Wallace4878cbe2017-11-21 03:45:09 -0500120 case STATE_CLOSE_ON_EMPTY:
121 st = "STATE_CLOSE_ON_EMPTY";
122 break;
123
Dave Wallace543852a2017-08-03 02:11:34 -0400124 case STATE_DISCONNECT:
125 st = "STATE_DISCONNECT";
126 break;
127
128 case STATE_FAILED:
129 st = "STATE_FAILED";
130 break;
131
132 default:
133 st = "UNKNOWN_STATE";
134 break;
135 }
136
137 return st;
138}
139
Dave Wallace543852a2017-08-03 02:11:34 -0400140u8 *
141format_ip4_address (u8 * s, va_list * args)
142{
143 u8 *a = va_arg (*args, u8 *);
144 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
145}
146
147u8 *
148format_ip6_address (u8 * s, va_list * args)
149{
150 ip6_address_t *a = va_arg (*args, ip6_address_t *);
151 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
152
153 i_max_n_zero = ARRAY_LEN (a->as_u16);
154 max_n_zeros = 0;
155 i_first_zero = i_max_n_zero;
156 n_zeros = 0;
157 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
158 {
159 u32 is_zero = a->as_u16[i] == 0;
160 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
161 {
162 i_first_zero = i;
163 n_zeros = 0;
164 }
165 n_zeros += is_zero;
166 if ((!is_zero && n_zeros > max_n_zeros)
167 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
168 {
169 i_max_n_zero = i_first_zero;
170 max_n_zeros = n_zeros;
171 i_first_zero = ARRAY_LEN (a->as_u16);
172 n_zeros = 0;
173 }
174 }
175
176 last_double_colon = 0;
177 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
178 {
179 if (i == i_max_n_zero && max_n_zeros > 1)
180 {
181 s = format (s, "::");
182 i += max_n_zeros - 1;
183 last_double_colon = 1;
184 }
185 else
186 {
187 s = format (s, "%s%x",
188 (last_double_colon || i == 0) ? "" : ":",
189 clib_net_to_host_u16 (a->as_u16[i]));
190 last_double_colon = 0;
191 }
192 }
193
194 return s;
195}
196
197/* Format an IP46 address. */
198u8 *
199format_ip46_address (u8 * s, va_list * args)
200{
201 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
202 ip46_type_t type = va_arg (*args, ip46_type_t);
203 int is_ip4 = 1;
204
205 switch (type)
206 {
207 case IP46_TYPE_ANY:
208 is_ip4 = ip46_address_is_ip4 (ip46);
209 break;
210 case IP46_TYPE_IP4:
211 is_ip4 = 1;
212 break;
213 case IP46_TYPE_IP6:
214 is_ip4 = 0;
215 break;
216 }
217
218 return is_ip4 ?
219 format (s, "%U", format_ip4_address, &ip46->ip4) :
220 format (s, "%U", format_ip6_address, &ip46->ip6);
221}
222
Florin Coras697faea2018-06-27 17:10:49 -0700223/*
224 * VPPCOM Utility Functions
225 */
226
227static inline void
228vppcom_session_table_del_listener (u64 listener_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400229{
Florin Coras697faea2018-06-27 17:10:49 -0700230 listener_handle |= 1ULL << 63;
231 hash_unset (vcm->session_index_by_vpp_handles, listener_handle);
232}
233
234static inline int
235vppcom_wait_for_app_state_change (app_state_t app_state)
236{
237 f64 timeout = clib_time_now (&vcm->clib_time) + vcm->cfg.app_timeout;
238
239 while (clib_time_now (&vcm->clib_time) < timeout)
240 {
241 if (vcm->app_state == app_state)
242 return VPPCOM_OK;
243 }
244 VDBG (0, "VCL<%d>: timeout waiting for state %s (%d)", getpid (),
245 vppcom_app_state_str (app_state), app_state);
246 vcl_evt (VCL_EVT_SESSION_TIMEOUT, vcm, app_state);
247
248 return VPPCOM_ETIMEDOUT;
249}
250
Florin Coras54693d22018-07-17 10:46:29 -0700251static void
252vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
253 session_handle_t handle, int retval)
254{
255 app_session_evt_t _app_evt, *app_evt = &_app_evt;
256 session_accepted_reply_msg_t *rmp;
257 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
258 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
259 rmp->handle = handle;
260 rmp->context = context;
261 rmp->retval = retval;
262 app_send_ctrl_evt_to_vpp (mq, app_evt);
263}
264
Florin Coras99368312018-08-02 10:45:44 -0700265static void
266vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
267 session_handle_t handle, int retval)
268{
269 app_session_evt_t _app_evt, *app_evt = &_app_evt;
270 session_disconnected_reply_msg_t *rmp;
271 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
272 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
273 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
274 rmp->handle = handle;
275 rmp->context = context;
276 rmp->retval = retval;
277 app_send_ctrl_evt_to_vpp (mq, app_evt);
278}
279
Florin Coras54693d22018-07-17 10:46:29 -0700280static u32
281vcl_session_accepted_handler (session_accepted_msg_t * mp)
282{
283 vcl_session_t *session, *listen_session;
284 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700285 u32 session_index, vpp_wrk_index;
286 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700287
288 VCL_SESSION_LOCK ();
289
Florin Coras99368312018-08-02 10:45:44 -0700290 session = vcl_session_alloc ();
291 session_index = vcl_session_index (session);
292
Florin Coras54693d22018-07-17 10:46:29 -0700293 listen_session = vppcom_session_table_lookup_listener (mp->listener_handle);
294 if (!listen_session)
295 {
296 svm_msg_q_t *evt_q;
297 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
298 clib_warning ("VCL<%d>: ERROR: couldn't find listen session: "
299 "unknown vpp listener handle %llx",
300 getpid (), mp->listener_handle);
301 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
302 VNET_API_ERROR_INVALID_ARGUMENT);
Florin Coras99368312018-08-02 10:45:44 -0700303 vcl_session_free (session);
304 VCL_SESSION_UNLOCK ();
Florin Coras54693d22018-07-17 10:46:29 -0700305 return VCL_INVALID_SESSION_INDEX;
306 }
307
Florin Coras54693d22018-07-17 10:46:29 -0700308 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
309 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
310
311 if (mp->server_event_queue_address)
312 {
313 session->vpp_evt_q = uword_to_pointer (mp->client_event_queue_address,
314 svm_msg_q_t *);
315 session->our_evt_q = uword_to_pointer (mp->server_event_queue_address,
316 svm_msg_q_t *);
317 vcl_wait_for_memory (session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700318 rx_fifo->master_session_index = session_index;
319 tx_fifo->master_session_index = session_index;
Florin Coras99368312018-08-02 10:45:44 -0700320 vec_validate (vcm->vpp_event_queues, 0);
321 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
322 vcm->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700323 }
324 else
325 {
326 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
327 svm_msg_q_t *);
328 rx_fifo->client_session_index = session_index;
329 tx_fifo->client_session_index = session_index;
Florin Coras99368312018-08-02 10:45:44 -0700330
331 vpp_wrk_index = tx_fifo->master_thread_index;
332 vec_validate (vcm->vpp_event_queues, vpp_wrk_index);
333 vcm->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700334 }
335
336 session->vpp_handle = mp->handle;
337 session->client_context = mp->context;
338 session->rx_fifo = rx_fifo;
339 session->tx_fifo = tx_fifo;
340
341 session->session_state = STATE_ACCEPT;
342 session->transport.rmt_port = mp->port;
343 session->transport.is_ip4 = mp->is_ip4;
344 clib_memcpy (&session->transport.rmt_ip, mp->ip, sizeof (ip46_address_t));
345
346 hash_set (vcm->session_index_by_vpp_handles, mp->handle, session_index);
347 session->transport.lcl_port = listen_session->transport.lcl_port;
348 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700349 session->session_type = listen_session->session_type;
350 session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
Florin Coras54693d22018-07-17 10:46:29 -0700351
352 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
353 " address %U port %d queue %p!", getpid (), mp->handle, session_index,
354 mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
355 mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
356 clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
357 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
358
359 VCL_SESSION_UNLOCK ();
360 return session_index;
361}
362
363static u32
364vcl_session_connected_handler (session_connected_msg_t * mp)
365{
Florin Coras99368312018-08-02 10:45:44 -0700366 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700367 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700368 vcl_session_t *session = 0;
369 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700370 int rv = VPPCOM_OK;
371
372 session_index = mp->context;
373 VCL_SESSION_LOCK_AND_GET (session_index, &session);
374done:
375 if (mp->retval)
376 {
377 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
378 "connect failed! %U",
379 getpid (), mp->handle, session_index,
380 format_api_error, ntohl (mp->retval));
381 if (session)
382 {
383 session->session_state = STATE_FAILED;
384 session->vpp_handle = mp->handle;
385 }
386 else
387 {
388 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
389 "Invalid session index (%u)!",
390 getpid (), mp->handle, session_index);
391 }
392 goto done_unlock;
393 }
394
395 if (rv)
396 goto done_unlock;
397
Florin Coras460dce62018-07-27 05:45:06 -0700398 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
399 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
400 vcl_wait_for_memory (rx_fifo);
401 rx_fifo->client_session_index = session_index;
402 tx_fifo->client_session_index = session_index;
403
Florin Coras54693d22018-07-17 10:46:29 -0700404 if (mp->client_event_queue_address)
405 {
406 session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
407 svm_msg_q_t *);
408 session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
409 svm_msg_q_t *);
Florin Coras99368312018-08-02 10:45:44 -0700410
411 vec_validate (vcm->vpp_event_queues, 0);
412 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
413 vcm->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700414 }
415 else
Florin Coras99368312018-08-02 10:45:44 -0700416 {
417 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
418 svm_msg_q_t *);
419 vpp_wrk_index = tx_fifo->master_thread_index;
420 vec_validate (vcm->vpp_event_queues, vpp_wrk_index);
421 vcm->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
422 }
Florin Coras54693d22018-07-17 10:46:29 -0700423
Florin Coras54693d22018-07-17 10:46:29 -0700424 session->rx_fifo = rx_fifo;
425 session->tx_fifo = tx_fifo;
426 session->vpp_handle = mp->handle;
427 session->transport.is_ip4 = mp->is_ip4;
428 clib_memcpy (&session->transport.lcl_ip, mp->lcl_ip,
429 sizeof (session->transport.lcl_ip));
430 session->transport.lcl_port = mp->lcl_port;
431 session->session_state = STATE_CONNECT;
432
433 /* Add it to lookup table */
434 hash_set (vcm->session_index_by_vpp_handles, mp->handle, session_index);
435
436 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
437 "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
438 getpid (), mp->handle, session_index, session->rx_fifo,
439 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
440done_unlock:
441 VCL_SESSION_UNLOCK ();
442 return session_index;
443}
444
445int
446vcl_handle_mq_ctrl_event (session_event_t * e)
447{
448 session_accepted_msg_t *accepted_msg;
449 session_disconnected_msg_t *disconnected_msg;
450 vcl_session_msg_t *vcl_msg;
451 vcl_session_t *session;
452 u64 handle;
453 u32 sid;
454
455 switch (e->event_type)
456 {
457 case FIFO_EVENT_APP_RX:
458 clib_warning ("unhandled rx: sid %u (0x%x)",
459 e->fifo->client_session_index,
460 e->fifo->client_session_index);
461 break;
462 case SESSION_CTRL_EVT_ACCEPTED:
463 accepted_msg = (session_accepted_msg_t *) e->data;
464 handle = accepted_msg->listener_handle;
465 session = vppcom_session_table_lookup_listener (handle);
466 if (!session)
467 {
468 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
469 "listener handle %llx", getpid (), handle);
470 break;
471 }
472
473 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
474 vcl_msg->accepted_msg = *accepted_msg;
475 break;
476 case SESSION_CTRL_EVT_CONNECTED:
477 vcl_session_connected_handler ((session_connected_msg_t *) e->data);
478 break;
479 case SESSION_CTRL_EVT_DISCONNECTED:
480 disconnected_msg = (session_disconnected_msg_t *) e->data;
481 sid = vcl_session_get_index_from_handle (disconnected_msg->handle);
482 session = vcl_session_get (sid);
483 session->session_state = STATE_DISCONNECT;
484 VDBG (0, "disconnected %u", sid);
485 break;
486 default:
487 clib_warning ("unhandled %u", e->event_type);
488 }
489 return VPPCOM_OK;
490}
491
Florin Coras697faea2018-06-27 17:10:49 -0700492static inline int
493vppcom_wait_for_session_state_change (u32 session_index,
494 session_state_t state,
495 f64 wait_for_time)
496{
497 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
498 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700499 svm_msg_q_msg_t msg;
500 session_event_t *e;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800501 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400502
Florin Coras697faea2018-06-27 17:10:49 -0700503 do
Dave Wallace543852a2017-08-03 02:11:34 -0400504 {
Florin Coras697faea2018-06-27 17:10:49 -0700505 VCL_SESSION_LOCK ();
506 rv = vppcom_session_at_index (session_index, &session);
507 if (PREDICT_FALSE (rv))
508 {
509 VCL_SESSION_UNLOCK ();
510 return rv;
511 }
512 if (session->session_state & state)
513 {
514 VCL_SESSION_UNLOCK ();
515 return VPPCOM_OK;
516 }
517 if (session->session_state & STATE_FAILED)
518 {
519 VCL_SESSION_UNLOCK ();
520 return VPPCOM_ECONNREFUSED;
521 }
Dave Wallace7e607a72018-06-18 18:41:32 -0400522 VCL_SESSION_UNLOCK ();
Florin Coras54693d22018-07-17 10:46:29 -0700523
524 if (svm_msg_q_sub (vcm->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
525 continue;
526 e = svm_msg_q_msg_data (vcm->app_event_queue, &msg);
527 vcl_handle_mq_ctrl_event (e);
528 svm_msg_q_free_msg (vcm->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800529 }
Florin Coras697faea2018-06-27 17:10:49 -0700530 while (clib_time_now (&vcm->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800531
Florin Coras697faea2018-06-27 17:10:49 -0700532 VDBG (0, "VCL<%d>: timeout waiting for state 0x%x (%s)", getpid (), state,
533 vppcom_session_state_str (state));
534 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400535
Florin Coras697faea2018-06-27 17:10:49 -0700536 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500537}
538
Florin Coras697faea2018-06-27 17:10:49 -0700539static int
540vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400541{
Florin Coras697faea2018-06-27 17:10:49 -0700542 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400543
Florin Coras697faea2018-06-27 17:10:49 -0700544 if (vcm->app_state != STATE_APP_ENABLED)
545 {
546 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
547 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
548 if (PREDICT_FALSE (rv))
549 {
550 VDBG (0, "VCL<%d>: application session enable timed out! "
551 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
552 return rv;
553 }
554 }
555 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400556}
557
Florin Coras697faea2018-06-27 17:10:49 -0700558static int
559vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400560{
Florin Coras697faea2018-06-27 17:10:49 -0700561 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400562
Florin Coras697faea2018-06-27 17:10:49 -0700563 vppcom_app_send_attach ();
564 rv = vppcom_wait_for_app_state_change (STATE_APP_ATTACHED);
565 if (PREDICT_FALSE (rv))
566 {
567 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
568 getpid (), rv, vppcom_retval_str (rv));
569 return rv;
570 }
Dave Wallace543852a2017-08-03 02:11:34 -0400571
Florin Coras697faea2018-06-27 17:10:49 -0700572 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400573}
574
575static int
Dave Wallace543852a2017-08-03 02:11:34 -0400576vppcom_session_unbind (u32 session_index)
577{
Florin Coras7e12d942018-06-27 14:32:43 -0700578 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400579 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500580 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400581
Dave Wallace7e607a72018-06-18 18:41:32 -0400582 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500583
584 vpp_handle = session->vpp_handle;
585 vppcom_session_table_del_listener (vpp_handle);
586 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700587 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500588
Dave Wallace7e607a72018-06-18 18:41:32 -0400589 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400590
Florin Coras0d427d82018-06-27 03:24:07 -0700591 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
592 " 0x%x (%s)", getpid (), vpp_handle, session_index, STATE_DISCONNECT,
593 vppcom_session_state_str (STATE_DISCONNECT));
594 vcl_evt (VCL_EVT_UNBIND, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500595 vppcom_send_unbind_sock (vpp_handle);
596
597done:
598 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400599}
600
Florin Coras99368312018-08-02 10:45:44 -0700601static svm_msg_q_t *
602vcl_session_vpp_evt_q (vcl_session_t * s)
603{
604 if (vcl_session_is_ct (s))
605 return vcm->vpp_event_queues[0];
606 else
607 return vcm->vpp_event_queues[s->tx_fifo->master_thread_index];
608}
609
Florin Coras697faea2018-06-27 17:10:49 -0700610static int
Dave Wallace543852a2017-08-03 02:11:34 -0400611vppcom_session_disconnect (u32 session_index)
612{
Florin Coras99368312018-08-02 10:45:44 -0700613 svm_msg_q_t *vpp_evt_q;
Florin Coras7e12d942018-06-27 14:32:43 -0700614 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500615 session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -0700616 u64 vpp_handle;
617 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400618
Dave Wallace7e607a72018-06-18 18:41:32 -0400619 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500620
621 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700622 state = session->session_state;
Dave Wallace7e607a72018-06-18 18:41:32 -0400623 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500624
Florin Coras0d427d82018-06-27 03:24:07 -0700625 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
626 vpp_handle, session_index, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400627
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800628 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400629 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500630 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500631 "Cannot disconnect a listen socket!",
632 getpid (), vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500633 rv = VPPCOM_EBADFD;
634 goto done;
635 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400636
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800637 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500638 {
Florin Coras99368312018-08-02 10:45:44 -0700639 vpp_evt_q = vcl_session_vpp_evt_q (session);
640 vcl_send_session_disconnected_reply (vpp_evt_q, vcm->my_client_index,
641 vpp_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700642 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
643 "REPLY...", getpid (), vpp_handle, session_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400644 }
645 else
Dave Wallace227867f2017-11-13 21:21:53 -0500646 {
Florin Coras0d427d82018-06-27 03:24:07 -0700647 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
648 getpid (), vpp_handle, session_index);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800649 vppcom_send_disconnect_session (vpp_handle, session_index);
Dave Wallace227867f2017-11-13 21:21:53 -0500650 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400651
Dave Wallace4878cbe2017-11-21 03:45:09 -0500652done:
653 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400654}
655
Dave Wallace543852a2017-08-03 02:11:34 -0400656/*
657 * VPPCOM Public API functions
658 */
659int
660vppcom_app_create (char *app_name)
661{
Dave Wallace543852a2017-08-03 02:11:34 -0400662 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400663 int rv;
664
665 if (!vcm->init)
666 {
Dave Wallace543852a2017-08-03 02:11:34 -0400667 vcm->init = 1;
Dave Barach6a5adc32018-07-04 10:56:23 -0400668 vppcom_cfg (&vcm->cfg);
Florin Coras99368312018-08-02 10:45:44 -0700669 vcl_cfg = &vcm->cfg;
670
671 vcm->mqs_epfd = -1;
672 if (vcl_cfg->use_mq_eventfd)
673 vcm->mqs_epfd = epoll_create (1);
Dave Barach6a5adc32018-07-04 10:56:23 -0400674
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800675 clib_spinlock_init (&vcm->session_fifo_lockp);
Dave Wallace2e005bb2017-11-07 01:21:39 -0500676 clib_fifo_validate (vcm->client_session_index_fifo,
677 vcm->cfg.listen_queue_size);
Florin Coras697faea2018-06-27 17:10:49 -0700678 clib_spinlock_init (&vcm->sessions_lockp);
Dave Wallaceb5a86ee2018-02-16 18:26:11 -0500679
Dave Wallace8af20542017-10-26 03:29:30 -0400680
Dave Wallace543852a2017-08-03 02:11:34 -0400681 vcm->main_cpu = os_get_thread_index ();
Dave Wallace543852a2017-08-03 02:11:34 -0400682
683 vcm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
Florin Coras99368312018-08-02 10:45:44 -0700684 vcm->ct_registration_by_mq = hash_create (0, sizeof (uword));
685 clib_spinlock_init (&vcm->ct_registration_lock);
Dave Wallace543852a2017-08-03 02:11:34 -0400686
687 clib_time_init (&vcm->clib_time);
688 vppcom_init_error_string_table ();
Florin Corasa332c462018-01-31 06:52:17 -0800689 svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
690 20 /* timeout in secs */ );
Florin Coras99368312018-08-02 10:45:44 -0700691 vec_validate (vcm->mq_events, 64);
692 vec_validate (vcm->mq_msg_vector, 128);
693 vec_reset_length (vcm->mq_msg_vector);
Dave Wallace543852a2017-08-03 02:11:34 -0400694 }
695
696 if (vcm->my_client_index == ~0)
697 {
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800698 /* API hookup and connect to VPP */
Dave Wallace048b1d62018-01-03 22:24:41 -0500699 vppcom_api_hookup ();
Florin Coras0d427d82018-06-27 03:24:07 -0700700 vcl_elog_init (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400701 vcm->app_state = STATE_APP_START;
702 rv = vppcom_connect_to_vpp (app_name);
703 if (rv)
704 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500705 clib_warning ("VCL<%d>: ERROR: couldn't connect to VPP!",
Dave Wallace2e005bb2017-11-07 01:21:39 -0500706 getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400707 return rv;
708 }
709
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800710 /* State event handling thread */
711
712 rv = vce_start_event_thread (&(vcm->event_thread), 20);
713
Florin Coras0d427d82018-06-27 03:24:07 -0700714 VDBG (0, "VCL<%d>: sending session enable", getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400715
Dave Wallace048b1d62018-01-03 22:24:41 -0500716 rv = vppcom_app_session_enable ();
Dave Wallace543852a2017-08-03 02:11:34 -0400717 if (rv)
718 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500719 clib_warning ("VCL<%d>: ERROR: vppcom_app_session_enable() "
720 "failed!", getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400721 return rv;
722 }
Dave Wallace543852a2017-08-03 02:11:34 -0400723
Florin Coras0d427d82018-06-27 03:24:07 -0700724 VDBG (0, "VCL<%d>: sending app attach", getpid ());
Dave Wallace048b1d62018-01-03 22:24:41 -0500725
726 rv = vppcom_app_attach ();
727 if (rv)
728 {
729 clib_warning ("VCL<%d>: ERROR: vppcom_app_attach() failed!",
730 getpid ());
731 return rv;
732 }
733
Florin Coras0d427d82018-06-27 03:24:07 -0700734 VDBG (0, "VCL<%d>: app_name '%s', my_client_index %d (0x%x)",
735 getpid (), app_name, vcm->my_client_index, vcm->my_client_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400736 }
Dave Wallace543852a2017-08-03 02:11:34 -0400737
738 return VPPCOM_OK;
739}
740
741void
742vppcom_app_destroy (void)
743{
Dave Wallace543852a2017-08-03 02:11:34 -0400744 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400745 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400746
747 if (vcm->my_client_index == ~0)
748 return;
749
Florin Coras0d427d82018-06-27 03:24:07 -0700750 VDBG (0, "VCL<%d>: detaching from VPP, my_client_index %d (0x%x)",
751 getpid (), vcm->my_client_index, vcm->my_client_index);
752 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800753
Florin Coras697faea2018-06-27 17:10:49 -0700754 vppcom_app_send_detach ();
Dave Wallacede910062018-03-20 09:22:13 -0400755 orig_app_timeout = vcm->cfg.app_timeout;
756 vcm->cfg.app_timeout = 2.0;
Dave Wallace543852a2017-08-03 02:11:34 -0400757 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
Dave Wallacede910062018-03-20 09:22:13 -0400758 vcm->cfg.app_timeout = orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400759 if (PREDICT_FALSE (rv))
Florin Coras0d427d82018-06-27 03:24:07 -0700760 VDBG (0, "VCL<%d>: application detach timed out! returning %d (%s)",
761 getpid (), rv, vppcom_retval_str (rv));
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800762
Florin Coras0d427d82018-06-27 03:24:07 -0700763 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400764 vl_client_disconnect_from_vlib ();
765 vcm->my_client_index = ~0;
766 vcm->app_state = STATE_APP_START;
767}
768
769int
Dave Wallacec04cbf12018-02-07 18:14:02 -0500770vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -0400771{
Florin Coras7e12d942018-06-27 14:32:43 -0700772 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -0400773 u32 session_index;
774
Dave Wallace7e607a72018-06-18 18:41:32 -0400775 VCL_SESSION_LOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400776 pool_get (vcm->sessions, session);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400777 memset (session, 0, sizeof (*session));
Dave Wallace543852a2017-08-03 02:11:34 -0400778 session_index = session - vcm->sessions;
779
Florin Coras7e12d942018-06-27 14:32:43 -0700780 session->session_type = proto;
781 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500782 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -0700783 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -0400784
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800785 if (is_nonblocking)
786 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -0400787
Florin Coras7e12d942018-06-27 14:32:43 -0700788 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
789 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800790
Dave Wallace7e607a72018-06-18 18:41:32 -0400791 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800792
Florin Coras0d427d82018-06-27 03:24:07 -0700793 VDBG (0, "VCL<%d>: sid %u", getpid (), session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800794
Dave Wallace543852a2017-08-03 02:11:34 -0400795 return (int) session_index;
796}
797
798int
799vppcom_session_close (uint32_t session_index)
800{
Florin Coras7e12d942018-06-27 14:32:43 -0700801 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400802 int rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400803 u8 is_vep;
804 u8 is_vep_session;
805 u32 next_sid;
806 u32 vep_idx;
Dave Wallaceee45d412017-11-24 21:44:06 -0500807 u64 vpp_handle;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500808 uword *p;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400809 session_state_t state;
Dave Wallace543852a2017-08-03 02:11:34 -0400810
Dave Wallace7e607a72018-06-18 18:41:32 -0400811 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400812 is_vep = session->is_vep;
813 is_vep_session = session->is_vep_session;
814 next_sid = session->vep.next_sid;
815 vep_idx = session->vep.vep_idx;
Florin Coras7e12d942018-06-27 14:32:43 -0700816 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -0500817 vpp_handle = session->vpp_handle;
Dave Wallace7e607a72018-06-18 18:41:32 -0400818 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400819
820 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500821 {
822 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500823 clib_warning ("VCL<%d>: vep_idx %u / sid %u: "
824 "closing epoll session...",
Dave Wallaceee45d412017-11-24 21:44:06 -0500825 getpid (), session_index, session_index);
826 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500827 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %d: "
828 "closing session...",
Dave Wallaceee45d412017-11-24 21:44:06 -0500829 getpid (), vpp_handle, session_index);
830 }
Dave Wallace543852a2017-08-03 02:11:34 -0400831
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400832 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -0400833 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400834 while (next_sid != ~0)
Dave Wallace19481612017-09-15 18:47:44 -0400835 {
Dave Wallacef7f809c2017-10-03 01:48:42 -0400836 rv = vppcom_epoll_ctl (session_index, EPOLL_CTL_DEL, next_sid, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700837 if (PREDICT_FALSE (rv < 0))
838 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
839 "vep_idx %u failed! rv %d (%s)",
840 getpid (), vpp_handle, next_sid, vep_idx,
841 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400842
Dave Wallace7e607a72018-06-18 18:41:32 -0400843 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400844 next_sid = session->vep.next_sid;
Dave Wallace7e607a72018-06-18 18:41:32 -0400845 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -0400846 }
847 }
848 else
849 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400850 if (is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400851 {
Dave Wallacef7f809c2017-10-03 01:48:42 -0400852 rv = vppcom_epoll_ctl (vep_idx, EPOLL_CTL_DEL, session_index, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700853 if (rv < 0)
854 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
855 "vep_idx %u failed! rv %d (%s)",
856 getpid (), vpp_handle, session_index,
857 vep_idx, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400858 }
859
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800860 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400861 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800862 rv = vppcom_session_unbind (session_index);
863 if (PREDICT_FALSE (rv < 0))
Florin Coras0d427d82018-06-27 03:24:07 -0700864 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: listener unbind "
865 "failed! rv %d (%s)",
866 getpid (), vpp_handle, session_index,
867 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400868 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500869 else if (state & (CLIENT_STATE_OPEN | SERVER_STATE_OPEN))
Dave Wallacef7f809c2017-10-03 01:48:42 -0400870 {
Dave Wallace4878cbe2017-11-21 03:45:09 -0500871 rv = vppcom_session_disconnect (session_index);
872 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -0500873 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500874 "session disconnect failed! rv %d (%s)",
875 getpid (), vpp_handle, session_index,
876 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400877 }
Dave Wallace19481612017-09-15 18:47:44 -0400878 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500879
Dave Wallace7e607a72018-06-18 18:41:32 -0400880 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Florin Coras99368312018-08-02 10:45:44 -0700881 if (vcl_session_is_ct (session))
882 {
883 vcl_cut_through_registration_t *ctr;
884 uword mq_addr;
885
886 mq_addr = pointer_to_uword (session->our_evt_q);
887 ctr = vcl_ct_registration_lock_and_lookup (mq_addr);
888 ASSERT (ctr);
889 if (ctr->epoll_evt_conn_index != ~0)
890 vcl_mq_epoll_del_evfd (ctr->epoll_evt_conn_index);
891 VDBG (0, "Removing ct registration %u",
892 vcl_ct_registration_index (ctr));
893 vcl_ct_registration_del (ctr);
894 vcl_ct_registration_unlock ();
895 }
Florin Coras54693d22018-07-17 10:46:29 -0700896
Dave Wallaceee45d412017-11-24 21:44:06 -0500897 vpp_handle = session->vpp_handle;
898 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500899 {
Dave Wallaceee45d412017-11-24 21:44:06 -0500900 p = hash_get (vcm->session_index_by_vpp_handles, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500901 if (p)
Dave Wallaceee45d412017-11-24 21:44:06 -0500902 hash_unset (vcm->session_index_by_vpp_handles, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500903 }
Dave Wallace543852a2017-08-03 02:11:34 -0400904 pool_put_index (vcm->sessions, session_index);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800905
Dave Wallace7e607a72018-06-18 18:41:32 -0400906 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500907
908 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500909 {
910 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500911 clib_warning ("VCL<%d>: vep_idx %u / sid %u: epoll session removed.",
Dave Wallaceee45d412017-11-24 21:44:06 -0500912 getpid (), session_index, session_index);
913 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500914 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: session removed.",
Dave Wallaceee45d412017-11-24 21:44:06 -0500915 getpid (), vpp_handle, session_index);
916 }
Dave Wallacef7f809c2017-10-03 01:48:42 -0400917done:
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800918
Florin Coras0d427d82018-06-27 03:24:07 -0700919 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800920
Dave Wallace543852a2017-08-03 02:11:34 -0400921 return rv;
922}
923
924int
925vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep)
926{
Florin Coras7e12d942018-06-27 14:32:43 -0700927 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400928 int rv;
929
930 if (!ep || !ep->ip)
931 return VPPCOM_EINVAL;
932
Dave Wallace7e607a72018-06-18 18:41:32 -0400933 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace543852a2017-08-03 02:11:34 -0400934
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400935 if (session->is_vep)
936 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400937 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -0500938 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
939 "bind to an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500940 rv = VPPCOM_EBADFD;
941 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400942 }
943
Florin Coras7e12d942018-06-27 14:32:43 -0700944 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -0700945 if (ep->is_ip4)
946 clib_memcpy (&session->transport.lcl_ip.ip4, ep->ip,
947 sizeof (ip4_address_t));
948 else
949 clib_memcpy (&session->transport.lcl_ip.ip6, ep->ip,
950 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -0700951 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -0700952
Florin Coras0d427d82018-06-27 03:24:07 -0700953 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
954 "proto %s", getpid (), session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700955 session->transport.is_ip4 ? "IPv4" : "IPv6",
956 format_ip46_address, &session->transport.lcl_ip,
957 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
958 clib_net_to_host_u16 (session->transport.lcl_port),
959 session->session_type ? "UDP" : "TCP");
Florin Coras0d427d82018-06-27 03:24:07 -0700960 vcl_evt (VCL_EVT_BIND, session);
Dave Wallace7e607a72018-06-18 18:41:32 -0400961 VCL_SESSION_UNLOCK ();
Florin Coras460dce62018-07-27 05:45:06 -0700962
963 if (session->session_type == VPPCOM_PROTO_UDP)
964 vppcom_session_listen (session_index, 10);
965
Dave Wallace4878cbe2017-11-21 03:45:09 -0500966done:
967 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400968}
969
970int
Dave Wallace33e002b2017-09-06 01:20:02 -0400971vppcom_session_listen (uint32_t listen_session_index, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -0400972{
Florin Coras7e12d942018-06-27 14:32:43 -0700973 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -0500974 u64 listen_vpp_handle;
975 int rv, retval;
Dave Wallace543852a2017-08-03 02:11:34 -0400976
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -0800977 if (q_len == 0 || q_len == ~0)
978 q_len = vcm->cfg.listen_queue_size;
979
Dave Wallace7e607a72018-06-18 18:41:32 -0400980 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -0400981
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400982 if (listen_session->is_vep)
983 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400984 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -0500985 clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
Dave Wallace4878cbe2017-11-21 03:45:09 -0500986 "epoll session!", getpid (), listen_session_index);
987 rv = VPPCOM_EBADFD;
988 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400989 }
990
Dave Wallaceee45d412017-11-24 21:44:06 -0500991 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700992 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -0400993 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400994 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -0700995 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
996 getpid (), listen_vpp_handle, listen_session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500997 rv = VPPCOM_OK;
998 goto done;
Dave Wallacee695cb42017-11-02 22:04:42 -0400999 }
1000
Florin Coras0d427d82018-06-27 03:24:07 -07001001 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
1002 "request...", getpid (), listen_vpp_handle, listen_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001003
Dave Wallace4878cbe2017-11-21 03:45:09 -05001004 vppcom_send_bind_sock (listen_session, listen_session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001005 VCL_SESSION_UNLOCK ();
Florin Coras54693d22018-07-17 10:46:29 -07001006 retval = vppcom_wait_for_session_state_change (listen_session_index,
1007 STATE_LISTEN,
1008 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001009
Dave Wallace7e607a72018-06-18 18:41:32 -04001010 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Dave Wallaceee45d412017-11-24 21:44:06 -05001011 if (PREDICT_FALSE (retval))
1012 {
Florin Coras0d427d82018-06-27 03:24:07 -07001013 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
1014 "returning %d (%s)", getpid (), listen_session->vpp_handle,
1015 listen_session_index, retval, vppcom_retval_str (retval));
Dave Wallace7e607a72018-06-18 18:41:32 -04001016 VCL_SESSION_UNLOCK ();
Dave Wallaceee45d412017-11-24 21:44:06 -05001017 rv = retval;
1018 goto done;
1019 }
1020
Dave Wallace7e607a72018-06-18 18:41:32 -04001021 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001022
1023done:
1024 return rv;
1025}
1026
1027int
Florin Coras7e12d942018-06-27 14:32:43 -07001028validate_args_session_accept_ (vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001029{
1030 u32 listen_session_index = listen_session - vcm->sessions;
1031
1032 /* Input validation - expects spinlock on sessions_lockp */
1033 if (listen_session->is_vep)
1034 {
1035 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
1036 "epoll session!", getpid (), listen_session_index);
1037 return VPPCOM_EBADFD;
1038 }
1039
Florin Coras7e12d942018-06-27 14:32:43 -07001040 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001041 {
1042 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1043 "not in listen state! state 0x%x (%s)", getpid (),
1044 listen_session->vpp_handle, listen_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001045 listen_session->session_state,
1046 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001047 return VPPCOM_EBADFD;
1048 }
1049 return VPPCOM_OK;
1050}
1051
1052int
Dave Wallace543852a2017-08-03 02:11:34 -04001053vppcom_session_accept (uint32_t listen_session_index, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001054 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001055{
Florin Coras54693d22018-07-17 10:46:29 -07001056 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001057 vcl_session_t *listen_session = 0;
1058 vcl_session_t *client_session = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001059 u32 client_session_index = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07001060 svm_msg_q_t *vpp_evt_q;
1061 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001062 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001063 svm_msg_q_msg_t msg;
1064 session_event_t *e;
1065 u8 is_nonblocking;
1066 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001067
Dave Wallace7e607a72018-06-18 18:41:32 -04001068 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001069
Florin Coras54693d22018-07-17 10:46:29 -07001070 if (validate_args_session_accept_ (listen_session))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001071 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001072 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -05001073 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001074 }
1075
Dave Wallace7e607a72018-06-18 18:41:32 -04001076 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -04001077
Florin Coras54693d22018-07-17 10:46:29 -07001078 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001079 {
Florin Coras54693d22018-07-17 10:46:29 -07001080 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1081 accepted_msg = evt->accepted_msg;
1082 goto handle;
1083 }
1084
1085 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1086 VCL_SESS_ATTR_NONBLOCK);
1087 if (svm_msg_q_is_empty (vcm->app_event_queue) && is_nonblocking)
1088 return VPPCOM_EAGAIN;
1089
1090 while (1)
1091 {
1092 if (svm_msg_q_sub (vcm->app_event_queue, &msg, SVM_Q_WAIT, 0))
1093 return VPPCOM_EAGAIN;
1094
1095 e = svm_msg_q_msg_data (vcm->app_event_queue, &msg);
1096 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001097 {
Florin Coras54693d22018-07-17 10:46:29 -07001098 clib_warning ("discarded event: %u", e->event_type);
1099 svm_msg_q_free_msg (vcm->app_event_queue, &msg);
1100 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001101 }
Florin Coras54693d22018-07-17 10:46:29 -07001102 clib_memcpy (&accepted_msg, e->data, sizeof (accepted_msg));
1103 svm_msg_q_free_msg (vcm->app_event_queue, &msg);
1104 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001105 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001106
Florin Coras54693d22018-07-17 10:46:29 -07001107handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001108
Florin Coras54693d22018-07-17 10:46:29 -07001109 client_session_index = vcl_session_accepted_handler (&accepted_msg);
Florin Coras99368312018-08-02 10:45:44 -07001110 listen_session = vcl_session_get (listen_session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001111 VCL_SESSION_LOCK_AND_GET (client_session_index, &client_session);
1112 rv = client_session_index;
Dave Wallace543852a2017-08-03 02:11:34 -04001113
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001114 if (flags & O_NONBLOCK)
1115 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001116
Florin Coras54693d22018-07-17 10:46:29 -07001117 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras0d427d82018-06-27 03:24:07 -07001118 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
1119 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
1120 getpid (), listen_vpp_handle, listen_session_index,
1121 client_session->vpp_handle, client_session_index,
1122 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1123 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001124
Dave Wallace048b1d62018-01-03 22:24:41 -05001125 if (ep)
1126 {
Florin Coras7e12d942018-06-27 14:32:43 -07001127 ep->is_ip4 = client_session->transport.is_ip4;
1128 ep->port = client_session->transport.rmt_port;
1129 if (client_session->transport.is_ip4)
1130 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip4,
Dave Wallace048b1d62018-01-03 22:24:41 -05001131 sizeof (ip4_address_t));
1132 else
Florin Coras7e12d942018-06-27 14:32:43 -07001133 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip6,
Dave Wallace048b1d62018-01-03 22:24:41 -05001134 sizeof (ip6_address_t));
1135 }
Dave Wallace60caa062017-11-10 17:07:13 -05001136
Florin Coras54693d22018-07-17 10:46:29 -07001137 if (accepted_msg.server_event_queue_address)
1138 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1139 svm_msg_q_t *);
1140 else
1141 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001142
Florin Coras54693d22018-07-17 10:46:29 -07001143 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1144 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001145
Florin Coras54693d22018-07-17 10:46:29 -07001146 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx, "
1147 "sid %u connection from peer %s address %U port %u to local %s "
1148 "address %U port %u", getpid (), listen_vpp_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001149 listen_session_index, client_session->vpp_handle,
1150 client_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001151 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1152 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001153 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001154 clib_net_to_host_u16 (client_session->transport.rmt_port),
1155 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1156 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001157 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001158 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001159 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1160 client_session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001161 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001162
Dave Wallace4878cbe2017-11-21 03:45:09 -05001163done:
1164 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001165}
1166
1167int
1168vppcom_session_connect (uint32_t session_index, vppcom_endpt_t * server_ep)
1169{
Florin Coras7e12d942018-06-27 14:32:43 -07001170 vcl_session_t *session = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001171 u64 vpp_handle = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001172 int rv, retval = VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001173
Dave Wallace7e607a72018-06-18 18:41:32 -04001174 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001175
1176 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001177 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001178 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05001179 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
1180 "connect on an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001181 rv = VPPCOM_EBADFD;
1182 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001183 }
1184
Florin Coras7e12d942018-06-27 14:32:43 -07001185 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001186 {
Florin Coras0d427d82018-06-27 03:24:07 -07001187 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1188 "connected to %s %U port %d proto %s, state 0x%x (%s)",
1189 getpid (), session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001190 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001191 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001192 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001193 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001194 clib_net_to_host_u16 (session->transport.rmt_port),
1195 session->session_type ? "UDP" : "TCP", session->session_state,
1196 vppcom_session_state_str (session->session_state));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001197
Dave Wallace7e607a72018-06-18 18:41:32 -04001198 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -05001199 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001200 }
1201
Florin Coras7e12d942018-06-27 14:32:43 -07001202 session->transport.is_ip4 = server_ep->is_ip4;
1203 if (session->transport.is_ip4)
1204 clib_memcpy (&session->transport.rmt_ip.ip4, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -04001205 sizeof (ip4_address_t));
1206 else
Florin Coras7e12d942018-06-27 14:32:43 -07001207 clib_memcpy (&session->transport.rmt_ip.ip6, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -04001208 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001209 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001210
Florin Coras0d427d82018-06-27 03:24:07 -07001211 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1212 "port %d proto %s",
1213 getpid (), session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001214 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001215 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001216 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001217 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001218 clib_net_to_host_u16 (session->transport.rmt_port),
1219 session->session_type ? "UDP" : "TCP");
Dave Wallace543852a2017-08-03 02:11:34 -04001220
1221 vppcom_send_connect_sock (session, session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001222 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -05001223
Florin Coras54693d22018-07-17 10:46:29 -07001224 retval = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1225 vcm->cfg.session_timeout);
Dave Wallaceee45d412017-11-24 21:44:06 -05001226
Dave Wallace7e607a72018-06-18 18:41:32 -04001227 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallaceee45d412017-11-24 21:44:06 -05001228 vpp_handle = session->vpp_handle;
Dave Wallace7e607a72018-06-18 18:41:32 -04001229 VCL_SESSION_UNLOCK ();
Dave Wallace7876d392017-10-19 03:53:57 -04001230
Dave Wallace4878cbe2017-11-21 03:45:09 -05001231done:
Dave Wallaceee45d412017-11-24 21:44:06 -05001232 if (PREDICT_FALSE (retval))
1233 {
1234 rv = retval;
1235 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001236 {
1237 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001238 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
1239 "failed! returning %d (%s)", getpid (), vpp_handle,
1240 session_index, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001241 else
1242 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1243 "returning %d (%s)", getpid (),
1244 session_index, rv, vppcom_retval_str (rv));
1245 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001246 }
Florin Coras0d427d82018-06-27 03:24:07 -07001247 else
1248 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
1249 getpid (), vpp_handle, session_index);
Dave Wallaceee45d412017-11-24 21:44:06 -05001250
Dave Wallace4878cbe2017-11-21 03:45:09 -05001251 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001252}
1253
Florin Coras54693d22018-07-17 10:46:29 -07001254static u8
1255vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1256{
1257 if (!is_ct)
1258 return (e->event_type == FIFO_EVENT_APP_RX
1259 && e->fifo->client_session_index == sid);
1260 else
1261 return (e->event_type == SESSION_IO_EVT_CT_TX);
1262}
1263
Florin Coras460dce62018-07-27 05:45:06 -07001264static inline u8
1265vcl_session_is_readable (vcl_session_t * s)
1266{
1267 return ((s->session_state & STATE_OPEN)
1268 || (s->session_state == STATE_LISTEN
1269 && s->session_type == VPPCOM_PROTO_UDP));
1270}
1271
Steven58f464e2017-10-25 12:33:12 -07001272static inline int
1273vppcom_session_read_internal (uint32_t session_index, void *buf, int n,
1274 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001275{
Florin Coras54693d22018-07-17 10:46:29 -07001276 int n_read = 0, rv, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001277 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001278 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001279 svm_msg_q_msg_t msg;
1280 session_event_t *e;
1281 svm_msg_q_t *mq;
1282 u8 is_full;
Dave Wallace543852a2017-08-03 02:11:34 -04001283
1284 ASSERT (buf);
1285
Florin Coras460dce62018-07-27 05:45:06 -07001286 VCL_SESSION_LOCK_AND_GET (session_index, &s);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001287
Florin Coras460dce62018-07-27 05:45:06 -07001288 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001289 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001290 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05001291 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
1292 "read from an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001293 rv = VPPCOM_EBADFD;
1294 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001295 }
1296
Florin Coras460dce62018-07-27 05:45:06 -07001297 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1298 rx_fifo = s->rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001299
Florin Coras460dce62018-07-27 05:45:06 -07001300 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001301 {
Florin Coras460dce62018-07-27 05:45:06 -07001302 session_state_t state = s->session_state;
Dave Wallace7e607a72018-06-18 18:41:32 -04001303 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001304 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001305
Florin Coras0d427d82018-06-27 03:24:07 -07001306 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1307 "state 0x%x (%s), returning %d (%s)",
Florin Coras460dce62018-07-27 05:45:06 -07001308 getpid (), s->vpp_handle, session_index, state,
Florin Coras0d427d82018-06-27 03:24:07 -07001309 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001310 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001311 }
1312
Dave Wallace7e607a72018-06-18 18:41:32 -04001313 VCL_SESSION_UNLOCK ();
Florin Coras460dce62018-07-27 05:45:06 -07001314 mq = vcl_session_is_ct (s) ? s->our_evt_q : vcm->app_event_queue;
Florin Coras99368312018-08-02 10:45:44 -07001315 svm_fifo_unset_event (rx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001316 is_full = svm_fifo_is_full (rx_fifo);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001317
Florin Coras54693d22018-07-17 10:46:29 -07001318 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001319 {
Florin Coras54693d22018-07-17 10:46:29 -07001320 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001321 {
Florin Coras54693d22018-07-17 10:46:29 -07001322 rv = VPPCOM_OK;
1323 goto done;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001324 }
Florin Coras54693d22018-07-17 10:46:29 -07001325 while (1)
1326 {
Florin Coras99368312018-08-02 10:45:44 -07001327 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001328 if (svm_msg_q_is_empty (mq))
1329 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001330
Florin Coras54693d22018-07-17 10:46:29 -07001331 svm_msg_q_sub_w_lock (mq, &msg);
1332 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001333 svm_msg_q_unlock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001334 if (!vcl_is_rx_evt_for_session (e, session_index,
Florin Coras460dce62018-07-27 05:45:06 -07001335 s->our_evt_q != 0))
Florin Coras54693d22018-07-17 10:46:29 -07001336 {
1337 vcl_handle_mq_ctrl_event (e);
1338 svm_msg_q_free_msg (mq, &msg);
1339 continue;
1340 }
Florin Coras99368312018-08-02 10:45:44 -07001341 svm_fifo_unset_event (rx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001342 if (svm_fifo_is_empty (rx_fifo))
1343 {
1344 svm_msg_q_free_msg (mq, &msg);
1345 continue;
1346 }
1347 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001348 break;
1349 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001350 }
Florin Coras54693d22018-07-17 10:46:29 -07001351
Florin Coras460dce62018-07-27 05:45:06 -07001352 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001353 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001354 else
Florin Coras99368312018-08-02 10:45:44 -07001355 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001356
Florin Coras460dce62018-07-27 05:45:06 -07001357 if (vcl_session_is_ct (s) && is_full)
Florin Coras99368312018-08-02 10:45:44 -07001358 {
1359 /* If the peer is not polling send notification */
1360 if (!svm_fifo_has_event (s->rx_fifo))
1361 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1362 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1363 }
Florin Coras54693d22018-07-17 10:46:29 -07001364
Dave Wallace4878cbe2017-11-21 03:45:09 -05001365 if (VPPCOM_DEBUG > 2)
1366 {
Florin Coras54693d22018-07-17 10:46:29 -07001367 if (n_read > 0)
Dave Wallace048b1d62018-01-03 22:24:41 -05001368 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes "
Florin Coras460dce62018-07-27 05:45:06 -07001369 "from (%p)", getpid (), s->vpp_handle,
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001370 session_index, n_read, rx_fifo);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001371 else
Dave Wallace048b1d62018-01-03 22:24:41 -05001372 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: nothing read! "
Florin Coras460dce62018-07-27 05:45:06 -07001373 "returning %d (%s)", getpid (), s->vpp_handle,
Dave Wallaceee45d412017-11-24 21:44:06 -05001374 session_index, rv, vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001375 }
Florin Coras54693d22018-07-17 10:46:29 -07001376 return n_read;
1377
Dave Wallace4878cbe2017-11-21 03:45:09 -05001378done:
1379 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001380}
1381
Steven58f464e2017-10-25 12:33:12 -07001382int
Dave Wallace048b1d62018-01-03 22:24:41 -05001383vppcom_session_read (uint32_t session_index, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001384{
1385 return (vppcom_session_read_internal (session_index, buf, n, 0));
1386}
1387
1388static int
1389vppcom_session_peek (uint32_t session_index, void *buf, int n)
1390{
1391 return (vppcom_session_read_internal (session_index, buf, n, 1));
1392}
1393
Dave Wallace543852a2017-08-03 02:11:34 -04001394static inline int
Florin Coras54693d22018-07-17 10:46:29 -07001395vppcom_session_read_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001396{
Dave Wallace543852a2017-08-03 02:11:34 -04001397 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001398 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001399 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001400 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Florin Coras54693d22018-07-17 10:46:29 -07001401 "epoll session!", getpid (), vcl_session_index (session));
1402 return VPPCOM_EBADFD;
1403 }
1404
1405 if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1406 {
1407 session_state_t state = session->session_state;
1408 int rv;
1409
1410 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1411
1412 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1413 " state 0x%x (%s), returning %d (%s)", getpid (),
1414 session->vpp_handle, vcl_session_index (session), state,
1415 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1416 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001417 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001418
Florin Coras7e12d942018-06-27 14:32:43 -07001419 if (session->session_state & STATE_LISTEN)
Florin Coras54693d22018-07-17 10:46:29 -07001420 return clib_fifo_elts (session->accept_evts_fifo);
1421
1422 return svm_fifo_max_dequeue (session->rx_fifo);
1423}
1424
1425static u8
1426vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1427{
1428 if (!is_ct)
1429 return (e->event_type == FIFO_EVENT_APP_TX
1430 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001431 else
Florin Coras54693d22018-07-17 10:46:29 -07001432 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001433}
1434
1435int
Dave Wallace048b1d62018-01-03 22:24:41 -05001436vppcom_session_write (uint32_t session_index, void *buf, size_t n)
Dave Wallace543852a2017-08-03 02:11:34 -04001437{
Florin Coras54693d22018-07-17 10:46:29 -07001438 int rv, n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001439 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001440 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001441 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001442 svm_msg_q_msg_t msg;
1443 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001444 svm_msg_q_t *mq;
Dave Wallace543852a2017-08-03 02:11:34 -04001445
1446 ASSERT (buf);
1447
Florin Coras460dce62018-07-27 05:45:06 -07001448 VCL_SESSION_LOCK_AND_GET (session_index, &s);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001449
Florin Coras460dce62018-07-27 05:45:06 -07001450 tx_fifo = s->tx_fifo;
1451 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001452
Florin Coras460dce62018-07-27 05:45:06 -07001453 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001454 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001455 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05001456 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001457 "cannot write to an epoll session!",
Florin Coras460dce62018-07-27 05:45:06 -07001458 getpid (), s->vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001459
1460 rv = VPPCOM_EBADFD;
1461 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001462 }
1463
Florin Coras460dce62018-07-27 05:45:06 -07001464 if (!(s->session_state & STATE_OPEN))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001465 {
Florin Coras460dce62018-07-27 05:45:06 -07001466 session_state_t state = s->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001467 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace7e607a72018-06-18 18:41:32 -04001468 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -07001469 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
1470 "state 0x%x (%s)",
Florin Coras460dce62018-07-27 05:45:06 -07001471 getpid (), s->vpp_handle, session_index,
Florin Coras0d427d82018-06-27 03:24:07 -07001472 state, vppcom_session_state_str (state));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001473 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001474 }
1475
Dave Wallace7e607a72018-06-18 18:41:32 -04001476 VCL_SESSION_UNLOCK ();
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001477
Florin Coras460dce62018-07-27 05:45:06 -07001478 mq = vcl_session_is_ct (s) ? s->our_evt_q : vcm->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001479 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001480 {
Florin Coras54693d22018-07-17 10:46:29 -07001481 if (is_nonblocking)
1482 {
1483 rv = VPPCOM_EWOULDBLOCK;
1484 goto done;
1485 }
Florin Coras54693d22018-07-17 10:46:29 -07001486 while (1)
1487 {
Florin Coras99368312018-08-02 10:45:44 -07001488 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001489 if (!svm_fifo_is_full (tx_fifo))
1490 {
1491 svm_msg_q_unlock (mq);
1492 break;
1493 }
Florin Coras99368312018-08-02 10:45:44 -07001494 while (svm_msg_q_is_empty (mq) && svm_msg_q_timedwait (mq, 10e-6))
1495 ;
Florin Coras54693d22018-07-17 10:46:29 -07001496 svm_msg_q_sub_w_lock (mq, &msg);
1497 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001498 svm_msg_q_unlock (mq);
1499
Florin Coras54693d22018-07-17 10:46:29 -07001500 if (!vcl_is_tx_evt_for_session (e, session_index,
Florin Coras460dce62018-07-27 05:45:06 -07001501 s->our_evt_q != 0))
Florin Coras54693d22018-07-17 10:46:29 -07001502 {
1503 vcl_handle_mq_ctrl_event (e);
1504 svm_msg_q_free_msg (mq, &msg);
1505 continue;
1506 }
1507 if (svm_fifo_is_full (tx_fifo))
1508 {
1509 svm_msg_q_free_msg (mq, &msg);
1510 continue;
1511 }
1512 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001513 break;
1514 }
Dave Wallace543852a2017-08-03 02:11:34 -04001515 }
Dave Wallace543852a2017-08-03 02:11:34 -04001516
Florin Coras460dce62018-07-27 05:45:06 -07001517 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1518 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
1519 if (s->is_dgram)
1520 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1521 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1522 else
1523 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1524 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001525
Florin Coras460dce62018-07-27 05:45:06 -07001526 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001527
1528 if (VPPCOM_DEBUG > 2)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001529 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001530 if (n_write <= 0)
Dave Wallace048b1d62018-01-03 22:24:41 -05001531 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
Florin Coras460dce62018-07-27 05:45:06 -07001532 "FIFO-FULL (%p)", getpid (), s->vpp_handle,
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001533 session_index, tx_fifo);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001534 else
Dave Wallace048b1d62018-01-03 22:24:41 -05001535 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001536 "wrote %d bytes tx-fifo: (%p)", getpid (),
Florin Coras460dce62018-07-27 05:45:06 -07001537 s->vpp_handle, session_index, n_write, tx_fifo);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001538 }
Florin Coras54693d22018-07-17 10:46:29 -07001539 return n_write;
1540
Dave Wallace4878cbe2017-11-21 03:45:09 -05001541done:
1542 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001543}
1544
Florin Coras99368312018-08-02 10:45:44 -07001545static vcl_session_t *
1546vcl_ct_session_get_from_fifo (svm_fifo_t * f, u8 type)
1547{
1548 vcl_session_t *s;
1549 s = vcl_session_get (f->client_session_index);
1550 if (s)
1551 {
1552 /* rx fifo */
1553 if (type == 0 && s->rx_fifo == f)
1554 return s;
1555 /* tx fifo */
1556 if (type == 1 && s->tx_fifo == f)
1557 return s;
1558 }
1559 s = vcl_session_get (f->master_session_index);
1560 if (s)
1561 {
1562 if (type == 0 && s->rx_fifo == f)
1563 return s;
1564 if (type == 1 && s->tx_fifo == f)
1565 return s;
1566 }
1567 return 0;
1568}
1569
Dave Wallace543852a2017-08-03 02:11:34 -04001570static inline int
Florin Coras7e12d942018-06-27 14:32:43 -07001571vppcom_session_write_ready (vcl_session_t * session, u32 session_index)
Dave Wallace543852a2017-08-03 02:11:34 -04001572{
Dave Wallace543852a2017-08-03 02:11:34 -04001573 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001574 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001575 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001576 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001577 "cannot write to an epoll session!",
1578 getpid (), session->vpp_handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001579 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001580 }
1581
Florin Coras7e12d942018-06-27 14:32:43 -07001582 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001583 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001584 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001585 "cannot write to a listen session!",
1586 getpid (), session->vpp_handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001587 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001588 }
1589
Florin Coras54693d22018-07-17 10:46:29 -07001590 if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001591 {
Florin Coras7e12d942018-06-27 14:32:43 -07001592 session_state_t state = session->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001593 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001594
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001595 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace048b1d62018-01-03 22:24:41 -05001596 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001597 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001598 "returning %d (%s)", getpid (), session->vpp_handle,
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001599 session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001600 state, vppcom_session_state_str (state),
1601 rv, vppcom_retval_str (rv));
Florin Coras54693d22018-07-17 10:46:29 -07001602 return rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001603 }
1604
Florin Coras0d427d82018-06-27 03:24:07 -07001605 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
1606 getpid (), session->vpp_handle, session_index, session->tx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -07001607 svm_fifo_max_enqueue (session->tx_fifo));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001608
Florin Coras54693d22018-07-17 10:46:29 -07001609 return svm_fifo_max_enqueue (session->tx_fifo);
1610}
1611
Florin Coras99368312018-08-02 10:45:44 -07001612static inline int
1613vcl_mq_dequeue_batch (svm_msg_q_t * mq)
1614{
1615 svm_msg_q_msg_t *msg;
1616 u32 n_msgs;
1617 int i;
1618
1619 n_msgs = svm_msg_q_size (mq);
1620 for (i = 0; i < n_msgs; i++)
1621 {
1622 vec_add2 (vcm->mq_msg_vector, msg, 1);
1623 svm_msg_q_sub_w_lock (mq, msg);
1624 }
1625 return n_msgs;
1626}
1627
Florin Coras54693d22018-07-17 10:46:29 -07001628static int
1629vcl_select_handle_mq (svm_msg_q_t * mq, unsigned long n_bits,
1630 unsigned long *read_map, unsigned long *write_map,
1631 unsigned long *except_map, double time_to_wait,
1632 u32 * bits_set)
1633{
1634 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001635 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001636 session_accepted_msg_t *accepted_msg;
1637 vcl_session_msg_t *vcl_msg;
1638 vcl_session_t *session;
Florin Coras99368312018-08-02 10:45:44 -07001639 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07001640 session_event_t *e;
Florin Coras99368312018-08-02 10:45:44 -07001641 u32 i, sid;
Florin Coras54693d22018-07-17 10:46:29 -07001642 u64 handle;
1643
1644 svm_msg_q_lock (mq);
1645 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001646 {
Florin Coras54693d22018-07-17 10:46:29 -07001647 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001648 {
Florin Coras54693d22018-07-17 10:46:29 -07001649 svm_msg_q_unlock (mq);
1650 return 0;
1651 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001652
Florin Coras54693d22018-07-17 10:46:29 -07001653 if (!time_to_wait)
1654 {
1655 svm_msg_q_unlock (mq);
1656 return 0;
1657 }
1658 else if (time_to_wait < 0)
1659 {
1660 svm_msg_q_wait (mq);
1661 }
1662 else
1663 {
1664 if (svm_msg_q_timedwait (mq, time_to_wait))
1665 {
1666 svm_msg_q_unlock (mq);
1667 return 0;
1668 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001669 }
1670 }
Florin Coras99368312018-08-02 10:45:44 -07001671 vcl_mq_dequeue_batch (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001672 svm_msg_q_unlock (mq);
1673
Florin Coras99368312018-08-02 10:45:44 -07001674 for (i = 0; i < vec_len (vcm->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07001675 {
Florin Coras99368312018-08-02 10:45:44 -07001676 msg = vec_elt_at_index (vcm->mq_msg_vector, i);
1677 e = svm_msg_q_msg_data (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001678 switch (e->event_type)
1679 {
1680 case FIFO_EVENT_APP_RX:
1681 sid = e->fifo->client_session_index;
1682 session = vcl_session_get (sid);
Florin Coras99368312018-08-02 10:45:44 -07001683 svm_fifo_unset_event (session->rx_fifo);
1684 if (svm_fifo_is_empty (session->rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001685 break;
1686 if (sid < n_bits && read_map)
1687 {
1688 clib_bitmap_set_no_check (read_map, sid, 1);
1689 *bits_set += 1;
1690 }
1691 break;
1692 case FIFO_EVENT_APP_TX:
1693 sid = e->fifo->client_session_index;
1694 session = vcl_session_get (sid);
1695 if (!session || svm_fifo_is_full (session->tx_fifo))
1696 break;
1697 if (sid < n_bits && write_map)
1698 {
1699 clib_bitmap_set_no_check (write_map, sid, 1);
1700 *bits_set += 1;
1701 }
1702 break;
1703 case SESSION_IO_EVT_CT_TX:
1704 session = vcl_ct_session_get_from_fifo (e->fifo, 0);
1705 sid = vcl_session_index (session);
Florin Coras99368312018-08-02 10:45:44 -07001706 svm_fifo_unset_event (session->rx_fifo);
1707 if (svm_fifo_is_empty (session->rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001708 break;
1709 if (sid < n_bits && read_map)
1710 {
1711 clib_bitmap_set_no_check (read_map, sid, 1);
1712 *bits_set += 1;
1713 }
1714 break;
1715 break;
1716 case SESSION_IO_EVT_CT_RX:
1717 session = vcl_ct_session_get_from_fifo (e->fifo, 1);
1718 sid = vcl_session_index (session);
1719 if (!session || svm_fifo_is_full (session->tx_fifo))
1720 break;
1721 if (sid < n_bits && write_map)
1722 {
1723 clib_bitmap_set_no_check (write_map, sid, 1);
1724 *bits_set += 1;
1725 }
1726 break;
1727 case SESSION_CTRL_EVT_ACCEPTED:
1728 accepted_msg = (session_accepted_msg_t *) e->data;
1729 handle = accepted_msg->listener_handle;
1730 session = vppcom_session_table_lookup_listener (handle);
1731 if (!session)
1732 {
1733 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
1734 "listener handle %llx", getpid (), handle);
1735 break;
1736 }
1737
1738 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
1739 vcl_msg->accepted_msg = *accepted_msg;
1740 sid = session - vcm->sessions;
1741 if (sid < n_bits && read_map)
1742 {
1743 clib_bitmap_set_no_check (read_map, sid, 1);
1744 *bits_set += 1;
1745 }
1746 break;
Florin Coras99368312018-08-02 10:45:44 -07001747 case SESSION_CTRL_EVT_CONNECTED:
1748 connected_msg = (session_connected_msg_t *) e->data;
1749 vcl_session_connected_handler (connected_msg);
1750 break;
Florin Coras54693d22018-07-17 10:46:29 -07001751 case SESSION_CTRL_EVT_DISCONNECTED:
1752 disconnected_msg = (session_disconnected_msg_t *) e->data;
1753 sid = vcl_session_get_index_from_handle (disconnected_msg->handle);
1754 if (sid < n_bits && except_map)
1755 {
1756 clib_bitmap_set_no_check (except_map, sid, 1);
1757 *bits_set += 1;
1758 }
1759 break;
1760 default:
1761 clib_warning ("unhandled: %u", e->event_type);
1762 break;
1763 }
Florin Coras99368312018-08-02 10:45:44 -07001764 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001765 }
1766
Florin Coras99368312018-08-02 10:45:44 -07001767 vec_reset_length (vcm->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07001768 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04001769}
1770
Florin Coras99368312018-08-02 10:45:44 -07001771static int
1772vppcom_select_condvar (unsigned long n_bits, unsigned long *read_map,
1773 unsigned long *write_map, unsigned long *except_map,
1774 double time_to_wait, u32 * bits_set)
1775{
1776 double total_wait = 0, wait_slice;
1777 vcl_cut_through_registration_t *cr;
1778
1779 time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
1780 wait_slice = vcm->cut_through_registrations ? 10e-6 : time_to_wait;
1781 do
1782 {
1783 /* *INDENT-OFF* */
1784 pool_foreach (cr, vcm->cut_through_registrations, ({
1785 vcl_select_handle_mq (cr->mq, n_bits, read_map, write_map, except_map,
1786 0, bits_set);
1787 }));
1788 /* *INDENT-ON* */
1789
1790 vcl_select_handle_mq (vcm->app_event_queue, n_bits, read_map, write_map,
1791 except_map, time_to_wait, bits_set);
1792 total_wait += wait_slice;
1793 if (*bits_set)
1794 return *bits_set;
1795 }
1796 while (total_wait < time_to_wait);
1797
1798 return 0;
1799}
1800
1801static int
1802vppcom_select_eventfd (unsigned long n_bits, unsigned long *read_map,
1803 unsigned long *write_map, unsigned long *except_map,
1804 double time_to_wait, u32 * bits_set)
1805{
1806 vcl_mq_evt_conn_t *mqc;
1807 int __clib_unused n_read;
1808 int n_mq_evts, i;
1809 u64 buf;
1810
1811 vec_validate (vcm->mq_events, pool_elts (vcm->mq_evt_conns));
1812 n_mq_evts = epoll_wait (vcm->mqs_epfd, vcm->mq_events,
1813 vec_len (vcm->mq_events), time_to_wait);
1814 for (i = 0; i < n_mq_evts; i++)
1815 {
1816 mqc = vcl_mq_evt_conn_get (vcm->mq_events[i].data.u32);
1817 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
1818 vcl_select_handle_mq (mqc->mq, n_bits, read_map, write_map,
1819 except_map, 0, bits_set);
1820 }
1821
1822 return (n_mq_evts > 0 ? (int) *bits_set : 0);
1823}
1824
Dave Wallace543852a2017-08-03 02:11:34 -04001825int
1826vppcom_select (unsigned long n_bits, unsigned long *read_map,
1827 unsigned long *write_map, unsigned long *except_map,
1828 double time_to_wait)
1829{
Florin Coras54693d22018-07-17 10:46:29 -07001830 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras7e12d942018-06-27 14:32:43 -07001831 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001832 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001833
1834 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1835
Dave Wallace7876d392017-10-19 03:53:57 -04001836 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001837 {
1838 clib_bitmap_validate (vcm->rd_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001839 clib_memcpy (vcm->rd_bitmap, read_map,
1840 vec_len (vcm->rd_bitmap) * sizeof (clib_bitmap_t));
1841 memset (read_map, 0, vec_len (vcm->rd_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001842 }
Dave Wallace7876d392017-10-19 03:53:57 -04001843 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001844 {
1845 clib_bitmap_validate (vcm->wr_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001846 clib_memcpy (vcm->wr_bitmap, write_map,
1847 vec_len (vcm->wr_bitmap) * sizeof (clib_bitmap_t));
1848 memset (write_map, 0,
1849 vec_len (vcm->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001850 }
Dave Wallace7876d392017-10-19 03:53:57 -04001851 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001852 {
1853 clib_bitmap_validate (vcm->ex_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001854 clib_memcpy (vcm->ex_bitmap, except_map,
1855 vec_len (vcm->ex_bitmap) * sizeof (clib_bitmap_t));
1856 memset (except_map, 0,
1857 vec_len (vcm->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001858 }
1859
Florin Coras54693d22018-07-17 10:46:29 -07001860 if (!n_bits)
1861 return 0;
1862
1863 if (!write_map)
1864 goto check_rd;
1865
1866 /* *INDENT-OFF* */
1867 clib_bitmap_foreach (sid, vcm->wr_bitmap, ({
Florin Coras54693d22018-07-17 10:46:29 -07001868 if (!(session = vcl_session_get (sid)))
1869 {
Florin Coras54693d22018-07-17 10:46:29 -07001870 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1871 getpid (), sid);
1872 return VPPCOM_EBADFD;
1873 }
1874
1875 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001876 if (!rv)
1877 {
1878 clib_bitmap_set_no_check (write_map, sid, 1);
1879 bits_set++;
1880 }
1881 }));
1882
1883check_rd:
1884 if (!read_map)
1885 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07001886
Florin Coras54693d22018-07-17 10:46:29 -07001887 clib_bitmap_foreach (sid, vcm->rd_bitmap, ({
Florin Coras54693d22018-07-17 10:46:29 -07001888 if (!(session = vcl_session_get (sid)))
1889 {
Florin Coras54693d22018-07-17 10:46:29 -07001890 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1891 getpid (), sid);
1892 return VPPCOM_EBADFD;
1893 }
1894
1895 rv = vppcom_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07001896 if (rv)
1897 {
1898 clib_bitmap_set_no_check (read_map, sid, 1);
1899 bits_set++;
1900 }
1901 }));
1902 /* *INDENT-ON* */
1903
1904check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04001905
Florin Coras99368312018-08-02 10:45:44 -07001906 if (vcm->cfg.use_mq_eventfd)
1907 vppcom_select_eventfd (n_bits, read_map, write_map, except_map,
1908 time_to_wait, &bits_set);
1909 else
1910 vppcom_select_condvar (n_bits, read_map, write_map, except_map,
1911 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07001912
Dave Wallace543852a2017-08-03 02:11:34 -04001913 return (bits_set);
1914}
1915
Dave Wallacef7f809c2017-10-03 01:48:42 -04001916static inline void
1917vep_verify_epoll_chain (u32 vep_idx)
1918{
Florin Coras7e12d942018-06-27 14:32:43 -07001919 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001920 vppcom_epoll_t *vep;
1921 int rv;
Dave Wallace498b3a52017-11-09 13:00:34 -05001922 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001923
Dave Wallace498b3a52017-11-09 13:00:34 -05001924 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001925 return;
1926
1927 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1928 rv = vppcom_session_at_index (vep_idx, &session);
1929 if (PREDICT_FALSE (rv))
1930 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001931 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
1932 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001933 goto done;
1934 }
1935 if (PREDICT_FALSE (!session->is_vep))
1936 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001937 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
1938 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001939 goto done;
1940 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001941 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05001942 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05001943 "{\n"
1944 " is_vep = %u\n"
1945 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05001946 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05001947 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05001948 "}\n", getpid (), vep_idx,
1949 session->is_vep, session->is_vep_session,
1950 vep->next_sid, vep->next_sid,
Dave Wallace498b3a52017-11-09 13:00:34 -05001951 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001952
1953 for (sid = vep->next_sid; sid != ~0; sid = vep->next_sid)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001954 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001955 rv = vppcom_session_at_index (sid, &session);
1956 if (PREDICT_FALSE (rv))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001957 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001958 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001959 goto done;
1960 }
1961 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05001962 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
1963 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001964 else if (PREDICT_FALSE (!session->is_vep_session))
1965 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001966 clib_warning ("VCL<%d>: ERROR: session (%u) "
1967 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001968 goto done;
1969 }
1970 vep = &session->vep;
1971 if (PREDICT_FALSE (vep->vep_idx != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05001972 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001973 "vep_idx (%u)!", getpid (),
1974 sid, session->vep.vep_idx, vep_idx);
1975 if (session->is_vep_session)
1976 {
1977 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
1978 "{\n"
1979 " next_sid = 0x%x (%u)\n"
1980 " prev_sid = 0x%x (%u)\n"
1981 " vep_idx = 0x%x (%u)\n"
1982 " ev.events = 0x%x\n"
1983 " ev.data.u64 = 0x%llx\n"
1984 " et_mask = 0x%x\n"
1985 "}\n",
1986 vep_idx, sid, sid,
1987 vep->next_sid, vep->next_sid,
1988 vep->prev_sid, vep->prev_sid,
1989 vep->vep_idx, vep->vep_idx,
1990 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001991 }
1992 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04001993
1994done:
Dave Wallace048b1d62018-01-03 22:24:41 -05001995 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
1996 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001997}
1998
1999int
2000vppcom_epoll_create (void)
2001{
Florin Coras7e12d942018-06-27 14:32:43 -07002002 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002003 u32 vep_idx;
2004
Dave Wallace7e607a72018-06-18 18:41:32 -04002005 VCL_SESSION_LOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002006 pool_get (vcm->sessions, vep_session);
2007 memset (vep_session, 0, sizeof (*vep_session));
2008 vep_idx = vep_session - vcm->sessions;
2009
2010 vep_session->is_vep = 1;
2011 vep_session->vep.vep_idx = ~0;
2012 vep_session->vep.next_sid = ~0;
2013 vep_session->vep.prev_sid = ~0;
2014 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002015 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)12756512018-03-06 05:55:27 -08002016 vep_session->poll_reg = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002017
Florin Coras0d427d82018-06-27 03:24:07 -07002018 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_idx);
Dave Wallace7e607a72018-06-18 18:41:32 -04002019 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002020
Florin Coras0d427d82018-06-27 03:24:07 -07002021 VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
2022 getpid (), vep_idx, vep_idx);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002023
Dave Wallacef7f809c2017-10-03 01:48:42 -04002024 return (vep_idx);
2025}
2026
2027int
2028vppcom_epoll_ctl (uint32_t vep_idx, int op, uint32_t session_index,
2029 struct epoll_event *event)
2030{
Florin Coras7e12d942018-06-27 14:32:43 -07002031 vcl_session_t *vep_session;
2032 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002033 int rv;
2034
2035 if (vep_idx == session_index)
2036 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002037 clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002038 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002039 return VPPCOM_EINVAL;
2040 }
2041
Dave Wallace7e607a72018-06-18 18:41:32 -04002042 VCL_SESSION_LOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002043 rv = vppcom_session_at_index (vep_idx, &vep_session);
2044 if (PREDICT_FALSE (rv))
2045 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002046 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002047 goto done;
2048 }
2049 if (PREDICT_FALSE (!vep_session->is_vep))
2050 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002051 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002052 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002053 rv = VPPCOM_EINVAL;
2054 goto done;
2055 }
2056
2057 ASSERT (vep_session->vep.vep_idx == ~0);
2058 ASSERT (vep_session->vep.prev_sid == ~0);
2059
2060 rv = vppcom_session_at_index (session_index, &session);
2061 if (PREDICT_FALSE (rv))
2062 {
Florin Coras0d427d82018-06-27 03:24:07 -07002063 VDBG (0, "VCL<%d>: ERROR: Invalid session_index (%u)!",
2064 getpid (), session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002065 goto done;
2066 }
2067 if (PREDICT_FALSE (session->is_vep))
2068 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05002069 clib_warning ("ERROR: session_index (%u) is a vep!", vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002070 rv = VPPCOM_EINVAL;
2071 goto done;
2072 }
2073
2074 switch (op)
2075 {
2076 case EPOLL_CTL_ADD:
2077 if (PREDICT_FALSE (!event))
2078 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002079 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002080 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04002081 rv = VPPCOM_EINVAL;
2082 goto done;
2083 }
2084 if (vep_session->vep.next_sid != ~0)
2085 {
Florin Coras7e12d942018-06-27 14:32:43 -07002086 vcl_session_t *next_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002087 rv = vppcom_session_at_index (vep_session->vep.next_sid,
2088 &next_session);
2089 if (PREDICT_FALSE (rv))
2090 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002091 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002092 "vep.next_sid (%u) on vep_idx (%u)!",
2093 getpid (), vep_session->vep.next_sid, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002094 goto done;
2095 }
2096 ASSERT (next_session->vep.prev_sid == vep_idx);
2097 next_session->vep.prev_sid = session_index;
2098 }
2099 session->vep.next_sid = vep_session->vep.next_sid;
2100 session->vep.prev_sid = vep_idx;
2101 session->vep.vep_idx = vep_idx;
2102 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2103 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002104 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002105 session->is_vep_session = 1;
2106 vep_session->vep.next_sid = session_index;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002107
2108 /* VCL Event Register handler */
Florin Coras7e12d942018-06-27 14:32:43 -07002109 if (session->session_state & STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002110 {
2111 /* Register handler for connect_request event on listen_session_index */
2112 vce_event_key_t evk;
2113 evk.session_index = session_index;
2114 evk.eid = VCL_EVENT_CONNECT_REQ_ACCEPTED;
Keith Burns (alagalah)12756512018-03-06 05:55:27 -08002115 vep_session->poll_reg =
2116 vce_register_handler (&vcm->event_thread, &evk,
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08002117 vce_poll_wait_connect_request_handler_fn,
2118 0 /* No callback args */ );
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002119 }
Florin Coras0d427d82018-06-27 03:24:07 -07002120 VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, "
2121 "sid %u, events 0x%x, data 0x%llx!",
2122 getpid (), vep_idx, session_index,
2123 event->events, event->data.u64);
2124 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002125 break;
2126
2127 case EPOLL_CTL_MOD:
2128 if (PREDICT_FALSE (!event))
2129 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002130 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002131 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04002132 rv = VPPCOM_EINVAL;
2133 goto done;
2134 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002135 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002136 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002137 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002138 "not a vep session!", getpid (), session_index);
2139 rv = VPPCOM_EINVAL;
2140 goto done;
2141 }
2142 else if (PREDICT_FALSE (session->vep.vep_idx != vep_idx))
2143 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002144 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002145 "vep_idx (%u) != vep_idx (%u)!",
2146 getpid (), session_index,
2147 session->vep.vep_idx, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002148 rv = VPPCOM_EINVAL;
2149 goto done;
2150 }
2151 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2152 session->vep.ev = *event;
Florin Coras0d427d82018-06-27 03:24:07 -07002153 VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
2154 " data 0x%llx!", getpid (), vep_idx, session_index, event->events,
2155 event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002156 break;
2157
2158 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002159 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002160 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002161 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002162 "not a vep session!", getpid (), session_index);
2163 rv = VPPCOM_EINVAL;
2164 goto done;
2165 }
2166 else if (PREDICT_FALSE (session->vep.vep_idx != vep_idx))
2167 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002168 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002169 "vep_idx (%u) != vep_idx (%u)!",
2170 getpid (), session_index,
2171 session->vep.vep_idx, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002172 rv = VPPCOM_EINVAL;
2173 goto done;
2174 }
2175
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002176 /* VCL Event Un-register handler */
Florin Coras7e12d942018-06-27 14:32:43 -07002177 if ((session->session_state & STATE_LISTEN) && vep_session->poll_reg)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002178 {
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08002179 (void) vce_unregister_handler (&vcm->event_thread,
2180 vep_session->poll_reg);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002181 }
2182
Dave Wallacef7f809c2017-10-03 01:48:42 -04002183 vep_session->wait_cont_idx =
2184 (vep_session->wait_cont_idx == session_index) ?
2185 session->vep.next_sid : vep_session->wait_cont_idx;
2186
2187 if (session->vep.prev_sid == vep_idx)
2188 vep_session->vep.next_sid = session->vep.next_sid;
2189 else
2190 {
Florin Coras7e12d942018-06-27 14:32:43 -07002191 vcl_session_t *prev_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002192 rv = vppcom_session_at_index (session->vep.prev_sid, &prev_session);
2193 if (PREDICT_FALSE (rv))
2194 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002195 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002196 "vep.prev_sid (%u) on sid (%u)!",
2197 getpid (), session->vep.prev_sid, session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002198 goto done;
2199 }
2200 ASSERT (prev_session->vep.next_sid == session_index);
2201 prev_session->vep.next_sid = session->vep.next_sid;
2202 }
2203 if (session->vep.next_sid != ~0)
2204 {
Florin Coras7e12d942018-06-27 14:32:43 -07002205 vcl_session_t *next_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002206 rv = vppcom_session_at_index (session->vep.next_sid, &next_session);
2207 if (PREDICT_FALSE (rv))
2208 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002209 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002210 "vep.next_sid (%u) on sid (%u)!",
2211 getpid (), session->vep.next_sid, session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002212 goto done;
2213 }
2214 ASSERT (next_session->vep.prev_sid == session_index);
2215 next_session->vep.prev_sid = session->vep.prev_sid;
2216 }
2217
2218 memset (&session->vep, 0, sizeof (session->vep));
2219 session->vep.next_sid = ~0;
2220 session->vep.prev_sid = ~0;
2221 session->vep.vep_idx = ~0;
2222 session->is_vep_session = 0;
Florin Coras0d427d82018-06-27 03:24:07 -07002223 VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
2224 getpid (), vep_idx, session_index);
2225 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002226 break;
2227
2228 default:
Dave Wallace048b1d62018-01-03 22:24:41 -05002229 clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002230 rv = VPPCOM_EINVAL;
2231 }
2232
2233 vep_verify_epoll_chain (vep_idx);
2234
2235done:
Dave Wallace7e607a72018-06-18 18:41:32 -04002236 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002237 return rv;
2238}
2239
Florin Coras54693d22018-07-17 10:46:29 -07002240static int
2241vcl_epoll_wait_handle_mq (svm_msg_q_t * mq, struct epoll_event *events,
2242 u32 maxevents, double wait_for_time, u32 * num_ev)
2243{
2244 session_disconnected_msg_t *disconnected_msg;
2245 session_connected_msg_t *connected_msg;
2246 session_accepted_msg_t *accepted_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002247 u64 session_evt_data = ~0, handle;
Florin Coras99368312018-08-02 10:45:44 -07002248 u32 sid = ~0, session_events;
Florin Coras54693d22018-07-17 10:46:29 -07002249 vcl_session_msg_t *vcl_msg;
2250 vcl_session_t *session;
Florin Coras99368312018-08-02 10:45:44 -07002251 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002252 session_event_t *e;
2253 u8 add_event;
2254 int i;
2255
2256 svm_msg_q_lock (mq);
2257 if (svm_msg_q_is_empty (mq))
2258 {
2259 if (!wait_for_time)
2260 {
2261 svm_msg_q_unlock (mq);
2262 return 0;
2263 }
2264 else if (wait_for_time < 0)
2265 {
2266 svm_msg_q_wait (mq);
2267 }
2268 else
2269 {
Florin Coras99368312018-08-02 10:45:44 -07002270 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3) < 0)
Florin Coras54693d22018-07-17 10:46:29 -07002271 {
2272 svm_msg_q_unlock (mq);
2273 return 0;
2274 }
2275 }
2276 }
Florin Coras99368312018-08-02 10:45:44 -07002277 vcl_mq_dequeue_batch (mq);
Florin Coras54693d22018-07-17 10:46:29 -07002278 svm_msg_q_unlock (mq);
2279
Florin Coras99368312018-08-02 10:45:44 -07002280 for (i = 0; i < vec_len (vcm->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002281 {
Florin Coras99368312018-08-02 10:45:44 -07002282 msg = vec_elt_at_index (vcm->mq_msg_vector, i);
2283 e = svm_msg_q_msg_data (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002284 add_event = 0;
2285 switch (e->event_type)
2286 {
2287 case FIFO_EVENT_APP_RX:
2288 sid = e->fifo->client_session_index;
Florin Coras54693d22018-07-17 10:46:29 -07002289 session = vcl_session_get (sid);
2290 session_events = session->vep.ev.events;
Florin Coras99368312018-08-02 10:45:44 -07002291 if (!(EPOLLIN & session->vep.ev.events))
2292 break;
2293 svm_fifo_unset_event (session->rx_fifo);
2294 if (!svm_fifo_is_empty (session->rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002295 {
2296 add_event = 1;
2297 events[*num_ev].events |= EPOLLIN;
2298 session_evt_data = session->vep.ev.data.u64;
2299 }
Florin Coras54693d22018-07-17 10:46:29 -07002300 break;
2301 case FIFO_EVENT_APP_TX:
2302 sid = e->fifo->client_session_index;
Florin Coras54693d22018-07-17 10:46:29 -07002303 session = vcl_session_get (sid);
2304 session_events = session->vep.ev.events;
Florin Coras99368312018-08-02 10:45:44 -07002305 if (!(EPOLLOUT & session_events))
2306 break;
2307 if (!svm_fifo_is_full (session->tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002308 {
2309 add_event = 1;
2310 events[*num_ev].events |= EPOLLOUT;
2311 session_evt_data = session->vep.ev.data.u64;
2312 }
Florin Coras54693d22018-07-17 10:46:29 -07002313 break;
2314 case SESSION_IO_EVT_CT_TX:
2315 session = vcl_ct_session_get_from_fifo (e->fifo, 0);
2316 sid = vcl_session_index (session);
2317 session_events = session->vep.ev.events;
Florin Coras99368312018-08-02 10:45:44 -07002318 if (!(EPOLLIN & session->vep.ev.events))
2319 break;
2320 svm_fifo_unset_event (session->rx_fifo);
2321 if (!svm_fifo_is_empty (session->rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002322 {
2323 add_event = 1;
2324 events[*num_ev].events |= EPOLLIN;
2325 session_evt_data = session->vep.ev.data.u64;
2326 }
2327 break;
2328 case SESSION_IO_EVT_CT_RX:
2329 session = vcl_ct_session_get_from_fifo (e->fifo, 1);
2330 sid = vcl_session_index (session);
2331 session_events = session->vep.ev.events;
Florin Coras99368312018-08-02 10:45:44 -07002332 if (!(EPOLLOUT & session_events))
2333 break;
2334 if (!svm_fifo_is_full (session->tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07002335 {
2336 add_event = 1;
2337 events[*num_ev].events |= EPOLLOUT;
2338 session_evt_data = session->vep.ev.data.u64;
2339 }
2340 break;
2341 case SESSION_CTRL_EVT_ACCEPTED:
2342 accepted_msg = (session_accepted_msg_t *) e->data;
2343 handle = accepted_msg->listener_handle;
2344 session = vppcom_session_table_lookup_listener (handle);
2345 if (!session)
2346 {
2347 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
2348 "listener handle %llx", getpid (), handle);
2349 break;
2350 }
2351
2352 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
2353 vcl_msg->accepted_msg = *accepted_msg;
2354 session_events = session->vep.ev.events;
2355 if (!(EPOLLIN & session_events))
2356 break;
2357
2358 add_event = 1;
2359 events[*num_ev].events |= EPOLLIN;
2360 session_evt_data = session->vep.ev.data.u64;
2361 break;
2362 case SESSION_CTRL_EVT_CONNECTED:
2363 connected_msg = (session_connected_msg_t *) e->data;
2364 vcl_session_connected_handler (connected_msg);
2365 /* Generate EPOLLOUT because there's no connected event */
2366 sid = vcl_session_get_index_from_handle (connected_msg->handle);
2367 clib_spinlock_lock (&vcm->sessions_lockp);
2368 session = vcl_session_get (sid);
2369 session_events = session->vep.ev.events;
2370 if (EPOLLOUT & session_events)
2371 {
2372 add_event = 1;
2373 events[*num_ev].events |= EPOLLOUT;
2374 session_evt_data = session->vep.ev.data.u64;
2375 }
2376 clib_spinlock_unlock (&vcm->sessions_lockp);
2377 break;
2378 case SESSION_CTRL_EVT_DISCONNECTED:
2379 disconnected_msg = (session_disconnected_msg_t *) e->data;
2380 sid = vcl_session_get_index_from_handle (disconnected_msg->handle);
2381 clib_spinlock_lock (&vcm->sessions_lockp);
2382 session = vcl_session_get (sid);
2383 add_event = 1;
2384 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2385 session_evt_data = session->vep.ev.data.u64;
2386 session_events = session->vep.ev.events;
2387 clib_spinlock_unlock (&vcm->sessions_lockp);
2388 break;
2389 default:
2390 clib_warning ("unhandled: %u", e->event_type);
Florin Coras99368312018-08-02 10:45:44 -07002391 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002392 continue;
2393 }
Florin Coras99368312018-08-02 10:45:44 -07002394 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002395
2396 if (add_event)
2397 {
2398 events[*num_ev].data.u64 = session_evt_data;
2399 if (EPOLLONESHOT & session_events)
2400 {
2401 clib_spinlock_lock (&vcm->sessions_lockp);
2402 session = vcl_session_get (sid);
2403 session->vep.ev.events = 0;
2404 clib_spinlock_unlock (&vcm->sessions_lockp);
2405 }
2406 *num_ev += 1;
2407 if (*num_ev == maxevents)
2408 break;
2409 }
2410 }
Florin Coras99368312018-08-02 10:45:44 -07002411
2412 vec_reset_length (vcm->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07002413 return *num_ev;
2414}
2415
Florin Coras99368312018-08-02 10:45:44 -07002416static int
2417vppcom_epoll_wait_condvar (struct epoll_event *events, int maxevents,
2418 double wait_for_time)
2419{
2420 vcl_cut_through_registration_t *cr;
2421 double total_wait = 0, wait_slice;
2422 u32 num_ev = 0;
2423 int rv;
2424
2425 wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
2426 wait_slice = vcm->cut_through_registrations ? 10e-6 : wait_for_time;
2427
2428 do
2429 {
2430 /* *INDENT-OFF* */
2431 pool_foreach (cr, vcm->cut_through_registrations, ({
2432 vcl_epoll_wait_handle_mq (cr->mq, events, maxevents, 0, &num_ev);
2433 }));
2434 /* *INDENT-ON* */
2435
2436 rv = vcl_epoll_wait_handle_mq (vcm->app_event_queue, events, maxevents,
2437 num_ev ? 0 : wait_slice, &num_ev);
2438 if (rv)
2439 total_wait += wait_slice;
2440 if (num_ev)
2441 return num_ev;
2442 }
2443 while (total_wait < wait_for_time);
2444 return (int) num_ev;
2445}
2446
2447static int
2448vppcom_epoll_wait_eventfd (struct epoll_event *events, int maxevents,
2449 double wait_for_time)
2450{
2451 vcl_mq_evt_conn_t *mqc;
2452 int __clib_unused n_read;
2453 int n_mq_evts, i;
2454 u32 n_evts = 0;
2455 u64 buf;
2456
2457 vec_validate (vcm->mq_events, pool_elts (vcm->mq_evt_conns));
2458 n_mq_evts = epoll_wait (vcm->mqs_epfd, vcm->mq_events,
2459 vec_len (vcm->mq_events), wait_for_time);
2460 for (i = 0; i < n_mq_evts; i++)
2461 {
2462 mqc = vcl_mq_evt_conn_get (vcm->mq_events[i].data.u32);
2463 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2464 vcl_epoll_wait_handle_mq (mqc->mq, events, maxevents, 0, &n_evts);
2465 }
2466
2467 return (int) n_evts;
2468}
2469
Dave Wallacef7f809c2017-10-03 01:48:42 -04002470int
2471vppcom_epoll_wait (uint32_t vep_idx, struct epoll_event *events,
2472 int maxevents, double wait_for_time)
2473{
Florin Coras7e12d942018-06-27 14:32:43 -07002474 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002475
2476 if (PREDICT_FALSE (maxevents <= 0))
2477 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002478 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002479 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002480 return VPPCOM_EINVAL;
2481 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002482
Florin Coras54693d22018-07-17 10:46:29 -07002483 clib_spinlock_lock (&vcm->sessions_lockp);
2484 vep_session = vcl_session_get (vep_idx);
2485 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002486 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002487 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002488 getpid (), vep_idx);
Florin Coras54693d22018-07-17 10:46:29 -07002489 clib_spinlock_unlock (&vcm->sessions_lockp);
2490 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002491 }
Florin Coras54693d22018-07-17 10:46:29 -07002492 clib_spinlock_unlock (&vcm->sessions_lockp);
2493
2494 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002495
Florin Coras99368312018-08-02 10:45:44 -07002496 if (vcm->cfg.use_mq_eventfd)
2497 return vppcom_epoll_wait_eventfd (events, maxevents, wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002498
Florin Coras99368312018-08-02 10:45:44 -07002499 return vppcom_epoll_wait_condvar (events, maxevents, wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002500}
2501
Dave Wallace35830af2017-10-09 01:43:42 -04002502int
2503vppcom_session_attr (uint32_t session_index, uint32_t op,
2504 void *buffer, uint32_t * buflen)
2505{
Florin Coras7e12d942018-06-27 14:32:43 -07002506 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002507 int rv = VPPCOM_OK;
2508 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002509 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002510
Dave Wallace7e607a72018-06-18 18:41:32 -04002511 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002512
2513 ASSERT (session);
2514
Dave Wallace35830af2017-10-09 01:43:42 -04002515 switch (op)
2516 {
2517 case VPPCOM_ATTR_GET_NREAD:
Florin Coras54693d22018-07-17 10:46:29 -07002518 rv = vppcom_session_read_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002519 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2520 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002521 break;
2522
Dave Wallace227867f2017-11-13 21:21:53 -05002523 case VPPCOM_ATTR_GET_NWRITE:
2524 rv = vppcom_session_write_ready (session, session_index);
Florin Coras0d427d82018-06-27 03:24:07 -07002525 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
2526 getpid (), session_index, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002527 break;
2528
2529 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002530 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002531 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002532 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2533 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002534 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002535 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2536 "is_nonblocking = %u", getpid (),
2537 session_index, *flags,
2538 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002539 }
2540 else
2541 rv = VPPCOM_EINVAL;
2542 break;
2543
2544 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002545 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002546 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002547 if (*flags & O_NONBLOCK)
2548 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2549 else
2550 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2551
Florin Coras0d427d82018-06-27 03:24:07 -07002552 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2553 " is_nonblocking = %u",
2554 getpid (), session_index, *flags,
2555 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002556 }
2557 else
2558 rv = VPPCOM_EINVAL;
2559 break;
2560
2561 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002562 if (PREDICT_TRUE (buffer && buflen &&
2563 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002564 {
Florin Coras7e12d942018-06-27 14:32:43 -07002565 ep->is_ip4 = session->transport.is_ip4;
2566 ep->port = session->transport.rmt_port;
2567 if (session->transport.is_ip4)
2568 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002569 sizeof (ip4_address_t));
2570 else
Florin Coras7e12d942018-06-27 14:32:43 -07002571 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002572 sizeof (ip6_address_t));
2573 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002574 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2575 "addr = %U, port %u", getpid (),
2576 session_index, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002577 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002578 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2579 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002580 }
2581 else
2582 rv = VPPCOM_EINVAL;
2583 break;
2584
2585 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002586 if (PREDICT_TRUE (buffer && buflen &&
2587 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002588 {
Florin Coras7e12d942018-06-27 14:32:43 -07002589 ep->is_ip4 = session->transport.is_ip4;
2590 ep->port = session->transport.lcl_port;
2591 if (session->transport.is_ip4)
2592 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002593 sizeof (ip4_address_t));
2594 else
Florin Coras7e12d942018-06-27 14:32:43 -07002595 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002596 sizeof (ip6_address_t));
2597 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002598 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2599 " addr = %U port %d", getpid (),
2600 session_index, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002601 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002602 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2603 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002604 }
2605 else
2606 rv = VPPCOM_EINVAL;
2607 break;
Stevenb5a11602017-10-11 09:59:30 -07002608
Dave Wallace048b1d62018-01-03 22:24:41 -05002609 case VPPCOM_ATTR_GET_LIBC_EPFD:
2610 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002611 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2612 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002613 break;
2614
2615 case VPPCOM_ATTR_SET_LIBC_EPFD:
2616 if (PREDICT_TRUE (buffer && buflen &&
2617 (*buflen == sizeof (session->libc_epfd))))
2618 {
2619 session->libc_epfd = *(int *) buffer;
2620 *buflen = sizeof (session->libc_epfd);
2621
Florin Coras0d427d82018-06-27 03:24:07 -07002622 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2623 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002624 }
2625 else
2626 rv = VPPCOM_EINVAL;
2627 break;
2628
2629 case VPPCOM_ATTR_GET_PROTOCOL:
2630 if (buffer && buflen && (*buflen >= sizeof (int)))
2631 {
Florin Coras7e12d942018-06-27 14:32:43 -07002632 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002633 *buflen = sizeof (int);
2634
Florin Coras0d427d82018-06-27 03:24:07 -07002635 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2636 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2637 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002638 }
2639 else
2640 rv = VPPCOM_EINVAL;
2641 break;
2642
2643 case VPPCOM_ATTR_GET_LISTEN:
2644 if (buffer && buflen && (*buflen >= sizeof (int)))
2645 {
2646 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2647 VCL_SESS_ATTR_LISTEN);
2648 *buflen = sizeof (int);
2649
Florin Coras0d427d82018-06-27 03:24:07 -07002650 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2651 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002652 }
2653 else
2654 rv = VPPCOM_EINVAL;
2655 break;
2656
2657 case VPPCOM_ATTR_GET_ERROR:
2658 if (buffer && buflen && (*buflen >= sizeof (int)))
2659 {
2660 *(int *) buffer = 0;
2661 *buflen = sizeof (int);
2662
Florin Coras0d427d82018-06-27 03:24:07 -07002663 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2664 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002665 }
2666 else
2667 rv = VPPCOM_EINVAL;
2668 break;
2669
2670 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2671 if (buffer && buflen && (*buflen >= sizeof (u32)))
2672 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002673
2674 /* VPP-TBD */
2675 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002676 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002677 vcm->cfg.tx_fifo_size);
2678 *buflen = sizeof (u32);
2679
Florin Coras0d427d82018-06-27 03:24:07 -07002680 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2681 "buflen %d, #VPP-TBD#", getpid (),
2682 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002683 }
2684 else
2685 rv = VPPCOM_EINVAL;
2686 break;
2687
2688 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2689 if (buffer && buflen && (*buflen == sizeof (u32)))
2690 {
2691 /* VPP-TBD */
2692 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002693 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2694 "buflen %d, #VPP-TBD#", getpid (),
2695 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002696 }
2697 else
2698 rv = VPPCOM_EINVAL;
2699 break;
2700
2701 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2702 if (buffer && buflen && (*buflen >= sizeof (u32)))
2703 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002704
2705 /* VPP-TBD */
2706 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002707 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002708 vcm->cfg.rx_fifo_size);
2709 *buflen = sizeof (u32);
2710
Florin Coras0d427d82018-06-27 03:24:07 -07002711 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2712 "buflen %d, #VPP-TBD#", getpid (),
2713 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002714 }
2715 else
2716 rv = VPPCOM_EINVAL;
2717 break;
2718
2719 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2720 if (buffer && buflen && (*buflen == sizeof (u32)))
2721 {
2722 /* VPP-TBD */
2723 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002724 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2725 "buflen %d, #VPP-TBD#", getpid (),
2726 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002727 }
2728 else
2729 rv = VPPCOM_EINVAL;
2730 break;
2731
2732 case VPPCOM_ATTR_GET_REUSEADDR:
2733 if (buffer && buflen && (*buflen >= sizeof (int)))
2734 {
2735 /* VPP-TBD */
2736 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2737 VCL_SESS_ATTR_REUSEADDR);
2738 *buflen = sizeof (int);
2739
Florin Coras0d427d82018-06-27 03:24:07 -07002740 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2741 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002742 }
2743 else
2744 rv = VPPCOM_EINVAL;
2745 break;
2746
Stevenb5a11602017-10-11 09:59:30 -07002747 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002748 if (buffer && buflen && (*buflen == sizeof (int)) &&
2749 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2750 {
2751 /* VPP-TBD */
2752 if (*(int *) buffer)
2753 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2754 else
2755 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2756
Florin Coras0d427d82018-06-27 03:24:07 -07002757 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2758 " #VPP-TBD#", getpid (),
2759 VCL_SESS_ATTR_TEST (session->attr,
2760 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002761 }
2762 else
2763 rv = VPPCOM_EINVAL;
2764 break;
2765
2766 case VPPCOM_ATTR_GET_REUSEPORT:
2767 if (buffer && buflen && (*buflen >= sizeof (int)))
2768 {
2769 /* VPP-TBD */
2770 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2771 VCL_SESS_ATTR_REUSEPORT);
2772 *buflen = sizeof (int);
2773
Florin Coras0d427d82018-06-27 03:24:07 -07002774 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2775 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002776 }
2777 else
2778 rv = VPPCOM_EINVAL;
2779 break;
2780
2781 case VPPCOM_ATTR_SET_REUSEPORT:
2782 if (buffer && buflen && (*buflen == sizeof (int)) &&
2783 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2784 {
2785 /* VPP-TBD */
2786 if (*(int *) buffer)
2787 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2788 else
2789 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2790
Florin Coras0d427d82018-06-27 03:24:07 -07002791 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2792 " #VPP-TBD#", getpid (),
2793 VCL_SESS_ATTR_TEST (session->attr,
2794 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002795 }
2796 else
2797 rv = VPPCOM_EINVAL;
2798 break;
2799
2800 case VPPCOM_ATTR_GET_BROADCAST:
2801 if (buffer && buflen && (*buflen >= sizeof (int)))
2802 {
2803 /* VPP-TBD */
2804 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2805 VCL_SESS_ATTR_BROADCAST);
2806 *buflen = sizeof (int);
2807
Florin Coras0d427d82018-06-27 03:24:07 -07002808 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2809 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002810 }
2811 else
2812 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002813 break;
2814
2815 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05002816 if (buffer && buflen && (*buflen == sizeof (int)))
2817 {
2818 /* VPP-TBD */
2819 if (*(int *) buffer)
2820 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2821 else
2822 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2823
Florin Coras0d427d82018-06-27 03:24:07 -07002824 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2825 "#VPP-TBD#", getpid (),
2826 VCL_SESS_ATTR_TEST (session->attr,
2827 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002828 }
2829 else
2830 rv = VPPCOM_EINVAL;
2831 break;
2832
2833 case VPPCOM_ATTR_GET_V6ONLY:
2834 if (buffer && buflen && (*buflen >= sizeof (int)))
2835 {
2836 /* VPP-TBD */
2837 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2838 VCL_SESS_ATTR_V6ONLY);
2839 *buflen = sizeof (int);
2840
Florin Coras0d427d82018-06-27 03:24:07 -07002841 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2842 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002843 }
2844 else
2845 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002846 break;
2847
2848 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05002849 if (buffer && buflen && (*buflen == sizeof (int)))
2850 {
2851 /* VPP-TBD */
2852 if (*(int *) buffer)
2853 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2854 else
2855 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2856
Florin Coras0d427d82018-06-27 03:24:07 -07002857 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2858 "#VPP-TBD#", getpid (),
2859 VCL_SESS_ATTR_TEST (session->attr,
2860 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002861 }
2862 else
2863 rv = VPPCOM_EINVAL;
2864 break;
2865
2866 case VPPCOM_ATTR_GET_KEEPALIVE:
2867 if (buffer && buflen && (*buflen >= sizeof (int)))
2868 {
2869 /* VPP-TBD */
2870 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2871 VCL_SESS_ATTR_KEEPALIVE);
2872 *buflen = sizeof (int);
2873
Florin Coras0d427d82018-06-27 03:24:07 -07002874 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
2875 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002876 }
2877 else
2878 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002879 break;
Stevenbccd3392017-10-12 20:42:21 -07002880
2881 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05002882 if (buffer && buflen && (*buflen == sizeof (int)))
2883 {
2884 /* VPP-TBD */
2885 if (*(int *) buffer)
2886 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2887 else
2888 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2889
Florin Coras0d427d82018-06-27 03:24:07 -07002890 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
2891 "#VPP-TBD#", getpid (),
2892 VCL_SESS_ATTR_TEST (session->attr,
2893 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002894 }
2895 else
2896 rv = VPPCOM_EINVAL;
2897 break;
2898
2899 case VPPCOM_ATTR_GET_TCP_NODELAY:
2900 if (buffer && buflen && (*buflen >= sizeof (int)))
2901 {
2902 /* VPP-TBD */
2903 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2904 VCL_SESS_ATTR_TCP_NODELAY);
2905 *buflen = sizeof (int);
2906
Florin Coras0d427d82018-06-27 03:24:07 -07002907 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
2908 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002909 }
2910 else
2911 rv = VPPCOM_EINVAL;
2912 break;
2913
2914 case VPPCOM_ATTR_SET_TCP_NODELAY:
2915 if (buffer && buflen && (*buflen == sizeof (int)))
2916 {
2917 /* VPP-TBD */
2918 if (*(int *) buffer)
2919 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2920 else
2921 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2922
Florin Coras0d427d82018-06-27 03:24:07 -07002923 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
2924 "#VPP-TBD#", getpid (),
2925 VCL_SESS_ATTR_TEST (session->attr,
2926 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002927 }
2928 else
2929 rv = VPPCOM_EINVAL;
2930 break;
2931
2932 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
2933 if (buffer && buflen && (*buflen >= sizeof (int)))
2934 {
2935 /* VPP-TBD */
2936 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2937 VCL_SESS_ATTR_TCP_KEEPIDLE);
2938 *buflen = sizeof (int);
2939
Florin Coras0d427d82018-06-27 03:24:07 -07002940 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
2941 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002942 }
2943 else
2944 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07002945 break;
2946
2947 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05002948 if (buffer && buflen && (*buflen == sizeof (int)))
2949 {
2950 /* VPP-TBD */
2951 if (*(int *) buffer)
2952 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2953 else
2954 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2955
Florin Coras0d427d82018-06-27 03:24:07 -07002956 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
2957 "#VPP-TBD#", getpid (),
2958 VCL_SESS_ATTR_TEST (session->attr,
2959 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002960 }
2961 else
2962 rv = VPPCOM_EINVAL;
2963 break;
2964
2965 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
2966 if (buffer && buflen && (*buflen >= sizeof (int)))
2967 {
2968 /* VPP-TBD */
2969 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2970 VCL_SESS_ATTR_TCP_KEEPINTVL);
2971 *buflen = sizeof (int);
2972
Florin Coras0d427d82018-06-27 03:24:07 -07002973 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
2974 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002975 }
2976 else
2977 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07002978 break;
2979
2980 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05002981 if (buffer && buflen && (*buflen == sizeof (int)))
2982 {
2983 /* VPP-TBD */
2984 if (*(int *) buffer)
2985 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2986 else
2987 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2988
Florin Coras0d427d82018-06-27 03:24:07 -07002989 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
2990 "#VPP-TBD#", getpid (),
2991 VCL_SESS_ATTR_TEST (session->attr,
2992 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002993 }
2994 else
2995 rv = VPPCOM_EINVAL;
2996 break;
2997
2998 case VPPCOM_ATTR_GET_TCP_USER_MSS:
2999 if (buffer && buflen && (*buflen >= sizeof (u32)))
3000 {
3001 /* VPP-TBD */
3002 *(u32 *) buffer = session->user_mss;
3003 *buflen = sizeof (int);
3004
Florin Coras0d427d82018-06-27 03:24:07 -07003005 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3006 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003007 }
3008 else
3009 rv = VPPCOM_EINVAL;
3010 break;
3011
3012 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3013 if (buffer && buflen && (*buflen == sizeof (u32)))
3014 {
3015 /* VPP-TBD */
3016 session->user_mss = *(u32 *) buffer;
3017
Florin Coras0d427d82018-06-27 03:24:07 -07003018 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3019 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003020 }
3021 else
3022 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003023 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003024
3025 default:
3026 rv = VPPCOM_EINVAL;
3027 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003028 }
3029
3030done:
Dave Wallace7e607a72018-06-18 18:41:32 -04003031 VCL_SESSION_UNLOCK ();
Dave Wallace35830af2017-10-09 01:43:42 -04003032 return rv;
3033}
3034
Stevenac1f96d2017-10-24 16:03:58 -07003035int
3036vppcom_session_recvfrom (uint32_t session_index, void *buffer,
3037 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3038{
Stevenac1f96d2017-10-24 16:03:58 -07003039 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003040 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003041
3042 if (ep)
3043 {
Dave Wallace7e607a72018-06-18 18:41:32 -04003044 VCL_SESSION_LOCK ();
Stevenac1f96d2017-10-24 16:03:58 -07003045 rv = vppcom_session_at_index (session_index, &session);
3046 if (PREDICT_FALSE (rv))
3047 {
Dave Wallace7e607a72018-06-18 18:41:32 -04003048 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -07003049 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
3050 getpid (), session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04003051 VCL_SESSION_UNLOCK ();
Florin Coras460dce62018-07-27 05:45:06 -07003052 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003053 }
Florin Coras7e12d942018-06-27 14:32:43 -07003054 ep->is_ip4 = session->transport.is_ip4;
3055 ep->port = session->transport.rmt_port;
Dave Wallace7e607a72018-06-18 18:41:32 -04003056 VCL_SESSION_UNLOCK ();
Stevenac1f96d2017-10-24 16:03:58 -07003057 }
Steven58f464e2017-10-25 12:33:12 -07003058
3059 if (flags == 0)
Stevenac1f96d2017-10-24 16:03:58 -07003060 rv = vppcom_session_read (session_index, buffer, buflen);
3061 else if (flags & MSG_PEEK)
Steven58f464e2017-10-25 12:33:12 -07003062 rv = vppcom_session_peek (session_index, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003063 else
3064 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003065 clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
3066 getpid (), flags);
Florin Coras460dce62018-07-27 05:45:06 -07003067 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003068 }
3069
Florin Coras99368312018-08-02 10:45:44 -07003070 if (ep)
3071 {
3072 if (session->transport.is_ip4)
3073 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
3074 sizeof (ip4_address_t));
3075 else
3076 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
3077 sizeof (ip6_address_t));
3078 }
Florin Coras460dce62018-07-27 05:45:06 -07003079
Stevenac1f96d2017-10-24 16:03:58 -07003080 return rv;
3081}
3082
3083int
3084vppcom_session_sendto (uint32_t session_index, void *buffer,
3085 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3086{
Dave Wallace617dffa2017-10-26 14:47:06 -04003087 if (!buffer)
3088 return VPPCOM_EINVAL;
3089
3090 if (ep)
3091 {
3092 // TBD
3093 return VPPCOM_EINVAL;
3094 }
3095
3096 if (flags)
3097 {
3098 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003099 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3100 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003101 }
3102
3103 return (vppcom_session_write (session_index, buffer, buflen));
Stevenac1f96d2017-10-24 16:03:58 -07003104}
3105
Dave Wallace048b1d62018-01-03 22:24:41 -05003106int
3107vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3108{
3109 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
3110 u32 i, keep_trying = 1;
3111 int rv, num_ev = 0;
3112
Florin Coras0d427d82018-06-27 03:24:07 -07003113 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3114 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003115
3116 if (!vp)
3117 return VPPCOM_EFAULT;
3118
3119 do
3120 {
Florin Coras7e12d942018-06-27 14:32:43 -07003121 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003122
3123 for (i = 0; i < n_sids; i++)
3124 {
3125 ASSERT (vp[i].revents);
3126
Dave Wallace7e607a72018-06-18 18:41:32 -04003127 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
3128 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05003129
3130 if (*vp[i].revents)
3131 *vp[i].revents = 0;
3132
3133 if (POLLIN & vp[i].events)
3134 {
Dave Wallace7e607a72018-06-18 18:41:32 -04003135 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
Florin Coras54693d22018-07-17 10:46:29 -07003136 rv = vppcom_session_read_ready (session);
Dave Wallace7e607a72018-06-18 18:41:32 -04003137 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05003138 if (rv > 0)
3139 {
3140 *vp[i].revents |= POLLIN;
3141 num_ev++;
3142 }
3143 else if (rv < 0)
3144 {
3145 switch (rv)
3146 {
3147 case VPPCOM_ECONNRESET:
3148 *vp[i].revents = POLLHUP;
3149 break;
3150
3151 default:
3152 *vp[i].revents = POLLERR;
3153 break;
3154 }
3155 num_ev++;
3156 }
3157 }
3158
3159 if (POLLOUT & vp[i].events)
3160 {
Dave Wallace7e607a72018-06-18 18:41:32 -04003161 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003162 rv = vppcom_session_write_ready (session, vp[i].sid);
Dave Wallace7e607a72018-06-18 18:41:32 -04003163 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05003164 if (rv > 0)
3165 {
3166 *vp[i].revents |= POLLOUT;
3167 num_ev++;
3168 }
3169 else if (rv < 0)
3170 {
3171 switch (rv)
3172 {
3173 case VPPCOM_ECONNRESET:
3174 *vp[i].revents = POLLHUP;
3175 break;
3176
3177 default:
3178 *vp[i].revents = POLLERR;
3179 break;
3180 }
3181 num_ev++;
3182 }
3183 }
3184
Dave Wallace7e607a72018-06-18 18:41:32 -04003185 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003186 {
3187 done:
3188 *vp[i].revents = POLLNVAL;
3189 num_ev++;
3190 }
3191 }
3192 if (wait_for_time != -1)
3193 keep_trying = (clib_time_now (&vcm->clib_time) <= timeout) ? 1 : 0;
3194 }
3195 while ((num_ev == 0) && keep_trying);
3196
3197 if (VPPCOM_DEBUG > 3)
3198 {
3199 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3200 for (i = 0; i < n_sids; i++)
3201 {
3202 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3203 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
3204 vp[i].events, *vp[i].revents);
3205 }
3206 }
3207 return num_ev;
3208}
3209
Florin Coras99368312018-08-02 10:45:44 -07003210int
3211vppcom_mq_epoll_fd (void)
3212{
3213 return vcm->mqs_epfd;
3214}
3215
Dave Wallacee22aa742017-10-20 12:30:38 -04003216/*
3217 * fd.io coding-style-patch-verification: ON
3218 *
3219 * Local Variables:
3220 * eval: (c-set-style "gnu")
3221 * End:
3222 */