blob: f20167226e8c23a9b68475cf3da620090a2882aa [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 Corasc9fbd662018-08-24 12:59:56 -0700426 vcm->my_client_index, reset_msg->handle, 0);
427 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 Coras99368312018-08-02 10:45:44 -0700676 vcl_send_session_disconnected_reply (vpp_evt_q, vcm->my_client_index,
677 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{
694 api_main_t *am = &api_main;
695
696 am->my_client_index = ~0;
697 am->my_registration = 0;
698 am->vl_input_queue = 0;
699 am->msg_index_by_name_and_crc = 0;
700
701 vl_client_api_unmap ();
702}
703
704void
705vcl_app_fork_child_handler (void)
706{
707 u8 *child_name;
708 int rv;
709
710 vcm->current_pid = getpid ();
711 vcl_set_worker_index (0);
712
713 VDBG (0, "initializing forked child");
714 child_name = format (0, "%v-child-%u%c", vcm->app_name, getpid (), 0);
715
716 vcl_cleanup_bapi ();
717 vppcom_api_hookup ();
718 vcm->app_state = STATE_APP_START;
719 rv = vppcom_connect_to_vpp ((char *) child_name);
720 vec_free (child_name);
721 if (rv)
722 {
723 VERR ("couldn't connect to VPP!");
724 return;
725 }
726
727 vcm->app_state = STATE_APP_ADDING_WORKER;
728 vcl_send_app_worker_add_del (1 /* is_add */ );
729 if (vcl_wait_for_app_state_change (STATE_APP_READY))
730 {
731 VERR ("failed to add worker to vpp");
732 return;
733 }
734 VDBG (0, "forked child main worker initialized");
735}
736
Dave Wallace543852a2017-08-03 02:11:34 -0400737/*
738 * VPPCOM Public API functions
739 */
740int
741vppcom_app_create (char *app_name)
742{
Dave Wallace543852a2017-08-03 02:11:34 -0400743 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400744 int rv;
745
Florin Coras134a9962018-08-28 11:32:04 -0700746 if (!vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -0400747 {
Florin Coras134a9962018-08-28 11:32:04 -0700748 vcm->is_init = 1;
Dave Barach6a5adc32018-07-04 10:56:23 -0400749 vppcom_cfg (&vcm->cfg);
Florin Coras99368312018-08-02 10:45:44 -0700750 vcl_cfg = &vcm->cfg;
751
Florin Coras134a9962018-08-28 11:32:04 -0700752 vcm->main_cpu = pthread_self ();
Florin Coras053a0e42018-11-13 15:52:38 -0800753 vcm->main_pid = vcm->current_pid = getpid ();
754 vcm->app_name = format (0, "%s", app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400755 vppcom_init_error_string_table ();
Florin Corasa332c462018-01-31 06:52:17 -0800756 svm_fifo_segment_main_init (vcl_cfg->segment_baseva,
757 20 /* timeout in secs */ );
Florin Coras134a9962018-08-28 11:32:04 -0700758 pool_init_fixed (vcm->workers, vcl_cfg->max_workers);
Florin Corasde9f08b2018-09-07 14:32:58 -0700759 clib_spinlock_init (&vcm->workers_lock);
Florin Coras134a9962018-08-28 11:32:04 -0700760 vcl_worker_alloc_and_init ();
Florin Coras053a0e42018-11-13 15:52:38 -0800761 pthread_atfork (NULL, NULL, vcl_app_fork_child_handler);
Dave Wallace543852a2017-08-03 02:11:34 -0400762 }
763
764 if (vcm->my_client_index == ~0)
765 {
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -0800766 /* API hookup and connect to VPP */
Dave Wallace048b1d62018-01-03 22:24:41 -0500767 vppcom_api_hookup ();
Florin Coras0d427d82018-06-27 03:24:07 -0700768 vcl_elog_init (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400769 vcm->app_state = STATE_APP_START;
770 rv = vppcom_connect_to_vpp (app_name);
771 if (rv)
772 {
Florin Coras053a0e42018-11-13 15:52:38 -0800773 VERR ("couldn't connect to VPP!");
Dave Wallace543852a2017-08-03 02:11:34 -0400774 return rv;
775 }
Florin Coras053a0e42018-11-13 15:52:38 -0800776 VDBG (0, "sending session enable");
Dave Wallace048b1d62018-01-03 22:24:41 -0500777 rv = vppcom_app_session_enable ();
Dave Wallace543852a2017-08-03 02:11:34 -0400778 if (rv)
779 {
Florin Coras053a0e42018-11-13 15:52:38 -0800780 VERR ("vppcom_app_session_enable() failed!");
Dave Wallace543852a2017-08-03 02:11:34 -0400781 return rv;
782 }
Dave Wallace543852a2017-08-03 02:11:34 -0400783
Florin Coras053a0e42018-11-13 15:52:38 -0800784 VDBG (0, "sending app attach");
Dave Wallace048b1d62018-01-03 22:24:41 -0500785 rv = vppcom_app_attach ();
786 if (rv)
787 {
Florin Coras053a0e42018-11-13 15:52:38 -0800788 VERR ("vppcom_app_attach() failed!");
Dave Wallace048b1d62018-01-03 22:24:41 -0500789 return rv;
790 }
791
Florin Coras053a0e42018-11-13 15:52:38 -0800792 VDBG (0, "app_name '%s', my_client_index %d (0x%x)",
793 app_name, vcm->my_client_index, vcm->my_client_index);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400794 }
Dave Wallace543852a2017-08-03 02:11:34 -0400795
796 return VPPCOM_OK;
797}
798
799void
800vppcom_app_destroy (void)
801{
Dave Wallace543852a2017-08-03 02:11:34 -0400802 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400803 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400804
805 if (vcm->my_client_index == ~0)
806 return;
807
Florin Coras053a0e42018-11-13 15:52:38 -0800808 VDBG (0, "detaching from VPP, my_client_index %d (0x%x)",
809 vcm->my_client_index, vcm->my_client_index);
Florin Coras0d427d82018-06-27 03:24:07 -0700810 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800811
Florin Coras697faea2018-06-27 17:10:49 -0700812 vppcom_app_send_detach ();
Dave Wallacede910062018-03-20 09:22:13 -0400813 orig_app_timeout = vcm->cfg.app_timeout;
814 vcm->cfg.app_timeout = 2.0;
Florin Coras134a9962018-08-28 11:32:04 -0700815 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Dave Wallacede910062018-03-20 09:22:13 -0400816 vcm->cfg.app_timeout = orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400817 if (PREDICT_FALSE (rv))
Florin Coras053a0e42018-11-13 15:52:38 -0800818 VDBG (0, "application detach timed out! returning %d (%s)",
819 rv, vppcom_retval_str (rv));
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800820
Florin Coras0d427d82018-06-27 03:24:07 -0700821 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400822 vl_client_disconnect_from_vlib ();
Florin Coras053a0e42018-11-13 15:52:38 -0800823 vec_free (vcm->app_name);
Dave Wallace543852a2017-08-03 02:11:34 -0400824 vcm->my_client_index = ~0;
825 vcm->app_state = STATE_APP_START;
826}
827
828int
Dave Wallacec04cbf12018-02-07 18:14:02 -0500829vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -0400830{
Florin Coras134a9962018-08-28 11:32:04 -0700831 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700832 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -0400833
Florin Coras134a9962018-08-28 11:32:04 -0700834 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -0400835
Florin Coras7e12d942018-06-27 14:32:43 -0700836 session->session_type = proto;
837 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500838 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -0700839 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -0400840
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800841 if (is_nonblocking)
842 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -0400843
Florin Coras7e12d942018-06-27 14:32:43 -0700844 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
845 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800846
Florin Coras053a0e42018-11-13 15:52:38 -0800847 VDBG (0, "created sid %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800848
Florin Coras134a9962018-08-28 11:32:04 -0700849 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -0400850}
851
852int
Florin Coras134a9962018-08-28 11:32:04 -0700853vppcom_session_close (uint32_t session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400854{
Florin Coras134a9962018-08-28 11:32:04 -0700855 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700856 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -0700857 u8 is_vep, is_vep_session;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400858 session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -0700859 u32 next_sh, vep_sh;
860 int rv = VPPCOM_OK;
861 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400862
Florin Coras134a9962018-08-28 11:32:04 -0700863 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700864 if (!session)
865 return VPPCOM_EBADFD;
866
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400867 is_vep = session->is_vep;
868 is_vep_session = session->is_vep_session;
Florin Coras134a9962018-08-28 11:32:04 -0700869 next_sh = session->vep.next_sh;
870 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -0700871 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -0500872 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400873
874 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500875 {
876 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500877 clib_warning ("VCL<%d>: vep_idx %u / sid %u: "
878 "closing epoll session...",
Florin Coras134a9962018-08-28 11:32:04 -0700879 getpid (), session_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500880 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500881 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %d: "
882 "closing session...",
Florin Coras134a9962018-08-28 11:32:04 -0700883 getpid (), vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500884 }
Dave Wallace543852a2017-08-03 02:11:34 -0400885
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400886 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -0400887 {
Florin Coras134a9962018-08-28 11:32:04 -0700888 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -0400889 {
Florin Coras134a9962018-08-28 11:32:04 -0700890 rv = vppcom_epoll_ctl (session_handle, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700891 if (PREDICT_FALSE (rv < 0))
892 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
893 "vep_idx %u failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700894 getpid (), vpp_handle, next_sh, vep_sh,
Florin Coras0d427d82018-06-27 03:24:07 -0700895 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400896
Florin Coras134a9962018-08-28 11:32:04 -0700897 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -0400898 }
899 }
900 else
901 {
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400902 if (is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400903 {
Florin Coras134a9962018-08-28 11:32:04 -0700904 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, session_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700905 if (rv < 0)
906 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL "
907 "vep_idx %u failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700908 getpid (), vpp_handle, session_handle,
909 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400910 }
911
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800912 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400913 {
Florin Coras134a9962018-08-28 11:32:04 -0700914 rv = vppcom_session_unbind (session_handle);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800915 if (PREDICT_FALSE (rv < 0))
Florin Coras0d427d82018-06-27 03:24:07 -0700916 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: listener unbind "
917 "failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700918 getpid (), vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -0700919 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400920 }
Florin Coras070453d2018-08-24 17:04:27 -0700921 else if (state & STATE_OPEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -0400922 {
Florin Coras134a9962018-08-28 11:32:04 -0700923 rv = vppcom_session_disconnect (session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500924 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -0500925 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500926 "session disconnect failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -0700927 getpid (), vpp_handle, session_handle,
Dave Wallaceee45d412017-11-24 21:44:06 -0500928 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -0400929 }
Dave Wallace19481612017-09-15 18:47:44 -0400930 }
Dave Wallace4878cbe2017-11-21 03:45:09 -0500931
Florin Coras99368312018-08-02 10:45:44 -0700932 if (vcl_session_is_ct (session))
933 {
934 vcl_cut_through_registration_t *ctr;
935 uword mq_addr;
936
937 mq_addr = pointer_to_uword (session->our_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -0700938 ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
Florin Coras99368312018-08-02 10:45:44 -0700939 ASSERT (ctr);
940 if (ctr->epoll_evt_conn_index != ~0)
Florin Coras134a9962018-08-28 11:32:04 -0700941 vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
Florin Coras99368312018-08-02 10:45:44 -0700942 VDBG (0, "Removing ct registration %u",
Florin Coras134a9962018-08-28 11:32:04 -0700943 vcl_ct_registration_index (wrk, ctr));
944 vcl_ct_registration_del (wrk, ctr);
945 vcl_ct_registration_lookup_del (wrk, mq_addr);
946 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700947 }
Florin Coras54693d22018-07-17 10:46:29 -0700948
Dave Wallaceee45d412017-11-24 21:44:06 -0500949 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500950 {
Florin Coras134a9962018-08-28 11:32:04 -0700951 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500952 }
Florin Coras134a9962018-08-28 11:32:04 -0700953 vcl_session_free (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500954
955 if (VPPCOM_DEBUG > 0)
Dave Wallaceee45d412017-11-24 21:44:06 -0500956 {
957 if (is_vep)
Dave Wallace048b1d62018-01-03 22:24:41 -0500958 clib_warning ("VCL<%d>: vep_idx %u / sid %u: epoll session removed.",
Florin Coras134a9962018-08-28 11:32:04 -0700959 getpid (), session_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500960 else
Dave Wallace048b1d62018-01-03 22:24:41 -0500961 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: session removed.",
Florin Coras134a9962018-08-28 11:32:04 -0700962 getpid (), vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -0500963 }
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800964
Florin Coras0d427d82018-06-27 03:24:07 -0700965 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -0800966
Dave Wallace543852a2017-08-03 02:11:34 -0400967 return rv;
968}
969
970int
Florin Coras134a9962018-08-28 11:32:04 -0700971vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -0400972{
Florin Coras134a9962018-08-28 11:32:04 -0700973 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700974 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -0400975
976 if (!ep || !ep->ip)
977 return VPPCOM_EINVAL;
978
Florin Coras134a9962018-08-28 11:32:04 -0700979 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700980 if (!session)
981 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -0400982
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400983 if (session->is_vep)
984 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500985 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -0700986 "bind to an epoll session!", getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700987 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -0400988 }
989
Florin Coras7e12d942018-06-27 14:32:43 -0700990 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -0700991 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -0500992 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
993 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700994 else
Dave Barach178cf492018-11-13 16:34:13 -0500995 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
996 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -0700997 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -0700998
Florin Coras0d427d82018-06-27 03:24:07 -0700999 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
Florin Coras134a9962018-08-28 11:32:04 -07001000 "proto %s", getpid (), session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001001 session->transport.is_ip4 ? "IPv4" : "IPv6",
1002 format_ip46_address, &session->transport.lcl_ip,
1003 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1004 clib_net_to_host_u16 (session->transport.lcl_port),
1005 session->session_type ? "UDP" : "TCP");
Florin Coras0d427d82018-06-27 03:24:07 -07001006 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001007
1008 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001009 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001010
Florin Coras070453d2018-08-24 17:04:27 -07001011 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001012}
1013
1014int
Florin Coras134a9962018-08-28 11:32:04 -07001015vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001016{
Florin Coras134a9962018-08-28 11:32:04 -07001017 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001018 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001019 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001020 int rv;
1021
Florin Coras134a9962018-08-28 11:32:04 -07001022 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001023 if (!listen_session)
1024 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001025
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001026 if (q_len == 0 || q_len == ~0)
1027 q_len = vcm->cfg.listen_queue_size;
1028
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001029 if (listen_session->is_vep)
1030 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001031 clib_warning ("VCL<%d>: ERROR: sid %u: cannot listen on an "
Florin Coras134a9962018-08-28 11:32:04 -07001032 "epoll session!", getpid (), listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001033 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001034 }
1035
Dave Wallaceee45d412017-11-24 21:44:06 -05001036 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001037 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001038 {
Florin Coras0d427d82018-06-27 03:24:07 -07001039 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: already in listen state!",
Florin Coras134a9962018-08-28 11:32:04 -07001040 getpid (), listen_vpp_handle, listen_sh);
Florin Coras070453d2018-08-24 17:04:27 -07001041 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001042 }
1043
Florin Coras0d427d82018-06-27 03:24:07 -07001044 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: sending VPP bind+listen "
Florin Coras134a9962018-08-28 11:32:04 -07001045 "request...", getpid (), listen_vpp_handle, listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001046
Florin Coras070453d2018-08-24 17:04:27 -07001047 /*
1048 * Send listen request to vpp and wait for reply
1049 */
Florin Coras134a9962018-08-28 11:32:04 -07001050 vppcom_send_bind_sock (listen_session);
1051 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1052 STATE_LISTEN,
1053 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001054
Florin Coras070453d2018-08-24 17:04:27 -07001055 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001056 {
Florin Coras134a9962018-08-28 11:32:04 -07001057 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07001058 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: bind+listen failed! "
1059 "returning %d (%s)", getpid (), listen_session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001060 listen_sh, rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001061 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001062 }
1063
Florin Coras070453d2018-08-24 17:04:27 -07001064 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001065}
1066
Florin Coras134a9962018-08-28 11:32:04 -07001067static int
1068validate_args_session_accept_ (vcl_worker_t * wrk,
1069 vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001070{
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001071 /* Input validation - expects spinlock on sessions_lockp */
1072 if (listen_session->is_vep)
1073 {
1074 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
Florin Coras134a9962018-08-28 11:32:04 -07001075 "epoll session!", getpid (),
1076 listen_session->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001077 return VPPCOM_EBADFD;
1078 }
1079
Florin Coras7e12d942018-06-27 14:32:43 -07001080 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001081 {
1082 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1083 "not in listen state! state 0x%x (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001084 listen_session->vpp_handle, listen_session->session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001085 listen_session->session_state,
1086 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001087 return VPPCOM_EBADFD;
1088 }
1089 return VPPCOM_OK;
1090}
1091
1092int
Florin Coras134a9962018-08-28 11:32:04 -07001093vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001094 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001095{
Florin Coras134a9962018-08-28 11:32:04 -07001096 u32 client_session_index = ~0, listen_session_index;
1097 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001098 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001099 vcl_session_t *listen_session = 0;
1100 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001101 svm_msg_q_t *vpp_evt_q;
1102 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001103 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001104 svm_msg_q_msg_t msg;
1105 session_event_t *e;
1106 u8 is_nonblocking;
1107 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001108
Florin Coras134a9962018-08-28 11:32:04 -07001109 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001110 if (!listen_session)
1111 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001112
Florin Coras134a9962018-08-28 11:32:04 -07001113 listen_session_index = listen_session->session_index;
1114 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001115 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001116
Florin Coras54693d22018-07-17 10:46:29 -07001117 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001118 {
Florin Coras54693d22018-07-17 10:46:29 -07001119 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
1120 accepted_msg = evt->accepted_msg;
1121 goto handle;
1122 }
1123
1124 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1125 VCL_SESS_ATTR_NONBLOCK);
Florin Coras134a9962018-08-28 11:32:04 -07001126 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
Florin Coras54693d22018-07-17 10:46:29 -07001127 return VPPCOM_EAGAIN;
1128
1129 while (1)
1130 {
Florin Coras134a9962018-08-28 11:32:04 -07001131 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001132 return VPPCOM_EAGAIN;
1133
Florin Coras134a9962018-08-28 11:32:04 -07001134 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001135 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001136 {
Florin Coras54693d22018-07-17 10:46:29 -07001137 clib_warning ("discarded event: %u", e->event_type);
Florin Coras134a9962018-08-28 11:32:04 -07001138 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001139 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001140 }
Dave Barach178cf492018-11-13 16:34:13 -05001141 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001142 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001143 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001144 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001145
Florin Coras54693d22018-07-17 10:46:29 -07001146handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001147
Florin Coras134a9962018-08-28 11:32:04 -07001148 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1149 listen_session = vcl_session_get (wrk, listen_session_index);
1150 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001151
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001152 if (flags & O_NONBLOCK)
1153 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001154
Florin Coras54693d22018-07-17 10:46:29 -07001155 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras0d427d82018-06-27 03:24:07 -07001156 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: Got a client request! "
1157 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
Florin Coras134a9962018-08-28 11:32:04 -07001158 getpid (), listen_vpp_handle, listen_session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001159 client_session->vpp_handle, client_session_index,
1160 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1161 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001162
Dave Wallace048b1d62018-01-03 22:24:41 -05001163 if (ep)
1164 {
Florin Coras7e12d942018-06-27 14:32:43 -07001165 ep->is_ip4 = client_session->transport.is_ip4;
1166 ep->port = client_session->transport.rmt_port;
1167 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001168 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1169 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001170 else
Dave Barach178cf492018-11-13 16:34:13 -05001171 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1172 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001173 }
Dave Wallace60caa062017-11-10 17:07:13 -05001174
Florin Coras54693d22018-07-17 10:46:29 -07001175 if (accepted_msg.server_event_queue_address)
1176 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1177 svm_msg_q_t *);
1178 else
1179 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001180
Florin Coras54693d22018-07-17 10:46:29 -07001181 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1182 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001183
Florin Coras54693d22018-07-17 10:46:29 -07001184 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: accepted vpp handle 0x%llx, "
1185 "sid %u connection from peer %s address %U port %u to local %s "
1186 "address %U port %u", getpid (), listen_vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001187 listen_session_handle, client_session->vpp_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001188 client_session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001189 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1190 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001191 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001192 clib_net_to_host_u16 (client_session->transport.rmt_port),
1193 client_session->transport.is_ip4 ? "IPv4" : "IPv6",
1194 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001195 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001196 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001197 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1198 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001199
Florin Corasab2f6db2018-08-31 14:31:41 -07001200 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001201}
1202
1203int
Florin Coras134a9962018-08-28 11:32:04 -07001204vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001205{
Florin Coras134a9962018-08-28 11:32:04 -07001206 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001207 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001208 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001209 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001210
Florin Coras134a9962018-08-28 11:32:04 -07001211 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001212 if (!session)
1213 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001214 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001215
1216 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001217 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001218 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001219 "connect on an epoll session!", getpid (),
1220 session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001221 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001222 }
1223
Florin Coras7e12d942018-06-27 14:32:43 -07001224 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001225 {
Florin Coras0d427d82018-06-27 03:24:07 -07001226 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1227 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001228 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001229 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001230 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001231 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001232 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001233 clib_net_to_host_u16 (session->transport.rmt_port),
1234 session->session_type ? "UDP" : "TCP", session->session_state,
1235 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001236 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001237 }
1238
Florin Coras7e12d942018-06-27 14:32:43 -07001239 session->transport.is_ip4 = server_ep->is_ip4;
1240 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001241 clib_memcpy_fast (&session->transport.rmt_ip.ip4, server_ep->ip,
1242 sizeof (ip4_address_t));
Dave Wallaced239f8d2018-06-19 13:37:30 -04001243 else
Dave Barach178cf492018-11-13 16:34:13 -05001244 clib_memcpy_fast (&session->transport.rmt_ip.ip6, server_ep->ip,
1245 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001246 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001247
Florin Coras0d427d82018-06-27 03:24:07 -07001248 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1249 "port %d proto %s",
Florin Coras134a9962018-08-28 11:32:04 -07001250 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001251 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001252 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001253 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001254 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001255 clib_net_to_host_u16 (session->transport.rmt_port),
1256 session->session_type ? "UDP" : "TCP");
Dave Wallace543852a2017-08-03 02:11:34 -04001257
Florin Coras070453d2018-08-24 17:04:27 -07001258 /*
1259 * Send connect request and wait for reply from vpp
1260 */
Florin Coras134a9962018-08-28 11:32:04 -07001261 vppcom_send_connect_sock (session);
Florin Coras070453d2018-08-24 17:04:27 -07001262 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1263 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001264
Florin Coras134a9962018-08-28 11:32:04 -07001265 session = vcl_session_get (wrk, session_index);
Dave Wallace7876d392017-10-19 03:53:57 -04001266
Florin Coras070453d2018-08-24 17:04:27 -07001267 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001268 {
Dave Wallaceee45d412017-11-24 21:44:06 -05001269 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001270 {
1271 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001272 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
Florin Coras134a9962018-08-28 11:32:04 -07001273 "failed! returning %d (%s)", getpid (),
1274 session->vpp_handle, session_handle, rv,
1275 vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001276 else
1277 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1278 "returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001279 session_handle, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001280 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001281 }
Florin Coras0d427d82018-06-27 03:24:07 -07001282 else
1283 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
Florin Coras134a9962018-08-28 11:32:04 -07001284 getpid (), session->vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -05001285
Dave Wallace4878cbe2017-11-21 03:45:09 -05001286 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001287}
1288
Florin Coras54693d22018-07-17 10:46:29 -07001289static u8
1290vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1291{
1292 if (!is_ct)
1293 return (e->event_type == FIFO_EVENT_APP_RX
1294 && e->fifo->client_session_index == sid);
1295 else
1296 return (e->event_type == SESSION_IO_EVT_CT_TX);
1297}
1298
Florin Coras460dce62018-07-27 05:45:06 -07001299static inline u8
1300vcl_session_is_readable (vcl_session_t * s)
1301{
1302 return ((s->session_state & STATE_OPEN)
1303 || (s->session_state == STATE_LISTEN
1304 && s->session_type == VPPCOM_PROTO_UDP));
1305}
1306
Steven58f464e2017-10-25 12:33:12 -07001307static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001308vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001309 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001310{
Florin Coras134a9962018-08-28 11:32:04 -07001311 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001312 int n_read = 0, rv, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001313 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001314 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001315 svm_msg_q_msg_t msg;
1316 session_event_t *e;
1317 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001318 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001319
Florin Coras070453d2018-08-24 17:04:27 -07001320 if (PREDICT_FALSE (!buf))
1321 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001322
Florin Coras134a9962018-08-28 11:32:04 -07001323 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001324 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001325 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001326
Florin Coras460dce62018-07-27 05:45:06 -07001327 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001328 {
Florin Coras460dce62018-07-27 05:45:06 -07001329 session_state_t state = s->session_state;
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001330 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001331
Florin Coras0d427d82018-06-27 03:24:07 -07001332 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: %s session is not open! "
1333 "state 0x%x (%s), returning %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001334 getpid (), s->vpp_handle, session_handle, state,
Florin Coras0d427d82018-06-27 03:24:07 -07001335 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001336 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001337 }
1338
Florin Coras2cba8532018-09-11 16:33:36 -07001339 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001340 is_ct = vcl_session_is_ct (s);
1341 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras2cba8532018-09-11 16:33:36 -07001342 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001343 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001344
Florin Coras54693d22018-07-17 10:46:29 -07001345 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001346 {
Florin Coras54693d22018-07-17 10:46:29 -07001347 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001348 {
Florin Coras41c9e042018-09-11 00:10:41 -07001349 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001350 return VPPCOM_EWOULDBLOCK;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001351 }
Florin Coras41c9e042018-09-11 00:10:41 -07001352 while (svm_fifo_is_empty (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001353 {
Florin Coras41c9e042018-09-11 00:10:41 -07001354 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001355 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001356 if (svm_msg_q_is_empty (mq))
1357 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001358
Florin Coras54693d22018-07-17 10:46:29 -07001359 svm_msg_q_sub_w_lock (mq, &msg);
1360 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001361 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001362 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras54693d22018-07-17 10:46:29 -07001363 {
Florin Coras86f04502018-09-12 16:08:01 -07001364 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001365 svm_msg_q_free_msg (mq, &msg);
1366 continue;
1367 }
Florin Coras54693d22018-07-17 10:46:29 -07001368 svm_msg_q_free_msg (mq, &msg);
Florin Coras41c9e042018-09-11 00:10:41 -07001369
Florin Coras60f1fc12018-08-16 14:57:31 -07001370 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1371 return 0;
Florin Coras54693d22018-07-17 10:46:29 -07001372 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001373 }
Florin Coras54693d22018-07-17 10:46:29 -07001374
Florin Coras460dce62018-07-27 05:45:06 -07001375 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001376 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001377 else
Florin Coras99368312018-08-02 10:45:44 -07001378 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001379
Florin Coras41c9e042018-09-11 00:10:41 -07001380 if (svm_fifo_is_empty (rx_fifo))
1381 svm_fifo_unset_event (rx_fifo);
1382
Florin Coras58c101a2018-10-06 13:49:16 -07001383 if (is_ct && svm_fifo_want_tx_evt (rx_fifo))
Florin Coras99368312018-08-02 10:45:44 -07001384 {
Florin Coras58c101a2018-10-06 13:49:16 -07001385 svm_fifo_set_want_tx_evt (s->rx_fifo, 0);
1386 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo, SESSION_IO_EVT_CT_RX,
1387 SVM_Q_WAIT);
Florin Coras99368312018-08-02 10:45:44 -07001388 }
Florin Coras54693d22018-07-17 10:46:29 -07001389
Florin Coras2cba8532018-09-11 16:33:36 -07001390 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: read %d bytes from (%p)",
1391 getpid (), s->vpp_handle, session_handle, n_read, rx_fifo);
1392
Florin Coras54693d22018-07-17 10:46:29 -07001393 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001394}
1395
Steven58f464e2017-10-25 12:33:12 -07001396int
Florin Coras134a9962018-08-28 11:32:04 -07001397vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001398{
Florin Coras134a9962018-08-28 11:32:04 -07001399 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001400}
1401
1402static int
Florin Coras134a9962018-08-28 11:32:04 -07001403vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001404{
Florin Coras134a9962018-08-28 11:32:04 -07001405 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001406}
1407
Florin Coras2cba8532018-09-11 16:33:36 -07001408int
1409vppcom_session_read_segments (uint32_t session_handle,
1410 vppcom_data_segments_t ds)
1411{
1412 vcl_worker_t *wrk = vcl_worker_get_current ();
1413 int n_read = 0, rv, is_nonblocking;
1414 vcl_session_t *s = 0;
1415 svm_fifo_t *rx_fifo;
1416 svm_msg_q_msg_t msg;
1417 session_event_t *e;
1418 svm_msg_q_t *mq;
1419 u8 is_ct;
1420
1421 s = vcl_session_get_w_handle (wrk, session_handle);
1422 if (PREDICT_FALSE (!s || s->is_vep))
1423 return VPPCOM_EBADFD;
1424
1425 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
1426 {
1427 session_state_t state = s->session_state;
1428 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1429 return rv;
1430 }
1431
1432 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1433 is_ct = vcl_session_is_ct (s);
1434 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1435 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001436 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001437
1438 if (svm_fifo_is_empty (rx_fifo))
1439 {
1440 if (is_nonblocking)
1441 {
1442 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001443 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001444 }
1445 while (svm_fifo_is_empty (rx_fifo))
1446 {
1447 svm_fifo_unset_event (rx_fifo);
1448 svm_msg_q_lock (mq);
1449 if (svm_msg_q_is_empty (mq))
1450 svm_msg_q_wait (mq);
1451
1452 svm_msg_q_sub_w_lock (mq, &msg);
1453 e = svm_msg_q_msg_data (mq, &msg);
1454 svm_msg_q_unlock (mq);
1455 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
1456 {
Florin Coras86f04502018-09-12 16:08:01 -07001457 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001458 svm_msg_q_free_msg (mq, &msg);
1459 continue;
1460 }
1461 svm_msg_q_free_msg (mq, &msg);
1462
1463 if (PREDICT_FALSE (s->session_state == STATE_CLOSE_ON_EMPTY))
1464 return 0;
1465 }
1466 }
1467
1468 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_segment_t *) ds);
1469 svm_fifo_unset_event (rx_fifo);
1470
1471 if (is_ct && n_read + svm_fifo_max_dequeue (rx_fifo) == rx_fifo->nitems)
1472 {
1473 /* If the peer is not polling send notification */
1474 if (!svm_fifo_has_event (s->rx_fifo))
1475 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1476 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1477 }
1478
1479 return n_read;
1480}
1481
1482void
1483vppcom_session_free_segments (uint32_t session_handle,
1484 vppcom_data_segments_t ds)
1485{
1486 vcl_worker_t *wrk = vcl_worker_get_current ();
1487 vcl_session_t *s;
1488
1489 s = vcl_session_get_w_handle (wrk, session_handle);
1490 if (PREDICT_FALSE (!s || s->is_vep))
1491 return;
1492
1493 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_segment_t *) ds);
1494}
1495
Dave Wallace543852a2017-08-03 02:11:34 -04001496static inline int
Florin Coras54693d22018-07-17 10:46:29 -07001497vppcom_session_read_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001498{
Dave Wallace543852a2017-08-03 02:11:34 -04001499 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001500 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001501 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001502 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Florin Coras134a9962018-08-28 11:32:04 -07001503 "epoll session!", getpid (), session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001504 return VPPCOM_EBADFD;
1505 }
1506
1507 if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1508 {
1509 session_state_t state = session->session_state;
1510 int rv;
1511
1512 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1513
1514 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1515 " state 0x%x (%s), returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001516 session->vpp_handle, session->session_index, state,
Florin Coras54693d22018-07-17 10:46:29 -07001517 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1518 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001519 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001520
Florin Coras7e12d942018-06-27 14:32:43 -07001521 if (session->session_state & STATE_LISTEN)
Florin Coras54693d22018-07-17 10:46:29 -07001522 return clib_fifo_elts (session->accept_evts_fifo);
1523
1524 return svm_fifo_max_dequeue (session->rx_fifo);
1525}
1526
Florin Coras2cba8532018-09-11 16:33:36 -07001527int
1528vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1529{
1530 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001531 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001532 if (first_copy < max_bytes)
1533 {
Dave Barach178cf492018-11-13 16:34:13 -05001534 clib_memcpy_fast (buf + first_copy, ds[1].data,
1535 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001536 }
1537 return 0;
1538}
1539
Florin Coras54693d22018-07-17 10:46:29 -07001540static u8
1541vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1542{
1543 if (!is_ct)
1544 return (e->event_type == FIFO_EVENT_APP_TX
1545 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001546 else
Florin Coras54693d22018-07-17 10:46:29 -07001547 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001548}
1549
1550int
Florin Coras134a9962018-08-28 11:32:04 -07001551vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
Dave Wallace543852a2017-08-03 02:11:34 -04001552{
Florin Coras134a9962018-08-28 11:32:04 -07001553 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001554 int rv, n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001555 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001556 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001557 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001558 svm_msg_q_msg_t msg;
1559 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001560 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001561 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001562
Florin Coras070453d2018-08-24 17:04:27 -07001563 if (PREDICT_FALSE (!buf))
1564 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001565
Florin Coras134a9962018-08-28 11:32:04 -07001566 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001567 if (PREDICT_FALSE (!s))
1568 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001569
Florin Coras460dce62018-07-27 05:45:06 -07001570 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001571 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001572 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001573 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001574 getpid (), s->vpp_handle, session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001575
Florin Coras070453d2018-08-24 17:04:27 -07001576 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001577 }
1578
Florin Coras0e88e852018-09-17 22:09:02 -07001579 if (PREDICT_FALSE (!(s->session_state & STATE_OPEN)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001580 {
Florin Coras460dce62018-07-27 05:45:06 -07001581 session_state_t state = s->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001582 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Florin Coras0d427d82018-06-27 03:24:07 -07001583 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
Florin Coras0e88e852018-09-17 22:09:02 -07001584 "state 0x%x (%s)", getpid (), s->vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001585 state, vppcom_session_state_str (state));
Florin Coras070453d2018-08-24 17:04:27 -07001586 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001587 }
1588
Florin Coras0e88e852018-09-17 22:09:02 -07001589 tx_fifo = s->tx_fifo;
1590 is_ct = vcl_session_is_ct (s);
1591 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1592 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001593 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001594 {
Florin Coras54693d22018-07-17 10:46:29 -07001595 if (is_nonblocking)
1596 {
Florin Coras070453d2018-08-24 17:04:27 -07001597 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001598 }
Florin Coras60f1fc12018-08-16 14:57:31 -07001599 while (svm_fifo_is_full (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001600 {
Florin Coras0e88e852018-09-17 22:09:02 -07001601 svm_fifo_set_want_tx_evt (tx_fifo, 1);
Florin Coras99368312018-08-02 10:45:44 -07001602 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001603 if (svm_msg_q_is_empty (mq))
1604 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001605
Florin Coras54693d22018-07-17 10:46:29 -07001606 svm_msg_q_sub_w_lock (mq, &msg);
1607 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001608 svm_msg_q_unlock (mq);
1609
Florin Coras0e88e852018-09-17 22:09:02 -07001610 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001611 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001612 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001613 }
Dave Wallace543852a2017-08-03 02:11:34 -04001614 }
Dave Wallace543852a2017-08-03 02:11:34 -04001615
Florin Coras460dce62018-07-27 05:45:06 -07001616 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1617 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
1618 if (s->is_dgram)
1619 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1620 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1621 else
1622 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1623 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001624
Florin Coras460dce62018-07-27 05:45:06 -07001625 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001626
Florin Coras0e88e852018-09-17 22:09:02 -07001627 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: wrote %d bytes", getpid (),
1628 s->vpp_handle, session_handle, n_write);
1629
Florin Coras54693d22018-07-17 10:46:29 -07001630 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04001631}
1632
Florin Coras99368312018-08-02 10:45:44 -07001633static vcl_session_t *
Florin Coras134a9962018-08-28 11:32:04 -07001634vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
Florin Coras99368312018-08-02 10:45:44 -07001635{
1636 vcl_session_t *s;
Florin Coras134a9962018-08-28 11:32:04 -07001637 s = vcl_session_get (wrk, f->client_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001638 if (s)
1639 {
1640 /* rx fifo */
1641 if (type == 0 && s->rx_fifo == f)
1642 return s;
1643 /* tx fifo */
1644 if (type == 1 && s->tx_fifo == f)
1645 return s;
1646 }
Florin Coras134a9962018-08-28 11:32:04 -07001647 s = vcl_session_get (wrk, f->master_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001648 if (s)
1649 {
1650 if (type == 0 && s->rx_fifo == f)
1651 return s;
1652 if (type == 1 && s->tx_fifo == f)
1653 return s;
1654 }
1655 return 0;
1656}
1657
Dave Wallace543852a2017-08-03 02:11:34 -04001658static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001659vppcom_session_write_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001660{
Dave Wallace543852a2017-08-03 02:11:34 -04001661 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001662 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001663 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001664 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001665 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001666 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001667 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001668 }
1669
Florin Coras7e12d942018-06-27 14:32:43 -07001670 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001671 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001672 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001673 "cannot write to a listen session!",
Florin Coras134a9962018-08-28 11:32:04 -07001674 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001675 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001676 }
1677
Florin Coras54693d22018-07-17 10:46:29 -07001678 if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001679 {
Florin Coras7e12d942018-06-27 14:32:43 -07001680 session_state_t state = session->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001681 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001682
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001683 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace048b1d62018-01-03 22:24:41 -05001684 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001685 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001686 "returning %d (%s)", getpid (), session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001687 session->session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001688 state, vppcom_session_state_str (state),
1689 rv, vppcom_retval_str (rv));
Florin Coras54693d22018-07-17 10:46:29 -07001690 return rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001691 }
1692
Florin Coras0d427d82018-06-27 03:24:07 -07001693 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
Florin Coras134a9962018-08-28 11:32:04 -07001694 getpid (), session->vpp_handle, session->session_index,
1695 session->tx_fifo, svm_fifo_max_enqueue (session->tx_fifo));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001696
Florin Coras54693d22018-07-17 10:46:29 -07001697 return svm_fifo_max_enqueue (session->tx_fifo);
1698}
1699
Florin Coras99368312018-08-02 10:45:44 -07001700static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001701vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
Florin Coras99368312018-08-02 10:45:44 -07001702{
1703 svm_msg_q_msg_t *msg;
1704 u32 n_msgs;
1705 int i;
1706
1707 n_msgs = svm_msg_q_size (mq);
1708 for (i = 0; i < n_msgs; i++)
1709 {
Florin Coras134a9962018-08-28 11:32:04 -07001710 vec_add2 (wrk->mq_msg_vector, msg, 1);
Florin Coras99368312018-08-02 10:45:44 -07001711 svm_msg_q_sub_w_lock (mq, msg);
1712 }
1713 return n_msgs;
1714}
1715
Florin Coras6d4bb422018-09-04 22:07:27 -07001716#define vcl_fifo_rx_evt_valid_or_break(_fifo) \
1717if (PREDICT_FALSE (svm_fifo_is_empty (_fifo))) \
1718 { \
1719 svm_fifo_unset_event (_fifo); \
1720 if (svm_fifo_is_empty (_fifo)) \
Florin Coras41c9e042018-09-11 00:10:41 -07001721 break; \
Florin Coras6d4bb422018-09-04 22:07:27 -07001722 } \
1723
Florin Coras86f04502018-09-12 16:08:01 -07001724static void
1725vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
1726 unsigned long n_bits, unsigned long *read_map,
1727 unsigned long *write_map,
1728 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07001729{
1730 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001731 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001732 session_accepted_msg_t *accepted_msg;
1733 vcl_session_msg_t *vcl_msg;
1734 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07001735 u64 handle;
1736 u32 sid;
1737
1738 switch (e->event_type)
1739 {
1740 case FIFO_EVENT_APP_RX:
1741 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1742 sid = e->fifo->client_session_index;
1743 session = vcl_session_get (wrk, sid);
1744 if (!session)
1745 break;
1746 if (sid < n_bits && read_map)
1747 {
1748 clib_bitmap_set_no_check (read_map, sid, 1);
1749 *bits_set += 1;
1750 }
1751 break;
1752 case FIFO_EVENT_APP_TX:
1753 sid = e->fifo->client_session_index;
1754 session = vcl_session_get (wrk, sid);
1755 if (!session)
1756 break;
1757 if (sid < n_bits && write_map)
1758 {
1759 clib_bitmap_set_no_check (write_map, sid, 1);
1760 *bits_set += 1;
1761 }
1762 break;
1763 case SESSION_IO_EVT_CT_TX:
1764 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1765 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
1766 if (!session)
1767 break;
1768 sid = session->session_index;
1769 if (sid < n_bits && read_map)
1770 {
1771 clib_bitmap_set_no_check (read_map, sid, 1);
1772 *bits_set += 1;
1773 }
1774 break;
1775 case SESSION_IO_EVT_CT_RX:
1776 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
1777 if (!session)
1778 break;
1779 sid = session->session_index;
1780 if (sid < n_bits && write_map)
1781 {
1782 clib_bitmap_set_no_check (write_map, sid, 1);
1783 *bits_set += 1;
1784 }
1785 break;
1786 case SESSION_CTRL_EVT_ACCEPTED:
1787 accepted_msg = (session_accepted_msg_t *) e->data;
1788 handle = accepted_msg->listener_handle;
1789 session = vcl_session_table_lookup_listener (wrk, handle);
1790 if (!session)
1791 {
1792 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
1793 "listener handle %llx", getpid (), handle);
1794 break;
1795 }
1796
1797 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
1798 vcl_msg->accepted_msg = *accepted_msg;
1799 sid = session->session_index;
1800 if (sid < n_bits && read_map)
1801 {
1802 clib_bitmap_set_no_check (read_map, sid, 1);
1803 *bits_set += 1;
1804 }
1805 break;
1806 case SESSION_CTRL_EVT_CONNECTED:
1807 connected_msg = (session_connected_msg_t *) e->data;
1808 vcl_session_connected_handler (wrk, connected_msg);
1809 break;
1810 case SESSION_CTRL_EVT_DISCONNECTED:
1811 disconnected_msg = (session_disconnected_msg_t *) e->data;
1812 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
1813 if (sid < n_bits && except_map)
1814 {
1815 clib_bitmap_set_no_check (except_map, sid, 1);
1816 *bits_set += 1;
1817 }
1818 break;
1819 case SESSION_CTRL_EVT_RESET:
1820 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
1821 if (sid < n_bits && except_map)
1822 {
1823 clib_bitmap_set_no_check (except_map, sid, 1);
1824 *bits_set += 1;
1825 }
1826 break;
1827 default:
1828 clib_warning ("unhandled: %u", e->event_type);
1829 break;
1830 }
1831}
1832
1833static int
1834vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
1835 unsigned long n_bits, unsigned long *read_map,
1836 unsigned long *write_map, unsigned long *except_map,
1837 double time_to_wait, u32 * bits_set)
1838{
Florin Coras99368312018-08-02 10:45:44 -07001839 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07001840 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07001841 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07001842
1843 svm_msg_q_lock (mq);
1844 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001845 {
Florin Coras54693d22018-07-17 10:46:29 -07001846 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001847 {
Florin Coras54693d22018-07-17 10:46:29 -07001848 svm_msg_q_unlock (mq);
1849 return 0;
1850 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001851
Florin Coras54693d22018-07-17 10:46:29 -07001852 if (!time_to_wait)
1853 {
1854 svm_msg_q_unlock (mq);
1855 return 0;
1856 }
1857 else if (time_to_wait < 0)
1858 {
1859 svm_msg_q_wait (mq);
1860 }
1861 else
1862 {
1863 if (svm_msg_q_timedwait (mq, time_to_wait))
1864 {
1865 svm_msg_q_unlock (mq);
1866 return 0;
1867 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001868 }
1869 }
Florin Coras134a9962018-08-28 11:32:04 -07001870 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07001871 svm_msg_q_unlock (mq);
1872
Florin Coras134a9962018-08-28 11:32:04 -07001873 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07001874 {
Florin Coras134a9962018-08-28 11:32:04 -07001875 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07001876 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07001877 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
1878 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001879 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001880 }
Florin Coras134a9962018-08-28 11:32:04 -07001881 vec_reset_length (wrk->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07001882 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04001883}
1884
Florin Coras99368312018-08-02 10:45:44 -07001885static int
Florin Coras134a9962018-08-28 11:32:04 -07001886vppcom_select_condvar (vcl_worker_t * wrk, unsigned long n_bits,
1887 unsigned long *read_map, unsigned long *write_map,
1888 unsigned long *except_map, double time_to_wait,
1889 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001890{
1891 double total_wait = 0, wait_slice;
1892 vcl_cut_through_registration_t *cr;
1893
1894 time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
Florin Coras134a9962018-08-28 11:32:04 -07001895 wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
Florin Coras99368312018-08-02 10:45:44 -07001896 do
1897 {
Florin Coras134a9962018-08-28 11:32:04 -07001898 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001899 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001900 pool_foreach (cr, wrk->cut_through_registrations, ({
1901 vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07001902 0, bits_set);
1903 }));
1904 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07001905 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001906
Florin Coras134a9962018-08-28 11:32:04 -07001907 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
1908 write_map, except_map, time_to_wait, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001909 total_wait += wait_slice;
1910 if (*bits_set)
1911 return *bits_set;
1912 }
1913 while (total_wait < time_to_wait);
1914
1915 return 0;
1916}
1917
1918static int
Florin Coras134a9962018-08-28 11:32:04 -07001919vppcom_select_eventfd (vcl_worker_t * wrk, unsigned long n_bits,
1920 unsigned long *read_map, unsigned long *write_map,
1921 unsigned long *except_map, double time_to_wait,
1922 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07001923{
1924 vcl_mq_evt_conn_t *mqc;
1925 int __clib_unused n_read;
1926 int n_mq_evts, i;
1927 u64 buf;
1928
Florin Coras134a9962018-08-28 11:32:04 -07001929 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
1930 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
1931 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07001932 for (i = 0; i < n_mq_evts; i++)
1933 {
Florin Coras134a9962018-08-28 11:32:04 -07001934 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07001935 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07001936 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07001937 except_map, 0, bits_set);
1938 }
1939
1940 return (n_mq_evts > 0 ? (int) *bits_set : 0);
1941}
1942
Dave Wallace543852a2017-08-03 02:11:34 -04001943int
1944vppcom_select (unsigned long n_bits, unsigned long *read_map,
1945 unsigned long *write_map, unsigned long *except_map,
1946 double time_to_wait)
1947{
Florin Coras54693d22018-07-17 10:46:29 -07001948 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001949 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001950 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07001951 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04001952
1953 ASSERT (sizeof (clib_bitmap_t) == sizeof (long int));
1954
Dave Wallace7876d392017-10-19 03:53:57 -04001955 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001956 {
Florin Coras134a9962018-08-28 11:32:04 -07001957 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001958 clib_memcpy_fast (wrk->rd_bitmap, read_map,
1959 vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
Florin Coras134a9962018-08-28 11:32:04 -07001960 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001961 }
Dave Wallace7876d392017-10-19 03:53:57 -04001962 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001963 {
Florin Coras134a9962018-08-28 11:32:04 -07001964 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001965 clib_memcpy_fast (wrk->wr_bitmap, write_map,
1966 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001967 memset (write_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001968 vec_len (wrk->wr_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001969 }
Dave Wallace7876d392017-10-19 03:53:57 -04001970 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04001971 {
Florin Coras134a9962018-08-28 11:32:04 -07001972 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05001973 clib_memcpy_fast (wrk->ex_bitmap, except_map,
1974 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001975 memset (except_map, 0,
Florin Coras134a9962018-08-28 11:32:04 -07001976 vec_len (wrk->ex_bitmap) * sizeof (clib_bitmap_t));
Dave Wallace543852a2017-08-03 02:11:34 -04001977 }
1978
Florin Coras54693d22018-07-17 10:46:29 -07001979 if (!n_bits)
1980 return 0;
1981
1982 if (!write_map)
1983 goto check_rd;
1984
1985 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07001986 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
1987 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07001988 {
Florin Coras54693d22018-07-17 10:46:29 -07001989 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
1990 getpid (), sid);
1991 return VPPCOM_EBADFD;
1992 }
1993
1994 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07001995 if (!rv)
1996 {
1997 clib_bitmap_set_no_check (write_map, sid, 1);
1998 bits_set++;
1999 }
2000 }));
2001
2002check_rd:
2003 if (!read_map)
2004 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002005
Florin Coras134a9962018-08-28 11:32:04 -07002006 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2007 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002008 {
Florin Coras54693d22018-07-17 10:46:29 -07002009 VDBG (0, "VCL<%d>: session %d specified in write_map is closed.",
2010 getpid (), sid);
2011 return VPPCOM_EBADFD;
2012 }
2013
2014 rv = vppcom_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002015 if (rv)
2016 {
2017 clib_bitmap_set_no_check (read_map, sid, 1);
2018 bits_set++;
2019 }
2020 }));
2021 /* *INDENT-ON* */
2022
2023check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002024
Florin Coras86f04502018-09-12 16:08:01 -07002025 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2026 {
2027 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2028 read_map, write_map, except_map, &bits_set);
2029 }
2030 vec_reset_length (wrk->unhandled_evts_vector);
2031
Florin Coras99368312018-08-02 10:45:44 -07002032 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002033 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002034 time_to_wait, &bits_set);
2035 else
Florin Coras134a9962018-08-28 11:32:04 -07002036 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002037 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002038
Dave Wallace543852a2017-08-03 02:11:34 -04002039 return (bits_set);
2040}
2041
Dave Wallacef7f809c2017-10-03 01:48:42 -04002042static inline void
Florin Coras134a9962018-08-28 11:32:04 -07002043vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002044{
Florin Coras7e12d942018-06-27 14:32:43 -07002045 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002046 vppcom_epoll_t *vep;
Dave Wallace498b3a52017-11-09 13:00:34 -05002047 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002048
Dave Wallace498b3a52017-11-09 13:00:34 -05002049 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002050 return;
2051
2052 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Florin Coras134a9962018-08-28 11:32:04 -07002053 session = vcl_session_get (wrk, vep_idx);
Florin Coras070453d2018-08-24 17:04:27 -07002054 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002055 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002056 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
2057 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002058 goto done;
2059 }
2060 if (PREDICT_FALSE (!session->is_vep))
2061 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002062 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2063 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002064 goto done;
2065 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002066 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05002067 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002068 "{\n"
2069 " is_vep = %u\n"
2070 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002071 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002072 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002073 "}\n", getpid (), vep_idx,
2074 session->is_vep, session->is_vep_session,
Florin Coras134a9962018-08-28 11:32:04 -07002075 vep->next_sh, vep->next_sh,
Dave Wallace498b3a52017-11-09 13:00:34 -05002076 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002077
Florin Coras134a9962018-08-28 11:32:04 -07002078 for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002079 {
Florin Coras134a9962018-08-28 11:32:04 -07002080 session = vcl_session_get (wrk, sid);
Florin Coras070453d2018-08-24 17:04:27 -07002081 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002082 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002083 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002084 goto done;
2085 }
2086 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05002087 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
2088 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002089 else if (PREDICT_FALSE (!session->is_vep_session))
2090 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002091 clib_warning ("VCL<%d>: ERROR: session (%u) "
2092 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002093 goto done;
2094 }
2095 vep = &session->vep;
Florin Coras134a9962018-08-28 11:32:04 -07002096 if (PREDICT_FALSE (vep->vep_sh != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05002097 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002098 "vep_idx (%u)!", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002099 sid, session->vep.vep_sh, vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002100 if (session->is_vep_session)
2101 {
2102 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
2103 "{\n"
2104 " next_sid = 0x%x (%u)\n"
2105 " prev_sid = 0x%x (%u)\n"
2106 " vep_idx = 0x%x (%u)\n"
2107 " ev.events = 0x%x\n"
2108 " ev.data.u64 = 0x%llx\n"
2109 " et_mask = 0x%x\n"
2110 "}\n",
2111 vep_idx, sid, sid,
Florin Coras134a9962018-08-28 11:32:04 -07002112 vep->next_sh, vep->next_sh,
2113 vep->prev_sh, vep->prev_sh,
2114 vep->vep_sh, vep->vep_sh,
Dave Wallace4878cbe2017-11-21 03:45:09 -05002115 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002116 }
2117 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002118
2119done:
Dave Wallace048b1d62018-01-03 22:24:41 -05002120 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
2121 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002122}
2123
2124int
2125vppcom_epoll_create (void)
2126{
Florin Coras134a9962018-08-28 11:32:04 -07002127 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002128 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002129
Florin Coras134a9962018-08-28 11:32:04 -07002130 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002131
2132 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002133 vep_session->vep.vep_sh = ~0;
2134 vep_session->vep.next_sh = ~0;
2135 vep_session->vep.prev_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002136 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002137 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002138
Florin Coras134a9962018-08-28 11:32:04 -07002139 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_sh);
Florin Coras0d427d82018-06-27 03:24:07 -07002140 VDBG (0, "VCL<%d>: Created vep_idx %u / sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002141 getpid (), vep_session->session_index, vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002142
Florin Corasab2f6db2018-08-31 14:31:41 -07002143 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002144}
2145
2146int
Florin Coras134a9962018-08-28 11:32:04 -07002147vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002148 struct epoll_event *event)
2149{
Florin Coras134a9962018-08-28 11:32:04 -07002150 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002151 vcl_session_t *vep_session;
2152 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002153 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002154
Florin Coras134a9962018-08-28 11:32:04 -07002155 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002156 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002157 clib_warning ("VCL<%d>: ERROR: vep_idx == session_index (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002158 getpid (), vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002159 return VPPCOM_EINVAL;
2160 }
2161
Florin Coras134a9962018-08-28 11:32:04 -07002162 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002163 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002164 {
Florin Coras134a9962018-08-28 11:32:04 -07002165 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002166 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002167 }
2168 if (PREDICT_FALSE (!vep_session->is_vep))
2169 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002170 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002171 getpid (), vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002172 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002173 }
2174
Florin Coras134a9962018-08-28 11:32:04 -07002175 ASSERT (vep_session->vep.vep_sh == ~0);
2176 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002177
Florin Coras134a9962018-08-28 11:32:04 -07002178 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002179 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002180 {
Florin Coras134a9962018-08-28 11:32:04 -07002181 VDBG (0, "VCL<%d>: ERROR: Invalid session_handle (%u)!",
2182 getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002183 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002184 }
2185 if (PREDICT_FALSE (session->is_vep))
2186 {
Florin Coras134a9962018-08-28 11:32:04 -07002187 clib_warning ("ERROR: session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002188 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002189 }
2190
2191 switch (op)
2192 {
2193 case EPOLL_CTL_ADD:
2194 if (PREDICT_FALSE (!event))
2195 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002196 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002197 "epoll_event structure!", getpid ());
Florin Coras070453d2018-08-24 17:04:27 -07002198 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002199 }
Florin Coras134a9962018-08-28 11:32:04 -07002200 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002201 {
Florin Coras7e12d942018-06-27 14:32:43 -07002202 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002203 next_session = vcl_session_get_w_handle (wrk,
2204 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002205 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002206 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002207 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_ADD: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002208 "vep.next_sid (%u) on vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002209 getpid (), vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002210 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002211 }
Florin Coras134a9962018-08-28 11:32:04 -07002212 ASSERT (next_session->vep.prev_sh == vep_handle);
2213 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002214 }
Florin Coras134a9962018-08-28 11:32:04 -07002215 session->vep.next_sh = vep_session->vep.next_sh;
2216 session->vep.prev_sh = vep_handle;
2217 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002218 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2219 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002220 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002221 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002222 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002223
Florin Coras070453d2018-08-24 17:04:27 -07002224 VDBG (1, "VCL<%d>: EPOLL_CTL_ADD: vep_idx %u, sid %u, events 0x%x, "
Florin Coras134a9962018-08-28 11:32:04 -07002225 "data 0x%llx!", getpid (), vep_handle, session_handle,
2226 event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002227 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002228 break;
2229
2230 case EPOLL_CTL_MOD:
2231 if (PREDICT_FALSE (!event))
2232 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002233 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_MOD: NULL pointer to "
Dave Wallace2e005bb2017-11-07 01:21:39 -05002234 "epoll_event structure!", getpid ());
Dave Wallacef7f809c2017-10-03 01:48:42 -04002235 rv = VPPCOM_EINVAL;
2236 goto done;
2237 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002238 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002239 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002240 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Florin Coras134a9962018-08-28 11:32:04 -07002241 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002242 rv = VPPCOM_EINVAL;
2243 goto done;
2244 }
Florin Coras134a9962018-08-28 11:32:04 -07002245 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002246 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002247 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_MOD: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002248 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002249 getpid (), session_handle,
2250 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002251 rv = VPPCOM_EINVAL;
2252 goto done;
2253 }
2254 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2255 session->vep.ev = *event;
Florin Coras0d427d82018-06-27 03:24:07 -07002256 VDBG (1, "VCL<%d>: EPOLL_CTL_MOD: vep_idx %u, sid %u, events 0x%x,"
Florin Coras134a9962018-08-28 11:32:04 -07002257 " data 0x%llx!", getpid (), vep_handle, session_handle,
2258 event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002259 break;
2260
2261 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002262 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002263 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002264 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Florin Coras134a9962018-08-28 11:32:04 -07002265 "not a vep session!", getpid (), session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002266 rv = VPPCOM_EINVAL;
2267 goto done;
2268 }
Florin Coras134a9962018-08-28 11:32:04 -07002269 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002270 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002271 clib_warning ("VCL<%d>: ERROR: sid %u EPOLL_CTL_DEL: "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002272 "vep_idx (%u) != vep_idx (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002273 getpid (), session_handle,
2274 session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002275 rv = VPPCOM_EINVAL;
2276 goto done;
2277 }
2278
2279 vep_session->wait_cont_idx =
Florin Coras134a9962018-08-28 11:32:04 -07002280 (vep_session->wait_cont_idx == session_handle) ?
2281 session->vep.next_sh : vep_session->wait_cont_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002282
Florin Coras134a9962018-08-28 11:32:04 -07002283 if (session->vep.prev_sh == vep_handle)
2284 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002285 else
2286 {
Florin Coras7e12d942018-06-27 14:32:43 -07002287 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002288 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002289 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002290 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002291 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002292 "vep.prev_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002293 getpid (), session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002294 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002295 }
Florin Coras134a9962018-08-28 11:32:04 -07002296 ASSERT (prev_session->vep.next_sh == session_handle);
2297 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002298 }
Florin Coras134a9962018-08-28 11:32:04 -07002299 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002300 {
Florin Coras7e12d942018-06-27 14:32:43 -07002301 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002302 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002303 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002304 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002305 clib_warning ("VCL<%d>: ERROR: EPOLL_CTL_DEL: Invalid "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002306 "vep.next_sid (%u) on sid (%u)!",
Florin Coras134a9962018-08-28 11:32:04 -07002307 getpid (), session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002308 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002309 }
Florin Coras134a9962018-08-28 11:32:04 -07002310 ASSERT (next_session->vep.prev_sh == session_handle);
2311 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002312 }
2313
2314 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002315 session->vep.next_sh = ~0;
2316 session->vep.prev_sh = ~0;
2317 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002318 session->is_vep_session = 0;
Florin Coras0d427d82018-06-27 03:24:07 -07002319 VDBG (1, "VCL<%d>: EPOLL_CTL_DEL: vep_idx %u, sid %u!",
Florin Coras134a9962018-08-28 11:32:04 -07002320 getpid (), vep_handle, session_handle);
2321 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002322 break;
2323
2324 default:
Dave Wallace048b1d62018-01-03 22:24:41 -05002325 clib_warning ("VCL<%d>: ERROR: Invalid operation (%d)!", getpid (), op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002326 rv = VPPCOM_EINVAL;
2327 }
2328
Florin Coras134a9962018-08-28 11:32:04 -07002329 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002330
2331done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002332 return rv;
2333}
2334
Florin Coras86f04502018-09-12 16:08:01 -07002335static inline void
2336vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2337 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002338{
2339 session_disconnected_msg_t *disconnected_msg;
2340 session_connected_msg_t *connected_msg;
2341 session_accepted_msg_t *accepted_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002342 u64 session_evt_data = ~0, handle;
Florin Coras99368312018-08-02 10:45:44 -07002343 u32 sid = ~0, session_events;
Florin Coras54693d22018-07-17 10:46:29 -07002344 vcl_session_msg_t *vcl_msg;
2345 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002346 u8 add_event = 0;
2347
2348 switch (e->event_type)
2349 {
2350 case FIFO_EVENT_APP_RX:
2351 ASSERT (e->fifo->client_thread_index == vcl_get_worker_index ());
2352 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2353 sid = e->fifo->client_session_index;
2354 session = vcl_session_get (wrk, sid);
2355 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002356 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002357 break;
2358 add_event = 1;
2359 events[*num_ev].events |= EPOLLIN;
2360 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002361 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002362 break;
2363 case FIFO_EVENT_APP_TX:
2364 sid = e->fifo->client_session_index;
2365 session = vcl_session_get (wrk, sid);
2366 session_events = session->vep.ev.events;
2367 if (!(EPOLLOUT & session_events))
2368 break;
2369 add_event = 1;
2370 events[*num_ev].events |= EPOLLOUT;
2371 session_evt_data = session->vep.ev.data.u64;
2372 break;
2373 case SESSION_IO_EVT_CT_TX:
2374 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2375 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
2376 sid = session->session_index;
2377 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002378 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002379 break;
2380 add_event = 1;
2381 events[*num_ev].events |= EPOLLIN;
2382 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002383 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002384 break;
2385 case SESSION_IO_EVT_CT_RX:
2386 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
2387 sid = session->session_index;
2388 session_events = session->vep.ev.events;
2389 if (!(EPOLLOUT & session_events))
2390 break;
2391 add_event = 1;
2392 events[*num_ev].events |= EPOLLOUT;
2393 session_evt_data = session->vep.ev.data.u64;
2394 break;
2395 case SESSION_CTRL_EVT_ACCEPTED:
2396 accepted_msg = (session_accepted_msg_t *) e->data;
2397 handle = accepted_msg->listener_handle;
2398 session = vcl_session_table_lookup_listener (wrk, handle);
2399 if (!session)
2400 {
2401 clib_warning ("VCL<%d>: ERROR: couldn't find listen session:"
2402 "listener handle %llx", getpid (), handle);
2403 break;
2404 }
2405
2406 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
2407 vcl_msg->accepted_msg = *accepted_msg;
2408 session_events = session->vep.ev.events;
2409 if (!(EPOLLIN & session_events))
2410 break;
2411
2412 add_event = 1;
2413 events[*num_ev].events |= EPOLLIN;
2414 session_evt_data = session->vep.ev.data.u64;
2415 break;
2416 case SESSION_CTRL_EVT_CONNECTED:
2417 connected_msg = (session_connected_msg_t *) e->data;
2418 vcl_session_connected_handler (wrk, connected_msg);
2419 /* Generate EPOLLOUT because there's no connected event */
2420 sid = vcl_session_index_from_vpp_handle (wrk, connected_msg->handle);
2421 session = vcl_session_get (wrk, sid);
2422 session_events = session->vep.ev.events;
2423 if (EPOLLOUT & session_events)
2424 {
2425 add_event = 1;
2426 events[*num_ev].events |= EPOLLOUT;
2427 session_evt_data = session->vep.ev.data.u64;
2428 }
2429 break;
2430 case SESSION_CTRL_EVT_DISCONNECTED:
2431 disconnected_msg = (session_disconnected_msg_t *) e->data;
2432 sid = vcl_session_index_from_vpp_handle (wrk, disconnected_msg->handle);
2433 if (!(session = vcl_session_get (wrk, sid)))
2434 break;
2435 add_event = 1;
2436 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2437 session_evt_data = session->vep.ev.data.u64;
2438 session_events = session->vep.ev.events;
2439 break;
2440 case SESSION_CTRL_EVT_RESET:
2441 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2442 if (!(session = vcl_session_get (wrk, sid)))
2443 break;
2444 add_event = 1;
2445 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2446 session_evt_data = session->vep.ev.data.u64;
2447 session_events = session->vep.ev.events;
2448 break;
2449 default:
2450 VDBG (0, "unhandled: %u", e->event_type);
2451 break;
2452 }
2453
2454 if (add_event)
2455 {
2456 events[*num_ev].data.u64 = session_evt_data;
2457 if (EPOLLONESHOT & session_events)
2458 {
2459 session = vcl_session_get (wrk, sid);
2460 session->vep.ev.events = 0;
2461 }
2462 *num_ev += 1;
2463 }
2464}
2465
2466static int
2467vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2468 struct epoll_event *events, u32 maxevents,
2469 double wait_for_time, u32 * num_ev)
2470{
Florin Coras99368312018-08-02 10:45:44 -07002471 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002472 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002473 int i;
2474
Florin Coras539663c2018-09-28 14:59:37 -07002475 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2476 goto handle_dequeued;
2477
Florin Coras54693d22018-07-17 10:46:29 -07002478 svm_msg_q_lock (mq);
2479 if (svm_msg_q_is_empty (mq))
2480 {
2481 if (!wait_for_time)
2482 {
2483 svm_msg_q_unlock (mq);
2484 return 0;
2485 }
2486 else if (wait_for_time < 0)
2487 {
2488 svm_msg_q_wait (mq);
2489 }
2490 else
2491 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002492 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002493 {
2494 svm_msg_q_unlock (mq);
2495 return 0;
2496 }
2497 }
2498 }
Florin Coras134a9962018-08-28 11:32:04 -07002499 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002500 svm_msg_q_unlock (mq);
2501
Florin Coras539663c2018-09-28 14:59:37 -07002502handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002503 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002504 {
Florin Coras134a9962018-08-28 11:32:04 -07002505 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002506 e = svm_msg_q_msg_data (mq, msg);
Florin Corasaa27eb92018-10-13 12:20:01 -07002507 if (*num_ev < maxevents)
2508 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2509 else
2510 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras99368312018-08-02 10:45:44 -07002511 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002512 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002513 vec_reset_length (wrk->mq_msg_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002514
Florin Coras54693d22018-07-17 10:46:29 -07002515 return *num_ev;
2516}
2517
Florin Coras99368312018-08-02 10:45:44 -07002518static int
Florin Coras134a9962018-08-28 11:32:04 -07002519vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002520 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002521{
2522 vcl_cut_through_registration_t *cr;
2523 double total_wait = 0, wait_slice;
Florin Coras99368312018-08-02 10:45:44 -07002524 int rv;
2525
2526 wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
Florin Coras134a9962018-08-28 11:32:04 -07002527 wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
Florin Coras99368312018-08-02 10:45:44 -07002528
2529 do
2530 {
Florin Coras134a9962018-08-28 11:32:04 -07002531 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002532 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002533 pool_foreach (cr, wrk->cut_through_registrations, ({
Florin Coras86f04502018-09-12 16:08:01 -07002534 vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002535 }));
2536 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002537 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002538
Florin Coras134a9962018-08-28 11:32:04 -07002539 rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
Florin Coras86f04502018-09-12 16:08:01 -07002540 maxevents, n_evts ? 0 : wait_slice,
2541 &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002542 if (rv)
2543 total_wait += wait_slice;
Florin Coras86f04502018-09-12 16:08:01 -07002544 if (n_evts)
2545 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002546 }
2547 while (total_wait < wait_for_time);
Florin Coras86f04502018-09-12 16:08:01 -07002548 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002549}
2550
2551static int
Florin Coras134a9962018-08-28 11:32:04 -07002552vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002553 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002554{
2555 vcl_mq_evt_conn_t *mqc;
2556 int __clib_unused n_read;
2557 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002558 u64 buf;
2559
Florin Coras134a9962018-08-28 11:32:04 -07002560 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002561again:
Florin Coras134a9962018-08-28 11:32:04 -07002562 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2563 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002564 for (i = 0; i < n_mq_evts; i++)
2565 {
Florin Coras134a9962018-08-28 11:32:04 -07002566 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002567 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002568 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002569 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002570 if (!n_evts && n_mq_evts > 0)
2571 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002572
2573 return (int) n_evts;
2574}
2575
Dave Wallacef7f809c2017-10-03 01:48:42 -04002576int
Florin Coras134a9962018-08-28 11:32:04 -07002577vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002578 int maxevents, double wait_for_time)
2579{
Florin Coras134a9962018-08-28 11:32:04 -07002580 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002581 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002582 u32 n_evts = 0;
2583 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002584
2585 if (PREDICT_FALSE (maxevents <= 0))
2586 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002587 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002588 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002589 return VPPCOM_EINVAL;
2590 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591
Florin Coras134a9962018-08-28 11:32:04 -07002592 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002593 if (!vep_session)
2594 return VPPCOM_EBADFD;
2595
Florin Coras54693d22018-07-17 10:46:29 -07002596 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002597 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002598 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002599 getpid (), vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002600 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002601 }
Florin Coras54693d22018-07-17 10:46:29 -07002602
2603 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002604
Florin Coras86f04502018-09-12 16:08:01 -07002605 if (vec_len (wrk->unhandled_evts_vector))
2606 {
2607 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2608 {
2609 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2610 events, &n_evts);
2611 if (n_evts == maxevents)
2612 {
2613 i += 1;
2614 break;
2615 }
2616 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002617
Florin Coras86f04502018-09-12 16:08:01 -07002618 vec_delete (wrk->unhandled_evts_vector, i, 0);
2619 }
2620
2621 if (vcm->cfg.use_mq_eventfd)
2622 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2623 wait_for_time);
2624
2625 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2626 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002627}
2628
Dave Wallace35830af2017-10-09 01:43:42 -04002629int
Florin Coras134a9962018-08-28 11:32:04 -07002630vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002631 void *buffer, uint32_t * buflen)
2632{
Florin Coras134a9962018-08-28 11:32:04 -07002633 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002634 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002635 int rv = VPPCOM_OK;
2636 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002637 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002638
Florin Coras134a9962018-08-28 11:32:04 -07002639 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002640 if (!session)
2641 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002642
Dave Wallace35830af2017-10-09 01:43:42 -04002643 switch (op)
2644 {
2645 case VPPCOM_ATTR_GET_NREAD:
Florin Coras54693d22018-07-17 10:46:29 -07002646 rv = vppcom_session_read_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002647 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2648 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002649 break;
2650
Dave Wallace227867f2017-11-13 21:21:53 -05002651 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras134a9962018-08-28 11:32:04 -07002652 rv = vppcom_session_write_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002653 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
Florin Coras134a9962018-08-28 11:32:04 -07002654 getpid (), session_handle, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002655 break;
2656
2657 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002658 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002659 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002660 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2661 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002662 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002663 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2664 "is_nonblocking = %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002665 session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002666 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002667 }
2668 else
2669 rv = VPPCOM_EINVAL;
2670 break;
2671
2672 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002673 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002674 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002675 if (*flags & O_NONBLOCK)
2676 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2677 else
2678 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2679
Florin Coras0d427d82018-06-27 03:24:07 -07002680 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2681 " is_nonblocking = %u",
Florin Coras134a9962018-08-28 11:32:04 -07002682 getpid (), session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002683 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002684 }
2685 else
2686 rv = VPPCOM_EINVAL;
2687 break;
2688
2689 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002690 if (PREDICT_TRUE (buffer && buflen &&
2691 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002692 {
Florin Coras7e12d942018-06-27 14:32:43 -07002693 ep->is_ip4 = session->transport.is_ip4;
2694 ep->port = session->transport.rmt_port;
2695 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002696 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2697 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002698 else
Dave Barach178cf492018-11-13 16:34:13 -05002699 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2700 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002701 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002702 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2703 "addr = %U, port %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002704 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002705 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002706 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2707 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002708 }
2709 else
2710 rv = VPPCOM_EINVAL;
2711 break;
2712
2713 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002714 if (PREDICT_TRUE (buffer && buflen &&
2715 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002716 {
Florin Coras7e12d942018-06-27 14:32:43 -07002717 ep->is_ip4 = session->transport.is_ip4;
2718 ep->port = session->transport.lcl_port;
2719 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002720 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
2721 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002722 else
Dave Barach178cf492018-11-13 16:34:13 -05002723 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
2724 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002725 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002726 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2727 " addr = %U port %d", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002728 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002729 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002730 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2731 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002732 }
2733 else
2734 rv = VPPCOM_EINVAL;
2735 break;
Stevenb5a11602017-10-11 09:59:30 -07002736
Dave Wallace048b1d62018-01-03 22:24:41 -05002737 case VPPCOM_ATTR_GET_LIBC_EPFD:
2738 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002739 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2740 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002741 break;
2742
2743 case VPPCOM_ATTR_SET_LIBC_EPFD:
2744 if (PREDICT_TRUE (buffer && buflen &&
2745 (*buflen == sizeof (session->libc_epfd))))
2746 {
2747 session->libc_epfd = *(int *) buffer;
2748 *buflen = sizeof (session->libc_epfd);
2749
Florin Coras0d427d82018-06-27 03:24:07 -07002750 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2751 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002752 }
2753 else
2754 rv = VPPCOM_EINVAL;
2755 break;
2756
2757 case VPPCOM_ATTR_GET_PROTOCOL:
2758 if (buffer && buflen && (*buflen >= sizeof (int)))
2759 {
Florin Coras7e12d942018-06-27 14:32:43 -07002760 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002761 *buflen = sizeof (int);
2762
Florin Coras0d427d82018-06-27 03:24:07 -07002763 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2764 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2765 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002766 }
2767 else
2768 rv = VPPCOM_EINVAL;
2769 break;
2770
2771 case VPPCOM_ATTR_GET_LISTEN:
2772 if (buffer && buflen && (*buflen >= sizeof (int)))
2773 {
2774 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2775 VCL_SESS_ATTR_LISTEN);
2776 *buflen = sizeof (int);
2777
Florin Coras0d427d82018-06-27 03:24:07 -07002778 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2779 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002780 }
2781 else
2782 rv = VPPCOM_EINVAL;
2783 break;
2784
2785 case VPPCOM_ATTR_GET_ERROR:
2786 if (buffer && buflen && (*buflen >= sizeof (int)))
2787 {
2788 *(int *) buffer = 0;
2789 *buflen = sizeof (int);
2790
Florin Coras0d427d82018-06-27 03:24:07 -07002791 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2792 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002793 }
2794 else
2795 rv = VPPCOM_EINVAL;
2796 break;
2797
2798 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2799 if (buffer && buflen && (*buflen >= sizeof (u32)))
2800 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002801
2802 /* VPP-TBD */
2803 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002804 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002805 vcm->cfg.tx_fifo_size);
2806 *buflen = sizeof (u32);
2807
Florin Coras0d427d82018-06-27 03:24:07 -07002808 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2809 "buflen %d, #VPP-TBD#", getpid (),
2810 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002811 }
2812 else
2813 rv = VPPCOM_EINVAL;
2814 break;
2815
2816 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2817 if (buffer && buflen && (*buflen == sizeof (u32)))
2818 {
2819 /* VPP-TBD */
2820 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002821 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2822 "buflen %d, #VPP-TBD#", getpid (),
2823 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002824 }
2825 else
2826 rv = VPPCOM_EINVAL;
2827 break;
2828
2829 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2830 if (buffer && buflen && (*buflen >= sizeof (u32)))
2831 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002832
2833 /* VPP-TBD */
2834 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002835 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002836 vcm->cfg.rx_fifo_size);
2837 *buflen = sizeof (u32);
2838
Florin Coras0d427d82018-06-27 03:24:07 -07002839 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2840 "buflen %d, #VPP-TBD#", getpid (),
2841 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002842 }
2843 else
2844 rv = VPPCOM_EINVAL;
2845 break;
2846
2847 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2848 if (buffer && buflen && (*buflen == sizeof (u32)))
2849 {
2850 /* VPP-TBD */
2851 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002852 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2853 "buflen %d, #VPP-TBD#", getpid (),
2854 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002855 }
2856 else
2857 rv = VPPCOM_EINVAL;
2858 break;
2859
2860 case VPPCOM_ATTR_GET_REUSEADDR:
2861 if (buffer && buflen && (*buflen >= sizeof (int)))
2862 {
2863 /* VPP-TBD */
2864 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2865 VCL_SESS_ATTR_REUSEADDR);
2866 *buflen = sizeof (int);
2867
Florin Coras0d427d82018-06-27 03:24:07 -07002868 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2869 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002870 }
2871 else
2872 rv = VPPCOM_EINVAL;
2873 break;
2874
Stevenb5a11602017-10-11 09:59:30 -07002875 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002876 if (buffer && buflen && (*buflen == sizeof (int)) &&
2877 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2878 {
2879 /* VPP-TBD */
2880 if (*(int *) buffer)
2881 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2882 else
2883 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
2884
Florin Coras0d427d82018-06-27 03:24:07 -07002885 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
2886 " #VPP-TBD#", getpid (),
2887 VCL_SESS_ATTR_TEST (session->attr,
2888 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002889 }
2890 else
2891 rv = VPPCOM_EINVAL;
2892 break;
2893
2894 case VPPCOM_ATTR_GET_REUSEPORT:
2895 if (buffer && buflen && (*buflen >= sizeof (int)))
2896 {
2897 /* VPP-TBD */
2898 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2899 VCL_SESS_ATTR_REUSEPORT);
2900 *buflen = sizeof (int);
2901
Florin Coras0d427d82018-06-27 03:24:07 -07002902 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
2903 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002904 }
2905 else
2906 rv = VPPCOM_EINVAL;
2907 break;
2908
2909 case VPPCOM_ATTR_SET_REUSEPORT:
2910 if (buffer && buflen && (*buflen == sizeof (int)) &&
2911 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2912 {
2913 /* VPP-TBD */
2914 if (*(int *) buffer)
2915 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
2916 else
2917 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
2918
Florin Coras0d427d82018-06-27 03:24:07 -07002919 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
2920 " #VPP-TBD#", getpid (),
2921 VCL_SESS_ATTR_TEST (session->attr,
2922 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002923 }
2924 else
2925 rv = VPPCOM_EINVAL;
2926 break;
2927
2928 case VPPCOM_ATTR_GET_BROADCAST:
2929 if (buffer && buflen && (*buflen >= sizeof (int)))
2930 {
2931 /* VPP-TBD */
2932 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2933 VCL_SESS_ATTR_BROADCAST);
2934 *buflen = sizeof (int);
2935
Florin Coras0d427d82018-06-27 03:24:07 -07002936 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
2937 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002938 }
2939 else
2940 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002941 break;
2942
2943 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05002944 if (buffer && buflen && (*buflen == sizeof (int)))
2945 {
2946 /* VPP-TBD */
2947 if (*(int *) buffer)
2948 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
2949 else
2950 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
2951
Florin Coras0d427d82018-06-27 03:24:07 -07002952 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
2953 "#VPP-TBD#", getpid (),
2954 VCL_SESS_ATTR_TEST (session->attr,
2955 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002956 }
2957 else
2958 rv = VPPCOM_EINVAL;
2959 break;
2960
2961 case VPPCOM_ATTR_GET_V6ONLY:
2962 if (buffer && buflen && (*buflen >= sizeof (int)))
2963 {
2964 /* VPP-TBD */
2965 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2966 VCL_SESS_ATTR_V6ONLY);
2967 *buflen = sizeof (int);
2968
Florin Coras0d427d82018-06-27 03:24:07 -07002969 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
2970 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002971 }
2972 else
2973 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07002974 break;
2975
2976 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05002977 if (buffer && buflen && (*buflen == sizeof (int)))
2978 {
2979 /* VPP-TBD */
2980 if (*(int *) buffer)
2981 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
2982 else
2983 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
2984
Florin Coras0d427d82018-06-27 03:24:07 -07002985 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
2986 "#VPP-TBD#", getpid (),
2987 VCL_SESS_ATTR_TEST (session->attr,
2988 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002989 }
2990 else
2991 rv = VPPCOM_EINVAL;
2992 break;
2993
2994 case VPPCOM_ATTR_GET_KEEPALIVE:
2995 if (buffer && buflen && (*buflen >= sizeof (int)))
2996 {
2997 /* VPP-TBD */
2998 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2999 VCL_SESS_ATTR_KEEPALIVE);
3000 *buflen = sizeof (int);
3001
Florin Coras0d427d82018-06-27 03:24:07 -07003002 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
3003 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003004 }
3005 else
3006 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003007 break;
Stevenbccd3392017-10-12 20:42:21 -07003008
3009 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003010 if (buffer && buflen && (*buflen == sizeof (int)))
3011 {
3012 /* VPP-TBD */
3013 if (*(int *) buffer)
3014 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3015 else
3016 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3017
Florin Coras0d427d82018-06-27 03:24:07 -07003018 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
3019 "#VPP-TBD#", getpid (),
3020 VCL_SESS_ATTR_TEST (session->attr,
3021 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003022 }
3023 else
3024 rv = VPPCOM_EINVAL;
3025 break;
3026
3027 case VPPCOM_ATTR_GET_TCP_NODELAY:
3028 if (buffer && buflen && (*buflen >= sizeof (int)))
3029 {
3030 /* VPP-TBD */
3031 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3032 VCL_SESS_ATTR_TCP_NODELAY);
3033 *buflen = sizeof (int);
3034
Florin Coras0d427d82018-06-27 03:24:07 -07003035 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
3036 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003037 }
3038 else
3039 rv = VPPCOM_EINVAL;
3040 break;
3041
3042 case VPPCOM_ATTR_SET_TCP_NODELAY:
3043 if (buffer && buflen && (*buflen == sizeof (int)))
3044 {
3045 /* VPP-TBD */
3046 if (*(int *) buffer)
3047 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3048 else
3049 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3050
Florin Coras0d427d82018-06-27 03:24:07 -07003051 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
3052 "#VPP-TBD#", getpid (),
3053 VCL_SESS_ATTR_TEST (session->attr,
3054 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003055 }
3056 else
3057 rv = VPPCOM_EINVAL;
3058 break;
3059
3060 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3061 if (buffer && buflen && (*buflen >= sizeof (int)))
3062 {
3063 /* VPP-TBD */
3064 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3065 VCL_SESS_ATTR_TCP_KEEPIDLE);
3066 *buflen = sizeof (int);
3067
Florin Coras0d427d82018-06-27 03:24:07 -07003068 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
3069 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003070 }
3071 else
3072 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003073 break;
3074
3075 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003076 if (buffer && buflen && (*buflen == sizeof (int)))
3077 {
3078 /* VPP-TBD */
3079 if (*(int *) buffer)
3080 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3081 else
3082 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3083
Florin Coras0d427d82018-06-27 03:24:07 -07003084 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
3085 "#VPP-TBD#", getpid (),
3086 VCL_SESS_ATTR_TEST (session->attr,
3087 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003088 }
3089 else
3090 rv = VPPCOM_EINVAL;
3091 break;
3092
3093 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3094 if (buffer && buflen && (*buflen >= sizeof (int)))
3095 {
3096 /* VPP-TBD */
3097 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3098 VCL_SESS_ATTR_TCP_KEEPINTVL);
3099 *buflen = sizeof (int);
3100
Florin Coras0d427d82018-06-27 03:24:07 -07003101 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
3102 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003103 }
3104 else
3105 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003106 break;
3107
3108 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003109 if (buffer && buflen && (*buflen == sizeof (int)))
3110 {
3111 /* VPP-TBD */
3112 if (*(int *) buffer)
3113 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3114 else
3115 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3116
Florin Coras0d427d82018-06-27 03:24:07 -07003117 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
3118 "#VPP-TBD#", getpid (),
3119 VCL_SESS_ATTR_TEST (session->attr,
3120 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003121 }
3122 else
3123 rv = VPPCOM_EINVAL;
3124 break;
3125
3126 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3127 if (buffer && buflen && (*buflen >= sizeof (u32)))
3128 {
3129 /* VPP-TBD */
3130 *(u32 *) buffer = session->user_mss;
3131 *buflen = sizeof (int);
3132
Florin Coras0d427d82018-06-27 03:24:07 -07003133 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3134 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003135 }
3136 else
3137 rv = VPPCOM_EINVAL;
3138 break;
3139
3140 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3141 if (buffer && buflen && (*buflen == sizeof (u32)))
3142 {
3143 /* VPP-TBD */
3144 session->user_mss = *(u32 *) buffer;
3145
Florin Coras0d427d82018-06-27 03:24:07 -07003146 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3147 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003148 }
3149 else
3150 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003151 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003152
3153 default:
3154 rv = VPPCOM_EINVAL;
3155 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003156 }
3157
Dave Wallace35830af2017-10-09 01:43:42 -04003158 return rv;
3159}
3160
Stevenac1f96d2017-10-24 16:03:58 -07003161int
Florin Coras134a9962018-08-28 11:32:04 -07003162vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003163 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3164{
Florin Coras134a9962018-08-28 11:32:04 -07003165 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003166 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003167 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003168
3169 if (ep)
3170 {
Florin Coras134a9962018-08-28 11:32:04 -07003171 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003172 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003173 {
Florin Coras0d427d82018-06-27 03:24:07 -07003174 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
Florin Coras134a9962018-08-28 11:32:04 -07003175 getpid (), session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003176 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003177 }
Florin Coras7e12d942018-06-27 14:32:43 -07003178 ep->is_ip4 = session->transport.is_ip4;
3179 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003180 }
Steven58f464e2017-10-25 12:33:12 -07003181
3182 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003183 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003184 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003185 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003186 else
3187 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003188 clib_warning ("VCL<%d>: Unsupport flags for recvfrom %d",
3189 getpid (), flags);
Florin Coras460dce62018-07-27 05:45:06 -07003190 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003191 }
3192
Florin Coras99368312018-08-02 10:45:44 -07003193 if (ep)
3194 {
3195 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003196 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3197 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003198 else
Dave Barach178cf492018-11-13 16:34:13 -05003199 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3200 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003201 }
Florin Coras460dce62018-07-27 05:45:06 -07003202
Stevenac1f96d2017-10-24 16:03:58 -07003203 return rv;
3204}
3205
3206int
Florin Coras134a9962018-08-28 11:32:04 -07003207vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003208 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3209{
Dave Wallace617dffa2017-10-26 14:47:06 -04003210 if (!buffer)
3211 return VPPCOM_EINVAL;
3212
3213 if (ep)
3214 {
3215 // TBD
3216 return VPPCOM_EINVAL;
3217 }
3218
3219 if (flags)
3220 {
3221 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003222 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3223 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003224 }
3225
Florin Coras134a9962018-08-28 11:32:04 -07003226 return (vppcom_session_write (session_handle, buffer, buflen));
Stevenac1f96d2017-10-24 16:03:58 -07003227}
3228
Dave Wallace048b1d62018-01-03 22:24:41 -05003229int
3230vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3231{
Florin Coras134a9962018-08-28 11:32:04 -07003232 vcl_worker_t *wrk = vcl_worker_get_current ();
3233 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003234 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003235 svm_msg_q_msg_t msg;
3236 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003237 int rv, num_ev = 0;
3238
Florin Coras0d427d82018-06-27 03:24:07 -07003239 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3240 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003241
3242 if (!vp)
3243 return VPPCOM_EFAULT;
3244
3245 do
3246 {
Florin Coras7e12d942018-06-27 14:32:43 -07003247 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003248
Florin Coras6917b942018-11-13 22:44:54 -08003249 /* Dequeue all events and drop all unhandled io events */
3250 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3251 {
3252 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3253 vcl_handle_mq_event (wrk, e);
3254 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3255 }
3256 vec_reset_length (wrk->unhandled_evts_vector);
3257
Dave Wallace048b1d62018-01-03 22:24:41 -05003258 for (i = 0; i < n_sids; i++)
3259 {
Florin Coras134a9962018-08-28 11:32:04 -07003260 session = vcl_session_get (wrk, vp[i].sid);
Florin Coras070453d2018-08-24 17:04:27 -07003261 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003262 {
3263 vp[i].revents = POLLHUP;
3264 num_ev++;
3265 continue;
3266 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003267
Florin Coras6917b942018-11-13 22:44:54 -08003268 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003269
3270 if (POLLIN & vp[i].events)
3271 {
Florin Coras54693d22018-07-17 10:46:29 -07003272 rv = vppcom_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003273 if (rv > 0)
3274 {
Florin Coras6917b942018-11-13 22:44:54 -08003275 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003276 num_ev++;
3277 }
3278 else if (rv < 0)
3279 {
3280 switch (rv)
3281 {
3282 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003283 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003284 break;
3285
3286 default:
Florin Coras6917b942018-11-13 22:44:54 -08003287 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003288 break;
3289 }
3290 num_ev++;
3291 }
3292 }
3293
3294 if (POLLOUT & vp[i].events)
3295 {
Florin Coras134a9962018-08-28 11:32:04 -07003296 rv = vppcom_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003297 if (rv > 0)
3298 {
Florin Coras6917b942018-11-13 22:44:54 -08003299 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003300 num_ev++;
3301 }
3302 else if (rv < 0)
3303 {
3304 switch (rv)
3305 {
3306 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003307 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003308 break;
3309
3310 default:
Florin Coras6917b942018-11-13 22:44:54 -08003311 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003312 break;
3313 }
3314 num_ev++;
3315 }
3316 }
3317
Dave Wallace7e607a72018-06-18 18:41:32 -04003318 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003319 {
Florin Coras6917b942018-11-13 22:44:54 -08003320 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003321 num_ev++;
3322 }
3323 }
3324 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003325 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003326 }
3327 while ((num_ev == 0) && keep_trying);
3328
3329 if (VPPCOM_DEBUG > 3)
3330 {
3331 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3332 for (i = 0; i < n_sids; i++)
3333 {
3334 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3335 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
Florin Coras6917b942018-11-13 22:44:54 -08003336 vp[i].events, vp[i].revents);
Dave Wallace048b1d62018-01-03 22:24:41 -05003337 }
3338 }
3339 return num_ev;
3340}
3341
Florin Coras99368312018-08-02 10:45:44 -07003342int
3343vppcom_mq_epoll_fd (void)
3344{
Florin Coras134a9962018-08-28 11:32:04 -07003345 vcl_worker_t *wrk = vcl_worker_get_current ();
3346 return wrk->mqs_epfd;
3347}
3348
3349int
3350vppcom_session_index (uint32_t session_handle)
3351{
3352 return session_handle & 0xFFFFFF;
3353}
3354
3355int
3356vppcom_worker_register (void)
3357{
Florin Coras6d4bb422018-09-04 22:07:27 -07003358 if (vcl_worker_alloc_and_init ())
Florin Coras134a9962018-08-28 11:32:04 -07003359 return VPPCOM_OK;
3360 return VPPCOM_EEXIST;
Florin Coras99368312018-08-02 10:45:44 -07003361}
3362
Dave Wallacee22aa742017-10-20 12:30:38 -04003363/*
3364 * fd.io coding-style-patch-verification: ON
3365 *
3366 * Local Variables:
3367 * eval: (c-set-style "gnu")
3368 * End:
3369 */