vcl svm: segments improvements
[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->api_client_handle;
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->api_client_handle;
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->api_client_handle;
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->api_client_handle;
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->api_client_handle;
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->api_client_handle;
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->api_client_handle;
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->api_client_handle,
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].api_client_handle, vcm->workers[0].api_client_handle);
1249
1250   return VPPCOM_OK;
1251 }
1252
1253 void
1254 vppcom_app_destroy (void)
1255 {
1256   vcl_worker_t *wrk, *current_wrk;
1257   void *heap;
1258
1259   if (!pool_elts (vcm->workers))
1260     return;
1261
1262   vcl_evt (VCL_EVT_DETACH, vcm);
1263
1264   current_wrk = vcl_worker_get_current ();
1265
1266   /* *INDENT-OFF* */
1267   pool_foreach (wrk, vcm->workers, ({
1268     if (current_wrk != wrk)
1269       vcl_worker_cleanup (wrk, 0 /* notify vpp */ );
1270   }));
1271   /* *INDENT-ON* */
1272
1273   vcl_api_detach (current_wrk);
1274   vcl_worker_cleanup (current_wrk, 0 /* notify vpp */ );
1275
1276   vcl_elog_stop (vcm);
1277
1278   /*
1279    * Free the heap and fix vcm
1280    */
1281   heap = clib_mem_get_heap ();
1282   munmap (clib_mem_get_heap_base (heap), clib_mem_get_heap_size (heap));
1283
1284   vcm = &_vppcom_main;
1285   vcm->is_init = 0;
1286 }
1287
1288 int
1289 vppcom_session_create (u8 proto, u8 is_nonblocking)
1290 {
1291   vcl_worker_t *wrk = vcl_worker_get_current ();
1292   vcl_session_t *session;
1293
1294   session = vcl_session_alloc (wrk);
1295
1296   session->session_type = proto;
1297   session->session_state = STATE_CLOSED;
1298   session->vpp_handle = ~0;
1299   session->is_dgram = vcl_proto_is_dgram (proto);
1300
1301   if (is_nonblocking)
1302     VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
1303
1304   vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1305            is_nonblocking, session_index);
1306
1307   VDBG (0, "created session %u", session->session_index);
1308
1309   return vcl_session_handle (session);
1310 }
1311
1312 int
1313 vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1314                      vcl_session_handle_t sh, u8 do_disconnect)
1315 {
1316   vcl_session_state_t state;
1317   u32 next_sh, vep_sh;
1318   int rv = VPPCOM_OK;
1319   u64 vpp_handle;
1320   u8 is_vep;
1321
1322   is_vep = session->is_vep;
1323   next_sh = session->vep.next_sh;
1324   vep_sh = session->vep.vep_sh;
1325   state = session->session_state;
1326   vpp_handle = session->vpp_handle;
1327
1328   VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
1329
1330   if (is_vep)
1331     {
1332       while (next_sh != ~0)
1333         {
1334           rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
1335           if (PREDICT_FALSE (rv < 0))
1336             VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
1337                   " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1338                   vppcom_retval_str (rv));
1339
1340           next_sh = session->vep.next_sh;
1341         }
1342       goto cleanup;
1343     }
1344
1345   if (session->is_vep_session)
1346     {
1347       rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
1348       if (rv < 0)
1349         VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1350               "failed! rv %d (%s)", session->session_index, vpp_handle,
1351               vep_sh, rv, vppcom_retval_str (rv));
1352     }
1353
1354   if (!do_disconnect)
1355     {
1356       VDBG (1, "session %u [0x%llx] disconnect skipped",
1357             session->session_index, vpp_handle);
1358       goto cleanup;
1359     }
1360
1361   if (state & STATE_LISTEN)
1362     {
1363       rv = vppcom_session_unbind (sh);
1364       if (PREDICT_FALSE (rv < 0))
1365         VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1366               "rv %d (%s)", session->session_index, vpp_handle, rv,
1367               vppcom_retval_str (rv));
1368       return rv;
1369     }
1370   else if ((state & STATE_OPEN)
1371            || (vcl_session_is_connectable_listener (wrk, session)))
1372     {
1373       rv = vppcom_session_disconnect (sh);
1374       if (PREDICT_FALSE (rv < 0))
1375         VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1376               " rv %d (%s)", session->session_index, vpp_handle,
1377               rv, vppcom_retval_str (rv));
1378     }
1379   else if (state == STATE_DISCONNECT)
1380     {
1381       svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1382       vcl_send_session_reset_reply (mq, wrk->api_client_handle,
1383                                     session->vpp_handle, 0);
1384     }
1385   else if (state == STATE_DETACHED)
1386     {
1387       /* Should not happen. VPP cleaned up before app confirmed close */
1388       VDBG (0, "vpp freed session %d before close", session->session_index);
1389       goto free_session;
1390     }
1391
1392   session->session_state = STATE_CLOSED;
1393
1394   /* Session is removed only after vpp confirms the disconnect */
1395   return rv;
1396
1397 cleanup:
1398   vcl_session_table_del_vpp_handle (wrk, vpp_handle);
1399 free_session:
1400   vcl_session_free (wrk, session);
1401   vcl_evt (VCL_EVT_CLOSE, session, rv);
1402
1403   return rv;
1404 }
1405
1406 int
1407 vppcom_session_close (uint32_t session_handle)
1408 {
1409   vcl_worker_t *wrk = vcl_worker_get_current ();
1410   vcl_session_t *session;
1411
1412   session = vcl_session_get_w_handle (wrk, session_handle);
1413   if (!session)
1414     return VPPCOM_EBADFD;
1415   return vcl_session_cleanup (wrk, session, session_handle,
1416                               1 /* do_disconnect */ );
1417 }
1418
1419 int
1420 vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
1421 {
1422   vcl_worker_t *wrk = vcl_worker_get_current ();
1423   vcl_session_t *session = 0;
1424
1425   if (!ep || !ep->ip)
1426     return VPPCOM_EINVAL;
1427
1428   session = vcl_session_get_w_handle (wrk, session_handle);
1429   if (!session)
1430     return VPPCOM_EBADFD;
1431
1432   if (session->is_vep)
1433     {
1434       VDBG (0, "ERROR: cannot bind to epoll session %u!",
1435             session->session_index);
1436       return VPPCOM_EBADFD;
1437     }
1438
1439   session->transport.is_ip4 = ep->is_ip4;
1440   if (ep->is_ip4)
1441     clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1442                       sizeof (ip4_address_t));
1443   else
1444     clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1445                       sizeof (ip6_address_t));
1446   session->transport.lcl_port = ep->port;
1447
1448   VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1449         "proto %s", session->session_index, session_handle,
1450         session->transport.is_ip4 ? "IPv4" : "IPv6",
1451         format_ip46_address, &session->transport.lcl_ip,
1452         session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1453         clib_net_to_host_u16 (session->transport.lcl_port),
1454         vppcom_proto_str (session->session_type));
1455   vcl_evt (VCL_EVT_BIND, session);
1456
1457   if (session->session_type == VPPCOM_PROTO_UDP)
1458     vppcom_session_listen (session_handle, 10);
1459
1460   return VPPCOM_OK;
1461 }
1462
1463 int
1464 vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
1465 {
1466   vcl_worker_t *wrk = vcl_worker_get_current ();
1467   vcl_session_t *listen_session = 0;
1468   u64 listen_vpp_handle;
1469   int rv;
1470
1471   listen_session = vcl_session_get_w_handle (wrk, listen_sh);
1472   if (!listen_session || listen_session->is_vep)
1473     return VPPCOM_EBADFD;
1474
1475   if (q_len == 0 || q_len == ~0)
1476     q_len = vcm->cfg.listen_queue_size;
1477
1478   listen_vpp_handle = listen_session->vpp_handle;
1479   if (listen_session->session_state & STATE_LISTEN)
1480     {
1481       VDBG (0, "session %u [0x%llx]: already in listen state!",
1482             listen_sh, listen_vpp_handle);
1483       return VPPCOM_OK;
1484     }
1485
1486   VDBG (0, "session %u: sending vpp listen request...", listen_sh);
1487
1488   /*
1489    * Send listen request to vpp and wait for reply
1490    */
1491   vcl_send_session_listen (wrk, listen_session);
1492   rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1493                                              STATE_LISTEN,
1494                                              vcm->cfg.session_timeout);
1495
1496   if (PREDICT_FALSE (rv))
1497     {
1498       listen_session = vcl_session_get_w_handle (wrk, listen_sh);
1499       VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1500             listen_sh, listen_session->vpp_handle, rv,
1501             vppcom_retval_str (rv));
1502       return rv;
1503     }
1504
1505   return VPPCOM_OK;
1506 }
1507
1508 static int
1509 validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
1510 {
1511   if (ls->is_vep)
1512     {
1513       VDBG (0, "ERROR: cannot accept on epoll session %u!",
1514             ls->session_index);
1515       return VPPCOM_EBADFD;
1516     }
1517
1518   if ((ls->session_state != STATE_LISTEN)
1519       && (!vcl_session_is_connectable_listener (wrk, ls)))
1520     {
1521       VDBG (0,
1522             "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1523             " (%s)", ls->vpp_handle, ls->session_state,
1524             vppcom_session_state_str (ls->session_state));
1525       return VPPCOM_EBADFD;
1526     }
1527   return VPPCOM_OK;
1528 }
1529
1530 int
1531 vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1532 {
1533   if (!strcmp (proto_str, "TCP"))
1534     *proto = VPPCOM_PROTO_TCP;
1535   else if (!strcmp (proto_str, "tcp"))
1536     *proto = VPPCOM_PROTO_TCP;
1537   else if (!strcmp (proto_str, "UDP"))
1538     *proto = VPPCOM_PROTO_UDP;
1539   else if (!strcmp (proto_str, "udp"))
1540     *proto = VPPCOM_PROTO_UDP;
1541   else if (!strcmp (proto_str, "TLS"))
1542     *proto = VPPCOM_PROTO_TLS;
1543   else if (!strcmp (proto_str, "tls"))
1544     *proto = VPPCOM_PROTO_TLS;
1545   else if (!strcmp (proto_str, "QUIC"))
1546     *proto = VPPCOM_PROTO_QUIC;
1547   else if (!strcmp (proto_str, "quic"))
1548     *proto = VPPCOM_PROTO_QUIC;
1549   else
1550     return 1;
1551   return 0;
1552 }
1553
1554 int
1555 vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
1556                        uint32_t flags)
1557 {
1558   u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
1559   vcl_worker_t *wrk = vcl_worker_get_current ();
1560   session_accepted_msg_t accepted_msg;
1561   vcl_session_t *listen_session = 0;
1562   vcl_session_t *client_session = 0;
1563   vcl_session_msg_t *evt;
1564   svm_msg_q_msg_t msg;
1565   session_event_t *e;
1566   u8 is_nonblocking;
1567   int rv;
1568
1569   listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
1570   if (!listen_session)
1571     return VPPCOM_EBADFD;
1572
1573   listen_session_index = listen_session->session_index;
1574   if ((rv = validate_args_session_accept_ (wrk, listen_session)))
1575     return rv;
1576
1577   if (clib_fifo_elts (listen_session->accept_evts_fifo))
1578     {
1579       clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1580       accept_flags = evt->flags;
1581       accepted_msg = evt->accepted_msg;
1582       goto handle;
1583     }
1584
1585   is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1586                                        VCL_SESS_ATTR_NONBLOCK);
1587   while (1)
1588     {
1589       if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1590         return VPPCOM_EAGAIN;
1591
1592       if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
1593         return VPPCOM_EAGAIN;
1594
1595       e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
1596       if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
1597         {
1598           vcl_handle_mq_event (wrk, e);
1599           svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1600           continue;
1601         }
1602       clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
1603       svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1604       break;
1605     }
1606
1607 handle:
1608
1609   client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1610                                                        listen_session_index);
1611   if (client_session_index == VCL_INVALID_SESSION_INDEX)
1612     return VPPCOM_ECONNABORTED;
1613
1614   listen_session = vcl_session_get (wrk, listen_session_index);
1615   client_session = vcl_session_get (wrk, client_session_index);
1616
1617   if (flags & O_NONBLOCK)
1618     VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
1619
1620   VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1621         " flags %d, is_nonblocking %u", listen_session->session_index,
1622         listen_session->vpp_handle, client_session_index,
1623         client_session->vpp_handle, flags,
1624         VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
1625
1626   if (ep)
1627     {
1628       ep->is_ip4 = client_session->transport.is_ip4;
1629       ep->port = client_session->transport.rmt_port;
1630       if (client_session->transport.is_ip4)
1631         clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1632                           sizeof (ip4_address_t));
1633       else
1634         clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1635                           sizeof (ip6_address_t));
1636     }
1637
1638   VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1639         "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
1640         client_session_index, client_session->vpp_handle,
1641         format_ip46_address, &client_session->transport.rmt_ip,
1642         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1643         clib_net_to_host_u16 (client_session->transport.rmt_port),
1644         format_ip46_address, &client_session->transport.lcl_ip,
1645         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1646         clib_net_to_host_u16 (client_session->transport.lcl_port));
1647   vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1648            client_session_index);
1649
1650   /*
1651    * Session might have been closed already
1652    */
1653   if (accept_flags)
1654     {
1655       if (accept_flags & VCL_ACCEPTED_F_CLOSED)
1656         client_session->session_state = STATE_VPP_CLOSING;
1657       else if (accept_flags & VCL_ACCEPTED_F_RESET)
1658         client_session->session_state = STATE_DISCONNECT;
1659     }
1660   return vcl_session_handle (client_session);
1661 }
1662
1663 int
1664 vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
1665 {
1666   vcl_worker_t *wrk = vcl_worker_get_current ();
1667   vcl_session_t *session = 0;
1668   u32 session_index;
1669   int rv;
1670
1671   session = vcl_session_get_w_handle (wrk, session_handle);
1672   if (!session)
1673     return VPPCOM_EBADFD;
1674   session_index = session->session_index;
1675
1676   if (PREDICT_FALSE (session->is_vep))
1677     {
1678       VDBG (0, "ERROR: cannot connect epoll session %u!",
1679             session->session_index);
1680       return VPPCOM_EBADFD;
1681     }
1682
1683   if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1684     {
1685       VDBG (0, "session handle %u [0x%llx]: session already "
1686             "connected to %s %U port %d proto %s, state 0x%x (%s)",
1687             session_handle, session->vpp_handle,
1688             session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
1689             &session->transport.rmt_ip, session->transport.is_ip4 ?
1690             IP46_TYPE_IP4 : IP46_TYPE_IP6,
1691             clib_net_to_host_u16 (session->transport.rmt_port),
1692             vppcom_proto_str (session->session_type), session->session_state,
1693             vppcom_session_state_str (session->session_state));
1694       return VPPCOM_OK;
1695     }
1696
1697   /* Attempt to connect a connectionless listener */
1698   if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1699     {
1700       if (session->session_type != VPPCOM_PROTO_UDP)
1701         return VPPCOM_EINVAL;
1702       vcl_send_session_unlisten (wrk, session);
1703       session->session_state = STATE_CLOSED;
1704     }
1705
1706   session->transport.is_ip4 = server_ep->is_ip4;
1707   vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
1708   session->transport.rmt_port = server_ep->port;
1709   session->parent_handle = VCL_INVALID_SESSION_HANDLE;
1710   session->flags |= VCL_SESSION_F_CONNECTED;
1711
1712   VDBG (0, "session handle %u (%s): connecting to peer %s %U "
1713         "port %d proto %s", session_handle,
1714         vppcom_session_state_str (session->session_state),
1715         session->transport.is_ip4 ? "IPv4" : "IPv6",
1716         format_ip46_address,
1717         &session->transport.rmt_ip, session->transport.is_ip4 ?
1718         IP46_TYPE_IP4 : IP46_TYPE_IP6,
1719         clib_net_to_host_u16 (session->transport.rmt_port),
1720         vppcom_proto_str (session->session_type));
1721
1722   vcl_send_session_connect (wrk, session);
1723
1724   if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1725     {
1726       session->session_state = STATE_CONNECT;
1727       return VPPCOM_EINPROGRESS;
1728     }
1729
1730   /*
1731    * Wait for reply from vpp if blocking
1732    */
1733   rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1734                                              vcm->cfg.session_timeout);
1735
1736   session = vcl_session_get (wrk, session_index);
1737   VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1738         session->vpp_handle, rv ? "failed" : "succeeded");
1739
1740   return rv;
1741 }
1742
1743 int
1744 vppcom_session_stream_connect (uint32_t session_handle,
1745                                uint32_t parent_session_handle)
1746 {
1747   vcl_worker_t *wrk = vcl_worker_get_current ();
1748   vcl_session_t *session, *parent_session;
1749   u32 session_index, parent_session_index;
1750   int rv;
1751
1752   session = vcl_session_get_w_handle (wrk, session_handle);
1753   if (!session)
1754     return VPPCOM_EBADFD;
1755   parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1756   if (!parent_session)
1757     return VPPCOM_EBADFD;
1758
1759   session_index = session->session_index;
1760   parent_session_index = parent_session->session_index;
1761   if (PREDICT_FALSE (session->is_vep))
1762     {
1763       VDBG (0, "ERROR: cannot connect epoll session %u!",
1764             session->session_index);
1765       return VPPCOM_EBADFD;
1766     }
1767
1768   if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1769     {
1770       VDBG (0, "session handle %u [0x%llx]: session already "
1771             "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1772             session_handle, session->vpp_handle,
1773             parent_session_handle, parent_session->vpp_handle,
1774             vppcom_proto_str (session->session_type), session->session_state,
1775             vppcom_session_state_str (session->session_state));
1776       return VPPCOM_OK;
1777     }
1778
1779   /* Connect to quic session specifics */
1780   session->transport.is_ip4 = parent_session->transport.is_ip4;
1781   session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1782   session->transport.rmt_port = 0;
1783   session->parent_handle = parent_session->vpp_handle;
1784
1785   VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1786         session_handle, parent_session_handle, parent_session->vpp_handle);
1787
1788   /*
1789    * Send connect request and wait for reply from vpp
1790    */
1791   vcl_send_session_connect (wrk, session);
1792   rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1793                                              vcm->cfg.session_timeout);
1794
1795   session->listener_index = parent_session_index;
1796   parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1797   if (parent_session)
1798     parent_session->n_accepted_sessions++;
1799
1800   session = vcl_session_get (wrk, session_index);
1801   VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1802         session->vpp_handle, rv ? "failed" : "succeeded");
1803
1804   return rv;
1805 }
1806
1807 static u8
1808 vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1809 {
1810   return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
1811 }
1812
1813 static inline int
1814 vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
1815                               u8 peek)
1816 {
1817   vcl_worker_t *wrk = vcl_worker_get_current ();
1818   int rv, n_read = 0, is_nonblocking;
1819   vcl_session_t *s = 0;
1820   svm_fifo_t *rx_fifo;
1821   svm_msg_q_msg_t msg;
1822   session_event_t *e;
1823   svm_msg_q_t *mq;
1824   u8 is_ct;
1825
1826   if (PREDICT_FALSE (!buf))
1827     return VPPCOM_EINVAL;
1828
1829   s = vcl_session_get_w_handle (wrk, session_handle);
1830   if (PREDICT_FALSE (!s || s->is_vep))
1831     return VPPCOM_EBADFD;
1832
1833   if (PREDICT_FALSE (!vcl_session_is_open (s)))
1834     {
1835       VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
1836             s->session_index, s->vpp_handle, s->session_state,
1837             vppcom_session_state_str (s->session_state));
1838       return vcl_session_closed_error (s);
1839     }
1840
1841   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1842   is_ct = vcl_session_is_ct (s);
1843   mq = wrk->app_event_queue;
1844   rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
1845   s->has_rx_evt = 0;
1846
1847   if (svm_fifo_is_empty_cons (rx_fifo))
1848     {
1849       if (is_nonblocking)
1850         {
1851           if (vcl_session_is_closing (s))
1852             return vcl_session_closing_error (s);
1853           svm_fifo_unset_event (s->rx_fifo);
1854           return VPPCOM_EWOULDBLOCK;
1855         }
1856       while (svm_fifo_is_empty_cons (rx_fifo))
1857         {
1858           if (vcl_session_is_closing (s))
1859             return vcl_session_closing_error (s);
1860
1861           svm_fifo_unset_event (s->rx_fifo);
1862           svm_msg_q_lock (mq);
1863           if (svm_msg_q_is_empty (mq))
1864             svm_msg_q_wait (mq);
1865
1866           svm_msg_q_sub_w_lock (mq, &msg);
1867           e = svm_msg_q_msg_data (mq, &msg);
1868           svm_msg_q_unlock (mq);
1869           if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1870             vcl_handle_mq_event (wrk, e);
1871           svm_msg_q_free_msg (mq, &msg);
1872         }
1873     }
1874
1875 read_again:
1876
1877   if (s->is_dgram)
1878     rv = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
1879   else
1880     rv = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1881
1882   ASSERT (rv >= 0);
1883   n_read += rv;
1884
1885   if (svm_fifo_is_empty_cons (rx_fifo))
1886     {
1887       svm_fifo_unset_event (s->rx_fifo);
1888       if (!svm_fifo_is_empty_cons (rx_fifo)
1889           && svm_fifo_set_event (s->rx_fifo) && is_nonblocking)
1890         {
1891           vec_add2 (wrk->unhandled_evts_vector, e, 1);
1892           e->event_type = SESSION_IO_EVT_RX;
1893           e->session_index = s->session_index;
1894         }
1895     }
1896   else if (PREDICT_FALSE (rv < n))
1897     {
1898       /* More data enqueued while reading. Try to drain it
1899        * or fill the buffer */
1900       buf += rv;
1901       n -= rv;
1902       goto read_again;
1903     }
1904
1905   if (PREDICT_FALSE (svm_fifo_needs_deq_ntf (rx_fifo, n_read)))
1906     {
1907       svm_fifo_clear_deq_ntf (rx_fifo);
1908       app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1909                               SESSION_IO_EVT_RX, SVM_Q_WAIT);
1910     }
1911
1912   VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1913         s->vpp_handle, n_read, rx_fifo);
1914
1915   return n_read;
1916 }
1917
1918 int
1919 vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
1920 {
1921   return (vppcom_session_read_internal (session_handle, buf, n, 0));
1922 }
1923
1924 static int
1925 vppcom_session_peek (uint32_t session_handle, void *buf, int n)
1926 {
1927   return (vppcom_session_read_internal (session_handle, buf, n, 1));
1928 }
1929
1930 int
1931 vppcom_session_read_segments (uint32_t session_handle,
1932                               vppcom_data_segment_t * ds, uint32_t n_segments,
1933                               uint32_t max_bytes)
1934 {
1935   vcl_worker_t *wrk = vcl_worker_get_current ();
1936   int n_read = 0, is_nonblocking;
1937   vcl_session_t *s = 0;
1938   svm_fifo_t *rx_fifo;
1939   svm_msg_q_msg_t msg;
1940   session_event_t *e;
1941   svm_msg_q_t *mq;
1942   u8 is_ct;
1943
1944   s = vcl_session_get_w_handle (wrk, session_handle);
1945   if (PREDICT_FALSE (!s || s->is_vep))
1946     return VPPCOM_EBADFD;
1947
1948   if (PREDICT_FALSE (!vcl_session_is_open (s)))
1949     return vcl_session_closed_error (s);
1950
1951   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1952   is_ct = vcl_session_is_ct (s);
1953   mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1954   rx_fifo = s->rx_fifo;
1955   s->has_rx_evt = 0;
1956
1957   if (is_ct)
1958     svm_fifo_unset_event (s->rx_fifo);
1959
1960   if (svm_fifo_is_empty_cons (rx_fifo))
1961     {
1962       if (is_nonblocking)
1963         {
1964           svm_fifo_unset_event (rx_fifo);
1965           return VPPCOM_EWOULDBLOCK;
1966         }
1967       while (svm_fifo_is_empty_cons (rx_fifo))
1968         {
1969           if (vcl_session_is_closing (s))
1970             return vcl_session_closing_error (s);
1971
1972           svm_fifo_unset_event (rx_fifo);
1973           svm_msg_q_lock (mq);
1974           if (svm_msg_q_is_empty (mq))
1975             svm_msg_q_wait (mq);
1976
1977           svm_msg_q_sub_w_lock (mq, &msg);
1978           e = svm_msg_q_msg_data (mq, &msg);
1979           svm_msg_q_unlock (mq);
1980           if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1981             vcl_handle_mq_event (wrk, e);
1982           svm_msg_q_free_msg (mq, &msg);
1983         }
1984     }
1985
1986   n_read = svm_fifo_segments (rx_fifo, s->rx_bytes_pending,
1987                               (svm_fifo_seg_t *) ds, n_segments, max_bytes);
1988   if (n_read < 0)
1989     return VPPCOM_EAGAIN;
1990
1991   if (svm_fifo_max_dequeue_cons (rx_fifo) == n_read)
1992     {
1993       svm_fifo_unset_event (s->rx_fifo);
1994       if (svm_fifo_max_dequeue_cons (rx_fifo) != n_read
1995           && svm_fifo_set_event (s->rx_fifo)
1996           && VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK))
1997         {
1998           session_event_t *e;
1999           vec_add2 (wrk->unhandled_evts_vector, e, 1);
2000           e->event_type = SESSION_IO_EVT_RX;
2001           e->session_index = s->session_index;
2002         }
2003     }
2004
2005   s->rx_bytes_pending += n_read;
2006   return n_read;
2007 }
2008
2009 void
2010 vppcom_session_free_segments (uint32_t session_handle, uint32_t n_bytes)
2011 {
2012   vcl_worker_t *wrk = vcl_worker_get_current ();
2013   vcl_session_t *s;
2014
2015   s = vcl_session_get_w_handle (wrk, session_handle);
2016   if (PREDICT_FALSE (!s || s->is_vep))
2017     return;
2018
2019   svm_fifo_dequeue_drop (s->rx_fifo, n_bytes);
2020
2021   ASSERT (s->rx_bytes_pending < n_bytes);
2022   s->rx_bytes_pending -= n_bytes;
2023 }
2024
2025 static u8
2026 vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
2027 {
2028   return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
2029 }
2030
2031 always_inline u8
2032 vcl_fifo_is_writeable (svm_fifo_t * f, u32 len, u8 is_dgram)
2033 {
2034   u32 max_enq = svm_fifo_max_enqueue_prod (f);
2035   if (is_dgram)
2036     return max_enq >= (sizeof (session_dgram_hdr_t) + len);
2037   else
2038     return max_enq > 0;
2039 }
2040
2041 always_inline int
2042 vppcom_session_write_inline (vcl_worker_t * wrk, vcl_session_t * s, void *buf,
2043                              size_t n, u8 is_flush, u8 is_dgram)
2044 {
2045   int n_write, is_nonblocking;
2046   session_evt_type_t et;
2047   svm_msg_q_msg_t msg;
2048   svm_fifo_t *tx_fifo;
2049   session_event_t *e;
2050   svm_msg_q_t *mq;
2051   u8 is_ct;
2052
2053   if (PREDICT_FALSE (!buf || n == 0))
2054     return VPPCOM_EINVAL;
2055
2056   if (PREDICT_FALSE (s->is_vep))
2057     {
2058       VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
2059             " session!", s->session_index, s->vpp_handle);
2060       return VPPCOM_EBADFD;
2061     }
2062
2063   if (PREDICT_FALSE (!vcl_session_is_open (s)))
2064     {
2065       VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
2066             s->session_index, s->vpp_handle, s->session_state,
2067             vppcom_session_state_str (s->session_state));
2068       return vcl_session_closed_error (s);;
2069     }
2070
2071   is_ct = vcl_session_is_ct (s);
2072   tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
2073   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
2074
2075   mq = wrk->app_event_queue;
2076   if (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
2077     {
2078       if (is_nonblocking)
2079         {
2080           return VPPCOM_EWOULDBLOCK;
2081         }
2082       while (!vcl_fifo_is_writeable (tx_fifo, n, is_dgram))
2083         {
2084           svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
2085           if (vcl_session_is_closing (s))
2086             return vcl_session_closing_error (s);
2087           svm_msg_q_lock (mq);
2088           if (svm_msg_q_is_empty (mq))
2089             svm_msg_q_wait (mq);
2090
2091           svm_msg_q_sub_w_lock (mq, &msg);
2092           e = svm_msg_q_msg_data (mq, &msg);
2093           svm_msg_q_unlock (mq);
2094
2095           if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
2096             vcl_handle_mq_event (wrk, e);
2097           svm_msg_q_free_msg (mq, &msg);
2098         }
2099     }
2100
2101   et = SESSION_IO_EVT_TX;
2102   if (is_flush && !is_ct)
2103     et = SESSION_IO_EVT_TX_FLUSH;
2104
2105   if (is_dgram)
2106     n_write = app_send_dgram_raw (tx_fifo, &s->transport,
2107                                   s->vpp_evt_q, buf, n, et,
2108                                   0 /* do_evt */ , SVM_Q_WAIT);
2109   else
2110     n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
2111                                    0 /* do_evt */ , SVM_Q_WAIT);
2112
2113   if (svm_fifo_set_event (s->tx_fifo))
2114     app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2115                             et, SVM_Q_WAIT);
2116
2117   /* The underlying fifo segment can run out of memory */
2118   if (PREDICT_FALSE (n_write < 0))
2119     return VPPCOM_EAGAIN;
2120
2121   VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2122         s->vpp_handle, n_write);
2123
2124   return n_write;
2125 }
2126
2127 int
2128 vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2129 {
2130   vcl_worker_t *wrk = vcl_worker_get_current ();
2131   vcl_session_t *s;
2132
2133   s = vcl_session_get_w_handle (wrk, session_handle);
2134   if (PREDICT_FALSE (!s))
2135     return VPPCOM_EBADFD;
2136
2137   return vppcom_session_write_inline (wrk, s, buf, n,
2138                                       0 /* is_flush */ , s->is_dgram ? 1 : 0);
2139 }
2140
2141 int
2142 vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2143 {
2144   vcl_worker_t *wrk = vcl_worker_get_current ();
2145   vcl_session_t *s;
2146
2147   s = vcl_session_get_w_handle (wrk, session_handle);
2148   if (PREDICT_FALSE (!s))
2149     return VPPCOM_EBADFD;
2150
2151   return vppcom_session_write_inline (wrk, s, buf, n,
2152                                       1 /* is_flush */ , s->is_dgram ? 1 : 0);
2153 }
2154
2155 #define vcl_fifo_rx_evt_valid_or_break(_s)                              \
2156 if (PREDICT_FALSE (!_s->rx_fifo))                                       \
2157   break;                                                                \
2158 if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo)))                    \
2159   {                                                                     \
2160     if (!vcl_session_is_ct (_s))                                        \
2161       {                                                                 \
2162         svm_fifo_unset_event (_s->rx_fifo);                             \
2163         if (svm_fifo_is_empty (_s->rx_fifo))                            \
2164           break;                                                        \
2165       }                                                                 \
2166     else if (svm_fifo_is_empty (_s->ct_rx_fifo))                        \
2167       {                                                                 \
2168         svm_fifo_unset_event (_s->rx_fifo); /* rx evts on actual fifo*/ \
2169         if (svm_fifo_is_empty (_s->ct_rx_fifo))                         \
2170           break;                                                        \
2171       }                                                                 \
2172   }                                                                     \
2173
2174 static void
2175 vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2176                             unsigned long n_bits, unsigned long *read_map,
2177                             unsigned long *write_map,
2178                             unsigned long *except_map, u32 * bits_set)
2179 {
2180   session_disconnected_msg_t *disconnected_msg;
2181   session_connected_msg_t *connected_msg;
2182   vcl_session_t *session;
2183   u32 sid;
2184
2185   switch (e->event_type)
2186     {
2187     case SESSION_IO_EVT_RX:
2188       sid = e->session_index;
2189       session = vcl_session_get (wrk, sid);
2190       if (!session || !vcl_session_is_open (session))
2191         break;
2192       vcl_fifo_rx_evt_valid_or_break (session);
2193       if (sid < n_bits && read_map)
2194         {
2195           clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2196           *bits_set += 1;
2197         }
2198       break;
2199     case SESSION_IO_EVT_TX:
2200       sid = e->session_index;
2201       session = vcl_session_get (wrk, sid);
2202       if (!session || !vcl_session_is_open (session))
2203         break;
2204       if (sid < n_bits && write_map)
2205         {
2206           clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2207           *bits_set += 1;
2208         }
2209       break;
2210     case SESSION_CTRL_EVT_ACCEPTED:
2211       session = vcl_session_accepted (wrk,
2212                                       (session_accepted_msg_t *) e->data);
2213       if (!session)
2214         break;
2215       sid = session->session_index;
2216       if (sid < n_bits && read_map)
2217         {
2218           clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
2219           *bits_set += 1;
2220         }
2221       break;
2222     case SESSION_CTRL_EVT_CONNECTED:
2223       connected_msg = (session_connected_msg_t *) e->data;
2224       sid = vcl_session_connected_handler (wrk, connected_msg);
2225       if (sid == VCL_INVALID_SESSION_INDEX)
2226         break;
2227       if (sid < n_bits && write_map)
2228         {
2229           clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2230           *bits_set += 1;
2231         }
2232       break;
2233     case SESSION_CTRL_EVT_DISCONNECTED:
2234       disconnected_msg = (session_disconnected_msg_t *) e->data;
2235       session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2236       if (!session)
2237         break;
2238       sid = session->session_index;
2239       if (sid < n_bits && except_map)
2240         {
2241           clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
2242           *bits_set += 1;
2243         }
2244       break;
2245     case SESSION_CTRL_EVT_RESET:
2246       sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2247       if (sid < n_bits && except_map)
2248         {
2249           clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
2250           *bits_set += 1;
2251         }
2252       break;
2253     case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2254       vcl_session_unlisten_reply_handler (wrk, e->data);
2255       break;
2256     case SESSION_CTRL_EVT_MIGRATED:
2257       vcl_session_migrated_handler (wrk, e->data);
2258       break;
2259     case SESSION_CTRL_EVT_CLEANUP:
2260       vcl_session_cleanup_handler (wrk, e->data);
2261       break;
2262     case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2263       vcl_session_worker_update_reply_handler (wrk, e->data);
2264       break;
2265     case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2266       vcl_session_req_worker_update_handler (wrk, e->data);
2267       break;
2268     case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2269       vcl_session_app_add_segment_handler (wrk, e->data);
2270       break;
2271     case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2272       vcl_session_app_del_segment_handler (wrk, e->data);
2273       break;
2274     case SESSION_CTRL_EVT_APP_WRK_RPC:
2275       vcl_worker_rpc_handler (wrk, e->data);
2276       break;
2277     default:
2278       clib_warning ("unhandled: %u", e->event_type);
2279       break;
2280     }
2281 }
2282
2283 static int
2284 vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2285                       unsigned long n_bits, unsigned long *read_map,
2286                       unsigned long *write_map, unsigned long *except_map,
2287                       double time_to_wait, u32 * bits_set)
2288 {
2289   svm_msg_q_msg_t *msg;
2290   session_event_t *e;
2291   u32 i;
2292
2293   svm_msg_q_lock (mq);
2294   if (svm_msg_q_is_empty (mq))
2295     {
2296       if (*bits_set)
2297         {
2298           svm_msg_q_unlock (mq);
2299           return 0;
2300         }
2301
2302       if (!time_to_wait)
2303         {
2304           svm_msg_q_unlock (mq);
2305           return 0;
2306         }
2307       else if (time_to_wait < 0)
2308         {
2309           svm_msg_q_wait (mq);
2310         }
2311       else
2312         {
2313           if (svm_msg_q_timedwait (mq, time_to_wait))
2314             {
2315               svm_msg_q_unlock (mq);
2316               return 0;
2317             }
2318         }
2319     }
2320   vcl_mq_dequeue_batch (wrk, mq, ~0);
2321   svm_msg_q_unlock (mq);
2322
2323   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
2324     {
2325       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
2326       e = svm_msg_q_msg_data (mq, msg);
2327       vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2328                                   except_map, bits_set);
2329       svm_msg_q_free_msg (mq, msg);
2330     }
2331   vec_reset_length (wrk->mq_msg_vector);
2332   vcl_handle_pending_wrk_updates (wrk);
2333   return *bits_set;
2334 }
2335
2336 static int
2337 vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2338                        vcl_si_set * read_map, vcl_si_set * write_map,
2339                        vcl_si_set * except_map, double time_to_wait,
2340                        u32 * bits_set)
2341 {
2342   double wait = 0, start = 0;
2343
2344   if (!*bits_set)
2345     {
2346       wait = time_to_wait;
2347       start = clib_time_now (&wrk->clib_time);
2348     }
2349
2350   do
2351     {
2352       vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2353                             write_map, except_map, wait, bits_set);
2354       if (*bits_set)
2355         return *bits_set;
2356       if (wait == -1)
2357         continue;
2358
2359       wait = wait - (clib_time_now (&wrk->clib_time) - start);
2360     }
2361   while (wait > 0);
2362
2363   return 0;
2364 }
2365
2366 static int
2367 vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2368                        vcl_si_set * read_map, vcl_si_set * write_map,
2369                        vcl_si_set * except_map, double time_to_wait,
2370                        u32 * bits_set)
2371 {
2372   vcl_mq_evt_conn_t *mqc;
2373   int __clib_unused n_read;
2374   int n_mq_evts, i;
2375   u64 buf;
2376
2377   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2378   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2379                           vec_len (wrk->mq_events), time_to_wait);
2380   for (i = 0; i < n_mq_evts; i++)
2381     {
2382       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
2383       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2384       vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
2385                             except_map, 0, bits_set);
2386     }
2387
2388   return (n_mq_evts > 0 ? (int) *bits_set : 0);
2389 }
2390
2391 int
2392 vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2393                vcl_si_set * except_map, double time_to_wait)
2394 {
2395   u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
2396   vcl_worker_t *wrk = vcl_worker_get_current ();
2397   vcl_session_t *session = 0;
2398   int i;
2399
2400   if (n_bits && read_map)
2401     {
2402       clib_bitmap_validate (wrk->rd_bitmap, minbits);
2403       clib_memcpy_fast (wrk->rd_bitmap, read_map,
2404                         vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2405       memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2406     }
2407   if (n_bits && write_map)
2408     {
2409       clib_bitmap_validate (wrk->wr_bitmap, minbits);
2410       clib_memcpy_fast (wrk->wr_bitmap, write_map,
2411                         vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2412       memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2413     }
2414   if (n_bits && except_map)
2415     {
2416       clib_bitmap_validate (wrk->ex_bitmap, minbits);
2417       clib_memcpy_fast (wrk->ex_bitmap, except_map,
2418                         vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2419       memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2420     }
2421
2422   if (!n_bits)
2423     return 0;
2424
2425   if (!write_map)
2426     goto check_rd;
2427
2428   /* *INDENT-OFF* */
2429   clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2430     if (!(session = vcl_session_get (wrk, sid)))
2431       {
2432         clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2433         bits_set++;
2434         continue;
2435       }
2436
2437     if (vcl_session_write_ready (session))
2438       {
2439         clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
2440         bits_set++;
2441       }
2442     else
2443       svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
2444   }));
2445
2446 check_rd:
2447   if (!read_map)
2448     goto check_mq;
2449
2450   clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2451     if (!(session = vcl_session_get (wrk, sid)))
2452       {
2453         clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2454         bits_set++;
2455         continue;
2456       }
2457
2458     if (vcl_session_read_ready (session))
2459       {
2460         clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
2461         bits_set++;
2462       }
2463   }));
2464   /* *INDENT-ON* */
2465
2466 check_mq:
2467
2468   for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2469     {
2470       vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2471                                   read_map, write_map, except_map, &bits_set);
2472     }
2473   vec_reset_length (wrk->unhandled_evts_vector);
2474
2475   if (vcm->cfg.use_mq_eventfd)
2476     vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
2477                            time_to_wait, &bits_set);
2478   else
2479     vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
2480                            time_to_wait, &bits_set);
2481
2482   return (bits_set);
2483 }
2484
2485 static inline void
2486 vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
2487 {
2488   vcl_session_t *session;
2489   vppcom_epoll_t *vep;
2490   u32 sh = vep_handle;
2491
2492   if (VPPCOM_DEBUG <= 2)
2493     return;
2494
2495   session = vcl_session_get_w_handle (wrk, vep_handle);
2496   if (PREDICT_FALSE (!session))
2497     {
2498       VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
2499       goto done;
2500     }
2501   if (PREDICT_FALSE (!session->is_vep))
2502     {
2503       VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
2504       goto done;
2505     }
2506   vep = &session->vep;
2507   VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
2508         "{\n"
2509         "   is_vep         = %u\n"
2510         "   is_vep_session = %u\n"
2511         "   next_sh        = 0x%x (%u)\n"
2512         "}\n", vep_handle, session->is_vep, session->is_vep_session,
2513         vep->next_sh, vep->next_sh);
2514
2515   for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
2516     {
2517       session = vcl_session_get_w_handle (wrk, sh);
2518       if (PREDICT_FALSE (!session))
2519         {
2520           VDBG (0, "ERROR: Invalid sh (%u)!", sh);
2521           goto done;
2522         }
2523       if (PREDICT_FALSE (session->is_vep))
2524         {
2525           VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
2526         }
2527       else if (PREDICT_FALSE (!session->is_vep_session))
2528         {
2529           VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
2530           goto done;
2531         }
2532       vep = &session->vep;
2533       if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2534         VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2535               sh, session->vep.vep_sh, vep_handle);
2536       if (session->is_vep_session)
2537         {
2538           VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
2539                 "{\n"
2540                 "   next_sh        = 0x%x (%u)\n"
2541                 "   prev_sh        = 0x%x (%u)\n"
2542                 "   vep_sh         = 0x%x (%u)\n"
2543                 "   ev.events      = 0x%x\n"
2544                 "   ev.data.u64    = 0x%llx\n"
2545                 "   et_mask        = 0x%x\n"
2546                 "}\n",
2547                 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
2548                 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2549                 vep->ev.data.u64, vep->et_mask);
2550         }
2551     }
2552
2553 done:
2554   VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
2555 }
2556
2557 int
2558 vppcom_epoll_create (void)
2559 {
2560   vcl_worker_t *wrk = vcl_worker_get_current ();
2561   vcl_session_t *vep_session;
2562
2563   vep_session = vcl_session_alloc (wrk);
2564
2565   vep_session->is_vep = 1;
2566   vep_session->vep.vep_sh = ~0;
2567   vep_session->vep.next_sh = ~0;
2568   vep_session->vep.prev_sh = ~0;
2569   vep_session->vpp_handle = ~0;
2570
2571   vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2572   VDBG (0, "Created vep_idx %u", vep_session->session_index);
2573
2574   return vcl_session_handle (vep_session);
2575 }
2576
2577 int
2578 vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
2579                   struct epoll_event *event)
2580 {
2581   vcl_worker_t *wrk = vcl_worker_get_current ();
2582   vcl_session_t *vep_session;
2583   int rv = VPPCOM_OK;
2584   vcl_session_t *s;
2585   svm_fifo_t *txf;
2586
2587   if (vep_handle == session_handle)
2588     {
2589       VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
2590       return VPPCOM_EINVAL;
2591     }
2592
2593   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
2594   if (PREDICT_FALSE (!vep_session))
2595     {
2596       VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
2597       return VPPCOM_EBADFD;
2598     }
2599   if (PREDICT_FALSE (!vep_session->is_vep))
2600     {
2601       VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
2602       return VPPCOM_EINVAL;
2603     }
2604
2605   ASSERT (vep_session->vep.vep_sh == ~0);
2606   ASSERT (vep_session->vep.prev_sh == ~0);
2607
2608   s = vcl_session_get_w_handle (wrk, session_handle);
2609   if (PREDICT_FALSE (!s))
2610     {
2611       VDBG (0, "Invalid session_handle (%u)!", session_handle);
2612       return VPPCOM_EBADFD;
2613     }
2614   if (PREDICT_FALSE (s->is_vep))
2615     {
2616       VDBG (0, "session_handle (%u) is a vep!", vep_handle);
2617       return VPPCOM_EINVAL;
2618     }
2619
2620   switch (op)
2621     {
2622     case EPOLL_CTL_ADD:
2623       if (PREDICT_FALSE (!event))
2624         {
2625           VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
2626           return VPPCOM_EINVAL;
2627         }
2628       if (vep_session->vep.next_sh != ~0)
2629         {
2630           vcl_session_t *next_session;
2631           next_session = vcl_session_get_w_handle (wrk,
2632                                                    vep_session->vep.next_sh);
2633           if (PREDICT_FALSE (!next_session))
2634             {
2635               VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
2636                     "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
2637               return VPPCOM_EBADFD;
2638             }
2639           ASSERT (next_session->vep.prev_sh == vep_handle);
2640           next_session->vep.prev_sh = session_handle;
2641         }
2642       s->vep.next_sh = vep_session->vep.next_sh;
2643       s->vep.prev_sh = vep_handle;
2644       s->vep.vep_sh = vep_handle;
2645       s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2646       s->vep.ev = *event;
2647       s->is_vep = 0;
2648       s->is_vep_session = 1;
2649       vep_session->vep.next_sh = session_handle;
2650
2651       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2652       if (txf && (event->events & EPOLLOUT))
2653         svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2654
2655       /* Generate EPOLLOUT if tx fifo not full */
2656       if ((event->events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
2657         {
2658           session_event_t e = { 0 };
2659           e.event_type = SESSION_IO_EVT_TX;
2660           e.session_index = s->session_index;
2661           vec_add1 (wrk->unhandled_evts_vector, e);
2662         }
2663       /* Generate EPOLLIN if rx fifo has data */
2664       if ((event->events & EPOLLIN) && (vcl_session_read_ready (s) > 0))
2665         {
2666           session_event_t e = { 0 };
2667           e.event_type = SESSION_IO_EVT_RX;
2668           e.session_index = s->session_index;
2669           vec_add1 (wrk->unhandled_evts_vector, e);
2670         }
2671       VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2672             vep_handle, session_handle, event->events, event->data.u64);
2673       vcl_evt (VCL_EVT_EPOLL_CTLADD, s, event->events, event->data.u64);
2674       break;
2675
2676     case EPOLL_CTL_MOD:
2677       if (PREDICT_FALSE (!event))
2678         {
2679           VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
2680           rv = VPPCOM_EINVAL;
2681           goto done;
2682         }
2683       else if (PREDICT_FALSE (!s->is_vep_session))
2684         {
2685           VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
2686           rv = VPPCOM_EINVAL;
2687           goto done;
2688         }
2689       else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
2690         {
2691           VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2692                 session_handle, s->vep.vep_sh, vep_handle);
2693           rv = VPPCOM_EINVAL;
2694           goto done;
2695         }
2696
2697       /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2698       if ((event->events & EPOLLOUT) &&
2699           !(s->vep.ev.events & EPOLLOUT) && (vcl_session_write_ready (s) > 0))
2700         {
2701           session_event_t e = { 0 };
2702           e.event_type = SESSION_IO_EVT_TX;
2703           e.session_index = s->session_index;
2704           vec_add1 (wrk->unhandled_evts_vector, e);
2705         }
2706       s->vep.et_mask = VEP_DEFAULT_ET_MASK;
2707       s->vep.ev = *event;
2708       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2709       if (event->events & EPOLLOUT)
2710         svm_fifo_add_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2711       else
2712         svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2713       VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2714             vep_handle, session_handle, event->events, event->data.u64);
2715       break;
2716
2717     case EPOLL_CTL_DEL:
2718       if (PREDICT_FALSE (!s->is_vep_session))
2719         {
2720           VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
2721           rv = VPPCOM_EINVAL;
2722           goto done;
2723         }
2724       else if (PREDICT_FALSE (s->vep.vep_sh != vep_handle))
2725         {
2726           VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2727                 session_handle, s->vep.vep_sh, vep_handle);
2728           rv = VPPCOM_EINVAL;
2729           goto done;
2730         }
2731
2732       if (s->vep.prev_sh == vep_handle)
2733         vep_session->vep.next_sh = s->vep.next_sh;
2734       else
2735         {
2736           vcl_session_t *prev_session;
2737           prev_session = vcl_session_get_w_handle (wrk, s->vep.prev_sh);
2738           if (PREDICT_FALSE (!prev_session))
2739             {
2740               VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
2741                     s->vep.prev_sh, session_handle);
2742               return VPPCOM_EBADFD;
2743             }
2744           ASSERT (prev_session->vep.next_sh == session_handle);
2745           prev_session->vep.next_sh = s->vep.next_sh;
2746         }
2747       if (s->vep.next_sh != ~0)
2748         {
2749           vcl_session_t *next_session;
2750           next_session = vcl_session_get_w_handle (wrk, s->vep.next_sh);
2751           if (PREDICT_FALSE (!next_session))
2752             {
2753               VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
2754                     s->vep.next_sh, session_handle);
2755               return VPPCOM_EBADFD;
2756             }
2757           ASSERT (next_session->vep.prev_sh == session_handle);
2758           next_session->vep.prev_sh = s->vep.prev_sh;
2759         }
2760
2761       memset (&s->vep, 0, sizeof (s->vep));
2762       s->vep.next_sh = ~0;
2763       s->vep.prev_sh = ~0;
2764       s->vep.vep_sh = ~0;
2765       s->is_vep_session = 0;
2766
2767       txf = vcl_session_is_ct (s) ? s->ct_tx_fifo : s->tx_fifo;
2768       if (txf)
2769         svm_fifo_del_want_deq_ntf (txf, SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
2770
2771       VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
2772             session_handle);
2773       vcl_evt (VCL_EVT_EPOLL_CTLDEL, s, vep_sh);
2774       break;
2775
2776     default:
2777       VDBG (0, "Invalid operation (%d)!", op);
2778       rv = VPPCOM_EINVAL;
2779     }
2780
2781   vep_verify_epoll_chain (wrk, vep_handle);
2782
2783 done:
2784   return rv;
2785 }
2786
2787 static inline void
2788 vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2789                                 struct epoll_event *events, u32 * num_ev)
2790 {
2791   session_disconnected_msg_t *disconnected_msg;
2792   session_connected_msg_t *connected_msg;
2793   u32 sid = ~0, session_events;
2794   u64 session_evt_data = ~0;
2795   vcl_session_t *session;
2796   u8 add_event = 0;
2797
2798   switch (e->event_type)
2799     {
2800     case SESSION_IO_EVT_RX:
2801       sid = e->session_index;
2802       session = vcl_session_get (wrk, sid);
2803       if (vcl_session_is_closed (session))
2804         break;
2805       vcl_fifo_rx_evt_valid_or_break (session);
2806       session_events = session->vep.ev.events;
2807       if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
2808         break;
2809       add_event = 1;
2810       events[*num_ev].events |= EPOLLIN;
2811       session_evt_data = session->vep.ev.data.u64;
2812       session->has_rx_evt = 1;
2813       break;
2814     case SESSION_IO_EVT_TX:
2815       sid = e->session_index;
2816       session = vcl_session_get (wrk, sid);
2817       if (vcl_session_is_closed (session))
2818         break;
2819       session_events = session->vep.ev.events;
2820       if (!(EPOLLOUT & session_events))
2821         break;
2822       add_event = 1;
2823       events[*num_ev].events |= EPOLLOUT;
2824       session_evt_data = session->vep.ev.data.u64;
2825       svm_fifo_reset_has_deq_ntf (vcl_session_is_ct (session) ?
2826                                   session->ct_tx_fifo : session->tx_fifo);
2827       break;
2828     case SESSION_CTRL_EVT_ACCEPTED:
2829       session = vcl_session_accepted (wrk,
2830                                       (session_accepted_msg_t *) e->data);
2831       if (!session)
2832         break;
2833
2834       session_events = session->vep.ev.events;
2835       if (!(EPOLLIN & session_events))
2836         break;
2837
2838       add_event = 1;
2839       events[*num_ev].events |= EPOLLIN;
2840       session_evt_data = session->vep.ev.data.u64;
2841       break;
2842     case SESSION_CTRL_EVT_CONNECTED:
2843       connected_msg = (session_connected_msg_t *) e->data;
2844       sid = vcl_session_connected_handler (wrk, connected_msg);
2845       /* Generate EPOLLOUT because there's no connected event */
2846       session = vcl_session_get (wrk, sid);
2847       if (vcl_session_is_closed (session))
2848         break;
2849       session_events = session->vep.ev.events;
2850       if (!(EPOLLOUT & session_events))
2851         break;
2852       add_event = 1;
2853       events[*num_ev].events |= EPOLLOUT;
2854       session_evt_data = session->vep.ev.data.u64;
2855       if (session->session_state & STATE_DETACHED)
2856         events[*num_ev].events |= EPOLLHUP;
2857       break;
2858     case SESSION_CTRL_EVT_DISCONNECTED:
2859       disconnected_msg = (session_disconnected_msg_t *) e->data;
2860       session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2861       if (vcl_session_is_closed (session))
2862         break;
2863       session_events = session->vep.ev.events;
2864       add_event = 1;
2865       events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2866       session_evt_data = session->vep.ev.data.u64;
2867       break;
2868     case SESSION_CTRL_EVT_RESET:
2869       sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2870       session = vcl_session_get (wrk, sid);
2871       if (vcl_session_is_closed (session))
2872         break;
2873       session_events = session->vep.ev.events;
2874       add_event = 1;
2875       events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2876       session_evt_data = session->vep.ev.data.u64;
2877       break;
2878     case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2879       vcl_session_unlisten_reply_handler (wrk, e->data);
2880       break;
2881     case SESSION_CTRL_EVT_MIGRATED:
2882       vcl_session_migrated_handler (wrk, e->data);
2883       break;
2884     case SESSION_CTRL_EVT_CLEANUP:
2885       vcl_session_cleanup_handler (wrk, e->data);
2886       break;
2887     case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2888       vcl_session_req_worker_update_handler (wrk, e->data);
2889       break;
2890     case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2891       vcl_session_worker_update_reply_handler (wrk, e->data);
2892       break;
2893     case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2894       vcl_session_app_add_segment_handler (wrk, e->data);
2895       break;
2896     case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2897       vcl_session_app_del_segment_handler (wrk, e->data);
2898       break;
2899     case SESSION_CTRL_EVT_APP_WRK_RPC:
2900       vcl_worker_rpc_handler (wrk, e->data);
2901       break;
2902     default:
2903       VDBG (0, "unhandled: %u", e->event_type);
2904       break;
2905     }
2906
2907   if (add_event)
2908     {
2909       events[*num_ev].data.u64 = session_evt_data;
2910       if (EPOLLONESHOT & session_events)
2911         {
2912           session = vcl_session_get (wrk, sid);
2913           session->vep.ev.events = 0;
2914         }
2915       *num_ev += 1;
2916     }
2917 }
2918
2919 static int
2920 vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2921                           struct epoll_event *events, u32 maxevents,
2922                           double wait_for_time, u32 * num_ev)
2923 {
2924   svm_msg_q_msg_t *msg;
2925   session_event_t *e;
2926   int i;
2927
2928   if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2929     goto handle_dequeued;
2930
2931   svm_msg_q_lock (mq);
2932   if (svm_msg_q_is_empty (mq))
2933     {
2934       if (!wait_for_time)
2935         {
2936           svm_msg_q_unlock (mq);
2937           return 0;
2938         }
2939       else if (wait_for_time < 0)
2940         {
2941           svm_msg_q_wait (mq);
2942         }
2943       else
2944         {
2945           if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
2946             {
2947               svm_msg_q_unlock (mq);
2948               return 0;
2949             }
2950         }
2951     }
2952   ASSERT (maxevents > *num_ev);
2953   vcl_mq_dequeue_batch (wrk, mq, ~0);
2954   svm_msg_q_unlock (mq);
2955
2956 handle_dequeued:
2957   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
2958     {
2959       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
2960       e = svm_msg_q_msg_data (mq, msg);
2961       if (*num_ev < maxevents)
2962         vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2963       else
2964         vcl_handle_mq_event (wrk, e);
2965       svm_msg_q_free_msg (mq, msg);
2966     }
2967   vec_reset_length (wrk->mq_msg_vector);
2968   vcl_handle_pending_wrk_updates (wrk);
2969   return *num_ev;
2970 }
2971
2972 static int
2973 vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
2974                            int maxevents, u32 n_evts, double wait_for_time)
2975 {
2976   double wait = 0, start = 0, now;
2977
2978   if (!n_evts)
2979     {
2980       wait = wait_for_time;
2981       start = clib_time_now (&wrk->clib_time);
2982     }
2983
2984   do
2985     {
2986       vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2987                                 wait, &n_evts);
2988       if (n_evts)
2989         return n_evts;
2990       if (wait == -1)
2991         continue;
2992
2993       now = clib_time_now (&wrk->clib_time);
2994       wait -= (now - start) * 1e3;
2995       start = now;
2996     }
2997   while (wait > 0);
2998
2999   return 0;
3000 }
3001
3002 static int
3003 vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
3004                            int maxevents, u32 n_evts, double wait_for_time)
3005 {
3006   vcl_mq_evt_conn_t *mqc;
3007   int __clib_unused n_read;
3008   int n_mq_evts, i;
3009   u64 buf;
3010
3011   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
3012 again:
3013   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
3014                           vec_len (wrk->mq_events), wait_for_time);
3015   for (i = 0; i < n_mq_evts; i++)
3016     {
3017       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
3018       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
3019       vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
3020     }
3021   if (!n_evts && n_mq_evts > 0)
3022     goto again;
3023
3024   return (int) n_evts;
3025 }
3026
3027 int
3028 vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
3029                    int maxevents, double wait_for_time)
3030 {
3031   vcl_worker_t *wrk = vcl_worker_get_current ();
3032   vcl_session_t *vep_session;
3033   u32 n_evts = 0;
3034   int i;
3035
3036   if (PREDICT_FALSE (maxevents <= 0))
3037     {
3038       VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
3039       return VPPCOM_EINVAL;
3040     }
3041
3042   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
3043   if (!vep_session)
3044     return VPPCOM_EBADFD;
3045
3046   if (PREDICT_FALSE (!vep_session->is_vep))
3047     {
3048       VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
3049       return VPPCOM_EINVAL;
3050     }
3051
3052   memset (events, 0, sizeof (*events) * maxevents);
3053
3054   if (vec_len (wrk->unhandled_evts_vector))
3055     {
3056       for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
3057         {
3058           vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
3059                                           events, &n_evts);
3060           if (n_evts == maxevents)
3061             {
3062               vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
3063               return n_evts;
3064             }
3065         }
3066       vec_reset_length (wrk->unhandled_evts_vector);
3067     }
3068
3069   if (vcm->cfg.use_mq_eventfd)
3070     return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
3071                                       wait_for_time);
3072
3073   return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
3074                                     wait_for_time);
3075 }
3076
3077 int
3078 vppcom_session_attr (uint32_t session_handle, uint32_t op,
3079                      void *buffer, uint32_t * buflen)
3080 {
3081   vcl_worker_t *wrk = vcl_worker_get_current ();
3082   vcl_session_t *session;
3083   int rv = VPPCOM_OK;
3084   u32 *flags = buffer, tmp_flags = 0;
3085   vppcom_endpt_t *ep = buffer;
3086
3087   session = vcl_session_get_w_handle (wrk, session_handle);
3088   if (!session)
3089     return VPPCOM_EBADFD;
3090
3091   switch (op)
3092     {
3093     case VPPCOM_ATTR_GET_NREAD:
3094       rv = vcl_session_read_ready (session);
3095       VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
3096             rv);
3097       break;
3098
3099     case VPPCOM_ATTR_GET_NWRITE:
3100       rv = vcl_session_write_ready (session);
3101       VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
3102             rv);
3103       break;
3104
3105     case VPPCOM_ATTR_GET_FLAGS:
3106       if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
3107         {
3108           *flags =
3109             O_RDWR |
3110             (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK) ?
3111              O_NONBLOCK : 0);
3112           *buflen = sizeof (*flags);
3113           VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
3114                 "is_nonblocking = %u", session_handle, *flags,
3115                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
3116         }
3117       else
3118         rv = VPPCOM_EINVAL;
3119       break;
3120
3121     case VPPCOM_ATTR_SET_FLAGS:
3122       if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
3123         {
3124           if (*flags & O_NONBLOCK)
3125             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
3126           else
3127             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
3128
3129           VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
3130                 " is_nonblocking = %u", session_handle, *flags,
3131                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
3132         }
3133       else
3134         rv = VPPCOM_EINVAL;
3135       break;
3136
3137     case VPPCOM_ATTR_GET_PEER_ADDR:
3138       if (PREDICT_TRUE (buffer && buflen &&
3139                         (*buflen >= sizeof (*ep)) && ep->ip))
3140         {
3141           ep->is_ip4 = session->transport.is_ip4;
3142           ep->port = session->transport.rmt_port;
3143           if (session->transport.is_ip4)
3144             clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3145                               sizeof (ip4_address_t));
3146           else
3147             clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3148                               sizeof (ip6_address_t));
3149           *buflen = sizeof (*ep);
3150           VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
3151                 "addr = %U, port %u", session_handle, ep->is_ip4,
3152                 format_ip46_address, &session->transport.rmt_ip,
3153                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3154                 clib_net_to_host_u16 (ep->port));
3155         }
3156       else
3157         rv = VPPCOM_EINVAL;
3158       break;
3159
3160     case VPPCOM_ATTR_GET_LCL_ADDR:
3161       if (PREDICT_TRUE (buffer && buflen &&
3162                         (*buflen >= sizeof (*ep)) && ep->ip))
3163         {
3164           ep->is_ip4 = session->transport.is_ip4;
3165           ep->port = session->transport.lcl_port;
3166           if (session->transport.is_ip4)
3167             clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3168                               sizeof (ip4_address_t));
3169           else
3170             clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3171                               sizeof (ip6_address_t));
3172           *buflen = sizeof (*ep);
3173           VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3174                 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3175                 &session->transport.lcl_ip,
3176                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3177                 clib_net_to_host_u16 (ep->port));
3178         }
3179       else
3180         rv = VPPCOM_EINVAL;
3181       break;
3182
3183     case VPPCOM_ATTR_SET_LCL_ADDR:
3184       if (PREDICT_TRUE (buffer && buflen &&
3185                         (*buflen >= sizeof (*ep)) && ep->ip))
3186         {
3187           session->transport.is_ip4 = ep->is_ip4;
3188           session->transport.lcl_port = ep->port;
3189           vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3190           *buflen = sizeof (*ep);
3191           VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3192                 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3193                 &session->transport.lcl_ip,
3194                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3195                 clib_net_to_host_u16 (ep->port));
3196         }
3197       else
3198         rv = VPPCOM_EINVAL;
3199       break;
3200
3201     case VPPCOM_ATTR_GET_LIBC_EPFD:
3202       rv = session->libc_epfd;
3203       VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
3204       break;
3205
3206     case VPPCOM_ATTR_SET_LIBC_EPFD:
3207       if (PREDICT_TRUE (buffer && buflen &&
3208                         (*buflen == sizeof (session->libc_epfd))))
3209         {
3210           session->libc_epfd = *(int *) buffer;
3211           *buflen = sizeof (session->libc_epfd);
3212
3213           VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3214                 session->libc_epfd, *buflen);
3215         }
3216       else
3217         rv = VPPCOM_EINVAL;
3218       break;
3219
3220     case VPPCOM_ATTR_GET_PROTOCOL:
3221       if (buffer && buflen && (*buflen >= sizeof (int)))
3222         {
3223           *(int *) buffer = session->session_type;
3224           *buflen = sizeof (int);
3225
3226           VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3227                 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
3228         }
3229       else
3230         rv = VPPCOM_EINVAL;
3231       break;
3232
3233     case VPPCOM_ATTR_GET_LISTEN:
3234       if (buffer && buflen && (*buflen >= sizeof (int)))
3235         {
3236           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3237                                                 VCL_SESS_ATTR_LISTEN);
3238           *buflen = sizeof (int);
3239
3240           VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3241                 *buflen);
3242         }
3243       else
3244         rv = VPPCOM_EINVAL;
3245       break;
3246
3247     case VPPCOM_ATTR_GET_ERROR:
3248       if (buffer && buflen && (*buflen >= sizeof (int)))
3249         {
3250           *(int *) buffer = 0;
3251           *buflen = sizeof (int);
3252
3253           VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3254                 *(int *) buffer, *buflen);
3255         }
3256       else
3257         rv = VPPCOM_EINVAL;
3258       break;
3259
3260     case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3261       if (buffer && buflen && (*buflen >= sizeof (u32)))
3262         {
3263
3264           /* VPP-TBD */
3265           *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
3266                                 session->tx_fifo ?
3267                                 svm_fifo_size (session->tx_fifo) :
3268                                 vcm->cfg.tx_fifo_size);
3269           *buflen = sizeof (u32);
3270
3271           VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3272                 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3273                 *buflen);
3274         }
3275       else
3276         rv = VPPCOM_EINVAL;
3277       break;
3278
3279     case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3280       if (buffer && buflen && (*buflen == sizeof (u32)))
3281         {
3282           /* VPP-TBD */
3283           session->sndbuf_size = *(u32 *) buffer;
3284           VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3285                 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3286                 *buflen);
3287         }
3288       else
3289         rv = VPPCOM_EINVAL;
3290       break;
3291
3292     case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3293       if (buffer && buflen && (*buflen >= sizeof (u32)))
3294         {
3295
3296           /* VPP-TBD */
3297           *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
3298                                 session->rx_fifo ?
3299                                 svm_fifo_size (session->rx_fifo) :
3300                                 vcm->cfg.rx_fifo_size);
3301           *buflen = sizeof (u32);
3302
3303           VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3304                 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
3305         }
3306       else
3307         rv = VPPCOM_EINVAL;
3308       break;
3309
3310     case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3311       if (buffer && buflen && (*buflen == sizeof (u32)))
3312         {
3313           /* VPP-TBD */
3314           session->rcvbuf_size = *(u32 *) buffer;
3315           VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3316                 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3317                 *buflen);
3318         }
3319       else
3320         rv = VPPCOM_EINVAL;
3321       break;
3322
3323     case VPPCOM_ATTR_GET_REUSEADDR:
3324       if (buffer && buflen && (*buflen >= sizeof (int)))
3325         {
3326           /* VPP-TBD */
3327           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3328                                                 VCL_SESS_ATTR_REUSEADDR);
3329           *buflen = sizeof (int);
3330
3331           VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3332                 *(int *) buffer, *buflen);
3333         }
3334       else
3335         rv = VPPCOM_EINVAL;
3336       break;
3337
3338     case VPPCOM_ATTR_SET_REUSEADDR:
3339       if (buffer && buflen && (*buflen == sizeof (int)) &&
3340           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3341         {
3342           /* VPP-TBD */
3343           if (*(int *) buffer)
3344             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3345           else
3346             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3347
3348           VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3349                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3350                 *buflen);
3351         }
3352       else
3353         rv = VPPCOM_EINVAL;
3354       break;
3355
3356     case VPPCOM_ATTR_GET_REUSEPORT:
3357       if (buffer && buflen && (*buflen >= sizeof (int)))
3358         {
3359           /* VPP-TBD */
3360           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3361                                                 VCL_SESS_ATTR_REUSEPORT);
3362           *buflen = sizeof (int);
3363
3364           VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3365                 *(int *) buffer, *buflen);
3366         }
3367       else
3368         rv = VPPCOM_EINVAL;
3369       break;
3370
3371     case VPPCOM_ATTR_SET_REUSEPORT:
3372       if (buffer && buflen && (*buflen == sizeof (int)) &&
3373           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3374         {
3375           /* VPP-TBD */
3376           if (*(int *) buffer)
3377             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3378           else
3379             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3380
3381           VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3382                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3383                 *buflen);
3384         }
3385       else
3386         rv = VPPCOM_EINVAL;
3387       break;
3388
3389     case VPPCOM_ATTR_GET_BROADCAST:
3390       if (buffer && buflen && (*buflen >= sizeof (int)))
3391         {
3392           /* VPP-TBD */
3393           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3394                                                 VCL_SESS_ATTR_BROADCAST);
3395           *buflen = sizeof (int);
3396
3397           VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3398                 *(int *) buffer, *buflen);
3399         }
3400       else
3401         rv = VPPCOM_EINVAL;
3402       break;
3403
3404     case VPPCOM_ATTR_SET_BROADCAST:
3405       if (buffer && buflen && (*buflen == sizeof (int)))
3406         {
3407           /* VPP-TBD */
3408           if (*(int *) buffer)
3409             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3410           else
3411             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3412
3413           VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3414                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3415                 *buflen);
3416         }
3417       else
3418         rv = VPPCOM_EINVAL;
3419       break;
3420
3421     case VPPCOM_ATTR_GET_V6ONLY:
3422       if (buffer && buflen && (*buflen >= sizeof (int)))
3423         {
3424           /* VPP-TBD */
3425           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3426                                                 VCL_SESS_ATTR_V6ONLY);
3427           *buflen = sizeof (int);
3428
3429           VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3430                 *(int *) buffer, *buflen);
3431         }
3432       else
3433         rv = VPPCOM_EINVAL;
3434       break;
3435
3436     case VPPCOM_ATTR_SET_V6ONLY:
3437       if (buffer && buflen && (*buflen == sizeof (int)))
3438         {
3439           /* VPP-TBD */
3440           if (*(int *) buffer)
3441             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3442           else
3443             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3444
3445           VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3446                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3447                 *buflen);
3448         }
3449       else
3450         rv = VPPCOM_EINVAL;
3451       break;
3452
3453     case VPPCOM_ATTR_GET_KEEPALIVE:
3454       if (buffer && buflen && (*buflen >= sizeof (int)))
3455         {
3456           /* VPP-TBD */
3457           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3458                                                 VCL_SESS_ATTR_KEEPALIVE);
3459           *buflen = sizeof (int);
3460
3461           VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3462                 *(int *) buffer, *buflen);
3463         }
3464       else
3465         rv = VPPCOM_EINVAL;
3466       break;
3467
3468     case VPPCOM_ATTR_SET_KEEPALIVE:
3469       if (buffer && buflen && (*buflen == sizeof (int)))
3470         {
3471           /* VPP-TBD */
3472           if (*(int *) buffer)
3473             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3474           else
3475             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3476
3477           VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3478                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3479                 *buflen);
3480         }
3481       else
3482         rv = VPPCOM_EINVAL;
3483       break;
3484
3485     case VPPCOM_ATTR_GET_TCP_NODELAY:
3486       if (buffer && buflen && (*buflen >= sizeof (int)))
3487         {
3488           /* VPP-TBD */
3489           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3490                                                 VCL_SESS_ATTR_TCP_NODELAY);
3491           *buflen = sizeof (int);
3492
3493           VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3494                 *(int *) buffer, *buflen);
3495         }
3496       else
3497         rv = VPPCOM_EINVAL;
3498       break;
3499
3500     case VPPCOM_ATTR_SET_TCP_NODELAY:
3501       if (buffer && buflen && (*buflen == sizeof (int)))
3502         {
3503           /* VPP-TBD */
3504           if (*(int *) buffer)
3505             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3506           else
3507             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3508
3509           VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3510                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3511                 *buflen);
3512         }
3513       else
3514         rv = VPPCOM_EINVAL;
3515       break;
3516
3517     case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3518       if (buffer && buflen && (*buflen >= sizeof (int)))
3519         {
3520           /* VPP-TBD */
3521           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3522                                                 VCL_SESS_ATTR_TCP_KEEPIDLE);
3523           *buflen = sizeof (int);
3524
3525           VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3526                 *(int *) buffer, *buflen);
3527         }
3528       else
3529         rv = VPPCOM_EINVAL;
3530       break;
3531
3532     case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
3533       if (buffer && buflen && (*buflen == sizeof (int)))
3534         {
3535           /* VPP-TBD */
3536           if (*(int *) buffer)
3537             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3538           else
3539             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3540
3541           VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3542                 VCL_SESS_ATTR_TEST (session->attr,
3543                                     VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
3544         }
3545       else
3546         rv = VPPCOM_EINVAL;
3547       break;
3548
3549     case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3550       if (buffer && buflen && (*buflen >= sizeof (int)))
3551         {
3552           /* VPP-TBD */
3553           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3554                                                 VCL_SESS_ATTR_TCP_KEEPINTVL);
3555           *buflen = sizeof (int);
3556
3557           VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3558                 *(int *) buffer, *buflen);
3559         }
3560       else
3561         rv = VPPCOM_EINVAL;
3562       break;
3563
3564     case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
3565       if (buffer && buflen && (*buflen == sizeof (int)))
3566         {
3567           /* VPP-TBD */
3568           if (*(int *) buffer)
3569             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3570           else
3571             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3572
3573           VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3574                 VCL_SESS_ATTR_TEST (session->attr,
3575                                     VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
3576         }
3577       else
3578         rv = VPPCOM_EINVAL;
3579       break;
3580
3581     case VPPCOM_ATTR_GET_TCP_USER_MSS:
3582       if (buffer && buflen && (*buflen >= sizeof (u32)))
3583         {
3584           /* VPP-TBD */
3585           *(u32 *) buffer = session->user_mss;
3586           *buflen = sizeof (int);
3587
3588           VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3589                 *(int *) buffer, *buflen);
3590         }
3591       else
3592         rv = VPPCOM_EINVAL;
3593       break;
3594
3595     case VPPCOM_ATTR_SET_TCP_USER_MSS:
3596       if (buffer && buflen && (*buflen == sizeof (u32)))
3597         {
3598           /* VPP-TBD */
3599           session->user_mss = *(u32 *) buffer;
3600
3601           VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3602                 session->user_mss, *buflen);
3603         }
3604       else
3605         rv = VPPCOM_EINVAL;
3606       break;
3607
3608     case VPPCOM_ATTR_SET_SHUT:
3609       if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3610         VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3611       if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3612         VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3613       break;
3614
3615     case VPPCOM_ATTR_GET_SHUT:
3616       if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3617         tmp_flags = 1;
3618       if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3619         tmp_flags |= 2;
3620       if (tmp_flags == 1)
3621         *(int *) buffer = SHUT_RD;
3622       else if (tmp_flags == 2)
3623         *(int *) buffer = SHUT_WR;
3624       else if (tmp_flags == 3)
3625         *(int *) buffer = SHUT_RDWR;
3626       *buflen = sizeof (int);
3627       break;
3628
3629     case VPPCOM_ATTR_SET_CONNECTED:
3630       session->flags |= VCL_SESSION_F_CONNECTED;
3631       break;
3632
3633     default:
3634       rv = VPPCOM_EINVAL;
3635       break;
3636     }
3637
3638   return rv;
3639 }
3640
3641 int
3642 vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
3643                          uint32_t buflen, int flags, vppcom_endpt_t * ep)
3644 {
3645   vcl_worker_t *wrk = vcl_worker_get_current ();
3646   vcl_session_t *session;
3647   int rv = VPPCOM_OK;
3648
3649   if (flags == 0)
3650     rv = vppcom_session_read (session_handle, buffer, buflen);
3651   else if (flags & MSG_PEEK)
3652     rv = vppcom_session_peek (session_handle, buffer, buflen);
3653   else
3654     {
3655       VDBG (0, "Unsupport flags for recvfrom %d", flags);
3656       return VPPCOM_EAFNOSUPPORT;
3657     }
3658
3659   if (ep && rv > 0)
3660     {
3661       session = vcl_session_get_w_handle (wrk, session_handle);
3662       if (session->transport.is_ip4)
3663         clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3664                           sizeof (ip4_address_t));
3665       else
3666         clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3667                           sizeof (ip6_address_t));
3668       ep->is_ip4 = session->transport.is_ip4;
3669       ep->port = session->transport.rmt_port;
3670     }
3671
3672   return rv;
3673 }
3674
3675 int
3676 vppcom_session_sendto (uint32_t session_handle, void *buffer,
3677                        uint32_t buflen, int flags, vppcom_endpt_t * ep)
3678 {
3679   vcl_worker_t *wrk = vcl_worker_get_current ();
3680   vcl_session_t *s;
3681
3682   s = vcl_session_get_w_handle (wrk, session_handle);
3683   if (!s)
3684     return VPPCOM_EBADFD;
3685
3686   if (!buffer)
3687     return VPPCOM_EINVAL;
3688
3689   if (ep)
3690     {
3691       if (s->session_type != VPPCOM_PROTO_UDP
3692           || (s->flags & VCL_SESSION_F_CONNECTED))
3693         return VPPCOM_EINVAL;
3694
3695       /* Session not connected/bound in vpp. Create it by 'connecting' it */
3696       if (PREDICT_FALSE (s->session_state == STATE_CLOSED))
3697         {
3698           vcl_send_session_connect (wrk, s);
3699         }
3700       else
3701         {
3702           s->transport.is_ip4 = ep->is_ip4;
3703           s->transport.rmt_port = ep->port;
3704           vcl_ip_copy_from_ep (&s->transport.rmt_ip, ep);
3705         }
3706     }
3707
3708   if (flags)
3709     {
3710       // TBD check the flags and do the right thing
3711       VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
3712     }
3713
3714   return (vppcom_session_write_inline (wrk, s, buffer, buflen, 1,
3715                                        s->is_dgram ? 1 : 0));
3716 }
3717
3718 int
3719 vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3720 {
3721   vcl_worker_t *wrk = vcl_worker_get_current ();
3722   f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
3723   u32 i, keep_trying = 1;
3724   svm_msg_q_msg_t msg;
3725   session_event_t *e;
3726   int rv, num_ev = 0;
3727
3728   VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
3729
3730   if (!vp)
3731     return VPPCOM_EFAULT;
3732
3733   do
3734     {
3735       vcl_session_t *session;
3736
3737       /* Dequeue all events and drop all unhandled io events */
3738       while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3739         {
3740           e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3741           vcl_handle_mq_event (wrk, e);
3742           svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3743         }
3744       vec_reset_length (wrk->unhandled_evts_vector);
3745
3746       for (i = 0; i < n_sids; i++)
3747         {
3748           session = vcl_session_get (wrk, vp[i].sh);
3749           if (!session)
3750             {
3751               vp[i].revents = POLLHUP;
3752               num_ev++;
3753               continue;
3754             }
3755
3756           vp[i].revents = 0;
3757
3758           if (POLLIN & vp[i].events)
3759             {
3760               rv = vcl_session_read_ready (session);
3761               if (rv > 0)
3762                 {
3763                   vp[i].revents |= POLLIN;
3764                   num_ev++;
3765                 }
3766               else if (rv < 0)
3767                 {
3768                   switch (rv)
3769                     {
3770                     case VPPCOM_ECONNRESET:
3771                       vp[i].revents = POLLHUP;
3772                       break;
3773
3774                     default:
3775                       vp[i].revents = POLLERR;
3776                       break;
3777                     }
3778                   num_ev++;
3779                 }
3780             }
3781
3782           if (POLLOUT & vp[i].events)
3783             {
3784               rv = vcl_session_write_ready (session);
3785               if (rv > 0)
3786                 {
3787                   vp[i].revents |= POLLOUT;
3788                   num_ev++;
3789                 }
3790               else if (rv < 0)
3791                 {
3792                   switch (rv)
3793                     {
3794                     case VPPCOM_ECONNRESET:
3795                       vp[i].revents = POLLHUP;
3796                       break;
3797
3798                     default:
3799                       vp[i].revents = POLLERR;
3800                       break;
3801                     }
3802                   num_ev++;
3803                 }
3804             }
3805
3806           if (0)                // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
3807             {
3808               vp[i].revents = POLLNVAL;
3809               num_ev++;
3810             }
3811         }
3812       if (wait_for_time != -1)
3813         keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
3814     }
3815   while ((num_ev == 0) && keep_trying);
3816
3817   return num_ev;
3818 }
3819
3820 int
3821 vppcom_mq_epoll_fd (void)
3822 {
3823   vcl_worker_t *wrk = vcl_worker_get_current ();
3824   return wrk->mqs_epfd;
3825 }
3826
3827 int
3828 vppcom_session_index (vcl_session_handle_t session_handle)
3829 {
3830   return session_handle & 0xFFFFFF;
3831 }
3832
3833 int
3834 vppcom_session_worker (vcl_session_handle_t session_handle)
3835 {
3836   return session_handle >> 24;
3837 }
3838
3839 int
3840 vppcom_worker_register (void)
3841 {
3842   if (!vcl_worker_alloc_and_init ())
3843     return VPPCOM_EEXIST;
3844
3845   if (vcl_worker_register_with_vpp ())
3846     return VPPCOM_EEXIST;
3847
3848   return VPPCOM_OK;
3849 }
3850
3851 void
3852 vppcom_worker_unregister (void)
3853 {
3854   vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3855   vcl_set_worker_index (~0);
3856 }
3857
3858 void
3859 vppcom_worker_index_set (int index)
3860 {
3861   vcl_set_worker_index (index);
3862 }
3863
3864 int
3865 vppcom_worker_index (void)
3866 {
3867   return vcl_get_worker_index ();
3868 }
3869
3870 int
3871 vppcom_worker_mqs_epfd (void)
3872 {
3873   vcl_worker_t *wrk = vcl_worker_get_current ();
3874   if (!vcm->cfg.use_mq_eventfd)
3875     return -1;
3876   return wrk->mqs_epfd;
3877 }
3878
3879 int
3880 vppcom_session_is_connectable_listener (uint32_t session_handle)
3881 {
3882   vcl_session_t *session;
3883   vcl_worker_t *wrk = vcl_worker_get_current ();
3884   session = vcl_session_get_w_handle (wrk, session_handle);
3885   if (!session)
3886     return VPPCOM_EBADFD;
3887   return vcl_session_is_connectable_listener (wrk, session);
3888 }
3889
3890 int
3891 vppcom_session_listener (uint32_t session_handle)
3892 {
3893   vcl_worker_t *wrk = vcl_worker_get_current ();
3894   vcl_session_t *listen_session, *session;
3895   session = vcl_session_get_w_handle (wrk, session_handle);
3896   if (!session)
3897     return VPPCOM_EBADFD;
3898   if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3899     return VPPCOM_EBADFD;
3900   listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3901   if (!listen_session)
3902     return VPPCOM_EBADFD;
3903   return vcl_session_handle (listen_session);
3904 }
3905
3906 int
3907 vppcom_session_n_accepted (uint32_t session_handle)
3908 {
3909   vcl_worker_t *wrk = vcl_worker_get_current ();
3910   vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3911   if (!session)
3912     return VPPCOM_EBADFD;
3913   return session->n_accepted_sessions;
3914 }
3915
3916 const char *
3917 vppcom_proto_str (vppcom_proto_t proto)
3918 {
3919   char const *proto_str;
3920
3921   switch (proto)
3922     {
3923     case VPPCOM_PROTO_TCP:
3924       proto_str = "TCP";
3925       break;
3926     case VPPCOM_PROTO_UDP:
3927       proto_str = "UDP";
3928       break;
3929     case VPPCOM_PROTO_TLS:
3930       proto_str = "TLS";
3931       break;
3932     case VPPCOM_PROTO_QUIC:
3933       proto_str = "QUIC";
3934       break;
3935     default:
3936       proto_str = "UNKNOWN";
3937       break;
3938     }
3939   return proto_str;
3940 }
3941
3942 const char *
3943 vppcom_retval_str (int retval)
3944 {
3945   char const *st;
3946
3947   switch (retval)
3948     {
3949     case VPPCOM_OK:
3950       st = "VPPCOM_OK";
3951       break;
3952
3953     case VPPCOM_EAGAIN:
3954       st = "VPPCOM_EAGAIN";
3955       break;
3956
3957     case VPPCOM_EFAULT:
3958       st = "VPPCOM_EFAULT";
3959       break;
3960
3961     case VPPCOM_ENOMEM:
3962       st = "VPPCOM_ENOMEM";
3963       break;
3964
3965     case VPPCOM_EINVAL:
3966       st = "VPPCOM_EINVAL";
3967       break;
3968
3969     case VPPCOM_EBADFD:
3970       st = "VPPCOM_EBADFD";
3971       break;
3972
3973     case VPPCOM_EAFNOSUPPORT:
3974       st = "VPPCOM_EAFNOSUPPORT";
3975       break;
3976
3977     case VPPCOM_ECONNABORTED:
3978       st = "VPPCOM_ECONNABORTED";
3979       break;
3980
3981     case VPPCOM_ECONNRESET:
3982       st = "VPPCOM_ECONNRESET";
3983       break;
3984
3985     case VPPCOM_ENOTCONN:
3986       st = "VPPCOM_ENOTCONN";
3987       break;
3988
3989     case VPPCOM_ECONNREFUSED:
3990       st = "VPPCOM_ECONNREFUSED";
3991       break;
3992
3993     case VPPCOM_ETIMEDOUT:
3994       st = "VPPCOM_ETIMEDOUT";
3995       break;
3996
3997     default:
3998       st = "UNKNOWN_STATE";
3999       break;
4000     }
4001
4002   return st;
4003 }
4004
4005 /*
4006  * fd.io coding-style-patch-verification: ON
4007  *
4008  * Local Variables:
4009  * eval: (c-set-style "gnu")
4010  * End:
4011  */