blob: 0d077caa7971f6b0b7f04fef4413136c172a0223 [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>
Dave Wallace543852a2017-08-03 02:11:34 -040018#include <svm/svm_fifo_segment.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040019#include <vcl/vppcom.h>
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -080020#include <vcl/vcl_event.h>
Florin Coras0d427d82018-06-27 03:24:07 -070021#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070022#include <vcl/vcl_private.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040023
Dave Wallace543852a2017-08-03 02:11:34 -040024static const char *
25vppcom_app_state_str (app_state_t state)
26{
27 char *st;
28
29 switch (state)
30 {
31 case STATE_APP_START:
32 st = "STATE_APP_START";
33 break;
34
35 case STATE_APP_CONN_VPP:
36 st = "STATE_APP_CONN_VPP";
37 break;
38
39 case STATE_APP_ENABLED:
40 st = "STATE_APP_ENABLED";
41 break;
42
43 case STATE_APP_ATTACHED:
44 st = "STATE_APP_ATTACHED";
45 break;
46
47 default:
48 st = "UNKNOWN_APP_STATE";
49 break;
50 }
51
52 return st;
53}
54
Florin Coras697faea2018-06-27 17:10:49 -070055const char *
Dave Wallace543852a2017-08-03 02:11:34 -040056vppcom_session_state_str (session_state_t state)
57{
58 char *st;
59
60 switch (state)
61 {
62 case STATE_START:
63 st = "STATE_START";
64 break;
65
66 case STATE_CONNECT:
67 st = "STATE_CONNECT";
68 break;
69
70 case STATE_LISTEN:
71 st = "STATE_LISTEN";
72 break;
73
74 case STATE_ACCEPT:
75 st = "STATE_ACCEPT";
76 break;
77
Dave Wallace4878cbe2017-11-21 03:45:09 -050078 case STATE_CLOSE_ON_EMPTY:
79 st = "STATE_CLOSE_ON_EMPTY";
80 break;
81
Dave Wallace543852a2017-08-03 02:11:34 -040082 case STATE_DISCONNECT:
83 st = "STATE_DISCONNECT";
84 break;
85
86 case STATE_FAILED:
87 st = "STATE_FAILED";
88 break;
89
90 default:
91 st = "UNKNOWN_STATE";
92 break;
93 }
94
95 return st;
96}
97
Dave Wallace543852a2017-08-03 02:11:34 -040098u8 *
99format_ip4_address (u8 * s, va_list * args)
100{
101 u8 *a = va_arg (*args, u8 *);
102 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
103}
104
105u8 *
106format_ip6_address (u8 * s, va_list * args)
107{
108 ip6_address_t *a = va_arg (*args, ip6_address_t *);
109 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
110
111 i_max_n_zero = ARRAY_LEN (a->as_u16);
112 max_n_zeros = 0;
113 i_first_zero = i_max_n_zero;
114 n_zeros = 0;
115 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
116 {
117 u32 is_zero = a->as_u16[i] == 0;
118 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
119 {
120 i_first_zero = i;
121 n_zeros = 0;
122 }
123 n_zeros += is_zero;
124 if ((!is_zero && n_zeros > max_n_zeros)
125 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
126 {
127 i_max_n_zero = i_first_zero;
128 max_n_zeros = n_zeros;
129 i_first_zero = ARRAY_LEN (a->as_u16);
130 n_zeros = 0;
131 }
132 }
133
134 last_double_colon = 0;
135 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
136 {
137 if (i == i_max_n_zero && max_n_zeros > 1)
138 {
139 s = format (s, "::");
140 i += max_n_zeros - 1;
141 last_double_colon = 1;
142 }
143 else
144 {
145 s = format (s, "%s%x",
146 (last_double_colon || i == 0) ? "" : ":",
147 clib_net_to_host_u16 (a->as_u16[i]));
148 last_double_colon = 0;
149 }
150 }
151
152 return s;
153}
154
155/* Format an IP46 address. */
156u8 *
157format_ip46_address (u8 * s, va_list * args)
158{
159 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
160 ip46_type_t type = va_arg (*args, ip46_type_t);
161 int is_ip4 = 1;
162
163 switch (type)
164 {
165 case IP46_TYPE_ANY:
166 is_ip4 = ip46_address_is_ip4 (ip46);
167 break;
168 case IP46_TYPE_IP4:
169 is_ip4 = 1;
170 break;
171 case IP46_TYPE_IP6:
172 is_ip4 = 0;
173 break;
174 }
175
176 return is_ip4 ?
177 format (s, "%U", format_ip4_address, &ip46->ip4) :
178 format (s, "%U", format_ip6_address, &ip46->ip6);
179}
180
Florin Coras697faea2018-06-27 17:10:49 -0700181/*
182 * VPPCOM Utility Functions
183 */
184
185static inline void
186vppcom_session_table_del_listener (u64 listener_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400187{
Florin Coras697faea2018-06-27 17:10:49 -0700188 listener_handle |= 1ULL << 63;
189 hash_unset (vcm->session_index_by_vpp_handles, listener_handle);
190}
191
192static inline int
193vppcom_wait_for_app_state_change (app_state_t app_state)
194{
195 f64 timeout = clib_time_now (&vcm->clib_time) + vcm->cfg.app_timeout;
196
197 while (clib_time_now (&vcm->clib_time) < timeout)
198 {
199 if (vcm->app_state == app_state)
200 return VPPCOM_OK;
201 }
202 VDBG (0, "VCL<%d>: timeout waiting for state %s (%d)", getpid (),
203 vppcom_app_state_str (app_state), app_state);
204 vcl_evt (VCL_EVT_SESSION_TIMEOUT, vcm, app_state);
205
206 return VPPCOM_ETIMEDOUT;
207}
208
209static inline int
210vppcom_wait_for_session_state_change (u32 session_index,
211 session_state_t state,
212 f64 wait_for_time)
213{
214 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
215 vcl_session_t *volatile session;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800216 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400217
Florin Coras697faea2018-06-27 17:10:49 -0700218 do
Dave Wallace543852a2017-08-03 02:11:34 -0400219 {
Florin Coras697faea2018-06-27 17:10:49 -0700220 VCL_SESSION_LOCK ();
221 rv = vppcom_session_at_index (session_index, &session);
222 if (PREDICT_FALSE (rv))
223 {
224 VCL_SESSION_UNLOCK ();
225 return rv;
226 }
227 if (session->session_state & state)
228 {
229 VCL_SESSION_UNLOCK ();
230 return VPPCOM_OK;
231 }
232 if (session->session_state & STATE_FAILED)
233 {
234 VCL_SESSION_UNLOCK ();
235 return VPPCOM_ECONNREFUSED;
236 }
237
Dave Wallace7e607a72018-06-18 18:41:32 -0400238 VCL_SESSION_UNLOCK ();
Florin Corasdcf55ce2017-11-16 15:32:50 -0800239 }
Florin Coras697faea2018-06-27 17:10:49 -0700240 while (clib_time_now (&vcm->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800241
Florin Coras697faea2018-06-27 17:10:49 -0700242 VDBG (0, "VCL<%d>: timeout waiting for state 0x%x (%s)", getpid (), state,
243 vppcom_session_state_str (state));
244 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400245
Florin Coras697faea2018-06-27 17:10:49 -0700246 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500247}
248
Florin Coras697faea2018-06-27 17:10:49 -0700249static int
250vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400251{
Florin Coras697faea2018-06-27 17:10:49 -0700252 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400253
Florin Coras697faea2018-06-27 17:10:49 -0700254 if (vcm->app_state != STATE_APP_ENABLED)
255 {
256 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
257 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
258 if (PREDICT_FALSE (rv))
259 {
260 VDBG (0, "VCL<%d>: application session enable timed out! "
261 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
262 return rv;
263 }
264 }
265 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400266}
267
Florin Coras697faea2018-06-27 17:10:49 -0700268static int
269vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400270{
Florin Coras697faea2018-06-27 17:10:49 -0700271 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400272
Florin Coras697faea2018-06-27 17:10:49 -0700273 vppcom_app_send_attach ();
274 rv = vppcom_wait_for_app_state_change (STATE_APP_ATTACHED);
275 if (PREDICT_FALSE (rv))
276 {
277 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
278 getpid (), rv, vppcom_retval_str (rv));
279 return rv;
280 }
Dave Wallace543852a2017-08-03 02:11:34 -0400281
Florin Coras697faea2018-06-27 17:10:49 -0700282 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400283}
284
285static int
Dave Wallace543852a2017-08-03 02:11:34 -0400286vppcom_session_unbind (u32 session_index)
287{
Florin Coras7e12d942018-06-27 14:32:43 -0700288 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400289 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500290 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400291
Dave Wallace7e607a72018-06-18 18:41:32 -0400292 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500293
294 vpp_handle = session->vpp_handle;
295 vppcom_session_table_del_listener (vpp_handle);
296 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700297 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500298
Dave Wallace7e607a72018-06-18 18:41:32 -0400299 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400300
Florin Coras0d427d82018-06-27 03:24:07 -0700301 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
302 " 0x%x (%s)", getpid (), vpp_handle, session_index, STATE_DISCONNECT,
303 vppcom_session_state_str (STATE_DISCONNECT));
304 vcl_evt (VCL_EVT_UNBIND, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500305 vppcom_send_unbind_sock (vpp_handle);
306
307done:
308 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400309}
310
Florin Coras697faea2018-06-27 17:10:49 -0700311static int
Dave Wallace543852a2017-08-03 02:11:34 -0400312vppcom_session_disconnect (u32 session_index)
313{
Dave Wallace543852a2017-08-03 02:11:34 -0400314 int rv;
Florin Coras7e12d942018-06-27 14:32:43 -0700315 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500316 u64 vpp_handle;
317 session_state_t state;
Dave Wallace543852a2017-08-03 02:11:34 -0400318
Dave Wallace7e607a72018-06-18 18:41:32 -0400319 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500320
321 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700322 state = session->session_state;
Dave Wallace7e607a72018-06-18 18:41:32 -0400323 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500324
Florin Coras0d427d82018-06-27 03:24:07 -0700325 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
326 vpp_handle, session_index, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400327
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800328 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400329 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500330 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500331 "Cannot disconnect a listen socket!",
332 getpid (), vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500333 rv = VPPCOM_EBADFD;
334 goto done;
335 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400336
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800337 /* The peer has already initiated the close,
338 * so send the disconnect session reply.
Dave Wallace4878cbe2017-11-21 03:45:09 -0500339 */
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800340 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500341 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800342 //XXX alagalah - Check and drain here?
343 vppcom_send_disconnect_session_reply (vpp_handle,
344 session_index, 0 /* rv */ );
Florin Coras0d427d82018-06-27 03:24:07 -0700345 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
346 "REPLY...", getpid (), vpp_handle, session_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400347 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500348
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800349 /* Otherwise, send a disconnect session msg...
Dave Wallace4878cbe2017-11-21 03:45:09 -0500350 */
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400351 else
Dave Wallace227867f2017-11-13 21:21:53 -0500352 {
Florin Coras0d427d82018-06-27 03:24:07 -0700353 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
354 getpid (), vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500355
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800356 vppcom_send_disconnect_session (vpp_handle, session_index);
Dave Wallace227867f2017-11-13 21:21:53 -0500357 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400358
Dave Wallace4878cbe2017-11-21 03:45:09 -0500359done:
360 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400361}
362
Dave Wallace543852a2017-08-03 02:11:34 -0400363/*
364 * VPPCOM Public API functions
365 */
366int
367vppcom_app_create (char *app_name)
368{
Dave Wallace543852a2017-08-03 02:11:34 -0400369 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
370 u8 *heap;
371 mheap_t *h;
372 int rv;
373
374 if (!vcm->init)
375 {
Dave Wallace543852a2017-08-03 02:11:34 -0400376 vcm->init = 1;
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800377 clib_spinlock_init (&vcm->session_fifo_lockp);
Dave Wallace2e005bb2017-11-07 01:21:39 -0500378 clib_fifo_validate (vcm->client_session_index_fifo,
379 vcm->cfg.listen_queue_size);
Florin Coras697faea2018-06-27 17:10:49 -0700380 clib_spinlock_init (&vcm->sessions_lockp);
Dave Wallaceb5a86ee2018-02-16 18:26:11 -0500381
Florin Coras697faea2018-06-27 17:10:49 -0700382 vppcom_cfg (&vcm->cfg);
Dave Wallace8af20542017-10-26 03:29:30 -0400383
Dave Wallace543852a2017-08-03 02:11:34 -0400384 vcm->main_cpu = os_get_thread_index ();
385 heap = clib_mem_get_per_cpu_heap ();
386 h = mheap_header (heap);
Dave Wallace543852a2017-08-03 02:11:34 -0400387 /* make the main heap thread-safe */
388 h->flags |= MHEAP_FLAG_THREAD_SAFE;
389
390 vcm->session_index_by_vpp_handles = hash_create (0, sizeof (uword));
391
392 clib_time_init (&vcm->clib_time);
393 vppcom_init_error_string_table ();
Florin Corasa332c462018-01-31 06:52:17 -0800394 svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
395 20 /* timeout in secs */ );
Dave Wallace543852a2017-08-03 02:11:34 -0400396 }
397
398 if (vcm->my_client_index == ~0)
399 {
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800400 /* API hookup and connect to VPP */
Dave Wallace048b1d62018-01-03 22:24:41 -0500401 vppcom_api_hookup ();
Florin Coras0d427d82018-06-27 03:24:07 -0700402 vcl_elog_init (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400403 vcm->app_state = STATE_APP_START;
404 rv = vppcom_connect_to_vpp (app_name);
405 if (rv)
406 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500407 clib_warning ("VCL<%d>: ERROR: couldn't connect to VPP!",
Dave Wallace2e005bb2017-11-07 01:21:39 -0500408 getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400409 return rv;
410 }
411
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800412 /* State event handling thread */
413
414 rv = vce_start_event_thread (&(vcm->event_thread), 20);
415
Florin Coras0d427d82018-06-27 03:24:07 -0700416 VDBG (0, "VCL<%d>: sending session enable", getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400417
Dave Wallace048b1d62018-01-03 22:24:41 -0500418 rv = vppcom_app_session_enable ();
Dave Wallace543852a2017-08-03 02:11:34 -0400419 if (rv)
420 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500421 clib_warning ("VCL<%d>: ERROR: vppcom_app_session_enable() "
422 "failed!", getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400423 return rv;
424 }
Dave Wallace543852a2017-08-03 02:11:34 -0400425
Florin Coras0d427d82018-06-27 03:24:07 -0700426 VDBG (0, "VCL<%d>: sending app attach", getpid ());
Dave Wallace048b1d62018-01-03 22:24:41 -0500427
428 rv = vppcom_app_attach ();
429 if (rv)
430 {
431 clib_warning ("VCL<%d>: ERROR: vppcom_app_attach() failed!",
432 getpid ());
433 return rv;
434 }
435
Florin Coras0d427d82018-06-27 03:24:07 -0700436 VDBG (0, "VCL<%d>: app_name '%s', my_client_index %d (0x%x)",
437 getpid (), app_name, vcm->my_client_index, vcm->my_client_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400438 }
Dave Wallace543852a2017-08-03 02:11:34 -0400439
440 return VPPCOM_OK;
441}
442
443void
444vppcom_app_destroy (void)
445{
Dave Wallace543852a2017-08-03 02:11:34 -0400446 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400447 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400448
449 if (vcm->my_client_index == ~0)
450 return;
451
Florin Coras0d427d82018-06-27 03:24:07 -0700452 VDBG (0, "VCL<%d>: detaching from VPP, my_client_index %d (0x%x)",
453 getpid (), vcm->my_client_index, vcm->my_client_index);
454 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800455
Florin Coras697faea2018-06-27 17:10:49 -0700456 vppcom_app_send_detach ();
Dave Wallacede910062018-03-20 09:22:13 -0400457 orig_app_timeout = vcm->cfg.app_timeout;
458 vcm->cfg.app_timeout = 2.0;
Dave Wallace543852a2017-08-03 02:11:34 -0400459 rv = vppcom_wait_for_app_state_change (STATE_APP_ENABLED);
Dave Wallacede910062018-03-20 09:22:13 -0400460 vcm->cfg.app_timeout = orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400461 if (PREDICT_FALSE (rv))
Florin Coras0d427d82018-06-27 03:24:07 -0700462 VDBG (0, "VCL<%d>: application detach timed out! returning %d (%s)",
463 getpid (), rv, vppcom_retval_str (rv));
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800464
Florin Coras0d427d82018-06-27 03:24:07 -0700465 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400466 vl_client_disconnect_from_vlib ();
467 vcm->my_client_index = ~0;
468 vcm->app_state = STATE_APP_START;
469}
470
471int
Dave Wallacec04cbf12018-02-07 18:14:02 -0500472vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -0400473{
Florin Coras7e12d942018-06-27 14:32:43 -0700474 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -0400475 u32 session_index;
476
Dave Wallace7e607a72018-06-18 18:41:32 -0400477 VCL_SESSION_LOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400478 pool_get (vcm->sessions, session);
Dave Wallacef7f809c2017-10-03 01:48:42 -0400479 memset (session, 0, sizeof (*session));
Dave Wallace543852a2017-08-03 02:11:34 -0400480 session_index = session - vcm->sessions;
481
Florin Coras7e12d942018-06-27 14:32:43 -0700482 session->session_type = proto;
483 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500484 session->vpp_handle = ~0;
Dave Wallace543852a2017-08-03 02:11:34 -0400485
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800486 if (is_nonblocking)
487 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
488 else
489 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -0400490
Florin Coras7e12d942018-06-27 14:32:43 -0700491 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
492 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800493
Dave Wallace7e607a72018-06-18 18:41:32 -0400494 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800495
Florin Coras0d427d82018-06-27 03:24:07 -0700496 VDBG (0, "VCL<%d>: sid %u", getpid (), session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800497
Dave Wallace543852a2017-08-03 02:11:34 -0400498 return (int) session_index;
499}
500
501int
502vppcom_session_close (uint32_t session_index)
503{
Florin Coras7e12d942018-06-27 14:32:43 -0700504 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400505 int rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400506 u8 is_vep;
507 u8 is_vep_session;
508 u32 next_sid;
509 u32 vep_idx;
Dave Wallaceee45d412017-11-24 21:44:06 -0500510 u64 vpp_handle;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500511 uword *p;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400512 session_state_t state;
Dave Wallace543852a2017-08-03 02:11:34 -0400513
Dave Wallace7e607a72018-06-18 18:41:32 -0400514 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400515 is_vep = session->is_vep;
516 is_vep_session = session->is_vep_session;
517 next_sid = session->vep.next_sid;
518 vep_idx = session->vep.vep_idx;
Florin Coras7e12d942018-06-27 14:32:43 -0700519 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -0500520 vpp_handle = session->vpp_handle;
Dave Wallace7e607a72018-06-18 18:41:32 -0400521 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400522
523 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500524 {
525 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500526 clib_warning ("VCL<%d>: vep_idx %u / sid %u: "
527 "closing epoll session...",
Dave Wallaceee45d412017-11-24 21:44:06 -0500528 getpid (), session_index, session_index);
529 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500530 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %d: "
531 "closing session...",
Dave Wallaceee45d412017-11-24 21:44:06 -0500532 getpid (), vpp_handle, session_index);
533 }
Dave Wallace543852a2017-08-03 02:11:34 -0400534
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400535 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -0400536 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400537 while (next_sid != ~0)
Dave Wallace19481612017-09-15 18:47:44 -0400538 {
Dave Wallacef7f809c2017-10-03 01:48:42 -0400539 rv = vppcom_epoll_ctl (session_index, EPOLL_CTL_DEL, next_sid, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700540 if (PREDICT_FALSE (rv < 0))
541 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
542 "vep_idx %u failed! rv %d (%s)",
543 getpid (), vpp_handle, next_sid, vep_idx,
544 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400545
Dave Wallace7e607a72018-06-18 18:41:32 -0400546 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400547 next_sid = session->vep.next_sid;
Dave Wallace7e607a72018-06-18 18:41:32 -0400548 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -0400549 }
550 }
551 else
552 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400553 if (is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400554 {
Dave Wallacef7f809c2017-10-03 01:48:42 -0400555 rv = vppcom_epoll_ctl (vep_idx, EPOLL_CTL_DEL, session_index, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700556 if (rv < 0)
557 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
558 "vep_idx %u failed! rv %d (%s)",
559 getpid (), vpp_handle, session_index,
560 vep_idx, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400561 }
562
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800563 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400564 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800565 rv = vppcom_session_unbind (session_index);
566 if (PREDICT_FALSE (rv < 0))
Florin Coras0d427d82018-06-27 03:24:07 -0700567 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: listener unbind "
568 "failed! rv %d (%s)",
569 getpid (), vpp_handle, session_index,
570 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400571 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500572
573 else if (state & (CLIENT_STATE_OPEN | SERVER_STATE_OPEN))
Dave Wallacef7f809c2017-10-03 01:48:42 -0400574 {
Dave Wallace4878cbe2017-11-21 03:45:09 -0500575 rv = vppcom_session_disconnect (session_index);
576 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -0500577 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500578 "session disconnect failed! rv %d (%s)",
579 getpid (), vpp_handle, session_index,
580 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400581 }
Dave Wallace19481612017-09-15 18:47:44 -0400582 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500583
Dave Wallace7e607a72018-06-18 18:41:32 -0400584 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallaceee45d412017-11-24 21:44:06 -0500585 vpp_handle = session->vpp_handle;
586 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500587 {
Dave Wallaceee45d412017-11-24 21:44:06 -0500588 p = hash_get (vcm->session_index_by_vpp_handles, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500589 if (p)
Dave Wallaceee45d412017-11-24 21:44:06 -0500590 hash_unset (vcm->session_index_by_vpp_handles, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500591 }
Dave Wallace543852a2017-08-03 02:11:34 -0400592 pool_put_index (vcm->sessions, session_index);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800593
Dave Wallace7e607a72018-06-18 18:41:32 -0400594 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500595
596 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500597 {
598 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500599 clib_warning ("VCL<%d>: vep_idx %u / sid %u: epoll session removed.",
Dave Wallaceee45d412017-11-24 21:44:06 -0500600 getpid (), session_index, session_index);
601 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500602 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: session removed.",
Dave Wallaceee45d412017-11-24 21:44:06 -0500603 getpid (), vpp_handle, session_index);
604 }
Dave Wallacef7f809c2017-10-03 01:48:42 -0400605done:
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800606
Florin Coras0d427d82018-06-27 03:24:07 -0700607 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800608
Dave Wallace543852a2017-08-03 02:11:34 -0400609 return rv;
610}
611
612int
613vppcom_session_bind (uint32_t session_index, vppcom_endpt_t * ep)
614{
Florin Coras7e12d942018-06-27 14:32:43 -0700615 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400616 int rv;
617
618 if (!ep || !ep->ip)
619 return VPPCOM_EINVAL;
620
Dave Wallace7e607a72018-06-18 18:41:32 -0400621 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace543852a2017-08-03 02:11:34 -0400622
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400623 if (session->is_vep)
624 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400625 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -0500626 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
627 "bind to an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500628 rv = VPPCOM_EBADFD;
629 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400630 }
631
Florin Coras7e12d942018-06-27 14:32:43 -0700632 session->transport.is_ip4 = ep->is_ip4;
633 session->transport.lcl_ip = to_ip46 (ep->is_ip4 ? IP46_TYPE_IP4 :
634 IP46_TYPE_IP6, ep->ip);
635 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -0700636
Florin Coras0d427d82018-06-27 03:24:07 -0700637 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
638 "proto %s", getpid (), session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700639 session->transport.is_ip4 ? "IPv4" : "IPv6",
640 format_ip46_address, &session->transport.lcl_ip,
641 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
642 clib_net_to_host_u16 (session->transport.lcl_port),
643 session->session_type ? "UDP" : "TCP");
Florin Coras0d427d82018-06-27 03:24:07 -0700644 vcl_evt (VCL_EVT_BIND, session);
Dave Wallace7e607a72018-06-18 18:41:32 -0400645 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500646done:
647 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400648}
649
650int
Dave Wallace33e002b2017-09-06 01:20:02 -0400651vppcom_session_listen (uint32_t listen_session_index, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -0400652{
Florin Coras7e12d942018-06-27 14:32:43 -0700653 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -0500654 u64 listen_vpp_handle;
655 int rv, retval;
Dave Wallace543852a2017-08-03 02:11:34 -0400656
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -0800657 if (q_len == 0 || q_len == ~0)
658 q_len = vcm->cfg.listen_queue_size;
659
Dave Wallace7e607a72018-06-18 18:41:32 -0400660 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Dave Wallace543852a2017-08-03 02:11:34 -0400661
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400662 if (listen_session->is_vep)
663 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400664 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -0500665 clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
Dave Wallace4878cbe2017-11-21 03:45:09 -0500666 "epoll session!", getpid (), listen_session_index);
667 rv = VPPCOM_EBADFD;
668 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400669 }
670
Dave Wallaceee45d412017-11-24 21:44:06 -0500671 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700672 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -0400673 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400674 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -0700675 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
676 getpid (), listen_vpp_handle, listen_session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500677 rv = VPPCOM_OK;
678 goto done;
Dave Wallacee695cb42017-11-02 22:04:42 -0400679 }
680
Florin Coras0d427d82018-06-27 03:24:07 -0700681 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
682 "request...", getpid (), listen_vpp_handle, listen_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -0400683
Dave Wallace4878cbe2017-11-21 03:45:09 -0500684 vppcom_send_bind_sock (listen_session, listen_session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -0400685 VCL_SESSION_UNLOCK ();
Dave Wallaceee45d412017-11-24 21:44:06 -0500686 retval =
Dave Wallace33e002b2017-09-06 01:20:02 -0400687 vppcom_wait_for_session_state_change (listen_session_index, STATE_LISTEN,
688 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -0400689
Dave Wallace7e607a72018-06-18 18:41:32 -0400690 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Dave Wallaceee45d412017-11-24 21:44:06 -0500691 if (PREDICT_FALSE (retval))
692 {
Florin Coras0d427d82018-06-27 03:24:07 -0700693 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
694 "returning %d (%s)", getpid (), listen_session->vpp_handle,
695 listen_session_index, retval, vppcom_retval_str (retval));
Dave Wallace7e607a72018-06-18 18:41:32 -0400696 VCL_SESSION_UNLOCK ();
Dave Wallaceee45d412017-11-24 21:44:06 -0500697 rv = retval;
698 goto done;
699 }
700
Dave Wallace7e607a72018-06-18 18:41:32 -0400701 VCL_ACCEPT_FIFO_LOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400702 clib_fifo_validate (vcm->client_session_index_fifo, q_len);
Dave Wallace7e607a72018-06-18 18:41:32 -0400703 VCL_ACCEPT_FIFO_UNLOCK ();
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800704
Dave Wallace7e607a72018-06-18 18:41:32 -0400705 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -0800706
707done:
708 return rv;
709}
710
711int
Florin Coras7e12d942018-06-27 14:32:43 -0700712validate_args_session_accept_ (vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800713{
714 u32 listen_session_index = listen_session - vcm->sessions;
715
716 /* Input validation - expects spinlock on sessions_lockp */
717 if (listen_session->is_vep)
718 {
719 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
720 "epoll session!", getpid (), listen_session_index);
721 return VPPCOM_EBADFD;
722 }
723
Florin Coras7e12d942018-06-27 14:32:43 -0700724 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800725 {
726 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
727 "not in listen state! state 0x%x (%s)", getpid (),
728 listen_session->vpp_handle, listen_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700729 listen_session->session_state,
730 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800731 return VPPCOM_EBADFD;
732 }
733 return VPPCOM_OK;
734}
735
736int
Dave Wallace543852a2017-08-03 02:11:34 -0400737vppcom_session_accept (uint32_t listen_session_index, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -0500738 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -0400739{
Florin Coras7e12d942018-06-27 14:32:43 -0700740 vcl_session_t *listen_session = 0;
741 vcl_session_t *client_session = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800742 u32 client_session_index = ~0;
Dave Wallace543852a2017-08-03 02:11:34 -0400743 int rv;
Dave Wallaceee45d412017-11-24 21:44:06 -0500744 u64 listen_vpp_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800745 vce_event_handler_reg_t *reg;
746 vce_event_t *ev;
747 vce_event_connect_request_t *result;
748 struct timespec ts;
749 struct timeval tv;
750 int millisecond_timeout = 1;
751 int hours_timeout = 20 * 60 * 60;
Dave Wallace543852a2017-08-03 02:11:34 -0400752
Dave Wallace7e607a72018-06-18 18:41:32 -0400753 VCL_SESSION_LOCK_AND_GET (listen_session_index, &listen_session);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800754 listen_vpp_handle = listen_session->vpp_handle; // For debugging
Dave Wallace543852a2017-08-03 02:11:34 -0400755
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800756 rv = validate_args_session_accept_ (listen_session);
757 if (rv)
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400758 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400759 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500760 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400761 }
762
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800763 /* Using an aggressive timer of 1ms and a generous timer of
764 * 20 hours, we can implement a blocking and non-blocking listener
765 * as both event and time driven */
766 gettimeofday (&tv, NULL);
767 ts.tv_nsec = (tv.tv_usec * 1000) + (1000 * millisecond_timeout);
768 ts.tv_sec = tv.tv_sec;
769
770 /* Predict that the Listener is blocking more often than not */
771 if (PREDICT_TRUE (!VCL_SESS_ATTR_TEST (listen_session->attr,
772 VCL_SESS_ATTR_NONBLOCK)))
773 ts.tv_sec += hours_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400774
Dave Wallace7e607a72018-06-18 18:41:32 -0400775 VCL_SESSION_UNLOCK ();
Dave Wallace543852a2017-08-03 02:11:34 -0400776
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800777 /* Register handler for connect_request event on listen_session_index */
778 vce_event_key_t evk;
779 evk.session_index = listen_session_index;
780 evk.eid = VCL_EVENT_CONNECT_REQ_ACCEPTED;
781 reg = vce_register_handler (&vcm->event_thread, &evk,
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -0800782 vce_connect_request_handler_fn, 0);
Dave Wallace7e607a72018-06-18 18:41:32 -0400783 VCL_EVENTS_LOCK ();
Keith Burns (alagalah)7cf80e02018-03-08 16:46:25 -0800784 ev = vce_get_event_from_index (&vcm->event_thread, reg->ev_idx);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800785 pthread_mutex_lock (&reg->handler_lock);
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800786 while (!ev)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800787 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400788 VCL_EVENTS_UNLOCK ();
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -0700789 rv = pthread_cond_timedwait (&reg->handler_cond,
790 &reg->handler_lock, &ts);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800791 if (rv == ETIMEDOUT)
792 {
793 rv = VPPCOM_EAGAIN;
794 goto cleanup;
795 }
Dave Wallace7e607a72018-06-18 18:41:32 -0400796 VCL_EVENTS_LOCK ();
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800797 ev = vce_get_event_from_index (&vcm->event_thread, reg->ev_idx);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800798 }
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -0700799 result = vce_get_event_data (ev, sizeof (*result));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800800 client_session_index = result->accepted_session_index;
Dave Wallace7e607a72018-06-18 18:41:32 -0400801 VCL_EVENTS_UNLOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800802
803 /* Remove from the FIFO used to service epoll */
Dave Wallace7e607a72018-06-18 18:41:32 -0400804 VCL_ACCEPT_FIFO_LOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800805 if (clib_fifo_elts (vcm->client_session_index_fifo))
806 {
807 u32 tmp_client_session_index;
808 clib_fifo_sub1 (vcm->client_session_index_fifo,
809 tmp_client_session_index);
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800810 /* It wasn't ours... put it back ... */
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800811 if (tmp_client_session_index != client_session_index)
812 clib_fifo_add1 (vcm->client_session_index_fifo,
813 tmp_client_session_index);
814 }
Dave Wallace7e607a72018-06-18 18:41:32 -0400815 VCL_ACCEPT_FIFO_UNLOCK ();
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800816
Dave Wallace7e607a72018-06-18 18:41:32 -0400817 VCL_SESSION_LOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800818
Dave Wallace33e002b2017-09-06 01:20:02 -0400819 rv = vppcom_session_at_index (client_session_index, &client_session);
Dave Wallaceee45d412017-11-24 21:44:06 -0500820 if (PREDICT_FALSE (rv))
821 {
822 rv = VPPCOM_ECONNABORTED;
Dave Wallace048b1d62018-01-03 22:24:41 -0500823 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: client sid %u "
Dave Wallaceee45d412017-11-24 21:44:06 -0500824 "lookup failed! returning %d (%s)", getpid (),
825 listen_vpp_handle, listen_session_index,
826 client_session_index, rv, vppcom_retval_str (rv));
Dave Wallacee5356442018-03-19 10:38:00 -0400827 goto cleanup;
Dave Wallaceee45d412017-11-24 21:44:06 -0500828 }
Dave Wallace543852a2017-08-03 02:11:34 -0400829
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800830 if (flags & O_NONBLOCK)
831 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
832 else
833 VCL_SESS_ATTR_CLR (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
834
Florin Coras0d427d82018-06-27 03:24:07 -0700835 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
836 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
837 getpid (), listen_vpp_handle, listen_session_index,
838 client_session->vpp_handle, client_session_index,
839 flags, VCL_SESS_ATTR_TEST (client_session->attr,
840 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -0400841
Dave Wallace048b1d62018-01-03 22:24:41 -0500842 if (ep)
843 {
Florin Coras7e12d942018-06-27 14:32:43 -0700844 ep->is_ip4 = client_session->transport.is_ip4;
845 ep->port = client_session->transport.rmt_port;
846 if (client_session->transport.is_ip4)
847 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip4,
Dave Wallace048b1d62018-01-03 22:24:41 -0500848 sizeof (ip4_address_t));
849 else
Florin Coras7e12d942018-06-27 14:32:43 -0700850 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip6,
Dave Wallace048b1d62018-01-03 22:24:41 -0500851 sizeof (ip6_address_t));
852 }
Dave Wallace60caa062017-11-10 17:07:13 -0500853
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800854 vppcom_send_accept_session_reply (client_session->vpp_handle,
855 client_session->client_context,
856 0 /* retval OK */ );
Dave Wallace60caa062017-11-10 17:07:13 -0500857
Florin Coras0d427d82018-06-27 03:24:07 -0700858 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx,"
859 " sid %u connection from peer %s address %U port %u to local %s address"
860 " %U port %u",
861 getpid (), listen_vpp_handle,
862 listen_session_index, client_session->vpp_handle,
863 client_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700864 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
865 format_ip46_address, &client_session->transport.rmt_ip,
866 client_session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -0700867 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -0700868 clib_net_to_host_u16 (client_session->transport.rmt_port),
869 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
870 format_ip46_address, &client_session->transport.lcl_ip,
871 client_session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -0700872 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -0700873 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -0700874 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
875 client_session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -0400876 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800877
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800878 rv = (int) client_session_index;
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -0700879 vce_clear_event (&vcm->event_thread, reg->ev_idx);
880 if (vcm->session_io_thread.io_sessions_lockp)
881 {
882 /* Throw this new accepted session index into the rx poll thread pool */
Dave Wallace7e607a72018-06-18 18:41:32 -0400883 VCL_IO_SESSIONS_LOCK ();
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -0700884 u32 *active_session_index;
885 pool_get (vcm->session_io_thread.active_session_indexes,
886 active_session_index);
887 *active_session_index = client_session_index;
Dave Wallace7e607a72018-06-18 18:41:32 -0400888 VCL_IO_SESSIONS_UNLOCK ();
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -0700889 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800890cleanup:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800891 vce_unregister_handler (&vcm->event_thread, reg);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800892 pthread_mutex_unlock (&reg->handler_lock);
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -0800893
Dave Wallace4878cbe2017-11-21 03:45:09 -0500894done:
895 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400896}
897
898int
899vppcom_session_connect (uint32_t session_index, vppcom_endpt_t * server_ep)
900{
Florin Coras7e12d942018-06-27 14:32:43 -0700901 vcl_session_t *session = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800902 u64 vpp_handle = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -0500903 int rv, retval = VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400904
Dave Wallace7e607a72018-06-18 18:41:32 -0400905 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500906
907 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -0400908 {
Dave Wallace7e607a72018-06-18 18:41:32 -0400909 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -0500910 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
911 "connect on an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500912 rv = VPPCOM_EBADFD;
913 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -0400914 }
915
Florin Coras7e12d942018-06-27 14:32:43 -0700916 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -0400917 {
Florin Coras0d427d82018-06-27 03:24:07 -0700918 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
919 "connected to %s %U port %d proto %s, state 0x%x (%s)",
920 getpid (), session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700921 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -0700922 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -0700923 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -0700924 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -0700925 clib_net_to_host_u16 (session->transport.rmt_port),
926 session->session_type ? "UDP" : "TCP", session->session_state,
927 vppcom_session_state_str (session->session_state));
Dave Wallace4878cbe2017-11-21 03:45:09 -0500928
Dave Wallace7e607a72018-06-18 18:41:32 -0400929 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500930 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -0400931 }
932
Florin Coras7e12d942018-06-27 14:32:43 -0700933 session->transport.is_ip4 = server_ep->is_ip4;
934 if (session->transport.is_ip4)
935 clib_memcpy (&session->transport.rmt_ip.ip4, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -0400936 sizeof (ip4_address_t));
937 else
Florin Coras7e12d942018-06-27 14:32:43 -0700938 clib_memcpy (&session->transport.rmt_ip.ip6, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -0400939 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -0700940 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -0400941
Florin Coras0d427d82018-06-27 03:24:07 -0700942 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
943 "port %d proto %s",
944 getpid (), session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -0700945 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -0700946 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -0700947 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -0700948 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -0700949 clib_net_to_host_u16 (session->transport.rmt_port),
950 session->session_type ? "UDP" : "TCP");
Dave Wallace543852a2017-08-03 02:11:34 -0400951
952 vppcom_send_connect_sock (session, session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -0400953 VCL_SESSION_UNLOCK ();
Dave Wallace4878cbe2017-11-21 03:45:09 -0500954
Dave Wallaceee45d412017-11-24 21:44:06 -0500955 retval =
956 vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
957 vcm->cfg.session_timeout);
958
Dave Wallace7e607a72018-06-18 18:41:32 -0400959 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallaceee45d412017-11-24 21:44:06 -0500960 vpp_handle = session->vpp_handle;
Dave Wallace7e607a72018-06-18 18:41:32 -0400961 VCL_SESSION_UNLOCK ();
Dave Wallace7876d392017-10-19 03:53:57 -0400962
Dave Wallace4878cbe2017-11-21 03:45:09 -0500963done:
Dave Wallaceee45d412017-11-24 21:44:06 -0500964 if (PREDICT_FALSE (retval))
965 {
966 rv = retval;
967 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800968 {
969 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -0700970 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
971 "failed! returning %d (%s)", getpid (), vpp_handle,
972 session_index, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800973 else
974 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
975 "returning %d (%s)", getpid (),
976 session_index, rv, vppcom_retval_str (rv));
977 }
Dave Wallaceee45d412017-11-24 21:44:06 -0500978 }
Florin Coras0d427d82018-06-27 03:24:07 -0700979 else
980 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
981 getpid (), vpp_handle, session_index);
Dave Wallaceee45d412017-11-24 21:44:06 -0500982
Dave Wallace4878cbe2017-11-21 03:45:09 -0500983 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400984}
985
Steven58f464e2017-10-25 12:33:12 -0700986static inline int
987vppcom_session_read_internal (uint32_t session_index, void *buf, int n,
988 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -0400989{
Florin Coras7e12d942018-06-27 14:32:43 -0700990 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400991 svm_fifo_t *rx_fifo;
992 int n_read = 0;
993 int rv;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800994 int is_nonblocking;
995
996 u64 vpp_handle;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400997 u32 poll_et;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500998 session_state_t state;
Dave Wallace543852a2017-08-03 02:11:34 -0400999
1000 ASSERT (buf);
1001
Dave Wallace7e607a72018-06-18 18:41:32 -04001002 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001003
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001004 is_nonblocking = VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK);
1005 rx_fifo = session->rx_fifo;
Florin Coras7e12d942018-06-27 14:32:43 -07001006 state = session->session_state;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001007 vpp_handle = session->vpp_handle;
1008
Dave Wallace4878cbe2017-11-21 03:45:09 -05001009 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001010 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001011 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05001012 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
1013 "read from an epoll session!", getpid (), session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001014 rv = VPPCOM_EBADFD;
1015 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001016 }
1017
Dave Wallace4878cbe2017-11-21 03:45:09 -05001018 if (PREDICT_FALSE (!(state & (SERVER_STATE_OPEN | CLIENT_STATE_OPEN))))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001019 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001020 VCL_SESSION_UNLOCK ();
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001021 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001022
Florin Coras0d427d82018-06-27 03:24:07 -07001023 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1024 "state 0x%x (%s), returning %d (%s)",
1025 getpid (), vpp_handle, session_index, state,
1026 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001027 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001028 }
1029
Dave Wallace7e607a72018-06-18 18:41:32 -04001030 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001031
1032 do
1033 {
Steven58f464e2017-10-25 12:33:12 -07001034 if (peek)
1035 n_read = svm_fifo_peek (rx_fifo, 0, n, buf);
1036 else
1037 n_read = svm_fifo_dequeue_nowait (rx_fifo, n, buf);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001038 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001039 while (!is_nonblocking && (n_read <= 0));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001040
Dave Wallace4878cbe2017-11-21 03:45:09 -05001041 if (n_read <= 0)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001042 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001043 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001044
1045 poll_et = (((EPOLLET | EPOLLIN) & session->vep.ev.events) ==
1046 (EPOLLET | EPOLLIN));
1047 if (poll_et)
1048 session->vep.et_mask |= EPOLLIN;
1049
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001050 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001051 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001052 rv = VPPCOM_ECONNRESET;
1053
Florin Coras0d427d82018-06-27 03:24:07 -07001054 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: Empty fifo with "
1055 "session state 0x%x (%s)! Setting state to 0x%x (%s), "
1056 "returning %d (%s)",
1057 getpid (), session->vpp_handle, session_index,
1058 state, vppcom_session_state_str (state),
1059 STATE_DISCONNECT,
1060 vppcom_session_state_str (STATE_DISCONNECT), rv,
1061 vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001062
Florin Coras7e12d942018-06-27 14:32:43 -07001063 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001064 }
1065 else
1066 rv = VPPCOM_EAGAIN;
1067
Dave Wallace7e607a72018-06-18 18:41:32 -04001068 VCL_SESSION_UNLOCK ();
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001069 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001070 else
1071 rv = n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001072
Dave Wallace4878cbe2017-11-21 03:45:09 -05001073 if (VPPCOM_DEBUG > 2)
1074 {
1075 if (rv > 0)
Dave Wallace048b1d62018-01-03 22:24:41 -05001076 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001077 "from (%p)", getpid (), vpp_handle,
1078 session_index, n_read, rx_fifo);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001079 else
Dave Wallace048b1d62018-01-03 22:24:41 -05001080 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: nothing read! "
Dave Wallaceee45d412017-11-24 21:44:06 -05001081 "returning %d (%s)", getpid (), vpp_handle,
1082 session_index, rv, vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001083 }
1084done:
1085 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001086}
1087
Steven58f464e2017-10-25 12:33:12 -07001088int
Dave Wallace048b1d62018-01-03 22:24:41 -05001089vppcom_session_read (uint32_t session_index, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001090{
1091 return (vppcom_session_read_internal (session_index, buf, n, 0));
1092}
1093
1094static int
1095vppcom_session_peek (uint32_t session_index, void *buf, int n)
1096{
1097 return (vppcom_session_read_internal (session_index, buf, n, 1));
1098}
1099
Dave Wallace543852a2017-08-03 02:11:34 -04001100static inline int
Florin Coras7e12d942018-06-27 14:32:43 -07001101vppcom_session_read_ready (vcl_session_t * session, u32 session_index)
Dave Wallace543852a2017-08-03 02:11:34 -04001102{
Dave Wallace543852a2017-08-03 02:11:34 -04001103 int ready = 0;
Dave Wallace60caa062017-11-10 17:07:13 -05001104 u32 poll_et;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001105 int rv;
Florin Coras7e12d942018-06-27 14:32:43 -07001106 session_state_t state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001107 u64 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001108
1109 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001110 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001111 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001112 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001113 "epoll session!", getpid (), session_index);
1114 rv = VPPCOM_EBADFD;
1115 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001116 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001117
Florin Coras7e12d942018-06-27 14:32:43 -07001118 if (session->session_state & STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001119 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001120 VCL_ACCEPT_FIFO_LOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001121 ready = clib_fifo_elts (vcm->client_session_index_fifo);
Dave Wallace7e607a72018-06-18 18:41:32 -04001122 VCL_ACCEPT_FIFO_UNLOCK ();
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001123 }
Dave Wallace543852a2017-08-03 02:11:34 -04001124 else
1125 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001126 if (!(state & (SERVER_STATE_OPEN | CLIENT_STATE_OPEN | STATE_LISTEN)))
1127 {
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001128 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET :
Dave Wallace4878cbe2017-11-21 03:45:09 -05001129 VPPCOM_ENOTCONN);
1130
Florin Coras0d427d82018-06-27 03:24:07 -07001131 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1132 " state 0x%x (%s), returning %d (%s)",
1133 getpid (), vpp_handle, session_index,
1134 state, vppcom_session_state_str (state),
1135 rv, vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001136 goto done;
1137 }
1138
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001139 ready = svm_fifo_max_dequeue (session->rx_fifo);
Dave Wallace543852a2017-08-03 02:11:34 -04001140 }
1141
Dave Wallace4878cbe2017-11-21 03:45:09 -05001142 if (ready == 0)
Dave Wallace60caa062017-11-10 17:07:13 -05001143 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001144 poll_et =
1145 ((EPOLLET | EPOLLIN) & session->vep.ev.events) == (EPOLLET | EPOLLIN);
1146 if (poll_et)
1147 session->vep.et_mask |= EPOLLIN;
Dave Wallace60caa062017-11-10 17:07:13 -05001148
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001149 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001150 {
1151 rv = VPPCOM_ECONNRESET;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001152
Florin Coras0d427d82018-06-27 03:24:07 -07001153 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: Empty fifo with "
1154 "session state 0x%x (%s)! Setting state to 0x%x (%s), "
1155 "returning %d (%s)",
1156 getpid (), session_index, vpp_handle,
1157 state, vppcom_session_state_str (state),
1158 STATE_DISCONNECT,
1159 vppcom_session_state_str (STATE_DISCONNECT), rv,
1160 vppcom_retval_str (rv));
Florin Coras7e12d942018-06-27 14:32:43 -07001161 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001162 goto done;
1163 }
1164 }
1165 rv = ready;
Dave Wallace16cb4082017-11-29 03:24:06 -05001166
Florin Coras3c2fed52018-07-04 04:15:05 -07001167 if (!svm_msg_q_is_empty (vcm->app_event_queue) &&
1168 !pthread_mutex_trylock (&vcm->app_event_queue->q->mutex))
Dave Wallace16cb4082017-11-29 03:24:06 -05001169 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001170 u32 i, n_to_dequeue = vcm->app_event_queue->q->cursize;
1171 svm_msg_q_msg_t msg;
Dave Wallace16cb4082017-11-29 03:24:06 -05001172
1173 for (i = 0; i < n_to_dequeue; i++)
Florin Coras3c2fed52018-07-04 04:15:05 -07001174 {
1175 svm_queue_sub_raw (vcm->app_event_queue->q, (u8 *) & msg);
1176 svm_msg_q_free_msg (vcm->app_event_queue, &msg);
1177 }
Dave Wallace16cb4082017-11-29 03:24:06 -05001178
Florin Coras3c2fed52018-07-04 04:15:05 -07001179 pthread_mutex_unlock (&vcm->app_event_queue->q->mutex);
Dave Wallace16cb4082017-11-29 03:24:06 -05001180 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001181done:
1182 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001183}
1184
1185int
Dave Wallace048b1d62018-01-03 22:24:41 -05001186vppcom_session_write (uint32_t session_index, void *buf, size_t n)
Dave Wallace543852a2017-08-03 02:11:34 -04001187{
Florin Coras7e12d942018-06-27 14:32:43 -07001188 vcl_session_t *session = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001189 svm_fifo_t *tx_fifo = 0;
Florin Coras3c2fed52018-07-04 04:15:05 -07001190 svm_msg_q_t *mq;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001191 session_state_t state;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001192 int rv, n_write, is_nonblocking;
1193 u32 poll_et;
Dave Wallaceee45d412017-11-24 21:44:06 -05001194 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001195
1196 ASSERT (buf);
1197
Dave Wallace7e607a72018-06-18 18:41:32 -04001198 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001199
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001200 tx_fifo = session->tx_fifo;
1201 is_nonblocking = VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK);
1202 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001203 state = session->session_state;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001204
Dave Wallace4878cbe2017-11-21 03:45:09 -05001205 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001206 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001207 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05001208 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001209 "cannot write to an epoll session!",
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001210 getpid (), vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001211
1212 rv = VPPCOM_EBADFD;
1213 goto done;
Dave Wallace543852a2017-08-03 02:11:34 -04001214 }
1215
Florin Coras7e12d942018-06-27 14:32:43 -07001216 if (!(session->session_state & (SERVER_STATE_OPEN | CLIENT_STATE_OPEN)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001217 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001218 rv =
Florin Coras7e12d942018-06-27 14:32:43 -07001219 ((session->session_state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001220 VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001221
Dave Wallace7e607a72018-06-18 18:41:32 -04001222 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -07001223 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
1224 "state 0x%x (%s)",
1225 getpid (), vpp_handle, session_index,
1226 state, vppcom_session_state_str (state));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001227 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001228 }
1229
Dave Wallace7e607a72018-06-18 18:41:32 -04001230 VCL_SESSION_UNLOCK ();
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001231
Dave Wallace543852a2017-08-03 02:11:34 -04001232 do
1233 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001234 n_write = svm_fifo_enqueue_nowait (tx_fifo, n, (void *) buf);
Dave Wallace543852a2017-08-03 02:11:34 -04001235 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001236 while (!is_nonblocking && (n_write <= 0));
Dave Wallace543852a2017-08-03 02:11:34 -04001237
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001238 /* If event wasn't set, add one
1239 *
1240 * To reduce context switching, can check if an
1241 * event is already there for this event_key, but for now
1242 * this will suffice. */
1243
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001244 if ((n_write > 0) && svm_fifo_set_event (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001245 {
Florin Coras3c2fed52018-07-04 04:15:05 -07001246 /* Send TX event to vpp */
Dave Wallace7e607a72018-06-18 18:41:32 -04001247 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Florin Coras3c2fed52018-07-04 04:15:05 -07001248 mq = session->vpp_evt_q;
1249 ASSERT (mq);
1250 app_send_io_evt_to_vpp (mq, tx_fifo, FIFO_EVENT_APP_TX, SVM_Q_WAIT);
Dave Wallace7e607a72018-06-18 18:41:32 -04001251 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -07001252 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: added FIFO_EVENT_APP_TX "
1253 "to vpp_event_q %p, n_write %d", getpid (),
Florin Coras3c2fed52018-07-04 04:15:05 -07001254 vpp_handle, session_index, mq, n_write);
Dave Wallace543852a2017-08-03 02:11:34 -04001255 }
1256
Dave Wallace4878cbe2017-11-21 03:45:09 -05001257 if (n_write <= 0)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001258 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001259 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001260
1261 poll_et = (((EPOLLET | EPOLLOUT) & session->vep.ev.events) ==
1262 (EPOLLET | EPOLLOUT));
1263 if (poll_et)
1264 session->vep.et_mask |= EPOLLOUT;
1265
Florin Coras7e12d942018-06-27 14:32:43 -07001266 if (session->session_state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001267 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001268 rv = VPPCOM_ECONNRESET;
1269
Florin Coras0d427d82018-06-27 03:24:07 -07001270 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: Empty fifo with "
1271 "session state 0x%x (%s)! Setting state to 0x%x (%s), "
1272 "returning %d (%s)",
1273 getpid (), session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001274 session->session_state,
1275 vppcom_session_state_str (session->session_state),
Florin Coras0d427d82018-06-27 03:24:07 -07001276 STATE_DISCONNECT,
1277 vppcom_session_state_str (STATE_DISCONNECT), rv,
1278 vppcom_retval_str (rv));
Dave Wallace4878cbe2017-11-21 03:45:09 -05001279
Florin Coras7e12d942018-06-27 14:32:43 -07001280 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001281 }
1282 else
1283 rv = VPPCOM_EAGAIN;
1284
Dave Wallace7e607a72018-06-18 18:41:32 -04001285 VCL_SESSION_UNLOCK ();
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001286 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001287 else
1288 rv = n_write;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001289
Dave Wallace543852a2017-08-03 02:11:34 -04001290 if (VPPCOM_DEBUG > 2)
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001291 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001292 if (n_write <= 0)
Dave Wallace048b1d62018-01-03 22:24:41 -05001293 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001294 "FIFO-FULL (%p)", getpid (), vpp_handle,
1295 session_index, tx_fifo);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001296 else
Dave Wallace048b1d62018-01-03 22:24:41 -05001297 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001298 "wrote %d bytes tx-fifo: (%p)", getpid (),
1299 vpp_handle, session_index, n_write, tx_fifo);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001300 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001301done:
1302 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001303}
1304
1305static inline int
Florin Coras7e12d942018-06-27 14:32:43 -07001306vppcom_session_write_ready (vcl_session_t * session, u32 session_index)
Dave Wallace543852a2017-08-03 02:11:34 -04001307{
Dave Wallacef7f809c2017-10-03 01:48:42 -04001308 int ready;
Dave Wallace60caa062017-11-10 17:07:13 -05001309 u32 poll_et;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001310 int rv;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001311
1312 ASSERT (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001313
1314 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001315 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001316 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001317 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001318 "cannot write to an epoll session!",
1319 getpid (), session->vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001320 rv = VPPCOM_EBADFD;
1321 goto done;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001322 }
1323
Florin Coras7e12d942018-06-27 14:32:43 -07001324 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001325 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001326 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001327 "cannot write to a listen session!",
1328 getpid (), session->vpp_handle, session_index);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001329 rv = VPPCOM_EBADFD;
1330 goto done;
1331 }
1332
Florin Coras7e12d942018-06-27 14:32:43 -07001333 if (!(session->session_state & (SERVER_STATE_OPEN | CLIENT_STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001334 {
Florin Coras7e12d942018-06-27 14:32:43 -07001335 session_state_t state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001336
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001337 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001338
Dave Wallace048b1d62018-01-03 22:24:41 -05001339 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001340 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001341 "returning %d (%s)", getpid (), session->vpp_handle,
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001342 session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001343 state, vppcom_session_state_str (state),
1344 rv, vppcom_retval_str (rv));
1345 goto done;
Dave Wallace33e002b2017-09-06 01:20:02 -04001346 }
1347
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001348 ready = svm_fifo_max_enqueue (session->tx_fifo);
Dave Wallace543852a2017-08-03 02:11:34 -04001349
Florin Coras0d427d82018-06-27 03:24:07 -07001350 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
1351 getpid (), session->vpp_handle, session_index, session->tx_fifo,
1352 ready);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001353
Dave Wallace4878cbe2017-11-21 03:45:09 -05001354 if (ready == 0)
1355 {
1356 poll_et = (((EPOLLET | EPOLLOUT) & session->vep.ev.events) ==
1357 (EPOLLET | EPOLLOUT));
1358 if (poll_et)
1359 session->vep.et_mask |= EPOLLOUT;
1360
Florin Coras7e12d942018-06-27 14:32:43 -07001361 if (session->session_state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001362 {
1363 rv = VPPCOM_ECONNRESET;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001364
Florin Coras0d427d82018-06-27 03:24:07 -07001365 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: Empty fifo with "
1366 "session state 0x%x (%s)! Setting state to 0x%x (%s), "
1367 "returning %d (%s)", getpid (),
1368 session->vpp_handle, session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001369 session->session_state,
1370 vppcom_session_state_str (session->session_state),
Florin Coras0d427d82018-06-27 03:24:07 -07001371 STATE_DISCONNECT,
1372 vppcom_session_state_str (STATE_DISCONNECT), rv,
1373 vppcom_retval_str (rv));
Florin Coras7e12d942018-06-27 14:32:43 -07001374 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001375 goto done;
1376 }
1377 }
1378 rv = ready;
1379done:
1380 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001381}
1382
1383int
1384vppcom_select (unsigned long n_bits, unsigned long *read_map,
1385 unsigned long *write_map, unsigned long *except_map,
1386 double time_to_wait)
1387{
Dave Wallace543852a2017-08-03 02:11:34 -04001388 u32 session_index;
Florin Coras7e12d942018-06-27 14:32:43 -07001389 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001390 int rv, bits_set = 0;
1391 f64 timeout = clib_time_now (&vcm->clib_time) + time_to_wait;
1392 u32 minbits = clib_max (n_bits, BITS (uword));
1393
1394 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1395
Dave Wallace7876d392017-10-19 03:53:57 -04001396 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001397 {
1398 clib_bitmap_validate (vcm->rd_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001399 clib_memcpy (vcm->rd_bitmap, read_map,
1400 vec_len (vcm->rd_bitmap) * sizeof (clib_bitmap_t));
1401 memset (read_map, 0, vec_len (vcm->rd_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001402 }
Dave Wallace7876d392017-10-19 03:53:57 -04001403 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001404 {
1405 clib_bitmap_validate (vcm->wr_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001406 clib_memcpy (vcm->wr_bitmap, write_map,
1407 vec_len (vcm->wr_bitmap) * sizeof (clib_bitmap_t));
1408 memset (write_map, 0,
1409 vec_len (vcm->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001410 }
Dave Wallace7876d392017-10-19 03:53:57 -04001411 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001412 {
1413 clib_bitmap_validate (vcm->ex_bitmap, minbits);
Dave Wallace048b1d62018-01-03 22:24:41 -05001414 clib_memcpy (vcm->ex_bitmap, except_map,
1415 vec_len (vcm->ex_bitmap) * sizeof (clib_bitmap_t));
1416 memset (except_map, 0,
1417 vec_len (vcm->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001418 }
1419
1420 do
1421 {
1422 /* *INDENT-OFF* */
Dave Wallacee22aa742017-10-20 12:30:38 -04001423 if (n_bits)
1424 {
1425 if (read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001426 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001427 clib_bitmap_foreach (session_index, vcm->rd_bitmap,
1428 ({
Dave Wallace7e607a72018-06-18 18:41:32 -04001429 VCL_SESSION_LOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001430 rv = vppcom_session_at_index (session_index, &session);
1431 if (rv < 0)
1432 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001433 VCL_SESSION_UNLOCK();
Florin Coras0d427d82018-06-27 03:24:07 -07001434 VDBG (1, "VCL<%d>: session %d specified in read_map is"
1435 " closed.", getpid (),
Dave Wallacee22aa742017-10-20 12:30:38 -04001436 session_index);
1437 bits_set = VPPCOM_EBADFD;
1438 goto select_done;
1439 }
Florin Coras7e12d942018-06-27 14:32:43 -07001440 if (session->session_state & STATE_LISTEN)
Dave Wallace8d73e852018-03-08 16:39:28 -05001441 {
1442 vce_event_handler_reg_t *reg = 0;
1443 vce_event_key_t evk;
Dave Wallacee22aa742017-10-20 12:30:38 -04001444
Dave Wallace8d73e852018-03-08 16:39:28 -05001445 /* Check if handler already registered for this
1446 * event.
1447 * If not, register handler for connect_request event
1448 * on listen_session_index
1449 */
1450 evk.session_index = session_index;
1451 evk.eid = VCL_EVENT_CONNECT_REQ_ACCEPTED;
1452 reg = vce_get_event_handler (&vcm->event_thread, &evk);
1453 if (!reg)
1454 reg = vce_register_handler (&vcm->event_thread, &evk,
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001455 vce_poll_wait_connect_request_handler_fn,
1456 0 /* No callback args */);
Dave Wallace8d73e852018-03-08 16:39:28 -05001457 rv = vppcom_session_read_ready (session, session_index);
1458 if (rv > 0)
1459 {
1460 vce_unregister_handler (&vcm->event_thread, reg);
1461 }
1462 }
1463 else
1464 rv = vppcom_session_read_ready (session, session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001465 VCL_SESSION_UNLOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001466 if (except_map && vcm->ex_bitmap &&
1467 clib_bitmap_get (vcm->ex_bitmap, session_index) &&
1468 (rv < 0))
1469 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001470 clib_bitmap_set_no_check (except_map, session_index, 1);
1471 bits_set++;
1472 }
1473 else if (rv > 0)
1474 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001475 clib_bitmap_set_no_check (read_map, session_index, 1);
1476 bits_set++;
1477 }
1478 }));
Dave Wallace543852a2017-08-03 02:11:34 -04001479 }
1480
Dave Wallacee22aa742017-10-20 12:30:38 -04001481 if (write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001482 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001483 clib_bitmap_foreach (session_index, vcm->wr_bitmap,
1484 ({
Dave Wallace7e607a72018-06-18 18:41:32 -04001485 VCL_SESSION_LOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001486 rv = vppcom_session_at_index (session_index, &session);
1487 if (rv < 0)
1488 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001489 VCL_SESSION_UNLOCK();
Florin Coras0d427d82018-06-27 03:24:07 -07001490 VDBG (0, "VCL<%d>: session %d specified in "
Dave Wallace2e005bb2017-11-07 01:21:39 -05001491 "write_map is closed.", getpid (),
Dave Wallacee22aa742017-10-20 12:30:38 -04001492 session_index);
1493 bits_set = VPPCOM_EBADFD;
1494 goto select_done;
1495 }
Dave Wallace543852a2017-08-03 02:11:34 -04001496
Dave Wallacee22aa742017-10-20 12:30:38 -04001497 rv = vppcom_session_write_ready (session, session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001498 VCL_SESSION_UNLOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001499 if (write_map && (rv > 0))
1500 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001501 clib_bitmap_set_no_check (write_map, session_index, 1);
1502 bits_set++;
1503 }
1504 }));
Dave Wallace543852a2017-08-03 02:11:34 -04001505 }
1506
Dave Wallacee22aa742017-10-20 12:30:38 -04001507 if (except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001508 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001509 clib_bitmap_foreach (session_index, vcm->ex_bitmap,
1510 ({
Dave Wallace7e607a72018-06-18 18:41:32 -04001511 VCL_SESSION_LOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001512 rv = vppcom_session_at_index (session_index, &session);
1513 if (rv < 0)
1514 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001515 VCL_SESSION_UNLOCK();
Florin Coras0d427d82018-06-27 03:24:07 -07001516 VDBG (1, "VCL<%d>: session %d specified in except_map "
1517 "is closed.", getpid (),
Dave Wallacee22aa742017-10-20 12:30:38 -04001518 session_index);
1519 bits_set = VPPCOM_EBADFD;
1520 goto select_done;
1521 }
Dave Wallace543852a2017-08-03 02:11:34 -04001522
Dave Wallacee22aa742017-10-20 12:30:38 -04001523 rv = vppcom_session_read_ready (session, session_index);
Dave Wallace7e607a72018-06-18 18:41:32 -04001524 VCL_SESSION_UNLOCK();
Dave Wallacee22aa742017-10-20 12:30:38 -04001525 if (rv < 0)
1526 {
Dave Wallacee22aa742017-10-20 12:30:38 -04001527 clib_bitmap_set_no_check (except_map, session_index, 1);
1528 bits_set++;
1529 }
1530 }));
Dave Wallace543852a2017-08-03 02:11:34 -04001531 }
Dave Wallacee22aa742017-10-20 12:30:38 -04001532 }
Dave Wallace543852a2017-08-03 02:11:34 -04001533 /* *INDENT-ON* */
1534 }
Dave Wallace048b1d62018-01-03 22:24:41 -05001535 while ((time_to_wait == -1) || (clib_time_now (&vcm->clib_time) < timeout));
Dave Wallace543852a2017-08-03 02:11:34 -04001536
1537select_done:
1538 return (bits_set);
1539}
1540
Dave Wallacef7f809c2017-10-03 01:48:42 -04001541static inline void
1542vep_verify_epoll_chain (u32 vep_idx)
1543{
Florin Coras7e12d942018-06-27 14:32:43 -07001544 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001545 vppcom_epoll_t *vep;
1546 int rv;
Dave Wallace498b3a52017-11-09 13:00:34 -05001547 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001548
Dave Wallace498b3a52017-11-09 13:00:34 -05001549 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001550 return;
1551
1552 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
1553 rv = vppcom_session_at_index (vep_idx, &session);
1554 if (PREDICT_FALSE (rv))
1555 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001556 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
1557 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001558 goto done;
1559 }
1560 if (PREDICT_FALSE (!session->is_vep))
1561 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001562 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
1563 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001564 goto done;
1565 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001566 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05001567 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05001568 "{\n"
1569 " is_vep = %u\n"
1570 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05001571 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05001572 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05001573 "}\n", getpid (), vep_idx,
1574 session->is_vep, session->is_vep_session,
1575 vep->next_sid, vep->next_sid,
Dave Wallace498b3a52017-11-09 13:00:34 -05001576 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001577
1578 for (sid = vep->next_sid; sid != ~0; sid = vep->next_sid)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001579 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001580 rv = vppcom_session_at_index (sid, &session);
1581 if (PREDICT_FALSE (rv))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001582 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001583 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001584 goto done;
1585 }
1586 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05001587 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
1588 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001589 else if (PREDICT_FALSE (!session->is_vep_session))
1590 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001591 clib_warning ("VCL<%d>: ERROR: session (%u) "
1592 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001593 goto done;
1594 }
1595 vep = &session->vep;
1596 if (PREDICT_FALSE (vep->vep_idx != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05001597 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001598 "vep_idx (%u)!", getpid (),
1599 sid, session->vep.vep_idx, vep_idx);
1600 if (session->is_vep_session)
1601 {
1602 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
1603 "{\n"
1604 " next_sid = 0x%x (%u)\n"
1605 " prev_sid = 0x%x (%u)\n"
1606 " vep_idx = 0x%x (%u)\n"
1607 " ev.events = 0x%x\n"
1608 " ev.data.u64 = 0x%llx\n"
1609 " et_mask = 0x%x\n"
1610 "}\n",
1611 vep_idx, sid, sid,
1612 vep->next_sid, vep->next_sid,
1613 vep->prev_sid, vep->prev_sid,
1614 vep->vep_idx, vep->vep_idx,
1615 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001616 }
1617 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04001618
1619done:
Dave Wallace048b1d62018-01-03 22:24:41 -05001620 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
1621 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001622}
1623
1624int
1625vppcom_epoll_create (void)
1626{
Florin Coras7e12d942018-06-27 14:32:43 -07001627 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001628 u32 vep_idx;
1629
Dave Wallace7e607a72018-06-18 18:41:32 -04001630 VCL_SESSION_LOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001631 pool_get (vcm->sessions, vep_session);
1632 memset (vep_session, 0, sizeof (*vep_session));
1633 vep_idx = vep_session - vcm->sessions;
1634
1635 vep_session->is_vep = 1;
1636 vep_session->vep.vep_idx = ~0;
1637 vep_session->vep.next_sid = ~0;
1638 vep_session->vep.prev_sid = ~0;
1639 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001640 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)12756512018-03-06 05:55:27 -08001641 vep_session->poll_reg = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001642
Florin Coras0d427d82018-06-27 03:24:07 -07001643 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_idx);
Dave Wallace7e607a72018-06-18 18:41:32 -04001644 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001645
Florin Coras0d427d82018-06-27 03:24:07 -07001646 VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
1647 getpid (), vep_idx, vep_idx);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001648
Dave Wallacef7f809c2017-10-03 01:48:42 -04001649 return (vep_idx);
1650}
1651
1652int
1653vppcom_epoll_ctl (uint32_t vep_idx, int op, uint32_t session_index,
1654 struct epoll_event *event)
1655{
Florin Coras7e12d942018-06-27 14:32:43 -07001656 vcl_session_t *vep_session;
1657 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001658 int rv;
1659
1660 if (vep_idx == session_index)
1661 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001662 clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05001663 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001664 return VPPCOM_EINVAL;
1665 }
1666
Dave Wallace7e607a72018-06-18 18:41:32 -04001667 VCL_SESSION_LOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001668 rv = vppcom_session_at_index (vep_idx, &vep_session);
1669 if (PREDICT_FALSE (rv))
1670 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001671 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001672 goto done;
1673 }
1674 if (PREDICT_FALSE (!vep_session->is_vep))
1675 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001676 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05001677 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001678 rv = VPPCOM_EINVAL;
1679 goto done;
1680 }
1681
1682 ASSERT (vep_session->vep.vep_idx == ~0);
1683 ASSERT (vep_session->vep.prev_sid == ~0);
1684
1685 rv = vppcom_session_at_index (session_index, &session);
1686 if (PREDICT_FALSE (rv))
1687 {
Florin Coras0d427d82018-06-27 03:24:07 -07001688 VDBG (0, "VCL<%d>: ERROR: Invalid session_index (%u)!",
1689 getpid (), session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001690 goto done;
1691 }
1692 if (PREDICT_FALSE (session->is_vep))
1693 {
Dave Wallace4878cbe2017-11-21 03:45:09 -05001694 clib_warning ("ERROR: session_index (%u) is a vep!", vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001695 rv = VPPCOM_EINVAL;
1696 goto done;
1697 }
1698
1699 switch (op)
1700 {
1701 case EPOLL_CTL_ADD:
1702 if (PREDICT_FALSE (!event))
1703 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001704 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05001705 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04001706 rv = VPPCOM_EINVAL;
1707 goto done;
1708 }
1709 if (vep_session->vep.next_sid != ~0)
1710 {
Florin Coras7e12d942018-06-27 14:32:43 -07001711 vcl_session_t *next_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001712 rv = vppcom_session_at_index (vep_session->vep.next_sid,
1713 &next_session);
1714 if (PREDICT_FALSE (rv))
1715 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001716 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001717 "vep.next_sid (%u) on vep_idx (%u)!",
1718 getpid (), vep_session->vep.next_sid, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001719 goto done;
1720 }
1721 ASSERT (next_session->vep.prev_sid == vep_idx);
1722 next_session->vep.prev_sid = session_index;
1723 }
1724 session->vep.next_sid = vep_session->vep.next_sid;
1725 session->vep.prev_sid = vep_idx;
1726 session->vep.vep_idx = vep_idx;
1727 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
1728 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001729 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001730 session->is_vep_session = 1;
1731 vep_session->vep.next_sid = session_index;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001732
1733 /* VCL Event Register handler */
Florin Coras7e12d942018-06-27 14:32:43 -07001734 if (session->session_state & STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001735 {
1736 /* Register handler for connect_request event on listen_session_index */
1737 vce_event_key_t evk;
1738 evk.session_index = session_index;
1739 evk.eid = VCL_EVENT_CONNECT_REQ_ACCEPTED;
Keith Burns (alagalah)12756512018-03-06 05:55:27 -08001740 vep_session->poll_reg =
1741 vce_register_handler (&vcm->event_thread, &evk,
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001742 vce_poll_wait_connect_request_handler_fn,
1743 0 /* No callback args */ );
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001744 }
Florin Coras0d427d82018-06-27 03:24:07 -07001745 VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, "
1746 "sid %u, events 0x%x, data 0x%llx!",
1747 getpid (), vep_idx, session_index,
1748 event->events, event->data.u64);
1749 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001750 break;
1751
1752 case EPOLL_CTL_MOD:
1753 if (PREDICT_FALSE (!event))
1754 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001755 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05001756 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04001757 rv = VPPCOM_EINVAL;
1758 goto done;
1759 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001760 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001761 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001762 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001763 "not a vep session!", getpid (), session_index);
1764 rv = VPPCOM_EINVAL;
1765 goto done;
1766 }
1767 else if (PREDICT_FALSE (session->vep.vep_idx != vep_idx))
1768 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001769 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001770 "vep_idx (%u) != vep_idx (%u)!",
1771 getpid (), session_index,
1772 session->vep.vep_idx, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001773 rv = VPPCOM_EINVAL;
1774 goto done;
1775 }
1776 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
1777 session->vep.ev = *event;
Florin Coras0d427d82018-06-27 03:24:07 -07001778 VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
1779 " data 0x%llx!", getpid (), vep_idx, session_index, event->events,
1780 event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001781 break;
1782
1783 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05001784 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001785 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001786 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001787 "not a vep session!", getpid (), session_index);
1788 rv = VPPCOM_EINVAL;
1789 goto done;
1790 }
1791 else if (PREDICT_FALSE (session->vep.vep_idx != vep_idx))
1792 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001793 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001794 "vep_idx (%u) != vep_idx (%u)!",
1795 getpid (), session_index,
1796 session->vep.vep_idx, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001797 rv = VPPCOM_EINVAL;
1798 goto done;
1799 }
1800
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001801 /* VCL Event Un-register handler */
Florin Coras7e12d942018-06-27 14:32:43 -07001802 if ((session->session_state & STATE_LISTEN) && vep_session->poll_reg)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001803 {
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001804 (void) vce_unregister_handler (&vcm->event_thread,
1805 vep_session->poll_reg);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001806 }
1807
Dave Wallacef7f809c2017-10-03 01:48:42 -04001808 vep_session->wait_cont_idx =
1809 (vep_session->wait_cont_idx == session_index) ?
1810 session->vep.next_sid : vep_session->wait_cont_idx;
1811
1812 if (session->vep.prev_sid == vep_idx)
1813 vep_session->vep.next_sid = session->vep.next_sid;
1814 else
1815 {
Florin Coras7e12d942018-06-27 14:32:43 -07001816 vcl_session_t *prev_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001817 rv = vppcom_session_at_index (session->vep.prev_sid, &prev_session);
1818 if (PREDICT_FALSE (rv))
1819 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001820 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001821 "vep.prev_sid (%u) on sid (%u)!",
1822 getpid (), session->vep.prev_sid, session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001823 goto done;
1824 }
1825 ASSERT (prev_session->vep.next_sid == session_index);
1826 prev_session->vep.next_sid = session->vep.next_sid;
1827 }
1828 if (session->vep.next_sid != ~0)
1829 {
Florin Coras7e12d942018-06-27 14:32:43 -07001830 vcl_session_t *next_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001831 rv = vppcom_session_at_index (session->vep.next_sid, &next_session);
1832 if (PREDICT_FALSE (rv))
1833 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001834 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05001835 "vep.next_sid (%u) on sid (%u)!",
1836 getpid (), session->vep.next_sid, session_index);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001837 goto done;
1838 }
1839 ASSERT (next_session->vep.prev_sid == session_index);
1840 next_session->vep.prev_sid = session->vep.prev_sid;
1841 }
1842
1843 memset (&session->vep, 0, sizeof (session->vep));
1844 session->vep.next_sid = ~0;
1845 session->vep.prev_sid = ~0;
1846 session->vep.vep_idx = ~0;
1847 session->is_vep_session = 0;
Florin Coras0d427d82018-06-27 03:24:07 -07001848 VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
1849 getpid (), vep_idx, session_index);
1850 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001851 break;
1852
1853 default:
Dave Wallace048b1d62018-01-03 22:24:41 -05001854 clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001855 rv = VPPCOM_EINVAL;
1856 }
1857
1858 vep_verify_epoll_chain (vep_idx);
1859
1860done:
Dave Wallace7e607a72018-06-18 18:41:32 -04001861 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001862 return rv;
1863}
1864
Dave Wallacef7f809c2017-10-03 01:48:42 -04001865int
1866vppcom_epoll_wait (uint32_t vep_idx, struct epoll_event *events,
1867 int maxevents, double wait_for_time)
1868{
Florin Coras7e12d942018-06-27 14:32:43 -07001869 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001870 int rv;
1871 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
Dave Wallace2e005bb2017-11-07 01:21:39 -05001872 u32 keep_trying = 1;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001873 int num_ev = 0;
1874 u32 vep_next_sid, wait_cont_idx;
1875 u8 is_vep;
1876
1877 if (PREDICT_FALSE (maxevents <= 0))
1878 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001879 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05001880 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001881 return VPPCOM_EINVAL;
1882 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04001883 memset (events, 0, sizeof (*events) * maxevents);
1884
Dave Wallace7e607a72018-06-18 18:41:32 -04001885 VCL_SESSION_LOCK_AND_GET (vep_idx, &vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001886 vep_next_sid = vep_session->vep.next_sid;
1887 is_vep = vep_session->is_vep;
1888 wait_cont_idx = vep_session->wait_cont_idx;
Dave Wallace7e607a72018-06-18 18:41:32 -04001889 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001890
1891 if (PREDICT_FALSE (!is_vep))
1892 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001893 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05001894 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001895 rv = VPPCOM_EINVAL;
1896 goto done;
1897 }
Dave Wallacee695cb42017-11-02 22:04:42 -04001898 if (PREDICT_FALSE (vep_next_sid == ~0))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001899 {
Florin Coras0d427d82018-06-27 03:24:07 -07001900 VDBG (1, "VCL<%d>: WARNING: vep_idx (%u) is empty!",
1901 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001902 goto done;
1903 }
1904
1905 do
1906 {
1907 u32 sid;
1908 u32 next_sid = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -07001909 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001910
1911 for (sid = (wait_cont_idx == ~0) ? vep_next_sid : wait_cont_idx;
1912 sid != ~0; sid = next_sid)
1913 {
1914 u32 session_events, et_mask, clear_et_mask, session_vep_idx;
1915 u8 add_event, is_vep_session;
1916 int ready;
1917 u64 session_ev_data;
1918
Dave Wallace7e607a72018-06-18 18:41:32 -04001919 VCL_SESSION_LOCK_AND_GET (sid, &session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001920 next_sid = session->vep.next_sid;
1921 session_events = session->vep.ev.events;
1922 et_mask = session->vep.et_mask;
1923 is_vep = session->is_vep;
1924 is_vep_session = session->is_vep_session;
1925 session_vep_idx = session->vep.vep_idx;
1926 session_ev_data = session->vep.ev.data.u64;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001927
Dave Wallace7e607a72018-06-18 18:41:32 -04001928 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04001929
1930 if (PREDICT_FALSE (is_vep))
1931 {
Florin Coras0d427d82018-06-27 03:24:07 -07001932 VDBG (0, "VCL<%d>: ERROR: sid (%u) is a vep!",
1933 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001934 rv = VPPCOM_EINVAL;
1935 goto done;
1936 }
1937 if (PREDICT_FALSE (!is_vep_session))
1938 {
Florin Coras0d427d82018-06-27 03:24:07 -07001939 VDBG (0, "VCL<%d>: ERROR: session (%u) is not "
1940 "a vep session!", getpid (), sid);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001941 rv = VPPCOM_EINVAL;
1942 goto done;
1943 }
1944 if (PREDICT_FALSE (session_vep_idx != vep_idx))
1945 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001946 clib_warning ("VCL<%d>: ERROR: session (%u) "
Dave Wallacef7f809c2017-10-03 01:48:42 -04001947 "vep_idx (%u) != vep_idx (%u)!",
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001948 getpid (), sid, session_vep_idx, vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001949 rv = VPPCOM_EINVAL;
1950 goto done;
1951 }
1952
1953 add_event = clear_et_mask = 0;
1954
Dave Wallace60caa062017-11-10 17:07:13 -05001955 if (EPOLLIN & session_events)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001956 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001957 VCL_SESSION_LOCK_AND_GET (sid, &session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001958 ready = vppcom_session_read_ready (session, sid);
Dave Wallace7e607a72018-06-18 18:41:32 -04001959 VCL_SESSION_UNLOCK ();
Dave Wallace60caa062017-11-10 17:07:13 -05001960 if ((ready > 0) && (EPOLLIN & et_mask))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001961 {
1962 add_event = 1;
1963 events[num_ev].events |= EPOLLIN;
Dave Wallace60caa062017-11-10 17:07:13 -05001964 if (((EPOLLET | EPOLLIN) & session_events) ==
1965 (EPOLLET | EPOLLIN))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001966 clear_et_mask |= EPOLLIN;
1967 }
1968 else if (ready < 0)
1969 {
1970 add_event = 1;
1971 switch (ready)
1972 {
1973 case VPPCOM_ECONNRESET:
1974 events[num_ev].events |= EPOLLHUP | EPOLLRDHUP;
1975 break;
1976
1977 default:
1978 events[num_ev].events |= EPOLLERR;
1979 break;
1980 }
1981 }
1982 }
1983
Dave Wallace60caa062017-11-10 17:07:13 -05001984 if (EPOLLOUT & session_events)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001985 {
Dave Wallace7e607a72018-06-18 18:41:32 -04001986 VCL_SESSION_LOCK_AND_GET (sid, &session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04001987 ready = vppcom_session_write_ready (session, sid);
Dave Wallace7e607a72018-06-18 18:41:32 -04001988 VCL_SESSION_UNLOCK ();
Dave Wallace60caa062017-11-10 17:07:13 -05001989 if ((ready > 0) && (EPOLLOUT & et_mask))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001990 {
1991 add_event = 1;
1992 events[num_ev].events |= EPOLLOUT;
Dave Wallace60caa062017-11-10 17:07:13 -05001993 if (((EPOLLET | EPOLLOUT) & session_events) ==
1994 (EPOLLET | EPOLLOUT))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001995 clear_et_mask |= EPOLLOUT;
1996 }
1997 else if (ready < 0)
1998 {
1999 add_event = 1;
2000 switch (ready)
2001 {
2002 case VPPCOM_ECONNRESET:
2003 events[num_ev].events |= EPOLLHUP;
2004 break;
2005
2006 default:
2007 events[num_ev].events |= EPOLLERR;
2008 break;
2009 }
2010 }
2011 }
2012
2013 if (add_event)
2014 {
2015 events[num_ev].data.u64 = session_ev_data;
2016 if (EPOLLONESHOT & session_events)
2017 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002018 VCL_SESSION_LOCK_AND_GET (sid, &session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002019 session->vep.ev.events = 0;
Dave Wallace7e607a72018-06-18 18:41:32 -04002020 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002021 }
2022 num_ev++;
2023 if (num_ev == maxevents)
2024 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002025 VCL_SESSION_LOCK_AND_GET (vep_idx, &vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002026 vep_session->wait_cont_idx = next_sid;
Dave Wallace7e607a72018-06-18 18:41:32 -04002027 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002028 goto done;
2029 }
2030 }
2031 if (wait_cont_idx != ~0)
2032 {
2033 if (next_sid == ~0)
2034 next_sid = vep_next_sid;
2035 else if (next_sid == wait_cont_idx)
2036 next_sid = ~0;
2037 }
2038 }
Dave Wallace2e005bb2017-11-07 01:21:39 -05002039 if (wait_for_time != -1)
2040 keep_trying = (clib_time_now (&vcm->clib_time) <= timeout) ? 1 : 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002041 }
Dave Wallace2e005bb2017-11-07 01:21:39 -05002042 while ((num_ev == 0) && keep_trying);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002043
2044 if (wait_cont_idx != ~0)
2045 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002046 VCL_SESSION_LOCK_AND_GET (vep_idx, &vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002047 vep_session->wait_cont_idx = ~0;
Dave Wallace7e607a72018-06-18 18:41:32 -04002048 VCL_SESSION_UNLOCK ();
Dave Wallacef7f809c2017-10-03 01:48:42 -04002049 }
2050done:
2051 return (rv != VPPCOM_OK) ? rv : num_ev;
2052}
2053
Dave Wallace35830af2017-10-09 01:43:42 -04002054int
2055vppcom_session_attr (uint32_t session_index, uint32_t op,
2056 void *buffer, uint32_t * buflen)
2057{
Florin Coras7e12d942018-06-27 14:32:43 -07002058 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002059 int rv = VPPCOM_OK;
2060 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002061 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002062
Dave Wallace7e607a72018-06-18 18:41:32 -04002063 VCL_SESSION_LOCK_AND_GET (session_index, &session);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002064
2065 ASSERT (session);
2066
Dave Wallace35830af2017-10-09 01:43:42 -04002067 switch (op)
2068 {
2069 case VPPCOM_ATTR_GET_NREAD:
2070 rv = vppcom_session_read_ready (session, session_index);
Florin Coras0d427d82018-06-27 03:24:07 -07002071 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2072 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002073 break;
2074
Dave Wallace227867f2017-11-13 21:21:53 -05002075 case VPPCOM_ATTR_GET_NWRITE:
2076 rv = vppcom_session_write_ready (session, session_index);
Florin Coras0d427d82018-06-27 03:24:07 -07002077 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
2078 getpid (), session_index, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002079 break;
2080
2081 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002082 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002083 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002084 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2085 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002086 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002087 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2088 "is_nonblocking = %u", getpid (),
2089 session_index, *flags,
2090 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002091 }
2092 else
2093 rv = VPPCOM_EINVAL;
2094 break;
2095
2096 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002097 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002098 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002099 if (*flags & O_NONBLOCK)
2100 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2101 else
2102 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2103
Florin Coras0d427d82018-06-27 03:24:07 -07002104 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2105 " is_nonblocking = %u",
2106 getpid (), session_index, *flags,
2107 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002108 }
2109 else
2110 rv = VPPCOM_EINVAL;
2111 break;
2112
2113 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002114 if (PREDICT_TRUE (buffer && buflen &&
2115 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002116 {
Florin Coras7e12d942018-06-27 14:32:43 -07002117 ep->is_ip4 = session->transport.is_ip4;
2118 ep->port = session->transport.rmt_port;
2119 if (session->transport.is_ip4)
2120 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002121 sizeof (ip4_address_t));
2122 else
Florin Coras7e12d942018-06-27 14:32:43 -07002123 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002124 sizeof (ip6_address_t));
2125 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002126 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2127 "addr = %U, port %u", getpid (),
2128 session_index, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002129 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002130 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2131 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002132 }
2133 else
2134 rv = VPPCOM_EINVAL;
2135 break;
2136
2137 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002138 if (PREDICT_TRUE (buffer && buflen &&
2139 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002140 {
Florin Coras7e12d942018-06-27 14:32:43 -07002141 ep->is_ip4 = session->transport.is_ip4;
2142 ep->port = session->transport.lcl_port;
2143 if (session->transport.is_ip4)
2144 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002145 sizeof (ip4_address_t));
2146 else
Florin Coras7e12d942018-06-27 14:32:43 -07002147 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002148 sizeof (ip6_address_t));
2149 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002150 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2151 " addr = %U port %d", getpid (),
2152 session_index, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002153 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002154 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2155 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002156 }
2157 else
2158 rv = VPPCOM_EINVAL;
2159 break;
Stevenb5a11602017-10-11 09:59:30 -07002160
Dave Wallace048b1d62018-01-03 22:24:41 -05002161 case VPPCOM_ATTR_GET_LIBC_EPFD:
2162 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002163 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2164 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002165 break;
2166
2167 case VPPCOM_ATTR_SET_LIBC_EPFD:
2168 if (PREDICT_TRUE (buffer && buflen &&
2169 (*buflen == sizeof (session->libc_epfd))))
2170 {
2171 session->libc_epfd = *(int *) buffer;
2172 *buflen = sizeof (session->libc_epfd);
2173
Florin Coras0d427d82018-06-27 03:24:07 -07002174 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2175 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002176 }
2177 else
2178 rv = VPPCOM_EINVAL;
2179 break;
2180
2181 case VPPCOM_ATTR_GET_PROTOCOL:
2182 if (buffer && buflen && (*buflen >= sizeof (int)))
2183 {
Florin Coras7e12d942018-06-27 14:32:43 -07002184 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002185 *buflen = sizeof (int);
2186
Florin Coras0d427d82018-06-27 03:24:07 -07002187 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2188 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2189 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002190 }
2191 else
2192 rv = VPPCOM_EINVAL;
2193 break;
2194
2195 case VPPCOM_ATTR_GET_LISTEN:
2196 if (buffer && buflen && (*buflen >= sizeof (int)))
2197 {
2198 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2199 VCL_SESS_ATTR_LISTEN);
2200 *buflen = sizeof (int);
2201
Florin Coras0d427d82018-06-27 03:24:07 -07002202 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2203 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002204 }
2205 else
2206 rv = VPPCOM_EINVAL;
2207 break;
2208
2209 case VPPCOM_ATTR_GET_ERROR:
2210 if (buffer && buflen && (*buflen >= sizeof (int)))
2211 {
2212 *(int *) buffer = 0;
2213 *buflen = sizeof (int);
2214
Florin Coras0d427d82018-06-27 03:24:07 -07002215 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2216 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002217 }
2218 else
2219 rv = VPPCOM_EINVAL;
2220 break;
2221
2222 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2223 if (buffer && buflen && (*buflen >= sizeof (u32)))
2224 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002225
2226 /* VPP-TBD */
2227 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002228 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002229 vcm->cfg.tx_fifo_size);
2230 *buflen = sizeof (u32);
2231
Florin Coras0d427d82018-06-27 03:24:07 -07002232 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2233 "buflen %d, #VPP-TBD#", getpid (),
2234 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002235 }
2236 else
2237 rv = VPPCOM_EINVAL;
2238 break;
2239
2240 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2241 if (buffer && buflen && (*buflen == sizeof (u32)))
2242 {
2243 /* VPP-TBD */
2244 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002245 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2246 "buflen %d, #VPP-TBD#", getpid (),
2247 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002248 }
2249 else
2250 rv = VPPCOM_EINVAL;
2251 break;
2252
2253 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2254 if (buffer && buflen && (*buflen >= sizeof (u32)))
2255 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002256
2257 /* VPP-TBD */
2258 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002259 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002260 vcm->cfg.rx_fifo_size);
2261 *buflen = sizeof (u32);
2262
Florin Coras0d427d82018-06-27 03:24:07 -07002263 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2264 "buflen %d, #VPP-TBD#", getpid (),
2265 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002266 }
2267 else
2268 rv = VPPCOM_EINVAL;
2269 break;
2270
2271 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2272 if (buffer && buflen && (*buflen == sizeof (u32)))
2273 {
2274 /* VPP-TBD */
2275 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002276 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2277 "buflen %d, #VPP-TBD#", getpid (),
2278 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002279 }
2280 else
2281 rv = VPPCOM_EINVAL;
2282 break;
2283
2284 case VPPCOM_ATTR_GET_REUSEADDR:
2285 if (buffer && buflen && (*buflen >= sizeof (int)))
2286 {
2287 /* VPP-TBD */
2288 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2289 VCL_SESS_ATTR_REUSEADDR);
2290 *buflen = sizeof (int);
2291
Florin Coras0d427d82018-06-27 03:24:07 -07002292 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2293 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002294 }
2295 else
2296 rv = VPPCOM_EINVAL;
2297 break;
2298
Stevenb5a11602017-10-11 09:59:30 -07002299 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002300 if (buffer && buflen && (*buflen == sizeof (int)) &&
2301 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2302 {
2303 /* VPP-TBD */
2304 if (*(int *) buffer)
2305 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2306 else
2307 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2308
Florin Coras0d427d82018-06-27 03:24:07 -07002309 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2310 " #VPP-TBD#", getpid (),
2311 VCL_SESS_ATTR_TEST (session->attr,
2312 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002313 }
2314 else
2315 rv = VPPCOM_EINVAL;
2316 break;
2317
2318 case VPPCOM_ATTR_GET_REUSEPORT:
2319 if (buffer && buflen && (*buflen >= sizeof (int)))
2320 {
2321 /* VPP-TBD */
2322 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2323 VCL_SESS_ATTR_REUSEPORT);
2324 *buflen = sizeof (int);
2325
Florin Coras0d427d82018-06-27 03:24:07 -07002326 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2327 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002328 }
2329 else
2330 rv = VPPCOM_EINVAL;
2331 break;
2332
2333 case VPPCOM_ATTR_SET_REUSEPORT:
2334 if (buffer && buflen && (*buflen == sizeof (int)) &&
2335 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2336 {
2337 /* VPP-TBD */
2338 if (*(int *) buffer)
2339 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2340 else
2341 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2342
Florin Coras0d427d82018-06-27 03:24:07 -07002343 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2344 " #VPP-TBD#", getpid (),
2345 VCL_SESS_ATTR_TEST (session->attr,
2346 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002347 }
2348 else
2349 rv = VPPCOM_EINVAL;
2350 break;
2351
2352 case VPPCOM_ATTR_GET_BROADCAST:
2353 if (buffer && buflen && (*buflen >= sizeof (int)))
2354 {
2355 /* VPP-TBD */
2356 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2357 VCL_SESS_ATTR_BROADCAST);
2358 *buflen = sizeof (int);
2359
Florin Coras0d427d82018-06-27 03:24:07 -07002360 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2361 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002362 }
2363 else
2364 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002365 break;
2366
2367 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05002368 if (buffer && buflen && (*buflen == sizeof (int)))
2369 {
2370 /* VPP-TBD */
2371 if (*(int *) buffer)
2372 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2373 else
2374 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2375
Florin Coras0d427d82018-06-27 03:24:07 -07002376 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2377 "#VPP-TBD#", getpid (),
2378 VCL_SESS_ATTR_TEST (session->attr,
2379 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002380 }
2381 else
2382 rv = VPPCOM_EINVAL;
2383 break;
2384
2385 case VPPCOM_ATTR_GET_V6ONLY:
2386 if (buffer && buflen && (*buflen >= sizeof (int)))
2387 {
2388 /* VPP-TBD */
2389 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2390 VCL_SESS_ATTR_V6ONLY);
2391 *buflen = sizeof (int);
2392
Florin Coras0d427d82018-06-27 03:24:07 -07002393 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2394 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002395 }
2396 else
2397 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002398 break;
2399
2400 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05002401 if (buffer && buflen && (*buflen == sizeof (int)))
2402 {
2403 /* VPP-TBD */
2404 if (*(int *) buffer)
2405 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2406 else
2407 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2408
Florin Coras0d427d82018-06-27 03:24:07 -07002409 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2410 "#VPP-TBD#", getpid (),
2411 VCL_SESS_ATTR_TEST (session->attr,
2412 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002413 }
2414 else
2415 rv = VPPCOM_EINVAL;
2416 break;
2417
2418 case VPPCOM_ATTR_GET_KEEPALIVE:
2419 if (buffer && buflen && (*buflen >= sizeof (int)))
2420 {
2421 /* VPP-TBD */
2422 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2423 VCL_SESS_ATTR_KEEPALIVE);
2424 *buflen = sizeof (int);
2425
Florin Coras0d427d82018-06-27 03:24:07 -07002426 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
2427 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002428 }
2429 else
2430 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002431 break;
Stevenbccd3392017-10-12 20:42:21 -07002432
2433 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05002434 if (buffer && buflen && (*buflen == sizeof (int)))
2435 {
2436 /* VPP-TBD */
2437 if (*(int *) buffer)
2438 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2439 else
2440 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2441
Florin Coras0d427d82018-06-27 03:24:07 -07002442 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
2443 "#VPP-TBD#", getpid (),
2444 VCL_SESS_ATTR_TEST (session->attr,
2445 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002446 }
2447 else
2448 rv = VPPCOM_EINVAL;
2449 break;
2450
2451 case VPPCOM_ATTR_GET_TCP_NODELAY:
2452 if (buffer && buflen && (*buflen >= sizeof (int)))
2453 {
2454 /* VPP-TBD */
2455 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2456 VCL_SESS_ATTR_TCP_NODELAY);
2457 *buflen = sizeof (int);
2458
Florin Coras0d427d82018-06-27 03:24:07 -07002459 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
2460 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002461 }
2462 else
2463 rv = VPPCOM_EINVAL;
2464 break;
2465
2466 case VPPCOM_ATTR_SET_TCP_NODELAY:
2467 if (buffer && buflen && (*buflen == sizeof (int)))
2468 {
2469 /* VPP-TBD */
2470 if (*(int *) buffer)
2471 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2472 else
2473 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
2474
Florin Coras0d427d82018-06-27 03:24:07 -07002475 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
2476 "#VPP-TBD#", getpid (),
2477 VCL_SESS_ATTR_TEST (session->attr,
2478 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002479 }
2480 else
2481 rv = VPPCOM_EINVAL;
2482 break;
2483
2484 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
2485 if (buffer && buflen && (*buflen >= sizeof (int)))
2486 {
2487 /* VPP-TBD */
2488 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2489 VCL_SESS_ATTR_TCP_KEEPIDLE);
2490 *buflen = sizeof (int);
2491
Florin Coras0d427d82018-06-27 03:24:07 -07002492 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
2493 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002494 }
2495 else
2496 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07002497 break;
2498
2499 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05002500 if (buffer && buflen && (*buflen == sizeof (int)))
2501 {
2502 /* VPP-TBD */
2503 if (*(int *) buffer)
2504 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2505 else
2506 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
2507
Florin Coras0d427d82018-06-27 03:24:07 -07002508 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
2509 "#VPP-TBD#", getpid (),
2510 VCL_SESS_ATTR_TEST (session->attr,
2511 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002512 }
2513 else
2514 rv = VPPCOM_EINVAL;
2515 break;
2516
2517 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
2518 if (buffer && buflen && (*buflen >= sizeof (int)))
2519 {
2520 /* VPP-TBD */
2521 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2522 VCL_SESS_ATTR_TCP_KEEPINTVL);
2523 *buflen = sizeof (int);
2524
Florin Coras0d427d82018-06-27 03:24:07 -07002525 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
2526 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002527 }
2528 else
2529 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07002530 break;
2531
2532 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05002533 if (buffer && buflen && (*buflen == sizeof (int)))
2534 {
2535 /* VPP-TBD */
2536 if (*(int *) buffer)
2537 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2538 else
2539 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
2540
Florin Coras0d427d82018-06-27 03:24:07 -07002541 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
2542 "#VPP-TBD#", getpid (),
2543 VCL_SESS_ATTR_TEST (session->attr,
2544 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002545 }
2546 else
2547 rv = VPPCOM_EINVAL;
2548 break;
2549
2550 case VPPCOM_ATTR_GET_TCP_USER_MSS:
2551 if (buffer && buflen && (*buflen >= sizeof (u32)))
2552 {
2553 /* VPP-TBD */
2554 *(u32 *) buffer = session->user_mss;
2555 *buflen = sizeof (int);
2556
Florin Coras0d427d82018-06-27 03:24:07 -07002557 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
2558 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002559 }
2560 else
2561 rv = VPPCOM_EINVAL;
2562 break;
2563
2564 case VPPCOM_ATTR_SET_TCP_USER_MSS:
2565 if (buffer && buflen && (*buflen == sizeof (u32)))
2566 {
2567 /* VPP-TBD */
2568 session->user_mss = *(u32 *) buffer;
2569
Florin Coras0d427d82018-06-27 03:24:07 -07002570 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
2571 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002572 }
2573 else
2574 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07002575 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04002576
2577 default:
2578 rv = VPPCOM_EINVAL;
2579 break;
Dave Wallace35830af2017-10-09 01:43:42 -04002580 }
2581
2582done:
Dave Wallace7e607a72018-06-18 18:41:32 -04002583 VCL_SESSION_UNLOCK ();
Dave Wallace35830af2017-10-09 01:43:42 -04002584 return rv;
2585}
2586
Stevenac1f96d2017-10-24 16:03:58 -07002587int
2588vppcom_session_recvfrom (uint32_t session_index, void *buffer,
2589 uint32_t buflen, int flags, vppcom_endpt_t * ep)
2590{
Stevenac1f96d2017-10-24 16:03:58 -07002591 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07002592 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07002593
2594 if (ep)
2595 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002596 VCL_SESSION_LOCK ();
Stevenac1f96d2017-10-24 16:03:58 -07002597 rv = vppcom_session_at_index (session_index, &session);
2598 if (PREDICT_FALSE (rv))
2599 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002600 VCL_SESSION_UNLOCK ();
Florin Coras0d427d82018-06-27 03:24:07 -07002601 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
2602 getpid (), session_index);
Dave Wallacefaf9d772017-10-26 16:12:04 -04002603 rv = VPPCOM_EBADFD;
Dave Wallace7e607a72018-06-18 18:41:32 -04002604 VCL_SESSION_UNLOCK ();
Dave Wallacefaf9d772017-10-26 16:12:04 -04002605 goto done;
Stevenac1f96d2017-10-24 16:03:58 -07002606 }
Florin Coras7e12d942018-06-27 14:32:43 -07002607 ep->is_ip4 = session->transport.is_ip4;
2608 ep->port = session->transport.rmt_port;
2609 if (session->transport.is_ip4)
2610 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
Stevenac1f96d2017-10-24 16:03:58 -07002611 sizeof (ip4_address_t));
2612 else
Florin Coras7e12d942018-06-27 14:32:43 -07002613 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
Stevenac1f96d2017-10-24 16:03:58 -07002614 sizeof (ip6_address_t));
Dave Wallace7e607a72018-06-18 18:41:32 -04002615 VCL_SESSION_UNLOCK ();
Stevenac1f96d2017-10-24 16:03:58 -07002616 }
Steven58f464e2017-10-25 12:33:12 -07002617
2618 if (flags == 0)
Stevenac1f96d2017-10-24 16:03:58 -07002619 rv = vppcom_session_read (session_index, buffer, buflen);
2620 else if (flags & MSG_PEEK)
Steven58f464e2017-10-25 12:33:12 -07002621 rv = vppcom_session_peek (session_index, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07002622 else
2623 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002624 clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
2625 getpid (), flags);
Stevenac1f96d2017-10-24 16:03:58 -07002626 rv = VPPCOM_EAFNOSUPPORT;
2627 }
2628
Dave Wallacefaf9d772017-10-26 16:12:04 -04002629done:
Stevenac1f96d2017-10-24 16:03:58 -07002630 return rv;
2631}
2632
2633int
2634vppcom_session_sendto (uint32_t session_index, void *buffer,
2635 uint32_t buflen, int flags, vppcom_endpt_t * ep)
2636{
Dave Wallace617dffa2017-10-26 14:47:06 -04002637 if (!buffer)
2638 return VPPCOM_EINVAL;
2639
2640 if (ep)
2641 {
2642 // TBD
2643 return VPPCOM_EINVAL;
2644 }
2645
2646 if (flags)
2647 {
2648 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07002649 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
2650 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04002651 }
2652
2653 return (vppcom_session_write (session_index, buffer, buflen));
Stevenac1f96d2017-10-24 16:03:58 -07002654}
2655
Dave Wallace048b1d62018-01-03 22:24:41 -05002656int
2657vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
2658{
2659 f64 timeout = clib_time_now (&vcm->clib_time) + wait_for_time;
2660 u32 i, keep_trying = 1;
2661 int rv, num_ev = 0;
2662
Florin Coras0d427d82018-06-27 03:24:07 -07002663 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
2664 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05002665
2666 if (!vp)
2667 return VPPCOM_EFAULT;
2668
2669 do
2670 {
Florin Coras7e12d942018-06-27 14:32:43 -07002671 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05002672
2673 for (i = 0; i < n_sids; i++)
2674 {
2675 ASSERT (vp[i].revents);
2676
Dave Wallace7e607a72018-06-18 18:41:32 -04002677 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
2678 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05002679
2680 if (*vp[i].revents)
2681 *vp[i].revents = 0;
2682
2683 if (POLLIN & vp[i].events)
2684 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002685 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
Dave Wallace048b1d62018-01-03 22:24:41 -05002686 rv = vppcom_session_read_ready (session, vp[i].sid);
Dave Wallace7e607a72018-06-18 18:41:32 -04002687 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05002688 if (rv > 0)
2689 {
2690 *vp[i].revents |= POLLIN;
2691 num_ev++;
2692 }
2693 else if (rv < 0)
2694 {
2695 switch (rv)
2696 {
2697 case VPPCOM_ECONNRESET:
2698 *vp[i].revents = POLLHUP;
2699 break;
2700
2701 default:
2702 *vp[i].revents = POLLERR;
2703 break;
2704 }
2705 num_ev++;
2706 }
2707 }
2708
2709 if (POLLOUT & vp[i].events)
2710 {
Dave Wallace7e607a72018-06-18 18:41:32 -04002711 VCL_SESSION_LOCK_AND_GET (vp[i].sid, &session);
Dave Wallace048b1d62018-01-03 22:24:41 -05002712 rv = vppcom_session_write_ready (session, vp[i].sid);
Dave Wallace7e607a72018-06-18 18:41:32 -04002713 VCL_SESSION_UNLOCK ();
Dave Wallace048b1d62018-01-03 22:24:41 -05002714 if (rv > 0)
2715 {
2716 *vp[i].revents |= POLLOUT;
2717 num_ev++;
2718 }
2719 else if (rv < 0)
2720 {
2721 switch (rv)
2722 {
2723 case VPPCOM_ECONNRESET:
2724 *vp[i].revents = POLLHUP;
2725 break;
2726
2727 default:
2728 *vp[i].revents = POLLERR;
2729 break;
2730 }
2731 num_ev++;
2732 }
2733 }
2734
Dave Wallace7e607a72018-06-18 18:41:32 -04002735 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05002736 {
2737 done:
2738 *vp[i].revents = POLLNVAL;
2739 num_ev++;
2740 }
2741 }
2742 if (wait_for_time != -1)
2743 keep_trying = (clib_time_now (&vcm->clib_time) <= timeout) ? 1 : 0;
2744 }
2745 while ((num_ev == 0) && keep_trying);
2746
2747 if (VPPCOM_DEBUG > 3)
2748 {
2749 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
2750 for (i = 0; i < n_sids; i++)
2751 {
2752 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
2753 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
2754 vp[i].events, *vp[i].revents);
2755 }
2756 }
2757 return num_ev;
2758}
2759
Dave Wallacee22aa742017-10-20 12:30:38 -04002760/*
2761 * fd.io coding-style-patch-verification: ON
2762 *
2763 * Local Variables:
2764 * eval: (c-set-style "gnu")
2765 * End:
2766 */