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