blob: 195e6cbc60214ef74ff2fdcb232cf10870ba2412 [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;
Dave Barach178cf492018-11-13 16:34:13 -0500314 clib_memcpy_fast (&session->transport.rmt_ip, mp->ip,
315 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700316
Florin Coras134a9962018-08-28 11:32:04 -0700317 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700318 session->transport.lcl_port = listen_session->transport.lcl_port;
319 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700320 session->session_type = listen_session->session_type;
321 session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
Florin Coras54693d22018-07-17 10:46:29 -0700322
323 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
Florin Coras134a9962018-08-28 11:32:04 -0700324 " address %U port %d queue %p!", getpid (), mp->handle,
325 session->session_index,
Florin Coras54693d22018-07-17 10:46:29 -0700326 mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
327 mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
328 clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
329 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
330
Florin Coras134a9962018-08-28 11:32:04 -0700331 return session->session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700332}
333
334static u32
Florin Coras134a9962018-08-28 11:32:04 -0700335vcl_session_connected_handler (vcl_worker_t * wrk,
336 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700337{
Florin Coras99368312018-08-02 10:45:44 -0700338 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700339 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700340 vcl_session_t *session = 0;
341 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700342
343 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700344 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700345 if (!session)
346 {
347 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
348 "Invalid session index (%u)!",
349 getpid (), mp->handle, session_index);
350 return VCL_INVALID_SESSION_INDEX;
351 }
Florin Coras54693d22018-07-17 10:46:29 -0700352 if (mp->retval)
353 {
Florin Coras070453d2018-08-24 17:04:27 -0700354 clib_warning ("VCL<%d>: ERROR: sid %u: connect failed! %U", getpid (),
Florin Coras21795132018-09-09 09:40:51 -0700355 session_index, format_api_error, ntohl (mp->retval));
Florin Coras070453d2018-08-24 17:04:27 -0700356 session->session_state = STATE_FAILED;
357 session->vpp_handle = mp->handle;
358 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700359 }
360
Florin Coras460dce62018-07-27 05:45:06 -0700361 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
362 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
363 vcl_wait_for_memory (rx_fifo);
364 rx_fifo->client_session_index = session_index;
365 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700366 rx_fifo->client_thread_index = vcl_get_worker_index ();
367 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700368
Florin Coras54693d22018-07-17 10:46:29 -0700369 if (mp->client_event_queue_address)
370 {
371 session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
372 svm_msg_q_t *);
373 session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
374 svm_msg_q_t *);
Florin Coras99368312018-08-02 10:45:44 -0700375
Florin Coras134a9962018-08-28 11:32:04 -0700376 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700377 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700378 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700379 }
380 else
Florin Coras99368312018-08-02 10:45:44 -0700381 {
382 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
383 svm_msg_q_t *);
384 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700385 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
386 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700387 }
Florin Coras54693d22018-07-17 10:46:29 -0700388
Florin Coras54693d22018-07-17 10:46:29 -0700389 session->rx_fifo = rx_fifo;
390 session->tx_fifo = tx_fifo;
391 session->vpp_handle = mp->handle;
392 session->transport.is_ip4 = mp->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500393 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
394 sizeof (session->transport.lcl_ip));
Florin Coras54693d22018-07-17 10:46:29 -0700395 session->transport.lcl_port = mp->lcl_port;
396 session->session_state = STATE_CONNECT;
397
398 /* Add it to lookup table */
Florin Coras134a9962018-08-28 11:32:04 -0700399 hash_set (wrk->session_index_by_vpp_handles, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700400
401 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
402 "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
403 getpid (), mp->handle, session_index, session->rx_fifo,
404 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700405
Florin Coras54693d22018-07-17 10:46:29 -0700406 return session_index;
407}
408
Florin Corasc9fbd662018-08-24 12:59:56 -0700409static u32
Florin Coras134a9962018-08-28 11:32:04 -0700410vcl_session_reset_handler (vcl_worker_t * wrk,
411 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700412{
413 vcl_session_t *session;
414 u32 sid;
415
Florin Coras134a9962018-08-28 11:32:04 -0700416 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
417 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700418 if (!session)
419 {
420 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
421 return VCL_INVALID_SESSION_INDEX;
422 }
423 session->session_state = STATE_CLOSE_ON_EMPTY;
424 VDBG (0, "reset handle 0x%llx, sid %u ", reset_msg->handle, sid);
Florin Coras134a9962018-08-28 11:32:04 -0700425 vcl_send_session_reset_reply (vcl_session_vpp_evt_q (wrk, session),
Florin Coras47c40e22018-11-26 17:01:36 -0800426 wrk->my_client_index, reset_msg->handle, 0);
Florin Corasc9fbd662018-08-24 12:59:56 -0700427 return sid;
428}
429
Florin Coras60116992018-08-27 09:52:18 -0700430static u32
Florin Coras134a9962018-08-28 11:32:04 -0700431vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700432{
433 vcl_session_t *session;
434 u32 sid = mp->context;
435
Florin Coras134a9962018-08-28 11:32:04 -0700436 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700437 if (mp->retval)
438 {
439 VDBG (0, "VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: bind failed: %U",
440 getpid (), mp->handle, sid, format_api_error, ntohl (mp->retval));
441 if (session)
442 {
443 session->session_state = STATE_FAILED;
444 session->vpp_handle = mp->handle;
445 return sid;
446 }
447 else
448 {
449 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
450 "Invalid session index (%u)!",
451 getpid (), mp->handle, sid);
452 return VCL_INVALID_SESSION_INDEX;
453 }
454 }
455
456 session->vpp_handle = mp->handle;
457 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500458 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
459 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700460 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700461 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700462 session->session_state = STATE_LISTEN;
463
464 if (session->is_dgram)
465 {
466 svm_fifo_t *rx_fifo, *tx_fifo;
467 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
468 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
469 rx_fifo->client_session_index = sid;
470 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
471 tx_fifo->client_session_index = sid;
472 session->rx_fifo = rx_fifo;
473 session->tx_fifo = tx_fifo;
474 }
475
476 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: bind succeeded!",
477 getpid (), mp->handle, sid);
478 return sid;
479}
480
Florin Coras86f04502018-09-12 16:08:01 -0700481static int
482vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700483{
484 session_accepted_msg_t *accepted_msg;
485 session_disconnected_msg_t *disconnected_msg;
486 vcl_session_msg_t *vcl_msg;
487 vcl_session_t *session;
488 u64 handle;
489 u32 sid;
490
491 switch (e->event_type)
492 {
493 case FIFO_EVENT_APP_RX:
Florin Coras86f04502018-09-12 16:08:01 -0700494 case FIFO_EVENT_APP_TX:
495 case SESSION_IO_EVT_CT_RX:
496 case SESSION_IO_EVT_CT_TX:
497 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700498 break;
499 case SESSION_CTRL_EVT_ACCEPTED:
500 accepted_msg = (session_accepted_msg_t *) e->data;
501 handle = accepted_msg->listener_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700502 session = vcl_session_table_lookup_listener (wrk, handle);
Florin Coras54693d22018-07-17 10:46:29 -0700503 if (!session)
504 {
505 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
506 "listener handle %llx", getpid (), handle);
507 break;
508 }
509
510 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
511 vcl_msg->accepted_msg = *accepted_msg;
512 break;
513 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700514 vcl_session_connected_handler (wrk,
515 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700516 break;
517 case SESSION_CTRL_EVT_DISCONNECTED:
518 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras134a9962018-08-28 11:32:04 -0700519 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
520 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700521 if (!session)
522 {
523 VDBG (0, "request to disconnect unknown handle 0x%llx",
524 disconnected_msg->handle);
525 break;
526 }
Florin Coras54693d22018-07-17 10:46:29 -0700527 session->session_state = STATE_DISCONNECT;
Florin Coras86f04502018-09-12 16:08:01 -0700528 VDBG (0, "disconnected handle 0x%llx, sid %u", disconnected_msg->handle,
Florin Corasc9fbd662018-08-24 12:59:56 -0700529 sid);
530 break;
531 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700532 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700533 break;
534 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700535 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700536 break;
537 default:
538 clib_warning ("unhandled %u", e->event_type);
539 }
540 return VPPCOM_OK;
541}
542
Florin Coras697faea2018-06-27 17:10:49 -0700543static inline int
544vppcom_wait_for_session_state_change (u32 session_index,
545 session_state_t state,
546 f64 wait_for_time)
547{
Florin Coras134a9962018-08-28 11:32:04 -0700548 vcl_worker_t *wrk = vcl_worker_get_current ();
549 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700550 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700551 svm_msg_q_msg_t msg;
552 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400553
Florin Coras697faea2018-06-27 17:10:49 -0700554 do
Dave Wallace543852a2017-08-03 02:11:34 -0400555 {
Florin Coras134a9962018-08-28 11:32:04 -0700556 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700557 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700558 {
Florin Coras070453d2018-08-24 17:04:27 -0700559 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700560 }
561 if (session->session_state & state)
562 {
Florin Coras697faea2018-06-27 17:10:49 -0700563 return VPPCOM_OK;
564 }
565 if (session->session_state & STATE_FAILED)
566 {
Florin Coras697faea2018-06-27 17:10:49 -0700567 return VPPCOM_ECONNREFUSED;
568 }
Florin Coras54693d22018-07-17 10:46:29 -0700569
Florin Coras134a9962018-08-28 11:32:04 -0700570 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -0700571 continue;
Florin Coras134a9962018-08-28 11:32:04 -0700572 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700573 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700574 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800575 }
Florin Coras134a9962018-08-28 11:32:04 -0700576 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800577
Florin Coras697faea2018-06-27 17:10:49 -0700578 VDBG (0, "VCL<%d>: timeout waiting for state 0x%x (%s)", getpid (), state,
579 vppcom_session_state_str (state));
580 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400581
Florin Coras697faea2018-06-27 17:10:49 -0700582 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500583}
584
Florin Coras697faea2018-06-27 17:10:49 -0700585static int
586vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400587{
Florin Coras697faea2018-06-27 17:10:49 -0700588 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400589
Florin Coras697faea2018-06-27 17:10:49 -0700590 if (vcm->app_state != STATE_APP_ENABLED)
591 {
592 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700593 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700594 if (PREDICT_FALSE (rv))
595 {
596 VDBG (0, "VCL<%d>: application session enable timed out! "
597 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
598 return rv;
599 }
600 }
601 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400602}
603
Florin Coras697faea2018-06-27 17:10:49 -0700604static int
605vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400606{
Florin Coras697faea2018-06-27 17:10:49 -0700607 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400608
Florin Coras697faea2018-06-27 17:10:49 -0700609 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -0700610 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -0700611 if (PREDICT_FALSE (rv))
612 {
613 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
614 getpid (), rv, vppcom_retval_str (rv));
615 return rv;
616 }
Dave Wallace543852a2017-08-03 02:11:34 -0400617
Florin Coras697faea2018-06-27 17:10:49 -0700618 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400619}
620
621static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700622vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400623{
Florin Coras134a9962018-08-28 11:32:04 -0700624 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700625 vcl_session_t *session = 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500626 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400627
Florin Corasab2f6db2018-08-31 14:31:41 -0700628 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700629 if (!session)
630 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500631
632 vpp_handle = session->vpp_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700633 vcl_session_table_del_listener (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500634 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700635 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500636
Florin Coras0d427d82018-06-27 03:24:07 -0700637 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
Florin Corasab2f6db2018-08-31 14:31:41 -0700638 " 0x%x (%s)", getpid (), vpp_handle, session_handle, STATE_DISCONNECT,
Florin Coras0d427d82018-06-27 03:24:07 -0700639 vppcom_session_state_str (STATE_DISCONNECT));
640 vcl_evt (VCL_EVT_UNBIND, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500641 vppcom_send_unbind_sock (vpp_handle);
642
Florin Coras070453d2018-08-24 17:04:27 -0700643 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400644}
645
Florin Coras697faea2018-06-27 17:10:49 -0700646static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700647vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400648{
Florin Coras134a9962018-08-28 11:32:04 -0700649 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -0700650 svm_msg_q_t *vpp_evt_q;
Florin Coras7e12d942018-06-27 14:32:43 -0700651 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500652 session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -0700653 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400654
Florin Corasab2f6db2018-08-31 14:31:41 -0700655 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -0700656 if (!session)
657 return VPPCOM_EBADFD;
658
Dave Wallace4878cbe2017-11-21 03:45:09 -0500659 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700660 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500661
Florin Coras0d427d82018-06-27 03:24:07 -0700662 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
Florin Corasab2f6db2018-08-31 14:31:41 -0700663 vpp_handle, session_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400664
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800665 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400666 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500667 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500668 "Cannot disconnect a listen socket!",
Florin Corasab2f6db2018-08-31 14:31:41 -0700669 getpid (), vpp_handle, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700670 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500671 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400672
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800673 if (state & STATE_CLOSE_ON_EMPTY)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500674 {
Florin Coras134a9962018-08-28 11:32:04 -0700675 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -0800676 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -0700677 vpp_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700678 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
Florin Corasab2f6db2018-08-31 14:31:41 -0700679 "REPLY...", getpid (), vpp_handle, session_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400680 }
681 else
Dave Wallace227867f2017-11-13 21:21:53 -0500682 {
Florin Coras0d427d82018-06-27 03:24:07 -0700683 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
Florin Corasab2f6db2018-08-31 14:31:41 -0700684 getpid (), vpp_handle, session_handle);
685 vppcom_send_disconnect_session (vpp_handle);
Dave Wallace227867f2017-11-13 21:21:53 -0500686 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400687
Florin Coras070453d2018-08-24 17:04:27 -0700688 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400689}
690
Florin Coras053a0e42018-11-13 15:52:38 -0800691static void
692vcl_cleanup_bapi (void)
693{
Florin Coras47c40e22018-11-26 17:01:36 -0800694 socket_client_main_t *scm = &socket_client_main;
Florin Coras053a0e42018-11-13 15:52:38 -0800695 api_main_t *am = &api_main;
696
697 am->my_client_index = ~0;
698 am->my_registration = 0;
699 am->vl_input_queue = 0;
700 am->msg_index_by_name_and_crc = 0;
Florin Coras47c40e22018-11-26 17:01:36 -0800701 scm->socket_fd = 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800702
703 vl_client_api_unmap ();
704}
705
706void
707vcl_app_fork_child_handler (void)
708{
709 u8 *child_name;
Florin Coras47c40e22018-11-26 17:01:36 -0800710 int rv, parent_wrk;
Florin Coras053a0e42018-11-13 15:52:38 -0800711
712 VDBG (0, "initializing forked child");
Florin Coras053a0e42018-11-13 15:52:38 -0800713
Florin Coras47c40e22018-11-26 17:01:36 -0800714 /*
715 * Allocate worker
716 */
717 parent_wrk = vcl_get_worker_index ();
718 vcl_set_worker_index (~0);
719 if (!vcl_worker_alloc_and_init ())
720 VERR ("couldn't allocate new worker");
721
722 /*
723 * Attach to binary api
724 */
725 child_name = format (0, "%v-child-%u%c", vcm->app_name, getpid (), 0);
Florin Coras053a0e42018-11-13 15:52:38 -0800726 vcl_cleanup_bapi ();
727 vppcom_api_hookup ();
728 vcm->app_state = STATE_APP_START;
729 rv = vppcom_connect_to_vpp ((char *) child_name);
730 vec_free (child_name);
731 if (rv)
732 {
733 VERR ("couldn't connect to VPP!");
734 return;
735 }
736
Florin Coras47c40e22018-11-26 17:01:36 -0800737 /*
738 * Register worker with vpp and share sessions
739 */
740 vcl_worker_register_with_vpp ();
741 vcl_worker_share_sessions (parent_wrk);
742
Florin Coras053a0e42018-11-13 15:52:38 -0800743 VDBG (0, "forked child main worker initialized");
Florin Coras47c40e22018-11-26 17:01:36 -0800744 vcm->forking = 0;
745}
746
747void
748vcl_app_fork_parent_handler (void)
749{
750 vcm->forking = 1;
751
752 while (vcm->forking)
753 ;
Florin Coras053a0e42018-11-13 15:52:38 -0800754}
755
Dave Wallace543852a2017-08-03 02:11:34 -0400756/*
757 * VPPCOM Public API functions
758 */
759int
760vppcom_app_create (char *app_name)
761{
Dave Wallace543852a2017-08-03 02:11:34 -0400762 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400763 int rv;
764
Florin Coras47c40e22018-11-26 17:01:36 -0800765 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -0400766 {
Florin Coras47c40e22018-11-26 17:01:36 -0800767 clib_warning ("already initialized");
768 return -1;
Dave Wallace543852a2017-08-03 02:11:34 -0400769 }
770
Florin Coras47c40e22018-11-26 17:01:36 -0800771 vcm->is_init = 1;
772 vppcom_cfg (&vcm->cfg);
773 vcl_cfg = &vcm->cfg;
774
775 vcm->main_cpu = pthread_self ();
776 vcm->main_pid = getpid ();
777 vcm->app_name = format (0, "%s", app_name);
778 vppcom_init_error_string_table ();
779 svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
780 20 /* timeout in secs */ );
781 pool_alloc (vcm->workers, vcl_cfg->max_workers);
782 clib_spinlock_init (&vcm->workers_lock);
783 pthread_atfork (NULL, vcl_app_fork_parent_handler,
784 vcl_app_fork_child_handler);
785
786 /* Allocate default worker */
787 vcl_worker_alloc_and_init ();
788
789 /* API hookup and connect to VPP */
790 vppcom_api_hookup ();
791 vcl_elog_init (vcm);
792 vcm->app_state = STATE_APP_START;
793 rv = vppcom_connect_to_vpp (app_name);
794 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -0400795 {
Florin Coras47c40e22018-11-26 17:01:36 -0800796 VERR ("couldn't connect to VPP!");
797 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400798 }
Florin Coras47c40e22018-11-26 17:01:36 -0800799 VDBG (0, "sending session enable");
800 rv = vppcom_app_session_enable ();
801 if (rv)
802 {
803 VERR ("vppcom_app_session_enable() failed!");
804 return rv;
805 }
806
807 VDBG (0, "sending app attach");
808 rv = vppcom_app_attach ();
809 if (rv)
810 {
811 VERR ("vppcom_app_attach() failed!");
812 return rv;
813 }
814
815 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
816 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -0400817
818 return VPPCOM_OK;
819}
820
821void
822vppcom_app_destroy (void)
823{
Dave Wallace543852a2017-08-03 02:11:34 -0400824 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400825 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400826
Florin Coras0d427d82018-06-27 03:24:07 -0700827 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800828
Florin Coras47c40e22018-11-26 17:01:36 -0800829 if (vec_len (vcm->workers) == 1)
830 {
831 vppcom_app_send_detach ();
832 orig_app_timeout = vcm->cfg.app_timeout;
833 vcm->cfg.app_timeout = 2.0;
834 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
835 vcm->cfg.app_timeout = orig_app_timeout;
836 if (PREDICT_FALSE (rv))
837 VDBG (0, "application detach timed out! returning %d (%s)", rv,
838 vppcom_retval_str (rv));
839 }
840 else
841 {
842 vcl_worker_cleanup ();
843 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800844
Florin Coras0d427d82018-06-27 03:24:07 -0700845 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400846 vl_client_disconnect_from_vlib ();
Florin Coras053a0e42018-11-13 15:52:38 -0800847 vec_free (vcm->app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400848}
849
850int
Dave Wallacec04cbf12018-02-07 18:14:02 -0500851vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -0400852{
Florin Coras134a9962018-08-28 11:32:04 -0700853 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700854 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -0400855
Florin Coras134a9962018-08-28 11:32:04 -0700856 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -0400857
Florin Coras7e12d942018-06-27 14:32:43 -0700858 session->session_type = proto;
859 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500860 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -0700861 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -0400862
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800863 if (is_nonblocking)
864 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -0400865
Florin Coras7e12d942018-06-27 14:32:43 -0700866 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
867 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800868
Florin Coras053a0e42018-11-13 15:52:38 -0800869 VDBG (0, "created sid %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800870
Florin Coras134a9962018-08-28 11:32:04 -0700871 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -0400872}
873
874int
Florin Coras134a9962018-08-28 11:32:04 -0700875vppcom_session_close (uint32_t session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400876{
Florin Coras134a9962018-08-28 11:32:04 -0700877 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras47c40e22018-11-26 17:01:36 -0800878 u8 is_vep, do_disconnect = 1;
Florin Coras7e12d942018-06-27 14:32:43 -0700879 vcl_session_t *session = 0;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400880 session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -0700881 u32 next_sh, vep_sh;
882 int rv = VPPCOM_OK;
883 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400884
Florin Coras134a9962018-08-28 11:32:04 -0700885 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700886 if (!session)
887 return VPPCOM_EBADFD;
888
Florin Coras47c40e22018-11-26 17:01:36 -0800889 if (session->shared_index != ~0)
890 do_disconnect = vcl_worker_unshare_session (wrk, session);
891
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400892 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -0700893 next_sh = session->vep.next_sh;
894 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -0700895 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -0500896 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400897
Florin Coras47c40e22018-11-26 17:01:36 -0800898 VDBG (0, "Closing session handle %u vpp handle %u", session_handle,
899 vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -0400900
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400901 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -0400902 {
Florin Coras134a9962018-08-28 11:32:04 -0700903 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -0400904 {
Florin Coras134a9962018-08-28 11:32:04 -0700905 rv = vppcom_epoll_ctl (session_handle, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700906 if (PREDICT_FALSE (rv < 0))
Florin Coras47c40e22018-11-26 17:01:36 -0800907 VDBG (0, "vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL vep_idx %u"
908 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
909 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400910
Florin Coras134a9962018-08-28 11:32:04 -0700911 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -0400912 }
913 }
914 else
915 {
Florin Coras47c40e22018-11-26 17:01:36 -0800916 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400917 {
Florin Coras134a9962018-08-28 11:32:04 -0700918 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, session_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700919 if (rv < 0)
Florin Coras47c40e22018-11-26 17:01:36 -0800920 VDBG (0, "vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL vep_idx %u "
921 "failed! rv %d (%s)", vpp_handle, session_handle, vep_sh,
922 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400923 }
924
Florin Coras47c40e22018-11-26 17:01:36 -0800925 if (!do_disconnect)
926 goto cleanup;
927
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800928 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400929 {
Florin Coras134a9962018-08-28 11:32:04 -0700930 rv = vppcom_session_unbind (session_handle);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800931 if (PREDICT_FALSE (rv < 0))
Florin Coras47c40e22018-11-26 17:01:36 -0800932 VDBG (0, "vpp handle 0x%llx, sid %u: listener unbind failed! "
933 "rv %d (%s)", vpp_handle, session_handle, rv,
934 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400935 }
Florin Coras070453d2018-08-24 17:04:27 -0700936 else if (state & STATE_OPEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400937 {
Florin Coras134a9962018-08-28 11:32:04 -0700938 rv = vppcom_session_disconnect (session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500939 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -0500940 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500941 "session disconnect failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700942 getpid (), vpp_handle, session_handle,
Dave Wallaceee45d412017-11-24 21:44:06 -0500943 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400944 }
Dave Wallace19481612017-09-15 18:47:44 -0400945 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500946
Florin Coras47c40e22018-11-26 17:01:36 -0800947cleanup:
948
Florin Coras99368312018-08-02 10:45:44 -0700949 if (vcl_session_is_ct (session))
950 {
951 vcl_cut_through_registration_t *ctr;
952 uword mq_addr;
953
954 mq_addr = pointer_to_uword (session->our_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -0700955 ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
Florin Coras99368312018-08-02 10:45:44 -0700956 ASSERT (ctr);
957 if (ctr->epoll_evt_conn_index != ~0)
Florin Coras134a9962018-08-28 11:32:04 -0700958 vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
Florin Coras99368312018-08-02 10:45:44 -0700959 VDBG (0, "Removing ct registration %u",
Florin Coras134a9962018-08-28 11:32:04 -0700960 vcl_ct_registration_index (wrk, ctr));
961 vcl_ct_registration_del (wrk, ctr);
962 vcl_ct_registration_lookup_del (wrk, mq_addr);
963 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700964 }
Florin Coras54693d22018-07-17 10:46:29 -0700965
Dave Wallaceee45d412017-11-24 21:44:06 -0500966 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500967 {
Florin Coras134a9962018-08-28 11:32:04 -0700968 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500969 }
Florin Coras134a9962018-08-28 11:32:04 -0700970 vcl_session_free (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500971
Florin Coras47c40e22018-11-26 17:01:36 -0800972 VDBG (0, "session handle %u vpp handle %u removed", session_handle,
973 vpp_handle);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800974
Florin Coras0d427d82018-06-27 03:24:07 -0700975 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800976
Dave Wallace543852a2017-08-03 02:11:34 -0400977 return rv;
978}
979
980int
Florin Coras134a9962018-08-28 11:32:04 -0700981vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -0400982{
Florin Coras134a9962018-08-28 11:32:04 -0700983 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700984 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400985
986 if (!ep || !ep->ip)
987 return VPPCOM_EINVAL;
988
Florin Coras134a9962018-08-28 11:32:04 -0700989 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700990 if (!session)
991 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -0400992
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400993 if (session->is_vep)
994 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500995 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -0700996 "bind to an epoll session!", getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700997 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400998 }
999
Florin Coras7e12d942018-06-27 14:32:43 -07001000 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001001 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001002 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1003 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001004 else
Dave Barach178cf492018-11-13 16:34:13 -05001005 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1006 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001007 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001008
Florin Coras0d427d82018-06-27 03:24:07 -07001009 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
Florin Coras134a9962018-08-28 11:32:04 -07001010 "proto %s", getpid (), session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001011 session->transport.is_ip4 ? "IPv4" : "IPv6",
1012 format_ip46_address, &session->transport.lcl_ip,
1013 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1014 clib_net_to_host_u16 (session->transport.lcl_port),
1015 session->session_type ? "UDP" : "TCP");
Florin Coras0d427d82018-06-27 03:24:07 -07001016 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001017
1018 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001019 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001020
Florin Coras070453d2018-08-24 17:04:27 -07001021 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001022}
1023
1024int
Florin Coras134a9962018-08-28 11:32:04 -07001025vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001026{
Florin Coras134a9962018-08-28 11:32:04 -07001027 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001028 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001029 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001030 int rv;
1031
Florin Coras134a9962018-08-28 11:32:04 -07001032 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001033 if (!listen_session)
1034 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001035
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001036 if (q_len == 0 || q_len == ~0)
1037 q_len = vcm->cfg.listen_queue_size;
1038
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001039 if (listen_session->is_vep)
1040 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001041 clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
Florin Coras134a9962018-08-28 11:32:04 -07001042 "epoll session!", getpid (), listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001043 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001044 }
1045
Dave Wallaceee45d412017-11-24 21:44:06 -05001046 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001047 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001048 {
Florin Coras0d427d82018-06-27 03:24:07 -07001049 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
Florin Coras134a9962018-08-28 11:32:04 -07001050 getpid (), listen_vpp_handle, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001051 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001052 }
1053
Florin Coras0d427d82018-06-27 03:24:07 -07001054 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
Florin Coras134a9962018-08-28 11:32:04 -07001055 "request...", getpid (), listen_vpp_handle, listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001056
Florin Coras070453d2018-08-24 17:04:27 -07001057 /*
1058 * Send listen request to vpp and wait for reply
1059 */
Florin Coras134a9962018-08-28 11:32:04 -07001060 vppcom_send_bind_sock (listen_session);
1061 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1062 STATE_LISTEN,
1063 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001064
Florin Coras070453d2018-08-24 17:04:27 -07001065 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001066 {
Florin Coras134a9962018-08-28 11:32:04 -07001067 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07001068 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
1069 "returning %d (%s)", getpid (), listen_session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001070 listen_sh, rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001071 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001072 }
1073
Florin Coras070453d2018-08-24 17:04:27 -07001074 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001075}
1076
Florin Coras134a9962018-08-28 11:32:04 -07001077static int
1078validate_args_session_accept_ (vcl_worker_t * wrk,
1079 vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001080{
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001081 /* Input validation - expects spinlock on sessions_lockp */
1082 if (listen_session->is_vep)
1083 {
1084 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
Florin Coras134a9962018-08-28 11:32:04 -07001085 "epoll session!", getpid (),
1086 listen_session->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001087 return VPPCOM_EBADFD;
1088 }
1089
Florin Coras7e12d942018-06-27 14:32:43 -07001090 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001091 {
1092 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1093 "not in listen state! state 0x%x (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001094 listen_session->vpp_handle, listen_session->session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001095 listen_session->session_state,
1096 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001097 return VPPCOM_EBADFD;
1098 }
1099 return VPPCOM_OK;
1100}
1101
1102int
Florin Coras134a9962018-08-28 11:32:04 -07001103vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001104 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001105{
Florin Coras134a9962018-08-28 11:32:04 -07001106 u32 client_session_index = ~0, listen_session_index;
1107 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001108 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001109 vcl_session_t *listen_session = 0;
1110 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001111 svm_msg_q_t *vpp_evt_q;
1112 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001113 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001114 svm_msg_q_msg_t msg;
1115 session_event_t *e;
1116 u8 is_nonblocking;
1117 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001118
Florin Coras134a9962018-08-28 11:32:04 -07001119 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001120 if (!listen_session)
1121 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001122
Florin Coras134a9962018-08-28 11:32:04 -07001123 listen_session_index = listen_session->session_index;
1124 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001125 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001126
Florin Coras54693d22018-07-17 10:46:29 -07001127 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001128 {
Florin Coras54693d22018-07-17 10:46:29 -07001129 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1130 accepted_msg = evt->accepted_msg;
1131 goto handle;
1132 }
1133
1134 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1135 VCL_SESS_ATTR_NONBLOCK);
Florin Coras134a9962018-08-28 11:32:04 -07001136 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
Florin Coras54693d22018-07-17 10:46:29 -07001137 return VPPCOM_EAGAIN;
1138
1139 while (1)
1140 {
Florin Coras134a9962018-08-28 11:32:04 -07001141 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001142 return VPPCOM_EAGAIN;
1143
Florin Coras134a9962018-08-28 11:32:04 -07001144 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001145 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001146 {
Florin Coras54693d22018-07-17 10:46:29 -07001147 clib_warning ("discarded event: %u", e->event_type);
Florin Coras134a9962018-08-28 11:32:04 -07001148 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001149 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001150 }
Dave Barach178cf492018-11-13 16:34:13 -05001151 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001152 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001153 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001154 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001155
Florin Coras54693d22018-07-17 10:46:29 -07001156handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001157
Florin Coras134a9962018-08-28 11:32:04 -07001158 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1159 listen_session = vcl_session_get (wrk, listen_session_index);
1160 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001161
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001162 if (flags & O_NONBLOCK)
1163 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001164
Florin Coras54693d22018-07-17 10:46:29 -07001165 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras0d427d82018-06-27 03:24:07 -07001166 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
1167 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
Florin Coras134a9962018-08-28 11:32:04 -07001168 getpid (), listen_vpp_handle, listen_session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001169 client_session->vpp_handle, client_session_index,
1170 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1171 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001172
Dave Wallace048b1d62018-01-03 22:24:41 -05001173 if (ep)
1174 {
Florin Coras7e12d942018-06-27 14:32:43 -07001175 ep->is_ip4 = client_session->transport.is_ip4;
1176 ep->port = client_session->transport.rmt_port;
1177 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001178 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1179 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001180 else
Dave Barach178cf492018-11-13 16:34:13 -05001181 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1182 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001183 }
Dave Wallace60caa062017-11-10 17:07:13 -05001184
Florin Coras54693d22018-07-17 10:46:29 -07001185 if (accepted_msg.server_event_queue_address)
1186 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1187 svm_msg_q_t *);
1188 else
1189 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001190
Florin Coras54693d22018-07-17 10:46:29 -07001191 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1192 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001193
Florin Coras54693d22018-07-17 10:46:29 -07001194 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx, "
1195 "sid %u connection from peer %s address %U port %u to local %s "
1196 "address %U port %u", getpid (), listen_vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001197 listen_session_handle, client_session->vpp_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001198 client_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001199 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1200 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001201 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001202 clib_net_to_host_u16 (client_session->transport.rmt_port),
1203 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1204 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001205 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001206 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001207 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1208 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001209
Florin Corasab2f6db2018-08-31 14:31:41 -07001210 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001211}
1212
1213int
Florin Coras134a9962018-08-28 11:32:04 -07001214vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001215{
Florin Coras134a9962018-08-28 11:32:04 -07001216 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001217 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001218 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001219 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001220
Florin Coras134a9962018-08-28 11:32:04 -07001221 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001222 if (!session)
1223 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001224 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001225
1226 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001227 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001228 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001229 "connect on an epoll session!", getpid (),
1230 session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001231 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001232 }
1233
Florin Coras7e12d942018-06-27 14:32:43 -07001234 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001235 {
Florin Coras0d427d82018-06-27 03:24:07 -07001236 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1237 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001238 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001239 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001240 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001241 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001242 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001243 clib_net_to_host_u16 (session->transport.rmt_port),
1244 session->session_type ? "UDP" : "TCP", session->session_state,
1245 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001246 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001247 }
1248
Florin Coras7e12d942018-06-27 14:32:43 -07001249 session->transport.is_ip4 = server_ep->is_ip4;
1250 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001251 clib_memcpy_fast (&session->transport.rmt_ip.ip4, server_ep->ip,
1252 sizeof (ip4_address_t));
Dave Wallaced239f8d2018-06-19 13:37:30 -04001253 else
Dave Barach178cf492018-11-13 16:34:13 -05001254 clib_memcpy_fast (&session->transport.rmt_ip.ip6, server_ep->ip,
1255 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001256 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001257
Florin Coras0d427d82018-06-27 03:24:07 -07001258 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1259 "port %d proto %s",
Florin Coras134a9962018-08-28 11:32:04 -07001260 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001261 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001262 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001263 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001264 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001265 clib_net_to_host_u16 (session->transport.rmt_port),
1266 session->session_type ? "UDP" : "TCP");
Dave Wallace543852a2017-08-03 02:11:34 -04001267
Florin Coras070453d2018-08-24 17:04:27 -07001268 /*
1269 * Send connect request and wait for reply from vpp
1270 */
Florin Coras134a9962018-08-28 11:32:04 -07001271 vppcom_send_connect_sock (session);
Florin Coras070453d2018-08-24 17:04:27 -07001272 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1273 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001274
Florin Coras134a9962018-08-28 11:32:04 -07001275 session = vcl_session_get (wrk, session_index);
Dave Wallace7876d392017-10-19 03:53:57 -04001276
Florin Coras070453d2018-08-24 17:04:27 -07001277 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001278 {
Dave Wallaceee45d412017-11-24 21:44:06 -05001279 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001280 {
1281 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001282 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
Florin Coras134a9962018-08-28 11:32:04 -07001283 "failed! returning %d (%s)", getpid (),
1284 session->vpp_handle, session_handle, rv,
1285 vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001286 else
1287 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1288 "returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001289 session_handle, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001290 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001291 }
Florin Coras0d427d82018-06-27 03:24:07 -07001292 else
1293 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
Florin Coras134a9962018-08-28 11:32:04 -07001294 getpid (), session->vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -05001295
Dave Wallace4878cbe2017-11-21 03:45:09 -05001296 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001297}
1298
Florin Coras54693d22018-07-17 10:46:29 -07001299static u8
1300vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1301{
1302 if (!is_ct)
1303 return (e->event_type == FIFO_EVENT_APP_RX
1304 && e->fifo->client_session_index == sid);
1305 else
1306 return (e->event_type == SESSION_IO_EVT_CT_TX);
1307}
1308
Florin Coras460dce62018-07-27 05:45:06 -07001309static inline u8
1310vcl_session_is_readable (vcl_session_t * s)
1311{
1312 return ((s->session_state & STATE_OPEN)
1313 || (s->session_state == STATE_LISTEN
1314 && s->session_type == VPPCOM_PROTO_UDP));
1315}
1316
Steven58f464e2017-10-25 12:33:12 -07001317static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001318vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001319 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001320{
Florin Coras134a9962018-08-28 11:32:04 -07001321 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001322 int n_read = 0, rv, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001323 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001324 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001325 svm_msg_q_msg_t msg;
1326 session_event_t *e;
1327 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001328 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001329
Florin Coras070453d2018-08-24 17:04:27 -07001330 if (PREDICT_FALSE (!buf))
1331 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001332
Florin Coras134a9962018-08-28 11:32:04 -07001333 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001334 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001335 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001336
Florin Coras460dce62018-07-27 05:45:06 -07001337 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001338 {
Florin Coras460dce62018-07-27 05:45:06 -07001339 session_state_t state = s->session_state;
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001340 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001341
Florin Coras0d427d82018-06-27 03:24:07 -07001342 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1343 "state 0x%x (%s), returning %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001344 getpid (), s->vpp_handle, session_handle, state,
Florin Coras0d427d82018-06-27 03:24:07 -07001345 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001346 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001347 }
1348
Florin Coras2cba8532018-09-11 16:33:36 -07001349 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001350 is_ct = vcl_session_is_ct (s);
1351 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras2cba8532018-09-11 16:33:36 -07001352 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001353 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001354
Florin Coras54693d22018-07-17 10:46:29 -07001355 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001356 {
Florin Coras54693d22018-07-17 10:46:29 -07001357 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001358 {
Florin Coras41c9e042018-09-11 00:10:41 -07001359 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001360 return VPPCOM_EWOULDBLOCK;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001361 }
Florin Coras41c9e042018-09-11 00:10:41 -07001362 while (svm_fifo_is_empty (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001363 {
Florin Coras41c9e042018-09-11 00:10:41 -07001364 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001365 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001366 if (svm_msg_q_is_empty (mq))
1367 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001368
Florin Coras54693d22018-07-17 10:46:29 -07001369 svm_msg_q_sub_w_lock (mq, &msg);
1370 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001371 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001372 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras54693d22018-07-17 10:46:29 -07001373 {
Florin Coras86f04502018-09-12 16:08:01 -07001374 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001375 svm_msg_q_free_msg (mq, &msg);
1376 continue;
1377 }
Florin Coras54693d22018-07-17 10:46:29 -07001378 svm_msg_q_free_msg (mq, &msg);
Florin Coras41c9e042018-09-11 00:10:41 -07001379
Florin Coras60f1fc12018-08-16 14:57:31 -07001380 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1381 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07001382 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001383 }
Florin Coras54693d22018-07-17 10:46:29 -07001384
Florin Coras460dce62018-07-27 05:45:06 -07001385 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001386 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001387 else
Florin Coras99368312018-08-02 10:45:44 -07001388 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001389
Florin Coras41c9e042018-09-11 00:10:41 -07001390 if (svm_fifo_is_empty (rx_fifo))
1391 svm_fifo_unset_event (rx_fifo);
1392
Florin Coras58c101a2018-10-06 13:49:16 -07001393 if (is_ct && svm_fifo_want_tx_evt (rx_fifo))
Florin Coras99368312018-08-02 10:45:44 -07001394 {
Florin Coras58c101a2018-10-06 13:49:16 -07001395 svm_fifo_set_want_tx_evt (s->rx_fifo, 0);
1396 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo, SESSION_IO_EVT_CT_RX,
1397 SVM_Q_WAIT);
Florin Coras99368312018-08-02 10:45:44 -07001398 }
Florin Coras54693d22018-07-17 10:46:29 -07001399
Florin Coras2cba8532018-09-11 16:33:36 -07001400 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes from (%p)",
1401 getpid (), s->vpp_handle, session_handle, n_read, rx_fifo);
1402
Florin Coras54693d22018-07-17 10:46:29 -07001403 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001404}
1405
Steven58f464e2017-10-25 12:33:12 -07001406int
Florin Coras134a9962018-08-28 11:32:04 -07001407vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001408{
Florin Coras134a9962018-08-28 11:32:04 -07001409 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001410}
1411
1412static int
Florin Coras134a9962018-08-28 11:32:04 -07001413vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001414{
Florin Coras134a9962018-08-28 11:32:04 -07001415 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001416}
1417
Florin Coras2cba8532018-09-11 16:33:36 -07001418int
1419vppcom_session_read_segments (uint32_t session_handle,
1420 vppcom_data_segments_t ds)
1421{
1422 vcl_worker_t *wrk = vcl_worker_get_current ();
1423 int n_read = 0, rv, is_nonblocking;
1424 vcl_session_t *s = 0;
1425 svm_fifo_t *rx_fifo;
1426 svm_msg_q_msg_t msg;
1427 session_event_t *e;
1428 svm_msg_q_t *mq;
1429 u8 is_ct;
1430
1431 s = vcl_session_get_w_handle (wrk, session_handle);
1432 if (PREDICT_FALSE (!s || s->is_vep))
1433 return VPPCOM_EBADFD;
1434
1435 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
1436 {
1437 session_state_t state = s->session_state;
1438 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1439 return rv;
1440 }
1441
1442 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1443 is_ct = vcl_session_is_ct (s);
1444 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1445 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001446 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001447
1448 if (svm_fifo_is_empty (rx_fifo))
1449 {
1450 if (is_nonblocking)
1451 {
1452 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001453 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001454 }
1455 while (svm_fifo_is_empty (rx_fifo))
1456 {
1457 svm_fifo_unset_event (rx_fifo);
1458 svm_msg_q_lock (mq);
1459 if (svm_msg_q_is_empty (mq))
1460 svm_msg_q_wait (mq);
1461
1462 svm_msg_q_sub_w_lock (mq, &msg);
1463 e = svm_msg_q_msg_data (mq, &msg);
1464 svm_msg_q_unlock (mq);
1465 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1466 {
Florin Coras86f04502018-09-12 16:08:01 -07001467 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001468 svm_msg_q_free_msg (mq, &msg);
1469 continue;
1470 }
1471 svm_msg_q_free_msg (mq, &msg);
1472
1473 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1474 return 0;
1475 }
1476 }
1477
1478 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_segment_t *) ds);
1479 svm_fifo_unset_event (rx_fifo);
1480
1481 if (is_ct && n_read + svm_fifo_max_dequeue (rx_fifo) == rx_fifo->nitems)
1482 {
1483 /* If the peer is not polling send notification */
1484 if (!svm_fifo_has_event (s->rx_fifo))
1485 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1486 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1487 }
1488
1489 return n_read;
1490}
1491
1492void
1493vppcom_session_free_segments (uint32_t session_handle,
1494 vppcom_data_segments_t ds)
1495{
1496 vcl_worker_t *wrk = vcl_worker_get_current ();
1497 vcl_session_t *s;
1498
1499 s = vcl_session_get_w_handle (wrk, session_handle);
1500 if (PREDICT_FALSE (!s || s->is_vep))
1501 return;
1502
1503 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_segment_t *) ds);
1504}
1505
Dave Wallace543852a2017-08-03 02:11:34 -04001506static inline int
Florin Coras54693d22018-07-17 10:46:29 -07001507vppcom_session_read_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001508{
Dave Wallace543852a2017-08-03 02:11:34 -04001509 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001510 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001511 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001512 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Florin Coras134a9962018-08-28 11:32:04 -07001513 "epoll session!", getpid (), session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001514 return VPPCOM_EBADFD;
1515 }
1516
1517 if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1518 {
1519 session_state_t state = session->session_state;
1520 int rv;
1521
1522 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1523
1524 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1525 " state 0x%x (%s), returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001526 session->vpp_handle, session->session_index, state,
Florin Coras54693d22018-07-17 10:46:29 -07001527 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1528 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001529 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001530
Florin Coras7e12d942018-06-27 14:32:43 -07001531 if (session->session_state & STATE_LISTEN)
Florin Coras54693d22018-07-17 10:46:29 -07001532 return clib_fifo_elts (session->accept_evts_fifo);
1533
1534 return svm_fifo_max_dequeue (session->rx_fifo);
1535}
1536
Florin Coras2cba8532018-09-11 16:33:36 -07001537int
1538vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1539{
1540 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001541 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001542 if (first_copy < max_bytes)
1543 {
Dave Barach178cf492018-11-13 16:34:13 -05001544 clib_memcpy_fast (buf + first_copy, ds[1].data,
1545 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001546 }
1547 return 0;
1548}
1549
Florin Coras54693d22018-07-17 10:46:29 -07001550static u8
1551vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1552{
1553 if (!is_ct)
1554 return (e->event_type == FIFO_EVENT_APP_TX
1555 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001556 else
Florin Coras54693d22018-07-17 10:46:29 -07001557 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001558}
1559
1560int
Florin Coras134a9962018-08-28 11:32:04 -07001561vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
Dave Wallace543852a2017-08-03 02:11:34 -04001562{
Florin Coras134a9962018-08-28 11:32:04 -07001563 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001564 int rv, n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001565 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001566 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001567 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001568 svm_msg_q_msg_t msg;
1569 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001570 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001571 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001572
Florin Coras070453d2018-08-24 17:04:27 -07001573 if (PREDICT_FALSE (!buf))
1574 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001575
Florin Coras134a9962018-08-28 11:32:04 -07001576 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001577 if (PREDICT_FALSE (!s))
1578 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001579
Florin Coras460dce62018-07-27 05:45:06 -07001580 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001581 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001582 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001583 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001584 getpid (), s->vpp_handle, session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001585
Florin Coras070453d2018-08-24 17:04:27 -07001586 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001587 }
1588
Florin Coras0e88e852018-09-17 22:09:02 -07001589 if (PREDICT_FALSE (!(s->session_state & STATE_OPEN)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001590 {
Florin Coras460dce62018-07-27 05:45:06 -07001591 session_state_t state = s->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001592 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Florin Coras0d427d82018-06-27 03:24:07 -07001593 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
Florin Coras0e88e852018-09-17 22:09:02 -07001594 "state 0x%x (%s)", getpid (), s->vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001595 state, vppcom_session_state_str (state));
Florin Coras070453d2018-08-24 17:04:27 -07001596 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001597 }
1598
Florin Coras0e88e852018-09-17 22:09:02 -07001599 tx_fifo = s->tx_fifo;
1600 is_ct = vcl_session_is_ct (s);
1601 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1602 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001603 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001604 {
Florin Coras54693d22018-07-17 10:46:29 -07001605 if (is_nonblocking)
1606 {
Florin Coras070453d2018-08-24 17:04:27 -07001607 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001608 }
Florin Coras60f1fc12018-08-16 14:57:31 -07001609 while (svm_fifo_is_full (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001610 {
Florin Coras0e88e852018-09-17 22:09:02 -07001611 svm_fifo_set_want_tx_evt (tx_fifo, 1);
Florin Coras99368312018-08-02 10:45:44 -07001612 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001613 if (svm_msg_q_is_empty (mq))
1614 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001615
Florin Coras54693d22018-07-17 10:46:29 -07001616 svm_msg_q_sub_w_lock (mq, &msg);
1617 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001618 svm_msg_q_unlock (mq);
1619
Florin Coras0e88e852018-09-17 22:09:02 -07001620 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001621 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001622 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001623 }
Dave Wallace543852a2017-08-03 02:11:34 -04001624 }
Dave Wallace543852a2017-08-03 02:11:34 -04001625
Florin Coras460dce62018-07-27 05:45:06 -07001626 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1627 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
1628 if (s->is_dgram)
1629 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1630 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1631 else
1632 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1633 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001634
Florin Coras460dce62018-07-27 05:45:06 -07001635 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001636
Florin Coras0e88e852018-09-17 22:09:02 -07001637 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: wrote %d bytes", getpid (),
1638 s->vpp_handle, session_handle, n_write);
1639
Florin Coras54693d22018-07-17 10:46:29 -07001640 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04001641}
1642
Florin Coras99368312018-08-02 10:45:44 -07001643static vcl_session_t *
Florin Coras134a9962018-08-28 11:32:04 -07001644vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
Florin Coras99368312018-08-02 10:45:44 -07001645{
1646 vcl_session_t *s;
Florin Coras134a9962018-08-28 11:32:04 -07001647 s = vcl_session_get (wrk, f->client_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001648 if (s)
1649 {
1650 /* rx fifo */
1651 if (type == 0 && s->rx_fifo == f)
1652 return s;
1653 /* tx fifo */
1654 if (type == 1 && s->tx_fifo == f)
1655 return s;
1656 }
Florin Coras134a9962018-08-28 11:32:04 -07001657 s = vcl_session_get (wrk, f->master_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001658 if (s)
1659 {
1660 if (type == 0 && s->rx_fifo == f)
1661 return s;
1662 if (type == 1 && s->tx_fifo == f)
1663 return s;
1664 }
1665 return 0;
1666}
1667
Dave Wallace543852a2017-08-03 02:11:34 -04001668static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001669vppcom_session_write_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001670{
Dave Wallace543852a2017-08-03 02:11:34 -04001671 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001672 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001673 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001674 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001675 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001676 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001677 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001678 }
1679
Florin Coras7e12d942018-06-27 14:32:43 -07001680 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001681 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001682 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001683 "cannot write to a listen session!",
Florin Coras134a9962018-08-28 11:32:04 -07001684 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001685 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001686 }
1687
Florin Coras54693d22018-07-17 10:46:29 -07001688 if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001689 {
Florin Coras7e12d942018-06-27 14:32:43 -07001690 session_state_t state = session->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001691 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001692
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001693 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace048b1d62018-01-03 22:24:41 -05001694 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001695 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001696 "returning %d (%s)", getpid (), session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001697 session->session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001698 state, vppcom_session_state_str (state),
1699 rv, vppcom_retval_str (rv));
Florin Coras54693d22018-07-17 10:46:29 -07001700 return rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001701 }
1702
Florin Coras0d427d82018-06-27 03:24:07 -07001703 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
Florin Coras134a9962018-08-28 11:32:04 -07001704 getpid (), session->vpp_handle, session->session_index,
1705 session->tx_fifo, svm_fifo_max_enqueue (session->tx_fifo));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001706
Florin Coras54693d22018-07-17 10:46:29 -07001707 return svm_fifo_max_enqueue (session->tx_fifo);
1708}
1709
Florin Coras99368312018-08-02 10:45:44 -07001710static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001711vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
Florin Coras99368312018-08-02 10:45:44 -07001712{
1713 svm_msg_q_msg_t *msg;
1714 u32 n_msgs;
1715 int i;
1716
1717 n_msgs = svm_msg_q_size (mq);
1718 for (i = 0; i < n_msgs; i++)
1719 {
Florin Coras134a9962018-08-28 11:32:04 -07001720 vec_add2 (wrk->mq_msg_vector, msg, 1);
Florin Coras99368312018-08-02 10:45:44 -07001721 svm_msg_q_sub_w_lock (mq, msg);
1722 }
1723 return n_msgs;
1724}
1725
Florin Coras6d4bb422018-09-04 22:07:27 -07001726#define vcl_fifo_rx_evt_valid_or_break(_fifo) \
1727if (PREDICT_FALSE (svm_fifo_is_empty (_fifo))) \
1728 { \
1729 svm_fifo_unset_event (_fifo); \
1730 if (svm_fifo_is_empty (_fifo)) \
Florin Coras41c9e042018-09-11 00:10:41 -07001731 break; \
Florin Coras6d4bb422018-09-04 22:07:27 -07001732 } \
1733
Florin Coras86f04502018-09-12 16:08:01 -07001734static void
1735vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
1736 unsigned long n_bits, unsigned long *read_map,
1737 unsigned long *write_map,
1738 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07001739{
1740 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001741 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001742 session_accepted_msg_t *accepted_msg;
1743 vcl_session_msg_t *vcl_msg;
1744 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07001745 u64 handle;
1746 u32 sid;
1747
1748 switch (e->event_type)
1749 {
1750 case FIFO_EVENT_APP_RX:
1751 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1752 sid = e->fifo->client_session_index;
1753 session = vcl_session_get (wrk, sid);
1754 if (!session)
1755 break;
1756 if (sid < n_bits && read_map)
1757 {
1758 clib_bitmap_set_no_check (read_map, sid, 1);
1759 *bits_set += 1;
1760 }
1761 break;
1762 case FIFO_EVENT_APP_TX:
1763 sid = e->fifo->client_session_index;
1764 session = vcl_session_get (wrk, sid);
1765 if (!session)
1766 break;
1767 if (sid < n_bits && write_map)
1768 {
1769 clib_bitmap_set_no_check (write_map, sid, 1);
1770 *bits_set += 1;
1771 }
1772 break;
1773 case SESSION_IO_EVT_CT_TX:
1774 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1775 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
1776 if (!session)
1777 break;
1778 sid = session->session_index;
1779 if (sid < n_bits && read_map)
1780 {
1781 clib_bitmap_set_no_check (read_map, sid, 1);
1782 *bits_set += 1;
1783 }
1784 break;
1785 case SESSION_IO_EVT_CT_RX:
1786 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
1787 if (!session)
1788 break;
1789 sid = session->session_index;
1790 if (sid < n_bits && write_map)
1791 {
1792 clib_bitmap_set_no_check (write_map, sid, 1);
1793 *bits_set += 1;
1794 }
1795 break;
1796 case SESSION_CTRL_EVT_ACCEPTED:
1797 accepted_msg = (session_accepted_msg_t *) e->data;
1798 handle = accepted_msg->listener_handle;
1799 session = vcl_session_table_lookup_listener (wrk, handle);
1800 if (!session)
1801 {
1802 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
1803 "listener handle %llx", getpid (), handle);
1804 break;
1805 }
1806
1807 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
1808 vcl_msg->accepted_msg = *accepted_msg;
1809 sid = session->session_index;
1810 if (sid < n_bits && read_map)
1811 {
1812 clib_bitmap_set_no_check (read_map, sid, 1);
1813 *bits_set += 1;
1814 }
1815 break;
1816 case SESSION_CTRL_EVT_CONNECTED:
1817 connected_msg = (session_connected_msg_t *) e->data;
1818 vcl_session_connected_handler (wrk, connected_msg);
1819 break;
1820 case SESSION_CTRL_EVT_DISCONNECTED:
1821 disconnected_msg = (session_disconnected_msg_t *) e->data;
1822 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
1823 if (sid < n_bits && except_map)
1824 {
1825 clib_bitmap_set_no_check (except_map, sid, 1);
1826 *bits_set += 1;
1827 }
1828 break;
1829 case SESSION_CTRL_EVT_RESET:
1830 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
1831 if (sid < n_bits && except_map)
1832 {
1833 clib_bitmap_set_no_check (except_map, sid, 1);
1834 *bits_set += 1;
1835 }
1836 break;
1837 default:
1838 clib_warning ("unhandled: %u", e->event_type);
1839 break;
1840 }
1841}
1842
1843static int
1844vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
1845 unsigned long n_bits, unsigned long *read_map,
1846 unsigned long *write_map, unsigned long *except_map,
1847 double time_to_wait, u32 * bits_set)
1848{
Florin Coras99368312018-08-02 10:45:44 -07001849 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07001850 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07001851 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07001852
1853 svm_msg_q_lock (mq);
1854 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001855 {
Florin Coras54693d22018-07-17 10:46:29 -07001856 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001857 {
Florin Coras54693d22018-07-17 10:46:29 -07001858 svm_msg_q_unlock (mq);
1859 return 0;
1860 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001861
Florin Coras54693d22018-07-17 10:46:29 -07001862 if (!time_to_wait)
1863 {
1864 svm_msg_q_unlock (mq);
1865 return 0;
1866 }
1867 else if (time_to_wait < 0)
1868 {
1869 svm_msg_q_wait (mq);
1870 }
1871 else
1872 {
1873 if (svm_msg_q_timedwait (mq, time_to_wait))
1874 {
1875 svm_msg_q_unlock (mq);
1876 return 0;
1877 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001878 }
1879 }
Florin Coras134a9962018-08-28 11:32:04 -07001880 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07001881 svm_msg_q_unlock (mq);
1882
Florin Coras134a9962018-08-28 11:32:04 -07001883 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07001884 {
Florin Coras134a9962018-08-28 11:32:04 -07001885 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07001886 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07001887 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
1888 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001889 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001890 }
Florin Coras134a9962018-08-28 11:32:04 -07001891 vec_reset_length (wrk->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07001892 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04001893}
1894
Florin Coras99368312018-08-02 10:45:44 -07001895static int
Florin Coras134a9962018-08-28 11:32:04 -07001896vppcom_select_condvar (vcl_worker_t * wrk, unsigned long n_bits,
1897 unsigned long *read_map, unsigned long *write_map,
1898 unsigned long *except_map, double time_to_wait,
1899 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001900{
1901 double total_wait = 0, wait_slice;
1902 vcl_cut_through_registration_t *cr;
1903
1904 time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
Florin Coras134a9962018-08-28 11:32:04 -07001905 wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
Florin Coras99368312018-08-02 10:45:44 -07001906 do
1907 {
Florin Coras134a9962018-08-28 11:32:04 -07001908 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001909 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001910 pool_foreach (cr, wrk->cut_through_registrations, ({
1911 vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07001912 0, bits_set);
1913 }));
1914 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07001915 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001916
Florin Coras134a9962018-08-28 11:32:04 -07001917 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
1918 write_map, except_map, time_to_wait, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001919 total_wait += wait_slice;
1920 if (*bits_set)
1921 return *bits_set;
1922 }
1923 while (total_wait < time_to_wait);
1924
1925 return 0;
1926}
1927
1928static int
Florin Coras134a9962018-08-28 11:32:04 -07001929vppcom_select_eventfd (vcl_worker_t * wrk, unsigned long n_bits,
1930 unsigned long *read_map, unsigned long *write_map,
1931 unsigned long *except_map, double time_to_wait,
1932 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001933{
1934 vcl_mq_evt_conn_t *mqc;
1935 int __clib_unused n_read;
1936 int n_mq_evts, i;
1937 u64 buf;
1938
Florin Coras134a9962018-08-28 11:32:04 -07001939 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
1940 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
1941 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07001942 for (i = 0; i < n_mq_evts; i++)
1943 {
Florin Coras134a9962018-08-28 11:32:04 -07001944 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07001945 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07001946 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07001947 except_map, 0, bits_set);
1948 }
1949
1950 return (n_mq_evts > 0 ? (int) *bits_set : 0);
1951}
1952
Dave Wallace543852a2017-08-03 02:11:34 -04001953int
1954vppcom_select (unsigned long n_bits, unsigned long *read_map,
1955 unsigned long *write_map, unsigned long *except_map,
1956 double time_to_wait)
1957{
Florin Coras54693d22018-07-17 10:46:29 -07001958 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001959 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001960 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07001961 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04001962
1963 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1964
Dave Wallace7876d392017-10-19 03:53:57 -04001965 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001966 {
Florin Coras134a9962018-08-28 11:32:04 -07001967 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001968 clib_memcpy_fast (wrk->rd_bitmap, read_map,
1969 vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
Florin Coras134a9962018-08-28 11:32:04 -07001970 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001971 }
Dave Wallace7876d392017-10-19 03:53:57 -04001972 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001973 {
Florin Coras134a9962018-08-28 11:32:04 -07001974 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001975 clib_memcpy_fast (wrk->wr_bitmap, write_map,
1976 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001977 memset (write_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001978 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001979 }
Dave Wallace7876d392017-10-19 03:53:57 -04001980 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001981 {
Florin Coras134a9962018-08-28 11:32:04 -07001982 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001983 clib_memcpy_fast (wrk->ex_bitmap, except_map,
1984 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001985 memset (except_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001986 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001987 }
1988
Florin Coras54693d22018-07-17 10:46:29 -07001989 if (!n_bits)
1990 return 0;
1991
1992 if (!write_map)
1993 goto check_rd;
1994
1995 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001996 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
1997 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07001998 {
Florin Coras47c40e22018-11-26 17:01:36 -08001999 if (except_map && sid < minbits)
2000 clib_bitmap_set_no_check (except_map, sid, 1);
2001 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002002 }
2003
2004 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002005 if (!rv)
2006 {
2007 clib_bitmap_set_no_check (write_map, sid, 1);
2008 bits_set++;
2009 }
2010 }));
2011
2012check_rd:
2013 if (!read_map)
2014 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002015
Florin Coras134a9962018-08-28 11:32:04 -07002016 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2017 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002018 {
Florin Coras47c40e22018-11-26 17:01:36 -08002019 if (except_map && sid < minbits)
2020 clib_bitmap_set_no_check (except_map, sid, 1);
2021 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002022 }
2023
2024 rv = vppcom_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002025 if (rv)
2026 {
2027 clib_bitmap_set_no_check (read_map, sid, 1);
2028 bits_set++;
2029 }
2030 }));
2031 /* *INDENT-ON* */
2032
2033check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002034
Florin Coras86f04502018-09-12 16:08:01 -07002035 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2036 {
2037 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2038 read_map, write_map, except_map, &bits_set);
2039 }
2040 vec_reset_length (wrk->unhandled_evts_vector);
2041
Florin Coras99368312018-08-02 10:45:44 -07002042 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002043 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002044 time_to_wait, &bits_set);
2045 else
Florin Coras134a9962018-08-28 11:32:04 -07002046 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002047 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002048
Dave Wallace543852a2017-08-03 02:11:34 -04002049 return (bits_set);
2050}
2051
Dave Wallacef7f809c2017-10-03 01:48:42 -04002052static inline void
Florin Coras134a9962018-08-28 11:32:04 -07002053vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002054{
Florin Coras7e12d942018-06-27 14:32:43 -07002055 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002056 vppcom_epoll_t *vep;
Dave Wallace498b3a52017-11-09 13:00:34 -05002057 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002058
Dave Wallace498b3a52017-11-09 13:00:34 -05002059 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002060 return;
2061
2062 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Florin Coras134a9962018-08-28 11:32:04 -07002063 session = vcl_session_get (wrk, vep_idx);
Florin Coras070453d2018-08-24 17:04:27 -07002064 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002065 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002066 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
2067 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002068 goto done;
2069 }
2070 if (PREDICT_FALSE (!session->is_vep))
2071 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002072 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2073 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002074 goto done;
2075 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002076 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05002077 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002078 "{\n"
2079 " is_vep = %u\n"
2080 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002081 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002082 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002083 "}\n", getpid (), vep_idx,
2084 session->is_vep, session->is_vep_session,
Florin Coras134a9962018-08-28 11:32:04 -07002085 vep->next_sh, vep->next_sh,
Dave Wallace498b3a52017-11-09 13:00:34 -05002086 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002087
Florin Coras134a9962018-08-28 11:32:04 -07002088 for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002089 {
Florin Coras134a9962018-08-28 11:32:04 -07002090 session = vcl_session_get (wrk, sid);
Florin Coras070453d2018-08-24 17:04:27 -07002091 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002092 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002093 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002094 goto done;
2095 }
2096 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05002097 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
2098 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002099 else if (PREDICT_FALSE (!session->is_vep_session))
2100 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002101 clib_warning ("VCL<%d>: ERROR: session (%u) "
2102 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002103 goto done;
2104 }
2105 vep = &session->vep;
Florin Coras134a9962018-08-28 11:32:04 -07002106 if (PREDICT_FALSE (vep->vep_sh != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05002107 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002108 "vep_idx (%u)!", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002109 sid, session->vep.vep_sh, vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002110 if (session->is_vep_session)
2111 {
2112 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
2113 "{\n"
2114 " next_sid = 0x%x (%u)\n"
2115 " prev_sid = 0x%x (%u)\n"
2116 " vep_idx = 0x%x (%u)\n"
2117 " ev.events = 0x%x\n"
2118 " ev.data.u64 = 0x%llx\n"
2119 " et_mask = 0x%x\n"
2120 "}\n",
2121 vep_idx, sid, sid,
Florin Coras134a9962018-08-28 11:32:04 -07002122 vep->next_sh, vep->next_sh,
2123 vep->prev_sh, vep->prev_sh,
2124 vep->vep_sh, vep->vep_sh,
Dave Wallace4878cbe2017-11-21 03:45:09 -05002125 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002126 }
2127 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002128
2129done:
Dave Wallace048b1d62018-01-03 22:24:41 -05002130 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
2131 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002132}
2133
2134int
2135vppcom_epoll_create (void)
2136{
Florin Coras134a9962018-08-28 11:32:04 -07002137 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002138 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002139
Florin Coras134a9962018-08-28 11:32:04 -07002140 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002141
2142 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002143 vep_session->vep.vep_sh = ~0;
2144 vep_session->vep.next_sh = ~0;
2145 vep_session->vep.prev_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002146 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002147 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002148
Florin Coras134a9962018-08-28 11:32:04 -07002149 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07002150 VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002151 getpid (), vep_session->session_index, vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002152
Florin Corasab2f6db2018-08-31 14:31:41 -07002153 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002154}
2155
2156int
Florin Coras134a9962018-08-28 11:32:04 -07002157vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002158 struct epoll_event *event)
2159{
Florin Coras134a9962018-08-28 11:32:04 -07002160 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002161 vcl_session_t *vep_session;
2162 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002163 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002164
Florin Coras134a9962018-08-28 11:32:04 -07002165 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002166 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002167 clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002168 getpid (), vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002169 return VPPCOM_EINVAL;
2170 }
2171
Florin Coras134a9962018-08-28 11:32:04 -07002172 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002173 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002174 {
Florin Coras134a9962018-08-28 11:32:04 -07002175 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002176 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002177 }
2178 if (PREDICT_FALSE (!vep_session->is_vep))
2179 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002180 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002181 getpid (), vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002182 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002183 }
2184
Florin Coras134a9962018-08-28 11:32:04 -07002185 ASSERT (vep_session->vep.vep_sh == ~0);
2186 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002187
Florin Coras134a9962018-08-28 11:32:04 -07002188 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002189 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002190 {
Florin Coras134a9962018-08-28 11:32:04 -07002191 VDBG (0, "VCL<%d>: ERROR: Invalid session_handle (%u)!",
2192 getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002193 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002194 }
2195 if (PREDICT_FALSE (session->is_vep))
2196 {
Florin Coras134a9962018-08-28 11:32:04 -07002197 clib_warning ("ERROR: session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002198 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002199 }
2200
2201 switch (op)
2202 {
2203 case EPOLL_CTL_ADD:
2204 if (PREDICT_FALSE (!event))
2205 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002206 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002207 "epoll_event structure!", getpid ());
Florin Coras070453d2018-08-24 17:04:27 -07002208 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002209 }
Florin Coras134a9962018-08-28 11:32:04 -07002210 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002211 {
Florin Coras7e12d942018-06-27 14:32:43 -07002212 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002213 next_session = vcl_session_get_w_handle (wrk,
2214 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002215 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002216 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002217 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002218 "vep.next_sid (%u) on vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002219 getpid (), vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002220 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002221 }
Florin Coras134a9962018-08-28 11:32:04 -07002222 ASSERT (next_session->vep.prev_sh == vep_handle);
2223 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002224 }
Florin Coras134a9962018-08-28 11:32:04 -07002225 session->vep.next_sh = vep_session->vep.next_sh;
2226 session->vep.prev_sh = vep_handle;
2227 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002228 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2229 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002230 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002231 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002232 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002233
Florin Coras070453d2018-08-24 17:04:27 -07002234 VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, sid %u, events 0x%x, "
Florin Coras134a9962018-08-28 11:32:04 -07002235 "data 0x%llx!", getpid (), vep_handle, session_handle,
2236 event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002237 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002238 break;
2239
2240 case EPOLL_CTL_MOD:
2241 if (PREDICT_FALSE (!event))
2242 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002243 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002244 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04002245 rv = VPPCOM_EINVAL;
2246 goto done;
2247 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002248 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002249 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002250 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Florin Coras134a9962018-08-28 11:32:04 -07002251 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002252 rv = VPPCOM_EINVAL;
2253 goto done;
2254 }
Florin Coras134a9962018-08-28 11:32:04 -07002255 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002256 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002257 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002258 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002259 getpid (), session_handle,
2260 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002261 rv = VPPCOM_EINVAL;
2262 goto done;
2263 }
2264 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2265 session->vep.ev = *event;
Florin Coras0d427d82018-06-27 03:24:07 -07002266 VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
Florin Coras134a9962018-08-28 11:32:04 -07002267 " data 0x%llx!", getpid (), vep_handle, session_handle,
2268 event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002269 break;
2270
2271 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002272 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002273 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002274 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Florin Coras134a9962018-08-28 11:32:04 -07002275 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002276 rv = VPPCOM_EINVAL;
2277 goto done;
2278 }
Florin Coras134a9962018-08-28 11:32:04 -07002279 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002280 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002281 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002282 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002283 getpid (), session_handle,
2284 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002285 rv = VPPCOM_EINVAL;
2286 goto done;
2287 }
2288
2289 vep_session->wait_cont_idx =
Florin Coras134a9962018-08-28 11:32:04 -07002290 (vep_session->wait_cont_idx == session_handle) ?
2291 session->vep.next_sh : vep_session->wait_cont_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002292
Florin Coras134a9962018-08-28 11:32:04 -07002293 if (session->vep.prev_sh == vep_handle)
2294 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002295 else
2296 {
Florin Coras7e12d942018-06-27 14:32:43 -07002297 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002298 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002299 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002300 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002301 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002302 "vep.prev_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002303 getpid (), session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002304 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002305 }
Florin Coras134a9962018-08-28 11:32:04 -07002306 ASSERT (prev_session->vep.next_sh == session_handle);
2307 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002308 }
Florin Coras134a9962018-08-28 11:32:04 -07002309 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002310 {
Florin Coras7e12d942018-06-27 14:32:43 -07002311 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002312 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002313 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002314 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002315 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002316 "vep.next_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002317 getpid (), session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002318 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002319 }
Florin Coras134a9962018-08-28 11:32:04 -07002320 ASSERT (next_session->vep.prev_sh == session_handle);
2321 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002322 }
2323
2324 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002325 session->vep.next_sh = ~0;
2326 session->vep.prev_sh = ~0;
2327 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002328 session->is_vep_session = 0;
Florin Coras0d427d82018-06-27 03:24:07 -07002329 VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002330 getpid (), vep_handle, session_handle);
2331 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002332 break;
2333
2334 default:
Dave Wallace048b1d62018-01-03 22:24:41 -05002335 clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002336 rv = VPPCOM_EINVAL;
2337 }
2338
Florin Coras134a9962018-08-28 11:32:04 -07002339 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002340
2341done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002342 return rv;
2343}
2344
Florin Coras86f04502018-09-12 16:08:01 -07002345static inline void
2346vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2347 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002348{
2349 session_disconnected_msg_t *disconnected_msg;
2350 session_connected_msg_t *connected_msg;
2351 session_accepted_msg_t *accepted_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002352 u64 session_evt_data = ~0, handle;
Florin Coras99368312018-08-02 10:45:44 -07002353 u32 sid = ~0, session_events;
Florin Coras54693d22018-07-17 10:46:29 -07002354 vcl_session_msg_t *vcl_msg;
2355 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002356 u8 add_event = 0;
2357
2358 switch (e->event_type)
2359 {
2360 case FIFO_EVENT_APP_RX:
2361 ASSERT (e->fifo->client_thread_index == vcl_get_worker_index ());
2362 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2363 sid = e->fifo->client_session_index;
2364 session = vcl_session_get (wrk, sid);
2365 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002366 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002367 break;
2368 add_event = 1;
2369 events[*num_ev].events |= EPOLLIN;
2370 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002371 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002372 break;
2373 case FIFO_EVENT_APP_TX:
2374 sid = e->fifo->client_session_index;
2375 session = vcl_session_get (wrk, sid);
2376 session_events = session->vep.ev.events;
2377 if (!(EPOLLOUT & session_events))
2378 break;
2379 add_event = 1;
2380 events[*num_ev].events |= EPOLLOUT;
2381 session_evt_data = session->vep.ev.data.u64;
2382 break;
2383 case SESSION_IO_EVT_CT_TX:
2384 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2385 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
2386 sid = session->session_index;
2387 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002388 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002389 break;
2390 add_event = 1;
2391 events[*num_ev].events |= EPOLLIN;
2392 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002393 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002394 break;
2395 case SESSION_IO_EVT_CT_RX:
2396 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
2397 sid = session->session_index;
2398 session_events = session->vep.ev.events;
2399 if (!(EPOLLOUT & session_events))
2400 break;
2401 add_event = 1;
2402 events[*num_ev].events |= EPOLLOUT;
2403 session_evt_data = session->vep.ev.data.u64;
2404 break;
2405 case SESSION_CTRL_EVT_ACCEPTED:
2406 accepted_msg = (session_accepted_msg_t *) e->data;
2407 handle = accepted_msg->listener_handle;
2408 session = vcl_session_table_lookup_listener (wrk, handle);
2409 if (!session)
2410 {
2411 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
2412 "listener handle %llx", getpid (), handle);
2413 break;
2414 }
2415
2416 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
2417 vcl_msg->accepted_msg = *accepted_msg;
2418 session_events = session->vep.ev.events;
2419 if (!(EPOLLIN & session_events))
2420 break;
2421
2422 add_event = 1;
2423 events[*num_ev].events |= EPOLLIN;
2424 session_evt_data = session->vep.ev.data.u64;
2425 break;
2426 case SESSION_CTRL_EVT_CONNECTED:
2427 connected_msg = (session_connected_msg_t *) e->data;
2428 vcl_session_connected_handler (wrk, connected_msg);
2429 /* Generate EPOLLOUT because there's no connected event */
2430 sid = vcl_session_index_from_vpp_handle (wrk, connected_msg->handle);
2431 session = vcl_session_get (wrk, sid);
2432 session_events = session->vep.ev.events;
2433 if (EPOLLOUT & session_events)
2434 {
2435 add_event = 1;
2436 events[*num_ev].events |= EPOLLOUT;
2437 session_evt_data = session->vep.ev.data.u64;
2438 }
2439 break;
2440 case SESSION_CTRL_EVT_DISCONNECTED:
2441 disconnected_msg = (session_disconnected_msg_t *) e->data;
2442 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
2443 if (!(session = vcl_session_get (wrk, sid)))
2444 break;
2445 add_event = 1;
2446 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2447 session_evt_data = session->vep.ev.data.u64;
2448 session_events = session->vep.ev.events;
2449 break;
2450 case SESSION_CTRL_EVT_RESET:
2451 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2452 if (!(session = vcl_session_get (wrk, sid)))
2453 break;
2454 add_event = 1;
2455 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2456 session_evt_data = session->vep.ev.data.u64;
2457 session_events = session->vep.ev.events;
2458 break;
2459 default:
2460 VDBG (0, "unhandled: %u", e->event_type);
2461 break;
2462 }
2463
2464 if (add_event)
2465 {
2466 events[*num_ev].data.u64 = session_evt_data;
2467 if (EPOLLONESHOT & session_events)
2468 {
2469 session = vcl_session_get (wrk, sid);
2470 session->vep.ev.events = 0;
2471 }
2472 *num_ev += 1;
2473 }
2474}
2475
2476static int
2477vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2478 struct epoll_event *events, u32 maxevents,
2479 double wait_for_time, u32 * num_ev)
2480{
Florin Coras99368312018-08-02 10:45:44 -07002481 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002482 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002483 int i;
2484
Florin Coras539663c2018-09-28 14:59:37 -07002485 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2486 goto handle_dequeued;
2487
Florin Coras54693d22018-07-17 10:46:29 -07002488 svm_msg_q_lock (mq);
2489 if (svm_msg_q_is_empty (mq))
2490 {
2491 if (!wait_for_time)
2492 {
2493 svm_msg_q_unlock (mq);
2494 return 0;
2495 }
2496 else if (wait_for_time < 0)
2497 {
2498 svm_msg_q_wait (mq);
2499 }
2500 else
2501 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002502 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002503 {
2504 svm_msg_q_unlock (mq);
2505 return 0;
2506 }
2507 }
2508 }
Florin Coras134a9962018-08-28 11:32:04 -07002509 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002510 svm_msg_q_unlock (mq);
2511
Florin Coras539663c2018-09-28 14:59:37 -07002512handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002513 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002514 {
Florin Coras134a9962018-08-28 11:32:04 -07002515 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002516 e = svm_msg_q_msg_data (mq, msg);
Florin Corasaa27eb92018-10-13 12:20:01 -07002517 if (*num_ev < maxevents)
2518 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2519 else
2520 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras99368312018-08-02 10:45:44 -07002521 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002522 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002523 vec_reset_length (wrk->mq_msg_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002524
Florin Coras54693d22018-07-17 10:46:29 -07002525 return *num_ev;
2526}
2527
Florin Coras99368312018-08-02 10:45:44 -07002528static int
Florin Coras134a9962018-08-28 11:32:04 -07002529vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002530 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002531{
2532 vcl_cut_through_registration_t *cr;
2533 double total_wait = 0, wait_slice;
Florin Coras99368312018-08-02 10:45:44 -07002534 int rv;
2535
2536 wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
Florin Coras134a9962018-08-28 11:32:04 -07002537 wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
Florin Coras99368312018-08-02 10:45:44 -07002538
2539 do
2540 {
Florin Coras134a9962018-08-28 11:32:04 -07002541 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002542 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002543 pool_foreach (cr, wrk->cut_through_registrations, ({
Florin Coras86f04502018-09-12 16:08:01 -07002544 vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002545 }));
2546 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002547 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002548
Florin Coras134a9962018-08-28 11:32:04 -07002549 rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
Florin Coras86f04502018-09-12 16:08:01 -07002550 maxevents, n_evts ? 0 : wait_slice,
2551 &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002552 if (rv)
2553 total_wait += wait_slice;
Florin Coras86f04502018-09-12 16:08:01 -07002554 if (n_evts)
2555 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002556 }
2557 while (total_wait < wait_for_time);
Florin Coras86f04502018-09-12 16:08:01 -07002558 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002559}
2560
2561static int
Florin Coras134a9962018-08-28 11:32:04 -07002562vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002563 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002564{
2565 vcl_mq_evt_conn_t *mqc;
2566 int __clib_unused n_read;
2567 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002568 u64 buf;
2569
Florin Coras134a9962018-08-28 11:32:04 -07002570 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002571again:
Florin Coras134a9962018-08-28 11:32:04 -07002572 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2573 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002574 for (i = 0; i < n_mq_evts; i++)
2575 {
Florin Coras134a9962018-08-28 11:32:04 -07002576 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002577 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002578 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002579 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002580 if (!n_evts && n_mq_evts > 0)
2581 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002582
2583 return (int) n_evts;
2584}
2585
Dave Wallacef7f809c2017-10-03 01:48:42 -04002586int
Florin Coras134a9962018-08-28 11:32:04 -07002587vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002588 int maxevents, double wait_for_time)
2589{
Florin Coras134a9962018-08-28 11:32:04 -07002590 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002591 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002592 u32 n_evts = 0;
2593 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002594
2595 if (PREDICT_FALSE (maxevents <= 0))
2596 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002597 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002598 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002599 return VPPCOM_EINVAL;
2600 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002601
Florin Coras134a9962018-08-28 11:32:04 -07002602 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002603 if (!vep_session)
2604 return VPPCOM_EBADFD;
2605
Florin Coras54693d22018-07-17 10:46:29 -07002606 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002607 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002608 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002609 getpid (), vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002610 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002611 }
Florin Coras54693d22018-07-17 10:46:29 -07002612
2613 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002614
Florin Coras86f04502018-09-12 16:08:01 -07002615 if (vec_len (wrk->unhandled_evts_vector))
2616 {
2617 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2618 {
2619 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2620 events, &n_evts);
2621 if (n_evts == maxevents)
2622 {
2623 i += 1;
2624 break;
2625 }
2626 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002627
Florin Coras86f04502018-09-12 16:08:01 -07002628 vec_delete (wrk->unhandled_evts_vector, i, 0);
2629 }
2630
2631 if (vcm->cfg.use_mq_eventfd)
2632 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2633 wait_for_time);
2634
2635 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2636 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002637}
2638
Dave Wallace35830af2017-10-09 01:43:42 -04002639int
Florin Coras134a9962018-08-28 11:32:04 -07002640vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002641 void *buffer, uint32_t * buflen)
2642{
Florin Coras134a9962018-08-28 11:32:04 -07002643 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002644 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002645 int rv = VPPCOM_OK;
2646 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002647 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002648
Florin Coras134a9962018-08-28 11:32:04 -07002649 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002650 if (!session)
2651 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002652
Dave Wallace35830af2017-10-09 01:43:42 -04002653 switch (op)
2654 {
2655 case VPPCOM_ATTR_GET_NREAD:
Florin Coras54693d22018-07-17 10:46:29 -07002656 rv = vppcom_session_read_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002657 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2658 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002659 break;
2660
Dave Wallace227867f2017-11-13 21:21:53 -05002661 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras134a9962018-08-28 11:32:04 -07002662 rv = vppcom_session_write_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002663 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
Florin Coras134a9962018-08-28 11:32:04 -07002664 getpid (), session_handle, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002665 break;
2666
2667 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002668 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002669 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002670 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2671 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002672 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002673 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2674 "is_nonblocking = %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002675 session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002676 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002677 }
2678 else
2679 rv = VPPCOM_EINVAL;
2680 break;
2681
2682 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002683 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002684 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002685 if (*flags & O_NONBLOCK)
2686 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2687 else
2688 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2689
Florin Coras0d427d82018-06-27 03:24:07 -07002690 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2691 " is_nonblocking = %u",
Florin Coras134a9962018-08-28 11:32:04 -07002692 getpid (), session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002693 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002694 }
2695 else
2696 rv = VPPCOM_EINVAL;
2697 break;
2698
2699 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002700 if (PREDICT_TRUE (buffer && buflen &&
2701 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002702 {
Florin Coras7e12d942018-06-27 14:32:43 -07002703 ep->is_ip4 = session->transport.is_ip4;
2704 ep->port = session->transport.rmt_port;
2705 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002706 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2707 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002708 else
Dave Barach178cf492018-11-13 16:34:13 -05002709 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2710 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002711 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002712 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2713 "addr = %U, port %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002714 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002715 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002716 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2717 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002718 }
2719 else
2720 rv = VPPCOM_EINVAL;
2721 break;
2722
2723 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002724 if (PREDICT_TRUE (buffer && buflen &&
2725 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002726 {
Florin Coras7e12d942018-06-27 14:32:43 -07002727 ep->is_ip4 = session->transport.is_ip4;
2728 ep->port = session->transport.lcl_port;
2729 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002730 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
2731 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002732 else
Dave Barach178cf492018-11-13 16:34:13 -05002733 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
2734 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002735 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002736 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2737 " addr = %U port %d", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002738 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002739 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002740 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2741 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002742 }
2743 else
2744 rv = VPPCOM_EINVAL;
2745 break;
Stevenb5a11602017-10-11 09:59:30 -07002746
Dave Wallace048b1d62018-01-03 22:24:41 -05002747 case VPPCOM_ATTR_GET_LIBC_EPFD:
2748 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002749 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2750 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002751 break;
2752
2753 case VPPCOM_ATTR_SET_LIBC_EPFD:
2754 if (PREDICT_TRUE (buffer && buflen &&
2755 (*buflen == sizeof (session->libc_epfd))))
2756 {
2757 session->libc_epfd = *(int *) buffer;
2758 *buflen = sizeof (session->libc_epfd);
2759
Florin Coras0d427d82018-06-27 03:24:07 -07002760 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2761 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002762 }
2763 else
2764 rv = VPPCOM_EINVAL;
2765 break;
2766
2767 case VPPCOM_ATTR_GET_PROTOCOL:
2768 if (buffer && buflen && (*buflen >= sizeof (int)))
2769 {
Florin Coras7e12d942018-06-27 14:32:43 -07002770 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002771 *buflen = sizeof (int);
2772
Florin Coras0d427d82018-06-27 03:24:07 -07002773 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2774 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2775 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002776 }
2777 else
2778 rv = VPPCOM_EINVAL;
2779 break;
2780
2781 case VPPCOM_ATTR_GET_LISTEN:
2782 if (buffer && buflen && (*buflen >= sizeof (int)))
2783 {
2784 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2785 VCL_SESS_ATTR_LISTEN);
2786 *buflen = sizeof (int);
2787
Florin Coras0d427d82018-06-27 03:24:07 -07002788 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2789 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002790 }
2791 else
2792 rv = VPPCOM_EINVAL;
2793 break;
2794
2795 case VPPCOM_ATTR_GET_ERROR:
2796 if (buffer && buflen && (*buflen >= sizeof (int)))
2797 {
2798 *(int *) buffer = 0;
2799 *buflen = sizeof (int);
2800
Florin Coras0d427d82018-06-27 03:24:07 -07002801 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2802 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002803 }
2804 else
2805 rv = VPPCOM_EINVAL;
2806 break;
2807
2808 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2809 if (buffer && buflen && (*buflen >= sizeof (u32)))
2810 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002811
2812 /* VPP-TBD */
2813 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002814 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002815 vcm->cfg.tx_fifo_size);
2816 *buflen = sizeof (u32);
2817
Florin Coras0d427d82018-06-27 03:24:07 -07002818 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2819 "buflen %d, #VPP-TBD#", getpid (),
2820 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002821 }
2822 else
2823 rv = VPPCOM_EINVAL;
2824 break;
2825
2826 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2827 if (buffer && buflen && (*buflen == sizeof (u32)))
2828 {
2829 /* VPP-TBD */
2830 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002831 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2832 "buflen %d, #VPP-TBD#", getpid (),
2833 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002834 }
2835 else
2836 rv = VPPCOM_EINVAL;
2837 break;
2838
2839 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2840 if (buffer && buflen && (*buflen >= sizeof (u32)))
2841 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002842
2843 /* VPP-TBD */
2844 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002845 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002846 vcm->cfg.rx_fifo_size);
2847 *buflen = sizeof (u32);
2848
Florin Coras0d427d82018-06-27 03:24:07 -07002849 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2850 "buflen %d, #VPP-TBD#", getpid (),
2851 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002852 }
2853 else
2854 rv = VPPCOM_EINVAL;
2855 break;
2856
2857 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2858 if (buffer && buflen && (*buflen == sizeof (u32)))
2859 {
2860 /* VPP-TBD */
2861 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002862 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2863 "buflen %d, #VPP-TBD#", getpid (),
2864 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002865 }
2866 else
2867 rv = VPPCOM_EINVAL;
2868 break;
2869
2870 case VPPCOM_ATTR_GET_REUSEADDR:
2871 if (buffer && buflen && (*buflen >= sizeof (int)))
2872 {
2873 /* VPP-TBD */
2874 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2875 VCL_SESS_ATTR_REUSEADDR);
2876 *buflen = sizeof (int);
2877
Florin Coras0d427d82018-06-27 03:24:07 -07002878 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2879 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002880 }
2881 else
2882 rv = VPPCOM_EINVAL;
2883 break;
2884
Stevenb5a11602017-10-11 09:59:30 -07002885 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002886 if (buffer && buflen && (*buflen == sizeof (int)) &&
2887 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2888 {
2889 /* VPP-TBD */
2890 if (*(int *) buffer)
2891 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2892 else
2893 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2894
Florin Coras0d427d82018-06-27 03:24:07 -07002895 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2896 " #VPP-TBD#", getpid (),
2897 VCL_SESS_ATTR_TEST (session->attr,
2898 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002899 }
2900 else
2901 rv = VPPCOM_EINVAL;
2902 break;
2903
2904 case VPPCOM_ATTR_GET_REUSEPORT:
2905 if (buffer && buflen && (*buflen >= sizeof (int)))
2906 {
2907 /* VPP-TBD */
2908 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2909 VCL_SESS_ATTR_REUSEPORT);
2910 *buflen = sizeof (int);
2911
Florin Coras0d427d82018-06-27 03:24:07 -07002912 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2913 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002914 }
2915 else
2916 rv = VPPCOM_EINVAL;
2917 break;
2918
2919 case VPPCOM_ATTR_SET_REUSEPORT:
2920 if (buffer && buflen && (*buflen == sizeof (int)) &&
2921 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2922 {
2923 /* VPP-TBD */
2924 if (*(int *) buffer)
2925 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2926 else
2927 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2928
Florin Coras0d427d82018-06-27 03:24:07 -07002929 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2930 " #VPP-TBD#", getpid (),
2931 VCL_SESS_ATTR_TEST (session->attr,
2932 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002933 }
2934 else
2935 rv = VPPCOM_EINVAL;
2936 break;
2937
2938 case VPPCOM_ATTR_GET_BROADCAST:
2939 if (buffer && buflen && (*buflen >= sizeof (int)))
2940 {
2941 /* VPP-TBD */
2942 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2943 VCL_SESS_ATTR_BROADCAST);
2944 *buflen = sizeof (int);
2945
Florin Coras0d427d82018-06-27 03:24:07 -07002946 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2947 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002948 }
2949 else
2950 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002951 break;
2952
2953 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05002954 if (buffer && buflen && (*buflen == sizeof (int)))
2955 {
2956 /* VPP-TBD */
2957 if (*(int *) buffer)
2958 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2959 else
2960 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2961
Florin Coras0d427d82018-06-27 03:24:07 -07002962 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2963 "#VPP-TBD#", getpid (),
2964 VCL_SESS_ATTR_TEST (session->attr,
2965 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002966 }
2967 else
2968 rv = VPPCOM_EINVAL;
2969 break;
2970
2971 case VPPCOM_ATTR_GET_V6ONLY:
2972 if (buffer && buflen && (*buflen >= sizeof (int)))
2973 {
2974 /* VPP-TBD */
2975 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2976 VCL_SESS_ATTR_V6ONLY);
2977 *buflen = sizeof (int);
2978
Florin Coras0d427d82018-06-27 03:24:07 -07002979 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2980 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002981 }
2982 else
2983 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002984 break;
2985
2986 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05002987 if (buffer && buflen && (*buflen == sizeof (int)))
2988 {
2989 /* VPP-TBD */
2990 if (*(int *) buffer)
2991 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2992 else
2993 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2994
Florin Coras0d427d82018-06-27 03:24:07 -07002995 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2996 "#VPP-TBD#", getpid (),
2997 VCL_SESS_ATTR_TEST (session->attr,
2998 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002999 }
3000 else
3001 rv = VPPCOM_EINVAL;
3002 break;
3003
3004 case VPPCOM_ATTR_GET_KEEPALIVE:
3005 if (buffer && buflen && (*buflen >= sizeof (int)))
3006 {
3007 /* VPP-TBD */
3008 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3009 VCL_SESS_ATTR_KEEPALIVE);
3010 *buflen = sizeof (int);
3011
Florin Coras0d427d82018-06-27 03:24:07 -07003012 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
3013 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003014 }
3015 else
3016 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003017 break;
Stevenbccd3392017-10-12 20:42:21 -07003018
3019 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003020 if (buffer && buflen && (*buflen == sizeof (int)))
3021 {
3022 /* VPP-TBD */
3023 if (*(int *) buffer)
3024 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3025 else
3026 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3027
Florin Coras0d427d82018-06-27 03:24:07 -07003028 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
3029 "#VPP-TBD#", getpid (),
3030 VCL_SESS_ATTR_TEST (session->attr,
3031 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003032 }
3033 else
3034 rv = VPPCOM_EINVAL;
3035 break;
3036
3037 case VPPCOM_ATTR_GET_TCP_NODELAY:
3038 if (buffer && buflen && (*buflen >= sizeof (int)))
3039 {
3040 /* VPP-TBD */
3041 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3042 VCL_SESS_ATTR_TCP_NODELAY);
3043 *buflen = sizeof (int);
3044
Florin Coras0d427d82018-06-27 03:24:07 -07003045 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
3046 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003047 }
3048 else
3049 rv = VPPCOM_EINVAL;
3050 break;
3051
3052 case VPPCOM_ATTR_SET_TCP_NODELAY:
3053 if (buffer && buflen && (*buflen == sizeof (int)))
3054 {
3055 /* VPP-TBD */
3056 if (*(int *) buffer)
3057 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3058 else
3059 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3060
Florin Coras0d427d82018-06-27 03:24:07 -07003061 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
3062 "#VPP-TBD#", getpid (),
3063 VCL_SESS_ATTR_TEST (session->attr,
3064 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003065 }
3066 else
3067 rv = VPPCOM_EINVAL;
3068 break;
3069
3070 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3071 if (buffer && buflen && (*buflen >= sizeof (int)))
3072 {
3073 /* VPP-TBD */
3074 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3075 VCL_SESS_ATTR_TCP_KEEPIDLE);
3076 *buflen = sizeof (int);
3077
Florin Coras0d427d82018-06-27 03:24:07 -07003078 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
3079 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003080 }
3081 else
3082 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003083 break;
3084
3085 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003086 if (buffer && buflen && (*buflen == sizeof (int)))
3087 {
3088 /* VPP-TBD */
3089 if (*(int *) buffer)
3090 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3091 else
3092 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3093
Florin Coras0d427d82018-06-27 03:24:07 -07003094 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
3095 "#VPP-TBD#", getpid (),
3096 VCL_SESS_ATTR_TEST (session->attr,
3097 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003098 }
3099 else
3100 rv = VPPCOM_EINVAL;
3101 break;
3102
3103 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3104 if (buffer && buflen && (*buflen >= sizeof (int)))
3105 {
3106 /* VPP-TBD */
3107 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3108 VCL_SESS_ATTR_TCP_KEEPINTVL);
3109 *buflen = sizeof (int);
3110
Florin Coras0d427d82018-06-27 03:24:07 -07003111 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
3112 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003113 }
3114 else
3115 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003116 break;
3117
3118 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003119 if (buffer && buflen && (*buflen == sizeof (int)))
3120 {
3121 /* VPP-TBD */
3122 if (*(int *) buffer)
3123 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3124 else
3125 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3126
Florin Coras0d427d82018-06-27 03:24:07 -07003127 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
3128 "#VPP-TBD#", getpid (),
3129 VCL_SESS_ATTR_TEST (session->attr,
3130 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003131 }
3132 else
3133 rv = VPPCOM_EINVAL;
3134 break;
3135
3136 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3137 if (buffer && buflen && (*buflen >= sizeof (u32)))
3138 {
3139 /* VPP-TBD */
3140 *(u32 *) buffer = session->user_mss;
3141 *buflen = sizeof (int);
3142
Florin Coras0d427d82018-06-27 03:24:07 -07003143 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3144 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003145 }
3146 else
3147 rv = VPPCOM_EINVAL;
3148 break;
3149
3150 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3151 if (buffer && buflen && (*buflen == sizeof (u32)))
3152 {
3153 /* VPP-TBD */
3154 session->user_mss = *(u32 *) buffer;
3155
Florin Coras0d427d82018-06-27 03:24:07 -07003156 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3157 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003158 }
3159 else
3160 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003161 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003162
Florin Coras47c40e22018-11-26 17:01:36 -08003163 case VPPCOM_ATTR_GET_REFCNT:
3164 rv = vcl_session_get_refcnt (session);
3165 break;
3166
Dave Wallacee22aa742017-10-20 12:30:38 -04003167 default:
3168 rv = VPPCOM_EINVAL;
3169 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003170 }
3171
Dave Wallace35830af2017-10-09 01:43:42 -04003172 return rv;
3173}
3174
Stevenac1f96d2017-10-24 16:03:58 -07003175int
Florin Coras134a9962018-08-28 11:32:04 -07003176vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003177 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3178{
Florin Coras134a9962018-08-28 11:32:04 -07003179 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003180 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003181 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003182
3183 if (ep)
3184 {
Florin Coras134a9962018-08-28 11:32:04 -07003185 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003186 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003187 {
Florin Coras0d427d82018-06-27 03:24:07 -07003188 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
Florin Coras134a9962018-08-28 11:32:04 -07003189 getpid (), session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003190 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003191 }
Florin Coras7e12d942018-06-27 14:32:43 -07003192 ep->is_ip4 = session->transport.is_ip4;
3193 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003194 }
Steven58f464e2017-10-25 12:33:12 -07003195
3196 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003197 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003198 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003199 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003200 else
3201 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003202 clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
3203 getpid (), flags);
Florin Coras460dce62018-07-27 05:45:06 -07003204 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003205 }
3206
Florin Coras99368312018-08-02 10:45:44 -07003207 if (ep)
3208 {
3209 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003210 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3211 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003212 else
Dave Barach178cf492018-11-13 16:34:13 -05003213 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3214 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003215 }
Florin Coras460dce62018-07-27 05:45:06 -07003216
Stevenac1f96d2017-10-24 16:03:58 -07003217 return rv;
3218}
3219
3220int
Florin Coras134a9962018-08-28 11:32:04 -07003221vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003222 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3223{
Dave Wallace617dffa2017-10-26 14:47:06 -04003224 if (!buffer)
3225 return VPPCOM_EINVAL;
3226
3227 if (ep)
3228 {
3229 // TBD
3230 return VPPCOM_EINVAL;
3231 }
3232
3233 if (flags)
3234 {
3235 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003236 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3237 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003238 }
3239
Florin Coras134a9962018-08-28 11:32:04 -07003240 return (vppcom_session_write (session_handle, buffer, buflen));
Stevenac1f96d2017-10-24 16:03:58 -07003241}
3242
Dave Wallace048b1d62018-01-03 22:24:41 -05003243int
3244vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3245{
Florin Coras134a9962018-08-28 11:32:04 -07003246 vcl_worker_t *wrk = vcl_worker_get_current ();
3247 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003248 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003249 svm_msg_q_msg_t msg;
3250 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003251 int rv, num_ev = 0;
3252
Florin Coras0d427d82018-06-27 03:24:07 -07003253 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3254 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003255
3256 if (!vp)
3257 return VPPCOM_EFAULT;
3258
3259 do
3260 {
Florin Coras7e12d942018-06-27 14:32:43 -07003261 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003262
Florin Coras6917b942018-11-13 22:44:54 -08003263 /* Dequeue all events and drop all unhandled io events */
3264 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3265 {
3266 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3267 vcl_handle_mq_event (wrk, e);
3268 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3269 }
3270 vec_reset_length (wrk->unhandled_evts_vector);
3271
Dave Wallace048b1d62018-01-03 22:24:41 -05003272 for (i = 0; i < n_sids; i++)
3273 {
Florin Coras134a9962018-08-28 11:32:04 -07003274 session = vcl_session_get (wrk, vp[i].sid);
Florin Coras070453d2018-08-24 17:04:27 -07003275 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003276 {
3277 vp[i].revents = POLLHUP;
3278 num_ev++;
3279 continue;
3280 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003281
Florin Coras6917b942018-11-13 22:44:54 -08003282 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003283
3284 if (POLLIN & vp[i].events)
3285 {
Florin Coras54693d22018-07-17 10:46:29 -07003286 rv = vppcom_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003287 if (rv > 0)
3288 {
Florin Coras6917b942018-11-13 22:44:54 -08003289 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003290 num_ev++;
3291 }
3292 else if (rv < 0)
3293 {
3294 switch (rv)
3295 {
3296 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003297 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003298 break;
3299
3300 default:
Florin Coras6917b942018-11-13 22:44:54 -08003301 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003302 break;
3303 }
3304 num_ev++;
3305 }
3306 }
3307
3308 if (POLLOUT & vp[i].events)
3309 {
Florin Coras134a9962018-08-28 11:32:04 -07003310 rv = vppcom_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003311 if (rv > 0)
3312 {
Florin Coras6917b942018-11-13 22:44:54 -08003313 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003314 num_ev++;
3315 }
3316 else if (rv < 0)
3317 {
3318 switch (rv)
3319 {
3320 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003321 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003322 break;
3323
3324 default:
Florin Coras6917b942018-11-13 22:44:54 -08003325 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003326 break;
3327 }
3328 num_ev++;
3329 }
3330 }
3331
Dave Wallace7e607a72018-06-18 18:41:32 -04003332 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003333 {
Florin Coras6917b942018-11-13 22:44:54 -08003334 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003335 num_ev++;
3336 }
3337 }
3338 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003339 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003340 }
3341 while ((num_ev == 0) && keep_trying);
3342
3343 if (VPPCOM_DEBUG > 3)
3344 {
3345 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3346 for (i = 0; i < n_sids; i++)
3347 {
3348 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3349 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
Florin Coras6917b942018-11-13 22:44:54 -08003350 vp[i].events, vp[i].revents);
Dave Wallace048b1d62018-01-03 22:24:41 -05003351 }
3352 }
3353 return num_ev;
3354}
3355
Florin Coras99368312018-08-02 10:45:44 -07003356int
3357vppcom_mq_epoll_fd (void)
3358{
Florin Coras134a9962018-08-28 11:32:04 -07003359 vcl_worker_t *wrk = vcl_worker_get_current ();
3360 return wrk->mqs_epfd;
3361}
3362
3363int
3364vppcom_session_index (uint32_t session_handle)
3365{
3366 return session_handle & 0xFFFFFF;
3367}
3368
3369int
Florin Coras30e273b2018-11-27 00:04:59 -08003370vppcom_session_handle (uint32_t session_index)
3371{
Florin Coras47c40e22018-11-26 17:01:36 -08003372 return (vcl_get_worker_index () << 24) | session_index;
Florin Coras30e273b2018-11-27 00:04:59 -08003373}
3374
3375int
Florin Coras134a9962018-08-28 11:32:04 -07003376vppcom_worker_register (void)
3377{
Florin Coras47c40e22018-11-26 17:01:36 -08003378 if (!vcl_worker_alloc_and_init ())
3379 return VPPCOM_EEXIST;
3380
3381 if (vcl_worker_set_bapi ())
3382 return VPPCOM_EEXIST;
3383
3384 if (vcl_worker_register_with_vpp ())
3385 return VPPCOM_EEXIST;
3386
3387 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003388}
3389
Florin Corasdfe4cf42018-11-28 22:13:45 -08003390int
3391vppcom_worker_index (void)
3392{
3393 return vcl_get_worker_index ();
3394}
3395
Dave Wallacee22aa742017-10-20 12:30:38 -04003396/*
3397 * fd.io coding-style-patch-verification: ON
3398 *
3399 * Local Variables:
3400 * eval: (c-set-style "gnu")
3401 * End:
3402 */