session: support multiple worker binds
[vpp.git] / src / vcl / vppcom.c
1 /*
2  * Copyright (c) 2017 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 <svm/svm_fifo_segment.h>
19 #include <vcl/vppcom.h>
20 #include <vcl/vcl_event.h>
21 #include <vcl/vcl_debug.h>
22 #include <vcl/vcl_private.h>
23
24 __thread uword __vcl_worker_index = ~0;
25
26 static u8 not_ready;
27
28 void
29 sigsegv_signal (int signum)
30 {
31   not_ready = 1;
32 }
33
34 static void
35 vcl_wait_for_memory (void *mem)
36 {
37   u8 __clib_unused test;
38   if (vcm->mounting_segment)
39     {
40       while (vcm->mounting_segment)
41         ;
42       return;
43     }
44   if (1 || vcm->debug)
45     {
46       usleep (1e5);
47       return;
48     }
49   if (signal (SIGSEGV, sigsegv_signal))
50     {
51       perror ("signal()");
52       return;
53     }
54   not_ready = 0;
55
56 again:
57   test = *(u8 *) mem;
58   if (not_ready)
59     {
60       not_ready = 0;
61       usleep (1);
62       goto again;
63     }
64
65   signal (SIGSEGV, SIG_DFL);
66 }
67
68 const char *
69 vppcom_session_state_str (session_state_t state)
70 {
71   char *st;
72
73   switch (state)
74     {
75     case STATE_START:
76       st = "STATE_START";
77       break;
78
79     case STATE_CONNECT:
80       st = "STATE_CONNECT";
81       break;
82
83     case STATE_LISTEN:
84       st = "STATE_LISTEN";
85       break;
86
87     case STATE_ACCEPT:
88       st = "STATE_ACCEPT";
89       break;
90
91     case STATE_CLOSE_ON_EMPTY:
92       st = "STATE_CLOSE_ON_EMPTY";
93       break;
94
95     case STATE_DISCONNECT:
96       st = "STATE_DISCONNECT";
97       break;
98
99     case STATE_FAILED:
100       st = "STATE_FAILED";
101       break;
102
103     default:
104       st = "UNKNOWN_STATE";
105       break;
106     }
107
108   return st;
109 }
110
111 u8 *
112 format_ip4_address (u8 * s, va_list * args)
113 {
114   u8 *a = va_arg (*args, u8 *);
115   return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
116 }
117
118 u8 *
119 format_ip6_address (u8 * s, va_list * args)
120 {
121   ip6_address_t *a = va_arg (*args, ip6_address_t *);
122   u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
123
124   i_max_n_zero = ARRAY_LEN (a->as_u16);
125   max_n_zeros = 0;
126   i_first_zero = i_max_n_zero;
127   n_zeros = 0;
128   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
129     {
130       u32 is_zero = a->as_u16[i] == 0;
131       if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
132         {
133           i_first_zero = i;
134           n_zeros = 0;
135         }
136       n_zeros += is_zero;
137       if ((!is_zero && n_zeros > max_n_zeros)
138           || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
139         {
140           i_max_n_zero = i_first_zero;
141           max_n_zeros = n_zeros;
142           i_first_zero = ARRAY_LEN (a->as_u16);
143           n_zeros = 0;
144         }
145     }
146
147   last_double_colon = 0;
148   for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
149     {
150       if (i == i_max_n_zero && max_n_zeros > 1)
151         {
152           s = format (s, "::");
153           i += max_n_zeros - 1;
154           last_double_colon = 1;
155         }
156       else
157         {
158           s = format (s, "%s%x",
159                       (last_double_colon || i == 0) ? "" : ":",
160                       clib_net_to_host_u16 (a->as_u16[i]));
161           last_double_colon = 0;
162         }
163     }
164
165   return s;
166 }
167
168 /* Format an IP46 address. */
169 u8 *
170 format_ip46_address (u8 * s, va_list * args)
171 {
172   ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
173   ip46_type_t type = va_arg (*args, ip46_type_t);
174   int is_ip4 = 1;
175
176   switch (type)
177     {
178     case IP46_TYPE_ANY:
179       is_ip4 = ip46_address_is_ip4 (ip46);
180       break;
181     case IP46_TYPE_IP4:
182       is_ip4 = 1;
183       break;
184     case IP46_TYPE_IP6:
185       is_ip4 = 0;
186       break;
187     }
188
189   return is_ip4 ?
190     format (s, "%U", format_ip4_address, &ip46->ip4) :
191     format (s, "%U", format_ip6_address, &ip46->ip6);
192 }
193
194 /*
195  * VPPCOM Utility Functions
196  */
197
198
199 static svm_msg_q_t *
200 vcl_session_vpp_evt_q (vcl_worker_t * wrk, vcl_session_t * s)
201 {
202   if (vcl_session_is_ct (s))
203     return wrk->vpp_event_queues[0];
204   else
205     return wrk->vpp_event_queues[s->tx_fifo->master_thread_index];
206 }
207
208 static void
209 vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
210                                  session_handle_t handle, int retval)
211 {
212   app_session_evt_t _app_evt, *app_evt = &_app_evt;
213   session_accepted_reply_msg_t *rmp;
214   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
215   rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
216   rmp->handle = handle;
217   rmp->context = context;
218   rmp->retval = retval;
219   app_send_ctrl_evt_to_vpp (mq, app_evt);
220 }
221
222 static void
223 vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
224                                      session_handle_t handle, int retval)
225 {
226   app_session_evt_t _app_evt, *app_evt = &_app_evt;
227   session_disconnected_reply_msg_t *rmp;
228   app_alloc_ctrl_evt_to_vpp (mq, app_evt,
229                              SESSION_CTRL_EVT_DISCONNECTED_REPLY);
230   rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
231   rmp->handle = handle;
232   rmp->context = context;
233   rmp->retval = retval;
234   app_send_ctrl_evt_to_vpp (mq, app_evt);
235 }
236
237 static void
238 vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
239                               session_handle_t handle, int retval)
240 {
241   app_session_evt_t _app_evt, *app_evt = &_app_evt;
242   session_reset_reply_msg_t *rmp;
243   app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
244   rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
245   rmp->handle = handle;
246   rmp->context = context;
247   rmp->retval = retval;
248   app_send_ctrl_evt_to_vpp (mq, app_evt);
249 }
250
251 static u32
252 vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp)
253 {
254   vcl_session_t *session, *listen_session;
255   svm_fifo_t *rx_fifo, *tx_fifo;
256   u32 vpp_wrk_index;
257   svm_msg_q_t *evt_q;
258
259   session = vcl_session_alloc (wrk);
260
261   listen_session = vcl_session_table_lookup_listener (wrk,
262                                                       mp->listener_handle);
263   if (!listen_session)
264     {
265       svm_msg_q_t *evt_q;
266       evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
267       clib_warning ("VCL<%d>: ERROR: couldn't find listen session: "
268                     "unknown vpp listener handle %llx",
269                     getpid (), mp->listener_handle);
270       vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
271                                        VNET_API_ERROR_INVALID_ARGUMENT);
272       vcl_session_free (wrk, session);
273       return VCL_INVALID_SESSION_INDEX;
274     }
275
276   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
277   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
278
279   if (mp->server_event_queue_address)
280     {
281       session->vpp_evt_q = uword_to_pointer (mp->client_event_queue_address,
282                                              svm_msg_q_t *);
283       session->our_evt_q = uword_to_pointer (mp->server_event_queue_address,
284                                              svm_msg_q_t *);
285       vcl_wait_for_memory (session->vpp_evt_q);
286       rx_fifo->master_session_index = session->session_index;
287       tx_fifo->master_session_index = session->session_index;
288       vec_validate (wrk->vpp_event_queues, 0);
289       evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
290       wrk->vpp_event_queues[0] = evt_q;
291     }
292   else
293     {
294       session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
295                                              svm_msg_q_t *);
296       rx_fifo->client_session_index = session->session_index;
297       tx_fifo->client_session_index = session->session_index;
298
299       vpp_wrk_index = tx_fifo->master_thread_index;
300       vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
301       wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
302     }
303
304   session->vpp_handle = mp->handle;
305   session->client_context = mp->context;
306   session->rx_fifo = rx_fifo;
307   session->tx_fifo = tx_fifo;
308
309   session->session_state = STATE_ACCEPT;
310   session->transport.rmt_port = mp->port;
311   session->transport.is_ip4 = mp->is_ip4;
312   clib_memcpy (&session->transport.rmt_ip, mp->ip, sizeof (ip46_address_t));
313
314   vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
315   session->transport.lcl_port = listen_session->transport.lcl_port;
316   session->transport.lcl_ip = listen_session->transport.lcl_ip;
317   session->session_type = listen_session->session_type;
318   session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
319
320   VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
321         " address %U port %d queue %p!", getpid (), mp->handle,
322         session->session_index,
323         mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
324         mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
325         clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
326   vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
327
328   return session->session_index;
329 }
330
331 static u32
332 vcl_session_connected_handler (vcl_worker_t * wrk,
333                                session_connected_msg_t * mp)
334 {
335   u32 session_index, vpp_wrk_index;
336   svm_fifo_t *rx_fifo, *tx_fifo;
337   vcl_session_t *session = 0;
338   svm_msg_q_t *evt_q;
339
340   session_index = mp->context;
341   session = vcl_session_get (wrk, session_index);
342   if (!session)
343     {
344       clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
345                     "Invalid session index (%u)!",
346                     getpid (), mp->handle, session_index);
347       return VCL_INVALID_SESSION_INDEX;
348     }
349   if (mp->retval)
350     {
351       clib_warning ("VCL<%d>: ERROR: sid %u: connect failed! %U", getpid (),
352                     mp->handle, session_index, format_api_error,
353                     ntohl (mp->retval));
354       session->session_state = STATE_FAILED;
355       session->vpp_handle = mp->handle;
356       return session_index;
357     }
358
359   rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
360   tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
361   vcl_wait_for_memory (rx_fifo);
362   rx_fifo->client_session_index = session_index;
363   tx_fifo->client_session_index = session_index;
364
365   if (mp->client_event_queue_address)
366     {
367       session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
368                                              svm_msg_q_t *);
369       session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
370                                              svm_msg_q_t *);
371
372       vec_validate (wrk->vpp_event_queues, 0);
373       evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
374       wrk->vpp_event_queues[0] = evt_q;
375     }
376   else
377     {
378       session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
379                                              svm_msg_q_t *);
380       vpp_wrk_index = tx_fifo->master_thread_index;
381       vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
382       wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
383     }
384
385   session->rx_fifo = rx_fifo;
386   session->tx_fifo = tx_fifo;
387   session->vpp_handle = mp->handle;
388   session->transport.is_ip4 = mp->is_ip4;
389   clib_memcpy (&session->transport.lcl_ip, mp->lcl_ip,
390                sizeof (session->transport.lcl_ip));
391   session->transport.lcl_port = mp->lcl_port;
392   session->session_state = STATE_CONNECT;
393
394   /* Add it to lookup table */
395   hash_set (wrk->session_index_by_vpp_handles, mp->handle, session_index);
396
397   VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
398         "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
399         getpid (), mp->handle, session_index, session->rx_fifo,
400         session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
401
402   return session_index;
403 }
404
405 static u32
406 vcl_session_reset_handler (vcl_worker_t * wrk,
407                            session_reset_msg_t * reset_msg)
408 {
409   vcl_session_t *session;
410   u32 sid;
411
412   sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
413   session = vcl_session_get (wrk, sid);
414   if (!session)
415     {
416       VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
417       return VCL_INVALID_SESSION_INDEX;
418     }
419   session->session_state = STATE_CLOSE_ON_EMPTY;
420   VDBG (0, "reset handle 0x%llx, sid %u ", reset_msg->handle, sid);
421   vcl_send_session_reset_reply (vcl_session_vpp_evt_q (wrk, session),
422                                 vcm->my_client_index, reset_msg->handle, 0);
423   return sid;
424 }
425
426 static u32
427 vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
428 {
429   vcl_session_t *session;
430   u32 sid = mp->context;
431
432   session = vcl_session_get (wrk, sid);
433   if (mp->retval)
434     {
435       VDBG (0, "VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: bind failed: %U",
436             getpid (), mp->handle, sid, format_api_error, ntohl (mp->retval));
437       if (session)
438         {
439           session->session_state = STATE_FAILED;
440           session->vpp_handle = mp->handle;
441           return sid;
442         }
443       else
444         {
445           clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
446                         "Invalid session index (%u)!",
447                         getpid (), mp->handle, sid);
448           return VCL_INVALID_SESSION_INDEX;
449         }
450     }
451
452   session->vpp_handle = mp->handle;
453   session->transport.is_ip4 = mp->lcl_is_ip4;
454   clib_memcpy (&session->transport.lcl_ip, mp->lcl_ip,
455                sizeof (ip46_address_t));
456   session->transport.lcl_port = mp->lcl_port;
457   vcl_session_table_add_listener (wrk, mp->handle, sid);
458   session->session_state = STATE_LISTEN;
459
460   if (session->is_dgram)
461     {
462       svm_fifo_t *rx_fifo, *tx_fifo;
463       session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
464       rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
465       rx_fifo->client_session_index = sid;
466       tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
467       tx_fifo->client_session_index = sid;
468       session->rx_fifo = rx_fifo;
469       session->tx_fifo = tx_fifo;
470     }
471
472   VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: bind succeeded!",
473         getpid (), mp->handle, sid);
474   return sid;
475 }
476
477 int
478 vcl_handle_mq_ctrl_event (vcl_worker_t * wrk, session_event_t * e)
479 {
480   session_accepted_msg_t *accepted_msg;
481   session_disconnected_msg_t *disconnected_msg;
482   vcl_session_msg_t *vcl_msg;
483   vcl_session_t *session;
484   u64 handle;
485   u32 sid;
486
487   switch (e->event_type)
488     {
489     case FIFO_EVENT_APP_RX:
490       clib_warning ("unhandled rx: sid %u (0x%x)",
491                     e->fifo->client_session_index,
492                     e->fifo->client_session_index);
493       break;
494     case SESSION_CTRL_EVT_ACCEPTED:
495       accepted_msg = (session_accepted_msg_t *) e->data;
496       handle = accepted_msg->listener_handle;
497       session = vcl_session_table_lookup_listener (wrk, handle);
498       if (!session)
499         {
500           clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
501                         "listener handle %llx", getpid (), handle);
502           break;
503         }
504
505       clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
506       vcl_msg->accepted_msg = *accepted_msg;
507       break;
508     case SESSION_CTRL_EVT_CONNECTED:
509       vcl_session_connected_handler (wrk,
510                                      (session_connected_msg_t *) e->data);
511       break;
512     case SESSION_CTRL_EVT_DISCONNECTED:
513       disconnected_msg = (session_disconnected_msg_t *) e->data;
514       sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
515       session = vcl_session_get (wrk, sid);
516       if (!session)
517         {
518           VDBG (0, "request to disconnect unknown handle 0x%llx",
519                 disconnected_msg->handle);
520           break;
521         }
522       session->session_state = STATE_DISCONNECT;
523       VDBG (0, "disconnected handle 0xllx, sid %u", disconnected_msg->handle,
524             sid);
525       break;
526     case SESSION_CTRL_EVT_RESET:
527       vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
528       break;
529     case SESSION_CTRL_EVT_BOUND:
530       vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
531       break;
532     default:
533       clib_warning ("unhandled %u", e->event_type);
534     }
535   return VPPCOM_OK;
536 }
537
538 static inline int
539 vppcom_wait_for_session_state_change (u32 session_index,
540                                       session_state_t state,
541                                       f64 wait_for_time)
542 {
543   vcl_worker_t *wrk = vcl_worker_get_current ();
544   f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
545   vcl_session_t *volatile session;
546   svm_msg_q_msg_t msg;
547   session_event_t *e;
548
549   do
550     {
551       session = vcl_session_get (wrk, session_index);
552       if (PREDICT_FALSE (!session))
553         {
554           return VPPCOM_EBADFD;
555         }
556       if (session->session_state & state)
557         {
558           return VPPCOM_OK;
559         }
560       if (session->session_state & STATE_FAILED)
561         {
562           return VPPCOM_ECONNREFUSED;
563         }
564
565       if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
566         continue;
567       e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
568       vcl_handle_mq_ctrl_event (wrk, e);
569       svm_msg_q_free_msg (wrk->app_event_queue, &msg);
570     }
571   while (clib_time_now (&wrk->clib_time) < timeout);
572
573   VDBG (0, "VCL<%d>: timeout waiting for state 0x%x (%s)", getpid (), state,
574         vppcom_session_state_str (state));
575   vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
576
577   return VPPCOM_ETIMEDOUT;
578 }
579
580 static int
581 vppcom_app_session_enable (void)
582 {
583   int rv;
584
585   if (vcm->app_state != STATE_APP_ENABLED)
586     {
587       vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
588       rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
589       if (PREDICT_FALSE (rv))
590         {
591           VDBG (0, "VCL<%d>: application session enable timed out! "
592                 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
593           return rv;
594         }
595     }
596   return VPPCOM_OK;
597 }
598
599 static int
600 vppcom_app_attach (void)
601 {
602   int rv;
603
604   vppcom_app_send_attach ();
605   rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
606   if (PREDICT_FALSE (rv))
607     {
608       VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
609             getpid (), rv, vppcom_retval_str (rv));
610       return rv;
611     }
612
613   return VPPCOM_OK;
614 }
615
616 static int
617 vppcom_session_unbind (u32 session_handle)
618 {
619   vcl_worker_t *wrk = vcl_worker_get_current ();
620   vcl_session_t *session = 0;
621   u64 vpp_handle;
622
623   session = vcl_session_get_w_handle (wrk, session_handle);
624   if (!session)
625     return VPPCOM_EBADFD;
626
627   vpp_handle = session->vpp_handle;
628   vcl_session_table_del_listener (wrk, vpp_handle);
629   session->vpp_handle = ~0;
630   session->session_state = STATE_DISCONNECT;
631
632   VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
633         " 0x%x (%s)", getpid (), vpp_handle, session_handle, STATE_DISCONNECT,
634         vppcom_session_state_str (STATE_DISCONNECT));
635   vcl_evt (VCL_EVT_UNBIND, session);
636   vppcom_send_unbind_sock (vpp_handle);
637
638   return VPPCOM_OK;
639 }
640
641 static int
642 vppcom_session_disconnect (u32 session_handle)
643 {
644   vcl_worker_t *wrk = vcl_worker_get_current ();
645   svm_msg_q_t *vpp_evt_q;
646   vcl_session_t *session;
647   session_state_t state;
648   u64 vpp_handle;
649
650   session = vcl_session_get_w_handle (wrk, session_handle);
651   vpp_handle = session->vpp_handle;
652   state = session->session_state;
653
654   VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
655         vpp_handle, session_handle, state, vppcom_session_state_str (state));
656
657   if (PREDICT_FALSE (state & STATE_LISTEN))
658     {
659       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
660                     "Cannot disconnect a listen socket!",
661                     getpid (), vpp_handle, session_handle);
662       return VPPCOM_EBADFD;
663     }
664
665   if (state & STATE_CLOSE_ON_EMPTY)
666     {
667       vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
668       vcl_send_session_disconnected_reply (vpp_evt_q, vcm->my_client_index,
669                                            vpp_handle, 0);
670       VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
671             "REPLY...", getpid (), vpp_handle, session_handle);
672     }
673   else
674     {
675       VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
676             getpid (), vpp_handle, session_handle);
677       vppcom_send_disconnect_session (vpp_handle);
678     }
679
680   return VPPCOM_OK;
681 }
682
683 /*
684  * VPPCOM Public API functions
685  */
686 int
687 vppcom_app_create (char *app_name)
688 {
689   vppcom_cfg_t *vcl_cfg = &vcm->cfg;
690   int rv;
691
692   if (!vcm->is_init)
693     {
694       vcm->is_init = 1;
695       vppcom_cfg (&vcm->cfg);
696       vcl_cfg = &vcm->cfg;
697
698       vcm->main_cpu = pthread_self ();
699       vppcom_init_error_string_table ();
700       svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
701                                   20 /* timeout in secs */ );
702       pool_init_fixed (vcm->workers, vcl_cfg->max_workers);
703       vcl_worker_alloc_and_init ();
704     }
705
706   if (vcm->my_client_index == ~0)
707     {
708       /* API hookup and connect to VPP */
709       vppcom_api_hookup ();
710       vcl_elog_init (vcm);
711       vcm->app_state = STATE_APP_START;
712       rv = vppcom_connect_to_vpp (app_name);
713       if (rv)
714         {
715           clib_warning ("VCL<%d>: ERROR: couldn't connect to VPP!",
716                         getpid ());
717           return rv;
718         }
719
720       VDBG (0, "VCL<%d>: sending session enable", getpid ());
721       rv = vppcom_app_session_enable ();
722       if (rv)
723         {
724           clib_warning ("VCL<%d>: ERROR: vppcom_app_session_enable() "
725                         "failed!", getpid ());
726           return rv;
727         }
728
729       VDBG (0, "VCL<%d>: sending app attach", getpid ());
730       rv = vppcom_app_attach ();
731       if (rv)
732         {
733           clib_warning ("VCL<%d>: ERROR: vppcom_app_attach() failed!",
734                         getpid ());
735           return rv;
736         }
737
738       VDBG (0, "VCL<%d>: app_name '%s', my_client_index %d (0x%x)",
739             getpid (), app_name, vcm->my_client_index, vcm->my_client_index);
740     }
741
742   return VPPCOM_OK;
743 }
744
745 void
746 vppcom_app_destroy (void)
747 {
748   int rv;
749   f64 orig_app_timeout;
750
751   if (vcm->my_client_index == ~0)
752     return;
753
754   VDBG (0, "VCL<%d>: detaching from VPP, my_client_index %d (0x%x)",
755         getpid (), vcm->my_client_index, vcm->my_client_index);
756   vcl_evt (VCL_EVT_DETACH, vcm);
757
758   vppcom_app_send_detach ();
759   orig_app_timeout = vcm->cfg.app_timeout;
760   vcm->cfg.app_timeout = 2.0;
761   rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
762   vcm->cfg.app_timeout = orig_app_timeout;
763   if (PREDICT_FALSE (rv))
764     VDBG (0, "VCL<%d>: application detach timed out! returning %d (%s)",
765           getpid (), rv, vppcom_retval_str (rv));
766
767   vcl_elog_stop (vcm);
768   vl_client_disconnect_from_vlib ();
769   vcm->my_client_index = ~0;
770   vcm->app_state = STATE_APP_START;
771 }
772
773 int
774 vppcom_session_create (u8 proto, u8 is_nonblocking)
775 {
776   vcl_worker_t *wrk = vcl_worker_get_current ();
777   vcl_session_t *session;
778
779   session = vcl_session_alloc (wrk);
780
781   session->session_type = proto;
782   session->session_state = STATE_START;
783   session->vpp_handle = ~0;
784   session->is_dgram = proto == VPPCOM_PROTO_UDP;
785
786   if (is_nonblocking)
787     VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
788
789   vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
790            is_nonblocking, session_index);
791
792   VDBG (0, "VCL<%d>: sid %u", getpid (), session->session_index);
793
794   return vcl_session_handle (session);
795 }
796
797 int
798 vppcom_session_close (uint32_t session_handle)
799 {
800   vcl_worker_t *wrk = vcl_worker_get_current ();
801   vcl_session_t *session = 0;
802   u8 is_vep, is_vep_session;
803   session_state_t state;
804   u32 next_sh, vep_sh;
805   int rv = VPPCOM_OK;
806   u64 vpp_handle;
807
808   session = vcl_session_get_w_handle (wrk, session_handle);
809   if (!session)
810     return VPPCOM_EBADFD;
811
812   is_vep = session->is_vep;
813   is_vep_session = session->is_vep_session;
814   next_sh = session->vep.next_sh;
815   vep_sh = session->vep.vep_sh;
816   state = session->session_state;
817   vpp_handle = session->vpp_handle;
818
819   if (VPPCOM_DEBUG > 0)
820     {
821       if (is_vep)
822         clib_warning ("VCL<%d>: vep_idx %u / sid %u: "
823                       "closing epoll session...",
824                       getpid (), session_handle, session_handle);
825       else
826         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %d: "
827                       "closing session...",
828                       getpid (), vpp_handle, session_handle);
829     }
830
831   if (is_vep)
832     {
833       while (next_sh != ~0)
834         {
835           rv = vppcom_epoll_ctl (session_handle, EPOLL_CTL_DEL, next_sh, 0);
836           if (PREDICT_FALSE (rv < 0))
837             VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
838                   "vep_idx %u failed! rv %d (%s)",
839                   getpid (), vpp_handle, next_sh, vep_sh,
840                   rv, vppcom_retval_str (rv));
841
842           next_sh = session->vep.next_sh;
843         }
844     }
845   else
846     {
847       if (is_vep_session)
848         {
849           rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, session_handle, 0);
850           if (rv < 0)
851             VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
852                   "vep_idx %u failed! rv %d (%s)",
853                   getpid (), vpp_handle, session_handle,
854                   vep_sh, rv, vppcom_retval_str (rv));
855         }
856
857       if (state & STATE_LISTEN)
858         {
859           rv = vppcom_session_unbind (session_handle);
860           if (PREDICT_FALSE (rv < 0))
861             VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: listener unbind "
862                   "failed! rv %d (%s)",
863                   getpid (), vpp_handle, session_handle,
864                   rv, vppcom_retval_str (rv));
865         }
866       else if (state & STATE_OPEN)
867         {
868           rv = vppcom_session_disconnect (session_handle);
869           if (PREDICT_FALSE (rv < 0))
870             clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
871                           "session disconnect failed! rv %d (%s)",
872                           getpid (), vpp_handle, session_handle,
873                           rv, vppcom_retval_str (rv));
874         }
875     }
876
877   if (vcl_session_is_ct (session))
878     {
879       vcl_cut_through_registration_t *ctr;
880       uword mq_addr;
881
882       mq_addr = pointer_to_uword (session->our_evt_q);
883       ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
884       ASSERT (ctr);
885       if (ctr->epoll_evt_conn_index != ~0)
886         vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
887       VDBG (0, "Removing ct registration %u",
888             vcl_ct_registration_index (wrk, ctr));
889       vcl_ct_registration_del (wrk, ctr);
890       vcl_ct_registration_lookup_del (wrk, mq_addr);
891       vcl_ct_registration_unlock (wrk);
892     }
893
894   if (vpp_handle != ~0)
895     {
896       vcl_session_table_del_vpp_handle (wrk, vpp_handle);
897     }
898   vcl_session_free (wrk, session);
899
900   if (VPPCOM_DEBUG > 0)
901     {
902       if (is_vep)
903         clib_warning ("VCL<%d>: vep_idx %u / sid %u: epoll session removed.",
904                       getpid (), session_handle, session_handle);
905       else
906         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: session removed.",
907                       getpid (), vpp_handle, session_handle);
908     }
909
910   vcl_evt (VCL_EVT_CLOSE, session, rv);
911
912   return rv;
913 }
914
915 int
916 vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
917 {
918   vcl_worker_t *wrk = vcl_worker_get_current ();
919   vcl_session_t *session = 0;
920
921   if (!ep || !ep->ip)
922     return VPPCOM_EINVAL;
923
924   session = vcl_session_get_w_handle (wrk, session_handle);
925   if (!session)
926     return VPPCOM_EBADFD;
927
928   if (session->is_vep)
929     {
930       clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
931                     "bind to an epoll session!", getpid (), session_handle);
932       return VPPCOM_EBADFD;
933     }
934
935   session->transport.is_ip4 = ep->is_ip4;
936   if (ep->is_ip4)
937     clib_memcpy (&session->transport.lcl_ip.ip4, ep->ip,
938                  sizeof (ip4_address_t));
939   else
940     clib_memcpy (&session->transport.lcl_ip.ip6, ep->ip,
941                  sizeof (ip6_address_t));
942   session->transport.lcl_port = ep->port;
943
944   VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
945         "proto %s", getpid (), session_handle,
946         session->transport.is_ip4 ? "IPv4" : "IPv6",
947         format_ip46_address, &session->transport.lcl_ip,
948         session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
949         clib_net_to_host_u16 (session->transport.lcl_port),
950         session->session_type ? "UDP" : "TCP");
951   vcl_evt (VCL_EVT_BIND, session);
952
953   if (session->session_type == VPPCOM_PROTO_UDP)
954     vppcom_session_listen (session_handle, 10);
955
956   return VPPCOM_OK;
957 }
958
959 int
960 vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
961 {
962   vcl_worker_t *wrk = vcl_worker_get_current ();
963   vcl_session_t *listen_session = 0;
964   u64 listen_vpp_handle;
965   int rv;
966
967   listen_session = vcl_session_get_w_handle (wrk, listen_sh);
968   if (!listen_session)
969     return VPPCOM_EBADFD;
970
971   if (q_len == 0 || q_len == ~0)
972     q_len = vcm->cfg.listen_queue_size;
973
974   if (listen_session->is_vep)
975     {
976       clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
977                     "epoll session!", getpid (), listen_sh);
978       return VPPCOM_EBADFD;
979     }
980
981   listen_vpp_handle = listen_session->vpp_handle;
982   if (listen_session->session_state & STATE_LISTEN)
983     {
984       VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
985             getpid (), listen_vpp_handle, listen_sh);
986       return VPPCOM_OK;
987     }
988
989   VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
990         "request...", getpid (), listen_vpp_handle, listen_sh);
991
992   /*
993    * Send listen request to vpp and wait for reply
994    */
995   vppcom_send_bind_sock (listen_session);
996   rv = vppcom_wait_for_session_state_change (listen_session->session_index,
997                                              STATE_LISTEN,
998                                              vcm->cfg.session_timeout);
999
1000   if (PREDICT_FALSE (rv))
1001     {
1002       listen_session = vcl_session_get_w_handle (wrk, listen_sh);
1003       VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
1004             "returning %d (%s)", getpid (), listen_session->vpp_handle,
1005             listen_sh, rv, vppcom_retval_str (rv));
1006       return rv;
1007     }
1008
1009   return VPPCOM_OK;
1010 }
1011
1012 static int
1013 validate_args_session_accept_ (vcl_worker_t * wrk,
1014                                vcl_session_t * listen_session)
1015 {
1016   /* Input validation - expects spinlock on sessions_lockp */
1017   if (listen_session->is_vep)
1018     {
1019       clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
1020                     "epoll session!", getpid (),
1021                     listen_session->session_index);
1022       return VPPCOM_EBADFD;
1023     }
1024
1025   if (listen_session->session_state != STATE_LISTEN)
1026     {
1027       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1028                     "not in listen state! state 0x%x (%s)", getpid (),
1029                     listen_session->vpp_handle, listen_session->session_index,
1030                     listen_session->session_state,
1031                     vppcom_session_state_str (listen_session->session_state));
1032       return VPPCOM_EBADFD;
1033     }
1034   return VPPCOM_OK;
1035 }
1036
1037 int
1038 vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
1039                        uint32_t flags)
1040 {
1041   u32 client_session_index = ~0, listen_session_index;
1042   vcl_worker_t *wrk = vcl_worker_get_current ();
1043   session_accepted_msg_t accepted_msg;
1044   vcl_session_t *listen_session = 0;
1045   vcl_session_t *client_session = 0;
1046   svm_msg_q_t *vpp_evt_q;
1047   vcl_session_msg_t *evt;
1048   u64 listen_vpp_handle;
1049   svm_msg_q_msg_t msg;
1050   session_event_t *e;
1051   u8 is_nonblocking;
1052   int rv;
1053
1054   listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
1055   if (!listen_session)
1056     return VPPCOM_EBADFD;
1057
1058   listen_session_index = listen_session->session_index;
1059   if ((rv = validate_args_session_accept_ (wrk, listen_session)))
1060     return rv;
1061
1062   if (clib_fifo_elts (listen_session->accept_evts_fifo))
1063     {
1064       clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1065       accepted_msg = evt->accepted_msg;
1066       goto handle;
1067     }
1068
1069   is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1070                                        VCL_SESS_ATTR_NONBLOCK);
1071   if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1072     return VPPCOM_EAGAIN;
1073
1074   while (1)
1075     {
1076       if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
1077         return VPPCOM_EAGAIN;
1078
1079       e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
1080       if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
1081         {
1082           clib_warning ("discarded event: %u", e->event_type);
1083           svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1084           continue;
1085         }
1086       clib_memcpy (&accepted_msg, e->data, sizeof (accepted_msg));
1087       svm_msg_q_free_msg (wrk->app_event_queue, &msg);
1088       break;
1089     }
1090
1091 handle:
1092
1093   client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1094   listen_session = vcl_session_get (wrk, listen_session_index);
1095   client_session = vcl_session_get (wrk, client_session_index);
1096
1097   if (flags & O_NONBLOCK)
1098     VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
1099
1100   listen_vpp_handle = listen_session->vpp_handle;
1101   VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
1102         "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
1103         getpid (), listen_vpp_handle, listen_session_handle,
1104         client_session->vpp_handle, client_session_index,
1105         flags, VCL_SESS_ATTR_TEST (client_session->attr,
1106                                    VCL_SESS_ATTR_NONBLOCK));
1107
1108   if (ep)
1109     {
1110       ep->is_ip4 = client_session->transport.is_ip4;
1111       ep->port = client_session->transport.rmt_port;
1112       if (client_session->transport.is_ip4)
1113         clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip4,
1114                      sizeof (ip4_address_t));
1115       else
1116         clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip6,
1117                      sizeof (ip6_address_t));
1118     }
1119
1120   if (accepted_msg.server_event_queue_address)
1121     vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1122                                   svm_msg_q_t *);
1123   else
1124     vpp_evt_q = client_session->vpp_evt_q;
1125
1126   vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1127                                    client_session->vpp_handle, 0);
1128
1129   VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx, "
1130         "sid %u connection from peer %s address %U port %u to local %s "
1131         "address %U port %u", getpid (), listen_vpp_handle,
1132         listen_session_handle, client_session->vpp_handle,
1133         client_session_index,
1134         client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1135         format_ip46_address, &client_session->transport.rmt_ip,
1136         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1137         clib_net_to_host_u16 (client_session->transport.rmt_port),
1138         client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1139         format_ip46_address, &client_session->transport.lcl_ip,
1140         client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1141         clib_net_to_host_u16 (client_session->transport.lcl_port));
1142   vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1143            client_session_index);
1144
1145   return vcl_session_handle (client_session);
1146 }
1147
1148 int
1149 vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
1150 {
1151   vcl_worker_t *wrk = vcl_worker_get_current ();
1152   vcl_session_t *session = 0;
1153   u32 session_index;
1154   int rv;
1155
1156   session = vcl_session_get_w_handle (wrk, session_handle);
1157   if (!session)
1158     return VPPCOM_EBADFD;
1159   session_index = session->session_index;
1160
1161   if (PREDICT_FALSE (session->is_vep))
1162     {
1163       clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
1164                     "connect on an epoll session!", getpid (),
1165                     session_handle);
1166       return VPPCOM_EBADFD;
1167     }
1168
1169   if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1170     {
1171       VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1172             "connected to %s %U port %d proto %s, state 0x%x (%s)",
1173             getpid (), session->vpp_handle, session_handle,
1174             session->transport.is_ip4 ? "IPv4" : "IPv6",
1175             format_ip46_address,
1176             &session->transport.rmt_ip, session->transport.is_ip4 ?
1177             IP46_TYPE_IP4 : IP46_TYPE_IP6,
1178             clib_net_to_host_u16 (session->transport.rmt_port),
1179             session->session_type ? "UDP" : "TCP", session->session_state,
1180             vppcom_session_state_str (session->session_state));
1181       return VPPCOM_OK;
1182     }
1183
1184   session->transport.is_ip4 = server_ep->is_ip4;
1185   if (session->transport.is_ip4)
1186     clib_memcpy (&session->transport.rmt_ip.ip4, server_ep->ip,
1187                  sizeof (ip4_address_t));
1188   else
1189     clib_memcpy (&session->transport.rmt_ip.ip6, server_ep->ip,
1190                  sizeof (ip6_address_t));
1191   session->transport.rmt_port = server_ep->port;
1192
1193   VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1194         "port %d proto %s",
1195         getpid (), session->vpp_handle, session_handle,
1196         session->transport.is_ip4 ? "IPv4" : "IPv6",
1197         format_ip46_address,
1198         &session->transport.rmt_ip, session->transport.is_ip4 ?
1199         IP46_TYPE_IP4 : IP46_TYPE_IP6,
1200         clib_net_to_host_u16 (session->transport.rmt_port),
1201         session->session_type ? "UDP" : "TCP");
1202
1203   /*
1204    * Send connect request and wait for reply from vpp
1205    */
1206   vppcom_send_connect_sock (session);
1207   rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1208                                              vcm->cfg.session_timeout);
1209
1210   session = vcl_session_get (wrk, session_index);
1211
1212   if (PREDICT_FALSE (rv))
1213     {
1214       if (VPPCOM_DEBUG > 0)
1215         {
1216           if (session)
1217             clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
1218                           "failed! returning %d (%s)", getpid (),
1219                           session->vpp_handle, session_handle, rv,
1220                           vppcom_retval_str (rv));
1221           else
1222             clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1223                           "returning %d (%s)", getpid (),
1224                           session_handle, rv, vppcom_retval_str (rv));
1225         }
1226     }
1227   else
1228     VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
1229           getpid (), session->vpp_handle, session_handle);
1230
1231   return rv;
1232 }
1233
1234 static u8
1235 vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1236 {
1237   if (!is_ct)
1238     return (e->event_type == FIFO_EVENT_APP_RX
1239             && e->fifo->client_session_index == sid);
1240   else
1241     return (e->event_type == SESSION_IO_EVT_CT_TX);
1242 }
1243
1244 static inline u8
1245 vcl_session_is_readable (vcl_session_t * s)
1246 {
1247   return ((s->session_state & STATE_OPEN)
1248           || (s->session_state == STATE_LISTEN
1249               && s->session_type == VPPCOM_PROTO_UDP));
1250 }
1251
1252 static inline int
1253 vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
1254                               u8 peek)
1255 {
1256   vcl_worker_t *wrk = vcl_worker_get_current ();
1257   int n_read = 0, rv, is_nonblocking;
1258   vcl_session_t *s = 0;
1259   svm_fifo_t *rx_fifo;
1260   svm_msg_q_msg_t msg;
1261   session_event_t *e;
1262   svm_msg_q_t *mq;
1263   u8 is_full;
1264
1265   if (PREDICT_FALSE (!buf))
1266     return VPPCOM_EINVAL;
1267
1268   s = vcl_session_get_w_handle (wrk, session_handle);
1269   if (PREDICT_FALSE (!s))
1270     return VPPCOM_EBADFD;
1271
1272   if (PREDICT_FALSE (s->is_vep))
1273     {
1274       clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
1275                     "read from an epoll session!", getpid (), session_handle);
1276       return VPPCOM_EBADFD;
1277     }
1278
1279   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1280   rx_fifo = s->rx_fifo;
1281
1282   if (PREDICT_FALSE (!vcl_session_is_readable (s)))
1283     {
1284       session_state_t state = s->session_state;
1285       rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1286
1287       VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1288             "state 0x%x (%s), returning %d (%s)",
1289             getpid (), s->vpp_handle, session_handle, state,
1290             vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1291       return rv;
1292     }
1293
1294   mq = vcl_session_is_ct (s) ? s->our_evt_q : wrk->app_event_queue;
1295   svm_fifo_unset_event (rx_fifo);
1296   is_full = svm_fifo_is_full (rx_fifo);
1297
1298   if (svm_fifo_is_empty (rx_fifo))
1299     {
1300       if (is_nonblocking)
1301         {
1302           return VPPCOM_OK;
1303         }
1304       while (1)
1305         {
1306           svm_msg_q_lock (mq);
1307           if (svm_msg_q_is_empty (mq))
1308             svm_msg_q_wait (mq);
1309
1310           svm_msg_q_sub_w_lock (mq, &msg);
1311           e = svm_msg_q_msg_data (mq, &msg);
1312           svm_msg_q_unlock (mq);
1313           if (!vcl_is_rx_evt_for_session (e, s->session_index,
1314                                           s->our_evt_q != 0))
1315             {
1316               vcl_handle_mq_ctrl_event (wrk, e);
1317               svm_msg_q_free_msg (mq, &msg);
1318               continue;
1319             }
1320           svm_fifo_unset_event (rx_fifo);
1321           svm_msg_q_free_msg (mq, &msg);
1322           if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1323             return 0;
1324           if (svm_fifo_is_empty (rx_fifo))
1325             continue;
1326           break;
1327         }
1328     }
1329
1330   if (s->is_dgram)
1331     n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
1332   else
1333     n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
1334
1335   if (vcl_session_is_ct (s) && is_full)
1336     {
1337       /* If the peer is not polling send notification */
1338       if (!svm_fifo_has_event (s->rx_fifo))
1339         app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1340                                 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1341     }
1342
1343   if (VPPCOM_DEBUG > 2)
1344     {
1345       if (n_read > 0)
1346         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes "
1347                       "from (%p)", getpid (), s->vpp_handle,
1348                       session_handle, n_read, rx_fifo);
1349       else
1350         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: nothing read! "
1351                       "returning %d (%s)", getpid (), s->vpp_handle,
1352                       session_handle, n_read, vppcom_retval_str (n_read));
1353     }
1354   return n_read;
1355 }
1356
1357 int
1358 vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
1359 {
1360   return (vppcom_session_read_internal (session_handle, buf, n, 0));
1361 }
1362
1363 static int
1364 vppcom_session_peek (uint32_t session_handle, void *buf, int n)
1365 {
1366   return (vppcom_session_read_internal (session_handle, buf, n, 1));
1367 }
1368
1369 static inline int
1370 vppcom_session_read_ready (vcl_session_t * session)
1371 {
1372   /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1373   if (PREDICT_FALSE (session->is_vep))
1374     {
1375       clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
1376                     "epoll session!", getpid (), session->session_index);
1377       return VPPCOM_EBADFD;
1378     }
1379
1380   if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1381     {
1382       session_state_t state = session->session_state;
1383       int rv;
1384
1385       rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1386
1387       VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1388             " state 0x%x (%s), returning %d (%s)", getpid (),
1389             session->vpp_handle, session->session_index, state,
1390             vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1391       return rv;
1392     }
1393
1394   if (session->session_state & STATE_LISTEN)
1395     return clib_fifo_elts (session->accept_evts_fifo);
1396
1397   return svm_fifo_max_dequeue (session->rx_fifo);
1398 }
1399
1400 static u8
1401 vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1402 {
1403   if (!is_ct)
1404     return (e->event_type == FIFO_EVENT_APP_TX
1405             && e->fifo->client_session_index == sid);
1406   else
1407     return (e->event_type == SESSION_IO_EVT_CT_RX);
1408 }
1409
1410 int
1411 vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
1412 {
1413   vcl_worker_t *wrk = vcl_worker_get_current ();
1414   int rv, n_write, is_nonblocking;
1415   vcl_session_t *s = 0;
1416   svm_fifo_t *tx_fifo = 0;
1417   session_evt_type_t et;
1418   svm_msg_q_msg_t msg;
1419   session_event_t *e;
1420   svm_msg_q_t *mq;
1421
1422   if (PREDICT_FALSE (!buf))
1423     return VPPCOM_EINVAL;
1424
1425   s = vcl_session_get_w_handle (wrk, session_handle);
1426   if (PREDICT_FALSE (!s))
1427     return VPPCOM_EBADFD;
1428
1429   tx_fifo = s->tx_fifo;
1430   is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1431
1432   if (PREDICT_FALSE (s->is_vep))
1433     {
1434       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1435                     "cannot write to an epoll session!",
1436                     getpid (), s->vpp_handle, session_handle);
1437
1438       return VPPCOM_EBADFD;
1439     }
1440
1441   if (!(s->session_state & STATE_OPEN))
1442     {
1443       session_state_t state = s->session_state;
1444       rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1445       VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
1446             "state 0x%x (%s)",
1447             getpid (), s->vpp_handle, session_handle,
1448             state, vppcom_session_state_str (state));
1449       return rv;
1450     }
1451
1452   mq = vcl_session_is_ct (s) ? s->our_evt_q : wrk->app_event_queue;
1453   if (svm_fifo_is_full (tx_fifo))
1454     {
1455       if (is_nonblocking)
1456         {
1457           return VPPCOM_EWOULDBLOCK;
1458         }
1459       while (svm_fifo_is_full (tx_fifo))
1460         {
1461           svm_msg_q_lock (mq);
1462           while (svm_msg_q_is_empty (mq) && svm_msg_q_timedwait (mq, 10e-6))
1463             ;
1464           svm_msg_q_sub_w_lock (mq, &msg);
1465           e = svm_msg_q_msg_data (mq, &msg);
1466           svm_msg_q_unlock (mq);
1467
1468           if (!vcl_is_tx_evt_for_session (e, s->session_index,
1469                                           s->our_evt_q != 0))
1470             vcl_handle_mq_ctrl_event (wrk, e);
1471           svm_msg_q_free_msg (mq, &msg);
1472         }
1473     }
1474
1475   ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1476   et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
1477   if (s->is_dgram)
1478     n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1479                                   s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1480   else
1481     n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1482                                    SVM_Q_WAIT);
1483
1484   ASSERT (n_write > 0);
1485
1486   if (VPPCOM_DEBUG > 2)
1487     {
1488       if (n_write <= 0)
1489         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
1490                       "FIFO-FULL (%p)", getpid (), s->vpp_handle,
1491                       session_handle, tx_fifo);
1492       else
1493         clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
1494                       "wrote %d bytes tx-fifo: (%p)", getpid (),
1495                       s->vpp_handle, session_handle, n_write, tx_fifo);
1496     }
1497   return n_write;
1498 }
1499
1500 static vcl_session_t *
1501 vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
1502 {
1503   vcl_session_t *s;
1504   s = vcl_session_get (wrk, f->client_session_index);
1505   if (s)
1506     {
1507       /* rx fifo */
1508       if (type == 0 && s->rx_fifo == f)
1509         return s;
1510       /* tx fifo */
1511       if (type == 1 && s->tx_fifo == f)
1512         return s;
1513     }
1514   s = vcl_session_get (wrk, f->master_session_index);
1515   if (s)
1516     {
1517       if (type == 0 && s->rx_fifo == f)
1518         return s;
1519       if (type == 1 && s->tx_fifo == f)
1520         return s;
1521     }
1522   return 0;
1523 }
1524
1525 static inline int
1526 vppcom_session_write_ready (vcl_session_t * session)
1527 {
1528   /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1529   if (PREDICT_FALSE (session->is_vep))
1530     {
1531       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1532                     "cannot write to an epoll session!",
1533                     getpid (), session->vpp_handle, session->session_index);
1534       return VPPCOM_EBADFD;
1535     }
1536
1537   if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
1538     {
1539       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1540                     "cannot write to a listen session!",
1541                     getpid (), session->vpp_handle, session->session_index);
1542       return VPPCOM_EBADFD;
1543     }
1544
1545   if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
1546     {
1547       session_state_t state = session->session_state;
1548       int rv;
1549
1550       rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1551       clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1552                     "session is not open! state 0x%x (%s), "
1553                     "returning %d (%s)", getpid (), session->vpp_handle,
1554                     session->session_index,
1555                     state, vppcom_session_state_str (state),
1556                     rv, vppcom_retval_str (rv));
1557       return rv;
1558     }
1559
1560   VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
1561         getpid (), session->vpp_handle, session->session_index,
1562         session->tx_fifo, svm_fifo_max_enqueue (session->tx_fifo));
1563
1564   return svm_fifo_max_enqueue (session->tx_fifo);
1565 }
1566
1567 static inline int
1568 vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
1569 {
1570   svm_msg_q_msg_t *msg;
1571   u32 n_msgs;
1572   int i;
1573
1574   n_msgs = svm_msg_q_size (mq);
1575   for (i = 0; i < n_msgs; i++)
1576     {
1577       vec_add2 (wrk->mq_msg_vector, msg, 1);
1578       svm_msg_q_sub_w_lock (mq, msg);
1579     }
1580   return n_msgs;
1581 }
1582
1583 static int
1584 vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
1585                       unsigned long n_bits, unsigned long *read_map,
1586                       unsigned long *write_map, unsigned long *except_map,
1587                       double time_to_wait, u32 * bits_set)
1588 {
1589   session_disconnected_msg_t *disconnected_msg;
1590   session_connected_msg_t *connected_msg;
1591   session_accepted_msg_t *accepted_msg;
1592   vcl_session_msg_t *vcl_msg;
1593   vcl_session_t *session;
1594   svm_msg_q_msg_t *msg;
1595   session_event_t *e;
1596   u32 i, sid;
1597   u64 handle;
1598
1599   svm_msg_q_lock (mq);
1600   if (svm_msg_q_is_empty (mq))
1601     {
1602       if (*bits_set)
1603         {
1604           svm_msg_q_unlock (mq);
1605           return 0;
1606         }
1607
1608       if (!time_to_wait)
1609         {
1610           svm_msg_q_unlock (mq);
1611           return 0;
1612         }
1613       else if (time_to_wait < 0)
1614         {
1615           svm_msg_q_wait (mq);
1616         }
1617       else
1618         {
1619           if (svm_msg_q_timedwait (mq, time_to_wait))
1620             {
1621               svm_msg_q_unlock (mq);
1622               return 0;
1623             }
1624         }
1625     }
1626   vcl_mq_dequeue_batch (wrk, mq);
1627   svm_msg_q_unlock (mq);
1628
1629   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
1630     {
1631       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
1632       e = svm_msg_q_msg_data (mq, msg);
1633       switch (e->event_type)
1634         {
1635         case FIFO_EVENT_APP_RX:
1636           sid = e->fifo->client_session_index;
1637           session = vcl_session_get (wrk, sid);
1638           if (sid < n_bits && read_map)
1639             {
1640               clib_bitmap_set_no_check (read_map, sid, 1);
1641               *bits_set += 1;
1642             }
1643           break;
1644         case FIFO_EVENT_APP_TX:
1645           sid = e->fifo->client_session_index;
1646           session = vcl_session_get (wrk, sid);
1647           if (!session)
1648             break;
1649           if (sid < n_bits && write_map)
1650             {
1651               clib_bitmap_set_no_check (write_map, sid, 1);
1652               *bits_set += 1;
1653             }
1654           break;
1655         case SESSION_IO_EVT_CT_TX:
1656           if (svm_fifo_is_empty (e->fifo))
1657             {
1658               svm_fifo_unset_event (e->fifo);
1659               if (svm_fifo_is_empty (e->fifo))
1660                 break;
1661             }
1662           session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
1663           sid = session->session_index;
1664           if (sid < n_bits && read_map)
1665             {
1666               clib_bitmap_set_no_check (read_map, sid, 1);
1667               *bits_set += 1;
1668             }
1669           break;
1670         case SESSION_IO_EVT_CT_RX:
1671           session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
1672           sid = session->session_index;
1673           if (!session)
1674             break;
1675           if (sid < n_bits && write_map)
1676             {
1677               clib_bitmap_set_no_check (write_map, sid, 1);
1678               *bits_set += 1;
1679             }
1680           break;
1681         case SESSION_CTRL_EVT_ACCEPTED:
1682           accepted_msg = (session_accepted_msg_t *) e->data;
1683           handle = accepted_msg->listener_handle;
1684           session = vcl_session_table_lookup_listener (wrk, handle);
1685           if (!session)
1686             {
1687               clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
1688                             "listener handle %llx", getpid (), handle);
1689               break;
1690             }
1691
1692           clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
1693           vcl_msg->accepted_msg = *accepted_msg;
1694           sid = session->session_index;
1695           if (sid < n_bits && read_map)
1696             {
1697               clib_bitmap_set_no_check (read_map, sid, 1);
1698               *bits_set += 1;
1699             }
1700           break;
1701         case SESSION_CTRL_EVT_CONNECTED:
1702           connected_msg = (session_connected_msg_t *) e->data;
1703           vcl_session_connected_handler (wrk, connected_msg);
1704           break;
1705         case SESSION_CTRL_EVT_DISCONNECTED:
1706           disconnected_msg = (session_disconnected_msg_t *) e->data;
1707           sid = vcl_session_index_from_vpp_handle (wrk,
1708                                                    disconnected_msg->handle);
1709           if (sid < n_bits && except_map)
1710             {
1711               clib_bitmap_set_no_check (except_map, sid, 1);
1712               *bits_set += 1;
1713             }
1714           break;
1715         case SESSION_CTRL_EVT_RESET:
1716           sid = vcl_session_reset_handler (wrk,
1717                                            (session_reset_msg_t *) e->data);
1718           if (sid < n_bits && except_map)
1719             {
1720               clib_bitmap_set_no_check (except_map, sid, 1);
1721               *bits_set += 1;
1722             }
1723           break;
1724         default:
1725           clib_warning ("unhandled: %u", e->event_type);
1726           break;
1727         }
1728       svm_msg_q_free_msg (mq, msg);
1729     }
1730
1731   vec_reset_length (wrk->mq_msg_vector);
1732   return *bits_set;
1733 }
1734
1735 static int
1736 vppcom_select_condvar (vcl_worker_t * wrk, unsigned long n_bits,
1737                        unsigned long *read_map, unsigned long *write_map,
1738                        unsigned long *except_map, double time_to_wait,
1739                        u32 * bits_set)
1740 {
1741   double total_wait = 0, wait_slice;
1742   vcl_cut_through_registration_t *cr;
1743
1744   time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
1745   wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
1746   do
1747     {
1748       vcl_ct_registration_lock (wrk);
1749       /* *INDENT-OFF* */
1750       pool_foreach (cr, wrk->cut_through_registrations, ({
1751         vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
1752                               0, bits_set);
1753       }));
1754       /* *INDENT-ON* */
1755       vcl_ct_registration_unlock (wrk);
1756
1757       vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
1758                             write_map, except_map, time_to_wait, bits_set);
1759       total_wait += wait_slice;
1760       if (*bits_set)
1761         return *bits_set;
1762     }
1763   while (total_wait < time_to_wait);
1764
1765   return 0;
1766 }
1767
1768 static int
1769 vppcom_select_eventfd (vcl_worker_t * wrk, unsigned long n_bits,
1770                        unsigned long *read_map, unsigned long *write_map,
1771                        unsigned long *except_map, double time_to_wait,
1772                        u32 * bits_set)
1773 {
1774   vcl_mq_evt_conn_t *mqc;
1775   int __clib_unused n_read;
1776   int n_mq_evts, i;
1777   u64 buf;
1778
1779   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
1780   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
1781                           vec_len (wrk->mq_events), time_to_wait);
1782   for (i = 0; i < n_mq_evts; i++)
1783     {
1784       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
1785       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
1786       vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
1787                             except_map, 0, bits_set);
1788     }
1789
1790   return (n_mq_evts > 0 ? (int) *bits_set : 0);
1791 }
1792
1793 int
1794 vppcom_select (unsigned long n_bits, unsigned long *read_map,
1795                unsigned long *write_map, unsigned long *except_map,
1796                double time_to_wait)
1797 {
1798   u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
1799   vcl_worker_t *wrk = vcl_worker_get_current ();
1800   vcl_session_t *session = 0;
1801   int rv;
1802
1803   ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1804
1805   if (n_bits && read_map)
1806     {
1807       clib_bitmap_validate (wrk->rd_bitmap, minbits);
1808       clib_memcpy (wrk->rd_bitmap, read_map,
1809                    vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
1810       memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
1811     }
1812   if (n_bits && write_map)
1813     {
1814       clib_bitmap_validate (wrk->wr_bitmap, minbits);
1815       clib_memcpy (wrk->wr_bitmap, write_map,
1816                    vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
1817       memset (write_map, 0,
1818               vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
1819     }
1820   if (n_bits && except_map)
1821     {
1822       clib_bitmap_validate (wrk->ex_bitmap, minbits);
1823       clib_memcpy (wrk->ex_bitmap, except_map,
1824                    vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
1825       memset (except_map, 0,
1826               vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
1827     }
1828
1829   if (!n_bits)
1830     return 0;
1831
1832   if (!write_map)
1833     goto check_rd;
1834
1835   /* *INDENT-OFF* */
1836   clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
1837     if (!(session = vcl_session_get (wrk, sid)))
1838       {
1839         VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1840               getpid (), sid);
1841         return VPPCOM_EBADFD;
1842       }
1843
1844     rv = svm_fifo_is_full (session->tx_fifo);
1845     if (!rv)
1846       {
1847         clib_bitmap_set_no_check (write_map, sid, 1);
1848         bits_set++;
1849       }
1850   }));
1851
1852 check_rd:
1853   if (!read_map)
1854     goto check_mq;
1855
1856   clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
1857     if (!(session = vcl_session_get (wrk, sid)))
1858       {
1859         VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1860               getpid (), sid);
1861         return VPPCOM_EBADFD;
1862       }
1863
1864     rv = vppcom_session_read_ready (session);
1865     if (rv)
1866       {
1867         clib_bitmap_set_no_check (read_map, sid, 1);
1868         bits_set++;
1869       }
1870   }));
1871   /* *INDENT-ON* */
1872
1873 check_mq:
1874
1875   if (vcm->cfg.use_mq_eventfd)
1876     vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
1877                            time_to_wait, &bits_set);
1878   else
1879     vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
1880                            time_to_wait, &bits_set);
1881
1882   return (bits_set);
1883 }
1884
1885 static inline void
1886 vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
1887 {
1888   vcl_session_t *session;
1889   vppcom_epoll_t *vep;
1890   u32 sid = vep_idx;
1891
1892   if (VPPCOM_DEBUG <= 1)
1893     return;
1894
1895   /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1896   session = vcl_session_get (wrk, vep_idx);
1897   if (PREDICT_FALSE (!session))
1898     {
1899       clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
1900                     getpid (), vep_idx);
1901       goto done;
1902     }
1903   if (PREDICT_FALSE (!session->is_vep))
1904     {
1905       clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
1906                     getpid (), vep_idx);
1907       goto done;
1908     }
1909   vep = &session->vep;
1910   clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
1911                 "{\n"
1912                 "   is_vep         = %u\n"
1913                 "   is_vep_session = %u\n"
1914                 "   next_sid       = 0x%x (%u)\n"
1915                 "   wait_cont_idx  = 0x%x (%u)\n"
1916                 "}\n", getpid (), vep_idx,
1917                 session->is_vep, session->is_vep_session,
1918                 vep->next_sh, vep->next_sh,
1919                 session->wait_cont_idx, session->wait_cont_idx);
1920
1921   for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
1922     {
1923       session = vcl_session_get (wrk, sid);
1924       if (PREDICT_FALSE (!session))
1925         {
1926           clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
1927           goto done;
1928         }
1929       if (PREDICT_FALSE (session->is_vep))
1930         clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
1931                       getpid (), vep_idx);
1932       else if (PREDICT_FALSE (!session->is_vep_session))
1933         {
1934           clib_warning ("VCL<%d>: ERROR: session (%u) "
1935                         "is not a vep session!", getpid (), sid);
1936           goto done;
1937         }
1938       vep = &session->vep;
1939       if (PREDICT_FALSE (vep->vep_sh != vep_idx))
1940         clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
1941                       "vep_idx (%u)!", getpid (),
1942                       sid, session->vep.vep_sh, vep_idx);
1943       if (session->is_vep_session)
1944         {
1945           clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
1946                         "{\n"
1947                         "   next_sid       = 0x%x (%u)\n"
1948                         "   prev_sid       = 0x%x (%u)\n"
1949                         "   vep_idx        = 0x%x (%u)\n"
1950                         "   ev.events      = 0x%x\n"
1951                         "   ev.data.u64    = 0x%llx\n"
1952                         "   et_mask        = 0x%x\n"
1953                         "}\n",
1954                         vep_idx, sid, sid,
1955                         vep->next_sh, vep->next_sh,
1956                         vep->prev_sh, vep->prev_sh,
1957                         vep->vep_sh, vep->vep_sh,
1958                         vep->ev.events, vep->ev.data.u64, vep->et_mask);
1959         }
1960     }
1961
1962 done:
1963   clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
1964                 getpid (), vep_idx);
1965 }
1966
1967 int
1968 vppcom_epoll_create (void)
1969 {
1970   vcl_worker_t *wrk = vcl_worker_get_current ();
1971   vcl_session_t *vep_session;
1972
1973   vep_session = vcl_session_alloc (wrk);
1974
1975   vep_session->is_vep = 1;
1976   vep_session->vep.vep_sh = ~0;
1977   vep_session->vep.next_sh = ~0;
1978   vep_session->vep.prev_sh = ~0;
1979   vep_session->wait_cont_idx = ~0;
1980   vep_session->vpp_handle = ~0;
1981
1982   vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_sh);
1983   VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
1984         getpid (), vep_session->session_index, vep_session->session_index);
1985
1986   return vcl_session_handle (vep_session);
1987 }
1988
1989 int
1990 vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
1991                   struct epoll_event *event)
1992 {
1993   vcl_worker_t *wrk = vcl_worker_get_current ();
1994   vcl_session_t *vep_session;
1995   vcl_session_t *session;
1996   int rv = VPPCOM_OK;
1997
1998   if (vep_handle == session_handle)
1999     {
2000       clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
2001                     getpid (), vep_handle);
2002       return VPPCOM_EINVAL;
2003     }
2004
2005   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
2006   if (PREDICT_FALSE (!vep_session))
2007     {
2008       clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_handle);
2009       return VPPCOM_EBADFD;
2010     }
2011   if (PREDICT_FALSE (!vep_session->is_vep))
2012     {
2013       clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2014                     getpid (), vep_handle);
2015       return VPPCOM_EINVAL;
2016     }
2017
2018   ASSERT (vep_session->vep.vep_sh == ~0);
2019   ASSERT (vep_session->vep.prev_sh == ~0);
2020
2021   session = vcl_session_get_w_handle (wrk, session_handle);
2022   if (PREDICT_FALSE (!session))
2023     {
2024       VDBG (0, "VCL<%d>: ERROR: Invalid session_handle (%u)!",
2025             getpid (), session_handle);
2026       return VPPCOM_EBADFD;
2027     }
2028   if (PREDICT_FALSE (session->is_vep))
2029     {
2030       clib_warning ("ERROR: session_handle (%u) is a vep!", vep_handle);
2031       return VPPCOM_EINVAL;
2032     }
2033
2034   switch (op)
2035     {
2036     case EPOLL_CTL_ADD:
2037       if (PREDICT_FALSE (!event))
2038         {
2039           clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
2040                         "epoll_event structure!", getpid ());
2041           return VPPCOM_EINVAL;
2042         }
2043       if (vep_session->vep.next_sh != ~0)
2044         {
2045           vcl_session_t *next_session;
2046           next_session = vcl_session_get_w_handle (wrk,
2047                                                    vep_session->vep.next_sh);
2048           if (PREDICT_FALSE (!next_session))
2049             {
2050               clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
2051                             "vep.next_sid (%u) on vep_idx (%u)!",
2052                             getpid (), vep_session->vep.next_sh, vep_handle);
2053               return VPPCOM_EBADFD;
2054             }
2055           ASSERT (next_session->vep.prev_sh == vep_handle);
2056           next_session->vep.prev_sh = session_handle;
2057         }
2058       session->vep.next_sh = vep_session->vep.next_sh;
2059       session->vep.prev_sh = vep_handle;
2060       session->vep.vep_sh = vep_handle;
2061       session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2062       session->vep.ev = *event;
2063       session->is_vep = 0;
2064       session->is_vep_session = 1;
2065       vep_session->vep.next_sh = session_handle;
2066
2067       VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, sid %u, events 0x%x, "
2068             "data 0x%llx!", getpid (), vep_handle, session_handle,
2069             event->events, event->data.u64);
2070       vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
2071       break;
2072
2073     case EPOLL_CTL_MOD:
2074       if (PREDICT_FALSE (!event))
2075         {
2076           clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
2077                         "epoll_event structure!", getpid ());
2078           rv = VPPCOM_EINVAL;
2079           goto done;
2080         }
2081       else if (PREDICT_FALSE (!session->is_vep_session))
2082         {
2083           clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
2084                         "not a vep session!", getpid (), session_handle);
2085           rv = VPPCOM_EINVAL;
2086           goto done;
2087         }
2088       else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
2089         {
2090           clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
2091                         "vep_idx (%u) != vep_idx (%u)!",
2092                         getpid (), session_handle,
2093                         session->vep.vep_sh, vep_handle);
2094           rv = VPPCOM_EINVAL;
2095           goto done;
2096         }
2097       session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2098       session->vep.ev = *event;
2099       VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
2100             " data 0x%llx!", getpid (), vep_handle, session_handle,
2101             event->events, event->data.u64);
2102       break;
2103
2104     case EPOLL_CTL_DEL:
2105       if (PREDICT_FALSE (!session->is_vep_session))
2106         {
2107           clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
2108                         "not a vep session!", getpid (), session_handle);
2109           rv = VPPCOM_EINVAL;
2110           goto done;
2111         }
2112       else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
2113         {
2114           clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
2115                         "vep_idx (%u) != vep_idx (%u)!",
2116                         getpid (), session_handle,
2117                         session->vep.vep_sh, vep_handle);
2118           rv = VPPCOM_EINVAL;
2119           goto done;
2120         }
2121
2122       vep_session->wait_cont_idx =
2123         (vep_session->wait_cont_idx == session_handle) ?
2124         session->vep.next_sh : vep_session->wait_cont_idx;
2125
2126       if (session->vep.prev_sh == vep_handle)
2127         vep_session->vep.next_sh = session->vep.next_sh;
2128       else
2129         {
2130           vcl_session_t *prev_session;
2131           prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
2132           if (PREDICT_FALSE (!prev_session))
2133             {
2134               clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
2135                             "vep.prev_sid (%u) on sid (%u)!",
2136                             getpid (), session->vep.prev_sh, session_handle);
2137               return VPPCOM_EBADFD;
2138             }
2139           ASSERT (prev_session->vep.next_sh == session_handle);
2140           prev_session->vep.next_sh = session->vep.next_sh;
2141         }
2142       if (session->vep.next_sh != ~0)
2143         {
2144           vcl_session_t *next_session;
2145           next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
2146           if (PREDICT_FALSE (!next_session))
2147             {
2148               clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
2149                             "vep.next_sid (%u) on sid (%u)!",
2150                             getpid (), session->vep.next_sh, session_handle);
2151               return VPPCOM_EBADFD;
2152             }
2153           ASSERT (next_session->vep.prev_sh == session_handle);
2154           next_session->vep.prev_sh = session->vep.prev_sh;
2155         }
2156
2157       memset (&session->vep, 0, sizeof (session->vep));
2158       session->vep.next_sh = ~0;
2159       session->vep.prev_sh = ~0;
2160       session->vep.vep_sh = ~0;
2161       session->is_vep_session = 0;
2162       VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
2163             getpid (), vep_handle, session_handle);
2164       vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
2165       break;
2166
2167     default:
2168       clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
2169       rv = VPPCOM_EINVAL;
2170     }
2171
2172   vep_verify_epoll_chain (wrk, vep_handle);
2173
2174 done:
2175   return rv;
2176 }
2177
2178 static int
2179 vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2180                           struct epoll_event *events, u32 maxevents,
2181                           double wait_for_time, u32 * num_ev)
2182 {
2183   session_disconnected_msg_t *disconnected_msg;
2184   session_connected_msg_t *connected_msg;
2185   session_accepted_msg_t *accepted_msg;
2186   u64 session_evt_data = ~0, handle;
2187   u32 sid = ~0, session_events;
2188   vcl_session_msg_t *vcl_msg;
2189   vcl_session_t *session;
2190   svm_msg_q_msg_t *msg;
2191   session_event_t *e;
2192   u8 add_event;
2193   int i;
2194
2195   svm_msg_q_lock (mq);
2196   if (svm_msg_q_is_empty (mq))
2197     {
2198       if (!wait_for_time)
2199         {
2200           svm_msg_q_unlock (mq);
2201           return 0;
2202         }
2203       else if (wait_for_time < 0)
2204         {
2205           svm_msg_q_wait (mq);
2206         }
2207       else
2208         {
2209           if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
2210             {
2211               svm_msg_q_unlock (mq);
2212               return 0;
2213             }
2214         }
2215     }
2216   vcl_mq_dequeue_batch (wrk, mq);
2217   svm_msg_q_unlock (mq);
2218
2219   for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
2220     {
2221       msg = vec_elt_at_index (wrk->mq_msg_vector, i);
2222       e = svm_msg_q_msg_data (mq, msg);
2223       add_event = 0;
2224       switch (e->event_type)
2225         {
2226         case FIFO_EVENT_APP_RX:
2227           sid = e->fifo->client_session_index;
2228           session = vcl_session_get (wrk, sid);
2229           session_events = session->vep.ev.events;
2230           if (!(EPOLLIN & session->vep.ev.events))
2231             break;
2232           add_event = 1;
2233           events[*num_ev].events |= EPOLLIN;
2234           session_evt_data = session->vep.ev.data.u64;
2235           break;
2236         case FIFO_EVENT_APP_TX:
2237           sid = e->fifo->client_session_index;
2238           session = vcl_session_get (wrk, sid);
2239           session_events = session->vep.ev.events;
2240           if (!(EPOLLOUT & session_events))
2241             break;
2242           add_event = 1;
2243           events[*num_ev].events |= EPOLLOUT;
2244           session_evt_data = session->vep.ev.data.u64;
2245           break;
2246         case SESSION_IO_EVT_CT_TX:
2247           session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
2248           sid = session->session_index;
2249           session_events = session->vep.ev.events;
2250           if (!(EPOLLIN & session->vep.ev.events))
2251             break;
2252           add_event = 1;
2253           events[*num_ev].events |= EPOLLIN;
2254           session_evt_data = session->vep.ev.data.u64;
2255           break;
2256         case SESSION_IO_EVT_CT_RX:
2257           session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
2258           sid = session->session_index;
2259           session_events = session->vep.ev.events;
2260           if (!(EPOLLOUT & session_events))
2261             break;
2262           add_event = 1;
2263           events[*num_ev].events |= EPOLLOUT;
2264           session_evt_data = session->vep.ev.data.u64;
2265           break;
2266         case SESSION_CTRL_EVT_ACCEPTED:
2267           accepted_msg = (session_accepted_msg_t *) e->data;
2268           handle = accepted_msg->listener_handle;
2269           session = vcl_session_table_lookup_listener (wrk, handle);
2270           if (!session)
2271             {
2272               clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
2273                             "listener handle %llx", getpid (), handle);
2274               break;
2275             }
2276
2277           clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
2278           vcl_msg->accepted_msg = *accepted_msg;
2279           session_events = session->vep.ev.events;
2280           if (!(EPOLLIN & session_events))
2281             break;
2282
2283           add_event = 1;
2284           events[*num_ev].events |= EPOLLIN;
2285           session_evt_data = session->vep.ev.data.u64;
2286           break;
2287         case SESSION_CTRL_EVT_CONNECTED:
2288           connected_msg = (session_connected_msg_t *) e->data;
2289           vcl_session_connected_handler (wrk, connected_msg);
2290           /* Generate EPOLLOUT because there's no connected event */
2291           sid = vcl_session_index_from_vpp_handle (wrk,
2292                                                    connected_msg->handle);
2293           session = vcl_session_get (wrk, sid);
2294           session_events = session->vep.ev.events;
2295           if (EPOLLOUT & session_events)
2296             {
2297               add_event = 1;
2298               events[*num_ev].events |= EPOLLOUT;
2299               session_evt_data = session->vep.ev.data.u64;
2300             }
2301           break;
2302         case SESSION_CTRL_EVT_DISCONNECTED:
2303           disconnected_msg = (session_disconnected_msg_t *) e->data;
2304           sid = vcl_session_index_from_vpp_handle (wrk,
2305                                                    disconnected_msg->handle);
2306           if (!(session = vcl_session_get (wrk, sid)))
2307             break;
2308           add_event = 1;
2309           events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2310           session_evt_data = session->vep.ev.data.u64;
2311           session_events = session->vep.ev.events;
2312           break;
2313         case SESSION_CTRL_EVT_RESET:
2314           sid = vcl_session_reset_handler (wrk,
2315                                            (session_reset_msg_t *) e->data);
2316           if (!(session = vcl_session_get (wrk, sid)))
2317             break;
2318           add_event = 1;
2319           events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2320           session_evt_data = session->vep.ev.data.u64;
2321           session_events = session->vep.ev.events;
2322           break;
2323         default:
2324           VDBG (0, "unhandled: %u", e->event_type);
2325           svm_msg_q_free_msg (mq, msg);
2326           continue;
2327         }
2328       svm_msg_q_free_msg (mq, msg);
2329
2330       if (add_event)
2331         {
2332           events[*num_ev].data.u64 = session_evt_data;
2333           if (EPOLLONESHOT & session_events)
2334             {
2335               session = vcl_session_get (wrk, sid);
2336               session->vep.ev.events = 0;
2337             }
2338           *num_ev += 1;
2339           if (*num_ev == maxevents)
2340             break;
2341         }
2342     }
2343
2344   vec_reset_length (wrk->mq_msg_vector);
2345   return *num_ev;
2346 }
2347
2348 static int
2349 vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
2350                            int maxevents, double wait_for_time)
2351 {
2352   vcl_cut_through_registration_t *cr;
2353   double total_wait = 0, wait_slice;
2354   u32 num_ev = 0;
2355   int rv;
2356
2357   wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
2358   wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
2359
2360   do
2361     {
2362       vcl_ct_registration_lock (wrk);
2363       /* *INDENT-OFF* */
2364       pool_foreach (cr, wrk->cut_through_registrations, ({
2365         vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &num_ev);
2366       }));
2367       /* *INDENT-ON* */
2368       vcl_ct_registration_unlock (wrk);
2369
2370       rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
2371                                      maxevents, num_ev ? 0 : wait_slice,
2372                                      &num_ev);
2373       if (rv)
2374         total_wait += wait_slice;
2375       if (num_ev)
2376         return num_ev;
2377     }
2378   while (total_wait < wait_for_time);
2379   return (int) num_ev;
2380 }
2381
2382 static int
2383 vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
2384                            int maxevents, double wait_for_time)
2385 {
2386   vcl_mq_evt_conn_t *mqc;
2387   int __clib_unused n_read;
2388   int n_mq_evts, i;
2389   u32 n_evts = 0;
2390   u64 buf;
2391
2392   vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2393   n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2394                           vec_len (wrk->mq_events), wait_for_time);
2395   for (i = 0; i < n_mq_evts; i++)
2396     {
2397       mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
2398       n_read = read (mqc->mq_fd, &buf, sizeof (buf));
2399       vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
2400     }
2401
2402   return (int) n_evts;
2403 }
2404
2405 int
2406 vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
2407                    int maxevents, double wait_for_time)
2408 {
2409   vcl_worker_t *wrk = vcl_worker_get_current ();
2410   vcl_session_t *vep_session;
2411
2412   if (PREDICT_FALSE (maxevents <= 0))
2413     {
2414       clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
2415                     getpid (), maxevents);
2416       return VPPCOM_EINVAL;
2417     }
2418
2419   vep_session = vcl_session_get_w_handle (wrk, vep_handle);
2420   if (PREDICT_FALSE (!vep_session->is_vep))
2421     {
2422       clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2423                     getpid (), vep_handle);
2424       return VPPCOM_EINVAL;
2425     }
2426
2427   memset (events, 0, sizeof (*events) * maxevents);
2428
2429   if (vcm->cfg.use_mq_eventfd)
2430     return vppcom_epoll_wait_eventfd (wrk, events, maxevents, wait_for_time);
2431
2432   return vppcom_epoll_wait_condvar (wrk, events, maxevents, wait_for_time);
2433 }
2434
2435 int
2436 vppcom_session_attr (uint32_t session_handle, uint32_t op,
2437                      void *buffer, uint32_t * buflen)
2438 {
2439   vcl_worker_t *wrk = vcl_worker_get_current ();
2440   vcl_session_t *session;
2441   int rv = VPPCOM_OK;
2442   u32 *flags = buffer;
2443   vppcom_endpt_t *ep = buffer;
2444
2445   session = vcl_session_get_w_handle (wrk, session_handle);
2446   if (!session)
2447     return VPPCOM_EBADFD;
2448
2449   switch (op)
2450     {
2451     case VPPCOM_ATTR_GET_NREAD:
2452       rv = vppcom_session_read_ready (session);
2453       VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2454             getpid (), rv);
2455       break;
2456
2457     case VPPCOM_ATTR_GET_NWRITE:
2458       rv = vppcom_session_write_ready (session);
2459       VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
2460             getpid (), session_handle, rv);
2461       break;
2462
2463     case VPPCOM_ATTR_GET_FLAGS:
2464       if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
2465         {
2466           *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2467                                                  VCL_SESS_ATTR_NONBLOCK));
2468           *buflen = sizeof (*flags);
2469           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2470                 "is_nonblocking = %u", getpid (),
2471                 session_handle, *flags,
2472                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
2473         }
2474       else
2475         rv = VPPCOM_EINVAL;
2476       break;
2477
2478     case VPPCOM_ATTR_SET_FLAGS:
2479       if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
2480         {
2481           if (*flags & O_NONBLOCK)
2482             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2483           else
2484             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2485
2486           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2487                 " is_nonblocking = %u",
2488                 getpid (), session_handle, *flags,
2489                 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
2490         }
2491       else
2492         rv = VPPCOM_EINVAL;
2493       break;
2494
2495     case VPPCOM_ATTR_GET_PEER_ADDR:
2496       if (PREDICT_TRUE (buffer && buflen &&
2497                         (*buflen >= sizeof (*ep)) && ep->ip))
2498         {
2499           ep->is_ip4 = session->transport.is_ip4;
2500           ep->port = session->transport.rmt_port;
2501           if (session->transport.is_ip4)
2502             clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
2503                          sizeof (ip4_address_t));
2504           else
2505             clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
2506                          sizeof (ip6_address_t));
2507           *buflen = sizeof (*ep);
2508           VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2509                 "addr = %U, port %u", getpid (),
2510                 session_handle, ep->is_ip4, format_ip46_address,
2511                 &session->transport.rmt_ip,
2512                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2513                 clib_net_to_host_u16 (ep->port));
2514         }
2515       else
2516         rv = VPPCOM_EINVAL;
2517       break;
2518
2519     case VPPCOM_ATTR_GET_LCL_ADDR:
2520       if (PREDICT_TRUE (buffer && buflen &&
2521                         (*buflen >= sizeof (*ep)) && ep->ip))
2522         {
2523           ep->is_ip4 = session->transport.is_ip4;
2524           ep->port = session->transport.lcl_port;
2525           if (session->transport.is_ip4)
2526             clib_memcpy (ep->ip, &session->transport.lcl_ip.ip4,
2527                          sizeof (ip4_address_t));
2528           else
2529             clib_memcpy (ep->ip, &session->transport.lcl_ip.ip6,
2530                          sizeof (ip6_address_t));
2531           *buflen = sizeof (*ep);
2532           VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2533                 " addr = %U port %d", getpid (),
2534                 session_handle, ep->is_ip4, format_ip46_address,
2535                 &session->transport.lcl_ip,
2536                 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2537                 clib_net_to_host_u16 (ep->port));
2538         }
2539       else
2540         rv = VPPCOM_EINVAL;
2541       break;
2542
2543     case VPPCOM_ATTR_GET_LIBC_EPFD:
2544       rv = session->libc_epfd;
2545       VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2546             getpid (), rv);
2547       break;
2548
2549     case VPPCOM_ATTR_SET_LIBC_EPFD:
2550       if (PREDICT_TRUE (buffer && buflen &&
2551                         (*buflen == sizeof (session->libc_epfd))))
2552         {
2553           session->libc_epfd = *(int *) buffer;
2554           *buflen = sizeof (session->libc_epfd);
2555
2556           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2557                 "buflen %d", getpid (), session->libc_epfd, *buflen);
2558         }
2559       else
2560         rv = VPPCOM_EINVAL;
2561       break;
2562
2563     case VPPCOM_ATTR_GET_PROTOCOL:
2564       if (buffer && buflen && (*buflen >= sizeof (int)))
2565         {
2566           *(int *) buffer = session->session_type;
2567           *buflen = sizeof (int);
2568
2569           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2570                 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2571                 *buflen);
2572         }
2573       else
2574         rv = VPPCOM_EINVAL;
2575       break;
2576
2577     case VPPCOM_ATTR_GET_LISTEN:
2578       if (buffer && buflen && (*buflen >= sizeof (int)))
2579         {
2580           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2581                                                 VCL_SESS_ATTR_LISTEN);
2582           *buflen = sizeof (int);
2583
2584           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2585                 getpid (), *(int *) buffer, *buflen);
2586         }
2587       else
2588         rv = VPPCOM_EINVAL;
2589       break;
2590
2591     case VPPCOM_ATTR_GET_ERROR:
2592       if (buffer && buflen && (*buflen >= sizeof (int)))
2593         {
2594           *(int *) buffer = 0;
2595           *buflen = sizeof (int);
2596
2597           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2598                 getpid (), *(int *) buffer, *buflen);
2599         }
2600       else
2601         rv = VPPCOM_EINVAL;
2602       break;
2603
2604     case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2605       if (buffer && buflen && (*buflen >= sizeof (u32)))
2606         {
2607
2608           /* VPP-TBD */
2609           *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
2610                                 session->tx_fifo ? session->tx_fifo->nitems :
2611                                 vcm->cfg.tx_fifo_size);
2612           *buflen = sizeof (u32);
2613
2614           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2615                 "buflen %d, #VPP-TBD#", getpid (),
2616                 *(size_t *) buffer, *(size_t *) buffer, *buflen);
2617         }
2618       else
2619         rv = VPPCOM_EINVAL;
2620       break;
2621
2622     case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2623       if (buffer && buflen && (*buflen == sizeof (u32)))
2624         {
2625           /* VPP-TBD */
2626           session->sndbuf_size = *(u32 *) buffer;
2627           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2628                 "buflen %d, #VPP-TBD#", getpid (),
2629                 session->sndbuf_size, session->sndbuf_size, *buflen);
2630         }
2631       else
2632         rv = VPPCOM_EINVAL;
2633       break;
2634
2635     case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2636       if (buffer && buflen && (*buflen >= sizeof (u32)))
2637         {
2638
2639           /* VPP-TBD */
2640           *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
2641                                 session->rx_fifo ? session->rx_fifo->nitems :
2642                                 vcm->cfg.rx_fifo_size);
2643           *buflen = sizeof (u32);
2644
2645           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2646                 "buflen %d, #VPP-TBD#", getpid (),
2647                 *(size_t *) buffer, *(size_t *) buffer, *buflen);
2648         }
2649       else
2650         rv = VPPCOM_EINVAL;
2651       break;
2652
2653     case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2654       if (buffer && buflen && (*buflen == sizeof (u32)))
2655         {
2656           /* VPP-TBD */
2657           session->rcvbuf_size = *(u32 *) buffer;
2658           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2659                 "buflen %d, #VPP-TBD#", getpid (),
2660                 session->sndbuf_size, session->sndbuf_size, *buflen);
2661         }
2662       else
2663         rv = VPPCOM_EINVAL;
2664       break;
2665
2666     case VPPCOM_ATTR_GET_REUSEADDR:
2667       if (buffer && buflen && (*buflen >= sizeof (int)))
2668         {
2669           /* VPP-TBD */
2670           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2671                                                 VCL_SESS_ATTR_REUSEADDR);
2672           *buflen = sizeof (int);
2673
2674           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2675                 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2676         }
2677       else
2678         rv = VPPCOM_EINVAL;
2679       break;
2680
2681     case VPPCOM_ATTR_SET_REUSEADDR:
2682       if (buffer && buflen && (*buflen == sizeof (int)) &&
2683           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2684         {
2685           /* VPP-TBD */
2686           if (*(int *) buffer)
2687             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2688           else
2689             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2690
2691           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2692                 " #VPP-TBD#", getpid (),
2693                 VCL_SESS_ATTR_TEST (session->attr,
2694                                     VCL_SESS_ATTR_REUSEADDR), *buflen);
2695         }
2696       else
2697         rv = VPPCOM_EINVAL;
2698       break;
2699
2700     case VPPCOM_ATTR_GET_REUSEPORT:
2701       if (buffer && buflen && (*buflen >= sizeof (int)))
2702         {
2703           /* VPP-TBD */
2704           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2705                                                 VCL_SESS_ATTR_REUSEPORT);
2706           *buflen = sizeof (int);
2707
2708           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2709                 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2710         }
2711       else
2712         rv = VPPCOM_EINVAL;
2713       break;
2714
2715     case VPPCOM_ATTR_SET_REUSEPORT:
2716       if (buffer && buflen && (*buflen == sizeof (int)) &&
2717           !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2718         {
2719           /* VPP-TBD */
2720           if (*(int *) buffer)
2721             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2722           else
2723             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2724
2725           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2726                 " #VPP-TBD#", getpid (),
2727                 VCL_SESS_ATTR_TEST (session->attr,
2728                                     VCL_SESS_ATTR_REUSEPORT), *buflen);
2729         }
2730       else
2731         rv = VPPCOM_EINVAL;
2732       break;
2733
2734     case VPPCOM_ATTR_GET_BROADCAST:
2735       if (buffer && buflen && (*buflen >= sizeof (int)))
2736         {
2737           /* VPP-TBD */
2738           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2739                                                 VCL_SESS_ATTR_BROADCAST);
2740           *buflen = sizeof (int);
2741
2742           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2743                 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2744         }
2745       else
2746         rv = VPPCOM_EINVAL;
2747       break;
2748
2749     case VPPCOM_ATTR_SET_BROADCAST:
2750       if (buffer && buflen && (*buflen == sizeof (int)))
2751         {
2752           /* VPP-TBD */
2753           if (*(int *) buffer)
2754             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2755           else
2756             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2757
2758           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2759                 "#VPP-TBD#", getpid (),
2760                 VCL_SESS_ATTR_TEST (session->attr,
2761                                     VCL_SESS_ATTR_BROADCAST), *buflen);
2762         }
2763       else
2764         rv = VPPCOM_EINVAL;
2765       break;
2766
2767     case VPPCOM_ATTR_GET_V6ONLY:
2768       if (buffer && buflen && (*buflen >= sizeof (int)))
2769         {
2770           /* VPP-TBD */
2771           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2772                                                 VCL_SESS_ATTR_V6ONLY);
2773           *buflen = sizeof (int);
2774
2775           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2776                 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2777         }
2778       else
2779         rv = VPPCOM_EINVAL;
2780       break;
2781
2782     case VPPCOM_ATTR_SET_V6ONLY:
2783       if (buffer && buflen && (*buflen == sizeof (int)))
2784         {
2785           /* VPP-TBD */
2786           if (*(int *) buffer)
2787             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2788           else
2789             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2790
2791           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2792                 "#VPP-TBD#", getpid (),
2793                 VCL_SESS_ATTR_TEST (session->attr,
2794                                     VCL_SESS_ATTR_V6ONLY), *buflen);
2795         }
2796       else
2797         rv = VPPCOM_EINVAL;
2798       break;
2799
2800     case VPPCOM_ATTR_GET_KEEPALIVE:
2801       if (buffer && buflen && (*buflen >= sizeof (int)))
2802         {
2803           /* VPP-TBD */
2804           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2805                                                 VCL_SESS_ATTR_KEEPALIVE);
2806           *buflen = sizeof (int);
2807
2808           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
2809                 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2810         }
2811       else
2812         rv = VPPCOM_EINVAL;
2813       break;
2814
2815     case VPPCOM_ATTR_SET_KEEPALIVE:
2816       if (buffer && buflen && (*buflen == sizeof (int)))
2817         {
2818           /* VPP-TBD */
2819           if (*(int *) buffer)
2820             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2821           else
2822             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2823
2824           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
2825                 "#VPP-TBD#", getpid (),
2826                 VCL_SESS_ATTR_TEST (session->attr,
2827                                     VCL_SESS_ATTR_KEEPALIVE), *buflen);
2828         }
2829       else
2830         rv = VPPCOM_EINVAL;
2831       break;
2832
2833     case VPPCOM_ATTR_GET_TCP_NODELAY:
2834       if (buffer && buflen && (*buflen >= sizeof (int)))
2835         {
2836           /* VPP-TBD */
2837           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2838                                                 VCL_SESS_ATTR_TCP_NODELAY);
2839           *buflen = sizeof (int);
2840
2841           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
2842                 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2843         }
2844       else
2845         rv = VPPCOM_EINVAL;
2846       break;
2847
2848     case VPPCOM_ATTR_SET_TCP_NODELAY:
2849       if (buffer && buflen && (*buflen == sizeof (int)))
2850         {
2851           /* VPP-TBD */
2852           if (*(int *) buffer)
2853             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2854           else
2855             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2856
2857           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
2858                 "#VPP-TBD#", getpid (),
2859                 VCL_SESS_ATTR_TEST (session->attr,
2860                                     VCL_SESS_ATTR_TCP_NODELAY), *buflen);
2861         }
2862       else
2863         rv = VPPCOM_EINVAL;
2864       break;
2865
2866     case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
2867       if (buffer && buflen && (*buflen >= sizeof (int)))
2868         {
2869           /* VPP-TBD */
2870           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2871                                                 VCL_SESS_ATTR_TCP_KEEPIDLE);
2872           *buflen = sizeof (int);
2873
2874           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
2875                 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2876         }
2877       else
2878         rv = VPPCOM_EINVAL;
2879       break;
2880
2881     case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
2882       if (buffer && buflen && (*buflen == sizeof (int)))
2883         {
2884           /* VPP-TBD */
2885           if (*(int *) buffer)
2886             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2887           else
2888             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2889
2890           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
2891                 "#VPP-TBD#", getpid (),
2892                 VCL_SESS_ATTR_TEST (session->attr,
2893                                     VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
2894         }
2895       else
2896         rv = VPPCOM_EINVAL;
2897       break;
2898
2899     case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
2900       if (buffer && buflen && (*buflen >= sizeof (int)))
2901         {
2902           /* VPP-TBD */
2903           *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2904                                                 VCL_SESS_ATTR_TCP_KEEPINTVL);
2905           *buflen = sizeof (int);
2906
2907           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
2908                 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2909         }
2910       else
2911         rv = VPPCOM_EINVAL;
2912       break;
2913
2914     case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
2915       if (buffer && buflen && (*buflen == sizeof (int)))
2916         {
2917           /* VPP-TBD */
2918           if (*(int *) buffer)
2919             VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2920           else
2921             VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2922
2923           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
2924                 "#VPP-TBD#", getpid (),
2925                 VCL_SESS_ATTR_TEST (session->attr,
2926                                     VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
2927         }
2928       else
2929         rv = VPPCOM_EINVAL;
2930       break;
2931
2932     case VPPCOM_ATTR_GET_TCP_USER_MSS:
2933       if (buffer && buflen && (*buflen >= sizeof (u32)))
2934         {
2935           /* VPP-TBD */
2936           *(u32 *) buffer = session->user_mss;
2937           *buflen = sizeof (int);
2938
2939           VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
2940                 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
2941         }
2942       else
2943         rv = VPPCOM_EINVAL;
2944       break;
2945
2946     case VPPCOM_ATTR_SET_TCP_USER_MSS:
2947       if (buffer && buflen && (*buflen == sizeof (u32)))
2948         {
2949           /* VPP-TBD */
2950           session->user_mss = *(u32 *) buffer;
2951
2952           VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
2953                 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
2954         }
2955       else
2956         rv = VPPCOM_EINVAL;
2957       break;
2958
2959     default:
2960       rv = VPPCOM_EINVAL;
2961       break;
2962     }
2963
2964   return rv;
2965 }
2966
2967 int
2968 vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
2969                          uint32_t buflen, int flags, vppcom_endpt_t * ep)
2970 {
2971   vcl_worker_t *wrk = vcl_worker_get_current ();
2972   int rv = VPPCOM_OK;
2973   vcl_session_t *session = 0;
2974
2975   if (ep)
2976     {
2977       session = vcl_session_get_w_handle (wrk, session_handle);
2978       if (PREDICT_FALSE (!session))
2979         {
2980           VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
2981                 getpid (), session_handle);
2982           return VPPCOM_EBADFD;
2983         }
2984       ep->is_ip4 = session->transport.is_ip4;
2985       ep->port = session->transport.rmt_port;
2986     }
2987
2988   if (flags == 0)
2989     rv = vppcom_session_read (session_handle, buffer, buflen);
2990   else if (flags & MSG_PEEK)
2991     rv = vppcom_session_peek (session_handle, buffer, buflen);
2992   else
2993     {
2994       clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
2995                     getpid (), flags);
2996       return VPPCOM_EAFNOSUPPORT;
2997     }
2998
2999   if (ep)
3000     {
3001       if (session->transport.is_ip4)
3002         clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
3003                      sizeof (ip4_address_t));
3004       else
3005         clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
3006                      sizeof (ip6_address_t));
3007     }
3008
3009   return rv;
3010 }
3011
3012 int
3013 vppcom_session_sendto (uint32_t session_handle, void *buffer,
3014                        uint32_t buflen, int flags, vppcom_endpt_t * ep)
3015 {
3016   if (!buffer)
3017     return VPPCOM_EINVAL;
3018
3019   if (ep)
3020     {
3021       // TBD
3022       return VPPCOM_EINVAL;
3023     }
3024
3025   if (flags)
3026     {
3027       // TBD check the flags and do the right thing
3028       VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3029             getpid (), flags, flags);
3030     }
3031
3032   return (vppcom_session_write (session_handle, buffer, buflen));
3033 }
3034
3035 int
3036 vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3037 {
3038   vcl_worker_t *wrk = vcl_worker_get_current ();
3039   f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
3040   u32 i, keep_trying = 1;
3041   int rv, num_ev = 0;
3042
3043   VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3044         getpid (), vp, n_sids, wait_for_time);
3045
3046   if (!vp)
3047     return VPPCOM_EFAULT;
3048
3049   do
3050     {
3051       vcl_session_t *session;
3052
3053       for (i = 0; i < n_sids; i++)
3054         {
3055           ASSERT (vp[i].revents);
3056
3057           session = vcl_session_get (wrk, vp[i].sid);
3058           if (!session)
3059             continue;
3060
3061           if (*vp[i].revents)
3062             *vp[i].revents = 0;
3063
3064           if (POLLIN & vp[i].events)
3065             {
3066               rv = vppcom_session_read_ready (session);
3067               if (rv > 0)
3068                 {
3069                   *vp[i].revents |= POLLIN;
3070                   num_ev++;
3071                 }
3072               else if (rv < 0)
3073                 {
3074                   switch (rv)
3075                     {
3076                     case VPPCOM_ECONNRESET:
3077                       *vp[i].revents = POLLHUP;
3078                       break;
3079
3080                     default:
3081                       *vp[i].revents = POLLERR;
3082                       break;
3083                     }
3084                   num_ev++;
3085                 }
3086             }
3087
3088           if (POLLOUT & vp[i].events)
3089             {
3090               rv = vppcom_session_write_ready (session);
3091               if (rv > 0)
3092                 {
3093                   *vp[i].revents |= POLLOUT;
3094                   num_ev++;
3095                 }
3096               else if (rv < 0)
3097                 {
3098                   switch (rv)
3099                     {
3100                     case VPPCOM_ECONNRESET:
3101                       *vp[i].revents = POLLHUP;
3102                       break;
3103
3104                     default:
3105                       *vp[i].revents = POLLERR;
3106                       break;
3107                     }
3108                   num_ev++;
3109                 }
3110             }
3111
3112           if (0)                // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
3113             {
3114               *vp[i].revents = POLLNVAL;
3115               num_ev++;
3116             }
3117         }
3118       if (wait_for_time != -1)
3119         keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
3120     }
3121   while ((num_ev == 0) && keep_trying);
3122
3123   if (VPPCOM_DEBUG > 3)
3124     {
3125       clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3126       for (i = 0; i < n_sids; i++)
3127         {
3128           clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3129                         ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
3130                         vp[i].events, *vp[i].revents);
3131         }
3132     }
3133   return num_ev;
3134 }
3135
3136 int
3137 vppcom_mq_epoll_fd (void)
3138 {
3139   vcl_worker_t *wrk = vcl_worker_get_current ();
3140   return wrk->mqs_epfd;
3141 }
3142
3143 int
3144 vppcom_session_index (uint32_t session_handle)
3145 {
3146   return session_handle & 0xFFFFFF;
3147 }
3148
3149 int
3150 vppcom_worker_register (void)
3151 {
3152   if (!vcl_worker_alloc_and_init ())
3153     return VPPCOM_OK;
3154   return VPPCOM_EEXIST;
3155 }
3156
3157 /*
3158  * fd.io coding-style-patch-verification: ON
3159  *
3160  * Local Variables:
3161  * eval: (c-set-style "gnu")
3162  * End:
3163  */