blob: aa307f1d333d2fe5f78c42df38778b2edf52b944 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Dave Wallace33e002b2017-09-06 01:20:02 -04002 * Copyright (c) 2017 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * 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 <signal.h>
19#include <svm/svm_fifo_segment.h>
20#include <vlibmemory/api.h>
21#include <vpp/api/vpe_msg_enum.h>
22#include <vnet/session/application_interface.h>
23#include <uri/vppcom.h>
24#include <vlib/unix/unix.h>
25#include <vppinfra/vec_bootstrap.h>
26
27#define vl_typedefs /* define message structures */
28#include <vpp/api/vpe_all_api_h.h>
29#undef vl_typedefs
30
31/* declare message handlers for each api */
32
33#define vl_endianfun /* define message structures */
34#include <vpp/api/vpe_all_api_h.h>
35#undef vl_endianfun
36
37/* instantiate all the print functions we know about */
38#define vl_print(handle, ...)
39#define vl_printfun
40#include <vpp/api/vpe_all_api_h.h>
41#undef vl_printfun
42
43#if (CLIB_DEBUG > 0)
44/* Set VPPCOM_DEBUG 2 for connection debug, 3 for read/write debug output */
45#define VPPCOM_DEBUG 1
46#else
47#define VPPCOM_DEBUG 0
48#endif
49
50/*
51 * VPPCOM Private definitions and functions.
52 */
53typedef enum
54{
55 STATE_APP_START,
56 STATE_APP_CONN_VPP,
57 STATE_APP_ENABLED,
58 STATE_APP_ATTACHED,
59} app_state_t;
60
61typedef enum
62{
63 STATE_START,
64 STATE_CONNECT,
65 STATE_LISTEN,
66 STATE_ACCEPT,
67 STATE_DISCONNECT,
68 STATE_FAILED
69} session_state_t;
70
71typedef struct
72{
73 volatile session_state_t state;
74
75 svm_fifo_t *server_rx_fifo;
76 svm_fifo_t *server_tx_fifo;
77 u32 sm_seg_index;
78 u64 vpp_session_handle;
Dave Wallace33e002b2017-09-06 01:20:02 -040079 unix_shared_memory_queue_t *vpp_event_queue;
Dave Wallace543852a2017-08-03 02:11:34 -040080
81 /* Socket configuration state */
82 u8 is_server;
83 u8 is_listen;
84 u8 is_cut_thru;
85 u8 is_nonblocking;
86 u32 vrf;
87 u8 is_ip4;
88 u8 ip[16];
89 u16 port;
90 u8 proto;
91 u64 client_queue_address;
92 u64 options[16];
93} session_t;
94
95typedef struct vppcom_cfg_t_
96{
97 u64 heapsize;
98 u64 segment_baseva;
99 u32 segment_size;
100 u32 add_segment_size;
101 u32 preallocated_fifo_pairs;
102 u32 rx_fifo_size;
103 u32 tx_fifo_size;
104 u32 event_queue_size;
105 u32 listen_queue_size;
106 f64 app_timeout;
107 f64 session_timeout;
108 f64 accept_timeout;
109} vppcom_cfg_t;
110
111typedef struct vppcom_main_t_
112{
113 u8 init;
114 u32 *client_session_index_fifo;
115 volatile u32 bind_session_index;
116 u32 tx_event_id;
117 int main_cpu;
118
119 /* vpe input queue */
120 unix_shared_memory_queue_t *vl_input_queue;
121
122 /* API client handle */
123 u32 my_client_index;
124
125 /* Session pool */
126 clib_spinlock_t sessions_lockp;
127 session_t *sessions;
128
129 /* Hash table for disconnect processing */
130 uword *session_index_by_vpp_handles;
131
132 /* Select bitmaps */
133 clib_bitmap_t *rd_bitmap;
134 clib_bitmap_t *wr_bitmap;
135 clib_bitmap_t *ex_bitmap;
136
137 /* Our event queue */
138 unix_shared_memory_queue_t *app_event_queue;
139
140 /* unique segment name counter */
141 u32 unique_segment_index;
142
143 pid_t my_pid;
144
145 /* For deadman timers */
146 clib_time_t clib_time;
147
148 /* State of the connection, shared between msg RX thread and main thread */
149 volatile app_state_t app_state;
150
151 vppcom_cfg_t cfg;
152
153 /* VNET_API_ERROR_FOO -> "Foo" hash table */
154 uword *error_string_by_error_number;
155} vppcom_main_t;
156
157vppcom_main_t vppcom_main = {.my_client_index = ~0 };
158
159static const char *
160vppcom_app_state_str (app_state_t state)
161{
162 char *st;
163
164 switch (state)
165 {
166 case STATE_APP_START:
167 st = "STATE_APP_START";
168 break;
169
170 case STATE_APP_CONN_VPP:
171 st = "STATE_APP_CONN_VPP";
172 break;
173
174 case STATE_APP_ENABLED:
175 st = "STATE_APP_ENABLED";
176 break;
177
178 case STATE_APP_ATTACHED:
179 st = "STATE_APP_ATTACHED";
180 break;
181
182 default:
183 st = "UNKNOWN_APP_STATE";
184 break;
185 }
186
187 return st;
188}
189
190static const char *
191vppcom_session_state_str (session_state_t state)
192{
193 char *st;
194
195 switch (state)
196 {
197 case STATE_START:
198 st = "STATE_START";
199 break;
200
201 case STATE_CONNECT:
202 st = "STATE_CONNECT";
203 break;
204
205 case STATE_LISTEN:
206 st = "STATE_LISTEN";
207 break;
208
209 case STATE_ACCEPT:
210 st = "STATE_ACCEPT";
211 break;
212
213 case STATE_DISCONNECT:
214 st = "STATE_DISCONNECT";
215 break;
216
217 case STATE_FAILED:
218 st = "STATE_FAILED";
219 break;
220
221 default:
222 st = "UNKNOWN_STATE";
223 break;
224 }
225
226 return st;
227}
228
229/*
230 * VPPCOM Utility Functions
231 */
232static inline int
233vppcom_session_at_index (u32 session_index, session_t * volatile *sess)
234{
235 vppcom_main_t *vcm = &vppcom_main;
236
237 /* Assumes that caller has acquired spinlock: vcm->sessions_lockp */
238 if (PREDICT_FALSE ((session_index == ~0) ||
239 pool_is_free_index (vcm->sessions, session_index)))
240 {
241 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
242 vcm->my_pid, session_index);
243 return VPPCOM_EBADFD;
244 }
245 *sess = pool_elt_at_index (vcm->sessions, session_index);
246 return VPPCOM_OK;
247}
248
249static int
250vppcom_connect_to_vpp (char *app_name)
251{
252 api_main_t *am = &api_main;
253 vppcom_main_t *vcm = &vppcom_main;
254
255 if (VPPCOM_DEBUG > 0)
256 printf ("\nConnecting to VPP api...");
257 if (vl_client_connect_to_vlib ("/vpe-api", app_name, 32) < 0)
258 {
259 clib_warning ("[%d] connect to vpp (%s) failed!",
260 vcm->my_pid, app_name);
261 return VPPCOM_ECONNREFUSED;
262 }
263
264 vcm->vl_input_queue = am->shmem_hdr->vl_input_queue;
265 vcm->my_client_index = am->my_client_index;
266 if (VPPCOM_DEBUG > 0)
267 printf (" connected!\n");
268
269 vcm->app_state = STATE_APP_CONN_VPP;
270 return VPPCOM_OK;
271}
272
273static u8 *
274format_api_error (u8 * s, va_list * args)
275{
276 vppcom_main_t *vcm = &vppcom_main;
277 i32 error = va_arg (*args, u32);
278 uword *p;
279
280 p = hash_get (vcm->error_string_by_error_number, -error);
281
282 if (p)
283 s = format (s, "%s (%d)", p[0], error);
284 else
285 s = format (s, "%d", error);
286 return s;
287}
288
289static void
290vppcom_init_error_string_table (void)
291{
292 vppcom_main_t *vcm = &vppcom_main;
293
294 vcm->error_string_by_error_number = hash_create (0, sizeof (uword));
295
296#define _(n,v,s) hash_set (vcm->error_string_by_error_number, -v, s);
297 foreach_vnet_api_error;
298#undef _
299
300 hash_set (vcm->error_string_by_error_number, 99, "Misc");
301}
302
303static inline int
304vppcom_wait_for_app_state_change (app_state_t app_state)
305{
306 vppcom_main_t *vcm = &vppcom_main;
307 f64 timeout = clib_time_now (&vcm->clib_time) + vcm->cfg.app_timeout;
308
309 while (clib_time_now (&vcm->clib_time) < timeout)
310 {
311 if (vcm->app_state == app_state)
312 return VPPCOM_OK;
313 }
314 if (VPPCOM_DEBUG > 0)
315 clib_warning ("[%d] timeout waiting for state %s (%d)", vcm->my_pid,
316 vppcom_app_state_str (app_state), app_state);
317 return VPPCOM_ETIMEDOUT;
318}
319
320static inline int
321vppcom_wait_for_session_state_change (u32 session_index,
322 session_state_t state,
323 f64 wait_for_time)
324{
325 vppcom_main_t *vcm = &vppcom_main;
326 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
327 session_t *volatile session;
328 int rv;
329
330 do
331 {
332 clib_spinlock_lock (&vcm->sessions_lockp);
333 rv = vppcom_session_at_index (session_index, &session);
334 if (PREDICT_FALSE (rv))
335 {
336 clib_spinlock_unlock (&vcm->sessions_lockp);
337 return rv;
338 }
339 if (session->state == state)
340 {
341 clib_spinlock_unlock (&vcm->sessions_lockp);
342 return VPPCOM_OK;
343 }
344 clib_spinlock_unlock (&vcm->sessions_lockp);
345 }
346 while (clib_time_now (&vcm->clib_time) < timeout);
347
348 if (VPPCOM_DEBUG > 0)
349 clib_warning ("[%d] timeout waiting for state %s (%d)", vcm->my_pid,
350 vppcom_session_state_str (state), state);
351 return VPPCOM_ETIMEDOUT;
352}
353
354static inline int
355vppcom_wait_for_client_session_index (f64 wait_for_time)
356{
357 vppcom_main_t *vcm = &vppcom_main;
358 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
359
360 do
361 {
362 if (clib_fifo_elts (vcm->client_session_index_fifo))
363 return VPPCOM_OK;
364 }
365 while (clib_time_now (&vcm->clib_time) < timeout);
366
367 if (wait_for_time == 0)
368 return VPPCOM_EAGAIN;
369
370 if (VPPCOM_DEBUG > 0)
371 clib_warning ("[%d] timeout waiting for client_session_index",
372 vcm->my_pid);
373 return VPPCOM_ETIMEDOUT;
374}
375
376/*
377 * VPP-API message functions
378 */
379static void
380vppcom_send_session_enable_disable (u8 is_enable)
381{
382 vppcom_main_t *vcm = &vppcom_main;
383 vl_api_session_enable_disable_t *bmp;
384 bmp = vl_msg_api_alloc (sizeof (*bmp));
385 memset (bmp, 0, sizeof (*bmp));
386
387 bmp->_vl_msg_id = ntohs (VL_API_SESSION_ENABLE_DISABLE);
388 bmp->client_index = vcm->my_client_index;
389 bmp->context = htonl (0xfeedface);
390 bmp->is_enable = is_enable;
391 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & bmp);
392}
393
394static int
395vppcom_app_session_enable (void)
396{
397 vppcom_main_t *vcm = &vppcom_main;
398 int rv;
399
400 if (vcm->app_state != STATE_APP_ENABLED)
401 {
402 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
403 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
404 if (PREDICT_FALSE (rv))
405 {
406 if (VPPCOM_DEBUG > 0)
407 clib_warning ("[%d] Session enable timed out, rv = %s (%d)",
408 vcm->my_pid, vppcom_retval_str (rv), rv);
409 return rv;
410 }
411 }
412 return VPPCOM_OK;
413}
414
415static void
416 vl_api_session_enable_disable_reply_t_handler
417 (vl_api_session_enable_disable_reply_t * mp)
418{
419 vppcom_main_t *vcm = &vppcom_main;
420
421 if (mp->retval)
422 {
423 clib_warning ("[%d] session_enable_disable failed: %U", vcm->my_pid,
424 format_api_error, ntohl (mp->retval));
425 }
426 else
427 vcm->app_state = STATE_APP_ENABLED;
428}
429
430static void
431vppcom_app_send_attach (void)
432{
433 vppcom_main_t *vcm = &vppcom_main;
434 vl_api_application_attach_t *bmp;
435 bmp = vl_msg_api_alloc (sizeof (*bmp));
436 memset (bmp, 0, sizeof (*bmp));
437
438 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_ATTACH);
439 bmp->client_index = vcm->my_client_index;
440 bmp->context = htonl (0xfeedface);
441 bmp->options[APP_OPTIONS_FLAGS] =
442 APP_OPTIONS_FLAGS_USE_FIFO | APP_OPTIONS_FLAGS_ADD_SEGMENT;
443 bmp->options[SESSION_OPTIONS_SEGMENT_SIZE] = vcm->cfg.segment_size;
444 bmp->options[SESSION_OPTIONS_ADD_SEGMENT_SIZE] = vcm->cfg.add_segment_size;
445 bmp->options[SESSION_OPTIONS_RX_FIFO_SIZE] = vcm->cfg.rx_fifo_size;
446 bmp->options[SESSION_OPTIONS_TX_FIFO_SIZE] = vcm->cfg.tx_fifo_size;
447 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & bmp);
448}
449
450static int
451vppcom_app_attach (void)
452{
453 vppcom_main_t *vcm = &vppcom_main;
454 int rv;
455
456 vppcom_app_send_attach ();
457 rv = vppcom_wait_for_app_state_change (STATE_APP_ATTACHED);
458 if (PREDICT_FALSE (rv))
459 {
460 if (VPPCOM_DEBUG > 0)
461 clib_warning ("[%d] application attach timed out, rv = %s (%d)",
462 vcm->my_pid, vppcom_retval_str (rv), rv);
463 return rv;
464 }
465 return VPPCOM_OK;
466}
467
468static void
469vppcom_app_detach (void)
470{
471 vppcom_main_t *vcm = &vppcom_main;
472 vl_api_application_detach_t *bmp;
473 bmp = vl_msg_api_alloc (sizeof (*bmp));
474 memset (bmp, 0, sizeof (*bmp));
475
476 bmp->_vl_msg_id = ntohs (VL_API_APPLICATION_DETACH);
477 bmp->client_index = vcm->my_client_index;
478 bmp->context = htonl (0xfeedface);
479 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & bmp);
480}
481
482static void
483vl_api_application_attach_reply_t_handler (vl_api_application_attach_reply_t *
484 mp)
485{
486 vppcom_main_t *vcm = &vppcom_main;
487 static svm_fifo_segment_create_args_t _a;
488 svm_fifo_segment_create_args_t *a = &_a;
489 int rv;
490
491 memset (a, 0, sizeof (*a));
492 if (mp->retval)
493 {
494 clib_warning ("[%d] attach failed: %U", vcm->my_pid,
495 format_api_error, ntohl (mp->retval));
496 return;
497 }
498
499 if (mp->segment_name_length == 0)
500 {
501 clib_warning ("[%d] segment_name_length zero", vcm->my_pid);
502 return;
503 }
504
505 a->segment_name = (char *) mp->segment_name;
506 a->segment_size = mp->segment_size;
507
508 ASSERT (mp->app_event_queue_address);
509
510 /* Attach to the segment vpp created */
511 rv = svm_fifo_segment_attach (a);
512 vec_reset_length (a->new_segment_indices);
513 if (PREDICT_FALSE (rv))
514 {
515 clib_warning ("[%d] svm_fifo_segment_attach ('%s') failed", vcm->my_pid,
516 mp->segment_name);
517 return;
518 }
519
520 vcm->app_event_queue =
521 uword_to_pointer (mp->app_event_queue_address,
522 unix_shared_memory_queue_t *);
523
524 vcm->app_state = STATE_APP_ATTACHED;
525}
526
527static void
528vl_api_application_detach_reply_t_handler (vl_api_application_detach_reply_t *
529 mp)
530{
531 vppcom_main_t *vcm = &vppcom_main;
532
533 if (mp->retval)
534 clib_warning ("[%d] detach failed: %U", vcm->my_pid, format_api_error,
535 ntohl (mp->retval));
536
537 vcm->app_state = STATE_APP_ENABLED;
538}
539
540static void
541vl_api_disconnect_session_reply_t_handler (vl_api_disconnect_session_reply_t *
542 mp)
543{
544 vppcom_main_t *vcm = &vppcom_main;
545 uword *p;
546
547 p = hash_get (vcm->session_index_by_vpp_handles, mp->handle);
548 if (p)
549 {
550 session_t *session = 0;
551 int rv;
552 clib_spinlock_lock (&vcm->sessions_lockp);
553 rv = vppcom_session_at_index (p[0], &session);
554 if (PREDICT_FALSE (rv))
555 {
556 if (VPPCOM_DEBUG > 1)
557 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
558 vcm->my_pid, p[0]);
559 }
560 hash_unset (vcm->session_index_by_vpp_handles, mp->handle);
561 session->state = STATE_DISCONNECT;
562 clib_spinlock_unlock (&vcm->sessions_lockp);
563 }
564 else
565 {
566 if (VPPCOM_DEBUG > 1)
567 clib_warning ("[%d] couldn't find session key %llx", vcm->my_pid,
568 mp->handle);
569 }
570
571 if (mp->retval)
572 clib_warning ("[%d] disconnect_session failed: %U", vcm->my_pid,
573 format_api_error, ntohl (mp->retval));
574}
575
576static void
577vl_api_map_another_segment_t_handler (vl_api_map_another_segment_t * mp)
578{
579 vppcom_main_t *vcm = &vppcom_main;
580 static svm_fifo_segment_create_args_t _a;
581 svm_fifo_segment_create_args_t *a = &_a;
582 int rv;
583
584 memset (a, 0, sizeof (*a));
585 a->segment_name = (char *) mp->segment_name;
586 a->segment_size = mp->segment_size;
587 /* Attach to the segment vpp created */
588 rv = svm_fifo_segment_attach (a);
589 vec_reset_length (a->new_segment_indices);
590 if (PREDICT_FALSE (rv))
591 {
592 clib_warning ("[%d] svm_fifo_segment_attach ('%s') failed",
593 vcm->my_pid, mp->segment_name);
594 return;
595 }
596 if (VPPCOM_DEBUG > 1)
597 clib_warning ("[%d] mapped new segment '%s' size %d", vcm->my_pid,
598 mp->segment_name, mp->segment_size);
599}
600
601static void
602vl_api_disconnect_session_t_handler (vl_api_disconnect_session_t * mp)
603{
604 vppcom_main_t *vcm = &vppcom_main;
605 session_t *session = 0;
606 vl_api_disconnect_session_reply_t *rmp;
607 uword *p;
608 int rv = 0;
609
610 p = hash_get (vcm->session_index_by_vpp_handles, mp->handle);
611 if (p)
612 {
613 int rval;
614 clib_spinlock_lock (&vcm->sessions_lockp);
615 rval = vppcom_session_at_index (p[0], &session);
616 if (PREDICT_FALSE (rval))
617 {
618 if (VPPCOM_DEBUG > 1)
619 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
620 vcm->my_pid, p[0]);
621 }
622 else
623 pool_put (vcm->sessions, session);
624 clib_spinlock_unlock (&vcm->sessions_lockp);
625 hash_unset (vcm->session_index_by_vpp_handles, mp->handle);
626 }
627 else
628 {
629 clib_warning ("[%d] couldn't find session key %llx", vcm->my_pid,
630 mp->handle);
631 rv = -11;
632 }
633
634 rmp = vl_msg_api_alloc (sizeof (*rmp));
635 memset (rmp, 0, sizeof (*rmp));
636
637 rmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION_REPLY);
638 rmp->retval = htonl (rv);
639 rmp->handle = mp->handle;
640 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & rmp);
641}
642
643static void
644vl_api_reset_session_t_handler (vl_api_reset_session_t * mp)
645{
646 vppcom_main_t *vcm = &vppcom_main;
647 session_t *session = 0;
648 vl_api_reset_session_reply_t *rmp;
649 uword *p;
650 int rv = 0;
651
652 p = hash_get (vcm->session_index_by_vpp_handles, mp->handle);
653 if (p)
654 {
655 int rval;
656 clib_spinlock_lock (&vcm->sessions_lockp);
657 rval = vppcom_session_at_index (p[0], &session);
658 if (PREDICT_FALSE (rval))
659 {
660 if (VPPCOM_DEBUG > 1)
661 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
662 vcm->my_pid, p[0]);
663 }
664 else
665 pool_put (vcm->sessions, session);
666 clib_spinlock_unlock (&vcm->sessions_lockp);
667 hash_unset (vcm->session_index_by_vpp_handles, mp->handle);
668 }
669 else
670 {
671 clib_warning ("[%d] couldn't find session key %llx", vcm->my_pid,
672 mp->handle);
673 rv = -11;
674 }
675
676 rmp = vl_msg_api_alloc (sizeof (*rmp));
677 memset (rmp, 0, sizeof (*rmp));
678 rmp->_vl_msg_id = ntohs (VL_API_RESET_SESSION_REPLY);
679 rmp->retval = htonl (rv);
680 rmp->handle = mp->handle;
681 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & rmp);
682}
683
684static void
Dave Wallace33e002b2017-09-06 01:20:02 -0400685vl_api_connect_session_reply_t_handler (vl_api_connect_session_reply_t * mp)
Dave Wallace543852a2017-08-03 02:11:34 -0400686{
687 vppcom_main_t *vcm = &vppcom_main;
688 session_t *session;
689 u32 session_index;
690 svm_fifo_t *rx_fifo, *tx_fifo;
691 u8 is_cut_thru = 0;
692 int rv;
693
694 if (mp->retval)
695 {
696 clib_warning ("[%d] connect failed: %U", vcm->my_pid, format_api_error,
697 ntohl (mp->retval));
698 return;
699 }
700
Dave Wallace33e002b2017-09-06 01:20:02 -0400701 session_index = mp->context;
Dave Wallace543852a2017-08-03 02:11:34 -0400702 if (VPPCOM_DEBUG > 1)
Dave Wallace33e002b2017-09-06 01:20:02 -0400703 clib_warning ("[%d] session_index = %d 0x%08x", vcm->my_pid,
Dave Wallace543852a2017-08-03 02:11:34 -0400704 session_index, session_index);
705
706 clib_spinlock_lock (&vcm->sessions_lockp);
707 if (pool_is_free_index (vcm->sessions, session_index))
708 {
709 clib_spinlock_unlock (&vcm->sessions_lockp);
710 if (VPPCOM_DEBUG > 1)
711 clib_warning ("[%d] invalid session, sid %d is closed!",
712 vcm->my_pid, session_index);
713 return;
714 }
715
716 /* We've been redirected */
717 if (mp->segment_name_length > 0)
718 {
719 static svm_fifo_segment_create_args_t _a;
720 svm_fifo_segment_create_args_t *a = &_a;
721
722 is_cut_thru = 1;
723 memset (a, 0, sizeof (*a));
724 a->segment_name = (char *) mp->segment_name;
725 if (VPPCOM_DEBUG > 1)
726 clib_warning ("[%d] cut-thru segment: %s", vcm->my_pid,
727 a->segment_name);
728 rv = svm_fifo_segment_attach (a);
729 vec_reset_length (a->new_segment_indices);
730 if (PREDICT_FALSE (rv))
731 {
732 clib_warning ("[%d] sm_fifo_segment_attach ('%s') failed",
733 vcm->my_pid, a->segment_name);
734 return;
735 }
736 }
737
738 /*
739 * Setup session
740 */
741 if (VPPCOM_DEBUG > 1)
742 clib_warning ("[%d] client sid %d", vcm->my_pid, session_index);
743
744 session = pool_elt_at_index (vcm->sessions, session_index);
745 session->is_cut_thru = is_cut_thru;
Dave Wallace33e002b2017-09-06 01:20:02 -0400746 session->vpp_event_queue = uword_to_pointer (mp->vpp_event_queue_address,
747 unix_shared_memory_queue_t *);
Dave Wallace543852a2017-08-03 02:11:34 -0400748
749 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
750 rx_fifo->client_session_index = session_index;
751 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
752 tx_fifo->client_session_index = session_index;
753
754 session->server_rx_fifo = rx_fifo;
755 session->server_tx_fifo = tx_fifo;
756 session->vpp_session_handle = mp->handle;
757 session->state = STATE_CONNECT;
758
759 /* Add it to lookup table */
760 hash_set (vcm->session_index_by_vpp_handles, mp->handle, session_index);
761 clib_spinlock_unlock (&vcm->sessions_lockp);
762}
763
764static void
765vppcom_send_connect_sock (session_t * session, u32 session_index)
766{
767 vppcom_main_t *vcm = &vppcom_main;
768 vl_api_connect_sock_t *cmp;
769
770 /* Assumes caller as acquired the spinlock: vcm->sessions_lockp */
771 session->is_server = 0;
772 cmp = vl_msg_api_alloc (sizeof (*cmp));
773 memset (cmp, 0, sizeof (*cmp));
774 cmp->_vl_msg_id = ntohs (VL_API_CONNECT_SOCK);
775 cmp->client_index = vcm->my_client_index;
Dave Wallace33e002b2017-09-06 01:20:02 -0400776 cmp->context = session_index;
Dave Wallace543852a2017-08-03 02:11:34 -0400777
778 if (VPPCOM_DEBUG > 1)
Dave Wallace33e002b2017-09-06 01:20:02 -0400779 clib_warning ("[%d] session_index = %d 0x%08x",
780 vcm->my_pid, session_index, session_index);
Dave Wallace543852a2017-08-03 02:11:34 -0400781
782 cmp->vrf = session->vrf;
783 cmp->is_ip4 = session->is_ip4;
Dave Wallace6d5c4cd2017-08-15 16:56:29 -0400784 clib_memcpy (cmp->ip, session->ip, sizeof (cmp->ip));
Dave Wallace543852a2017-08-03 02:11:34 -0400785 cmp->port = session->port;
786 cmp->proto = session->proto;
787 clib_memcpy (cmp->options, session->options, sizeof (cmp->options));
788 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & cmp);
789}
790
791static int
792vppcom_send_disconnect (u32 session_index)
793{
794 vppcom_main_t *vcm = &vppcom_main;
795 vl_api_disconnect_session_t *dmp;
796 session_t *session = 0;
797 int rv;
798
799 clib_spinlock_lock (&vcm->sessions_lockp);
800 rv = vppcom_session_at_index (session_index, &session);
801 if (PREDICT_FALSE (rv))
802 {
803 clib_spinlock_unlock (&vcm->sessions_lockp);
804 if (VPPCOM_DEBUG > 1)
805 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
806 vcm->my_pid, session_index);
807 return rv;
808 }
809
810 dmp = vl_msg_api_alloc (sizeof (*dmp));
811 memset (dmp, 0, sizeof (*dmp));
812 dmp->_vl_msg_id = ntohs (VL_API_DISCONNECT_SESSION);
813 dmp->client_index = vcm->my_client_index;
814 dmp->handle = session->vpp_session_handle;
815 clib_spinlock_unlock (&vcm->sessions_lockp);
816 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & dmp);
817 return VPPCOM_OK;
818}
819
820static void
821vl_api_bind_sock_reply_t_handler (vl_api_bind_sock_reply_t * mp)
822{
823 vppcom_main_t *vcm = &vppcom_main;
824 session_t *session = 0;
825 int rv;
826
827 if (mp->retval)
828 clib_warning ("[%d] bind failed: %U", vcm->my_pid, format_api_error,
829 ntohl (mp->retval));
830
831 ASSERT (vcm->bind_session_index != ~0);
832
833 clib_spinlock_lock (&vcm->sessions_lockp);
834 rv = vppcom_session_at_index (vcm->bind_session_index, &session);
835 if (rv == VPPCOM_OK)
836 {
837 session->vpp_session_handle = mp->handle;
838 hash_set (vcm->session_index_by_vpp_handles, mp->handle,
839 vcm->bind_session_index);
840 session->state = mp->retval ? STATE_FAILED : STATE_LISTEN;
841 vcm->bind_session_index = ~0;
842 }
843 clib_spinlock_unlock (&vcm->sessions_lockp);
844}
845
846static void
847vl_api_unbind_sock_reply_t_handler (vl_api_unbind_sock_reply_t * mp)
848{
849 vppcom_main_t *vcm = &vppcom_main;
850 session_t *session = 0;
851 int rv;
852
853 clib_spinlock_lock (&vcm->sessions_lockp);
854 rv = vppcom_session_at_index (vcm->bind_session_index, &session);
855 if (PREDICT_FALSE (rv))
856 {
857 if (VPPCOM_DEBUG > 1)
858 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
859 vcm->my_pid, vcm->bind_session_index);
860 }
861
862 if (mp->retval)
863 clib_warning ("[%d] unbind failed: %U", vcm->my_pid, format_api_error,
864 ntohl (mp->retval));
865
866 vcm->bind_session_index = ~0;
867 session->state = STATE_START;
868 clib_spinlock_unlock (&vcm->sessions_lockp);
869}
870
871u8 *
872format_ip4_address (u8 * s, va_list * args)
873{
874 u8 *a = va_arg (*args, u8 *);
875 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
876}
877
878u8 *
879format_ip6_address (u8 * s, va_list * args)
880{
881 ip6_address_t *a = va_arg (*args, ip6_address_t *);
882 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
883
884 i_max_n_zero = ARRAY_LEN (a->as_u16);
885 max_n_zeros = 0;
886 i_first_zero = i_max_n_zero;
887 n_zeros = 0;
888 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
889 {
890 u32 is_zero = a->as_u16[i] == 0;
891 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
892 {
893 i_first_zero = i;
894 n_zeros = 0;
895 }
896 n_zeros += is_zero;
897 if ((!is_zero && n_zeros > max_n_zeros)
898 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
899 {
900 i_max_n_zero = i_first_zero;
901 max_n_zeros = n_zeros;
902 i_first_zero = ARRAY_LEN (a->as_u16);
903 n_zeros = 0;
904 }
905 }
906
907 last_double_colon = 0;
908 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
909 {
910 if (i == i_max_n_zero && max_n_zeros > 1)
911 {
912 s = format (s, "::");
913 i += max_n_zeros - 1;
914 last_double_colon = 1;
915 }
916 else
917 {
918 s = format (s, "%s%x",
919 (last_double_colon || i == 0) ? "" : ":",
920 clib_net_to_host_u16 (a->as_u16[i]));
921 last_double_colon = 0;
922 }
923 }
924
925 return s;
926}
927
928/* Format an IP46 address. */
929u8 *
930format_ip46_address (u8 * s, va_list * args)
931{
932 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
933 ip46_type_t type = va_arg (*args, ip46_type_t);
934 int is_ip4 = 1;
935
936 switch (type)
937 {
938 case IP46_TYPE_ANY:
939 is_ip4 = ip46_address_is_ip4 (ip46);
940 break;
941 case IP46_TYPE_IP4:
942 is_ip4 = 1;
943 break;
944 case IP46_TYPE_IP6:
945 is_ip4 = 0;
946 break;
947 }
948
949 return is_ip4 ?
950 format (s, "%U", format_ip4_address, &ip46->ip4) :
951 format (s, "%U", format_ip6_address, &ip46->ip6);
952}
953
954static void
955vl_api_accept_session_t_handler (vl_api_accept_session_t * mp)
956{
957 vppcom_main_t *vcm = &vppcom_main;
958 vl_api_accept_session_reply_t *rmp;
959 svm_fifo_t *rx_fifo, *tx_fifo;
960 session_t *session;
961 u32 session_index;
962 int rv = 0;
963
964 if (!clib_fifo_free_elts (vcm->client_session_index_fifo))
965 {
966 clib_warning ("[%d] client session queue is full!", vcm->my_pid);
967 rv = VNET_API_ERROR_QUEUE_FULL;
968 goto send_reply;
969 }
970
971 if (VPPCOM_DEBUG > 1)
972 {
973 u8 *ip_str = format (0, "%U", format_ip46_address, &mp->ip, mp->is_ip4);
974 clib_warning ("[%d] accepted session from: %s:%d", vcm->my_pid, ip_str,
975 clib_net_to_host_u16 (mp->port));
976 vec_free (ip_str);
977 }
978
979 clib_spinlock_lock (&vcm->sessions_lockp);
980 /* Allocate local session and set it up */
981 pool_get (vcm->sessions, session);
982 memset (session, 0, sizeof (*session));
983 session_index = session - vcm->sessions;
984
985 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
986 rx_fifo->client_session_index = session_index;
987 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
988 tx_fifo->client_session_index = session_index;
989
990 session->server_rx_fifo = rx_fifo;
991 session->server_tx_fifo = tx_fifo;
Dave Wallace33e002b2017-09-06 01:20:02 -0400992 session->vpp_event_queue = uword_to_pointer (mp->vpp_event_queue_address,
993 unix_shared_memory_queue_t *);
Dave Wallace543852a2017-08-03 02:11:34 -0400994 session->state = STATE_ACCEPT;
995 session->is_cut_thru = 0;
996 session->port = ntohs (mp->port);
997 session->is_ip4 = mp->is_ip4;
Dave Wallace6d5c4cd2017-08-15 16:56:29 -0400998 clib_memcpy (session->ip, mp->ip, sizeof (session->ip));
Dave Wallace543852a2017-08-03 02:11:34 -0400999 clib_spinlock_unlock (&vcm->sessions_lockp);
1000
1001 /* Add it to lookup table */
1002 hash_set (vcm->session_index_by_vpp_handles, mp->handle, session_index);
1003
1004 clib_fifo_add1 (vcm->client_session_index_fifo, session_index);
1005
1006 /*
1007 * Send accept reply to vpp
1008 */
1009send_reply:
1010 rmp = vl_msg_api_alloc (sizeof (*rmp));
1011 memset (rmp, 0, sizeof (*rmp));
1012 rmp->_vl_msg_id = ntohs (VL_API_ACCEPT_SESSION_REPLY);
1013 rmp->retval = htonl (rv);
1014 rmp->handle = mp->handle;
1015 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & rmp);
1016}
1017
1018/*
1019 * Acting as server for redirected connect requests
1020 */
1021static void
1022vl_api_connect_sock_t_handler (vl_api_connect_sock_t * mp)
1023{
1024 static svm_fifo_segment_create_args_t _a;
1025 svm_fifo_segment_create_args_t *a = &_a;
1026 vppcom_main_t *vcm = &vppcom_main;
1027 u32 session_index;
1028 svm_fifo_segment_private_t *seg;
1029 unix_shared_memory_queue_t *client_q;
Dave Wallace33e002b2017-09-06 01:20:02 -04001030 vl_api_connect_session_reply_t *rmp;
Dave Wallace543852a2017-08-03 02:11:34 -04001031 session_t *session = 0;
1032 int rv = 0;
1033 svm_fifo_t *rx_fifo;
1034 svm_fifo_t *tx_fifo;
1035 unix_shared_memory_queue_t *event_q = 0;
1036
1037 if (!clib_fifo_free_elts (vcm->client_session_index_fifo))
1038 {
1039 if (VPPCOM_DEBUG > 1)
1040 clib_warning ("[%d] client session queue is full!", vcm->my_pid);
1041 rv = VNET_API_ERROR_QUEUE_FULL;
1042 goto send_reply;
1043 }
1044
1045 /* Create the segment */
1046 memset (a, 0, sizeof (*a));
1047 a->segment_name = (char *) format ((u8 *) a->segment_name, "%d:segment%d%c",
1048 vcm->my_pid, vcm->unique_segment_index++,
1049 0);
1050 a->segment_size = vcm->cfg.segment_size;
1051 a->preallocated_fifo_pairs = vcm->cfg.preallocated_fifo_pairs;
1052 a->rx_fifo_size = vcm->cfg.rx_fifo_size;
1053 a->tx_fifo_size = vcm->cfg.tx_fifo_size;
1054
1055 rv = svm_fifo_segment_create (a);
1056 if (PREDICT_FALSE (rv))
1057 {
1058 if (VPPCOM_DEBUG > 1)
1059 clib_warning ("[%d] svm_fifo_segment_create ('%s') failed",
1060 vcm->my_pid, a->segment_name);
1061 vec_reset_length (a->new_segment_indices);
1062 rv = VNET_API_ERROR_URI_FIFO_CREATE_FAILED;
1063 goto send_reply;
1064 }
1065
1066 if (VPPCOM_DEBUG > 1)
1067 clib_warning ("[%d] created segment '%s'", vcm->my_pid, a->segment_name);
1068
1069 clib_spinlock_lock (&vcm->sessions_lockp);
1070 pool_get (vcm->sessions, session);
1071 memset (session, 0, sizeof (*session));
1072 session_index = session - vcm->sessions;
1073
1074 session->sm_seg_index = a->new_segment_indices[0];
1075 vec_reset_length (a->new_segment_indices);
1076
Florin Corasc87c91d2017-08-16 19:55:49 -07001077 seg = svm_fifo_segment_get_segment (session->sm_seg_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001078 rx_fifo = session->server_rx_fifo =
1079 svm_fifo_segment_alloc_fifo (seg, vcm->cfg.rx_fifo_size,
1080 FIFO_SEGMENT_RX_FREELIST);
1081 if (PREDICT_FALSE (!session->server_rx_fifo))
1082 {
1083 svm_fifo_segment_delete (seg);
1084 clib_warning ("[%d] rx fifo alloc failed, size %ld (0x%lx)",
1085 vcm->my_pid, vcm->cfg.rx_fifo_size,
1086 vcm->cfg.rx_fifo_size);
1087 rv = VNET_API_ERROR_URI_FIFO_CREATE_FAILED;
1088 clib_spinlock_unlock (&vcm->sessions_lockp);
1089 goto send_reply;
1090 }
1091
1092 tx_fifo = session->server_tx_fifo =
1093 svm_fifo_segment_alloc_fifo (seg, vcm->cfg.tx_fifo_size,
1094 FIFO_SEGMENT_TX_FREELIST);
1095 if (PREDICT_FALSE (!session->server_tx_fifo))
1096 {
1097 svm_fifo_segment_delete (seg);
1098 if (VPPCOM_DEBUG > 1)
1099 clib_warning ("[%d] tx fifo alloc failed, size %ld (0x%lx)",
1100 vcm->my_pid, vcm->cfg.tx_fifo_size,
1101 vcm->cfg.tx_fifo_size);
1102 rv = VNET_API_ERROR_URI_FIFO_CREATE_FAILED;
1103 clib_spinlock_unlock (&vcm->sessions_lockp);
1104 goto send_reply;
1105 }
1106
1107 session->server_rx_fifo->master_session_index = session_index;
1108 session->server_tx_fifo->master_session_index = session_index;
1109 session->client_queue_address = mp->client_queue_address;
1110 session->is_cut_thru = 1;
1111 session->is_server = 1;
1112 session->is_ip4 = mp->is_ip4;
1113 session->port = mp->port;
1114 {
1115 void *oldheap;
1116 ssvm_shared_header_t *sh = seg->ssvm.sh;
1117
1118 ssvm_lock_non_recursive (sh, 1);
1119 oldheap = ssvm_push_heap (sh);
Dave Wallace33e002b2017-09-06 01:20:02 -04001120 event_q = session->vpp_event_queue =
Dave Wallace543852a2017-08-03 02:11:34 -04001121 unix_shared_memory_queue_init (vcm->cfg.event_queue_size,
1122 sizeof (session_fifo_event_t),
1123 vcm->my_pid, 0 /* signal not sent */ );
1124 ssvm_pop_heap (oldheap);
1125 ssvm_unlock_non_recursive (sh);
1126 }
Dave Wallace6d5c4cd2017-08-15 16:56:29 -04001127 clib_memcpy (session->ip, mp->ip, sizeof (session->ip));
1128
Dave Wallace543852a2017-08-03 02:11:34 -04001129 session->state = STATE_ACCEPT;
1130 if (VPPCOM_DEBUG > 1)
1131 clib_warning ("[%d] Connected cut-thru to client: sid %d",
1132 vcm->my_pid, session_index);
1133 clib_spinlock_unlock (&vcm->sessions_lockp);
1134 clib_fifo_add1 (vcm->client_session_index_fifo, session_index);
1135
1136send_reply:
1137 rmp = vl_msg_api_alloc (sizeof (*rmp));
1138 memset (rmp, 0, sizeof (*rmp));
1139
Dave Wallace33e002b2017-09-06 01:20:02 -04001140 rmp->_vl_msg_id = ntohs (VL_API_CONNECT_SESSION_REPLY);
Dave Wallace543852a2017-08-03 02:11:34 -04001141 rmp->context = mp->context;
Dave Wallace543852a2017-08-03 02:11:34 -04001142 rmp->retval = htonl (rv);
1143 rmp->segment_name_length = vec_len (a->segment_name);
1144 clib_memcpy (rmp->segment_name, a->segment_name, vec_len (a->segment_name));
1145 vec_reset_length (a->segment_name);
1146
1147 if (event_q)
1148 {
1149 rmp->vpp_event_queue_address = pointer_to_uword (event_q);
1150 rmp->server_rx_fifo = pointer_to_uword (rx_fifo);
1151 rmp->server_tx_fifo = pointer_to_uword (tx_fifo);
1152 }
1153 client_q =
1154 uword_to_pointer (mp->client_queue_address, unix_shared_memory_queue_t *);
1155
1156 ASSERT (client_q);
1157 vl_msg_api_send_shmem (client_q, (u8 *) & rmp);
1158}
1159
1160static void
1161vppcom_send_bind_sock (session_t * session)
1162{
1163 vppcom_main_t *vcm = &vppcom_main;
1164 vl_api_bind_sock_t *bmp;
1165
1166 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1167 session->is_server = 1;
1168 bmp = vl_msg_api_alloc (sizeof (*bmp));
1169 memset (bmp, 0, sizeof (*bmp));
1170
1171 bmp->_vl_msg_id = ntohs (VL_API_BIND_SOCK);
1172 bmp->client_index = vcm->my_client_index;
1173 bmp->context = htonl (0xfeedface);
1174 bmp->vrf = session->vrf;
1175 bmp->is_ip4 = session->is_ip4;
Dave Wallace6d5c4cd2017-08-15 16:56:29 -04001176 clib_memcpy (bmp->ip, session->ip, sizeof (bmp->ip));
Dave Wallace543852a2017-08-03 02:11:34 -04001177 bmp->port = session->port;
1178 bmp->proto = session->proto;
1179 clib_memcpy (bmp->options, session->options, sizeof (bmp->options));
1180 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & bmp);
1181}
1182
1183static void
1184vppcom_send_unbind_sock (u32 session_index)
1185{
1186 vppcom_main_t *vcm = &vppcom_main;
1187 vl_api_unbind_sock_t *ump;
1188 session_t *session = 0;
1189 int rv;
1190
1191 clib_spinlock_lock (&vcm->sessions_lockp);
1192 rv = vppcom_session_at_index (session_index, &session);
1193 if (PREDICT_FALSE (rv))
1194 {
1195 clib_spinlock_unlock (&vcm->sessions_lockp);
1196 if (VPPCOM_DEBUG > 0)
1197 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
1198 vcm->my_pid, session_index);
1199 return;
1200 }
1201
1202 ump = vl_msg_api_alloc (sizeof (*ump));
1203 memset (ump, 0, sizeof (*ump));
1204
1205 ump->_vl_msg_id = ntohs (VL_API_UNBIND_SOCK);
1206 ump->client_index = vcm->my_client_index;
1207 ump->handle = session->vpp_session_handle;
1208 clib_spinlock_unlock (&vcm->sessions_lockp);
1209 vl_msg_api_send_shmem (vcm->vl_input_queue, (u8 *) & ump);
1210}
1211
1212static int
1213vppcom_session_unbind_cut_thru (session_t * session)
1214{
1215 svm_fifo_segment_main_t *sm = &svm_fifo_segment_main;
1216 svm_fifo_segment_private_t *seg;
1217 int rv = VPPCOM_OK;
1218
1219 seg = vec_elt_at_index (sm->segments, session->sm_seg_index);
1220 svm_fifo_segment_free_fifo (seg, session->server_rx_fifo,
1221 FIFO_SEGMENT_RX_FREELIST);
1222 svm_fifo_segment_free_fifo (seg, session->server_tx_fifo,
1223 FIFO_SEGMENT_TX_FREELIST);
1224 svm_fifo_segment_delete (seg);
1225
1226 return rv;
1227}
1228
1229static int
1230vppcom_session_unbind (u32 session_index)
1231{
1232 vppcom_main_t *vcm = &vppcom_main;
1233 int rv;
1234
1235 clib_spinlock_lock (&vcm->sessions_lockp);
1236 if (PREDICT_FALSE (pool_is_free_index (vcm->sessions, session_index)))
1237 {
1238 clib_spinlock_unlock (&vcm->sessions_lockp);
1239 if (VPPCOM_DEBUG > 1)
1240 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
1241 vcm->my_pid, session_index);
1242 return VPPCOM_EBADFD;
1243 }
1244 clib_spinlock_unlock (&vcm->sessions_lockp);
1245
1246 vcm->bind_session_index = session_index;
1247 vppcom_send_unbind_sock (session_index);
1248 rv = vppcom_wait_for_session_state_change (session_index, STATE_START,
1249 vcm->cfg.session_timeout);
1250 if (PREDICT_FALSE (rv))
1251 {
1252 vcm->bind_session_index = ~0;
1253 if (VPPCOM_DEBUG > 0)
1254 clib_warning ("[%d] server unbind timed out, rv = %s (%d)",
1255 vcm->my_pid, vppcom_retval_str (rv), rv);
1256 return rv;
1257 }
1258 return VPPCOM_OK;
1259}
1260
1261static int
1262vppcom_session_disconnect (u32 session_index)
1263{
1264 vppcom_main_t *vcm = &vppcom_main;
1265 int rv;
1266
1267 rv = vppcom_send_disconnect (session_index);
1268 if (PREDICT_FALSE (rv))
1269 return rv;
1270
1271 rv = vppcom_wait_for_session_state_change (session_index, STATE_DISCONNECT,
1272 vcm->cfg.session_timeout);
1273 if (PREDICT_FALSE (rv))
1274 {
1275 if (VPPCOM_DEBUG > 0)
1276 clib_warning ("[%d] client disconnect timed out, rv = %s (%d)",
1277 vcm->my_pid, vppcom_retval_str (rv), rv);
1278 return rv;
1279 }
1280
1281 clib_spinlock_lock (&vcm->sessions_lockp);
1282 pool_put_index (vcm->sessions, session_index);
1283 clib_spinlock_unlock (&vcm->sessions_lockp);
1284 return VPPCOM_OK;
1285}
1286
1287#define foreach_sock_msg \
1288_(SESSION_ENABLE_DISABLE_REPLY, session_enable_disable_reply) \
1289_(BIND_SOCK_REPLY, bind_sock_reply) \
1290_(UNBIND_SOCK_REPLY, unbind_sock_reply) \
1291_(ACCEPT_SESSION, accept_session) \
1292_(CONNECT_SOCK, connect_sock) \
Dave Wallace33e002b2017-09-06 01:20:02 -04001293_(CONNECT_SESSION_REPLY, connect_session_reply) \
Dave Wallace543852a2017-08-03 02:11:34 -04001294_(DISCONNECT_SESSION, disconnect_session) \
1295_(DISCONNECT_SESSION_REPLY, disconnect_session_reply) \
1296_(RESET_SESSION, reset_session) \
1297_(APPLICATION_ATTACH_REPLY, application_attach_reply) \
1298_(APPLICATION_DETACH_REPLY, application_detach_reply) \
1299_(MAP_ANOTHER_SEGMENT, map_another_segment)
1300
1301static void
1302vppcom_api_hookup (void)
1303{
1304#define _(N,n) \
1305 vl_msg_api_set_handlers(VL_API_##N, #n, \
1306 vl_api_##n##_t_handler, \
1307 vl_noop_handler, \
1308 vl_api_##n##_t_endian, \
1309 vl_api_##n##_t_print, \
1310 sizeof(vl_api_##n##_t), 1);
1311 foreach_sock_msg;
1312#undef _
1313}
1314
1315static void
1316vppcom_cfg_init (vppcom_cfg_t * vcl_cfg)
1317{
1318 ASSERT (vcl_cfg);
1319
1320 vcl_cfg->heapsize = (256ULL << 20);
1321 vcl_cfg->segment_baseva = 0x200000000ULL;
1322 vcl_cfg->segment_size = (256 << 20);
1323 vcl_cfg->add_segment_size = (128 << 20);
1324 vcl_cfg->preallocated_fifo_pairs = 8;
1325 vcl_cfg->rx_fifo_size = (1 << 20);
1326 vcl_cfg->tx_fifo_size = (1 << 20);
1327 vcl_cfg->event_queue_size = 2048;
1328 vcl_cfg->listen_queue_size = CLIB_CACHE_LINE_BYTES / sizeof (u32);
1329 vcl_cfg->app_timeout = 10 * 60.0;
1330 vcl_cfg->session_timeout = 10 * 60.0;
1331 vcl_cfg->accept_timeout = 60.0;
1332}
1333
1334static void
1335vppcom_cfg_heapsize (char *conf_fname)
1336{
1337 vppcom_main_t *vcm = &vppcom_main;
1338 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
1339 FILE *fp;
1340 char inbuf[4096];
1341 int argc = 1;
1342 char **argv = NULL;
1343 char *arg = NULL;
1344 char *p;
1345 int i;
1346 u8 *sizep;
1347 u32 size;
1348
1349 fp = fopen (conf_fname, "r");
1350 if (fp == NULL)
1351 {
1352 if (VPPCOM_DEBUG > 0)
1353 fprintf (stderr, "open configuration file '%s' failed\n", conf_fname);
1354 goto defaulted;
1355 }
1356 argv = calloc (1, sizeof (char *));
1357 if (argv == NULL)
1358 goto defaulted;
1359
1360 while (1)
1361 {
1362 if (fgets (inbuf, 4096, fp) == 0)
1363 break;
1364 p = strtok (inbuf, " \t\n");
1365 while (p != NULL)
1366 {
1367 if (*p == '#')
1368 break;
1369 argc++;
1370 char **tmp = realloc (argv, argc * sizeof (char *));
1371 if (tmp == NULL)
Chris Lukeab7b8d92017-09-07 07:40:13 -04001372 goto defaulted;
Dave Wallace543852a2017-08-03 02:11:34 -04001373 argv = tmp;
1374 arg = strndup (p, 1024);
1375 if (arg == NULL)
Chris Lukeab7b8d92017-09-07 07:40:13 -04001376 goto defaulted;
Dave Wallace543852a2017-08-03 02:11:34 -04001377 argv[argc - 1] = arg;
1378 p = strtok (NULL, " \t\n");
1379 }
1380 }
1381
1382 fclose (fp);
Chris Lukeab7b8d92017-09-07 07:40:13 -04001383 fp = NULL;
Dave Wallace543852a2017-08-03 02:11:34 -04001384
1385 char **tmp = realloc (argv, (argc + 1) * sizeof (char *));
1386 if (tmp == NULL)
1387 goto defaulted;
1388 argv = tmp;
1389 argv[argc] = NULL;
1390
1391 /*
1392 * Look for and parse the "heapsize" config parameter.
1393 * Manual since none of the clib infra has been bootstrapped yet.
1394 *
1395 * Format: heapsize <nn>[mM][gG]
1396 */
1397
1398 for (i = 1; i < (argc - 1); i++)
1399 {
1400 if (!strncmp (argv[i], "heapsize", 8))
1401 {
1402 sizep = (u8 *) argv[i + 1];
1403 size = 0;
1404 while (*sizep >= '0' && *sizep <= '9')
1405 {
1406 size *= 10;
1407 size += *sizep++ - '0';
1408 }
1409 if (size == 0)
1410 {
1411 if (VPPCOM_DEBUG > 0)
1412 clib_warning ("[%d] parse error '%s %s', "
1413 "using default heapsize %lld (0x%llx)",
1414 vcm->my_pid, argv[i], argv[i + 1],
1415 vcl_cfg->heapsize, vcl_cfg->heapsize);
1416 goto defaulted;
1417 }
1418
1419 if (*sizep == 'g' || *sizep == 'G')
1420 vcl_cfg->heapsize = size << 30;
1421 else if (*sizep == 'm' || *sizep == 'M')
1422 vcl_cfg->heapsize = size << 20;
1423 else
1424 {
1425 if (VPPCOM_DEBUG > 0)
1426 clib_warning ("[%d] parse error '%s %s', "
1427 "using default heapsize %lld (0x%llx)",
1428 vcm->my_pid, argv[i], argv[i + 1],
1429 vcl_cfg->heapsize, vcl_cfg->heapsize);
1430 goto defaulted;
1431 }
1432 }
1433 }
1434
1435defaulted:
Chris Lukeab7b8d92017-09-07 07:40:13 -04001436 if (fp != NULL)
1437 fclose (fp);
1438 if (argv != NULL)
1439 free (argv);
Dave Wallace543852a2017-08-03 02:11:34 -04001440 if (!clib_mem_init (0, vcl_cfg->heapsize))
1441 clib_warning ("[%d] vppcom heap allocation failure!", vcm->my_pid);
1442 else if (VPPCOM_DEBUG > 0)
1443 clib_warning ("[%d] allocated vppcom heapsize %lld (0x%llx)",
1444 vcm->my_pid, vcl_cfg->heapsize, vcl_cfg->heapsize);
1445}
1446
1447static void
1448vppcom_cfg_read (char *conf_fname)
1449{
1450 vppcom_main_t *vcm = &vppcom_main;
1451 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
1452 int fd;
1453 unformat_input_t _input, *input = &_input;
1454 unformat_input_t _line_input, *line_input = &_line_input;
1455 u8 vc_cfg_input = 0;
1456 u8 *chroot_path;
1457 struct stat s;
1458 u32 uid, gid;
1459
1460 fd = open (conf_fname, O_RDONLY);
1461 if (fd < 0)
1462 {
1463 if (VPPCOM_DEBUG > 0)
1464 clib_warning ("[%d] open configuration file '%s' failed!",
1465 vcm->my_pid, conf_fname);
1466 goto file_done;
1467 }
1468
1469 if (fstat (fd, &s) < 0)
1470 {
1471 if (VPPCOM_DEBUG > 0)
1472 clib_warning ("[%d] failed to stat `%s'", vcm->my_pid, conf_fname);
1473 goto file_done;
1474 }
1475
1476 if (!(S_ISREG (s.st_mode) || S_ISLNK (s.st_mode)))
1477 {
1478 if (VPPCOM_DEBUG > 0)
1479 clib_warning ("[%d] not a regular file `%s'", vcm->my_pid,
1480 conf_fname);
1481 goto file_done;
1482 }
1483
1484 unformat_init_unix_file (input, fd);
1485
1486 while (unformat_check_input (input) != UNFORMAT_END_OF_INPUT)
1487 {
1488 unformat_user (input, unformat_line_input, line_input);
1489 unformat_skip_white_space (line_input);
1490
1491 if (unformat (line_input, "vppcom {"))
1492 {
1493 vc_cfg_input = 1;
1494 continue;
1495 }
1496
1497 if (vc_cfg_input)
1498 {
1499 if (unformat (line_input, "heapsize %s", &chroot_path))
1500 {
1501 vec_terminate_c_string (chroot_path);
1502 if (VPPCOM_DEBUG > 0)
1503 clib_warning ("[%d] configured heapsize %s, "
1504 "actual heapsize %lld (0x%llx)",
1505 vcm->my_pid, chroot_path, vcl_cfg->heapsize,
1506 vcl_cfg->heapsize);
1507 vec_free (chroot_path);
1508 }
1509 else if (unformat (line_input, "api-prefix %s", &chroot_path))
1510 {
1511 vec_terminate_c_string (chroot_path);
1512 vl_set_memory_root_path ((char *) chroot_path);
1513 if (VPPCOM_DEBUG > 0)
1514 clib_warning ("[%d] configured api-prefix %s",
1515 vcm->my_pid, chroot_path);
1516 chroot_path = 0; /* Don't vec_free() it! */
1517 }
1518 else if (unformat (line_input, "uid %d", &uid))
1519 {
1520 vl_set_memory_uid (uid);
1521 if (VPPCOM_DEBUG > 0)
1522 clib_warning ("[%d] configured uid %d", vcm->my_pid, uid);
1523 }
1524 else if (unformat (line_input, "gid %d", &gid))
1525 {
1526 vl_set_memory_gid (gid);
1527 if (VPPCOM_DEBUG > 0)
1528 clib_warning ("[%d] configured gid %d", vcm->my_pid, gid);
1529 }
1530 else if (unformat (line_input, "segment-baseva 0x%llx",
1531 &vcl_cfg->segment_baseva))
1532 {
1533 if (VPPCOM_DEBUG > 0)
1534 clib_warning ("[%d] configured segment_baseva 0x%llx",
1535 vcm->my_pid, vcl_cfg->segment_baseva);
1536 }
1537 else if (unformat (line_input, "segment-size 0x%lx",
1538 &vcl_cfg->segment_size))
1539 {
1540 if (VPPCOM_DEBUG > 0)
1541 clib_warning ("[%d] configured segment_size 0x%lx (%ld)",
1542 vcm->my_pid, vcl_cfg->segment_size,
1543 vcl_cfg->segment_size);
1544 }
1545 else if (unformat (line_input, "segment-size %ld",
1546 &vcl_cfg->segment_size))
1547 {
1548 if (VPPCOM_DEBUG > 0)
1549 clib_warning ("[%d] configured segment_size %ld (0x%lx)",
1550 vcm->my_pid, vcl_cfg->segment_size,
1551 vcl_cfg->segment_size);
1552 }
1553 else if (unformat (line_input, "add-segment-size 0x%lx",
1554 &vcl_cfg->add_segment_size))
1555 {
1556 if (VPPCOM_DEBUG > 0)
1557 clib_warning
1558 ("[%d] configured add_segment_size 0x%lx (%ld)",
1559 vcm->my_pid, vcl_cfg->add_segment_size,
1560 vcl_cfg->add_segment_size);
1561 }
1562 else if (unformat (line_input, "add-segment-size %ld",
1563 &vcl_cfg->add_segment_size))
1564 {
1565 if (VPPCOM_DEBUG > 0)
1566 clib_warning
1567 ("[%d] configured add_segment_size %ld (0x%lx)",
1568 vcm->my_pid, vcl_cfg->add_segment_size,
1569 vcl_cfg->add_segment_size);
1570 }
1571 else if (unformat (line_input, "preallocated-fifo-pairs %d",
1572 &vcl_cfg->preallocated_fifo_pairs))
1573 {
1574 if (VPPCOM_DEBUG > 0)
1575 clib_warning ("[%d] configured preallocated_fifo_pairs "
1576 "%d (0x%x)", vcm->my_pid,
1577 vcl_cfg->preallocated_fifo_pairs,
1578 vcl_cfg->preallocated_fifo_pairs);
1579 }
1580 else if (unformat (line_input, "rx-fifo-size 0x%lx",
1581 &vcl_cfg->rx_fifo_size))
1582 {
1583 if (VPPCOM_DEBUG > 0)
1584 clib_warning ("[%d] configured rx_fifo_size 0x%lx (%ld)",
1585 vcm->my_pid, vcl_cfg->rx_fifo_size,
1586 vcl_cfg->rx_fifo_size);
1587 }
1588 else if (unformat (line_input, "rx-fifo-size %ld",
1589 &vcl_cfg->rx_fifo_size))
1590 {
1591 if (VPPCOM_DEBUG > 0)
1592 clib_warning ("[%d] configured rx_fifo_size %ld (0x%lx)",
1593 vcm->my_pid, vcl_cfg->rx_fifo_size,
1594 vcl_cfg->rx_fifo_size);
1595 }
1596 else if (unformat (line_input, "tx-fifo-size 0x%lx",
1597 &vcl_cfg->tx_fifo_size))
1598 {
1599 if (VPPCOM_DEBUG > 0)
1600 clib_warning ("[%d] configured tx_fifo_size 0x%lx (%ld)",
1601 vcm->my_pid, vcl_cfg->tx_fifo_size,
1602 vcl_cfg->tx_fifo_size);
1603 }
1604 else if (unformat (line_input, "tx-fifo-size %ld",
1605 &vcl_cfg->tx_fifo_size))
1606 {
1607 if (VPPCOM_DEBUG > 0)
1608 clib_warning ("[%d] configured tx_fifo_size %ld (0x%lx)",
1609 vcm->my_pid, vcl_cfg->tx_fifo_size,
1610 vcl_cfg->tx_fifo_size);
1611 }
1612 else if (unformat (line_input, "event-queue-size 0x%lx",
1613 &vcl_cfg->event_queue_size))
1614 {
1615 if (VPPCOM_DEBUG > 0)
1616 clib_warning ("[%d] configured event_queue_size 0x%lx (%ld)",
1617 vcm->my_pid, vcl_cfg->event_queue_size,
1618 vcl_cfg->event_queue_size);
1619 }
1620 else if (unformat (line_input, "event-queue-size %ld",
1621 &vcl_cfg->event_queue_size))
1622 {
1623 if (VPPCOM_DEBUG > 0)
1624 clib_warning ("[%d] configured event_queue_size %ld (0x%lx)",
1625 vcm->my_pid, vcl_cfg->event_queue_size,
1626 vcl_cfg->event_queue_size);
1627 }
1628 else if (unformat (line_input, "listen-queue-size 0x%lx",
1629 &vcl_cfg->listen_queue_size))
1630 {
1631 if (VPPCOM_DEBUG > 0)
1632 clib_warning ("[%d] configured listen_queue_size 0x%lx (%ld)",
1633 vcm->my_pid, vcl_cfg->listen_queue_size,
1634 vcl_cfg->listen_queue_size);
1635 }
1636 else if (unformat (line_input, "listen-queue-size %ld",
1637 &vcl_cfg->listen_queue_size))
1638 {
1639 if (VPPCOM_DEBUG > 0)
1640 clib_warning ("[%d] configured listen_queue_size %ld (0x%lx)",
1641 vcm->my_pid, vcl_cfg->listen_queue_size,
1642 vcl_cfg->listen_queue_size);
1643 }
1644 else if (unformat (line_input, "app-timeout %f",
1645 &vcl_cfg->app_timeout))
1646 {
1647 if (VPPCOM_DEBUG > 0)
1648 clib_warning ("[%d] configured app_timeout %f",
1649 vcm->my_pid, vcl_cfg->app_timeout);
1650 }
1651 else if (unformat (line_input, "session-timeout %f",
1652 &vcl_cfg->session_timeout))
1653 {
1654 if (VPPCOM_DEBUG > 0)
1655 clib_warning ("[%d] configured session_timeout %f",
1656 vcm->my_pid, vcl_cfg->session_timeout);
1657 }
1658 else if (unformat (line_input, "accept-timeout %f",
1659 &vcl_cfg->accept_timeout))
1660 {
1661 if (VPPCOM_DEBUG > 0)
1662 clib_warning ("[%d] configured accept_timeout %f",
1663 vcm->my_pid, vcl_cfg->accept_timeout);
1664 }
1665 else if (unformat (line_input, "}"))
1666 {
1667 vc_cfg_input = 0;
1668 if (VPPCOM_DEBUG > 0)
1669 clib_warning ("[%d] completed parsing vppcom config!",
1670 vcm->my_pid);
1671 goto input_done;
1672 }
1673 else
1674 {
1675 if (line_input->buffer[line_input->index] != '#')
1676 {
1677 clib_warning ("[%d] Unknown vppcom config option: '%s'",
1678 vcm->my_pid, (char *)
1679 &line_input->buffer[line_input->index]);
1680 }
1681 }
1682 }
1683 }
1684
1685input_done:
1686 unformat_free (input);
1687
1688file_done:
Chris Lukeab7b8d92017-09-07 07:40:13 -04001689 if (fd >= 0)
Dave Wallace543852a2017-08-03 02:11:34 -04001690 close (fd);
1691}
1692
1693/*
1694 * VPPCOM Public API functions
1695 */
1696int
1697vppcom_app_create (char *app_name)
1698{
1699 vppcom_main_t *vcm = &vppcom_main;
1700 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
1701 u8 *heap;
1702 mheap_t *h;
1703 int rv;
1704
1705 if (!vcm->init)
1706 {
1707 char *conf_fname;
1708
1709 vcm->init = 1;
1710 vcm->my_pid = getpid ();
1711 clib_fifo_validate (vcm->client_session_index_fifo,
1712 vcm->cfg.listen_queue_size);
1713 vppcom_cfg_init (vcl_cfg);
1714 conf_fname = getenv (VPPCOM_CONF_ENV);
1715 if (!conf_fname)
1716 {
1717 conf_fname = VPPCOM_CONF_DEFAULT;
1718 if (VPPCOM_DEBUG > 0)
1719 clib_warning ("[%d] getenv '%s' failed!", vcm->my_pid,
1720 VPPCOM_CONF_ENV);
1721 }
1722 vppcom_cfg_heapsize (conf_fname);
1723 vppcom_cfg_read (conf_fname);
1724 vcm->bind_session_index = ~0;
1725 vcm->main_cpu = os_get_thread_index ();
1726 heap = clib_mem_get_per_cpu_heap ();
1727 h = mheap_header (heap);
1728
1729 /* make the main heap thread-safe */
1730 h->flags |= MHEAP_FLAG_THREAD_SAFE;
1731
1732 vcm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
1733
1734 clib_time_init (&vcm->clib_time);
1735 vppcom_init_error_string_table ();
1736 svm_fifo_segment_init (vcl_cfg->segment_baseva,
1737 20 /* timeout in secs */ );
1738 clib_spinlock_init (&vcm->sessions_lockp);
1739 vppcom_api_hookup ();
1740 }
1741
1742 if (vcm->my_client_index == ~0)
1743 {
1744 vcm->app_state = STATE_APP_START;
1745 rv = vppcom_connect_to_vpp (app_name);
1746 if (rv)
1747 {
1748 clib_warning ("[%s] couldn't connect to VPP.", vcm->my_pid);
1749 return rv;
1750 }
1751
1752 if (VPPCOM_DEBUG > 0)
1753 clib_warning ("[%d] sending session enable", vcm->my_pid);
1754
1755 rv = vppcom_app_session_enable ();
1756 if (rv)
1757 {
1758 clib_warning ("[%d] vppcom_app_session_enable() failed!",
1759 vcm->my_pid);
1760 return rv;
1761 }
1762
1763 if (VPPCOM_DEBUG > 0)
1764 clib_warning ("[%d] sending app attach", vcm->my_pid);
1765
1766 rv = vppcom_app_attach ();
1767 if (rv)
1768 {
1769 clib_warning ("[%d] vppcom_app_attach() failed!", vcm->my_pid);
1770 return rv;
1771 }
1772 }
1773
1774 if (VPPCOM_DEBUG > 0)
1775 clib_warning ("[%d] app_name '%s', my_client_index %d (0x%x)",
1776 vcm->my_pid, app_name, vcm->my_client_index,
1777 vcm->my_client_index);
1778
1779 return VPPCOM_OK;
1780}
1781
1782void
1783vppcom_app_destroy (void)
1784{
1785 vppcom_main_t *vcm = &vppcom_main;
1786 int rv;
1787
1788 if (vcm->my_client_index == ~0)
1789 return;
1790
1791 if (VPPCOM_DEBUG > 0)
1792 clib_warning ("[%d] detaching from VPP, my_client_index %d (0x%x)",
1793 vcm->my_pid, vcm->my_client_index, vcm->my_client_index);
1794
1795 vppcom_app_detach ();
1796 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
1797 if (PREDICT_FALSE (rv))
1798 {
1799 if (VPPCOM_DEBUG > 0)
1800 clib_warning ("[%d] application detach timed out, rv = %s (%d)",
1801 vcm->my_pid, vppcom_retval_str (rv), rv);
1802 }
1803 vl_client_disconnect_from_vlib ();
1804 vcm->my_client_index = ~0;
1805 vcm->app_state = STATE_APP_START;
1806}
1807
1808int
1809vppcom_session_create (u32 vrf, u8 proto, u8 is_nonblocking)
1810{
1811 vppcom_main_t *vcm = &vppcom_main;
1812 session_t *session;
1813 u32 session_index;
1814
1815 clib_spinlock_lock (&vcm->sessions_lockp);
1816 pool_get (vcm->sessions, session);
1817 session_index = session - vcm->sessions;
1818
1819 session->vrf = vrf;
1820 session->proto = proto;
1821 session->state = STATE_START;
1822 session->is_nonblocking = is_nonblocking;
1823 clib_spinlock_unlock (&vcm->sessions_lockp);
1824
1825 if (VPPCOM_DEBUG > 0)
1826 clib_warning ("[%d] sid %d", vcm->my_pid, session_index);
1827
1828 return (int) session_index;
1829}
1830
1831int
1832vppcom_session_close (uint32_t session_index)
1833{
1834 vppcom_main_t *vcm = &vppcom_main;
1835 session_t *session = 0;
1836 int rv;
1837
1838 clib_spinlock_lock (&vcm->sessions_lockp);
1839 rv = vppcom_session_at_index (session_index, &session);
1840 if (PREDICT_FALSE (rv))
1841 {
1842 clib_spinlock_unlock (&vcm->sessions_lockp);
1843 if (VPPCOM_DEBUG > 0)
1844 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
1845 vcm->my_pid, session_index);
1846 return rv;
1847 }
1848 clib_spinlock_unlock (&vcm->sessions_lockp);
1849
1850 if (VPPCOM_DEBUG > 0)
1851 clib_warning ("[%d] sid %d", vcm->my_pid, session_index);
1852
1853 if (session->is_cut_thru)
1854 {
1855 if (session->is_server)
1856 rv = vppcom_session_unbind_cut_thru (session);
1857 }
1858 else
1859 {
1860 rv = (session->is_server) ?
1861 vppcom_session_unbind (session_index) :
1862 vppcom_session_disconnect (session_index);
1863 }
1864
1865 clib_spinlock_lock (&vcm->sessions_lockp);
1866 pool_put_index (vcm->sessions, session_index);
1867 clib_spinlock_unlock (&vcm->sessions_lockp);
1868 return rv;
1869}
1870
1871int
1872vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep)
1873{
1874 vppcom_main_t *vcm = &vppcom_main;
1875 session_t *session = 0;
1876 int rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001877 ip46_address_t *ip46;
Dave Wallace543852a2017-08-03 02:11:34 -04001878
1879 if (!ep || !ep->ip)
1880 return VPPCOM_EINVAL;
1881
1882 clib_spinlock_lock (&vcm->sessions_lockp);
1883 rv = vppcom_session_at_index (session_index, &session);
1884 if (PREDICT_FALSE (rv))
1885 {
1886 clib_spinlock_unlock (&vcm->sessions_lockp);
1887 if (VPPCOM_DEBUG > 0)
1888 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
1889 vcm->my_pid, session_index);
1890 return rv;
1891 }
1892
1893 if (VPPCOM_DEBUG > 0)
1894 clib_warning ("[%d] sid %d", vcm->my_pid, session_index);
1895
1896 session->vrf = ep->vrf;
1897 session->is_ip4 = ep->is_ip4;
Dave Wallace33e002b2017-09-06 01:20:02 -04001898 memset (session->ip, 0, sizeof (session->ip));
1899 ip46 = (ip46_address_t *) session->ip;
1900 *ip46 = to_ip46 (!ep->is_ip4, ep->ip);
Dave Wallace543852a2017-08-03 02:11:34 -04001901 session->port = ep->port;
1902
1903 clib_spinlock_unlock (&vcm->sessions_lockp);
1904 return VPPCOM_OK;
1905}
1906
1907int
Dave Wallace33e002b2017-09-06 01:20:02 -04001908vppcom_session_listen (uint32_t listen_session_index, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001909{
1910 vppcom_main_t *vcm = &vppcom_main;
Dave Wallace33e002b2017-09-06 01:20:02 -04001911 session_t *listen_session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001912 int rv;
1913
1914 clib_spinlock_lock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04001915 rv = vppcom_session_at_index (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001916 if (PREDICT_FALSE (rv))
1917 {
1918 clib_spinlock_unlock (&vcm->sessions_lockp);
1919 if (VPPCOM_DEBUG > 0)
1920 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
Dave Wallace33e002b2017-09-06 01:20:02 -04001921 vcm->my_pid, listen_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001922 return rv;
1923 }
1924
1925 if (VPPCOM_DEBUG > 0)
Dave Wallace33e002b2017-09-06 01:20:02 -04001926 clib_warning ("[%d] sid %d", vcm->my_pid, listen_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001927
1928 ASSERT (vcm->bind_session_index == ~0);
Dave Wallace33e002b2017-09-06 01:20:02 -04001929 vcm->bind_session_index = listen_session_index;
1930 vppcom_send_bind_sock (listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001931 clib_spinlock_unlock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04001932 rv =
1933 vppcom_wait_for_session_state_change (listen_session_index, STATE_LISTEN,
1934 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001935 if (PREDICT_FALSE (rv))
1936 {
1937 vcm->bind_session_index = ~0;
1938 if (VPPCOM_DEBUG > 0)
1939 clib_warning ("[%d] server listen timed out, rv = %d (%d)",
1940 vcm->my_pid, vppcom_retval_str (rv), rv);
1941 return rv;
1942 }
1943
1944 clib_spinlock_lock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04001945 rv = vppcom_session_at_index (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001946 if (PREDICT_FALSE (rv))
1947 {
1948 clib_spinlock_unlock (&vcm->sessions_lockp);
1949 if (VPPCOM_DEBUG > 0)
1950 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
Dave Wallace33e002b2017-09-06 01:20:02 -04001951 vcm->my_pid, listen_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001952 return rv;
1953 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001954 listen_session->is_listen = 1;
Dave Wallace543852a2017-08-03 02:11:34 -04001955 clib_spinlock_unlock (&vcm->sessions_lockp);
1956 clib_fifo_validate (vcm->client_session_index_fifo, q_len);
1957
1958 return VPPCOM_OK;
1959}
1960
1961int
1962vppcom_session_accept (uint32_t listen_session_index, vppcom_endpt_t * ep,
1963 double wait_for_time)
1964{
1965 vppcom_main_t *vcm = &vppcom_main;
Dave Wallace33e002b2017-09-06 01:20:02 -04001966 session_t *listen_session = 0;
1967 session_t *client_session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001968 u32 client_session_index;
1969 int rv;
1970 f64 wait_for;
1971
1972 clib_spinlock_lock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04001973 rv = vppcom_session_at_index (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001974 if (PREDICT_FALSE (rv))
1975 {
1976 clib_spinlock_unlock (&vcm->sessions_lockp);
1977 if (VPPCOM_DEBUG > 0)
1978 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
1979 vcm->my_pid, listen_session_index);
1980 return rv;
1981 }
1982
Dave Wallace33e002b2017-09-06 01:20:02 -04001983 if (listen_session->state != STATE_LISTEN)
Dave Wallace543852a2017-08-03 02:11:34 -04001984 {
1985 clib_spinlock_unlock (&vcm->sessions_lockp);
1986 if (VPPCOM_DEBUG > 0)
1987 clib_warning ("[%d] session not in listen state, state = %s",
Dave Wallace33e002b2017-09-06 01:20:02 -04001988 vcm->my_pid,
1989 vppcom_session_state_str (listen_session->state));
Dave Wallace543852a2017-08-03 02:11:34 -04001990 return VPPCOM_EBADFD;
1991 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001992 wait_for = listen_session->is_nonblocking ? 0 :
Dave Wallace543852a2017-08-03 02:11:34 -04001993 (wait_for_time < 0) ? vcm->cfg.accept_timeout : wait_for_time;
1994
1995 if (VPPCOM_DEBUG > 0)
Dave Wallace33e002b2017-09-06 01:20:02 -04001996 clib_warning ("[%d] sid %d: %s (%d)", vcm->my_pid,
Dave Wallace543852a2017-08-03 02:11:34 -04001997 listen_session_index,
Dave Wallace33e002b2017-09-06 01:20:02 -04001998 vppcom_session_state_str (listen_session->state),
1999 listen_session->state);
Dave Wallace543852a2017-08-03 02:11:34 -04002000 clib_spinlock_unlock (&vcm->sessions_lockp);
2001
2002 while (1)
2003 {
2004 rv = vppcom_wait_for_client_session_index (wait_for);
2005 if (rv)
2006 {
2007 if ((VPPCOM_DEBUG > 0))
2008 clib_warning ("[%d] sid %d, accept timed out, rv = %s (%d)",
2009 vcm->my_pid, listen_session_index,
2010 vppcom_retval_str (rv), rv);
2011 if ((wait_for == 0) || (wait_for_time > 0))
2012 return rv;
2013 }
2014 else
2015 break;
2016 }
2017
2018 clib_fifo_sub1 (vcm->client_session_index_fifo, client_session_index);
2019
Dave Wallace543852a2017-08-03 02:11:34 -04002020 clib_spinlock_lock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04002021 rv = vppcom_session_at_index (client_session_index, &client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04002022 ASSERT (rv == VPPCOM_OK);
Dave Wallace33e002b2017-09-06 01:20:02 -04002023 ASSERT (client_session->is_ip4 == listen_session->is_ip4);
Dave Wallace543852a2017-08-03 02:11:34 -04002024
2025 if (VPPCOM_DEBUG > 0)
2026 clib_warning ("[%d] Got a request: client sid %d", vcm->my_pid,
2027 client_session_index);
2028
Dave Wallace33e002b2017-09-06 01:20:02 -04002029 ep->vrf = client_session->vrf;
2030 ep->is_cut_thru = client_session->is_cut_thru;
2031 ep->is_ip4 = client_session->is_ip4;
2032 ep->port = client_session->port;
2033 if (client_session->is_ip4)
2034 clib_memcpy (ep->ip, client_session->ip, sizeof (ip4_address_t));
2035 else
2036 clib_memcpy (ep->ip, client_session->ip, sizeof (ip6_address_t));
Dave Wallace543852a2017-08-03 02:11:34 -04002037 clib_spinlock_unlock (&vcm->sessions_lockp);
2038 return (int) client_session_index;
2039}
2040
2041int
2042vppcom_session_connect (uint32_t session_index, vppcom_endpt_t * server_ep)
2043{
2044 vppcom_main_t *vcm = &vppcom_main;
2045 session_t *session = 0;
2046 int rv;
2047 ip46_address_t *ip46;
2048
2049 clib_spinlock_lock (&vcm->sessions_lockp);
2050 rv = vppcom_session_at_index (session_index, &session);
2051 if (PREDICT_FALSE (rv))
2052 {
2053 clib_spinlock_unlock (&vcm->sessions_lockp);
2054 if (VPPCOM_DEBUG > 0)
2055 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
2056 vcm->my_pid, session_index);
2057 return rv;
2058 }
2059
2060 if (session->state == STATE_CONNECT)
2061 {
2062 clib_spinlock_unlock (&vcm->sessions_lockp);
2063 if (VPPCOM_DEBUG > 0)
2064 clib_warning ("[%d] session, sid (%d) already connected!",
2065 vcm->my_pid, session_index);
2066 return VPPCOM_OK;
2067 }
2068
2069 session->vrf = server_ep->vrf;
2070 session->is_ip4 = server_ep->is_ip4;
Dave Wallace33e002b2017-09-06 01:20:02 -04002071 memset (session->ip, 0, sizeof (session->ip));
Dave Wallace543852a2017-08-03 02:11:34 -04002072 ip46 = (ip46_address_t *) session->ip;
2073 *ip46 = to_ip46 (!server_ep->is_ip4, server_ep->ip);
2074 session->port = server_ep->port;
2075
2076 if (VPPCOM_DEBUG > 0)
2077 {
2078 u8 *ip_str = format (0, "%U", format_ip46_address,
2079 &session->ip, session->is_ip4);
2080 clib_warning ("[%d] connect sid %d to %s server port %d",
2081 vcm->my_pid, session_index, ip_str,
2082 clib_net_to_host_u16 (session->port));
2083 vec_free (ip_str);
2084 }
2085
2086 vppcom_send_connect_sock (session, session_index);
2087 clib_spinlock_unlock (&vcm->sessions_lockp);
2088 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
2089 vcm->cfg.session_timeout);
2090 if (PREDICT_FALSE (rv))
2091 {
2092 if (VPPCOM_DEBUG > 0)
2093 clib_warning ("[%d] connect timed out, rv = %s (%d)",
2094 vcm->my_pid, vppcom_retval_str (rv), rv);
2095 return rv;
2096 }
2097 return VPPCOM_OK;
2098}
2099
2100int
2101vppcom_session_read (uint32_t session_index, void *buf, int n)
2102{
Dave Wallace543852a2017-08-03 02:11:34 -04002103 vppcom_main_t *vcm = &vppcom_main;
2104 session_t *session = 0;
2105 svm_fifo_t *rx_fifo;
2106 int n_read = 0;
2107 int rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04002108 int max_dequeue;
Dave Wallace543852a2017-08-03 02:11:34 -04002109 char *fifo_str;
2110
2111 ASSERT (buf);
2112
2113 clib_spinlock_lock (&vcm->sessions_lockp);
2114 rv = vppcom_session_at_index (session_index, &session);
2115 if (PREDICT_FALSE (rv))
2116 {
2117 clib_spinlock_unlock (&vcm->sessions_lockp);
2118 if (VPPCOM_DEBUG > 0)
2119 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
2120 vcm->my_pid, session_index);
2121 return rv;
2122 }
2123
Dave Wallace33e002b2017-09-06 01:20:02 -04002124 if (session->state == STATE_DISCONNECT)
Dave Wallace543852a2017-08-03 02:11:34 -04002125 {
Dave Wallace543852a2017-08-03 02:11:34 -04002126 clib_spinlock_unlock (&vcm->sessions_lockp);
Dave Wallace33e002b2017-09-06 01:20:02 -04002127 if (VPPCOM_DEBUG > 0)
2128 clib_warning ("[%d] sid (%d) has been closed by remote peer!",
2129 vcm->my_pid, session_index);
2130 return VPPCOM_ECONNRESET;
Dave Wallace543852a2017-08-03 02:11:34 -04002131 }
Dave Wallace543852a2017-08-03 02:11:34 -04002132
Dave Wallace33e002b2017-09-06 01:20:02 -04002133 rx_fifo = ((!session->is_cut_thru || session->is_server) ?
2134 session->server_rx_fifo : session->server_tx_fifo);
2135 fifo_str = ((!session->is_cut_thru || session->is_server) ?
2136 "server_rx_fifo" : "server_tx_fifo");
2137 clib_spinlock_unlock (&vcm->sessions_lockp);
Dave Wallace543852a2017-08-03 02:11:34 -04002138
Dave Wallace33e002b2017-09-06 01:20:02 -04002139 max_dequeue = (int) svm_fifo_max_dequeue (rx_fifo);
2140 n_read = svm_fifo_dequeue_nowait (rx_fifo, clib_min (n, max_dequeue), buf);
Dave Wallace543852a2017-08-03 02:11:34 -04002141
2142 if (VPPCOM_DEBUG > 2)
2143 clib_warning ("[%d] sid %d, read %d bytes from %s (%p)", vcm->my_pid,
2144 session_index, n_read, fifo_str, rx_fifo);
Dave Wallace33e002b2017-09-06 01:20:02 -04002145
2146 return (n_read <= 0) ? VPPCOM_EAGAIN : n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04002147}
2148
2149static inline int
2150vppcom_session_read_ready (session_t * session, u32 session_index)
2151{
Dave Wallace543852a2017-08-03 02:11:34 -04002152 vppcom_main_t *vcm = &vppcom_main;
2153 svm_fifo_t *rx_fifo;
Dave Wallace543852a2017-08-03 02:11:34 -04002154 int ready = 0;
2155
2156 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace33e002b2017-09-06 01:20:02 -04002157 if (session->state == STATE_DISCONNECT)
Dave Wallace543852a2017-08-03 02:11:34 -04002158 {
Dave Wallace33e002b2017-09-06 01:20:02 -04002159 if (VPPCOM_DEBUG > 0)
2160 clib_warning ("[%d] sid (%d) has been closed by remote peer!",
2161 vcm->my_pid, session_index);
2162 return VPPCOM_ECONNRESET;
Dave Wallace543852a2017-08-03 02:11:34 -04002163 }
Dave Wallace33e002b2017-09-06 01:20:02 -04002164
2165 if (session->is_listen)
Dave Wallace543852a2017-08-03 02:11:34 -04002166 ready = clib_fifo_elts (vcm->client_session_index_fifo);
2167 else
2168 {
Dave Wallace33e002b2017-09-06 01:20:02 -04002169 rx_fifo = ((!session->is_cut_thru || session->is_server) ?
2170 session->server_rx_fifo : session->server_tx_fifo);
Dave Wallace543852a2017-08-03 02:11:34 -04002171
Dave Wallace33e002b2017-09-06 01:20:02 -04002172 ready = svm_fifo_max_dequeue (rx_fifo);
Dave Wallace543852a2017-08-03 02:11:34 -04002173 }
2174
Dave Wallace33e002b2017-09-06 01:20:02 -04002175 if (VPPCOM_DEBUG > 3)
Dave Wallace543852a2017-08-03 02:11:34 -04002176 clib_warning ("[%d] sid %d, peek %s (%p), ready = %d", vcm->my_pid,
2177 session_index,
2178 session->is_server ? "server_rx_fifo" : "server_tx_fifo",
2179 rx_fifo, ready);
Dave Wallace543852a2017-08-03 02:11:34 -04002180 return ready;
2181}
2182
2183int
2184vppcom_session_write (uint32_t session_index, void *buf, int n)
2185{
2186 vppcom_main_t *vcm = &vppcom_main;
2187 session_t *session = 0;
2188 svm_fifo_t *tx_fifo;
2189 unix_shared_memory_queue_t *q;
2190 session_fifo_event_t evt;
2191 int rv;
2192 char *fifo_str;
2193 u8 is_nonblocking;
2194
2195 ASSERT (buf);
2196
2197 clib_spinlock_lock (&vcm->sessions_lockp);
2198 rv = vppcom_session_at_index (session_index, &session);
2199 if (PREDICT_FALSE (rv))
2200 {
2201 clib_spinlock_unlock (&vcm->sessions_lockp);
2202 if (VPPCOM_DEBUG > 0)
2203 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
2204 vcm->my_pid, session_index);
2205 return rv;
2206 }
2207
Dave Wallace33e002b2017-09-06 01:20:02 -04002208 if (session->state == STATE_DISCONNECT)
2209 {
2210 clib_spinlock_unlock (&vcm->sessions_lockp);
2211 if (VPPCOM_DEBUG > 0)
2212 clib_warning ("[%d] sid (%d) has been closed by remote peer!",
2213 vcm->my_pid, session_index);
2214 return VPPCOM_ECONNRESET;
2215 }
2216
Dave Wallace543852a2017-08-03 02:11:34 -04002217 tx_fifo = ((!session->is_cut_thru || session->is_server) ?
2218 session->server_tx_fifo : session->server_rx_fifo);
2219 fifo_str = ((!session->is_cut_thru || session->is_server) ?
2220 "server_tx_fifo" : "server_rx_fifo");
Dave Wallace33e002b2017-09-06 01:20:02 -04002221
Dave Wallace543852a2017-08-03 02:11:34 -04002222 is_nonblocking = session->is_nonblocking;
2223 clib_spinlock_unlock (&vcm->sessions_lockp);
2224
2225 do
2226 {
2227 rv = svm_fifo_enqueue_nowait (tx_fifo, n, buf);
2228 }
2229 while (!is_nonblocking && (rv <= 0));
2230
2231 /* If event wasn't set, add one */
Dave Wallace33e002b2017-09-06 01:20:02 -04002232 if (!session->is_cut_thru && (rv > 0) && svm_fifo_set_event (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04002233 {
2234 int rval;
2235
2236 /* Fabricate TX event, send to vpp */
2237 evt.fifo = tx_fifo;
2238 evt.event_type = FIFO_EVENT_APP_TX;
2239 evt.event_id = vcm->tx_event_id++;
2240
2241 clib_spinlock_lock (&vcm->sessions_lockp);
2242 rval = vppcom_session_at_index (session_index, &session);
2243 if (PREDICT_FALSE (rval))
2244 {
2245 clib_spinlock_unlock (&vcm->sessions_lockp);
2246 if (VPPCOM_DEBUG > 1)
2247 clib_warning ("[%d] invalid session, sid (%d) has been closed!",
2248 vcm->my_pid, session_index);
2249 return rval;
2250 }
Dave Wallace33e002b2017-09-06 01:20:02 -04002251 q = session->vpp_event_queue;
Dave Wallace543852a2017-08-03 02:11:34 -04002252 clib_spinlock_unlock (&vcm->sessions_lockp);
2253 ASSERT (q);
2254 unix_shared_memory_queue_add (q, (u8 *) & evt,
2255 0 /* do wait for mutex */ );
2256 }
2257
2258 if (VPPCOM_DEBUG > 2)
2259 clib_warning ("[%d] sid %d, wrote %d bytes to %s (%p)", vcm->my_pid,
2260 session_index, rv, fifo_str, tx_fifo);
2261
2262 return rv;
2263}
2264
2265static inline int
2266vppcom_session_write_ready (session_t * session, u32 session_index)
2267{
2268 vppcom_main_t *vcm = &vppcom_main;
2269 svm_fifo_t *tx_fifo;
Dave Wallace33e002b2017-09-06 01:20:02 -04002270 char *fifo_str;
Dave Wallace543852a2017-08-03 02:11:34 -04002271 int rv;
2272
2273 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace33e002b2017-09-06 01:20:02 -04002274 if (session->state == STATE_DISCONNECT)
2275 {
2276 if (VPPCOM_DEBUG > 0)
2277 clib_warning ("[%d] sid (%d) has been closed by remote peer!",
2278 vcm->my_pid, session_index);
2279 return VPPCOM_ECONNRESET;
2280 }
2281
Dave Wallace543852a2017-08-03 02:11:34 -04002282 tx_fifo = ((!session->is_cut_thru || session->is_server) ?
2283 session->server_tx_fifo : session->server_rx_fifo);
Dave Wallace33e002b2017-09-06 01:20:02 -04002284 fifo_str = ((!session->is_cut_thru || session->is_server) ?
2285 "server_tx_fifo" : "server_rx_fifo");
Dave Wallace543852a2017-08-03 02:11:34 -04002286
2287 rv = svm_fifo_max_enqueue (tx_fifo);
2288
Dave Wallace33e002b2017-09-06 01:20:02 -04002289 if (VPPCOM_DEBUG > 3)
Dave Wallace543852a2017-08-03 02:11:34 -04002290 clib_warning ("[%d] sid %d, peek %s (%p), ready = %d", vcm->my_pid,
Dave Wallace33e002b2017-09-06 01:20:02 -04002291 session_index, fifo_str, tx_fifo, rv);
Dave Wallace543852a2017-08-03 02:11:34 -04002292 return rv;
2293}
2294
2295int
2296vppcom_select (unsigned long n_bits, unsigned long *read_map,
2297 unsigned long *write_map, unsigned long *except_map,
2298 double time_to_wait)
2299{
2300 vppcom_main_t *vcm = &vppcom_main;
2301 u32 session_index;
2302 session_t *session = 0;
2303 int rv, bits_set = 0;
2304 f64 timeout = clib_time_now (&vcm->clib_time) + time_to_wait;
2305 u32 minbits = clib_max (n_bits, BITS (uword));
2306
2307 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
2308
2309 if (read_map)
2310 {
2311 clib_bitmap_validate (vcm->rd_bitmap, minbits);
2312 clib_memcpy (vcm->rd_bitmap, read_map, vec_len (vcm->rd_bitmap));
2313 memset (read_map, 0, vec_len (vcm->rd_bitmap));
2314 }
2315 if (write_map)
2316 {
2317 clib_bitmap_validate (vcm->wr_bitmap, minbits);
2318 clib_memcpy (vcm->wr_bitmap, write_map, vec_len (vcm->wr_bitmap));
2319 memset (write_map, 0, vec_len (vcm->wr_bitmap));
2320 }
2321 if (except_map)
2322 {
2323 clib_bitmap_validate (vcm->ex_bitmap, minbits);
2324 clib_memcpy (vcm->ex_bitmap, except_map, vec_len (vcm->ex_bitmap));
2325 memset (except_map, 0, vec_len (vcm->ex_bitmap));
2326 }
2327
2328 do
2329 {
2330 /* *INDENT-OFF* */
2331 clib_bitmap_foreach (session_index, vcm->rd_bitmap,
2332 ({
2333 clib_spinlock_lock (&vcm->sessions_lockp);
2334 rv = vppcom_session_at_index (session_index, &session);
2335 if (rv < 0)
2336 {
2337 clib_spinlock_unlock (&vcm->sessions_lockp);
2338 if (VPPCOM_DEBUG > 1)
2339 clib_warning ("[%d] session %d specified in "
2340 "read_map is closed.", vcm->my_pid,
2341 session_index);
2342 bits_set = VPPCOM_EBADFD;
2343 goto select_done;
2344 }
2345
2346 rv = vppcom_session_read_ready (session, session_index);
2347 clib_spinlock_unlock (&vcm->sessions_lockp);
2348 if (vcm->ex_bitmap &&
2349 clib_bitmap_get (vcm->ex_bitmap, session_index) && (rv < 0))
2350 {
2351 // TBD: clib_warning
2352 clib_bitmap_set_no_check (except_map, session_index, 1);
2353 bits_set++;
2354 }
2355 else if (rv > 0)
2356 {
2357 // TBD: clib_warning
2358 clib_bitmap_set_no_check (read_map, session_index, 1);
2359 bits_set++;
2360 }
2361 }));
2362
2363 clib_bitmap_foreach (session_index, vcm->wr_bitmap,
2364 ({
2365 clib_spinlock_lock (&vcm->sessions_lockp);
2366 rv = vppcom_session_at_index (session_index, &session);
2367 if (rv < 0)
2368 {
2369 clib_spinlock_unlock (&vcm->sessions_lockp);
2370 if (VPPCOM_DEBUG > 0)
2371 clib_warning ("[%d] session %d specified in "
2372 "write_map is closed.", vcm->my_pid,
2373 session_index);
2374 bits_set = VPPCOM_EBADFD;
2375 goto select_done;
2376 }
2377
2378 rv = vppcom_session_write_ready (session, session_index);
2379 clib_spinlock_unlock (&vcm->sessions_lockp);
2380 if (rv > 0)
2381 {
2382 // TBD: clib_warning
2383 clib_bitmap_set_no_check (write_map, session_index, 1);
2384 bits_set++;
2385 }
2386 }));
2387
2388 clib_bitmap_foreach (session_index, vcm->ex_bitmap,
2389 ({
2390 clib_spinlock_lock (&vcm->sessions_lockp);
2391 rv = vppcom_session_at_index (session_index, &session);
2392 if (rv < 0)
2393 {
2394 clib_spinlock_unlock (&vcm->sessions_lockp);
2395 if (VPPCOM_DEBUG > 1)
2396 clib_warning ("[%d] session %d specified in "
2397 "except_map is closed.", vcm->my_pid,
2398 session_index);
2399 bits_set = VPPCOM_EBADFD;
2400 goto select_done;
2401 }
2402
2403 rv = vppcom_session_read_ready (session, session_index);
2404 clib_spinlock_unlock (&vcm->sessions_lockp);
2405 if (rv < 0)
2406 {
2407 // TBD: clib_warning
2408 clib_bitmap_set_no_check (except_map, session_index, 1);
2409 bits_set++;
2410 }
2411 }));
2412 /* *INDENT-ON* */
2413 }
2414 while (clib_time_now (&vcm->clib_time) < timeout);
2415
2416select_done:
2417 return (bits_set);
2418}
2419
2420/*
2421 * fd.io coding-style-patch-verification: ON
2422 *
2423 * Local Variables:
2424 * eval: (c-set-style "gnu")
2425 * End:
2426 */