blob: fad2ac98538acd818f57c50026d0bdc48144b493 [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>
Florin Coras0d427d82018-06-27 03:24:07 -070020#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070021#include <vcl/vcl_private.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Coras54693d22018-07-17 10:46:29 -070025static u8 not_ready;
26
27void
28sigsegv_signal (int signum)
29{
30 not_ready = 1;
31}
32
33static void
34vcl_wait_for_memory (void *mem)
35{
36 u8 __clib_unused test;
Florin Coras460dce62018-07-27 05:45:06 -070037 if (vcm->mounting_segment)
38 {
39 while (vcm->mounting_segment)
40 ;
41 return;
42 }
Florin Coras54693d22018-07-17 10:46:29 -070043 if (1 || vcm->debug)
44 {
Florin Coras460dce62018-07-27 05:45:06 -070045 usleep (1e5);
Florin Coras54693d22018-07-17 10:46:29 -070046 return;
47 }
48 if (signal (SIGSEGV, sigsegv_signal))
49 {
50 perror ("signal()");
51 return;
52 }
53 not_ready = 0;
54
55again:
56 test = *(u8 *) mem;
57 if (not_ready)
58 {
59 not_ready = 0;
60 usleep (1);
61 goto again;
62 }
63
64 signal (SIGSEGV, SIG_DFL);
65}
66
Florin Coras697faea2018-06-27 17:10:49 -070067const char *
Dave Wallace543852a2017-08-03 02:11:34 -040068vppcom_session_state_str (session_state_t state)
69{
70 char *st;
71
72 switch (state)
73 {
74 case STATE_START:
75 st = "STATE_START";
76 break;
77
78 case STATE_CONNECT:
79 st = "STATE_CONNECT";
80 break;
81
82 case STATE_LISTEN:
83 st = "STATE_LISTEN";
84 break;
85
86 case STATE_ACCEPT:
87 st = "STATE_ACCEPT";
88 break;
89
Dave Wallace4878cbe2017-11-21 03:45:09 -050090 case STATE_CLOSE_ON_EMPTY:
91 st = "STATE_CLOSE_ON_EMPTY";
92 break;
93
Dave Wallace543852a2017-08-03 02:11:34 -040094 case STATE_DISCONNECT:
95 st = "STATE_DISCONNECT";
96 break;
97
98 case STATE_FAILED:
99 st = "STATE_FAILED";
100 break;
101
102 default:
103 st = "UNKNOWN_STATE";
104 break;
105 }
106
107 return st;
108}
109
Dave Wallace543852a2017-08-03 02:11:34 -0400110u8 *
111format_ip4_address (u8 * s, va_list * args)
112{
113 u8 *a = va_arg (*args, u8 *);
114 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
115}
116
117u8 *
118format_ip6_address (u8 * s, va_list * args)
119{
120 ip6_address_t *a = va_arg (*args, ip6_address_t *);
121 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
122
123 i_max_n_zero = ARRAY_LEN (a->as_u16);
124 max_n_zeros = 0;
125 i_first_zero = i_max_n_zero;
126 n_zeros = 0;
127 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
128 {
129 u32 is_zero = a->as_u16[i] == 0;
130 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
131 {
132 i_first_zero = i;
133 n_zeros = 0;
134 }
135 n_zeros += is_zero;
136 if ((!is_zero && n_zeros > max_n_zeros)
137 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
138 {
139 i_max_n_zero = i_first_zero;
140 max_n_zeros = n_zeros;
141 i_first_zero = ARRAY_LEN (a->as_u16);
142 n_zeros = 0;
143 }
144 }
145
146 last_double_colon = 0;
147 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
148 {
149 if (i == i_max_n_zero && max_n_zeros > 1)
150 {
151 s = format (s, "::");
152 i += max_n_zeros - 1;
153 last_double_colon = 1;
154 }
155 else
156 {
157 s = format (s, "%s%x",
158 (last_double_colon || i == 0) ? "" : ":",
159 clib_net_to_host_u16 (a->as_u16[i]));
160 last_double_colon = 0;
161 }
162 }
163
164 return s;
165}
166
167/* Format an IP46 address. */
168u8 *
169format_ip46_address (u8 * s, va_list * args)
170{
171 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
172 ip46_type_t type = va_arg (*args, ip46_type_t);
173 int is_ip4 = 1;
174
175 switch (type)
176 {
177 case IP46_TYPE_ANY:
178 is_ip4 = ip46_address_is_ip4 (ip46);
179 break;
180 case IP46_TYPE_IP4:
181 is_ip4 = 1;
182 break;
183 case IP46_TYPE_IP6:
184 is_ip4 = 0;
185 break;
186 }
187
188 return is_ip4 ?
189 format (s, "%U", format_ip4_address, &ip46->ip4) :
190 format (s, "%U", format_ip6_address, &ip46->ip6);
191}
192
Florin Coras697faea2018-06-27 17:10:49 -0700193/*
194 * VPPCOM Utility Functions
195 */
196
Florin Coras697faea2018-06-27 17:10:49 -0700197
Florin Corasc9fbd662018-08-24 12:59:56 -0700198static svm_msg_q_t *
Florin Coras134a9962018-08-28 11:32:04 -0700199vcl_session_vpp_evt_q (vcl_worker_t * wrk, vcl_session_t * s)
Florin Corasc9fbd662018-08-24 12:59:56 -0700200{
201 if (vcl_session_is_ct (s))
Florin Coras134a9962018-08-28 11:32:04 -0700202 return wrk->vpp_event_queues[0];
Florin Corasc9fbd662018-08-24 12:59:56 -0700203 else
Florin Coras134a9962018-08-28 11:32:04 -0700204 return wrk->vpp_event_queues[s->tx_fifo->master_thread_index];
Florin Corasc9fbd662018-08-24 12:59:56 -0700205}
206
Florin Coras54693d22018-07-17 10:46:29 -0700207static void
208vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
209 session_handle_t handle, int retval)
210{
211 app_session_evt_t _app_evt, *app_evt = &_app_evt;
212 session_accepted_reply_msg_t *rmp;
213 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
214 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
215 rmp->handle = handle;
216 rmp->context = context;
217 rmp->retval = retval;
218 app_send_ctrl_evt_to_vpp (mq, app_evt);
219}
220
Florin Coras99368312018-08-02 10:45:44 -0700221static void
222vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
223 session_handle_t handle, int retval)
224{
225 app_session_evt_t _app_evt, *app_evt = &_app_evt;
226 session_disconnected_reply_msg_t *rmp;
227 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
228 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
229 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
230 rmp->handle = handle;
231 rmp->context = context;
232 rmp->retval = retval;
233 app_send_ctrl_evt_to_vpp (mq, app_evt);
234}
235
Florin Corasc9fbd662018-08-24 12:59:56 -0700236static void
237vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
238 session_handle_t handle, int retval)
239{
240 app_session_evt_t _app_evt, *app_evt = &_app_evt;
241 session_reset_reply_msg_t *rmp;
242 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
243 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
244 rmp->handle = handle;
245 rmp->context = context;
246 rmp->retval = retval;
247 app_send_ctrl_evt_to_vpp (mq, app_evt);
248}
249
Florin Coras54693d22018-07-17 10:46:29 -0700250static u32
Florin Coras134a9962018-08-28 11:32:04 -0700251vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700252{
253 vcl_session_t *session, *listen_session;
254 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700255 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700256 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700257
Florin Coras134a9962018-08-28 11:32:04 -0700258 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700259
Florin Coras134a9962018-08-28 11:32:04 -0700260 listen_session = vcl_session_table_lookup_listener (wrk,
261 mp->listener_handle);
Florin Coras54693d22018-07-17 10:46:29 -0700262 if (!listen_session)
263 {
264 svm_msg_q_t *evt_q;
265 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
266 clib_warning ("VCL<%d>: ERROR: couldn't find listen session: "
267 "unknown vpp listener handle %llx",
268 getpid (), mp->listener_handle);
269 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
270 VNET_API_ERROR_INVALID_ARGUMENT);
Florin Coras134a9962018-08-28 11:32:04 -0700271 vcl_session_free (wrk, session);
Florin Coras54693d22018-07-17 10:46:29 -0700272 return VCL_INVALID_SESSION_INDEX;
273 }
274
Florin Coras54693d22018-07-17 10:46:29 -0700275 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
276 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
277
278 if (mp->server_event_queue_address)
279 {
280 session->vpp_evt_q = uword_to_pointer (mp->client_event_queue_address,
281 svm_msg_q_t *);
282 session->our_evt_q = uword_to_pointer (mp->server_event_queue_address,
283 svm_msg_q_t *);
284 vcl_wait_for_memory (session->vpp_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -0700285 rx_fifo->master_session_index = session->session_index;
286 tx_fifo->master_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700287 rx_fifo->master_thread_index = vcl_get_worker_index ();
288 tx_fifo->master_thread_index = vcl_get_worker_index ();
Florin Coras134a9962018-08-28 11:32:04 -0700289 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700290 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700291 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700292 }
293 else
294 {
295 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
296 svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700297 rx_fifo->client_session_index = session->session_index;
298 tx_fifo->client_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700299 rx_fifo->client_thread_index = vcl_get_worker_index ();
300 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras99368312018-08-02 10:45:44 -0700301 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700302 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
303 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700304 }
305
306 session->vpp_handle = mp->handle;
307 session->client_context = mp->context;
308 session->rx_fifo = rx_fifo;
309 session->tx_fifo = tx_fifo;
310
311 session->session_state = STATE_ACCEPT;
312 session->transport.rmt_port = mp->port;
313 session->transport.is_ip4 = mp->is_ip4;
314 clib_memcpy (&session->transport.rmt_ip, mp->ip, sizeof (ip46_address_t));
315
Florin Coras134a9962018-08-28 11:32:04 -0700316 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700317 session->transport.lcl_port = listen_session->transport.lcl_port;
318 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700319 session->session_type = listen_session->session_type;
320 session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
Florin Coras54693d22018-07-17 10:46:29 -0700321
322 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
Florin Coras134a9962018-08-28 11:32:04 -0700323 " address %U port %d queue %p!", getpid (), mp->handle,
324 session->session_index,
Florin Coras54693d22018-07-17 10:46:29 -0700325 mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
326 mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
327 clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
328 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
329
Florin Coras134a9962018-08-28 11:32:04 -0700330 return session->session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700331}
332
333static u32
Florin Coras134a9962018-08-28 11:32:04 -0700334vcl_session_connected_handler (vcl_worker_t * wrk,
335 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700336{
Florin Coras99368312018-08-02 10:45:44 -0700337 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700338 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700339 vcl_session_t *session = 0;
340 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700341
342 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700343 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700344 if (!session)
345 {
346 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
347 "Invalid session index (%u)!",
348 getpid (), mp->handle, session_index);
349 return VCL_INVALID_SESSION_INDEX;
350 }
Florin Coras54693d22018-07-17 10:46:29 -0700351 if (mp->retval)
352 {
Florin Coras070453d2018-08-24 17:04:27 -0700353 clib_warning ("VCL<%d>: ERROR: sid %u: connect failed! %U", getpid (),
Florin Coras21795132018-09-09 09:40:51 -0700354 session_index, format_api_error, ntohl (mp->retval));
Florin Coras070453d2018-08-24 17:04:27 -0700355 session->session_state = STATE_FAILED;
356 session->vpp_handle = mp->handle;
357 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700358 }
359
Florin Coras460dce62018-07-27 05:45:06 -0700360 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
361 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
362 vcl_wait_for_memory (rx_fifo);
363 rx_fifo->client_session_index = session_index;
364 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700365 rx_fifo->client_thread_index = vcl_get_worker_index ();
366 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700367
Florin Coras54693d22018-07-17 10:46:29 -0700368 if (mp->client_event_queue_address)
369 {
370 session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
371 svm_msg_q_t *);
372 session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
373 svm_msg_q_t *);
Florin Coras99368312018-08-02 10:45:44 -0700374
Florin Coras134a9962018-08-28 11:32:04 -0700375 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700376 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700377 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700378 }
379 else
Florin Coras99368312018-08-02 10:45:44 -0700380 {
381 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
382 svm_msg_q_t *);
383 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700384 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
385 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700386 }
Florin Coras54693d22018-07-17 10:46:29 -0700387
Florin Coras54693d22018-07-17 10:46:29 -0700388 session->rx_fifo = rx_fifo;
389 session->tx_fifo = tx_fifo;
390 session->vpp_handle = mp->handle;
391 session->transport.is_ip4 = mp->is_ip4;
392 clib_memcpy (&session->transport.lcl_ip, mp->lcl_ip,
393 sizeof (session->transport.lcl_ip));
394 session->transport.lcl_port = mp->lcl_port;
395 session->session_state = STATE_CONNECT;
396
397 /* Add it to lookup table */
Florin Coras134a9962018-08-28 11:32:04 -0700398 hash_set (wrk->session_index_by_vpp_handles, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700399
400 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
401 "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
402 getpid (), mp->handle, session_index, session->rx_fifo,
403 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700404
Florin Coras54693d22018-07-17 10:46:29 -0700405 return session_index;
406}
407
Florin Corasc9fbd662018-08-24 12:59:56 -0700408static u32
Florin Coras134a9962018-08-28 11:32:04 -0700409vcl_session_reset_handler (vcl_worker_t * wrk,
410 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700411{
412 vcl_session_t *session;
413 u32 sid;
414
Florin Coras134a9962018-08-28 11:32:04 -0700415 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
416 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700417 if (!session)
418 {
419 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
420 return VCL_INVALID_SESSION_INDEX;
421 }
422 session->session_state = STATE_CLOSE_ON_EMPTY;
423 VDBG (0, "reset handle 0x%llx, sid %u ", reset_msg->handle, sid);
Florin Coras134a9962018-08-28 11:32:04 -0700424 vcl_send_session_reset_reply (vcl_session_vpp_evt_q (wrk, session),
Florin Corasc9fbd662018-08-24 12:59:56 -0700425 vcm->my_client_index, reset_msg->handle, 0);
426 return sid;
427}
428
Florin Coras60116992018-08-27 09:52:18 -0700429static u32
Florin Coras134a9962018-08-28 11:32:04 -0700430vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700431{
432 vcl_session_t *session;
433 u32 sid = mp->context;
434
Florin Coras134a9962018-08-28 11:32:04 -0700435 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700436 if (mp->retval)
437 {
438 VDBG (0, "VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: bind failed: %U",
439 getpid (), mp->handle, sid, format_api_error, ntohl (mp->retval));
440 if (session)
441 {
442 session->session_state = STATE_FAILED;
443 session->vpp_handle = mp->handle;
444 return sid;
445 }
446 else
447 {
448 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
449 "Invalid session index (%u)!",
450 getpid (), mp->handle, sid);
451 return VCL_INVALID_SESSION_INDEX;
452 }
453 }
454
455 session->vpp_handle = mp->handle;
456 session->transport.is_ip4 = mp->lcl_is_ip4;
457 clib_memcpy (&session->transport.lcl_ip, mp->lcl_ip,
458 sizeof (ip46_address_t));
459 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700460 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700461 session->session_state = STATE_LISTEN;
462
463 if (session->is_dgram)
464 {
465 svm_fifo_t *rx_fifo, *tx_fifo;
466 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
467 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
468 rx_fifo->client_session_index = sid;
469 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
470 tx_fifo->client_session_index = sid;
471 session->rx_fifo = rx_fifo;
472 session->tx_fifo = tx_fifo;
473 }
474
475 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: bind succeeded!",
476 getpid (), mp->handle, sid);
477 return sid;
478}
479
Florin Coras86f04502018-09-12 16:08:01 -0700480static int
481vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700482{
483 session_accepted_msg_t *accepted_msg;
484 session_disconnected_msg_t *disconnected_msg;
485 vcl_session_msg_t *vcl_msg;
486 vcl_session_t *session;
487 u64 handle;
488 u32 sid;
489
490 switch (e->event_type)
491 {
492 case FIFO_EVENT_APP_RX:
Florin Coras86f04502018-09-12 16:08:01 -0700493 case FIFO_EVENT_APP_TX:
494 case SESSION_IO_EVT_CT_RX:
495 case SESSION_IO_EVT_CT_TX:
496 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700497 break;
498 case SESSION_CTRL_EVT_ACCEPTED:
499 accepted_msg = (session_accepted_msg_t *) e->data;
500 handle = accepted_msg->listener_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700501 session = vcl_session_table_lookup_listener (wrk, handle);
Florin Coras54693d22018-07-17 10:46:29 -0700502 if (!session)
503 {
504 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
505 "listener handle %llx", getpid (), handle);
506 break;
507 }
508
509 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
510 vcl_msg->accepted_msg = *accepted_msg;
511 break;
512 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700513 vcl_session_connected_handler (wrk,
514 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700515 break;
516 case SESSION_CTRL_EVT_DISCONNECTED:
517 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras134a9962018-08-28 11:32:04 -0700518 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
519 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700520 if (!session)
521 {
522 VDBG (0, "request to disconnect unknown handle 0x%llx",
523 disconnected_msg->handle);
524 break;
525 }
Florin Coras54693d22018-07-17 10:46:29 -0700526 session->session_state = STATE_DISCONNECT;
Florin Coras86f04502018-09-12 16:08:01 -0700527 VDBG (0, "disconnected handle 0x%llx, sid %u", disconnected_msg->handle,
Florin Corasc9fbd662018-08-24 12:59:56 -0700528 sid);
529 break;
530 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700531 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700532 break;
533 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700534 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700535 break;
536 default:
537 clib_warning ("unhandled %u", e->event_type);
538 }
539 return VPPCOM_OK;
540}
541
Florin Coras697faea2018-06-27 17:10:49 -0700542static inline int
543vppcom_wait_for_session_state_change (u32 session_index,
544 session_state_t state,
545 f64 wait_for_time)
546{
Florin Coras134a9962018-08-28 11:32:04 -0700547 vcl_worker_t *wrk = vcl_worker_get_current ();
548 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700549 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700550 svm_msg_q_msg_t msg;
551 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400552
Florin Coras697faea2018-06-27 17:10:49 -0700553 do
Dave Wallace543852a2017-08-03 02:11:34 -0400554 {
Florin Coras134a9962018-08-28 11:32:04 -0700555 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700556 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700557 {
Florin Coras070453d2018-08-24 17:04:27 -0700558 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700559 }
560 if (session->session_state & state)
561 {
Florin Coras697faea2018-06-27 17:10:49 -0700562 return VPPCOM_OK;
563 }
564 if (session->session_state & STATE_FAILED)
565 {
Florin Coras697faea2018-06-27 17:10:49 -0700566 return VPPCOM_ECONNREFUSED;
567 }
Florin Coras54693d22018-07-17 10:46:29 -0700568
Florin Coras134a9962018-08-28 11:32:04 -0700569 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -0700570 continue;
Florin Coras134a9962018-08-28 11:32:04 -0700571 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700572 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700573 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800574 }
Florin Coras134a9962018-08-28 11:32:04 -0700575 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800576
Florin Coras697faea2018-06-27 17:10:49 -0700577 VDBG (0, "VCL<%d>: timeout waiting for state 0x%x (%s)", getpid (), state,
578 vppcom_session_state_str (state));
579 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400580
Florin Coras697faea2018-06-27 17:10:49 -0700581 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500582}
583
Florin Coras697faea2018-06-27 17:10:49 -0700584static int
585vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400586{
Florin Coras697faea2018-06-27 17:10:49 -0700587 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400588
Florin Coras697faea2018-06-27 17:10:49 -0700589 if (vcm->app_state != STATE_APP_ENABLED)
590 {
591 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700592 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700593 if (PREDICT_FALSE (rv))
594 {
595 VDBG (0, "VCL<%d>: application session enable timed out! "
596 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
597 return rv;
598 }
599 }
600 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400601}
602
Florin Coras697faea2018-06-27 17:10:49 -0700603static int
604vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400605{
Florin Coras697faea2018-06-27 17:10:49 -0700606 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400607
Florin Coras697faea2018-06-27 17:10:49 -0700608 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -0700609 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -0700610 if (PREDICT_FALSE (rv))
611 {
612 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
613 getpid (), rv, vppcom_retval_str (rv));
614 return rv;
615 }
Dave Wallace543852a2017-08-03 02:11:34 -0400616
Florin Coras697faea2018-06-27 17:10:49 -0700617 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400618}
619
620static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700621vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400622{
Florin Coras134a9962018-08-28 11:32:04 -0700623 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700624 vcl_session_t *session = 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500625 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400626
Florin Corasab2f6db2018-08-31 14:31:41 -0700627 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700628 if (!session)
629 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500630
631 vpp_handle = session->vpp_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700632 vcl_session_table_del_listener (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500633 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700634 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500635
Florin Coras0d427d82018-06-27 03:24:07 -0700636 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
Florin Corasab2f6db2018-08-31 14:31:41 -0700637 " 0x%x (%s)", getpid (), vpp_handle, session_handle, STATE_DISCONNECT,
Florin Coras0d427d82018-06-27 03:24:07 -0700638 vppcom_session_state_str (STATE_DISCONNECT));
639 vcl_evt (VCL_EVT_UNBIND, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500640 vppcom_send_unbind_sock (vpp_handle);
641
Florin Coras070453d2018-08-24 17:04:27 -0700642 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400643}
644
Florin Coras697faea2018-06-27 17:10:49 -0700645static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700646vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400647{
Florin Coras134a9962018-08-28 11:32:04 -0700648 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -0700649 svm_msg_q_t *vpp_evt_q;
Florin Coras7e12d942018-06-27 14:32:43 -0700650 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500651 session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -0700652 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400653
Florin Corasab2f6db2018-08-31 14:31:41 -0700654 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -0700655 if (!session)
656 return VPPCOM_EBADFD;
657
Dave Wallace4878cbe2017-11-21 03:45:09 -0500658 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700659 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500660
Florin Coras0d427d82018-06-27 03:24:07 -0700661 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
Florin Corasab2f6db2018-08-31 14:31:41 -0700662 vpp_handle, session_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400663
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800664 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400665 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500666 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500667 "Cannot disconnect a listen socket!",
Florin Corasab2f6db2018-08-31 14:31:41 -0700668 getpid (), vpp_handle, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700669 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500670 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400671
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800672 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500673 {
Florin Coras134a9962018-08-28 11:32:04 -0700674 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras99368312018-08-02 10:45:44 -0700675 vcl_send_session_disconnected_reply (vpp_evt_q, vcm->my_client_index,
676 vpp_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700677 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
Florin Corasab2f6db2018-08-31 14:31:41 -0700678 "REPLY...", getpid (), vpp_handle, session_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400679 }
680 else
Dave Wallace227867f2017-11-13 21:21:53 -0500681 {
Florin Coras0d427d82018-06-27 03:24:07 -0700682 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
Florin Corasab2f6db2018-08-31 14:31:41 -0700683 getpid (), vpp_handle, session_handle);
684 vppcom_send_disconnect_session (vpp_handle);
Dave Wallace227867f2017-11-13 21:21:53 -0500685 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400686
Florin Coras070453d2018-08-24 17:04:27 -0700687 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400688}
689
Dave Wallace543852a2017-08-03 02:11:34 -0400690/*
691 * VPPCOM Public API functions
692 */
693int
694vppcom_app_create (char *app_name)
695{
Dave Wallace543852a2017-08-03 02:11:34 -0400696 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400697 int rv;
698
Florin Coras134a9962018-08-28 11:32:04 -0700699 if (!vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -0400700 {
Florin Coras134a9962018-08-28 11:32:04 -0700701 vcm->is_init = 1;
Dave Barach6a5adc32018-07-04 10:56:23 -0400702 vppcom_cfg (&vcm->cfg);
Florin Coras99368312018-08-02 10:45:44 -0700703 vcl_cfg = &vcm->cfg;
704
Florin Coras134a9962018-08-28 11:32:04 -0700705 vcm->main_cpu = pthread_self ();
Dave Wallace543852a2017-08-03 02:11:34 -0400706 vppcom_init_error_string_table ();
Florin Corasa332c462018-01-31 06:52:17 -0800707 svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
708 20 /* timeout in secs */ );
Florin Coras134a9962018-08-28 11:32:04 -0700709 pool_init_fixed (vcm->workers, vcl_cfg->max_workers);
Florin Corasde9f08b2018-09-07 14:32:58 -0700710 clib_spinlock_init (&vcm->workers_lock);
Florin Coras134a9962018-08-28 11:32:04 -0700711 vcl_worker_alloc_and_init ();
Dave Wallace543852a2017-08-03 02:11:34 -0400712 }
713
714 if (vcm->my_client_index == ~0)
715 {
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800716 /* API hookup and connect to VPP */
Dave Wallace048b1d62018-01-03 22:24:41 -0500717 vppcom_api_hookup ();
Florin Coras0d427d82018-06-27 03:24:07 -0700718 vcl_elog_init (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400719 vcm->app_state = STATE_APP_START;
720 rv = vppcom_connect_to_vpp (app_name);
721 if (rv)
722 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500723 clib_warning ("VCL<%d>: ERROR: couldn't connect to VPP!",
Dave Wallace2e005bb2017-11-07 01:21:39 -0500724 getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400725 return rv;
726 }
727
Florin Coras0d427d82018-06-27 03:24:07 -0700728 VDBG (0, "VCL<%d>: sending session enable", getpid ());
Dave Wallace048b1d62018-01-03 22:24:41 -0500729 rv = vppcom_app_session_enable ();
Dave Wallace543852a2017-08-03 02:11:34 -0400730 if (rv)
731 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500732 clib_warning ("VCL<%d>: ERROR: vppcom_app_session_enable() "
733 "failed!", getpid ());
Dave Wallace543852a2017-08-03 02:11:34 -0400734 return rv;
735 }
Dave Wallace543852a2017-08-03 02:11:34 -0400736
Florin Coras0d427d82018-06-27 03:24:07 -0700737 VDBG (0, "VCL<%d>: sending app attach", getpid ());
Dave Wallace048b1d62018-01-03 22:24:41 -0500738 rv = vppcom_app_attach ();
739 if (rv)
740 {
741 clib_warning ("VCL<%d>: ERROR: vppcom_app_attach() failed!",
742 getpid ());
743 return rv;
744 }
745
Florin Coras0d427d82018-06-27 03:24:07 -0700746 VDBG (0, "VCL<%d>: app_name '%s', my_client_index %d (0x%x)",
747 getpid (), app_name, vcm->my_client_index, vcm->my_client_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400748 }
Dave Wallace543852a2017-08-03 02:11:34 -0400749
750 return VPPCOM_OK;
751}
752
753void
754vppcom_app_destroy (void)
755{
Dave Wallace543852a2017-08-03 02:11:34 -0400756 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400757 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400758
759 if (vcm->my_client_index == ~0)
760 return;
761
Florin Coras0d427d82018-06-27 03:24:07 -0700762 VDBG (0, "VCL<%d>: detaching from VPP, my_client_index %d (0x%x)",
763 getpid (), vcm->my_client_index, vcm->my_client_index);
764 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800765
Florin Coras697faea2018-06-27 17:10:49 -0700766 vppcom_app_send_detach ();
Dave Wallacede910062018-03-20 09:22:13 -0400767 orig_app_timeout = vcm->cfg.app_timeout;
768 vcm->cfg.app_timeout = 2.0;
Florin Coras134a9962018-08-28 11:32:04 -0700769 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Dave Wallacede910062018-03-20 09:22:13 -0400770 vcm->cfg.app_timeout = orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400771 if (PREDICT_FALSE (rv))
Florin Coras0d427d82018-06-27 03:24:07 -0700772 VDBG (0, "VCL<%d>: application detach timed out! returning %d (%s)",
773 getpid (), rv, vppcom_retval_str (rv));
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800774
Florin Coras0d427d82018-06-27 03:24:07 -0700775 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400776 vl_client_disconnect_from_vlib ();
777 vcm->my_client_index = ~0;
778 vcm->app_state = STATE_APP_START;
779}
780
781int
Dave Wallacec04cbf12018-02-07 18:14:02 -0500782vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -0400783{
Florin Coras134a9962018-08-28 11:32:04 -0700784 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700785 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -0400786
Florin Coras134a9962018-08-28 11:32:04 -0700787 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -0400788
Florin Coras7e12d942018-06-27 14:32:43 -0700789 session->session_type = proto;
790 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500791 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -0700792 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -0400793
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800794 if (is_nonblocking)
795 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -0400796
Florin Coras7e12d942018-06-27 14:32:43 -0700797 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
798 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800799
Florin Coras134a9962018-08-28 11:32:04 -0700800 VDBG (0, "VCL<%d>: sid %u", getpid (), session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800801
Florin Coras134a9962018-08-28 11:32:04 -0700802 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -0400803}
804
805int
Florin Coras134a9962018-08-28 11:32:04 -0700806vppcom_session_close (uint32_t session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400807{
Florin Coras134a9962018-08-28 11:32:04 -0700808 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700809 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700810 u8 is_vep, is_vep_session;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400811 session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -0700812 u32 next_sh, vep_sh;
813 int rv = VPPCOM_OK;
814 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400815
Florin Coras134a9962018-08-28 11:32:04 -0700816 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700817 if (!session)
818 return VPPCOM_EBADFD;
819
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400820 is_vep = session->is_vep;
821 is_vep_session = session->is_vep_session;
Florin Coras134a9962018-08-28 11:32:04 -0700822 next_sh = session->vep.next_sh;
823 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -0700824 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -0500825 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400826
827 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500828 {
829 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500830 clib_warning ("VCL<%d>: vep_idx %u / sid %u: "
831 "closing epoll session...",
Florin Coras134a9962018-08-28 11:32:04 -0700832 getpid (), session_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500833 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500834 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %d: "
835 "closing session...",
Florin Coras134a9962018-08-28 11:32:04 -0700836 getpid (), vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500837 }
Dave Wallace543852a2017-08-03 02:11:34 -0400838
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400839 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -0400840 {
Florin Coras134a9962018-08-28 11:32:04 -0700841 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -0400842 {
Florin Coras134a9962018-08-28 11:32:04 -0700843 rv = vppcom_epoll_ctl (session_handle, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700844 if (PREDICT_FALSE (rv < 0))
845 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
846 "vep_idx %u failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700847 getpid (), vpp_handle, next_sh, vep_sh,
Florin Coras0d427d82018-06-27 03:24:07 -0700848 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400849
Florin Coras134a9962018-08-28 11:32:04 -0700850 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -0400851 }
852 }
853 else
854 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400855 if (is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400856 {
Florin Coras134a9962018-08-28 11:32:04 -0700857 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, session_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700858 if (rv < 0)
859 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
860 "vep_idx %u failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700861 getpid (), vpp_handle, session_handle,
862 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400863 }
864
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800865 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400866 {
Florin Coras134a9962018-08-28 11:32:04 -0700867 rv = vppcom_session_unbind (session_handle);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800868 if (PREDICT_FALSE (rv < 0))
Florin Coras0d427d82018-06-27 03:24:07 -0700869 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: listener unbind "
870 "failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700871 getpid (), vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -0700872 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400873 }
Florin Coras070453d2018-08-24 17:04:27 -0700874 else if (state & STATE_OPEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400875 {
Florin Coras134a9962018-08-28 11:32:04 -0700876 rv = vppcom_session_disconnect (session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500877 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -0500878 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500879 "session disconnect failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700880 getpid (), vpp_handle, session_handle,
Dave Wallaceee45d412017-11-24 21:44:06 -0500881 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400882 }
Dave Wallace19481612017-09-15 18:47:44 -0400883 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500884
Florin Coras99368312018-08-02 10:45:44 -0700885 if (vcl_session_is_ct (session))
886 {
887 vcl_cut_through_registration_t *ctr;
888 uword mq_addr;
889
890 mq_addr = pointer_to_uword (session->our_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -0700891 ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
Florin Coras99368312018-08-02 10:45:44 -0700892 ASSERT (ctr);
893 if (ctr->epoll_evt_conn_index != ~0)
Florin Coras134a9962018-08-28 11:32:04 -0700894 vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
Florin Coras99368312018-08-02 10:45:44 -0700895 VDBG (0, "Removing ct registration %u",
Florin Coras134a9962018-08-28 11:32:04 -0700896 vcl_ct_registration_index (wrk, ctr));
897 vcl_ct_registration_del (wrk, ctr);
898 vcl_ct_registration_lookup_del (wrk, mq_addr);
899 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700900 }
Florin Coras54693d22018-07-17 10:46:29 -0700901
Dave Wallaceee45d412017-11-24 21:44:06 -0500902 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500903 {
Florin Coras134a9962018-08-28 11:32:04 -0700904 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500905 }
Florin Coras134a9962018-08-28 11:32:04 -0700906 vcl_session_free (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500907
908 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500909 {
910 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500911 clib_warning ("VCL<%d>: vep_idx %u / sid %u: epoll session removed.",
Florin Coras134a9962018-08-28 11:32:04 -0700912 getpid (), session_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500913 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500914 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: session removed.",
Florin Coras134a9962018-08-28 11:32:04 -0700915 getpid (), vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500916 }
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800917
Florin Coras0d427d82018-06-27 03:24:07 -0700918 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800919
Dave Wallace543852a2017-08-03 02:11:34 -0400920 return rv;
921}
922
923int
Florin Coras134a9962018-08-28 11:32:04 -0700924vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -0400925{
Florin Coras134a9962018-08-28 11:32:04 -0700926 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700927 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400928
929 if (!ep || !ep->ip)
930 return VPPCOM_EINVAL;
931
Florin Coras134a9962018-08-28 11:32:04 -0700932 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700933 if (!session)
934 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -0400935
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400936 if (session->is_vep)
937 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500938 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -0700939 "bind to an epoll session!", getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700940 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400941 }
942
Florin Coras7e12d942018-06-27 14:32:43 -0700943 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -0700944 if (ep->is_ip4)
945 clib_memcpy (&session->transport.lcl_ip.ip4, ep->ip,
946 sizeof (ip4_address_t));
947 else
948 clib_memcpy (&session->transport.lcl_ip.ip6, ep->ip,
949 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -0700950 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -0700951
Florin Coras0d427d82018-06-27 03:24:07 -0700952 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
Florin Coras134a9962018-08-28 11:32:04 -0700953 "proto %s", getpid (), session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -0700954 session->transport.is_ip4 ? "IPv4" : "IPv6",
955 format_ip46_address, &session->transport.lcl_ip,
956 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
957 clib_net_to_host_u16 (session->transport.lcl_port),
958 session->session_type ? "UDP" : "TCP");
Florin Coras0d427d82018-06-27 03:24:07 -0700959 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -0700960
961 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -0700962 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -0700963
Florin Coras070453d2018-08-24 17:04:27 -0700964 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400965}
966
967int
Florin Coras134a9962018-08-28 11:32:04 -0700968vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -0400969{
Florin Coras134a9962018-08-28 11:32:04 -0700970 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700971 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -0500972 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -0700973 int rv;
974
Florin Coras134a9962018-08-28 11:32:04 -0700975 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -0700976 if (!listen_session)
977 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -0400978
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -0800979 if (q_len == 0 || q_len == ~0)
980 q_len = vcm->cfg.listen_queue_size;
981
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400982 if (listen_session->is_vep)
983 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500984 clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
Florin Coras134a9962018-08-28 11:32:04 -0700985 "epoll session!", getpid (), listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -0700986 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400987 }
988
Dave Wallaceee45d412017-11-24 21:44:06 -0500989 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700990 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -0400991 {
Florin Coras0d427d82018-06-27 03:24:07 -0700992 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
Florin Coras134a9962018-08-28 11:32:04 -0700993 getpid (), listen_vpp_handle, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -0700994 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -0400995 }
996
Florin Coras0d427d82018-06-27 03:24:07 -0700997 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
Florin Coras134a9962018-08-28 11:32:04 -0700998 "request...", getpid (), listen_vpp_handle, listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -0400999
Florin Coras070453d2018-08-24 17:04:27 -07001000 /*
1001 * Send listen request to vpp and wait for reply
1002 */
Florin Coras134a9962018-08-28 11:32:04 -07001003 vppcom_send_bind_sock (listen_session);
1004 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1005 STATE_LISTEN,
1006 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001007
Florin Coras070453d2018-08-24 17:04:27 -07001008 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001009 {
Florin Coras134a9962018-08-28 11:32:04 -07001010 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07001011 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
1012 "returning %d (%s)", getpid (), listen_session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001013 listen_sh, rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001014 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001015 }
1016
Florin Coras070453d2018-08-24 17:04:27 -07001017 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001018}
1019
Florin Coras134a9962018-08-28 11:32:04 -07001020static int
1021validate_args_session_accept_ (vcl_worker_t * wrk,
1022 vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001023{
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001024 /* Input validation - expects spinlock on sessions_lockp */
1025 if (listen_session->is_vep)
1026 {
1027 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
Florin Coras134a9962018-08-28 11:32:04 -07001028 "epoll session!", getpid (),
1029 listen_session->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001030 return VPPCOM_EBADFD;
1031 }
1032
Florin Coras7e12d942018-06-27 14:32:43 -07001033 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001034 {
1035 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1036 "not in listen state! state 0x%x (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001037 listen_session->vpp_handle, listen_session->session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001038 listen_session->session_state,
1039 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001040 return VPPCOM_EBADFD;
1041 }
1042 return VPPCOM_OK;
1043}
1044
1045int
Florin Coras134a9962018-08-28 11:32:04 -07001046vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001047 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001048{
Florin Coras134a9962018-08-28 11:32:04 -07001049 u32 client_session_index = ~0, listen_session_index;
1050 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001051 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001052 vcl_session_t *listen_session = 0;
1053 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001054 svm_msg_q_t *vpp_evt_q;
1055 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001056 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001057 svm_msg_q_msg_t msg;
1058 session_event_t *e;
1059 u8 is_nonblocking;
1060 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001061
Florin Coras134a9962018-08-28 11:32:04 -07001062 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001063 if (!listen_session)
1064 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001065
Florin Coras134a9962018-08-28 11:32:04 -07001066 listen_session_index = listen_session->session_index;
1067 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001068 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001069
Florin Coras54693d22018-07-17 10:46:29 -07001070 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001071 {
Florin Coras54693d22018-07-17 10:46:29 -07001072 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1073 accepted_msg = evt->accepted_msg;
1074 goto handle;
1075 }
1076
1077 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1078 VCL_SESS_ATTR_NONBLOCK);
Florin Coras134a9962018-08-28 11:32:04 -07001079 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
Florin Coras54693d22018-07-17 10:46:29 -07001080 return VPPCOM_EAGAIN;
1081
1082 while (1)
1083 {
Florin Coras134a9962018-08-28 11:32:04 -07001084 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001085 return VPPCOM_EAGAIN;
1086
Florin Coras134a9962018-08-28 11:32:04 -07001087 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001088 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001089 {
Florin Coras54693d22018-07-17 10:46:29 -07001090 clib_warning ("discarded event: %u", e->event_type);
Florin Coras134a9962018-08-28 11:32:04 -07001091 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001092 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001093 }
Florin Coras54693d22018-07-17 10:46:29 -07001094 clib_memcpy (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001095 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001096 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001097 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001098
Florin Coras54693d22018-07-17 10:46:29 -07001099handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001100
Florin Coras134a9962018-08-28 11:32:04 -07001101 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1102 listen_session = vcl_session_get (wrk, listen_session_index);
1103 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001104
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001105 if (flags & O_NONBLOCK)
1106 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001107
Florin Coras54693d22018-07-17 10:46:29 -07001108 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras0d427d82018-06-27 03:24:07 -07001109 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
1110 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
Florin Coras134a9962018-08-28 11:32:04 -07001111 getpid (), listen_vpp_handle, listen_session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001112 client_session->vpp_handle, client_session_index,
1113 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1114 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001115
Dave Wallace048b1d62018-01-03 22:24:41 -05001116 if (ep)
1117 {
Florin Coras7e12d942018-06-27 14:32:43 -07001118 ep->is_ip4 = client_session->transport.is_ip4;
1119 ep->port = client_session->transport.rmt_port;
1120 if (client_session->transport.is_ip4)
1121 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip4,
Dave Wallace048b1d62018-01-03 22:24:41 -05001122 sizeof (ip4_address_t));
1123 else
Florin Coras7e12d942018-06-27 14:32:43 -07001124 clib_memcpy (ep->ip, &client_session->transport.rmt_ip.ip6,
Dave Wallace048b1d62018-01-03 22:24:41 -05001125 sizeof (ip6_address_t));
1126 }
Dave Wallace60caa062017-11-10 17:07:13 -05001127
Florin Coras54693d22018-07-17 10:46:29 -07001128 if (accepted_msg.server_event_queue_address)
1129 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1130 svm_msg_q_t *);
1131 else
1132 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001133
Florin Coras54693d22018-07-17 10:46:29 -07001134 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1135 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001136
Florin Coras54693d22018-07-17 10:46:29 -07001137 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx, "
1138 "sid %u connection from peer %s address %U port %u to local %s "
1139 "address %U port %u", getpid (), listen_vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001140 listen_session_handle, client_session->vpp_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001141 client_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001142 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1143 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001144 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001145 clib_net_to_host_u16 (client_session->transport.rmt_port),
1146 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1147 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001148 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001149 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001150 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1151 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001152
Florin Corasab2f6db2018-08-31 14:31:41 -07001153 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001154}
1155
1156int
Florin Coras134a9962018-08-28 11:32:04 -07001157vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001158{
Florin Coras134a9962018-08-28 11:32:04 -07001159 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001160 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001161 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001162 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001163
Florin Coras134a9962018-08-28 11:32:04 -07001164 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001165 if (!session)
1166 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001167 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001168
1169 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001170 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001171 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001172 "connect on an epoll session!", getpid (),
1173 session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001174 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001175 }
1176
Florin Coras7e12d942018-06-27 14:32:43 -07001177 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001178 {
Florin Coras0d427d82018-06-27 03:24:07 -07001179 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1180 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001181 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001182 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001183 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001184 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001185 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001186 clib_net_to_host_u16 (session->transport.rmt_port),
1187 session->session_type ? "UDP" : "TCP", session->session_state,
1188 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001189 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001190 }
1191
Florin Coras7e12d942018-06-27 14:32:43 -07001192 session->transport.is_ip4 = server_ep->is_ip4;
1193 if (session->transport.is_ip4)
1194 clib_memcpy (&session->transport.rmt_ip.ip4, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -04001195 sizeof (ip4_address_t));
1196 else
Florin Coras7e12d942018-06-27 14:32:43 -07001197 clib_memcpy (&session->transport.rmt_ip.ip6, server_ep->ip,
Dave Wallaced239f8d2018-06-19 13:37:30 -04001198 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001199 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001200
Florin Coras0d427d82018-06-27 03:24:07 -07001201 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1202 "port %d proto %s",
Florin Coras134a9962018-08-28 11:32:04 -07001203 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001204 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001205 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001206 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001207 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001208 clib_net_to_host_u16 (session->transport.rmt_port),
1209 session->session_type ? "UDP" : "TCP");
Dave Wallace543852a2017-08-03 02:11:34 -04001210
Florin Coras070453d2018-08-24 17:04:27 -07001211 /*
1212 * Send connect request and wait for reply from vpp
1213 */
Florin Coras134a9962018-08-28 11:32:04 -07001214 vppcom_send_connect_sock (session);
Florin Coras070453d2018-08-24 17:04:27 -07001215 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1216 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001217
Florin Coras134a9962018-08-28 11:32:04 -07001218 session = vcl_session_get (wrk, session_index);
Dave Wallace7876d392017-10-19 03:53:57 -04001219
Florin Coras070453d2018-08-24 17:04:27 -07001220 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001221 {
Dave Wallaceee45d412017-11-24 21:44:06 -05001222 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001223 {
1224 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001225 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
Florin Coras134a9962018-08-28 11:32:04 -07001226 "failed! returning %d (%s)", getpid (),
1227 session->vpp_handle, session_handle, rv,
1228 vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001229 else
1230 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1231 "returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001232 session_handle, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001233 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001234 }
Florin Coras0d427d82018-06-27 03:24:07 -07001235 else
1236 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
Florin Coras134a9962018-08-28 11:32:04 -07001237 getpid (), session->vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -05001238
Dave Wallace4878cbe2017-11-21 03:45:09 -05001239 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001240}
1241
Florin Coras54693d22018-07-17 10:46:29 -07001242static u8
1243vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1244{
1245 if (!is_ct)
1246 return (e->event_type == FIFO_EVENT_APP_RX
1247 && e->fifo->client_session_index == sid);
1248 else
1249 return (e->event_type == SESSION_IO_EVT_CT_TX);
1250}
1251
Florin Coras460dce62018-07-27 05:45:06 -07001252static inline u8
1253vcl_session_is_readable (vcl_session_t * s)
1254{
1255 return ((s->session_state & STATE_OPEN)
1256 || (s->session_state == STATE_LISTEN
1257 && s->session_type == VPPCOM_PROTO_UDP));
1258}
1259
Steven58f464e2017-10-25 12:33:12 -07001260static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001261vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001262 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001263{
Florin Coras134a9962018-08-28 11:32:04 -07001264 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001265 int n_read = 0, rv, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001266 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001267 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001268 svm_msg_q_msg_t msg;
1269 session_event_t *e;
1270 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001271 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001272
Florin Coras070453d2018-08-24 17:04:27 -07001273 if (PREDICT_FALSE (!buf))
1274 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001275
Florin Coras134a9962018-08-28 11:32:04 -07001276 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001277 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001278 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001279
Florin Coras460dce62018-07-27 05:45:06 -07001280 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001281 {
Florin Coras460dce62018-07-27 05:45:06 -07001282 session_state_t state = s->session_state;
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001283 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001284
Florin Coras0d427d82018-06-27 03:24:07 -07001285 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1286 "state 0x%x (%s), returning %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001287 getpid (), s->vpp_handle, session_handle, state,
Florin Coras0d427d82018-06-27 03:24:07 -07001288 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001289 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001290 }
1291
Florin Coras2cba8532018-09-11 16:33:36 -07001292 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001293 is_ct = vcl_session_is_ct (s);
1294 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras2cba8532018-09-11 16:33:36 -07001295 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001296 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001297
Florin Coras54693d22018-07-17 10:46:29 -07001298 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001299 {
Florin Coras54693d22018-07-17 10:46:29 -07001300 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001301 {
Florin Coras41c9e042018-09-11 00:10:41 -07001302 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001303 return VPPCOM_EWOULDBLOCK;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001304 }
Florin Coras41c9e042018-09-11 00:10:41 -07001305 while (svm_fifo_is_empty (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001306 {
Florin Coras41c9e042018-09-11 00:10:41 -07001307 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001308 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001309 if (svm_msg_q_is_empty (mq))
1310 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001311
Florin Coras54693d22018-07-17 10:46:29 -07001312 svm_msg_q_sub_w_lock (mq, &msg);
1313 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001314 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001315 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras54693d22018-07-17 10:46:29 -07001316 {
Florin Coras86f04502018-09-12 16:08:01 -07001317 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001318 svm_msg_q_free_msg (mq, &msg);
1319 continue;
1320 }
Florin Coras54693d22018-07-17 10:46:29 -07001321 svm_msg_q_free_msg (mq, &msg);
Florin Coras41c9e042018-09-11 00:10:41 -07001322
Florin Coras60f1fc12018-08-16 14:57:31 -07001323 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1324 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07001325 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001326 }
Florin Coras54693d22018-07-17 10:46:29 -07001327
Florin Coras460dce62018-07-27 05:45:06 -07001328 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001329 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001330 else
Florin Coras99368312018-08-02 10:45:44 -07001331 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001332
Florin Coras41c9e042018-09-11 00:10:41 -07001333 if (svm_fifo_is_empty (rx_fifo))
1334 svm_fifo_unset_event (rx_fifo);
1335
Florin Coras58c101a2018-10-06 13:49:16 -07001336 if (is_ct && svm_fifo_want_tx_evt (rx_fifo))
Florin Coras99368312018-08-02 10:45:44 -07001337 {
Florin Coras58c101a2018-10-06 13:49:16 -07001338 svm_fifo_set_want_tx_evt (s->rx_fifo, 0);
1339 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo, SESSION_IO_EVT_CT_RX,
1340 SVM_Q_WAIT);
Florin Coras99368312018-08-02 10:45:44 -07001341 }
Florin Coras54693d22018-07-17 10:46:29 -07001342
Florin Coras2cba8532018-09-11 16:33:36 -07001343 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes from (%p)",
1344 getpid (), s->vpp_handle, session_handle, n_read, rx_fifo);
1345
Florin Coras54693d22018-07-17 10:46:29 -07001346 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001347}
1348
Steven58f464e2017-10-25 12:33:12 -07001349int
Florin Coras134a9962018-08-28 11:32:04 -07001350vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001351{
Florin Coras134a9962018-08-28 11:32:04 -07001352 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001353}
1354
1355static int
Florin Coras134a9962018-08-28 11:32:04 -07001356vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001357{
Florin Coras134a9962018-08-28 11:32:04 -07001358 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001359}
1360
Florin Coras2cba8532018-09-11 16:33:36 -07001361int
1362vppcom_session_read_segments (uint32_t session_handle,
1363 vppcom_data_segments_t ds)
1364{
1365 vcl_worker_t *wrk = vcl_worker_get_current ();
1366 int n_read = 0, rv, is_nonblocking;
1367 vcl_session_t *s = 0;
1368 svm_fifo_t *rx_fifo;
1369 svm_msg_q_msg_t msg;
1370 session_event_t *e;
1371 svm_msg_q_t *mq;
1372 u8 is_ct;
1373
1374 s = vcl_session_get_w_handle (wrk, session_handle);
1375 if (PREDICT_FALSE (!s || s->is_vep))
1376 return VPPCOM_EBADFD;
1377
1378 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
1379 {
1380 session_state_t state = s->session_state;
1381 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1382 return rv;
1383 }
1384
1385 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1386 is_ct = vcl_session_is_ct (s);
1387 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1388 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001389 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001390
1391 if (svm_fifo_is_empty (rx_fifo))
1392 {
1393 if (is_nonblocking)
1394 {
1395 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001396 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001397 }
1398 while (svm_fifo_is_empty (rx_fifo))
1399 {
1400 svm_fifo_unset_event (rx_fifo);
1401 svm_msg_q_lock (mq);
1402 if (svm_msg_q_is_empty (mq))
1403 svm_msg_q_wait (mq);
1404
1405 svm_msg_q_sub_w_lock (mq, &msg);
1406 e = svm_msg_q_msg_data (mq, &msg);
1407 svm_msg_q_unlock (mq);
1408 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1409 {
Florin Coras86f04502018-09-12 16:08:01 -07001410 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001411 svm_msg_q_free_msg (mq, &msg);
1412 continue;
1413 }
1414 svm_msg_q_free_msg (mq, &msg);
1415
1416 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1417 return 0;
1418 }
1419 }
1420
1421 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_segment_t *) ds);
1422 svm_fifo_unset_event (rx_fifo);
1423
1424 if (is_ct && n_read + svm_fifo_max_dequeue (rx_fifo) == rx_fifo->nitems)
1425 {
1426 /* If the peer is not polling send notification */
1427 if (!svm_fifo_has_event (s->rx_fifo))
1428 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1429 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1430 }
1431
1432 return n_read;
1433}
1434
1435void
1436vppcom_session_free_segments (uint32_t session_handle,
1437 vppcom_data_segments_t ds)
1438{
1439 vcl_worker_t *wrk = vcl_worker_get_current ();
1440 vcl_session_t *s;
1441
1442 s = vcl_session_get_w_handle (wrk, session_handle);
1443 if (PREDICT_FALSE (!s || s->is_vep))
1444 return;
1445
1446 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_segment_t *) ds);
1447}
1448
Dave Wallace543852a2017-08-03 02:11:34 -04001449static inline int
Florin Coras54693d22018-07-17 10:46:29 -07001450vppcom_session_read_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001451{
Dave Wallace543852a2017-08-03 02:11:34 -04001452 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001453 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001454 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001455 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Florin Coras134a9962018-08-28 11:32:04 -07001456 "epoll session!", getpid (), session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001457 return VPPCOM_EBADFD;
1458 }
1459
1460 if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1461 {
1462 session_state_t state = session->session_state;
1463 int rv;
1464
1465 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1466
1467 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1468 " state 0x%x (%s), returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001469 session->vpp_handle, session->session_index, state,
Florin Coras54693d22018-07-17 10:46:29 -07001470 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1471 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001472 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001473
Florin Coras7e12d942018-06-27 14:32:43 -07001474 if (session->session_state & STATE_LISTEN)
Florin Coras54693d22018-07-17 10:46:29 -07001475 return clib_fifo_elts (session->accept_evts_fifo);
1476
1477 return svm_fifo_max_dequeue (session->rx_fifo);
1478}
1479
Florin Coras2cba8532018-09-11 16:33:36 -07001480int
1481vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1482{
1483 u32 first_copy = clib_min (ds[0].len, max_bytes);
1484 clib_memcpy (buf, ds[0].data, first_copy);
1485 if (first_copy < max_bytes)
1486 {
1487 clib_memcpy (buf + first_copy, ds[1].data,
1488 clib_min (ds[1].len, max_bytes - first_copy));
1489 }
1490 return 0;
1491}
1492
Florin Coras54693d22018-07-17 10:46:29 -07001493static u8
1494vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1495{
1496 if (!is_ct)
1497 return (e->event_type == FIFO_EVENT_APP_TX
1498 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001499 else
Florin Coras54693d22018-07-17 10:46:29 -07001500 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001501}
1502
1503int
Florin Coras134a9962018-08-28 11:32:04 -07001504vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
Dave Wallace543852a2017-08-03 02:11:34 -04001505{
Florin Coras134a9962018-08-28 11:32:04 -07001506 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001507 int rv, n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001508 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001509 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001510 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001511 svm_msg_q_msg_t msg;
1512 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001513 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001514 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001515
Florin Coras070453d2018-08-24 17:04:27 -07001516 if (PREDICT_FALSE (!buf))
1517 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001518
Florin Coras134a9962018-08-28 11:32:04 -07001519 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001520 if (PREDICT_FALSE (!s))
1521 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001522
Florin Coras460dce62018-07-27 05:45:06 -07001523 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001524 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001525 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001526 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001527 getpid (), s->vpp_handle, session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001528
Florin Coras070453d2018-08-24 17:04:27 -07001529 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001530 }
1531
Florin Coras0e88e852018-09-17 22:09:02 -07001532 if (PREDICT_FALSE (!(s->session_state & STATE_OPEN)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001533 {
Florin Coras460dce62018-07-27 05:45:06 -07001534 session_state_t state = s->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001535 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Florin Coras0d427d82018-06-27 03:24:07 -07001536 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
Florin Coras0e88e852018-09-17 22:09:02 -07001537 "state 0x%x (%s)", getpid (), s->vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001538 state, vppcom_session_state_str (state));
Florin Coras070453d2018-08-24 17:04:27 -07001539 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001540 }
1541
Florin Coras0e88e852018-09-17 22:09:02 -07001542 tx_fifo = s->tx_fifo;
1543 is_ct = vcl_session_is_ct (s);
1544 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1545 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001546 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001547 {
Florin Coras54693d22018-07-17 10:46:29 -07001548 if (is_nonblocking)
1549 {
Florin Coras070453d2018-08-24 17:04:27 -07001550 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001551 }
Florin Coras60f1fc12018-08-16 14:57:31 -07001552 while (svm_fifo_is_full (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001553 {
Florin Coras0e88e852018-09-17 22:09:02 -07001554 svm_fifo_set_want_tx_evt (tx_fifo, 1);
Florin Coras99368312018-08-02 10:45:44 -07001555 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001556 if (svm_msg_q_is_empty (mq))
1557 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001558
Florin Coras54693d22018-07-17 10:46:29 -07001559 svm_msg_q_sub_w_lock (mq, &msg);
1560 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001561 svm_msg_q_unlock (mq);
1562
Florin Coras0e88e852018-09-17 22:09:02 -07001563 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001564 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001565 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001566 }
Dave Wallace543852a2017-08-03 02:11:34 -04001567 }
Dave Wallace543852a2017-08-03 02:11:34 -04001568
Florin Coras460dce62018-07-27 05:45:06 -07001569 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1570 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
1571 if (s->is_dgram)
1572 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1573 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1574 else
1575 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1576 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001577
Florin Coras460dce62018-07-27 05:45:06 -07001578 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001579
Florin Coras0e88e852018-09-17 22:09:02 -07001580 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: wrote %d bytes", getpid (),
1581 s->vpp_handle, session_handle, n_write);
1582
Florin Coras54693d22018-07-17 10:46:29 -07001583 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04001584}
1585
Florin Coras99368312018-08-02 10:45:44 -07001586static vcl_session_t *
Florin Coras134a9962018-08-28 11:32:04 -07001587vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
Florin Coras99368312018-08-02 10:45:44 -07001588{
1589 vcl_session_t *s;
Florin Coras134a9962018-08-28 11:32:04 -07001590 s = vcl_session_get (wrk, f->client_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001591 if (s)
1592 {
1593 /* rx fifo */
1594 if (type == 0 && s->rx_fifo == f)
1595 return s;
1596 /* tx fifo */
1597 if (type == 1 && s->tx_fifo == f)
1598 return s;
1599 }
Florin Coras134a9962018-08-28 11:32:04 -07001600 s = vcl_session_get (wrk, f->master_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001601 if (s)
1602 {
1603 if (type == 0 && s->rx_fifo == f)
1604 return s;
1605 if (type == 1 && s->tx_fifo == f)
1606 return s;
1607 }
1608 return 0;
1609}
1610
Dave Wallace543852a2017-08-03 02:11:34 -04001611static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001612vppcom_session_write_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001613{
Dave Wallace543852a2017-08-03 02:11:34 -04001614 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001615 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001616 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001617 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001618 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001619 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001620 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001621 }
1622
Florin Coras7e12d942018-06-27 14:32:43 -07001623 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001624 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001625 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001626 "cannot write to a listen session!",
Florin Coras134a9962018-08-28 11:32:04 -07001627 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001628 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001629 }
1630
Florin Coras54693d22018-07-17 10:46:29 -07001631 if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001632 {
Florin Coras7e12d942018-06-27 14:32:43 -07001633 session_state_t state = session->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001634 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001635
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001636 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace048b1d62018-01-03 22:24:41 -05001637 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001638 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001639 "returning %d (%s)", getpid (), session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001640 session->session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001641 state, vppcom_session_state_str (state),
1642 rv, vppcom_retval_str (rv));
Florin Coras54693d22018-07-17 10:46:29 -07001643 return rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001644 }
1645
Florin Coras0d427d82018-06-27 03:24:07 -07001646 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
Florin Coras134a9962018-08-28 11:32:04 -07001647 getpid (), session->vpp_handle, session->session_index,
1648 session->tx_fifo, svm_fifo_max_enqueue (session->tx_fifo));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001649
Florin Coras54693d22018-07-17 10:46:29 -07001650 return svm_fifo_max_enqueue (session->tx_fifo);
1651}
1652
Florin Coras99368312018-08-02 10:45:44 -07001653static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001654vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
Florin Coras99368312018-08-02 10:45:44 -07001655{
1656 svm_msg_q_msg_t *msg;
1657 u32 n_msgs;
1658 int i;
1659
1660 n_msgs = svm_msg_q_size (mq);
1661 for (i = 0; i < n_msgs; i++)
1662 {
Florin Coras134a9962018-08-28 11:32:04 -07001663 vec_add2 (wrk->mq_msg_vector, msg, 1);
Florin Coras99368312018-08-02 10:45:44 -07001664 svm_msg_q_sub_w_lock (mq, msg);
1665 }
1666 return n_msgs;
1667}
1668
Florin Coras6d4bb422018-09-04 22:07:27 -07001669#define vcl_fifo_rx_evt_valid_or_break(_fifo) \
1670if (PREDICT_FALSE (svm_fifo_is_empty (_fifo))) \
1671 { \
1672 svm_fifo_unset_event (_fifo); \
1673 if (svm_fifo_is_empty (_fifo)) \
Florin Coras41c9e042018-09-11 00:10:41 -07001674 break; \
Florin Coras6d4bb422018-09-04 22:07:27 -07001675 } \
1676
Florin Coras86f04502018-09-12 16:08:01 -07001677static void
1678vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
1679 unsigned long n_bits, unsigned long *read_map,
1680 unsigned long *write_map,
1681 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07001682{
1683 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001684 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001685 session_accepted_msg_t *accepted_msg;
1686 vcl_session_msg_t *vcl_msg;
1687 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07001688 u64 handle;
1689 u32 sid;
1690
1691 switch (e->event_type)
1692 {
1693 case FIFO_EVENT_APP_RX:
1694 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1695 sid = e->fifo->client_session_index;
1696 session = vcl_session_get (wrk, sid);
1697 if (!session)
1698 break;
1699 if (sid < n_bits && read_map)
1700 {
1701 clib_bitmap_set_no_check (read_map, sid, 1);
1702 *bits_set += 1;
1703 }
1704 break;
1705 case FIFO_EVENT_APP_TX:
1706 sid = e->fifo->client_session_index;
1707 session = vcl_session_get (wrk, sid);
1708 if (!session)
1709 break;
1710 if (sid < n_bits && write_map)
1711 {
1712 clib_bitmap_set_no_check (write_map, sid, 1);
1713 *bits_set += 1;
1714 }
1715 break;
1716 case SESSION_IO_EVT_CT_TX:
1717 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1718 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
1719 if (!session)
1720 break;
1721 sid = session->session_index;
1722 if (sid < n_bits && read_map)
1723 {
1724 clib_bitmap_set_no_check (read_map, sid, 1);
1725 *bits_set += 1;
1726 }
1727 break;
1728 case SESSION_IO_EVT_CT_RX:
1729 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
1730 if (!session)
1731 break;
1732 sid = session->session_index;
1733 if (sid < n_bits && write_map)
1734 {
1735 clib_bitmap_set_no_check (write_map, sid, 1);
1736 *bits_set += 1;
1737 }
1738 break;
1739 case SESSION_CTRL_EVT_ACCEPTED:
1740 accepted_msg = (session_accepted_msg_t *) e->data;
1741 handle = accepted_msg->listener_handle;
1742 session = vcl_session_table_lookup_listener (wrk, handle);
1743 if (!session)
1744 {
1745 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
1746 "listener handle %llx", getpid (), handle);
1747 break;
1748 }
1749
1750 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
1751 vcl_msg->accepted_msg = *accepted_msg;
1752 sid = session->session_index;
1753 if (sid < n_bits && read_map)
1754 {
1755 clib_bitmap_set_no_check (read_map, sid, 1);
1756 *bits_set += 1;
1757 }
1758 break;
1759 case SESSION_CTRL_EVT_CONNECTED:
1760 connected_msg = (session_connected_msg_t *) e->data;
1761 vcl_session_connected_handler (wrk, connected_msg);
1762 break;
1763 case SESSION_CTRL_EVT_DISCONNECTED:
1764 disconnected_msg = (session_disconnected_msg_t *) e->data;
1765 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
1766 if (sid < n_bits && except_map)
1767 {
1768 clib_bitmap_set_no_check (except_map, sid, 1);
1769 *bits_set += 1;
1770 }
1771 break;
1772 case SESSION_CTRL_EVT_RESET:
1773 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
1774 if (sid < n_bits && except_map)
1775 {
1776 clib_bitmap_set_no_check (except_map, sid, 1);
1777 *bits_set += 1;
1778 }
1779 break;
1780 default:
1781 clib_warning ("unhandled: %u", e->event_type);
1782 break;
1783 }
1784}
1785
1786static int
1787vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
1788 unsigned long n_bits, unsigned long *read_map,
1789 unsigned long *write_map, unsigned long *except_map,
1790 double time_to_wait, u32 * bits_set)
1791{
Florin Coras99368312018-08-02 10:45:44 -07001792 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07001793 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07001794 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07001795
1796 svm_msg_q_lock (mq);
1797 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001798 {
Florin Coras54693d22018-07-17 10:46:29 -07001799 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001800 {
Florin Coras54693d22018-07-17 10:46:29 -07001801 svm_msg_q_unlock (mq);
1802 return 0;
1803 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001804
Florin Coras54693d22018-07-17 10:46:29 -07001805 if (!time_to_wait)
1806 {
1807 svm_msg_q_unlock (mq);
1808 return 0;
1809 }
1810 else if (time_to_wait < 0)
1811 {
1812 svm_msg_q_wait (mq);
1813 }
1814 else
1815 {
1816 if (svm_msg_q_timedwait (mq, time_to_wait))
1817 {
1818 svm_msg_q_unlock (mq);
1819 return 0;
1820 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001821 }
1822 }
Florin Coras134a9962018-08-28 11:32:04 -07001823 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07001824 svm_msg_q_unlock (mq);
1825
Florin Coras134a9962018-08-28 11:32:04 -07001826 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07001827 {
Florin Coras134a9962018-08-28 11:32:04 -07001828 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07001829 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07001830 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
1831 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001832 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001833 }
Florin Coras134a9962018-08-28 11:32:04 -07001834 vec_reset_length (wrk->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07001835 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04001836}
1837
Florin Coras99368312018-08-02 10:45:44 -07001838static int
Florin Coras134a9962018-08-28 11:32:04 -07001839vppcom_select_condvar (vcl_worker_t * wrk, unsigned long n_bits,
1840 unsigned long *read_map, unsigned long *write_map,
1841 unsigned long *except_map, double time_to_wait,
1842 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001843{
1844 double total_wait = 0, wait_slice;
1845 vcl_cut_through_registration_t *cr;
1846
1847 time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
Florin Coras134a9962018-08-28 11:32:04 -07001848 wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
Florin Coras99368312018-08-02 10:45:44 -07001849 do
1850 {
Florin Coras134a9962018-08-28 11:32:04 -07001851 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001852 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001853 pool_foreach (cr, wrk->cut_through_registrations, ({
1854 vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07001855 0, bits_set);
1856 }));
1857 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07001858 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001859
Florin Coras134a9962018-08-28 11:32:04 -07001860 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
1861 write_map, except_map, time_to_wait, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001862 total_wait += wait_slice;
1863 if (*bits_set)
1864 return *bits_set;
1865 }
1866 while (total_wait < time_to_wait);
1867
1868 return 0;
1869}
1870
1871static int
Florin Coras134a9962018-08-28 11:32:04 -07001872vppcom_select_eventfd (vcl_worker_t * wrk, unsigned long n_bits,
1873 unsigned long *read_map, unsigned long *write_map,
1874 unsigned long *except_map, double time_to_wait,
1875 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001876{
1877 vcl_mq_evt_conn_t *mqc;
1878 int __clib_unused n_read;
1879 int n_mq_evts, i;
1880 u64 buf;
1881
Florin Coras134a9962018-08-28 11:32:04 -07001882 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
1883 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
1884 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07001885 for (i = 0; i < n_mq_evts; i++)
1886 {
Florin Coras134a9962018-08-28 11:32:04 -07001887 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07001888 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07001889 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07001890 except_map, 0, bits_set);
1891 }
1892
1893 return (n_mq_evts > 0 ? (int) *bits_set : 0);
1894}
1895
Dave Wallace543852a2017-08-03 02:11:34 -04001896int
1897vppcom_select (unsigned long n_bits, unsigned long *read_map,
1898 unsigned long *write_map, unsigned long *except_map,
1899 double time_to_wait)
1900{
Florin Coras54693d22018-07-17 10:46:29 -07001901 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001902 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001903 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07001904 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04001905
1906 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1907
Dave Wallace7876d392017-10-19 03:53:57 -04001908 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001909 {
Florin Coras134a9962018-08-28 11:32:04 -07001910 clib_bitmap_validate (wrk->rd_bitmap, minbits);
1911 clib_memcpy (wrk->rd_bitmap, read_map,
1912 vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
1913 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001914 }
Dave Wallace7876d392017-10-19 03:53:57 -04001915 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001916 {
Florin Coras134a9962018-08-28 11:32:04 -07001917 clib_bitmap_validate (wrk->wr_bitmap, minbits);
1918 clib_memcpy (wrk->wr_bitmap, write_map,
1919 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001920 memset (write_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001921 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001922 }
Dave Wallace7876d392017-10-19 03:53:57 -04001923 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001924 {
Florin Coras134a9962018-08-28 11:32:04 -07001925 clib_bitmap_validate (wrk->ex_bitmap, minbits);
1926 clib_memcpy (wrk->ex_bitmap, except_map,
1927 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001928 memset (except_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001929 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001930 }
1931
Florin Coras54693d22018-07-17 10:46:29 -07001932 if (!n_bits)
1933 return 0;
1934
1935 if (!write_map)
1936 goto check_rd;
1937
1938 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001939 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
1940 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07001941 {
Florin Coras54693d22018-07-17 10:46:29 -07001942 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1943 getpid (), sid);
1944 return VPPCOM_EBADFD;
1945 }
1946
1947 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001948 if (!rv)
1949 {
1950 clib_bitmap_set_no_check (write_map, sid, 1);
1951 bits_set++;
1952 }
1953 }));
1954
1955check_rd:
1956 if (!read_map)
1957 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07001958
Florin Coras134a9962018-08-28 11:32:04 -07001959 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
1960 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07001961 {
Florin Coras54693d22018-07-17 10:46:29 -07001962 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1963 getpid (), sid);
1964 return VPPCOM_EBADFD;
1965 }
1966
1967 rv = vppcom_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07001968 if (rv)
1969 {
1970 clib_bitmap_set_no_check (read_map, sid, 1);
1971 bits_set++;
1972 }
1973 }));
1974 /* *INDENT-ON* */
1975
1976check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04001977
Florin Coras86f04502018-09-12 16:08:01 -07001978 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
1979 {
1980 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
1981 read_map, write_map, except_map, &bits_set);
1982 }
1983 vec_reset_length (wrk->unhandled_evts_vector);
1984
Florin Coras99368312018-08-02 10:45:44 -07001985 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07001986 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07001987 time_to_wait, &bits_set);
1988 else
Florin Coras134a9962018-08-28 11:32:04 -07001989 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07001990 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07001991
Dave Wallace543852a2017-08-03 02:11:34 -04001992 return (bits_set);
1993}
1994
Dave Wallacef7f809c2017-10-03 01:48:42 -04001995static inline void
Florin Coras134a9962018-08-28 11:32:04 -07001996vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001997{
Florin Coras7e12d942018-06-27 14:32:43 -07001998 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001999 vppcom_epoll_t *vep;
Dave Wallace498b3a52017-11-09 13:00:34 -05002000 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002001
Dave Wallace498b3a52017-11-09 13:00:34 -05002002 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002003 return;
2004
2005 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Florin Coras134a9962018-08-28 11:32:04 -07002006 session = vcl_session_get (wrk, vep_idx);
Florin Coras070453d2018-08-24 17:04:27 -07002007 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002008 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002009 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
2010 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002011 goto done;
2012 }
2013 if (PREDICT_FALSE (!session->is_vep))
2014 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002015 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2016 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002017 goto done;
2018 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002019 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05002020 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002021 "{\n"
2022 " is_vep = %u\n"
2023 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002024 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002025 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002026 "}\n", getpid (), vep_idx,
2027 session->is_vep, session->is_vep_session,
Florin Coras134a9962018-08-28 11:32:04 -07002028 vep->next_sh, vep->next_sh,
Dave Wallace498b3a52017-11-09 13:00:34 -05002029 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002030
Florin Coras134a9962018-08-28 11:32:04 -07002031 for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002032 {
Florin Coras134a9962018-08-28 11:32:04 -07002033 session = vcl_session_get (wrk, sid);
Florin Coras070453d2018-08-24 17:04:27 -07002034 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002035 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002036 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002037 goto done;
2038 }
2039 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05002040 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
2041 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002042 else if (PREDICT_FALSE (!session->is_vep_session))
2043 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002044 clib_warning ("VCL<%d>: ERROR: session (%u) "
2045 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002046 goto done;
2047 }
2048 vep = &session->vep;
Florin Coras134a9962018-08-28 11:32:04 -07002049 if (PREDICT_FALSE (vep->vep_sh != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05002050 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002051 "vep_idx (%u)!", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002052 sid, session->vep.vep_sh, vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002053 if (session->is_vep_session)
2054 {
2055 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
2056 "{\n"
2057 " next_sid = 0x%x (%u)\n"
2058 " prev_sid = 0x%x (%u)\n"
2059 " vep_idx = 0x%x (%u)\n"
2060 " ev.events = 0x%x\n"
2061 " ev.data.u64 = 0x%llx\n"
2062 " et_mask = 0x%x\n"
2063 "}\n",
2064 vep_idx, sid, sid,
Florin Coras134a9962018-08-28 11:32:04 -07002065 vep->next_sh, vep->next_sh,
2066 vep->prev_sh, vep->prev_sh,
2067 vep->vep_sh, vep->vep_sh,
Dave Wallace4878cbe2017-11-21 03:45:09 -05002068 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002069 }
2070 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002071
2072done:
Dave Wallace048b1d62018-01-03 22:24:41 -05002073 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
2074 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002075}
2076
2077int
2078vppcom_epoll_create (void)
2079{
Florin Coras134a9962018-08-28 11:32:04 -07002080 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002081 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002082
Florin Coras134a9962018-08-28 11:32:04 -07002083 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002084
2085 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002086 vep_session->vep.vep_sh = ~0;
2087 vep_session->vep.next_sh = ~0;
2088 vep_session->vep.prev_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002089 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002090 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002091
Florin Coras134a9962018-08-28 11:32:04 -07002092 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07002093 VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002094 getpid (), vep_session->session_index, vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002095
Florin Corasab2f6db2018-08-31 14:31:41 -07002096 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002097}
2098
2099int
Florin Coras134a9962018-08-28 11:32:04 -07002100vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002101 struct epoll_event *event)
2102{
Florin Coras134a9962018-08-28 11:32:04 -07002103 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002104 vcl_session_t *vep_session;
2105 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002106 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002107
Florin Coras134a9962018-08-28 11:32:04 -07002108 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002109 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002110 clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002111 getpid (), vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002112 return VPPCOM_EINVAL;
2113 }
2114
Florin Coras134a9962018-08-28 11:32:04 -07002115 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002116 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002117 {
Florin Coras134a9962018-08-28 11:32:04 -07002118 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002119 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002120 }
2121 if (PREDICT_FALSE (!vep_session->is_vep))
2122 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002123 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002124 getpid (), vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002125 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002126 }
2127
Florin Coras134a9962018-08-28 11:32:04 -07002128 ASSERT (vep_session->vep.vep_sh == ~0);
2129 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002130
Florin Coras134a9962018-08-28 11:32:04 -07002131 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002132 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002133 {
Florin Coras134a9962018-08-28 11:32:04 -07002134 VDBG (0, "VCL<%d>: ERROR: Invalid session_handle (%u)!",
2135 getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002136 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002137 }
2138 if (PREDICT_FALSE (session->is_vep))
2139 {
Florin Coras134a9962018-08-28 11:32:04 -07002140 clib_warning ("ERROR: session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002141 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002142 }
2143
2144 switch (op)
2145 {
2146 case EPOLL_CTL_ADD:
2147 if (PREDICT_FALSE (!event))
2148 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002149 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002150 "epoll_event structure!", getpid ());
Florin Coras070453d2018-08-24 17:04:27 -07002151 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002152 }
Florin Coras134a9962018-08-28 11:32:04 -07002153 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002154 {
Florin Coras7e12d942018-06-27 14:32:43 -07002155 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002156 next_session = vcl_session_get_w_handle (wrk,
2157 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002158 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002159 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002160 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002161 "vep.next_sid (%u) on vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002162 getpid (), vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002163 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002164 }
Florin Coras134a9962018-08-28 11:32:04 -07002165 ASSERT (next_session->vep.prev_sh == vep_handle);
2166 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002167 }
Florin Coras134a9962018-08-28 11:32:04 -07002168 session->vep.next_sh = vep_session->vep.next_sh;
2169 session->vep.prev_sh = vep_handle;
2170 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002171 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2172 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002173 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002174 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002175 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002176
Florin Coras070453d2018-08-24 17:04:27 -07002177 VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, sid %u, events 0x%x, "
Florin Coras134a9962018-08-28 11:32:04 -07002178 "data 0x%llx!", getpid (), vep_handle, session_handle,
2179 event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002180 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002181 break;
2182
2183 case EPOLL_CTL_MOD:
2184 if (PREDICT_FALSE (!event))
2185 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002186 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002187 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04002188 rv = VPPCOM_EINVAL;
2189 goto done;
2190 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002191 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002192 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002193 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Florin Coras134a9962018-08-28 11:32:04 -07002194 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002195 rv = VPPCOM_EINVAL;
2196 goto done;
2197 }
Florin Coras134a9962018-08-28 11:32:04 -07002198 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002199 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002200 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002201 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002202 getpid (), session_handle,
2203 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002204 rv = VPPCOM_EINVAL;
2205 goto done;
2206 }
2207 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2208 session->vep.ev = *event;
Florin Coras0d427d82018-06-27 03:24:07 -07002209 VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
Florin Coras134a9962018-08-28 11:32:04 -07002210 " data 0x%llx!", getpid (), vep_handle, session_handle,
2211 event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002212 break;
2213
2214 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002215 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002216 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002217 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Florin Coras134a9962018-08-28 11:32:04 -07002218 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002219 rv = VPPCOM_EINVAL;
2220 goto done;
2221 }
Florin Coras134a9962018-08-28 11:32:04 -07002222 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002223 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002224 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002225 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002226 getpid (), session_handle,
2227 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002228 rv = VPPCOM_EINVAL;
2229 goto done;
2230 }
2231
2232 vep_session->wait_cont_idx =
Florin Coras134a9962018-08-28 11:32:04 -07002233 (vep_session->wait_cont_idx == session_handle) ?
2234 session->vep.next_sh : vep_session->wait_cont_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002235
Florin Coras134a9962018-08-28 11:32:04 -07002236 if (session->vep.prev_sh == vep_handle)
2237 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002238 else
2239 {
Florin Coras7e12d942018-06-27 14:32:43 -07002240 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002241 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002242 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002243 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002244 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002245 "vep.prev_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002246 getpid (), session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002247 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002248 }
Florin Coras134a9962018-08-28 11:32:04 -07002249 ASSERT (prev_session->vep.next_sh == session_handle);
2250 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002251 }
Florin Coras134a9962018-08-28 11:32:04 -07002252 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002253 {
Florin Coras7e12d942018-06-27 14:32:43 -07002254 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002255 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002256 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002257 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002258 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002259 "vep.next_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002260 getpid (), session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002261 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002262 }
Florin Coras134a9962018-08-28 11:32:04 -07002263 ASSERT (next_session->vep.prev_sh == session_handle);
2264 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002265 }
2266
2267 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002268 session->vep.next_sh = ~0;
2269 session->vep.prev_sh = ~0;
2270 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002271 session->is_vep_session = 0;
Florin Coras0d427d82018-06-27 03:24:07 -07002272 VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002273 getpid (), vep_handle, session_handle);
2274 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002275 break;
2276
2277 default:
Dave Wallace048b1d62018-01-03 22:24:41 -05002278 clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002279 rv = VPPCOM_EINVAL;
2280 }
2281
Florin Coras134a9962018-08-28 11:32:04 -07002282 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002283
2284done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002285 return rv;
2286}
2287
Florin Coras86f04502018-09-12 16:08:01 -07002288static inline void
2289vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2290 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002291{
2292 session_disconnected_msg_t *disconnected_msg;
2293 session_connected_msg_t *connected_msg;
2294 session_accepted_msg_t *accepted_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002295 u64 session_evt_data = ~0, handle;
Florin Coras99368312018-08-02 10:45:44 -07002296 u32 sid = ~0, session_events;
Florin Coras54693d22018-07-17 10:46:29 -07002297 vcl_session_msg_t *vcl_msg;
2298 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002299 u8 add_event = 0;
2300
2301 switch (e->event_type)
2302 {
2303 case FIFO_EVENT_APP_RX:
2304 ASSERT (e->fifo->client_thread_index == vcl_get_worker_index ());
2305 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2306 sid = e->fifo->client_session_index;
2307 session = vcl_session_get (wrk, sid);
2308 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002309 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002310 break;
2311 add_event = 1;
2312 events[*num_ev].events |= EPOLLIN;
2313 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002314 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002315 break;
2316 case FIFO_EVENT_APP_TX:
2317 sid = e->fifo->client_session_index;
2318 session = vcl_session_get (wrk, sid);
2319 session_events = session->vep.ev.events;
2320 if (!(EPOLLOUT & session_events))
2321 break;
2322 add_event = 1;
2323 events[*num_ev].events |= EPOLLOUT;
2324 session_evt_data = session->vep.ev.data.u64;
2325 break;
2326 case SESSION_IO_EVT_CT_TX:
2327 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2328 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
2329 sid = session->session_index;
2330 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002331 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002332 break;
2333 add_event = 1;
2334 events[*num_ev].events |= EPOLLIN;
2335 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002336 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002337 break;
2338 case SESSION_IO_EVT_CT_RX:
2339 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
2340 sid = session->session_index;
2341 session_events = session->vep.ev.events;
2342 if (!(EPOLLOUT & session_events))
2343 break;
2344 add_event = 1;
2345 events[*num_ev].events |= EPOLLOUT;
2346 session_evt_data = session->vep.ev.data.u64;
2347 break;
2348 case SESSION_CTRL_EVT_ACCEPTED:
2349 accepted_msg = (session_accepted_msg_t *) e->data;
2350 handle = accepted_msg->listener_handle;
2351 session = vcl_session_table_lookup_listener (wrk, handle);
2352 if (!session)
2353 {
2354 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
2355 "listener handle %llx", getpid (), handle);
2356 break;
2357 }
2358
2359 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
2360 vcl_msg->accepted_msg = *accepted_msg;
2361 session_events = session->vep.ev.events;
2362 if (!(EPOLLIN & session_events))
2363 break;
2364
2365 add_event = 1;
2366 events[*num_ev].events |= EPOLLIN;
2367 session_evt_data = session->vep.ev.data.u64;
2368 break;
2369 case SESSION_CTRL_EVT_CONNECTED:
2370 connected_msg = (session_connected_msg_t *) e->data;
2371 vcl_session_connected_handler (wrk, connected_msg);
2372 /* Generate EPOLLOUT because there's no connected event */
2373 sid = vcl_session_index_from_vpp_handle (wrk, connected_msg->handle);
2374 session = vcl_session_get (wrk, sid);
2375 session_events = session->vep.ev.events;
2376 if (EPOLLOUT & session_events)
2377 {
2378 add_event = 1;
2379 events[*num_ev].events |= EPOLLOUT;
2380 session_evt_data = session->vep.ev.data.u64;
2381 }
2382 break;
2383 case SESSION_CTRL_EVT_DISCONNECTED:
2384 disconnected_msg = (session_disconnected_msg_t *) e->data;
2385 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
2386 if (!(session = vcl_session_get (wrk, sid)))
2387 break;
2388 add_event = 1;
2389 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2390 session_evt_data = session->vep.ev.data.u64;
2391 session_events = session->vep.ev.events;
2392 break;
2393 case SESSION_CTRL_EVT_RESET:
2394 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2395 if (!(session = vcl_session_get (wrk, sid)))
2396 break;
2397 add_event = 1;
2398 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2399 session_evt_data = session->vep.ev.data.u64;
2400 session_events = session->vep.ev.events;
2401 break;
2402 default:
2403 VDBG (0, "unhandled: %u", e->event_type);
2404 break;
2405 }
2406
2407 if (add_event)
2408 {
2409 events[*num_ev].data.u64 = session_evt_data;
2410 if (EPOLLONESHOT & session_events)
2411 {
2412 session = vcl_session_get (wrk, sid);
2413 session->vep.ev.events = 0;
2414 }
2415 *num_ev += 1;
2416 }
2417}
2418
2419static int
2420vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2421 struct epoll_event *events, u32 maxevents,
2422 double wait_for_time, u32 * num_ev)
2423{
Florin Coras99368312018-08-02 10:45:44 -07002424 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002425 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002426 int i;
2427
Florin Coras539663c2018-09-28 14:59:37 -07002428 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2429 goto handle_dequeued;
2430
Florin Coras54693d22018-07-17 10:46:29 -07002431 svm_msg_q_lock (mq);
2432 if (svm_msg_q_is_empty (mq))
2433 {
2434 if (!wait_for_time)
2435 {
2436 svm_msg_q_unlock (mq);
2437 return 0;
2438 }
2439 else if (wait_for_time < 0)
2440 {
2441 svm_msg_q_wait (mq);
2442 }
2443 else
2444 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002445 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002446 {
2447 svm_msg_q_unlock (mq);
2448 return 0;
2449 }
2450 }
2451 }
Florin Coras134a9962018-08-28 11:32:04 -07002452 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002453 svm_msg_q_unlock (mq);
2454
Florin Coras539663c2018-09-28 14:59:37 -07002455handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002456 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002457 {
Florin Coras134a9962018-08-28 11:32:04 -07002458 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002459 e = svm_msg_q_msg_data (mq, msg);
Florin Corasaa27eb92018-10-13 12:20:01 -07002460 if (*num_ev < maxevents)
2461 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2462 else
2463 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras99368312018-08-02 10:45:44 -07002464 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002465 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002466 vec_reset_length (wrk->mq_msg_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002467
Florin Coras54693d22018-07-17 10:46:29 -07002468 return *num_ev;
2469}
2470
Florin Coras99368312018-08-02 10:45:44 -07002471static int
Florin Coras134a9962018-08-28 11:32:04 -07002472vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002473 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002474{
2475 vcl_cut_through_registration_t *cr;
2476 double total_wait = 0, wait_slice;
Florin Coras99368312018-08-02 10:45:44 -07002477 int rv;
2478
2479 wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
Florin Coras134a9962018-08-28 11:32:04 -07002480 wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
Florin Coras99368312018-08-02 10:45:44 -07002481
2482 do
2483 {
Florin Coras134a9962018-08-28 11:32:04 -07002484 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002485 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002486 pool_foreach (cr, wrk->cut_through_registrations, ({
Florin Coras86f04502018-09-12 16:08:01 -07002487 vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002488 }));
2489 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002490 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002491
Florin Coras134a9962018-08-28 11:32:04 -07002492 rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
Florin Coras86f04502018-09-12 16:08:01 -07002493 maxevents, n_evts ? 0 : wait_slice,
2494 &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002495 if (rv)
2496 total_wait += wait_slice;
Florin Coras86f04502018-09-12 16:08:01 -07002497 if (n_evts)
2498 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002499 }
2500 while (total_wait < wait_for_time);
Florin Coras86f04502018-09-12 16:08:01 -07002501 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002502}
2503
2504static int
Florin Coras134a9962018-08-28 11:32:04 -07002505vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002506 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002507{
2508 vcl_mq_evt_conn_t *mqc;
2509 int __clib_unused n_read;
2510 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002511 u64 buf;
2512
Florin Coras134a9962018-08-28 11:32:04 -07002513 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002514again:
Florin Coras134a9962018-08-28 11:32:04 -07002515 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2516 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002517 for (i = 0; i < n_mq_evts; i++)
2518 {
Florin Coras134a9962018-08-28 11:32:04 -07002519 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002520 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002521 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002522 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002523 if (!n_evts && n_mq_evts > 0)
2524 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002525
2526 return (int) n_evts;
2527}
2528
Dave Wallacef7f809c2017-10-03 01:48:42 -04002529int
Florin Coras134a9962018-08-28 11:32:04 -07002530vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002531 int maxevents, double wait_for_time)
2532{
Florin Coras134a9962018-08-28 11:32:04 -07002533 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002534 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002535 u32 n_evts = 0;
2536 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002537
2538 if (PREDICT_FALSE (maxevents <= 0))
2539 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002540 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002541 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002542 return VPPCOM_EINVAL;
2543 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002544
Florin Coras134a9962018-08-28 11:32:04 -07002545 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002546 if (!vep_session)
2547 return VPPCOM_EBADFD;
2548
Florin Coras54693d22018-07-17 10:46:29 -07002549 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002550 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002551 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002552 getpid (), vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002553 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002554 }
Florin Coras54693d22018-07-17 10:46:29 -07002555
2556 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002557
Florin Coras86f04502018-09-12 16:08:01 -07002558 if (vec_len (wrk->unhandled_evts_vector))
2559 {
2560 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2561 {
2562 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2563 events, &n_evts);
2564 if (n_evts == maxevents)
2565 {
2566 i += 1;
2567 break;
2568 }
2569 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002570
Florin Coras86f04502018-09-12 16:08:01 -07002571 vec_delete (wrk->unhandled_evts_vector, i, 0);
2572 }
2573
2574 if (vcm->cfg.use_mq_eventfd)
2575 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2576 wait_for_time);
2577
2578 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2579 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002580}
2581
Dave Wallace35830af2017-10-09 01:43:42 -04002582int
Florin Coras134a9962018-08-28 11:32:04 -07002583vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002584 void *buffer, uint32_t * buflen)
2585{
Florin Coras134a9962018-08-28 11:32:04 -07002586 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002587 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002588 int rv = VPPCOM_OK;
2589 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002590 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002591
Florin Coras134a9962018-08-28 11:32:04 -07002592 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002593 if (!session)
2594 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002595
Dave Wallace35830af2017-10-09 01:43:42 -04002596 switch (op)
2597 {
2598 case VPPCOM_ATTR_GET_NREAD:
Florin Coras54693d22018-07-17 10:46:29 -07002599 rv = vppcom_session_read_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002600 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2601 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002602 break;
2603
Dave Wallace227867f2017-11-13 21:21:53 -05002604 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras134a9962018-08-28 11:32:04 -07002605 rv = vppcom_session_write_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002606 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
Florin Coras134a9962018-08-28 11:32:04 -07002607 getpid (), session_handle, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002608 break;
2609
2610 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002611 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002612 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002613 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2614 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002615 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002616 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2617 "is_nonblocking = %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002618 session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002619 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002620 }
2621 else
2622 rv = VPPCOM_EINVAL;
2623 break;
2624
2625 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002626 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002627 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002628 if (*flags & O_NONBLOCK)
2629 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2630 else
2631 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2632
Florin Coras0d427d82018-06-27 03:24:07 -07002633 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2634 " is_nonblocking = %u",
Florin Coras134a9962018-08-28 11:32:04 -07002635 getpid (), session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002636 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002637 }
2638 else
2639 rv = VPPCOM_EINVAL;
2640 break;
2641
2642 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002643 if (PREDICT_TRUE (buffer && buflen &&
2644 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002645 {
Florin Coras7e12d942018-06-27 14:32:43 -07002646 ep->is_ip4 = session->transport.is_ip4;
2647 ep->port = session->transport.rmt_port;
2648 if (session->transport.is_ip4)
2649 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002650 sizeof (ip4_address_t));
2651 else
Florin Coras7e12d942018-06-27 14:32:43 -07002652 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002653 sizeof (ip6_address_t));
2654 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002655 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2656 "addr = %U, port %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002657 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002658 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002659 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2660 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002661 }
2662 else
2663 rv = VPPCOM_EINVAL;
2664 break;
2665
2666 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002667 if (PREDICT_TRUE (buffer && buflen &&
2668 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002669 {
Florin Coras7e12d942018-06-27 14:32:43 -07002670 ep->is_ip4 = session->transport.is_ip4;
2671 ep->port = session->transport.lcl_port;
2672 if (session->transport.is_ip4)
2673 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip4,
Steven2199aab2017-10-15 20:18:47 -07002674 sizeof (ip4_address_t));
2675 else
Florin Coras7e12d942018-06-27 14:32:43 -07002676 clib_memcpy (ep->ip, &session->transport.lcl_ip.ip6,
Steven2199aab2017-10-15 20:18:47 -07002677 sizeof (ip6_address_t));
2678 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002679 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2680 " addr = %U port %d", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002681 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002682 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002683 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2684 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002685 }
2686 else
2687 rv = VPPCOM_EINVAL;
2688 break;
Stevenb5a11602017-10-11 09:59:30 -07002689
Dave Wallace048b1d62018-01-03 22:24:41 -05002690 case VPPCOM_ATTR_GET_LIBC_EPFD:
2691 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002692 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2693 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002694 break;
2695
2696 case VPPCOM_ATTR_SET_LIBC_EPFD:
2697 if (PREDICT_TRUE (buffer && buflen &&
2698 (*buflen == sizeof (session->libc_epfd))))
2699 {
2700 session->libc_epfd = *(int *) buffer;
2701 *buflen = sizeof (session->libc_epfd);
2702
Florin Coras0d427d82018-06-27 03:24:07 -07002703 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2704 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002705 }
2706 else
2707 rv = VPPCOM_EINVAL;
2708 break;
2709
2710 case VPPCOM_ATTR_GET_PROTOCOL:
2711 if (buffer && buflen && (*buflen >= sizeof (int)))
2712 {
Florin Coras7e12d942018-06-27 14:32:43 -07002713 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002714 *buflen = sizeof (int);
2715
Florin Coras0d427d82018-06-27 03:24:07 -07002716 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2717 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2718 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002719 }
2720 else
2721 rv = VPPCOM_EINVAL;
2722 break;
2723
2724 case VPPCOM_ATTR_GET_LISTEN:
2725 if (buffer && buflen && (*buflen >= sizeof (int)))
2726 {
2727 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2728 VCL_SESS_ATTR_LISTEN);
2729 *buflen = sizeof (int);
2730
Florin Coras0d427d82018-06-27 03:24:07 -07002731 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2732 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002733 }
2734 else
2735 rv = VPPCOM_EINVAL;
2736 break;
2737
2738 case VPPCOM_ATTR_GET_ERROR:
2739 if (buffer && buflen && (*buflen >= sizeof (int)))
2740 {
2741 *(int *) buffer = 0;
2742 *buflen = sizeof (int);
2743
Florin Coras0d427d82018-06-27 03:24:07 -07002744 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2745 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002746 }
2747 else
2748 rv = VPPCOM_EINVAL;
2749 break;
2750
2751 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2752 if (buffer && buflen && (*buflen >= sizeof (u32)))
2753 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002754
2755 /* VPP-TBD */
2756 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002757 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002758 vcm->cfg.tx_fifo_size);
2759 *buflen = sizeof (u32);
2760
Florin Coras0d427d82018-06-27 03:24:07 -07002761 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2762 "buflen %d, #VPP-TBD#", getpid (),
2763 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002764 }
2765 else
2766 rv = VPPCOM_EINVAL;
2767 break;
2768
2769 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2770 if (buffer && buflen && (*buflen == sizeof (u32)))
2771 {
2772 /* VPP-TBD */
2773 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002774 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2775 "buflen %d, #VPP-TBD#", getpid (),
2776 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002777 }
2778 else
2779 rv = VPPCOM_EINVAL;
2780 break;
2781
2782 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2783 if (buffer && buflen && (*buflen >= sizeof (u32)))
2784 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002785
2786 /* VPP-TBD */
2787 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002788 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002789 vcm->cfg.rx_fifo_size);
2790 *buflen = sizeof (u32);
2791
Florin Coras0d427d82018-06-27 03:24:07 -07002792 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2793 "buflen %d, #VPP-TBD#", getpid (),
2794 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002795 }
2796 else
2797 rv = VPPCOM_EINVAL;
2798 break;
2799
2800 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2801 if (buffer && buflen && (*buflen == sizeof (u32)))
2802 {
2803 /* VPP-TBD */
2804 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002805 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2806 "buflen %d, #VPP-TBD#", getpid (),
2807 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002808 }
2809 else
2810 rv = VPPCOM_EINVAL;
2811 break;
2812
2813 case VPPCOM_ATTR_GET_REUSEADDR:
2814 if (buffer && buflen && (*buflen >= sizeof (int)))
2815 {
2816 /* VPP-TBD */
2817 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2818 VCL_SESS_ATTR_REUSEADDR);
2819 *buflen = sizeof (int);
2820
Florin Coras0d427d82018-06-27 03:24:07 -07002821 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2822 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002823 }
2824 else
2825 rv = VPPCOM_EINVAL;
2826 break;
2827
Stevenb5a11602017-10-11 09:59:30 -07002828 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002829 if (buffer && buflen && (*buflen == sizeof (int)) &&
2830 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2831 {
2832 /* VPP-TBD */
2833 if (*(int *) buffer)
2834 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2835 else
2836 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2837
Florin Coras0d427d82018-06-27 03:24:07 -07002838 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2839 " #VPP-TBD#", getpid (),
2840 VCL_SESS_ATTR_TEST (session->attr,
2841 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002842 }
2843 else
2844 rv = VPPCOM_EINVAL;
2845 break;
2846
2847 case VPPCOM_ATTR_GET_REUSEPORT:
2848 if (buffer && buflen && (*buflen >= sizeof (int)))
2849 {
2850 /* VPP-TBD */
2851 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2852 VCL_SESS_ATTR_REUSEPORT);
2853 *buflen = sizeof (int);
2854
Florin Coras0d427d82018-06-27 03:24:07 -07002855 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2856 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002857 }
2858 else
2859 rv = VPPCOM_EINVAL;
2860 break;
2861
2862 case VPPCOM_ATTR_SET_REUSEPORT:
2863 if (buffer && buflen && (*buflen == sizeof (int)) &&
2864 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2865 {
2866 /* VPP-TBD */
2867 if (*(int *) buffer)
2868 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2869 else
2870 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2871
Florin Coras0d427d82018-06-27 03:24:07 -07002872 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2873 " #VPP-TBD#", getpid (),
2874 VCL_SESS_ATTR_TEST (session->attr,
2875 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002876 }
2877 else
2878 rv = VPPCOM_EINVAL;
2879 break;
2880
2881 case VPPCOM_ATTR_GET_BROADCAST:
2882 if (buffer && buflen && (*buflen >= sizeof (int)))
2883 {
2884 /* VPP-TBD */
2885 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2886 VCL_SESS_ATTR_BROADCAST);
2887 *buflen = sizeof (int);
2888
Florin Coras0d427d82018-06-27 03:24:07 -07002889 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2890 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002891 }
2892 else
2893 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002894 break;
2895
2896 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05002897 if (buffer && buflen && (*buflen == sizeof (int)))
2898 {
2899 /* VPP-TBD */
2900 if (*(int *) buffer)
2901 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2902 else
2903 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2904
Florin Coras0d427d82018-06-27 03:24:07 -07002905 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2906 "#VPP-TBD#", getpid (),
2907 VCL_SESS_ATTR_TEST (session->attr,
2908 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002909 }
2910 else
2911 rv = VPPCOM_EINVAL;
2912 break;
2913
2914 case VPPCOM_ATTR_GET_V6ONLY:
2915 if (buffer && buflen && (*buflen >= sizeof (int)))
2916 {
2917 /* VPP-TBD */
2918 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2919 VCL_SESS_ATTR_V6ONLY);
2920 *buflen = sizeof (int);
2921
Florin Coras0d427d82018-06-27 03:24:07 -07002922 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2923 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002924 }
2925 else
2926 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002927 break;
2928
2929 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05002930 if (buffer && buflen && (*buflen == sizeof (int)))
2931 {
2932 /* VPP-TBD */
2933 if (*(int *) buffer)
2934 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2935 else
2936 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2937
Florin Coras0d427d82018-06-27 03:24:07 -07002938 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2939 "#VPP-TBD#", getpid (),
2940 VCL_SESS_ATTR_TEST (session->attr,
2941 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002942 }
2943 else
2944 rv = VPPCOM_EINVAL;
2945 break;
2946
2947 case VPPCOM_ATTR_GET_KEEPALIVE:
2948 if (buffer && buflen && (*buflen >= sizeof (int)))
2949 {
2950 /* VPP-TBD */
2951 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2952 VCL_SESS_ATTR_KEEPALIVE);
2953 *buflen = sizeof (int);
2954
Florin Coras0d427d82018-06-27 03:24:07 -07002955 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
2956 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002957 }
2958 else
2959 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002960 break;
Stevenbccd3392017-10-12 20:42:21 -07002961
2962 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05002963 if (buffer && buflen && (*buflen == sizeof (int)))
2964 {
2965 /* VPP-TBD */
2966 if (*(int *) buffer)
2967 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2968 else
2969 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
2970
Florin Coras0d427d82018-06-27 03:24:07 -07002971 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
2972 "#VPP-TBD#", getpid (),
2973 VCL_SESS_ATTR_TEST (session->attr,
2974 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002975 }
2976 else
2977 rv = VPPCOM_EINVAL;
2978 break;
2979
2980 case VPPCOM_ATTR_GET_TCP_NODELAY:
2981 if (buffer && buflen && (*buflen >= sizeof (int)))
2982 {
2983 /* VPP-TBD */
2984 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2985 VCL_SESS_ATTR_TCP_NODELAY);
2986 *buflen = sizeof (int);
2987
Florin Coras0d427d82018-06-27 03:24:07 -07002988 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
2989 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002990 }
2991 else
2992 rv = VPPCOM_EINVAL;
2993 break;
2994
2995 case VPPCOM_ATTR_SET_TCP_NODELAY:
2996 if (buffer && buflen && (*buflen == sizeof (int)))
2997 {
2998 /* VPP-TBD */
2999 if (*(int *) buffer)
3000 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3001 else
3002 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3003
Florin Coras0d427d82018-06-27 03:24:07 -07003004 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
3005 "#VPP-TBD#", getpid (),
3006 VCL_SESS_ATTR_TEST (session->attr,
3007 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003008 }
3009 else
3010 rv = VPPCOM_EINVAL;
3011 break;
3012
3013 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3014 if (buffer && buflen && (*buflen >= sizeof (int)))
3015 {
3016 /* VPP-TBD */
3017 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3018 VCL_SESS_ATTR_TCP_KEEPIDLE);
3019 *buflen = sizeof (int);
3020
Florin Coras0d427d82018-06-27 03:24:07 -07003021 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
3022 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003023 }
3024 else
3025 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003026 break;
3027
3028 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003029 if (buffer && buflen && (*buflen == sizeof (int)))
3030 {
3031 /* VPP-TBD */
3032 if (*(int *) buffer)
3033 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3034 else
3035 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3036
Florin Coras0d427d82018-06-27 03:24:07 -07003037 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
3038 "#VPP-TBD#", getpid (),
3039 VCL_SESS_ATTR_TEST (session->attr,
3040 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003041 }
3042 else
3043 rv = VPPCOM_EINVAL;
3044 break;
3045
3046 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3047 if (buffer && buflen && (*buflen >= sizeof (int)))
3048 {
3049 /* VPP-TBD */
3050 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3051 VCL_SESS_ATTR_TCP_KEEPINTVL);
3052 *buflen = sizeof (int);
3053
Florin Coras0d427d82018-06-27 03:24:07 -07003054 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
3055 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003056 }
3057 else
3058 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003059 break;
3060
3061 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003062 if (buffer && buflen && (*buflen == sizeof (int)))
3063 {
3064 /* VPP-TBD */
3065 if (*(int *) buffer)
3066 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3067 else
3068 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3069
Florin Coras0d427d82018-06-27 03:24:07 -07003070 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
3071 "#VPP-TBD#", getpid (),
3072 VCL_SESS_ATTR_TEST (session->attr,
3073 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003074 }
3075 else
3076 rv = VPPCOM_EINVAL;
3077 break;
3078
3079 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3080 if (buffer && buflen && (*buflen >= sizeof (u32)))
3081 {
3082 /* VPP-TBD */
3083 *(u32 *) buffer = session->user_mss;
3084 *buflen = sizeof (int);
3085
Florin Coras0d427d82018-06-27 03:24:07 -07003086 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3087 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003088 }
3089 else
3090 rv = VPPCOM_EINVAL;
3091 break;
3092
3093 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3094 if (buffer && buflen && (*buflen == sizeof (u32)))
3095 {
3096 /* VPP-TBD */
3097 session->user_mss = *(u32 *) buffer;
3098
Florin Coras0d427d82018-06-27 03:24:07 -07003099 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3100 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003101 }
3102 else
3103 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003104 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003105
3106 default:
3107 rv = VPPCOM_EINVAL;
3108 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003109 }
3110
Dave Wallace35830af2017-10-09 01:43:42 -04003111 return rv;
3112}
3113
Stevenac1f96d2017-10-24 16:03:58 -07003114int
Florin Coras134a9962018-08-28 11:32:04 -07003115vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003116 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3117{
Florin Coras134a9962018-08-28 11:32:04 -07003118 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003119 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003120 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003121
3122 if (ep)
3123 {
Florin Coras134a9962018-08-28 11:32:04 -07003124 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003125 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003126 {
Florin Coras0d427d82018-06-27 03:24:07 -07003127 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
Florin Coras134a9962018-08-28 11:32:04 -07003128 getpid (), session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003129 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003130 }
Florin Coras7e12d942018-06-27 14:32:43 -07003131 ep->is_ip4 = session->transport.is_ip4;
3132 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003133 }
Steven58f464e2017-10-25 12:33:12 -07003134
3135 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003136 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003137 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003138 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003139 else
3140 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003141 clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
3142 getpid (), flags);
Florin Coras460dce62018-07-27 05:45:06 -07003143 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003144 }
3145
Florin Coras99368312018-08-02 10:45:44 -07003146 if (ep)
3147 {
3148 if (session->transport.is_ip4)
3149 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip4,
3150 sizeof (ip4_address_t));
3151 else
3152 clib_memcpy (ep->ip, &session->transport.rmt_ip.ip6,
3153 sizeof (ip6_address_t));
3154 }
Florin Coras460dce62018-07-27 05:45:06 -07003155
Stevenac1f96d2017-10-24 16:03:58 -07003156 return rv;
3157}
3158
3159int
Florin Coras134a9962018-08-28 11:32:04 -07003160vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003161 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3162{
Dave Wallace617dffa2017-10-26 14:47:06 -04003163 if (!buffer)
3164 return VPPCOM_EINVAL;
3165
3166 if (ep)
3167 {
3168 // TBD
3169 return VPPCOM_EINVAL;
3170 }
3171
3172 if (flags)
3173 {
3174 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003175 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3176 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003177 }
3178
Florin Coras134a9962018-08-28 11:32:04 -07003179 return (vppcom_session_write (session_handle, buffer, buflen));
Stevenac1f96d2017-10-24 16:03:58 -07003180}
3181
Dave Wallace048b1d62018-01-03 22:24:41 -05003182int
3183vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3184{
Florin Coras134a9962018-08-28 11:32:04 -07003185 vcl_worker_t *wrk = vcl_worker_get_current ();
3186 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003187 u32 i, keep_trying = 1;
3188 int rv, num_ev = 0;
3189
Florin Coras0d427d82018-06-27 03:24:07 -07003190 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3191 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003192
3193 if (!vp)
3194 return VPPCOM_EFAULT;
3195
3196 do
3197 {
Florin Coras7e12d942018-06-27 14:32:43 -07003198 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003199
3200 for (i = 0; i < n_sids; i++)
3201 {
3202 ASSERT (vp[i].revents);
3203
Florin Coras134a9962018-08-28 11:32:04 -07003204 session = vcl_session_get (wrk, vp[i].sid);
Florin Coras070453d2018-08-24 17:04:27 -07003205 if (!session)
3206 continue;
Dave Wallace048b1d62018-01-03 22:24:41 -05003207
3208 if (*vp[i].revents)
3209 *vp[i].revents = 0;
3210
3211 if (POLLIN & vp[i].events)
3212 {
Florin Coras54693d22018-07-17 10:46:29 -07003213 rv = vppcom_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003214 if (rv > 0)
3215 {
3216 *vp[i].revents |= POLLIN;
3217 num_ev++;
3218 }
3219 else if (rv < 0)
3220 {
3221 switch (rv)
3222 {
3223 case VPPCOM_ECONNRESET:
3224 *vp[i].revents = POLLHUP;
3225 break;
3226
3227 default:
3228 *vp[i].revents = POLLERR;
3229 break;
3230 }
3231 num_ev++;
3232 }
3233 }
3234
3235 if (POLLOUT & vp[i].events)
3236 {
Florin Coras134a9962018-08-28 11:32:04 -07003237 rv = vppcom_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003238 if (rv > 0)
3239 {
3240 *vp[i].revents |= POLLOUT;
3241 num_ev++;
3242 }
3243 else if (rv < 0)
3244 {
3245 switch (rv)
3246 {
3247 case VPPCOM_ECONNRESET:
3248 *vp[i].revents = POLLHUP;
3249 break;
3250
3251 default:
3252 *vp[i].revents = POLLERR;
3253 break;
3254 }
3255 num_ev++;
3256 }
3257 }
3258
Dave Wallace7e607a72018-06-18 18:41:32 -04003259 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003260 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003261 *vp[i].revents = POLLNVAL;
3262 num_ev++;
3263 }
3264 }
3265 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003266 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003267 }
3268 while ((num_ev == 0) && keep_trying);
3269
3270 if (VPPCOM_DEBUG > 3)
3271 {
3272 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3273 for (i = 0; i < n_sids; i++)
3274 {
3275 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3276 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
3277 vp[i].events, *vp[i].revents);
3278 }
3279 }
3280 return num_ev;
3281}
3282
Florin Coras99368312018-08-02 10:45:44 -07003283int
3284vppcom_mq_epoll_fd (void)
3285{
Florin Coras134a9962018-08-28 11:32:04 -07003286 vcl_worker_t *wrk = vcl_worker_get_current ();
3287 return wrk->mqs_epfd;
3288}
3289
3290int
3291vppcom_session_index (uint32_t session_handle)
3292{
3293 return session_handle & 0xFFFFFF;
3294}
3295
3296int
3297vppcom_worker_register (void)
3298{
Florin Coras6d4bb422018-09-04 22:07:27 -07003299 if (vcl_worker_alloc_and_init ())
Florin Coras134a9962018-08-28 11:32:04 -07003300 return VPPCOM_OK;
3301 return VPPCOM_EEXIST;
Florin Coras99368312018-08-02 10:45:44 -07003302}
3303
Dave Wallacee22aa742017-10-20 12:30:38 -04003304/*
3305 * fd.io coding-style-patch-verification: ON
3306 *
3307 * Local Variables:
3308 * eval: (c-set-style "gnu")
3309 * End:
3310 */