vcl: add support for app socket api
[vpp.git] / src / vcl / vppcom.c
1 /*
2  * Copyright (c) 2017-2019 Cisco and/or its affiliates.
3  * 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>
18 #include <vcl/vppcom.h>
19 #include <vcl/vcl_debug.h>
20 #include <vcl/vcl_private.h>
21 #include <svm/fifo_segment.h>
22
23 __thread uword __vcl_worker_index = ~0;
24
25 static int
26 vcl_segment_is_not_mounted (vcl_worker_t * wrk, u64 segment_handle)
27 {
28   u32 segment_index;
29
30   if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
31     return 0;
32
33   segment_index = vcl_segment_table_lookup (segment_handle);
34   if (segment_index != VCL_INVALID_SEGMENT_INDEX)
35     return 0;
36
37   return 1;
38 }
39
40 static inline int
41 vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
42 {
43   svm_msg_q_msg_t *msg;
44   u32 n_msgs;
45   int i;
46
47   n_msgs = clib_min (svm_msg_q_size (mq), n_max_msg);
48   for (i = 0; i < n_msgs; i++)
49     {
50       vec_add2 (wrk->mq_msg_vector, msg, 1);
51       svm_msg_q_sub_w_lock (mq, msg);
52     }
53   return n_msgs;
54 }
55
56 const char *
57 vppcom_session_state_str (vcl_session_state_t state)
58 {
59   char *st;
60
61   switch (state)
62     {
63     case STATE_CLOSED:
64       st = "STATE_CLOSED";
65       break;
66
67     case STATE_CONNECT:
68       st = "STATE_CONNECT";
69       break;
70
71     case STATE_LISTEN:
72       st = "STATE_LISTEN";
73       break;
74
75     case STATE_ACCEPT:
76       st = "STATE_ACCEPT";
77       break;
78
79     case STATE_VPP_CLOSING:
80       st = "STATE_VPP_CLOSING";
81       break;
82
83     case STATE_DISCONNECT:
84       st = "STATE_DISCONNECT";
85       break;
86
87     case STATE_DETACHED:
88       st = "STATE_DETACHED";
89       break;
90
91     case STATE_UPDATED:
92       st = "STATE_UPDATED";
93       break;
94
95     case STATE_LISTEN_NO_MQ:
96       st = "STATE_LISTEN_NO_MQ";
97       break;
98
99     default:
100       st = "UNKNOWN_STATE";
101       break;
102     }
103
104   return st;
105 }
106
107 u8 *
108 format_ip4_address (u8 * s, va_list * args)
109 {
110   u8 *a = va_arg (*args, u8 *);
111   return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
112 }
113
114 u8 *
115 format_ip6_address (u8 * s, va_list * args)
116 {
117   ip6_address_t *a = va_arg (*args, ip6_address_t *);
118   u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
119
120   i_max_n_zero = ARRAY_LEN (a->as_u16);
121   max_n_zeros = 0;
122   i_first_zero = i_max_n_zero;
123   n_zeros = 0;
124   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
125     {
126       u32 is_zero = a->as_u16[i] == 0;
127       if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
128         {
129           i_first_zero = i;
130           n_zeros = 0;
131         }
132       n_zeros += is_zero;
133       if ((!is_zero && n_zeros > max_n_zeros)
134           || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
135         {
136           i_max_n_zero = i_first_zero;
137           max_n_zeros = n_zeros;
138           i_first_zero = ARRAY_LEN (a->as_u16);
139           n_zeros = 0;
140         }
141     }
142
143   last_double_colon = 0;
144   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
145     {
146       if (i == i_max_n_zero && max_n_zeros > 1)
147         {
148           s = format (s, "::");
149           i += max_n_zeros - 1;
150           last_double_colon = 1;
151         }
152       else
153         {
154           s = format (s, "%s%x",
155                       (last_double_colon || i == 0) ? "" : ":",
156                       clib_net_to_host_u16 (a->as_u16[i]));
157           last_double_colon = 0;
158         }
159     }
160
161   return s;
162 }
163
164 /* Format an IP46 address. */
165 u8 *
166 format_ip46_address (u8 * s, va_list * args)
167 {
168   ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
169   ip46_type_t type = va_arg (*args, ip46_type_t);
170   int is_ip4 = 1;
171
172   switch (type)
173     {
174     case IP46_TYPE_ANY:
175       is_ip4 = ip46_address_is_ip4 (ip46);
176       break;
177     case IP46_TYPE_IP4:
178       is_ip4 = 1;
179       break;
180     case IP46_TYPE_IP6:
181       is_ip4 = 0;
182       break;
183     }
184
185   return is_ip4 ?
186     format (s, "%U", format_ip4_address, &ip46->ip4) :
187     format (s, "%U", format_ip6_address, &ip46->ip6);
188 }
189
190 /*
191  * VPPCOM Utility Functions
192  */
193
194 static void
195 vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
196 {
197   app_session_evt_t _app_evt, *app_evt = &_app_evt;
198   session_listen_msg_t *mp;
199   svm_msg_q_t *mq;
200
201   mq = vcl_worker_ctrl_mq (wrk);
202   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
203   mp = (session_listen_msg_t *) app_evt->evt->data;
204   memset (mp, 0, sizeof (*mp));
205   mp->client_index = wrk->bapi_client_index;
206   mp->context = s->session_index;
207   mp->wrk_index = wrk->vpp_wrk_index;
208   mp->is_ip4 = s->transport.is_ip4;
209   clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
210   mp->port = s->transport.lcl_port;
211   mp->proto = s->session_type;
212   if (s->flags & VCL_SESSION_F_CONNECTED)
213     mp->flags = TRANSPORT_CFG_F_CONNECTED;
214   app_send_ctrl_evt_to_vpp (mq, app_evt);
215 }
216
217 static void
218 vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
219 {
220   app_session_evt_t _app_evt, *app_evt = &_app_evt;
221   session_connect_msg_t *mp;
222   svm_msg_q_t *mq;
223
224   mq = vcl_worker_ctrl_mq (wrk);
225   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
226   mp = (session_connect_msg_t *) app_evt->evt->data;
227   memset (mp, 0, sizeof (*mp));
228   mp->client_index = wrk->bapi_client_index;
229   mp->context = s->session_index;
230   mp->wrk_index = wrk->vpp_wrk_index;
231   mp->is_ip4 = s->transport.is_ip4;
232   mp->parent_handle = s->parent_handle;
233   clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
234   clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
235   mp->port = s->transport.rmt_port;
236   mp->lcl_port = s->transport.lcl_port;
237   mp->proto = s->session_type;
238   if (s->flags & VCL_SESSION_F_CONNECTED)
239     mp->flags |= TRANSPORT_CFG_F_CONNECTED;
240   app_send_ctrl_evt_to_vpp (mq, app_evt);
241 }
242
243 void
244 vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
245 {
246   app_session_evt_t _app_evt, *app_evt = &_app_evt;
247   session_unlisten_msg_t *mp;
248   svm_msg_q_t *mq;
249
250   mq = vcl_worker_ctrl_mq (wrk);
251   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
252   mp = (session_unlisten_msg_t *) app_evt->evt->data;
253   memset (mp, 0, sizeof (*mp));
254   mp->client_index = wrk->bapi_client_index;
255   mp->wrk_index = wrk->vpp_wrk_index;
256   mp->handle = s->vpp_handle;
257   mp->context = wrk->wrk_index;
258   app_send_ctrl_evt_to_vpp (mq, app_evt);
259 }
260
261 static void
262 vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
263 {
264   app_session_evt_t _app_evt, *app_evt = &_app_evt;
265   session_disconnect_msg_t *mp;
266   svm_msg_q_t *mq;
267
268   /* Send to thread that owns the session */
269   mq = s->vpp_evt_q;
270   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
271   mp = (session_disconnect_msg_t *) app_evt->evt->data;
272   memset (mp, 0, sizeof (*mp));
273   mp->client_index = wrk->bapi_client_index;
274   mp->handle = s->vpp_handle;
275   app_send_ctrl_evt_to_vpp (mq, app_evt);
276 }
277
278 static void
279 vcl_send_app_detach (vcl_worker_t * wrk)
280 {
281   app_session_evt_t _app_evt, *app_evt = &_app_evt;
282   session_app_detach_msg_t *mp;
283   svm_msg_q_t *mq;
284
285   mq = vcl_worker_ctrl_mq (wrk);
286   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
287   mp = (session_app_detach_msg_t *) app_evt->evt->data;
288   memset (mp, 0, sizeof (*mp));
289   mp->client_index = wrk->bapi_client_index;
290   app_send_ctrl_evt_to_vpp (mq, app_evt);
291 }
292
293 static void
294 vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
295                                  session_handle_t handle, int retval)
296 {
297   app_session_evt_t _app_evt, *app_evt = &_app_evt;
298   session_accepted_reply_msg_t *rmp;
299   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
300   rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
301   rmp->handle = handle;
302   rmp->context = context;
303   rmp->retval = retval;
304   app_send_ctrl_evt_to_vpp (mq, app_evt);
305 }
306
307 static void
308 vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
309                                      session_handle_t handle, int retval)
310 {
311   app_session_evt_t _app_evt, *app_evt = &_app_evt;
312   session_disconnected_reply_msg_t *rmp;
313   app_alloc_ctrl_evt_to_vpp (mq, app_evt,
314                              SESSION_CTRL_EVT_DISCONNECTED_REPLY);
315   rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
316   rmp->handle = handle;
317   rmp->context = context;
318   rmp->retval = retval;
319   app_send_ctrl_evt_to_vpp (mq, app_evt);
320 }
321
322 static void
323 vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
324                               session_handle_t handle, int retval)
325 {
326   app_session_evt_t _app_evt, *app_evt = &_app_evt;
327   session_reset_reply_msg_t *rmp;
328   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
329   rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
330   rmp->handle = handle;
331   rmp->context = context;
332   rmp->retval = retval;
333   app_send_ctrl_evt_to_vpp (mq, app_evt);
334 }
335
336 void
337 vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
338                                 u32 wrk_index)
339 {
340   app_session_evt_t _app_evt, *app_evt = &_app_evt;
341   session_worker_update_msg_t *mp;
342   svm_msg_q_t *mq;
343
344   mq = vcl_session_vpp_evt_q (wrk, s);
345   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
346   mp = (session_worker_update_msg_t *) app_evt->evt->data;
347   mp->client_index = wrk->bapi_client_index;
348   mp->handle = s->vpp_handle;
349   mp->req_wrk_index = wrk->vpp_wrk_index;
350   mp->wrk_index = wrk_index;
351   app_send_ctrl_evt_to_vpp (mq, app_evt);
352 }
353
354 int
355 vcl_send_worker_rpc (u32 dst_wrk_index, void *data, u32 data_len)
356 {
357   app_session_evt_t _app_evt, *app_evt = &_app_evt;
358   session_app_wrk_rpc_msg_t *mp;
359   vcl_worker_t *dst_wrk, *wrk;
360   svm_msg_q_t *mq;
361   int ret = -1;
362
363   if (data_len > sizeof (mp->data))
364     goto done;
365
366   clib_spinlock_lock (&vcm->workers_lock);
367
368   dst_wrk = vcl_worker_get_if_valid (dst_wrk_index);
369   if (!dst_wrk)
370     goto done;
371
372   wrk = vcl_worker_get_current ();
373   mq = vcl_worker_ctrl_mq (wrk);
374   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_WRK_RPC);
375   mp = (session_app_wrk_rpc_msg_t *) app_evt->evt->data;
376   mp->client_index = wrk->bapi_client_index;
377   mp->wrk_index = dst_wrk->vpp_wrk_index;
378   clib_memcpy (mp->data, data, data_len);
379   app_send_ctrl_evt_to_vpp (mq, app_evt);
380   ret = 0;
381
382 done:
383   clib_spinlock_unlock (&vcm->workers_lock);
384   return ret;
385 }
386
387 static u32
388 vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
389                               u32 ls_index)
390 {
391   vcl_session_t *session, *listen_session;
392   svm_fifo_t *rx_fifo, *tx_fifo;
393   u32 vpp_wrk_index;
394   svm_msg_q_t *evt_q;
395
396   session = vcl_session_alloc (wrk);
397
398   listen_session = vcl_session_get (wrk, ls_index);
399   if (listen_session->vpp_handle != mp->listener_handle)
400     {
401       VDBG (0, "ERROR: listener handle %lu does not match session %u",
402             mp->listener_handle, ls_index);
403       goto error;
404     }
405
406   if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
407     {
408       VDBG (0, "ERROR: segment for session %u is not mounted!",
409             session->session_index);
410       goto error;
411     }
412
413   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
414   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
415   session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
416                                          svm_msg_q_t *);
417   rx_fifo->client_session_index = session->session_index;
418   tx_fifo->client_session_index = session->session_index;
419   rx_fifo->client_thread_index = vcl_get_worker_index ();
420   tx_fifo->client_thread_index = vcl_get_worker_index ();
421   vpp_wrk_index = tx_fifo->master_thread_index;
422   vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
423   wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
424
425   session->vpp_handle = mp->handle;
426   session->vpp_thread_index = rx_fifo->master_thread_index;
427   session->rx_fifo = rx_fifo;
428   session->tx_fifo = tx_fifo;
429
430   session->session_state = STATE_ACCEPT;
431   session->transport.rmt_port = mp->rmt.port;
432   session->transport.is_ip4 = mp->rmt.is_ip4;
433   clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
434                     sizeof (ip46_address_t));
435
436   vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
437   session->transport.lcl_port = listen_session->transport.lcl_port;
438   session->transport.lcl_ip = listen_session->transport.lcl_ip;
439   session->session_type = listen_session->session_type;
440   session->is_dgram = vcl_proto_is_dgram (session->session_type);
441   session->listener_index = listen_session->session_index;
442   listen_session->n_accepted_sessions++;
443
444   VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
445         " port %d queue %p!", session->session_index, mp->handle,
446         mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
447         mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
448         clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
449   vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
450
451   vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
452                                    session->vpp_handle, 0);
453
454   return session->session_index;
455
456 error:
457   evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
458   vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
459                                    VNET_API_ERROR_INVALID_ARGUMENT);
460   vcl_session_free (wrk, session);
461   return VCL_INVALID_SESSION_INDEX;
462 }
463
464 static u32
465 vcl_session_connected_handler (vcl_worker_t * wrk,
466                                session_connected_msg_t * mp)
467 {
468   u32 session_index, vpp_wrk_index;
469   svm_fifo_t *rx_fifo, *tx_fifo;
470   vcl_session_t *session = 0;
471
472   session_index = mp->context;
473   session = vcl_session_get (wrk, session_index);
474   if (!session)
475     {
476       VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
477             mp->handle, session_index);
478       return VCL_INVALID_SESSION_INDEX;
479     }
480   if (mp->retval)
481     {
482       VDBG (0, "ERROR: session index %u: connect failed! %U",
483             session_index, format_session_error, mp->retval);
484       session->session_state = STATE_DETACHED | STATE_DISCONNECT;
485       session->vpp_handle = mp->handle;
486       return session_index;
487     }
488
489   session->vpp_handle = mp->handle;
490   session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
491                                          svm_msg_q_t *);
492   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
493   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
494   if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
495     {
496       VDBG (0, "segment for session %u is not mounted!",
497             session->session_index);
498       session->session_state = STATE_DETACHED | STATE_DISCONNECT;
499       vcl_send_session_disconnect (wrk, session);
500       return session_index;
501     }
502
503   rx_fifo->client_session_index = session_index;
504   tx_fifo->client_session_index = session_index;
505   rx_fifo->client_thread_index = vcl_get_worker_index ();
506   tx_fifo->client_thread_index = vcl_get_worker_index ();
507
508   vpp_wrk_index = tx_fifo->master_thread_index;
509   vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
510   wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
511
512   if (mp->ct_rx_fifo)
513     {
514       session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
515       session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
516       if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
517         {
518           VDBG (0, "ct segment for session %u is not mounted!",
519                 session->session_index);
520           session->session_state = STATE_DETACHED | STATE_DISCONNECT;
521           vcl_send_session_disconnect (wrk, session);
522           return session_index;
523         }
524     }
525
526   session->rx_fifo = rx_fifo;
527   session->tx_fifo = tx_fifo;
528   session->vpp_thread_index = rx_fifo->master_thread_index;
529   session->transport.is_ip4 = mp->lcl.is_ip4;
530   clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
531                     sizeof (session->transport.lcl_ip));
532   session->transport.lcl_port = mp->lcl.port;
533
534   /* Application closed session before connect reply */
535   if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK)
536       && session->session_state == STATE_CLOSED)
537     vcl_send_session_disconnect (wrk, session);
538   else
539     session->session_state = STATE_CONNECT;
540
541   /* Add it to lookup table */
542   vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
543
544   VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
545         " refcnt %d", session_index, mp->handle, session->rx_fifo,
546         session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
547
548   return session_index;
549 }
550
551 static int
552 vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
553 {
554   vcl_session_msg_t *accepted_msg;
555   int i;
556
557   for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
558     {
559       accepted_msg = &session->accept_evts_fifo[i];
560       if (accepted_msg->accepted_msg.handle == handle)
561         {
562           accepted_msg->flags |= flags;
563           return 1;
564         }
565     }
566   return 0;
567 }
568
569 static u32
570 vcl_session_reset_handler (vcl_worker_t * wrk,
571                            session_reset_msg_t * reset_msg)
572 {
573   vcl_session_t *session;
574   u32 sid;
575
576   sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
577   session = vcl_session_get (wrk, sid);
578   if (!session)
579     {
580       VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
581       return VCL_INVALID_SESSION_INDEX;
582     }
583
584   /* Caught a reset before actually accepting the session */
585   if (session->session_state == STATE_LISTEN)
586     {
587
588       if (!vcl_flag_accepted_session (session, reset_msg->handle,
589                                       VCL_ACCEPTED_F_RESET))
590         VDBG (0, "session was not accepted!");
591       return VCL_INVALID_SESSION_INDEX;
592     }
593
594   if (session->session_state != STATE_CLOSED)
595     session->session_state = STATE_DISCONNECT;
596   VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
597   return sid;
598 }
599
600 static u32
601 vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
602 {
603   vcl_session_t *session;
604   u32 sid = mp->context;
605
606   session = vcl_session_get (wrk, sid);
607   if (mp->retval)
608     {
609       VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
610             format_session_error, mp->retval);
611       if (session)
612         {
613           session->session_state = STATE_DETACHED;
614           session->vpp_handle = mp->handle;
615           return sid;
616         }
617       else
618         {
619           VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
620                 sid, mp->handle);
621           return VCL_INVALID_SESSION_INDEX;
622         }
623     }
624
625   session->vpp_handle = mp->handle;
626   session->transport.is_ip4 = mp->lcl_is_ip4;
627   clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
628                     sizeof (ip46_address_t));
629   session->transport.lcl_port = mp->lcl_port;
630   vcl_session_table_add_listener (wrk, mp->handle, sid);
631   session->session_state = STATE_LISTEN;
632
633   session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
634   vec_validate (wrk->vpp_event_queues, 0);
635   wrk->vpp_event_queues[0] = session->vpp_evt_q;
636
637   if (vcl_session_is_cl (session))
638     {
639       svm_fifo_t *rx_fifo, *tx_fifo;
640       session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
641       rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
642       rx_fifo->client_session_index = sid;
643       tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
644       tx_fifo->client_session_index = sid;
645       session->rx_fifo = rx_fifo;
646       session->tx_fifo = tx_fifo;
647     }
648
649   VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
650   return sid;
651 }
652
653 static void
654 vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
655 {
656   session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
657   vcl_session_t *s;
658
659   s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
660   if (!s)
661     {
662       VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
663       return;
664     }
665   if (s->session_state != STATE_DISCONNECT)
666     {
667       /* Connected udp listener */
668       if (s->session_type == VPPCOM_PROTO_UDP
669           && s->session_state == STATE_CLOSED)
670         return;
671
672       VDBG (0, "Unlisten session in wrong state %llx", mp->handle);
673       return;
674     }
675
676   if (mp->retval)
677     VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
678           s->session_index, mp->handle, format_session_error, mp->retval);
679
680   if (mp->context != wrk->wrk_index)
681     VDBG (0, "wrong context");
682
683   vcl_session_table_del_vpp_handle (wrk, mp->handle);
684   vcl_session_free (wrk, s);
685 }
686
687 static void
688 vcl_session_migrated_handler (vcl_worker_t * wrk, void *data)
689 {
690   session_migrated_msg_t *mp = (session_migrated_msg_t *) data;
691   vcl_session_t *s;
692
693   s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
694   if (!s)
695     {
696       VDBG (0, "Migrated notification with wrong handle %llx", mp->handle);
697       return;
698     }
699
700   s->vpp_thread_index = mp->vpp_thread_index;
701   s->vpp_handle = mp->new_handle;
702   s->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
703
704   vec_validate (wrk->vpp_event_queues, s->vpp_thread_index);
705   wrk->vpp_event_queues[s->vpp_thread_index] = s->vpp_evt_q;
706
707   vcl_session_table_del_vpp_handle (wrk, mp->handle);
708   vcl_session_table_add_vpp_handle (wrk, mp->new_handle, s->session_index);
709
710   /* Generate new tx event if we have outstanding data */
711   if (svm_fifo_has_event (s->tx_fifo))
712     app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
713                             SESSION_IO_EVT_TX, SVM_Q_WAIT);
714
715   VDBG (0, "Migrated 0x%lx to thread %u 0x%lx", mp->handle,
716         s->vpp_thread_index, mp->new_handle);
717 }
718
719 static vcl_session_t *
720 vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
721 {
722   vcl_session_msg_t *vcl_msg;
723   vcl_session_t *session;
724
725   session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
726   if (PREDICT_FALSE (session != 0))
727     VWRN ("session overlap handle %lu state %u!", msg->handle,
728           session->session_state);
729
730   session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
731   if (!session)
732     {
733       VERR ("couldn't find listen session: listener handle %llx",
734             msg->listener_handle);
735       return 0;
736     }
737
738   clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
739   vcl_msg->flags = 0;
740   vcl_msg->accepted_msg = *msg;
741   /* Session handle points to listener until fully accepted by app */
742   vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
743
744   return session;
745 }
746
747 static vcl_session_t *
748 vcl_session_disconnected_handler (vcl_worker_t * wrk,
749                                   session_disconnected_msg_t * msg)
750 {
751   vcl_session_t *session;
752
753   session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
754   if (!session)
755     {
756       VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
757       return 0;
758     }
759
760   /* Late disconnect notification on a session that has been closed */
761   if (session->session_state == STATE_CLOSED)
762     return 0;
763
764   /* Caught a disconnect before actually accepting the session */
765   if (session->session_state == STATE_LISTEN)
766     {
767       if (!vcl_flag_accepted_session (session, msg->handle,
768                                       VCL_ACCEPTED_F_CLOSED))
769         VDBG (0, "session was not accepted!");
770       return 0;
771     }
772
773   /* If not already reset change state */
774   if (session->session_state != STATE_DISCONNECT)
775     session->session_state = STATE_VPP_CLOSING;
776
777   return session;
778 }
779
780 static void
781 vcl_session_cleanup_handler (vcl_worker_t * wrk, void *data)
782 {
783   session_cleanup_msg_t *msg;
784   vcl_session_t *session;
785
786   msg = (session_cleanup_msg_t *) data;
787   session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
788   if (!session)
789     {
790       VDBG (0, "disconnect confirmed for unknown handle 0x%llx", msg->handle);
791       return;
792     }
793
794   if (msg->type == SESSION_CLEANUP_TRANSPORT)
795     {
796       /* Transport was cleaned up before we confirmed close. Probably the
797        * app is still waiting for some data that cannot be delivered.
798        * Confirm close to make sure everything is cleaned up */
799       if (session->session_state == STATE_VPP_CLOSING)
800         vcl_session_cleanup (wrk, session, vcl_session_handle (session),
801                              1 /* do_disconnect */ );
802       return;
803     }
804
805   vcl_session_table_del_vpp_handle (wrk, msg->handle);
806   /* Should not happen. App did not close the connection so don't free it. */
807   if (session->session_state != STATE_CLOSED)
808     {
809       VDBG (0, "app did not close session %d", session->session_index);
810       session->session_state = STATE_DETACHED;
811       session->vpp_handle = VCL_INVALID_SESSION_HANDLE;
812       return;
813     }
814   vcl_session_free (wrk, session);
815 }
816
817 static void
818 vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
819 {
820   session_req_worker_update_msg_t *msg;
821   vcl_session_t *s;
822
823   msg = (session_req_worker_update_msg_t *) data;
824   s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
825   if (!s)
826     return;
827
828   vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
829 }
830
831 static void
832 vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
833 {
834   session_worker_update_reply_msg_t *msg;
835   vcl_session_t *s;
836
837   msg = (session_worker_update_reply_msg_t *) data;
838   s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
839   if (!s)
840     {
841       VDBG (0, "unknown handle 0x%llx", msg->handle);
842       return;
843     }
844   if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
845     {
846       clib_warning ("segment for session %u is not mounted!",
847                     s->session_index);
848       return;
849     }
850
851   if (s->rx_fifo)
852     {
853       s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
854       s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
855       s->rx_fifo->client_session_index = s->session_index;
856       s->tx_fifo->client_session_index = s->session_index;
857       s->rx_fifo->client_thread_index = wrk->wrk_index;
858       s->tx_fifo->client_thread_index = wrk->wrk_index;
859     }
860   s->session_state = STATE_UPDATED;
861
862   VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
863         s->vpp_handle, wrk->wrk_index);
864 }
865
866 static int
867 vcl_api_recv_fd (vcl_worker_t * wrk, int *fds, int n_fds)
868 {
869
870   if (vcm->cfg.vpp_app_socket_api)
871     return vcl_sapi_recv_fds (wrk, fds, n_fds);
872
873   return vcl_bapi_recv_fds (wrk, fds, n_fds);
874 }
875
876 static void
877 vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
878 {
879   ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
880   session_app_add_segment_msg_t *msg;
881   u64 segment_handle;
882   int fd = -1;
883
884   msg = (session_app_add_segment_msg_t *) data;
885
886   if (msg->fd_flags)
887     {
888       vcl_api_recv_fd (wrk, &fd, 1);
889       seg_type = SSVM_SEGMENT_MEMFD;
890     }
891
892   segment_handle = msg->segment_handle;
893   if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
894     {
895       clib_warning ("invalid segment handle");
896       return;
897     }
898
899   if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
900                           seg_type, fd))
901     {
902       VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
903       return;
904     }
905
906   VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
907         msg->segment_size);
908 }
909
910 static void
911 vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
912 {
913   session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
914   vcl_segment_detach (msg->segment_handle);
915   VDBG (1, "Unmapped segment: %d", msg->segment_handle);
916 }
917
918 static void
919 vcl_worker_rpc_handler (vcl_worker_t * wrk, void *data)
920 {
921   if (!vcm->wrk_rpc_fn)
922     return;
923
924   (vcm->wrk_rpc_fn) (((session_app_wrk_rpc_msg_t *) data)->data);
925 }
926
927 static int
928 vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
929 {
930   session_disconnected_msg_t *disconnected_msg;
931   vcl_session_t *session;
932
933   switch (e->event_type)
934     {
935     case SESSION_IO_EVT_RX:
936     case SESSION_IO_EVT_TX:
937       session = vcl_session_get (wrk, e->session_index);
938       if (!session || !(session->session_state & STATE_OPEN))
939         break;
940       vec_add1 (wrk->unhandled_evts_vector, *e);
941       break;
942     case SESSION_CTRL_EVT_ACCEPTED:
943       vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
944       break;
945     case SESSION_CTRL_EVT_CONNECTED:
946       vcl_session_connected_handler (wrk,
947                                      (session_connected_msg_t *) e->data);
948       break;
949     case SESSION_CTRL_EVT_DISCONNECTED:
950       disconnected_msg = (session_disconnected_msg_t *) e->data;
951       session = vcl_session_disconnected_handler (wrk, disconnected_msg);
952       if (!session)
953         break;
954       VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
955             session->vpp_handle);
956       break;
957     case SESSION_CTRL_EVT_RESET:
958       vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
959       break;
960     case SESSION_CTRL_EVT_BOUND:
961       vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
962       break;
963     case SESSION_CTRL_EVT_UNLISTEN_REPLY:
964       vcl_session_unlisten_reply_handler (wrk, e->data);
965       break;
966     case SESSION_CTRL_EVT_MIGRATED:
967       vcl_session_migrated_handler (wrk, e->data);
968       break;
969     case SESSION_CTRL_EVT_CLEANUP:
970       vcl_session_cleanup_handler (wrk, e->data);
971       break;
972     case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
973       vcl_session_req_worker_update_handler (wrk, e->data);
974       break;
975     case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
976       vcl_session_worker_update_reply_handler (wrk, e->data);
977       break;
978     case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
979       vcl_session_app_add_segment_handler (wrk, e->data);
980       break;
981     case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
982       vcl_session_app_del_segment_handler (wrk, e->data);
983       break;
984     case SESSION_CTRL_EVT_APP_WRK_RPC:
985       vcl_worker_rpc_handler (wrk, e->data);
986       break;
987     default:
988       clib_warning ("unhandled %u", e->event_type);
989     }
990   return VPPCOM_OK;
991 }
992
993 static int
994 vppcom_wait_for_session_state_change (u32 session_index,
995                                       vcl_session_state_t state,
996                                       f64 wait_for_time)
997 {
998   vcl_worker_t *wrk = vcl_worker_get_current ();
999   f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
1000   vcl_session_t *volatile session;
1001   svm_msg_q_msg_t msg;
1002   session_event_t *e;
1003
1004   do
1005     {
1006       session = vcl_session_get (wrk, session_index);
1007       if (PREDICT_FALSE (!session))
1008         {
1009           return VPPCOM_EBADFD;
1010         }
1011       if (session->session_state & state)
1012         {
1013           return VPPCOM_OK;
1014         }
1015       if (session->session_state & STATE_DETACHED)
1016         {
1017           return VPPCOM_ECONNREFUSED;
1018         }
1019
1020       if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
1021         {
1022           usleep (100);
1023           continue;
1024         }
1025       e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
1026       vcl_handle_mq_event (wrk, e);
1027       svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1028     }
1029   while (clib_time_now (&wrk->clib_time) < timeout);
1030
1031   VDBG (0, "timeout waiting for state 0x%x (%s)", state,
1032         vppcom_session_state_str (state));
1033   vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
1034
1035   return VPPCOM_ETIMEDOUT;
1036 }
1037
1038 static void
1039 vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
1040 {
1041   vcl_session_state_t state;
1042   vcl_session_t *s;
1043   u32 *sip;
1044
1045   if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
1046     return;
1047
1048   vec_foreach (sip, wrk->pending_session_wrk_updates)
1049   {
1050     s = vcl_session_get (wrk, *sip);
1051     vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
1052     state = s->session_state;
1053     vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
1054     s->session_state = state;
1055   }
1056   vec_reset_length (wrk->pending_session_wrk_updates);
1057 }
1058
1059 void
1060 vcl_flush_mq_events (void)
1061 {
1062   vcl_worker_t *wrk = vcl_worker_get_current ();
1063   svm_msg_q_msg_t *msg;
1064   session_event_t *e;
1065   svm_msg_q_t *mq;
1066   int i;
1067
1068   mq = wrk->app_event_queue;
1069   svm_msg_q_lock (mq);
1070   vcl_mq_dequeue_batch (wrk, mq, ~0);
1071   svm_msg_q_unlock (mq);
1072
1073   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1074     {
1075       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1076       e = svm_msg_q_msg_data (mq, msg);
1077       vcl_handle_mq_event (wrk, e);
1078       svm_msg_q_free_msg (mq, msg);
1079     }
1080   vec_reset_length (wrk->mq_msg_vector);
1081   vcl_handle_pending_wrk_updates (wrk);
1082 }
1083
1084 static int
1085 vppcom_session_unbind (u32 session_handle)
1086 {
1087   vcl_worker_t *wrk = vcl_worker_get_current ();
1088   session_accepted_msg_t *accepted_msg;
1089   vcl_session_t *session = 0;
1090   vcl_session_msg_t *evt;
1091
1092   session = vcl_session_get_w_handle (wrk, session_handle);
1093   if (!session)
1094     return VPPCOM_EBADFD;
1095
1096   /* Flush pending accept events, if any */
1097   while (clib_fifo_elts (session->accept_evts_fifo))
1098     {
1099       clib_fifo_sub2 (session->accept_evts_fifo, evt);
1100       accepted_msg = &evt->accepted_msg;
1101       vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
1102       vcl_send_session_accepted_reply (session->vpp_evt_q,
1103                                        accepted_msg->context,
1104                                        session->vpp_handle, -1);
1105     }
1106   clib_fifo_free (session->accept_evts_fifo);
1107
1108   vcl_send_session_unlisten (wrk, session);
1109
1110   VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
1111         session->vpp_handle);
1112   vcl_evt (VCL_EVT_UNBIND, session);
1113
1114   session->vpp_handle = ~0;
1115   session->session_state = STATE_DISCONNECT;
1116
1117   return VPPCOM_OK;
1118 }
1119
1120 static int
1121 vppcom_session_disconnect (u32 session_handle)
1122 {
1123   vcl_worker_t *wrk = vcl_worker_get_current ();
1124   svm_msg_q_t *vpp_evt_q;
1125   vcl_session_t *session, *listen_session;
1126   vcl_session_state_t state;
1127   u64 vpp_handle;
1128
1129   session = vcl_session_get_w_handle (wrk, session_handle);
1130   if (!session)
1131     return VPPCOM_EBADFD;
1132
1133   vpp_handle = session->vpp_handle;
1134   state = session->session_state;
1135
1136   VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1137         vpp_handle, state, vppcom_session_state_str (state));
1138
1139   if (PREDICT_FALSE (state & STATE_LISTEN))
1140     {
1141       VDBG (0, "ERROR: Cannot disconnect a listen socket!");
1142       return VPPCOM_EBADFD;
1143     }
1144
1145   if (state & STATE_VPP_CLOSING)
1146     {
1147       vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
1148       vcl_send_session_disconnected_reply (vpp_evt_q, wrk->bapi_client_index,
1149                                            vpp_handle, 0);
1150       VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1151             session->session_index, vpp_handle);
1152     }
1153   else
1154     {
1155       /* Session doesn't have an event queue yet. Probably a non-blocking
1156        * connect. Wait for the reply */
1157       if (PREDICT_FALSE (!session->vpp_evt_q))
1158         return VPPCOM_OK;
1159
1160       VDBG (1, "session %u [0x%llx]: sending disconnect...",
1161             session->session_index, vpp_handle);
1162       vcl_send_session_disconnect (wrk, session);
1163     }
1164
1165   if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1166     {
1167       listen_session = vcl_session_get (wrk, session->listener_index);
1168       listen_session->n_accepted_sessions--;
1169     }
1170
1171   return VPPCOM_OK;
1172 }
1173
1174 /**
1175  * Handle app exit
1176  *
1177  * Notify vpp of the disconnect and mark the worker as free. If we're the
1178  * last worker, do a full cleanup otherwise, since we're probably a forked
1179  * child, avoid syscalls as much as possible. We might've lost privileges.
1180  */
1181 void
1182 vppcom_app_exit (void)
1183 {
1184   if (!pool_elts (vcm->workers))
1185     return;
1186   vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1187   vcl_set_worker_index (~0);
1188   vcl_elog_stop (vcm);
1189 }
1190
1191 static int
1192 vcl_api_attach (void)
1193 {
1194   if (vcm->cfg.vpp_app_socket_api)
1195     return vcl_sapi_attach ();
1196
1197   return vcl_bapi_attach ();
1198 }
1199
1200 static void
1201 vcl_api_detach (vcl_worker_t * wrk)
1202 {
1203   vcl_send_app_detach (wrk);
1204
1205   if (vcm->cfg.vpp_app_socket_api)
1206     return vcl_sapi_detach (wrk);
1207
1208   return vcl_bapi_disconnect_from_vpp ();
1209 }
1210
1211 /*
1212  * VPPCOM Public API functions
1213  */
1214 int
1215 vppcom_app_create (const char *app_name)
1216 {
1217   vppcom_cfg_t *vcl_cfg = &vcm->cfg;
1218   int rv;
1219
1220   if (vcm->is_init)
1221     {
1222       VDBG (1, "already initialized");
1223       return VPPCOM_EEXIST;
1224     }
1225
1226   vcm->is_init = 1;
1227   vppcom_cfg (&vcm->cfg);
1228   vcl_cfg = &vcm->cfg;
1229
1230   vcm->main_cpu = pthread_self ();
1231   vcm->main_pid = getpid ();
1232   vcm->app_name = format (0, "%s", app_name);
1233   fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1234                           20 /* timeout in secs */ );
1235   pool_alloc (vcm->workers, vcl_cfg->max_workers);
1236   clib_spinlock_init (&vcm->workers_lock);
1237   clib_rwlock_init (&vcm->segment_table_lock);
1238   atexit (vppcom_app_exit);
1239   vcl_elog_init (vcm);
1240
1241   /* Allocate default worker */
1242   vcl_worker_alloc_and_init ();
1243
1244   if ((rv = vcl_api_attach ()))
1245     return rv;
1246
1247   VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1248         vcm->workers[0].bapi_client_index, vcm->workers[0].bapi_client_index);
1249
1250   return VPPCOM_OK;
1251 }
1252
1253 void
1254 vppcom_app_destroy (void)
1255 {
1256   vcl_worker_t *wrk, *current_wrk;
1257   struct dlmallinfo mi;
1258   mspace heap;
1259
1260   if (!pool_elts (vcm->workers))
1261     return;
1262
1263   vcl_evt (VCL_EVT_DETACH, vcm);
1264
1265   current_wrk = vcl_worker_get_current ();
1266
1267   /* *INDENT-OFF* */
1268   pool_foreach (wrk, vcm->workers, ({
1269     if (current_wrk != wrk)
1270       vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
1271   }));
1272   /* *INDENT-ON* */
1273
1274   vcl_api_detach (current_wrk);
1275   vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1276
1277   vcl_elog_stop (vcm);
1278
1279   /*
1280    * Free the heap and fix vcm
1281    */
1282   heap = clib_mem_get_heap ();
1283   mi = mspace_mallinfo (heap);
1284   munmap (mspace_least_addr (heap), mi.arena);
1285
1286   vcm = &_vppcom_main;
1287   vcm->is_init = 0;
1288 }
1289
1290 int
1291 vppcom_session_create (u8 proto, u8 is_nonblocking)
1292 {
1293   vcl_worker_t *wrk = vcl_worker_get_current ();
1294   vcl_session_t *session;
1295
1296   session = vcl_session_alloc (wrk);
1297
1298   session->session_type = proto;
1299   session->session_state = STATE_CLOSED;
1300   session->vpp_handle = ~0;
1301   session->is_dgram = vcl_proto_is_dgram (proto);
1302
1303   if (is_nonblocking)
1304     VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
1305
1306   vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1307            is_nonblocking, session_index);
1308
1309   VDBG (0, "created session %u", session->session_index);
1310
1311   return vcl_session_handle (session);
1312 }
1313
1314 int
1315 vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1316                      vcl_session_handle_t sh, u8 do_disconnect)
1317 {
1318   vcl_session_state_t state;
1319   u32 next_sh, vep_sh;
1320   int rv = VPPCOM_OK;
1321   u64 vpp_handle;
1322   u8 is_vep;
1323
1324   is_vep = session->is_vep;
1325   next_sh = session->vep.next_sh;
1326   vep_sh = session->vep.vep_sh;
1327   state = session->session_state;
1328   vpp_handle = session->vpp_handle;
1329
1330   VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
1331
1332   if (is_vep)
1333     {
1334       while (next_sh != ~0)
1335         {
1336           rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
1337           if (PREDICT_FALSE (rv < 0))
1338             VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
1339                   " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1340                   vppcom_retval_str (rv));
1341
1342           next_sh = session->vep.next_sh;
1343         }
1344       goto cleanup;
1345     }
1346
1347   if (session->is_vep_session)
1348     {
1349       rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1350       if (rv < 0)
1351         VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1352               "failed! rv %d (%s)", session->session_index, vpp_handle,
1353               vep_sh, rv, vppcom_retval_str (rv));
1354     }
1355
1356   if (!do_disconnect)
1357     {
1358       VDBG (1, "session %u [0x%llx] disconnect skipped",
1359             session->session_index, vpp_handle);
1360       goto cleanup;
1361     }
1362
1363   if (state & STATE_LISTEN)
1364     {
1365       rv = vppcom_session_unbind (sh);
1366       if (PREDICT_FALSE (rv < 0))
1367         VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1368               "rv %d (%s)", session->session_index, vpp_handle, rv,
1369               vppcom_retval_str (rv));
1370       return rv;
1371     }
1372   else if ((state & STATE_OPEN)
1373            || (vcl_session_is_connectable_listener (wrk, session)))
1374     {
1375       rv = vppcom_session_disconnect (sh);
1376       if (PREDICT_FALSE (rv < 0))
1377         VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1378               " rv %d (%s)", session->session_index, vpp_handle,
1379               rv, vppcom_retval_str (rv));
1380     }
1381   else if (state == STATE_DISCONNECT)
1382     {
1383       svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1384       vcl_send_session_reset_reply (mq, wrk->bapi_client_index,
1385                                     session->vpp_handle, 0);
1386     }
1387   else if (state == STATE_DETACHED)
1388     {
1389       /* Should not happen. VPP cleaned up before app confirmed close */
1390       VDBG (0, "vpp freed session %d before close", session->session_index);
1391       goto free_session;
1392     }
1393
1394   session->session_state = STATE_CLOSED;
1395
1396   /* Session is removed only after vpp confirms the disconnect */
1397   return rv;
1398
1399 cleanup:
1400   vcl_session_table_del_vpp_handle (wrk, vpp_handle);
1401 free_session:
1402   vcl_session_free (wrk, session);
1403   vcl_evt (VCL_EVT_CLOSE, session, rv);
1404
1405   return rv;
1406 }
1407
1408 int
1409 vppcom_session_close (uint32_t session_handle)
1410 {
1411   vcl_worker_t *wrk = vcl_worker_get_current ();
1412   vcl_session_t *session;
1413
1414   session = vcl_session_get_w_handle (wrk, session_handle);
1415   if (!session)
1416     return VPPCOM_EBADFD;
1417   return vcl_session_cleanup (wrk, session, session_handle,
1418                               1 /* do_disconnect */ );
1419 }
1420
1421 int
1422 vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
1423 {
1424   vcl_worker_t *wrk = vcl_worker_get_current ();
1425   vcl_session_t *session = 0;
1426
1427   if (!ep || !ep->ip)
1428     return VPPCOM_EINVAL;
1429
1430   session = vcl_session_get_w_handle (wrk, session_handle);
1431   if (!session)
1432     return VPPCOM_EBADFD;
1433
1434   if (session->is_vep)
1435     {
1436       VDBG (0, "ERROR: cannot bind to epoll session %u!",
1437             session->session_index);
1438       return VPPCOM_EBADFD;
1439     }
1440
1441   session->transport.is_ip4 = ep->is_ip4;
1442   if (ep->is_ip4)
1443     clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1444                       sizeof (ip4_address_t));
1445   else
1446     clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1447                       sizeof (ip6_address_t));
1448   session->transport.lcl_port = ep->port;
1449
1450   VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1451         "proto %s", session->session_index, session_handle,
1452         session->transport.is_ip4 ? "IPv4" : "IPv6",
1453         format_ip46_address, &session->transport.lcl_ip,
1454         session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1455         clib_net_to_host_u16 (session->transport.lcl_port),
1456         vppcom_proto_str (session->session_type));
1457   vcl_evt (VCL_EVT_BIND, session);
1458
1459   if (session->session_type == VPPCOM_PROTO_UDP)
1460     vppcom_session_listen (session_handle, 10);
1461
1462   return VPPCOM_OK;
1463 }
1464
1465 int
1466 vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
1467 {
1468   vcl_worker_t *wrk = vcl_worker_get_current ();
1469   vcl_session_t *listen_session = 0;
1470   u64 listen_vpp_handle;
1471   int rv;
1472
1473   listen_session = vcl_session_get_w_handle (wrk, listen_sh);
1474   if (!listen_session || listen_session->is_vep)
1475     return VPPCOM_EBADFD;
1476
1477   if (q_len == 0 || q_len == ~0)
1478     q_len = vcm->cfg.listen_queue_size;
1479
1480   listen_vpp_handle = listen_session->vpp_handle;
1481   if (listen_session->session_state & STATE_LISTEN)
1482     {
1483       VDBG (0, "session %u [0x%llx]: already in listen state!",
1484             listen_sh, listen_vpp_handle);
1485       return VPPCOM_OK;
1486     }
1487
1488   VDBG (0, "session %u: sending vpp listen request...", listen_sh);
1489
1490   /*
1491    * Send listen request to vpp and wait for reply
1492    */
1493   vcl_send_session_listen (wrk, listen_session);
1494   rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1495                                              STATE_LISTEN,
1496                                              vcm->cfg.session_timeout);
1497
1498   if (PREDICT_FALSE (rv))
1499     {
1500       listen_session = vcl_session_get_w_handle (wrk, listen_sh);
1501       VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1502             listen_sh, listen_session->vpp_handle, rv,
1503             vppcom_retval_str (rv));
1504       return rv;
1505     }
1506
1507   return VPPCOM_OK;
1508 }
1509
1510 static int
1511 validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
1512 {
1513   if (ls->is_vep)
1514     {
1515       VDBG (0, "ERROR: cannot accept on epoll session %u!",
1516             ls->session_index);
1517       return VPPCOM_EBADFD;
1518     }
1519
1520   if ((ls->session_state != STATE_LISTEN)
1521       && (!vcl_session_is_connectable_listener (wrk, ls)))
1522     {
1523       VDBG (0,
1524             "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1525             " (%s)", ls->vpp_handle, ls->session_state,
1526             vppcom_session_state_str (ls->session_state));
1527       return VPPCOM_EBADFD;
1528     }
1529   return VPPCOM_OK;
1530 }
1531
1532 int
1533 vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1534 {
1535   if (!strcmp (proto_str, "TCP"))
1536     *proto = VPPCOM_PROTO_TCP;
1537   else if (!strcmp (proto_str, "tcp"))
1538     *proto = VPPCOM_PROTO_TCP;
1539   else if (!strcmp (proto_str, "UDP"))
1540     *proto = VPPCOM_PROTO_UDP;
1541   else if (!strcmp (proto_str, "udp"))
1542     *proto = VPPCOM_PROTO_UDP;
1543   else if (!strcmp (proto_str, "TLS"))
1544     *proto = VPPCOM_PROTO_TLS;
1545   else if (!strcmp (proto_str, "tls"))
1546     *proto = VPPCOM_PROTO_TLS;
1547   else if (!strcmp (proto_str, "QUIC"))
1548     *proto = VPPCOM_PROTO_QUIC;
1549   else if (!strcmp (proto_str, "quic"))
1550     *proto = VPPCOM_PROTO_QUIC;
1551   else
1552     return 1;
1553   return 0;
1554 }
1555
1556 int
1557 vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
1558                        uint32_t flags)
1559 {
1560   u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
1561   vcl_worker_t *wrk = vcl_worker_get_current ();
1562   session_accepted_msg_t accepted_msg;
1563   vcl_session_t *listen_session = 0;
1564   vcl_session_t *client_session = 0;
1565   vcl_session_msg_t *evt;
1566   svm_msg_q_msg_t msg;
1567   session_event_t *e;
1568   u8 is_nonblocking;
1569   int rv;
1570
1571   listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
1572   if (!listen_session)
1573     return VPPCOM_EBADFD;
1574
1575   listen_session_index = listen_session->session_index;
1576   if ((rv = validate_args_session_accept_ (wrk, listen_session)))
1577     return rv;
1578
1579   if (clib_fifo_elts (listen_session->accept_evts_fifo))
1580     {
1581       clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1582       accept_flags = evt->flags;
1583       accepted_msg = evt->accepted_msg;
1584       goto handle;
1585     }
1586
1587   is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1588                                        VCL_SESS_ATTR_NONBLOCK);
1589   while (1)
1590     {
1591       if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1592         return VPPCOM_EAGAIN;
1593
1594       if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
1595         return VPPCOM_EAGAIN;
1596
1597       e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
1598       if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
1599         {
1600           vcl_handle_mq_event (wrk, e);
1601           svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1602           continue;
1603         }
1604       clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
1605       svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1606       break;
1607     }
1608
1609 handle:
1610
1611   client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1612                                                        listen_session_index);
1613   if (client_session_index == VCL_INVALID_SESSION_INDEX)
1614     return VPPCOM_ECONNABORTED;
1615
1616   listen_session = vcl_session_get (wrk, listen_session_index);
1617   client_session = vcl_session_get (wrk, client_session_index);
1618
1619   if (flags & O_NONBLOCK)
1620     VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
1621
1622   VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1623         " flags %d, is_nonblocking %u", listen_session->session_index,
1624         listen_session->vpp_handle, client_session_index,
1625         client_session->vpp_handle, flags,
1626         VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
1627
1628   if (ep)
1629     {
1630       ep->is_ip4 = client_session->transport.is_ip4;
1631       ep->port = client_session->transport.rmt_port;
1632       if (client_session->transport.is_ip4)
1633         clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1634                           sizeof (ip4_address_t));
1635       else
1636         clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1637                           sizeof (ip6_address_t));
1638     }
1639
1640   VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1641         "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
1642         client_session_index, client_session->vpp_handle,
1643         format_ip46_address, &client_session->transport.rmt_ip,
1644         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1645         clib_net_to_host_u16 (client_session->transport.rmt_port),
1646         format_ip46_address, &client_session->transport.lcl_ip,
1647         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1648         clib_net_to_host_u16 (client_session->transport.lcl_port));
1649   vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1650            client_session_index);
1651
1652   /*
1653    * Session might have been closed already
1654    */
1655   if (accept_flags)
1656     {
1657       if (accept_flags & VCL_ACCEPTED_F_CLOSED)
1658         client_session->session_state = STATE_VPP_CLOSING;
1659       else if (accept_flags & VCL_ACCEPTED_F_RESET)
1660         client_session->session_state = STATE_DISCONNECT;
1661     }
1662   return vcl_session_handle (client_session);
1663 }
1664
1665 int
1666 vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
1667 {
1668   vcl_worker_t *wrk = vcl_worker_get_current ();
1669   vcl_session_t *session = 0;
1670   u32 session_index;
1671   int rv;
1672
1673   session = vcl_session_get_w_handle (wrk, session_handle);
1674   if (!session)
1675     return VPPCOM_EBADFD;
1676   session_index = session->session_index;
1677
1678   if (PREDICT_FALSE (session->is_vep))
1679     {
1680       VDBG (0, "ERROR: cannot connect epoll session %u!",
1681             session->session_index);
1682       return VPPCOM_EBADFD;
1683     }
1684
1685   if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1686     {
1687       VDBG (0, "session handle %u [0x%llx]: session already "
1688             "connected to %s %U port %d proto %s, state 0x%x (%s)",
1689             session_handle, session->vpp_handle,
1690             session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
1691             &session->transport.rmt_ip, session->transport.is_ip4 ?
1692             IP46_TYPE_IP4 : IP46_TYPE_IP6,
1693             clib_net_to_host_u16 (session->transport.rmt_port),
1694             vppcom_proto_str (session->session_type), session->session_state,
1695             vppcom_session_state_str (session->session_state));
1696       return VPPCOM_OK;
1697     }
1698
1699   /* Attempt to connect a connectionless listener */
1700   if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1701     {
1702       if (session->session_type != VPPCOM_PROTO_UDP)
1703         return VPPCOM_EINVAL;
1704       vcl_send_session_unlisten (wrk, session);
1705       session->session_state = STATE_CLOSED;
1706     }
1707
1708   session->transport.is_ip4 = server_ep->is_ip4;
1709   vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
1710   session->transport.rmt_port = server_ep->port;
1711   session->parent_handle = VCL_INVALID_SESSION_HANDLE;
1712   session->flags |= VCL_SESSION_F_CONNECTED;
1713
1714   VDBG (0, "session handle %u (%s): connecting to peer %s %U "
1715         "port %d proto %s", session_handle,
1716         vppcom_session_state_str (session->session_state),
1717         session->transport.is_ip4 ? "IPv4" : "IPv6",
1718         format_ip46_address,
1719         &session->transport.rmt_ip, session->transport.is_ip4 ?
1720         IP46_TYPE_IP4 : IP46_TYPE_IP6,
1721         clib_net_to_host_u16 (session->transport.rmt_port),
1722         vppcom_proto_str (session->session_type));
1723
1724   vcl_send_session_connect (wrk, session);
1725
1726   if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1727     {
1728       session->session_state = STATE_CONNECT;
1729       return VPPCOM_EINPROGRESS;
1730     }
1731
1732   /*
1733    * Wait for reply from vpp if blocking
1734    */
1735   rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1736                                              vcm->cfg.session_timeout);
1737
1738   session = vcl_session_get (wrk, session_index);
1739   VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1740         session->vpp_handle, rv ? "failed" : "succeeded");
1741
1742   return rv;
1743 }
1744
1745 int
1746 vppcom_session_stream_connect (uint32_t session_handle,
1747                                uint32_t parent_session_handle)
1748 {
1749   vcl_worker_t *wrk = vcl_worker_get_current ();
1750   vcl_session_t *session, *parent_session;
1751   u32 session_index, parent_session_index;
1752   int rv;
1753
1754   session = vcl_session_get_w_handle (wrk, session_handle);
1755   if (!session)
1756     return VPPCOM_EBADFD;
1757   parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1758   if (!parent_session)
1759     return VPPCOM_EBADFD;
1760
1761   session_index = session->session_index;
1762   parent_session_index = parent_session->session_index;
1763   if (PREDICT_FALSE (session->is_vep))
1764     {
1765       VDBG (0, "ERROR: cannot connect epoll session %u!",
1766             session->session_index);
1767       return VPPCOM_EBADFD;
1768     }
1769
1770   if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1771     {
1772       VDBG (0, "session handle %u [0x%llx]: session already "
1773             "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1774             session_handle, session->vpp_handle,
1775             parent_session_handle, parent_session->vpp_handle,
1776             vppcom_proto_str (session->session_type), session->session_state,
1777             vppcom_session_state_str (session->session_state));
1778       return VPPCOM_OK;
1779     }
1780
1781   /* Connect to quic session specifics */
1782   session->transport.is_ip4 = parent_session->transport.is_ip4;
1783   session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1784   session->transport.rmt_port = 0;
1785   session->parent_handle = parent_session->vpp_handle;
1786
1787   VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1788         session_handle, parent_session_handle, parent_session->vpp_handle);
1789
1790   /*
1791    * Send connect request and wait for reply from vpp
1792    */
1793   vcl_send_session_connect (wrk, session);
1794   rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1795                                              vcm->cfg.session_timeout);
1796
1797   session->listener_index = parent_session_index;
1798   parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1799   if (parent_session)
1800     parent_session->n_accepted_sessions++;
1801
1802   session = vcl_session_get (wrk, session_index);
1803   VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1804         session->vpp_handle, rv ? "failed" : "succeeded");
1805
1806   return rv;
1807 }
1808
1809 static u8
1810 vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1811 {
1812   return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
1813 }
1814
1815 static inline int
1816 vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
1817                               u8 peek)
1818 {
1819   vcl_worker_t *wrk = vcl_worker_get_current ();
1820   int rv, n_read = 0, is_nonblocking;
1821   vcl_session_t *s = 0;
1822   svm_fifo_t *rx_fifo;
1823   svm_msg_q_msg_t msg;
1824   session_event_t *e;
1825   svm_msg_q_t *mq;
1826   u8 is_ct;
1827
1828   if (PREDICT_FALSE (!buf))
1829     return VPPCOM_EINVAL;
1830
1831   s = vcl_session_get_w_handle (wrk, session_handle);
1832   if (PREDICT_FALSE (!s || s->is_vep))
1833     return VPPCOM_EBADFD;
1834
1835   if (PREDICT_FALSE (!vcl_session_is_open (s)))
1836     {
1837       VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
1838             s->session_index, s->vpp_handle, s->session_state,
1839             vppcom_session_state_str (s->session_state));
1840       return vcl_session_closed_error (s);
1841     }
1842
1843   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1844   is_ct = vcl_session_is_ct (s);
1845   mq = wrk->app_event_queue;
1846   rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
1847   s->has_rx_evt = 0;
1848
1849   if (svm_fifo_is_empty_cons (rx_fifo))
1850     {
1851       if (is_nonblocking)
1852         {
1853           if (vcl_session_is_closing (s))
1854             return vcl_session_closing_error (s);
1855           svm_fifo_unset_event (s->rx_fifo);
1856           return VPPCOM_EWOULDBLOCK;
1857         }
1858       while (svm_fifo_is_empty_cons (rx_fifo))
1859         {
1860           if (vcl_session_is_closing (s))
1861             return vcl_session_closing_error (s);
1862
1863           svm_fifo_unset_event (s->rx_fifo);
1864           svm_msg_q_lock (mq);
1865           if (svm_msg_q_is_empty (mq))
1866             svm_msg_q_wait (mq);
1867
1868           svm_msg_q_sub_w_lock (mq, &msg);
1869           e = svm_msg_q_msg_data (mq, &msg);
1870           svm_msg_q_unlock (mq);
1871           if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1872             vcl_handle_mq_event (wrk, e);
1873           svm_msg_q_free_msg (mq, &msg);
1874         }
1875     }
1876
1877 read_again:
1878
1879   if (s->is_dgram)
1880     rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
1881   else
1882     rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1883
1884   ASSERT (rv >= 0);
1885   n_read += rv;
1886
1887   if (svm_fifo_is_empty_cons (rx_fifo))
1888     {
1889       svm_fifo_unset_event (s->rx_fifo);
1890       if (!svm_fifo_is_empty_cons (rx_fifo)
1891           && svm_fifo_set_event (s->rx_fifo) && is_nonblocking)
1892         {
1893           vec_add2 (wrk->unhandled_evts_vector, e, 1);
1894           e->event_type = SESSION_IO_EVT_RX;
1895           e->session_index = s->session_index;
1896         }
1897     }
1898   else if (PREDICT_FALSE (rv < n))
1899     {
1900       /* More data enqueued while reading. Try to drain it
1901        * or fill the buffer */
1902       buf += rv;
1903       n -= rv;
1904       goto read_again;
1905     }
1906
1907   if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
1908     {
1909       svm_fifo_clear_deq_ntf (rx_fifo);
1910       app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1911                               SESSION_IO_EVT_RX, SVM_Q_WAIT);
1912     }
1913
1914   VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1915         s->vpp_handle, n_read, rx_fifo);
1916
1917   return n_read;
1918 }
1919
1920 int
1921 vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
1922 {
1923   return (vppcom_session_read_internal (session_handle, buf, n, 0));
1924 }
1925
1926 static int
1927 vppcom_session_peek (uint32_t session_handle, void *buf, int n)
1928 {
1929   return (vppcom_session_read_internal (session_handle, buf, n, 1));
1930 }
1931
1932 int
1933 vppcom_session_read_segments (uint32_t session_handle,
1934                               vppcom_data_segments_t ds)
1935 {
1936   vcl_worker_t *wrk = vcl_worker_get_current ();
1937   int n_read = 0, is_nonblocking;
1938   vcl_session_t *s = 0;
1939   svm_fifo_t *rx_fifo;
1940   svm_msg_q_msg_t msg;
1941   session_event_t *e;
1942   svm_msg_q_t *mq;
1943   u8 is_ct;
1944
1945   s = vcl_session_get_w_handle (wrk, session_handle);
1946   if (PREDICT_FALSE (!s || s->is_vep))
1947     return VPPCOM_EBADFD;
1948
1949   if (PREDICT_FALSE (!vcl_session_is_open (s)))
1950     return vcl_session_closed_error (s);
1951
1952   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1953   is_ct = vcl_session_is_ct (s);
1954   mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1955   rx_fifo = s->rx_fifo;
1956   s->has_rx_evt = 0;
1957
1958   if (is_ct)
1959     svm_fifo_unset_event (s->rx_fifo);
1960
1961   if (svm_fifo_is_empty_cons (rx_fifo))
1962     {
1963       if (is_nonblocking)
1964         {
1965           svm_fifo_unset_event (rx_fifo);
1966           return VPPCOM_EWOULDBLOCK;
1967         }
1968       while (svm_fifo_is_empty_cons (rx_fifo))
1969         {
1970           if (vcl_session_is_closing (s))
1971             return vcl_session_closing_error (s);
1972
1973           svm_fifo_unset_event (rx_fifo);
1974           svm_msg_q_lock (mq);
1975           if (svm_msg_q_is_empty (mq))
1976             svm_msg_q_wait (mq);
1977
1978           svm_msg_q_sub_w_lock (mq, &msg);
1979           e = svm_msg_q_msg_data (mq, &msg);
1980           svm_msg_q_unlock (mq);
1981           if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1982             vcl_handle_mq_event (wrk, e);
1983           svm_msg_q_free_msg (mq, &msg);
1984         }
1985     }
1986
1987   n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
1988   svm_fifo_unset_event (rx_fifo);
1989
1990   return n_read;
1991 }
1992
1993 void
1994 vppcom_session_free_segments (uint32_t session_handle,
1995                               vppcom_data_segments_t ds)
1996 {
1997   vcl_worker_t *wrk = vcl_worker_get_current ();
1998   vcl_session_t *s;
1999
2000   s = vcl_session_get_w_handle (wrk, session_handle);
2001   if (PREDICT_FALSE (!s || s->is_vep))
2002     return;
2003
2004   svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
2005 }
2006
2007 int
2008 vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
2009 {
2010   u32 first_copy = clib_min (ds[0].len, max_bytes);
2011   clib_memcpy_fast (buf, ds[0].data, first_copy);
2012   if (first_copy < max_bytes)
2013     {
2014       clib_memcpy_fast (buf + first_copy, ds[1].data,
2015                         clib_min (ds[1].len, max_bytes - first_copy));
2016     }
2017   return 0;
2018 }
2019
2020 static u8
2021 vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2022 {
2023   return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
2024 }
2025
2026 always_inline u8
2027 vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
2028 {
2029   u32 max_enq = svm_fifo_max_enqueue_prod (f);
2030   if (is_dgram)
2031     return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2032   else
2033     return max_enq > 0;
2034 }
2035
2036 always_inline int
2037 vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2038                              size_t n, u8 is_flush, u8 is_dgram)
2039 {
2040   int n_write, is_nonblocking;
2041   session_evt_type_t et;
2042   svm_msg_q_msg_t msg;
2043   svm_fifo_t *tx_fifo;
2044   session_event_t *e;
2045   svm_msg_q_t *mq;
2046   u8 is_ct;
2047
2048   if (PREDICT_FALSE (!buf || n == 0))
2049     return VPPCOM_EINVAL;
2050
2051   if (PREDICT_FALSE (s->is_vep))
2052     {
2053       VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2054             " session!", s->session_index, s->vpp_handle);
2055       return VPPCOM_EBADFD;
2056     }
2057
2058   if (PREDICT_FALSE (!vcl_session_is_open (s)))
2059     {
2060       VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2061             s->session_index, s->vpp_handle, s->session_state,
2062             vppcom_session_state_str (s->session_state));
2063       return vcl_session_closed_error (s);;
2064     }
2065
2066   is_ct = vcl_session_is_ct (s);
2067   tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
2068   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
2069
2070   mq = wrk->app_event_queue;
2071   if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
2072     {
2073       if (is_nonblocking)
2074         {
2075           return VPPCOM_EWOULDBLOCK;
2076         }
2077       while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
2078         {
2079           svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
2080           if (vcl_session_is_closing (s))
2081             return vcl_session_closing_error (s);
2082           svm_msg_q_lock (mq);
2083           if (svm_msg_q_is_empty (mq))
2084             svm_msg_q_wait (mq);
2085
2086           svm_msg_q_sub_w_lock (mq, &msg);
2087           e = svm_msg_q_msg_data (mq, &msg);
2088           svm_msg_q_unlock (mq);
2089
2090           if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
2091             vcl_handle_mq_event (wrk, e);
2092           svm_msg_q_free_msg (mq, &msg);
2093         }
2094     }
2095
2096   et = SESSION_IO_EVT_TX;
2097   if (is_flush && !is_ct)
2098     et = SESSION_IO_EVT_TX_FLUSH;
2099
2100   if (is_dgram)
2101     n_write = app_send_dgram_raw (tx_fifo, &s->transport,
2102                                   s->vpp_evt_q, buf, n, et,
2103                                   0 /* do_evt */ , SVM_Q_WAIT);
2104   else
2105     n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
2106                                    0 /* do_evt */ , SVM_Q_WAIT);
2107
2108   if (svm_fifo_set_event (s->tx_fifo))
2109     app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2110                             et, SVM_Q_WAIT);
2111
2112   /* The underlying fifo segment can run out of memory */
2113   if (PREDICT_FALSE (n_write < 0))
2114     return VPPCOM_EAGAIN;
2115
2116   VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2117         s->vpp_handle, n_write);
2118
2119   return n_write;
2120 }
2121
2122 int
2123 vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2124 {
2125   vcl_worker_t *wrk = vcl_worker_get_current ();
2126   vcl_session_t *s;
2127
2128   s = vcl_session_get_w_handle (wrk, session_handle);
2129   if (PREDICT_FALSE (!s))
2130     return VPPCOM_EBADFD;
2131
2132   return vppcom_session_write_inline (wrk, s, buf, n,
2133                                       0 /* is_flush */ , s->is_dgram ? 1 : 0);
2134 }
2135
2136 int
2137 vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2138 {
2139   vcl_worker_t *wrk = vcl_worker_get_current ();
2140   vcl_session_t *s;
2141
2142   s = vcl_session_get_w_handle (wrk, session_handle);
2143   if (PREDICT_FALSE (!s))
2144     return VPPCOM_EBADFD;
2145
2146   return vppcom_session_write_inline (wrk, s, buf, n,
2147                                       1 /* is_flush */ , s->is_dgram ? 1 : 0);
2148 }
2149
2150 #define vcl_fifo_rx_evt_valid_or_break(_s)                              \
2151 if (PREDICT_FALSE (!_s->rx_fifo))                                       \
2152   break;                                                                \
2153 if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo)))                    \
2154   {                                                                     \
2155     if (!vcl_session_is_ct (_s))                                        \
2156       {                                                                 \
2157         svm_fifo_unset_event (_s->rx_fifo);                             \
2158         if (svm_fifo_is_empty (_s->rx_fifo))                            \
2159           break;                                                        \
2160       }                                                                 \
2161     else if (svm_fifo_is_empty (_s->ct_rx_fifo))                        \
2162       {                                                                 \
2163         svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
2164         if (svm_fifo_is_empty (_s->ct_rx_fifo))                         \
2165           break;                                                        \
2166       }                                                                 \
2167   }                                                                     \
2168
2169 static void
2170 vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2171                             unsigned long n_bits, unsigned long *read_map,
2172                             unsigned long *write_map,
2173                             unsigned long *except_map, u32 * bits_set)
2174 {
2175   session_disconnected_msg_t *disconnected_msg;
2176   session_connected_msg_t *connected_msg;
2177   vcl_session_t *session;
2178   u32 sid;
2179
2180   switch (e->event_type)
2181     {
2182     case SESSION_IO_EVT_RX:
2183       sid = e->session_index;
2184       session = vcl_session_get (wrk, sid);
2185       if (!session || !vcl_session_is_open (session))
2186         break;
2187       vcl_fifo_rx_evt_valid_or_break (session);
2188       if (sid < n_bits && read_map)
2189         {
2190           clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2191           *bits_set += 1;
2192         }
2193       break;
2194     case SESSION_IO_EVT_TX:
2195       sid = e->session_index;
2196       session = vcl_session_get (wrk, sid);
2197       if (!session || !vcl_session_is_open (session))
2198         break;
2199       if (sid < n_bits && write_map)
2200         {
2201           clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2202           *bits_set += 1;
2203         }
2204       break;
2205     case SESSION_CTRL_EVT_ACCEPTED:
2206       session = vcl_session_accepted (wrk,
2207                                       (session_accepted_msg_t *) e->data);
2208       if (!session)
2209         break;
2210       sid = session->session_index;
2211       if (sid < n_bits && read_map)
2212         {
2213           clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2214           *bits_set += 1;
2215         }
2216       break;
2217     case SESSION_CTRL_EVT_CONNECTED:
2218       connected_msg = (session_connected_msg_t *) e->data;
2219       sid = vcl_session_connected_handler (wrk, connected_msg);
2220       if (sid == VCL_INVALID_SESSION_INDEX)
2221         break;
2222       if (sid < n_bits && write_map)
2223         {
2224           clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2225           *bits_set += 1;
2226         }
2227       break;
2228     case SESSION_CTRL_EVT_DISCONNECTED:
2229       disconnected_msg = (session_disconnected_msg_t *) e->data;
2230       session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2231       if (!session)
2232         break;
2233       sid = session->session_index;
2234       if (sid < n_bits && except_map)
2235         {
2236           clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
2237           *bits_set += 1;
2238         }
2239       break;
2240     case SESSION_CTRL_EVT_RESET:
2241       sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2242       if (sid < n_bits && except_map)
2243         {
2244           clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
2245           *bits_set += 1;
2246         }
2247       break;
2248     case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2249       vcl_session_unlisten_reply_handler (wrk, e->data);
2250       break;
2251     case SESSION_CTRL_EVT_MIGRATED:
2252       vcl_session_migrated_handler (wrk, e->data);
2253       break;
2254     case SESSION_CTRL_EVT_CLEANUP:
2255       vcl_session_cleanup_handler (wrk, e->data);
2256       break;
2257     case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2258       vcl_session_worker_update_reply_handler (wrk, e->data);
2259       break;
2260     case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2261       vcl_session_req_worker_update_handler (wrk, e->data);
2262       break;
2263     case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2264       vcl_session_app_add_segment_handler (wrk, e->data);
2265       break;
2266     case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2267       vcl_session_app_del_segment_handler (wrk, e->data);
2268       break;
2269     case SESSION_CTRL_EVT_APP_WRK_RPC:
2270       vcl_worker_rpc_handler (wrk, e->data);
2271       break;
2272     default:
2273       clib_warning ("unhandled: %u", e->event_type);
2274       break;
2275     }
2276 }
2277
2278 static int
2279 vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2280                       unsigned long n_bits, unsigned long *read_map,
2281                       unsigned long *write_map, unsigned long *except_map,
2282                       double time_to_wait, u32 * bits_set)
2283 {
2284   svm_msg_q_msg_t *msg;
2285   session_event_t *e;
2286   u32 i;
2287
2288   svm_msg_q_lock (mq);
2289   if (svm_msg_q_is_empty (mq))
2290     {
2291       if (*bits_set)
2292         {
2293           svm_msg_q_unlock (mq);
2294           return 0;
2295         }
2296
2297       if (!time_to_wait)
2298         {
2299           svm_msg_q_unlock (mq);
2300           return 0;
2301         }
2302       else if (time_to_wait < 0)
2303         {
2304           svm_msg_q_wait (mq);
2305         }
2306       else
2307         {
2308           if (svm_msg_q_timedwait (mq, time_to_wait))
2309             {
2310               svm_msg_q_unlock (mq);
2311               return 0;
2312             }
2313         }
2314     }
2315   vcl_mq_dequeue_batch (wrk, mq, ~0);
2316   svm_msg_q_unlock (mq);
2317
2318   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
2319     {
2320       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
2321       e = svm_msg_q_msg_data (mq, msg);
2322       vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2323                                   except_map, bits_set);
2324       svm_msg_q_free_msg (mq, msg);
2325     }
2326   vec_reset_length (wrk->mq_msg_vector);
2327   vcl_handle_pending_wrk_updates (wrk);
2328   return *bits_set;
2329 }
2330
2331 static int
2332 vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2333                        vcl_si_set * read_map, vcl_si_set * write_map,
2334                        vcl_si_set * except_map, double time_to_wait,
2335                        u32 * bits_set)
2336 {
2337   double wait = 0, start = 0;
2338
2339   if (!*bits_set)
2340     {
2341       wait = time_to_wait;
2342       start = clib_time_now (&wrk->clib_time);
2343     }
2344
2345   do
2346     {
2347       vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2348                             write_map, except_map, wait, bits_set);
2349       if (*bits_set)
2350         return *bits_set;
2351       if (wait == -1)
2352         continue;
2353
2354       wait = wait - (clib_time_now (&wrk->clib_time) - start);
2355     }
2356   while (wait > 0);
2357
2358   return 0;
2359 }
2360
2361 static int
2362 vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2363                        vcl_si_set * read_map, vcl_si_set * write_map,
2364                        vcl_si_set * except_map, double time_to_wait,
2365                        u32 * bits_set)
2366 {
2367   vcl_mq_evt_conn_t *mqc;
2368   int __clib_unused n_read;
2369   int n_mq_evts, i;
2370   u64 buf;
2371
2372   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2373   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2374                           vec_len (wrk->mq_events), time_to_wait);
2375   for (i = 0; i < n_mq_evts; i++)
2376     {
2377       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
2378       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2379       vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
2380                             except_map, 0, bits_set);
2381     }
2382
2383   return (n_mq_evts > 0 ? (int) *bits_set : 0);
2384 }
2385
2386 int
2387 vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2388                vcl_si_set * except_map, double time_to_wait)
2389 {
2390   u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
2391   vcl_worker_t *wrk = vcl_worker_get_current ();
2392   vcl_session_t *session = 0;
2393   int i;
2394
2395   if (n_bits && read_map)
2396     {
2397       clib_bitmap_validate (wrk->rd_bitmap, minbits);
2398       clib_memcpy_fast (wrk->rd_bitmap, read_map,
2399                         vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2400       memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2401     }
2402   if (n_bits && write_map)
2403     {
2404       clib_bitmap_validate (wrk->wr_bitmap, minbits);
2405       clib_memcpy_fast (wrk->wr_bitmap, write_map,
2406                         vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2407       memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2408     }
2409   if (n_bits && except_map)
2410     {
2411       clib_bitmap_validate (wrk->ex_bitmap, minbits);
2412       clib_memcpy_fast (wrk->ex_bitmap, except_map,
2413                         vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2414       memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2415     }
2416
2417   if (!n_bits)
2418     return 0;
2419
2420   if (!write_map)
2421     goto check_rd;
2422
2423   /* *INDENT-OFF* */
2424   clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2425     if (!(session = vcl_session_get (wrk, sid)))
2426       {
2427         clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2428         bits_set++;
2429         continue;
2430       }
2431
2432     if (vcl_session_write_ready (session))
2433       {
2434         clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2435         bits_set++;
2436       }
2437     else
2438       svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
2439   }));
2440
2441 check_rd:
2442   if (!read_map)
2443     goto check_mq;
2444
2445   clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2446     if (!(session = vcl_session_get (wrk, sid)))
2447       {
2448         clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2449         bits_set++;
2450         continue;
2451       }
2452
2453     if (vcl_session_read_ready (session))
2454       {
2455         clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2456         bits_set++;
2457       }
2458   }));
2459   /* *INDENT-ON* */
2460
2461 check_mq:
2462
2463   for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2464     {
2465       vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2466                                   read_map, write_map, except_map, &bits_set);
2467     }
2468   vec_reset_length (wrk->unhandled_evts_vector);
2469
2470   if (vcm->cfg.use_mq_eventfd)
2471     vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
2472                            time_to_wait, &bits_set);
2473   else
2474     vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
2475                            time_to_wait, &bits_set);
2476
2477   return (bits_set);
2478 }
2479
2480 static inline void
2481 vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
2482 {
2483   vcl_session_t *session;
2484   vppcom_epoll_t *vep;
2485   u32 sh = vep_handle;
2486
2487   if (VPPCOM_DEBUG <= 2)
2488     return;
2489
2490   session = vcl_session_get_w_handle (wrk, vep_handle);
2491   if (PREDICT_FALSE (!session))
2492     {
2493       VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
2494       goto done;
2495     }
2496   if (PREDICT_FALSE (!session->is_vep))
2497     {
2498       VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
2499       goto done;
2500     }
2501   vep = &session->vep;
2502   VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
2503         "{\n"
2504         "   is_vep         = %u\n"
2505         "   is_vep_session = %u\n"
2506         "   next_sh        = 0x%x (%u)\n"
2507         "}\n", vep_handle, session->is_vep, session->is_vep_session,
2508         vep->next_sh, vep->next_sh);
2509
2510   for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
2511     {
2512       session = vcl_session_get_w_handle (wrk, sh);
2513       if (PREDICT_FALSE (!session))
2514         {
2515           VDBG (0, "ERROR: Invalid sh (%u)!", sh);
2516           goto done;
2517         }
2518       if (PREDICT_FALSE (session->is_vep))
2519         {
2520           VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
2521         }
2522       else if (PREDICT_FALSE (!session->is_vep_session))
2523         {
2524           VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
2525           goto done;
2526         }
2527       vep = &session->vep;
2528       if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2529         VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2530               sh, session->vep.vep_sh, vep_handle);
2531       if (session->is_vep_session)
2532         {
2533           VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
2534                 "{\n"
2535                 "   next_sh        = 0x%x (%u)\n"
2536                 "   prev_sh        = 0x%x (%u)\n"
2537                 "   vep_sh         = 0x%x (%u)\n"
2538                 "   ev.events      = 0x%x\n"
2539                 "   ev.data.u64    = 0x%llx\n"
2540                 "   et_mask        = 0x%x\n"
2541                 "}\n",
2542                 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
2543                 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2544                 vep->ev.data.u64, vep->et_mask);
2545         }
2546     }
2547
2548 done:
2549   VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
2550 }
2551
2552 int
2553 vppcom_epoll_create (void)
2554 {
2555   vcl_worker_t *wrk = vcl_worker_get_current ();
2556   vcl_session_t *vep_session;
2557
2558   vep_session = vcl_session_alloc (wrk);
2559
2560   vep_session->is_vep = 1;
2561   vep_session->vep.vep_sh = ~0;
2562   vep_session->vep.next_sh = ~0;
2563   vep_session->vep.prev_sh = ~0;
2564   vep_session->vpp_handle = ~0;
2565
2566   vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2567   VDBG (0, "Created vep_idx %u", vep_session->session_index);
2568
2569   return vcl_session_handle (vep_session);
2570 }
2571
2572 int
2573 vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
2574                   struct epoll_event *event)
2575 {
2576   vcl_worker_t *wrk = vcl_worker_get_current ();
2577   vcl_session_t *vep_session;
2578   int rv = VPPCOM_OK;
2579   vcl_session_t *s;
2580   svm_fifo_t *txf;
2581
2582   if (vep_handle == session_handle)
2583     {
2584       VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
2585       return VPPCOM_EINVAL;
2586     }
2587
2588   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
2589   if (PREDICT_FALSE (!vep_session))
2590     {
2591       VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
2592       return VPPCOM_EBADFD;
2593     }
2594   if (PREDICT_FALSE (!vep_session->is_vep))
2595     {
2596       VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
2597       return VPPCOM_EINVAL;
2598     }
2599
2600   ASSERT (vep_session->vep.vep_sh == ~0);
2601   ASSERT (vep_session->vep.prev_sh == ~0);
2602
2603   s = vcl_session_get_w_handle (wrk, session_handle);
2604   if (PREDICT_FALSE (!s))
2605     {
2606       VDBG (0, "Invalid session_handle (%u)!", session_handle);
2607       return VPPCOM_EBADFD;
2608     }
2609   if (PREDICT_FALSE (s->is_vep))
2610     {
2611       VDBG (0, "session_handle (%u) is a vep!", vep_handle);
2612       return VPPCOM_EINVAL;
2613     }
2614
2615   switch (op)
2616     {
2617     case EPOLL_CTL_ADD:
2618       if (PREDICT_FALSE (!event))
2619         {
2620           VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
2621           return VPPCOM_EINVAL;
2622         }
2623       if (vep_session->vep.next_sh != ~0)
2624         {
2625           vcl_session_t *next_session;
2626           next_session = vcl_session_get_w_handle (wrk,
2627                                                    vep_session->vep.next_sh);
2628           if (PREDICT_FALSE (!next_session))
2629             {
2630               VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
2631                     "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
2632               return VPPCOM_EBADFD;
2633             }
2634           ASSERT (next_session->vep.prev_sh == vep_handle);
2635           next_session->vep.prev_sh = session_handle;
2636         }
2637       s->vep.next_sh = vep_session->vep.next_sh;
2638       s->vep.prev_sh = vep_handle;
2639       s->vep.vep_sh = vep_handle;
2640       s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2641       s->vep.ev = *event;
2642       s->is_vep = 0;
2643       s->is_vep_session = 1;
2644       vep_session->vep.next_sh = session_handle;
2645
2646       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2647       if (txf && (event->events & EPOLLOUT))
2648         svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2649
2650       /* Generate EPOLLOUT if tx fifo not full */
2651       if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
2652         {
2653           session_event_t e = { 0 };
2654           e.event_type = SESSION_IO_EVT_TX;
2655           e.session_index = s->session_index;
2656           vec_add1 (wrk->unhandled_evts_vector, e);
2657         }
2658       /* Generate EPOLLIN if rx fifo has data */
2659       if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
2660         {
2661           session_event_t e = { 0 };
2662           e.event_type = SESSION_IO_EVT_RX;
2663           e.session_index = s->session_index;
2664           vec_add1 (wrk->unhandled_evts_vector, e);
2665         }
2666       VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2667             vep_handle, session_handle, event->events, event->data.u64);
2668       vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
2669       break;
2670
2671     case EPOLL_CTL_MOD:
2672       if (PREDICT_FALSE (!event))
2673         {
2674           VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
2675           rv = VPPCOM_EINVAL;
2676           goto done;
2677         }
2678       else if (PREDICT_FALSE (!s->is_vep_session))
2679         {
2680           VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
2681           rv = VPPCOM_EINVAL;
2682           goto done;
2683         }
2684       else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
2685         {
2686           VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2687                 session_handle, s->vep.vep_sh, vep_handle);
2688           rv = VPPCOM_EINVAL;
2689           goto done;
2690         }
2691
2692       /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2693       if ((event->events & EPOLLOUT) &&
2694           !(s->vep.ev.events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
2695         {
2696           session_event_t e = { 0 };
2697           e.event_type = SESSION_IO_EVT_TX;
2698           e.session_index = s->session_index;
2699           vec_add1 (wrk->unhandled_evts_vector, e);
2700         }
2701       s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2702       s->vep.ev = *event;
2703       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2704       if (event->events & EPOLLOUT)
2705         svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2706       else
2707         svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2708       VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2709             vep_handle, session_handle, event->events, event->data.u64);
2710       break;
2711
2712     case EPOLL_CTL_DEL:
2713       if (PREDICT_FALSE (!s->is_vep_session))
2714         {
2715           VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
2716           rv = VPPCOM_EINVAL;
2717           goto done;
2718         }
2719       else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
2720         {
2721           VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2722                 session_handle, s->vep.vep_sh, vep_handle);
2723           rv = VPPCOM_EINVAL;
2724           goto done;
2725         }
2726
2727       if (s->vep.prev_sh == vep_handle)
2728         vep_session->vep.next_sh = s->vep.next_sh;
2729       else
2730         {
2731           vcl_session_t *prev_session;
2732           prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
2733           if (PREDICT_FALSE (!prev_session))
2734             {
2735               VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
2736                     s->vep.prev_sh, session_handle);
2737               return VPPCOM_EBADFD;
2738             }
2739           ASSERT (prev_session->vep.next_sh == session_handle);
2740           prev_session->vep.next_sh = s->vep.next_sh;
2741         }
2742       if (s->vep.next_sh != ~0)
2743         {
2744           vcl_session_t *next_session;
2745           next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
2746           if (PREDICT_FALSE (!next_session))
2747             {
2748               VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
2749                     s->vep.next_sh, session_handle);
2750               return VPPCOM_EBADFD;
2751             }
2752           ASSERT (next_session->vep.prev_sh == session_handle);
2753           next_session->vep.prev_sh = s->vep.prev_sh;
2754         }
2755
2756       memset (&s->vep, 0, sizeof (s->vep));
2757       s->vep.next_sh = ~0;
2758       s->vep.prev_sh = ~0;
2759       s->vep.vep_sh = ~0;
2760       s->is_vep_session = 0;
2761
2762       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2763       if (txf)
2764         svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2765
2766       VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
2767             session_handle);
2768       vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
2769       break;
2770
2771     default:
2772       VDBG (0, "Invalid operation (%d)!", op);
2773       rv = VPPCOM_EINVAL;
2774     }
2775
2776   vep_verify_epoll_chain (wrk, vep_handle);
2777
2778 done:
2779   return rv;
2780 }
2781
2782 static inline void
2783 vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2784                                 struct epoll_event *events, u32 * num_ev)
2785 {
2786   session_disconnected_msg_t *disconnected_msg;
2787   session_connected_msg_t *connected_msg;
2788   u32 sid = ~0, session_events;
2789   u64 session_evt_data = ~0;
2790   vcl_session_t *session;
2791   u8 add_event = 0;
2792
2793   switch (e->event_type)
2794     {
2795     case SESSION_IO_EVT_RX:
2796       sid = e->session_index;
2797       session = vcl_session_get (wrk, sid);
2798       if (vcl_session_is_closed (session))
2799         break;
2800       vcl_fifo_rx_evt_valid_or_break (session);
2801       session_events = session->vep.ev.events;
2802       if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
2803         break;
2804       add_event = 1;
2805       events[*num_ev].events |= EPOLLIN;
2806       session_evt_data = session->vep.ev.data.u64;
2807       session->has_rx_evt = 1;
2808       break;
2809     case SESSION_IO_EVT_TX:
2810       sid = e->session_index;
2811       session = vcl_session_get (wrk, sid);
2812       if (vcl_session_is_closed (session))
2813         break;
2814       session_events = session->vep.ev.events;
2815       if (!(EPOLLOUT & session_events))
2816         break;
2817       add_event = 1;
2818       events[*num_ev].events |= EPOLLOUT;
2819       session_evt_data = session->vep.ev.data.u64;
2820       svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (session) ?
2821                                   session->ct_tx_fifo : session->tx_fifo);
2822       break;
2823     case SESSION_CTRL_EVT_ACCEPTED:
2824       session = vcl_session_accepted (wrk,
2825                                       (session_accepted_msg_t *) e->data);
2826       if (!session)
2827         break;
2828
2829       session_events = session->vep.ev.events;
2830       if (!(EPOLLIN & session_events))
2831         break;
2832
2833       add_event = 1;
2834       events[*num_ev].events |= EPOLLIN;
2835       session_evt_data = session->vep.ev.data.u64;
2836       break;
2837     case SESSION_CTRL_EVT_CONNECTED:
2838       connected_msg = (session_connected_msg_t *) e->data;
2839       sid = vcl_session_connected_handler (wrk, connected_msg);
2840       /* Generate EPOLLOUT because there's no connected event */
2841       session = vcl_session_get (wrk, sid);
2842       if (vcl_session_is_closed (session))
2843         break;
2844       session_events = session->vep.ev.events;
2845       if (!(EPOLLOUT & session_events))
2846         break;
2847       add_event = 1;
2848       events[*num_ev].events |= EPOLLOUT;
2849       session_evt_data = session->vep.ev.data.u64;
2850       if (session->session_state & STATE_DETACHED)
2851         events[*num_ev].events |= EPOLLHUP;
2852       break;
2853     case SESSION_CTRL_EVT_DISCONNECTED:
2854       disconnected_msg = (session_disconnected_msg_t *) e->data;
2855       session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2856       if (vcl_session_is_closed (session))
2857         break;
2858       session_events = session->vep.ev.events;
2859       add_event = 1;
2860       events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2861       session_evt_data = session->vep.ev.data.u64;
2862       break;
2863     case SESSION_CTRL_EVT_RESET:
2864       sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2865       session = vcl_session_get (wrk, sid);
2866       if (vcl_session_is_closed (session))
2867         break;
2868       session_events = session->vep.ev.events;
2869       add_event = 1;
2870       events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2871       session_evt_data = session->vep.ev.data.u64;
2872       break;
2873     case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2874       vcl_session_unlisten_reply_handler (wrk, e->data);
2875       break;
2876     case SESSION_CTRL_EVT_MIGRATED:
2877       vcl_session_migrated_handler (wrk, e->data);
2878       break;
2879     case SESSION_CTRL_EVT_CLEANUP:
2880       vcl_session_cleanup_handler (wrk, e->data);
2881       break;
2882     case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2883       vcl_session_req_worker_update_handler (wrk, e->data);
2884       break;
2885     case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2886       vcl_session_worker_update_reply_handler (wrk, e->data);
2887       break;
2888     case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2889       vcl_session_app_add_segment_handler (wrk, e->data);
2890       break;
2891     case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2892       vcl_session_app_del_segment_handler (wrk, e->data);
2893       break;
2894     case SESSION_CTRL_EVT_APP_WRK_RPC:
2895       vcl_worker_rpc_handler (wrk, e->data);
2896       break;
2897     default:
2898       VDBG (0, "unhandled: %u", e->event_type);
2899       break;
2900     }
2901
2902   if (add_event)
2903     {
2904       events[*num_ev].data.u64 = session_evt_data;
2905       if (EPOLLONESHOT & session_events)
2906         {
2907           session = vcl_session_get (wrk, sid);
2908           session->vep.ev.events = 0;
2909         }
2910       *num_ev += 1;
2911     }
2912 }
2913
2914 static int
2915 vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2916                           struct epoll_event *events, u32 maxevents,
2917                           double wait_for_time, u32 * num_ev)
2918 {
2919   svm_msg_q_msg_t *msg;
2920   session_event_t *e;
2921   int i;
2922
2923   if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2924     goto handle_dequeued;
2925
2926   svm_msg_q_lock (mq);
2927   if (svm_msg_q_is_empty (mq))
2928     {
2929       if (!wait_for_time)
2930         {
2931           svm_msg_q_unlock (mq);
2932           return 0;
2933         }
2934       else if (wait_for_time < 0)
2935         {
2936           svm_msg_q_wait (mq);
2937         }
2938       else
2939         {
2940           if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
2941             {
2942               svm_msg_q_unlock (mq);
2943               return 0;
2944             }
2945         }
2946     }
2947   ASSERT (maxevents > *num_ev);
2948   vcl_mq_dequeue_batch (wrk, mq, ~0);
2949   svm_msg_q_unlock (mq);
2950
2951 handle_dequeued:
2952   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
2953     {
2954       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
2955       e = svm_msg_q_msg_data (mq, msg);
2956       if (*num_ev < maxevents)
2957         vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2958       else
2959         vcl_handle_mq_event (wrk, e);
2960       svm_msg_q_free_msg (mq, msg);
2961     }
2962   vec_reset_length (wrk->mq_msg_vector);
2963   vcl_handle_pending_wrk_updates (wrk);
2964   return *num_ev;
2965 }
2966
2967 static int
2968 vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
2969                            int maxevents, u32 n_evts, double wait_for_time)
2970 {
2971   double wait = 0, start = 0, now;
2972
2973   if (!n_evts)
2974     {
2975       wait = wait_for_time;
2976       start = clib_time_now (&wrk->clib_time);
2977     }
2978
2979   do
2980     {
2981       vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2982                                 wait, &n_evts);
2983       if (n_evts)
2984         return n_evts;
2985       if (wait == -1)
2986         continue;
2987
2988       now = clib_time_now (&wrk->clib_time);
2989       wait -= (now - start) * 1e3;
2990       start = now;
2991     }
2992   while (wait > 0);
2993
2994   return 0;
2995 }
2996
2997 static int
2998 vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
2999                            int maxevents, u32 n_evts, double wait_for_time)
3000 {
3001   vcl_mq_evt_conn_t *mqc;
3002   int __clib_unused n_read;
3003   int n_mq_evts, i;
3004   u64 buf;
3005
3006   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
3007 again:
3008   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
3009                           vec_len (wrk->mq_events), wait_for_time);
3010   for (i = 0; i < n_mq_evts; i++)
3011     {
3012       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3013       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3014       vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
3015     }
3016   if (!n_evts && n_mq_evts > 0)
3017     goto again;
3018
3019   return (int) n_evts;
3020 }
3021
3022 int
3023 vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
3024                    int maxevents, double wait_for_time)
3025 {
3026   vcl_worker_t *wrk = vcl_worker_get_current ();
3027   vcl_session_t *vep_session;
3028   u32 n_evts = 0;
3029   int i;
3030
3031   if (PREDICT_FALSE (maxevents <= 0))
3032     {
3033       VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
3034       return VPPCOM_EINVAL;
3035     }
3036
3037   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
3038   if (!vep_session)
3039     return VPPCOM_EBADFD;
3040
3041   if (PREDICT_FALSE (!vep_session->is_vep))
3042     {
3043       VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
3044       return VPPCOM_EINVAL;
3045     }
3046
3047   memset (events, 0, sizeof (*events) * maxevents);
3048
3049   if (vec_len (wrk->unhandled_evts_vector))
3050     {
3051       for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3052         {
3053           vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3054                                           events, &n_evts);
3055           if (n_evts == maxevents)
3056             {
3057               vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3058               return n_evts;
3059             }
3060         }
3061       vec_reset_length (wrk->unhandled_evts_vector);
3062     }
3063
3064   if (vcm->cfg.use_mq_eventfd)
3065     return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3066                                       wait_for_time);
3067
3068   return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3069                                     wait_for_time);
3070 }
3071
3072 int
3073 vppcom_session_attr (uint32_t session_handle, uint32_t op,
3074                      void *buffer, uint32_t * buflen)
3075 {
3076   vcl_worker_t *wrk = vcl_worker_get_current ();
3077   vcl_session_t *session;
3078   int rv = VPPCOM_OK;
3079   u32 *flags = buffer, tmp_flags = 0;
3080   vppcom_endpt_t *ep = buffer;
3081
3082   session = vcl_session_get_w_handle (wrk, session_handle);
3083   if (!session)
3084     return VPPCOM_EBADFD;
3085
3086   switch (op)
3087     {
3088     case VPPCOM_ATTR_GET_NREAD:
3089       rv = vcl_session_read_ready (session);
3090       VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3091             rv);
3092       break;
3093
3094     case VPPCOM_ATTR_GET_NWRITE:
3095       rv = vcl_session_write_ready (session);
3096       VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3097             rv);
3098       break;
3099
3100     case VPPCOM_ATTR_GET_FLAGS:
3101       if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
3102         {
3103           *flags =
3104             O_RDWR |
3105             (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK) ?
3106              O_NONBLOCK : 0);
3107           *buflen = sizeof (*flags);
3108           VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3109                 "is_nonblocking = %u", session_handle, *flags,
3110                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
3111         }
3112       else
3113         rv = VPPCOM_EINVAL;
3114       break;
3115
3116     case VPPCOM_ATTR_SET_FLAGS:
3117       if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
3118         {
3119           if (*flags & O_NONBLOCK)
3120             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3121           else
3122             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3123
3124           VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3125                 " is_nonblocking = %u", session_handle, *flags,
3126                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
3127         }
3128       else
3129         rv = VPPCOM_EINVAL;
3130       break;
3131
3132     case VPPCOM_ATTR_GET_PEER_ADDR:
3133       if (PREDICT_TRUE (buffer && buflen &&
3134                         (*buflen >= sizeof (*ep)) && ep->ip))
3135         {
3136           ep->is_ip4 = session->transport.is_ip4;
3137           ep->port = session->transport.rmt_port;
3138           if (session->transport.is_ip4)
3139             clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3140                               sizeof (ip4_address_t));
3141           else
3142             clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3143                               sizeof (ip6_address_t));
3144           *buflen = sizeof (*ep);
3145           VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3146                 "addr = %U, port %u", session_handle, ep->is_ip4,
3147                 format_ip46_address, &session->transport.rmt_ip,
3148                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3149                 clib_net_to_host_u16 (ep->port));
3150         }
3151       else
3152         rv = VPPCOM_EINVAL;
3153       break;
3154
3155     case VPPCOM_ATTR_GET_LCL_ADDR:
3156       if (PREDICT_TRUE (buffer && buflen &&
3157                         (*buflen >= sizeof (*ep)) && ep->ip))
3158         {
3159           ep->is_ip4 = session->transport.is_ip4;
3160           ep->port = session->transport.lcl_port;
3161           if (session->transport.is_ip4)
3162             clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3163                               sizeof (ip4_address_t));
3164           else
3165             clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3166                               sizeof (ip6_address_t));
3167           *buflen = sizeof (*ep);
3168           VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3169                 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3170                 &session->transport.lcl_ip,
3171                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3172                 clib_net_to_host_u16 (ep->port));
3173         }
3174       else
3175         rv = VPPCOM_EINVAL;
3176       break;
3177
3178     case VPPCOM_ATTR_SET_LCL_ADDR:
3179       if (PREDICT_TRUE (buffer && buflen &&
3180                         (*buflen >= sizeof (*ep)) && ep->ip))
3181         {
3182           session->transport.is_ip4 = ep->is_ip4;
3183           session->transport.lcl_port = ep->port;
3184           vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3185           *buflen = sizeof (*ep);
3186           VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3187                 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3188                 &session->transport.lcl_ip,
3189                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3190                 clib_net_to_host_u16 (ep->port));
3191         }
3192       else
3193         rv = VPPCOM_EINVAL;
3194       break;
3195
3196     case VPPCOM_ATTR_GET_LIBC_EPFD:
3197       rv = session->libc_epfd;
3198       VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
3199       break;
3200
3201     case VPPCOM_ATTR_SET_LIBC_EPFD:
3202       if (PREDICT_TRUE (buffer && buflen &&
3203                         (*buflen == sizeof (session->libc_epfd))))
3204         {
3205           session->libc_epfd = *(int *) buffer;
3206           *buflen = sizeof (session->libc_epfd);
3207
3208           VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3209                 session->libc_epfd, *buflen);
3210         }
3211       else
3212         rv = VPPCOM_EINVAL;
3213       break;
3214
3215     case VPPCOM_ATTR_GET_PROTOCOL:
3216       if (buffer && buflen && (*buflen >= sizeof (int)))
3217         {
3218           *(int *) buffer = session->session_type;
3219           *buflen = sizeof (int);
3220
3221           VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3222                 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
3223         }
3224       else
3225         rv = VPPCOM_EINVAL;
3226       break;
3227
3228     case VPPCOM_ATTR_GET_LISTEN:
3229       if (buffer && buflen && (*buflen >= sizeof (int)))
3230         {
3231           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3232                                                 VCL_SESS_ATTR_LISTEN);
3233           *buflen = sizeof (int);
3234
3235           VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3236                 *buflen);
3237         }
3238       else
3239         rv = VPPCOM_EINVAL;
3240       break;
3241
3242     case VPPCOM_ATTR_GET_ERROR:
3243       if (buffer && buflen && (*buflen >= sizeof (int)))
3244         {
3245           *(int *) buffer = 0;
3246           *buflen = sizeof (int);
3247
3248           VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3249                 *(int *) buffer, *buflen);
3250         }
3251       else
3252         rv = VPPCOM_EINVAL;
3253       break;
3254
3255     case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3256       if (buffer && buflen && (*buflen >= sizeof (u32)))
3257         {
3258
3259           /* VPP-TBD */
3260           *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
3261                                 session->tx_fifo ?
3262                                 svm_fifo_size (session->tx_fifo) :
3263                                 vcm->cfg.tx_fifo_size);
3264           *buflen = sizeof (u32);
3265
3266           VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3267                 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3268                 *buflen);
3269         }
3270       else
3271         rv = VPPCOM_EINVAL;
3272       break;
3273
3274     case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3275       if (buffer && buflen && (*buflen == sizeof (u32)))
3276         {
3277           /* VPP-TBD */
3278           session->sndbuf_size = *(u32 *) buffer;
3279           VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3280                 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3281                 *buflen);
3282         }
3283       else
3284         rv = VPPCOM_EINVAL;
3285       break;
3286
3287     case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3288       if (buffer && buflen && (*buflen >= sizeof (u32)))
3289         {
3290
3291           /* VPP-TBD */
3292           *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
3293                                 session->rx_fifo ?
3294                                 svm_fifo_size (session->rx_fifo) :
3295                                 vcm->cfg.rx_fifo_size);
3296           *buflen = sizeof (u32);
3297
3298           VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3299                 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
3300         }
3301       else
3302         rv = VPPCOM_EINVAL;
3303       break;
3304
3305     case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3306       if (buffer && buflen && (*buflen == sizeof (u32)))
3307         {
3308           /* VPP-TBD */
3309           session->rcvbuf_size = *(u32 *) buffer;
3310           VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3311                 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3312                 *buflen);
3313         }
3314       else
3315         rv = VPPCOM_EINVAL;
3316       break;
3317
3318     case VPPCOM_ATTR_GET_REUSEADDR:
3319       if (buffer && buflen && (*buflen >= sizeof (int)))
3320         {
3321           /* VPP-TBD */
3322           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3323                                                 VCL_SESS_ATTR_REUSEADDR);
3324           *buflen = sizeof (int);
3325
3326           VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3327                 *(int *) buffer, *buflen);
3328         }
3329       else
3330         rv = VPPCOM_EINVAL;
3331       break;
3332
3333     case VPPCOM_ATTR_SET_REUSEADDR:
3334       if (buffer && buflen && (*buflen == sizeof (int)) &&
3335           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3336         {
3337           /* VPP-TBD */
3338           if (*(int *) buffer)
3339             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3340           else
3341             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3342
3343           VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3344                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3345                 *buflen);
3346         }
3347       else
3348         rv = VPPCOM_EINVAL;
3349       break;
3350
3351     case VPPCOM_ATTR_GET_REUSEPORT:
3352       if (buffer && buflen && (*buflen >= sizeof (int)))
3353         {
3354           /* VPP-TBD */
3355           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3356                                                 VCL_SESS_ATTR_REUSEPORT);
3357           *buflen = sizeof (int);
3358
3359           VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3360                 *(int *) buffer, *buflen);
3361         }
3362       else
3363         rv = VPPCOM_EINVAL;
3364       break;
3365
3366     case VPPCOM_ATTR_SET_REUSEPORT:
3367       if (buffer && buflen && (*buflen == sizeof (int)) &&
3368           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3369         {
3370           /* VPP-TBD */
3371           if (*(int *) buffer)
3372             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3373           else
3374             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3375
3376           VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3377                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3378                 *buflen);
3379         }
3380       else
3381         rv = VPPCOM_EINVAL;
3382       break;
3383
3384     case VPPCOM_ATTR_GET_BROADCAST:
3385       if (buffer && buflen && (*buflen >= sizeof (int)))
3386         {
3387           /* VPP-TBD */
3388           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3389                                                 VCL_SESS_ATTR_BROADCAST);
3390           *buflen = sizeof (int);
3391
3392           VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3393                 *(int *) buffer, *buflen);
3394         }
3395       else
3396         rv = VPPCOM_EINVAL;
3397       break;
3398
3399     case VPPCOM_ATTR_SET_BROADCAST:
3400       if (buffer && buflen && (*buflen == sizeof (int)))
3401         {
3402           /* VPP-TBD */
3403           if (*(int *) buffer)
3404             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3405           else
3406             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3407
3408           VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3409                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3410                 *buflen);
3411         }
3412       else
3413         rv = VPPCOM_EINVAL;
3414       break;
3415
3416     case VPPCOM_ATTR_GET_V6ONLY:
3417       if (buffer && buflen && (*buflen >= sizeof (int)))
3418         {
3419           /* VPP-TBD */
3420           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3421                                                 VCL_SESS_ATTR_V6ONLY);
3422           *buflen = sizeof (int);
3423
3424           VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3425                 *(int *) buffer, *buflen);
3426         }
3427       else
3428         rv = VPPCOM_EINVAL;
3429       break;
3430
3431     case VPPCOM_ATTR_SET_V6ONLY:
3432       if (buffer && buflen && (*buflen == sizeof (int)))
3433         {
3434           /* VPP-TBD */
3435           if (*(int *) buffer)
3436             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3437           else
3438             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3439
3440           VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3441                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3442                 *buflen);
3443         }
3444       else
3445         rv = VPPCOM_EINVAL;
3446       break;
3447
3448     case VPPCOM_ATTR_GET_KEEPALIVE:
3449       if (buffer && buflen && (*buflen >= sizeof (int)))
3450         {
3451           /* VPP-TBD */
3452           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3453                                                 VCL_SESS_ATTR_KEEPALIVE);
3454           *buflen = sizeof (int);
3455
3456           VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3457                 *(int *) buffer, *buflen);
3458         }
3459       else
3460         rv = VPPCOM_EINVAL;
3461       break;
3462
3463     case VPPCOM_ATTR_SET_KEEPALIVE:
3464       if (buffer && buflen && (*buflen == sizeof (int)))
3465         {
3466           /* VPP-TBD */
3467           if (*(int *) buffer)
3468             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3469           else
3470             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3471
3472           VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3473                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3474                 *buflen);
3475         }
3476       else
3477         rv = VPPCOM_EINVAL;
3478       break;
3479
3480     case VPPCOM_ATTR_GET_TCP_NODELAY:
3481       if (buffer && buflen && (*buflen >= sizeof (int)))
3482         {
3483           /* VPP-TBD */
3484           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3485                                                 VCL_SESS_ATTR_TCP_NODELAY);
3486           *buflen = sizeof (int);
3487
3488           VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3489                 *(int *) buffer, *buflen);
3490         }
3491       else
3492         rv = VPPCOM_EINVAL;
3493       break;
3494
3495     case VPPCOM_ATTR_SET_TCP_NODELAY:
3496       if (buffer && buflen && (*buflen == sizeof (int)))
3497         {
3498           /* VPP-TBD */
3499           if (*(int *) buffer)
3500             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3501           else
3502             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3503
3504           VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3505                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3506                 *buflen);
3507         }
3508       else
3509         rv = VPPCOM_EINVAL;
3510       break;
3511
3512     case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3513       if (buffer && buflen && (*buflen >= sizeof (int)))
3514         {
3515           /* VPP-TBD */
3516           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3517                                                 VCL_SESS_ATTR_TCP_KEEPIDLE);
3518           *buflen = sizeof (int);
3519
3520           VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3521                 *(int *) buffer, *buflen);
3522         }
3523       else
3524         rv = VPPCOM_EINVAL;
3525       break;
3526
3527     case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
3528       if (buffer && buflen && (*buflen == sizeof (int)))
3529         {
3530           /* VPP-TBD */
3531           if (*(int *) buffer)
3532             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3533           else
3534             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3535
3536           VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3537                 VCL_SESS_ATTR_TEST (session->attr,
3538                                     VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
3539         }
3540       else
3541         rv = VPPCOM_EINVAL;
3542       break;
3543
3544     case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3545       if (buffer && buflen && (*buflen >= sizeof (int)))
3546         {
3547           /* VPP-TBD */
3548           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3549                                                 VCL_SESS_ATTR_TCP_KEEPINTVL);
3550           *buflen = sizeof (int);
3551
3552           VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3553                 *(int *) buffer, *buflen);
3554         }
3555       else
3556         rv = VPPCOM_EINVAL;
3557       break;
3558
3559     case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
3560       if (buffer && buflen && (*buflen == sizeof (int)))
3561         {
3562           /* VPP-TBD */
3563           if (*(int *) buffer)
3564             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3565           else
3566             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3567
3568           VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3569                 VCL_SESS_ATTR_TEST (session->attr,
3570                                     VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
3571         }
3572       else
3573         rv = VPPCOM_EINVAL;
3574       break;
3575
3576     case VPPCOM_ATTR_GET_TCP_USER_MSS:
3577       if (buffer && buflen && (*buflen >= sizeof (u32)))
3578         {
3579           /* VPP-TBD */
3580           *(u32 *) buffer = session->user_mss;
3581           *buflen = sizeof (int);
3582
3583           VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3584                 *(int *) buffer, *buflen);
3585         }
3586       else
3587         rv = VPPCOM_EINVAL;
3588       break;
3589
3590     case VPPCOM_ATTR_SET_TCP_USER_MSS:
3591       if (buffer && buflen && (*buflen == sizeof (u32)))
3592         {
3593           /* VPP-TBD */
3594           session->user_mss = *(u32 *) buffer;
3595
3596           VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3597                 session->user_mss, *buflen);
3598         }
3599       else
3600         rv = VPPCOM_EINVAL;
3601       break;
3602
3603     case VPPCOM_ATTR_SET_SHUT:
3604       if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3605         VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3606       if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3607         VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3608       break;
3609
3610     case VPPCOM_ATTR_GET_SHUT:
3611       if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3612         tmp_flags = 1;
3613       if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3614         tmp_flags |= 2;
3615       if (tmp_flags == 1)
3616         *(int *) buffer = SHUT_RD;
3617       else if (tmp_flags == 2)
3618         *(int *) buffer = SHUT_WR;
3619       else if (tmp_flags == 3)
3620         *(int *) buffer = SHUT_RDWR;
3621       *buflen = sizeof (int);
3622       break;
3623
3624     case VPPCOM_ATTR_SET_CONNECTED:
3625       session->flags |= VCL_SESSION_F_CONNECTED;
3626       break;
3627
3628     default:
3629       rv = VPPCOM_EINVAL;
3630       break;
3631     }
3632
3633   return rv;
3634 }
3635
3636 int
3637 vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
3638                          uint32_t buflen, int flags, vppcom_endpt_t * ep)
3639 {
3640   vcl_worker_t *wrk = vcl_worker_get_current ();
3641   vcl_session_t *session;
3642   int rv = VPPCOM_OK;
3643
3644   if (flags == 0)
3645     rv = vppcom_session_read (session_handle, buffer, buflen);
3646   else if (flags & MSG_PEEK)
3647     rv = vppcom_session_peek (session_handle, buffer, buflen);
3648   else
3649     {
3650       VDBG (0, "Unsupport flags for recvfrom %d", flags);
3651       return VPPCOM_EAFNOSUPPORT;
3652     }
3653
3654   if (ep && rv > 0)
3655     {
3656       session = vcl_session_get_w_handle (wrk, session_handle);
3657       if (session->transport.is_ip4)
3658         clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3659                           sizeof (ip4_address_t));
3660       else
3661         clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3662                           sizeof (ip6_address_t));
3663       ep->is_ip4 = session->transport.is_ip4;
3664       ep->port = session->transport.rmt_port;
3665     }
3666
3667   return rv;
3668 }
3669
3670 int
3671 vppcom_session_sendto (uint32_t session_handle, void *buffer,
3672                        uint32_t buflen, int flags, vppcom_endpt_t * ep)
3673 {
3674   vcl_worker_t *wrk = vcl_worker_get_current ();
3675   vcl_session_t *s;
3676
3677   s = vcl_session_get_w_handle (wrk, session_handle);
3678   if (!s)
3679     return VPPCOM_EBADFD;
3680
3681   if (!buffer)
3682     return VPPCOM_EINVAL;
3683
3684   if (ep)
3685     {
3686       if (s->session_type != VPPCOM_PROTO_UDP
3687           || (s->flags & VCL_SESSION_F_CONNECTED))
3688         return VPPCOM_EINVAL;
3689
3690       /* Session not connected/bound in vpp. Create it by 'connecting' it */
3691       if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3692         {
3693           vcl_send_session_connect (wrk, s);
3694         }
3695       else
3696         {
3697           s->transport.is_ip4 = ep->is_ip4;
3698           s->transport.rmt_port = ep->port;
3699           vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3700         }
3701     }
3702
3703   if (flags)
3704     {
3705       // TBD check the flags and do the right thing
3706       VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
3707     }
3708
3709   return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3710                                        s->is_dgram ? 1 : 0));
3711 }
3712
3713 int
3714 vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3715 {
3716   vcl_worker_t *wrk = vcl_worker_get_current ();
3717   f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
3718   u32 i, keep_trying = 1;
3719   svm_msg_q_msg_t msg;
3720   session_event_t *e;
3721   int rv, num_ev = 0;
3722
3723   VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
3724
3725   if (!vp)
3726     return VPPCOM_EFAULT;
3727
3728   do
3729     {
3730       vcl_session_t *session;
3731
3732       /* Dequeue all events and drop all unhandled io events */
3733       while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3734         {
3735           e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3736           vcl_handle_mq_event (wrk, e);
3737           svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3738         }
3739       vec_reset_length (wrk->unhandled_evts_vector);
3740
3741       for (i = 0; i < n_sids; i++)
3742         {
3743           session = vcl_session_get (wrk, vp[i].sh);
3744           if (!session)
3745             {
3746               vp[i].revents = POLLHUP;
3747               num_ev++;
3748               continue;
3749             }
3750
3751           vp[i].revents = 0;
3752
3753           if (POLLIN & vp[i].events)
3754             {
3755               rv = vcl_session_read_ready (session);
3756               if (rv > 0)
3757                 {
3758                   vp[i].revents |= POLLIN;
3759                   num_ev++;
3760                 }
3761               else if (rv < 0)
3762                 {
3763                   switch (rv)
3764                     {
3765                     case VPPCOM_ECONNRESET:
3766                       vp[i].revents = POLLHUP;
3767                       break;
3768
3769                     default:
3770                       vp[i].revents = POLLERR;
3771                       break;
3772                     }
3773                   num_ev++;
3774                 }
3775             }
3776
3777           if (POLLOUT & vp[i].events)
3778             {
3779               rv = vcl_session_write_ready (session);
3780               if (rv > 0)
3781                 {
3782                   vp[i].revents |= POLLOUT;
3783                   num_ev++;
3784                 }
3785               else if (rv < 0)
3786                 {
3787                   switch (rv)
3788                     {
3789                     case VPPCOM_ECONNRESET:
3790                       vp[i].revents = POLLHUP;
3791                       break;
3792
3793                     default:
3794                       vp[i].revents = POLLERR;
3795                       break;
3796                     }
3797                   num_ev++;
3798                 }
3799             }
3800
3801           if (0)                // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
3802             {
3803               vp[i].revents = POLLNVAL;
3804               num_ev++;
3805             }
3806         }
3807       if (wait_for_time != -1)
3808         keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
3809     }
3810   while ((num_ev == 0) && keep_trying);
3811
3812   return num_ev;
3813 }
3814
3815 int
3816 vppcom_mq_epoll_fd (void)
3817 {
3818   vcl_worker_t *wrk = vcl_worker_get_current ();
3819   return wrk->mqs_epfd;
3820 }
3821
3822 int
3823 vppcom_session_index (vcl_session_handle_t session_handle)
3824 {
3825   return session_handle & 0xFFFFFF;
3826 }
3827
3828 int
3829 vppcom_session_worker (vcl_session_handle_t session_handle)
3830 {
3831   return session_handle >> 24;
3832 }
3833
3834 int
3835 vppcom_worker_register (void)
3836 {
3837   if (!vcl_worker_alloc_and_init ())
3838     return VPPCOM_EEXIST;
3839
3840   if (vcl_worker_register_with_vpp ())
3841     return VPPCOM_EEXIST;
3842
3843   return VPPCOM_OK;
3844 }
3845
3846 void
3847 vppcom_worker_unregister (void)
3848 {
3849   vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3850   vcl_set_worker_index (~0);
3851 }
3852
3853 void
3854 vppcom_worker_index_set (int index)
3855 {
3856   vcl_set_worker_index (index);
3857 }
3858
3859 int
3860 vppcom_worker_index (void)
3861 {
3862   return vcl_get_worker_index ();
3863 }
3864
3865 int
3866 vppcom_worker_mqs_epfd (void)
3867 {
3868   vcl_worker_t *wrk = vcl_worker_get_current ();
3869   if (!vcm->cfg.use_mq_eventfd)
3870     return -1;
3871   return wrk->mqs_epfd;
3872 }
3873
3874 int
3875 vppcom_session_is_connectable_listener (uint32_t session_handle)
3876 {
3877   vcl_session_t *session;
3878   vcl_worker_t *wrk = vcl_worker_get_current ();
3879   session = vcl_session_get_w_handle (wrk, session_handle);
3880   if (!session)
3881     return VPPCOM_EBADFD;
3882   return vcl_session_is_connectable_listener (wrk, session);
3883 }
3884
3885 int
3886 vppcom_session_listener (uint32_t session_handle)
3887 {
3888   vcl_worker_t *wrk = vcl_worker_get_current ();
3889   vcl_session_t *listen_session, *session;
3890   session = vcl_session_get_w_handle (wrk, session_handle);
3891   if (!session)
3892     return VPPCOM_EBADFD;
3893   if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3894     return VPPCOM_EBADFD;
3895   listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3896   if (!listen_session)
3897     return VPPCOM_EBADFD;
3898   return vcl_session_handle (listen_session);
3899 }
3900
3901 int
3902 vppcom_session_n_accepted (uint32_t session_handle)
3903 {
3904   vcl_worker_t *wrk = vcl_worker_get_current ();
3905   vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3906   if (!session)
3907     return VPPCOM_EBADFD;
3908   return session->n_accepted_sessions;
3909 }
3910
3911 const char *
3912 vppcom_proto_str (vppcom_proto_t proto)
3913 {
3914   char const *proto_str;
3915
3916   switch (proto)
3917     {
3918     case VPPCOM_PROTO_TCP:
3919       proto_str = "TCP";
3920       break;
3921     case VPPCOM_PROTO_UDP:
3922       proto_str = "UDP";
3923       break;
3924     case VPPCOM_PROTO_TLS:
3925       proto_str = "TLS";
3926       break;
3927     case VPPCOM_PROTO_QUIC:
3928       proto_str = "QUIC";
3929       break;
3930     default:
3931       proto_str = "UNKNOWN";
3932       break;
3933     }
3934   return proto_str;
3935 }
3936
3937 const char *
3938 vppcom_retval_str (int retval)
3939 {
3940   char const *st;
3941
3942   switch (retval)
3943     {
3944     case VPPCOM_OK:
3945       st = "VPPCOM_OK";
3946       break;
3947
3948     case VPPCOM_EAGAIN:
3949       st = "VPPCOM_EAGAIN";
3950       break;
3951
3952     case VPPCOM_EFAULT:
3953       st = "VPPCOM_EFAULT";
3954       break;
3955
3956     case VPPCOM_ENOMEM:
3957       st = "VPPCOM_ENOMEM";
3958       break;
3959
3960     case VPPCOM_EINVAL:
3961       st = "VPPCOM_EINVAL";
3962       break;
3963
3964     case VPPCOM_EBADFD:
3965       st = "VPPCOM_EBADFD";
3966       break;
3967
3968     case VPPCOM_EAFNOSUPPORT:
3969       st = "VPPCOM_EAFNOSUPPORT";
3970       break;
3971
3972     case VPPCOM_ECONNABORTED:
3973       st = "VPPCOM_ECONNABORTED";
3974       break;
3975
3976     case VPPCOM_ECONNRESET:
3977       st = "VPPCOM_ECONNRESET";
3978       break;
3979
3980     case VPPCOM_ENOTCONN:
3981       st = "VPPCOM_ENOTCONN";
3982       break;
3983
3984     case VPPCOM_ECONNREFUSED:
3985       st = "VPPCOM_ECONNREFUSED";
3986       break;
3987
3988     case VPPCOM_ETIMEDOUT:
3989       st = "VPPCOM_ETIMEDOUT";
3990       break;
3991
3992     default:
3993       st = "UNKNOWN_STATE";
3994       break;
3995     }
3996
3997   return st;
3998 }
3999
4000 /*
4001  * fd.io coding-style-patch-verification: ON
4002  *
4003  * Local Variables:
4004  * eval: (c-set-style "gnu")
4005  * End:
4006  */