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