blob: 3c3e15d146c9d4c4d955538d50f838d2d28cc74b [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 Corasd85de682018-11-29 17:02:29 -080025static int
26vcl_wait_for_segment (u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070027{
Florin Corasd85de682018-11-29 17:02:29 -080028 vcl_worker_t *wrk = vcl_worker_get_current ();
29 u32 wait_for_seconds = 10, segment_index;
30 f64 timeout;
Florin Coras54693d22018-07-17 10:46:29 -070031
Florin Corasd85de682018-11-29 17:02:29 -080032 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
Florin Coras5f45e012019-01-23 09:21:30 -080033 return 0;
Florin Coras54693d22018-07-17 10:46:29 -070034
Florin Corasd85de682018-11-29 17:02:29 -080035 timeout = clib_time_now (&wrk->clib_time) + wait_for_seconds;
36 while (clib_time_now (&wrk->clib_time) < timeout)
Florin Coras54693d22018-07-17 10:46:29 -070037 {
Florin Corasd85de682018-11-29 17:02:29 -080038 segment_index = vcl_segment_table_lookup (segment_handle);
39 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
40 return 0;
41 usleep (10);
Florin Coras54693d22018-07-17 10:46:29 -070042 }
Florin Corasd85de682018-11-29 17:02:29 -080043 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070044}
45
Florin Coras30e79c22019-01-02 19:31:22 -080046static inline int
47vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
48{
49 svm_msg_q_msg_t *msg;
50 u32 n_msgs;
51 int i;
52
53 n_msgs = svm_msg_q_size (mq);
54 for (i = 0; i < n_msgs; i++)
55 {
56 vec_add2 (wrk->mq_msg_vector, msg, 1);
57 svm_msg_q_sub_w_lock (mq, msg);
58 }
59 return n_msgs;
60}
61
Florin Coras697faea2018-06-27 17:10:49 -070062const char *
Dave Wallace543852a2017-08-03 02:11:34 -040063vppcom_session_state_str (session_state_t state)
64{
65 char *st;
66
67 switch (state)
68 {
69 case STATE_START:
70 st = "STATE_START";
71 break;
72
73 case STATE_CONNECT:
74 st = "STATE_CONNECT";
75 break;
76
77 case STATE_LISTEN:
78 st = "STATE_LISTEN";
79 break;
80
81 case STATE_ACCEPT:
82 st = "STATE_ACCEPT";
83 break;
84
Florin Coras3c7d4f92018-12-14 11:28:43 -080085 case STATE_VPP_CLOSING:
86 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050087 break;
88
Dave Wallace543852a2017-08-03 02:11:34 -040089 case STATE_DISCONNECT:
90 st = "STATE_DISCONNECT";
91 break;
92
93 case STATE_FAILED:
94 st = "STATE_FAILED";
95 break;
96
Florin Coras2d675d72019-01-28 15:54:27 -080097 case STATE_UPDATED:
98 st = "STATE_UPDATED";
99 break;
100
101 case STATE_LISTEN_NO_MQ:
102 st = "STATE_LISTEN_NO_MQ";
103 break;
104
Dave Wallace543852a2017-08-03 02:11:34 -0400105 default:
106 st = "UNKNOWN_STATE";
107 break;
108 }
109
110 return st;
111}
112
Dave Wallace543852a2017-08-03 02:11:34 -0400113u8 *
114format_ip4_address (u8 * s, va_list * args)
115{
116 u8 *a = va_arg (*args, u8 *);
117 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
118}
119
120u8 *
121format_ip6_address (u8 * s, va_list * args)
122{
123 ip6_address_t *a = va_arg (*args, ip6_address_t *);
124 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
125
126 i_max_n_zero = ARRAY_LEN (a->as_u16);
127 max_n_zeros = 0;
128 i_first_zero = i_max_n_zero;
129 n_zeros = 0;
130 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
131 {
132 u32 is_zero = a->as_u16[i] == 0;
133 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
134 {
135 i_first_zero = i;
136 n_zeros = 0;
137 }
138 n_zeros += is_zero;
139 if ((!is_zero && n_zeros > max_n_zeros)
140 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
141 {
142 i_max_n_zero = i_first_zero;
143 max_n_zeros = n_zeros;
144 i_first_zero = ARRAY_LEN (a->as_u16);
145 n_zeros = 0;
146 }
147 }
148
149 last_double_colon = 0;
150 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
151 {
152 if (i == i_max_n_zero && max_n_zeros > 1)
153 {
154 s = format (s, "::");
155 i += max_n_zeros - 1;
156 last_double_colon = 1;
157 }
158 else
159 {
160 s = format (s, "%s%x",
161 (last_double_colon || i == 0) ? "" : ":",
162 clib_net_to_host_u16 (a->as_u16[i]));
163 last_double_colon = 0;
164 }
165 }
166
167 return s;
168}
169
170/* Format an IP46 address. */
171u8 *
172format_ip46_address (u8 * s, va_list * args)
173{
174 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
175 ip46_type_t type = va_arg (*args, ip46_type_t);
176 int is_ip4 = 1;
177
178 switch (type)
179 {
180 case IP46_TYPE_ANY:
181 is_ip4 = ip46_address_is_ip4 (ip46);
182 break;
183 case IP46_TYPE_IP4:
184 is_ip4 = 1;
185 break;
186 case IP46_TYPE_IP6:
187 is_ip4 = 0;
188 break;
189 }
190
191 return is_ip4 ?
192 format (s, "%U", format_ip4_address, &ip46->ip4) :
193 format (s, "%U", format_ip6_address, &ip46->ip6);
194}
195
Florin Coras697faea2018-06-27 17:10:49 -0700196/*
197 * VPPCOM Utility Functions
198 */
199
Florin Coras697faea2018-06-27 17:10:49 -0700200
Florin Coras54693d22018-07-17 10:46:29 -0700201static void
202vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
203 session_handle_t handle, int retval)
204{
205 app_session_evt_t _app_evt, *app_evt = &_app_evt;
206 session_accepted_reply_msg_t *rmp;
207 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
208 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
209 rmp->handle = handle;
210 rmp->context = context;
211 rmp->retval = retval;
212 app_send_ctrl_evt_to_vpp (mq, app_evt);
213}
214
Florin Coras99368312018-08-02 10:45:44 -0700215static void
216vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
217 session_handle_t handle, int retval)
218{
219 app_session_evt_t _app_evt, *app_evt = &_app_evt;
220 session_disconnected_reply_msg_t *rmp;
221 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
222 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
223 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
224 rmp->handle = handle;
225 rmp->context = context;
226 rmp->retval = retval;
227 app_send_ctrl_evt_to_vpp (mq, app_evt);
228}
229
Florin Corasc9fbd662018-08-24 12:59:56 -0700230static void
231vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
232 session_handle_t handle, int retval)
233{
234 app_session_evt_t _app_evt, *app_evt = &_app_evt;
235 session_reset_reply_msg_t *rmp;
236 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
237 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
238 rmp->handle = handle;
239 rmp->context = context;
240 rmp->retval = retval;
241 app_send_ctrl_evt_to_vpp (mq, app_evt);
242}
243
Florin Coras30e79c22019-01-02 19:31:22 -0800244void
245vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
246 u32 wrk_index)
247{
248 app_session_evt_t _app_evt, *app_evt = &_app_evt;
249 session_worker_update_msg_t *mp;
250 svm_msg_q_t *mq;
251
252 mq = vcl_session_vpp_evt_q (wrk, s);
253 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
254 mp = (session_worker_update_msg_t *) app_evt->evt->data;
255 mp->client_index = wrk->my_client_index;
256 mp->handle = s->vpp_handle;
257 mp->req_wrk_index = wrk->vpp_wrk_index;
258 mp->wrk_index = wrk_index;
259 app_send_ctrl_evt_to_vpp (mq, app_evt);
260}
261
Florin Coras54693d22018-07-17 10:46:29 -0700262static u32
Florin Coras134a9962018-08-28 11:32:04 -0700263vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700264{
265 vcl_session_t *session, *listen_session;
266 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700267 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700268 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700269
Florin Coras134a9962018-08-28 11:32:04 -0700270 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700271
Florin Coras134a9962018-08-28 11:32:04 -0700272 listen_session = vcl_session_table_lookup_listener (wrk,
273 mp->listener_handle);
Florin Coras54693d22018-07-17 10:46:29 -0700274 if (!listen_session)
275 {
276 svm_msg_q_t *evt_q;
277 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
278 clib_warning ("VCL<%d>: ERROR: couldn't find listen session: "
279 "unknown vpp listener handle %llx",
280 getpid (), mp->listener_handle);
281 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
282 VNET_API_ERROR_INVALID_ARGUMENT);
Florin Coras134a9962018-08-28 11:32:04 -0700283 vcl_session_free (wrk, session);
Florin Coras54693d22018-07-17 10:46:29 -0700284 return VCL_INVALID_SESSION_INDEX;
285 }
286
Florin Coras54693d22018-07-17 10:46:29 -0700287 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
288 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
289
290 if (mp->server_event_queue_address)
291 {
292 session->vpp_evt_q = uword_to_pointer (mp->client_event_queue_address,
293 svm_msg_q_t *);
294 session->our_evt_q = uword_to_pointer (mp->server_event_queue_address,
295 svm_msg_q_t *);
Florin Corasd85de682018-11-29 17:02:29 -0800296 if (vcl_wait_for_segment (mp->segment_handle))
297 {
298 clib_warning ("segment for session %u couldn't be mounted!",
299 session->session_index);
300 return VCL_INVALID_SESSION_INDEX;
301 }
Florin Coras134a9962018-08-28 11:32:04 -0700302 rx_fifo->master_session_index = session->session_index;
303 tx_fifo->master_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700304 rx_fifo->master_thread_index = vcl_get_worker_index ();
305 tx_fifo->master_thread_index = vcl_get_worker_index ();
Florin Coras134a9962018-08-28 11:32:04 -0700306 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700307 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700308 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700309 }
310 else
311 {
312 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
313 svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700314 rx_fifo->client_session_index = session->session_index;
315 tx_fifo->client_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700316 rx_fifo->client_thread_index = vcl_get_worker_index ();
317 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras99368312018-08-02 10:45:44 -0700318 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700319 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
320 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700321 }
322
323 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800324 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700325 session->client_context = mp->context;
326 session->rx_fifo = rx_fifo;
327 session->tx_fifo = tx_fifo;
328
329 session->session_state = STATE_ACCEPT;
330 session->transport.rmt_port = mp->port;
331 session->transport.is_ip4 = mp->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500332 clib_memcpy_fast (&session->transport.rmt_ip, mp->ip,
333 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700334
Florin Coras134a9962018-08-28 11:32:04 -0700335 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700336 session->transport.lcl_port = listen_session->transport.lcl_port;
337 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700338 session->session_type = listen_session->session_type;
339 session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
Florin Coras54693d22018-07-17 10:46:29 -0700340
341 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
Florin Coras134a9962018-08-28 11:32:04 -0700342 " address %U port %d queue %p!", getpid (), mp->handle,
343 session->session_index,
Florin Coras54693d22018-07-17 10:46:29 -0700344 mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
345 mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
346 clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
347 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
348
Florin Coras134a9962018-08-28 11:32:04 -0700349 return session->session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700350}
351
352static u32
Florin Coras134a9962018-08-28 11:32:04 -0700353vcl_session_connected_handler (vcl_worker_t * wrk,
354 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700355{
Florin Coras99368312018-08-02 10:45:44 -0700356 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700357 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700358 vcl_session_t *session = 0;
359 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700360
361 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700362 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700363 if (!session)
364 {
365 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
366 "Invalid session index (%u)!",
367 getpid (), mp->handle, session_index);
368 return VCL_INVALID_SESSION_INDEX;
369 }
Florin Coras54693d22018-07-17 10:46:29 -0700370 if (mp->retval)
371 {
Florin Coras070453d2018-08-24 17:04:27 -0700372 clib_warning ("VCL<%d>: ERROR: sid %u: connect failed! %U", getpid (),
Florin Coras21795132018-09-09 09:40:51 -0700373 session_index, format_api_error, ntohl (mp->retval));
Florin Coras070453d2018-08-24 17:04:27 -0700374 session->session_state = STATE_FAILED;
375 session->vpp_handle = mp->handle;
376 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700377 }
378
Florin Coras460dce62018-07-27 05:45:06 -0700379 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
380 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasd85de682018-11-29 17:02:29 -0800381 if (vcl_wait_for_segment (mp->segment_handle))
382 {
383 clib_warning ("segment for session %u couldn't be mounted!",
384 session->session_index);
385 return VCL_INVALID_SESSION_INDEX;
386 }
387
Florin Coras460dce62018-07-27 05:45:06 -0700388 rx_fifo->client_session_index = session_index;
389 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700390 rx_fifo->client_thread_index = vcl_get_worker_index ();
391 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700392
Florin Coras54693d22018-07-17 10:46:29 -0700393 if (mp->client_event_queue_address)
394 {
395 session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
396 svm_msg_q_t *);
397 session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
398 svm_msg_q_t *);
Florin Coras99368312018-08-02 10:45:44 -0700399
Florin Coras134a9962018-08-28 11:32:04 -0700400 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700401 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700402 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700403 }
404 else
Florin Coras99368312018-08-02 10:45:44 -0700405 {
406 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
407 svm_msg_q_t *);
408 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700409 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
410 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700411 }
Florin Coras54693d22018-07-17 10:46:29 -0700412
Florin Coras54693d22018-07-17 10:46:29 -0700413 session->rx_fifo = rx_fifo;
414 session->tx_fifo = tx_fifo;
415 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800416 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700417 session->transport.is_ip4 = mp->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500418 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
419 sizeof (session->transport.lcl_ip));
Florin Coras54693d22018-07-17 10:46:29 -0700420 session->transport.lcl_port = mp->lcl_port;
421 session->session_state = STATE_CONNECT;
422
423 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800424 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700425
426 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
427 "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
428 getpid (), mp->handle, session_index, session->rx_fifo,
429 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700430
Florin Coras54693d22018-07-17 10:46:29 -0700431 return session_index;
432}
433
Florin Coras3c7d4f92018-12-14 11:28:43 -0800434static int
435vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
436{
437 vcl_session_msg_t *accepted_msg;
438 int i;
439
440 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
441 {
442 accepted_msg = &session->accept_evts_fifo[i];
443 if (accepted_msg->accepted_msg.handle == handle)
444 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800445 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800446 return 1;
447 }
448 }
449 return 0;
450}
451
Florin Corasc9fbd662018-08-24 12:59:56 -0700452static u32
Florin Coras134a9962018-08-28 11:32:04 -0700453vcl_session_reset_handler (vcl_worker_t * wrk,
454 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700455{
456 vcl_session_t *session;
457 u32 sid;
458
Florin Coras134a9962018-08-28 11:32:04 -0700459 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
460 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700461 if (!session)
462 {
463 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
464 return VCL_INVALID_SESSION_INDEX;
465 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800466
467 /* Caught a reset before actually accepting the session */
468 if (session->session_state == STATE_LISTEN)
469 {
470
471 if (!vcl_flag_accepted_session (session, reset_msg->handle,
472 VCL_ACCEPTED_F_RESET))
473 VDBG (0, "session was not accepted!");
474 return VCL_INVALID_SESSION_INDEX;
475 }
476
477 session->session_state = STATE_DISCONNECT;
478 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700479 return sid;
480}
481
Florin Coras60116992018-08-27 09:52:18 -0700482static u32
Florin Coras134a9962018-08-28 11:32:04 -0700483vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700484{
485 vcl_session_t *session;
486 u32 sid = mp->context;
487
Florin Coras134a9962018-08-28 11:32:04 -0700488 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700489 if (mp->retval)
490 {
Florin Corasd85de682018-11-29 17:02:29 -0800491 VERR ("vpp handle 0x%llx, sid %u: bind failed: %U", mp->handle, sid,
492 format_api_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700493 if (session)
494 {
495 session->session_state = STATE_FAILED;
496 session->vpp_handle = mp->handle;
497 return sid;
498 }
499 else
500 {
501 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
502 "Invalid session index (%u)!",
503 getpid (), mp->handle, sid);
504 return VCL_INVALID_SESSION_INDEX;
505 }
506 }
507
508 session->vpp_handle = mp->handle;
509 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500510 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
511 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700512 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700513 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700514 session->session_state = STATE_LISTEN;
515
Florin Coras5f45e012019-01-23 09:21:30 -0800516 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
517 vec_validate (wrk->vpp_event_queues, 0);
518 wrk->vpp_event_queues[0] = session->vpp_evt_q;
519
Florin Coras60116992018-08-27 09:52:18 -0700520 if (session->is_dgram)
521 {
522 svm_fifo_t *rx_fifo, *tx_fifo;
523 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
524 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
525 rx_fifo->client_session_index = sid;
526 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
527 tx_fifo->client_session_index = sid;
528 session->rx_fifo = rx_fifo;
529 session->tx_fifo = tx_fifo;
530 }
531
Florin Coras05ecfcc2018-12-12 18:19:39 -0800532 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700533 return sid;
534}
535
Florin Coras3c7d4f92018-12-14 11:28:43 -0800536static vcl_session_t *
537vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
538{
539 vcl_session_msg_t *vcl_msg;
540 vcl_session_t *session;
541
542 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
543 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800544 VWRN ("session overlap handle %lu state %u!", msg->handle,
545 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800546
547 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
548 if (!session)
549 {
550 VERR ("couldn't find listen session: listener handle %llx",
551 msg->listener_handle);
552 return 0;
553 }
554
555 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
556 vcl_msg->accepted_msg = *msg;
557 /* Session handle points to listener until fully accepted by app */
558 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
559
560 return session;
561}
562
563static vcl_session_t *
564vcl_session_disconnected_handler (vcl_worker_t * wrk,
565 session_disconnected_msg_t * msg)
566{
567 vcl_session_t *session;
568
569 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
570 if (!session)
571 {
572 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
573 return 0;
574 }
575
576 /* Caught a disconnect before actually accepting the session */
577 if (session->session_state == STATE_LISTEN)
578 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800579 if (!vcl_flag_accepted_session (session, msg->handle,
580 VCL_ACCEPTED_F_CLOSED))
581 VDBG (0, "session was not accepted!");
582 return 0;
583 }
584
585 session->session_state = STATE_VPP_CLOSING;
586 return session;
587}
588
Florin Coras30e79c22019-01-02 19:31:22 -0800589static void
590vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
591{
592 session_req_worker_update_msg_t *msg;
593 vcl_session_t *s;
594
595 msg = (session_req_worker_update_msg_t *) data;
596 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
597 if (!s)
598 return;
599
600 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
601}
602
603static void
604vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
605{
606 session_worker_update_reply_msg_t *msg;
607 vcl_session_t *s;
608
609 msg = (session_worker_update_reply_msg_t *) data;
610 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
611 if (!s)
612 {
613 VDBG (0, "unknown handle 0x%llx", msg->handle);
614 return;
615 }
616 if (vcl_wait_for_segment (msg->segment_handle))
617 {
618 clib_warning ("segment for session %u couldn't be mounted!",
619 s->session_index);
620 return;
621 }
Florin Coras30e79c22019-01-02 19:31:22 -0800622
Florin Coras5f45e012019-01-23 09:21:30 -0800623 if (s->rx_fifo)
624 {
625 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
626 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
627 s->rx_fifo->client_session_index = s->session_index;
628 s->tx_fifo->client_session_index = s->session_index;
629 s->rx_fifo->client_thread_index = wrk->wrk_index;
630 s->tx_fifo->client_thread_index = wrk->wrk_index;
631 }
Florin Coras30e79c22019-01-02 19:31:22 -0800632 s->session_state = STATE_UPDATED;
633
Florin Coras30e79c22019-01-02 19:31:22 -0800634 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
635 s->vpp_handle, wrk->wrk_index);
636}
637
Florin Coras86f04502018-09-12 16:08:01 -0700638static int
639vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700640{
Florin Coras54693d22018-07-17 10:46:29 -0700641 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700642 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700643
644 switch (e->event_type)
645 {
646 case FIFO_EVENT_APP_RX:
Florin Coras86f04502018-09-12 16:08:01 -0700647 case FIFO_EVENT_APP_TX:
648 case SESSION_IO_EVT_CT_RX:
649 case SESSION_IO_EVT_CT_TX:
650 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700651 break;
652 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800653 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700654 break;
655 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700656 vcl_session_connected_handler (wrk,
657 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700658 break;
659 case SESSION_CTRL_EVT_DISCONNECTED:
660 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800661 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700662 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800663 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800664 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
665 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700666 break;
667 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700668 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700669 break;
670 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700671 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700672 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800673 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
674 vcl_session_req_worker_update_handler (wrk, e->data);
675 break;
676 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
677 vcl_session_worker_update_reply_handler (wrk, e->data);
678 break;
Florin Coras54693d22018-07-17 10:46:29 -0700679 default:
680 clib_warning ("unhandled %u", e->event_type);
681 }
682 return VPPCOM_OK;
683}
684
Florin Coras30e79c22019-01-02 19:31:22 -0800685static int
Florin Coras697faea2018-06-27 17:10:49 -0700686vppcom_wait_for_session_state_change (u32 session_index,
687 session_state_t state,
688 f64 wait_for_time)
689{
Florin Coras134a9962018-08-28 11:32:04 -0700690 vcl_worker_t *wrk = vcl_worker_get_current ();
691 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700692 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700693 svm_msg_q_msg_t msg;
694 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400695
Florin Coras697faea2018-06-27 17:10:49 -0700696 do
Dave Wallace543852a2017-08-03 02:11:34 -0400697 {
Florin Coras134a9962018-08-28 11:32:04 -0700698 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700699 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700700 {
Florin Coras070453d2018-08-24 17:04:27 -0700701 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700702 }
703 if (session->session_state & state)
704 {
Florin Coras697faea2018-06-27 17:10:49 -0700705 return VPPCOM_OK;
706 }
707 if (session->session_state & STATE_FAILED)
708 {
Florin Coras697faea2018-06-27 17:10:49 -0700709 return VPPCOM_ECONNREFUSED;
710 }
Florin Coras54693d22018-07-17 10:46:29 -0700711
Florin Coras134a9962018-08-28 11:32:04 -0700712 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800713 {
714 usleep (100);
715 continue;
716 }
Florin Coras134a9962018-08-28 11:32:04 -0700717 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700718 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700719 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800720 }
Florin Coras134a9962018-08-28 11:32:04 -0700721 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800722
Florin Coras05ecfcc2018-12-12 18:19:39 -0800723 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700724 vppcom_session_state_str (state));
725 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400726
Florin Coras697faea2018-06-27 17:10:49 -0700727 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500728}
729
Florin Coras30e79c22019-01-02 19:31:22 -0800730static void
731vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
732{
733 session_state_t state;
734 vcl_session_t *s;
735 u32 *sip;
736
737 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
738 return;
739
740 vec_foreach (sip, wrk->pending_session_wrk_updates)
741 {
742 s = vcl_session_get (wrk, *sip);
743 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
744 state = s->session_state;
745 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
746 s->session_state = state;
747 }
748 vec_reset_length (wrk->pending_session_wrk_updates);
749}
750
Florin Corasf9240dc2019-01-15 08:03:17 -0800751void
Florin Coras30e79c22019-01-02 19:31:22 -0800752vcl_flush_mq_events (void)
753{
754 vcl_worker_t *wrk = vcl_worker_get_current ();
755 svm_msg_q_msg_t *msg;
756 session_event_t *e;
757 svm_msg_q_t *mq;
758 int i;
759
760 mq = wrk->app_event_queue;
761 svm_msg_q_lock (mq);
762 vcl_mq_dequeue_batch (wrk, mq);
763 svm_msg_q_unlock (mq);
764
765 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
766 {
767 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
768 e = svm_msg_q_msg_data (mq, msg);
769 vcl_handle_mq_event (wrk, e);
770 svm_msg_q_free_msg (mq, msg);
771 }
772 vec_reset_length (wrk->mq_msg_vector);
773 vcl_handle_pending_wrk_updates (wrk);
774}
775
Florin Coras697faea2018-06-27 17:10:49 -0700776static int
777vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400778{
Florin Coras697faea2018-06-27 17:10:49 -0700779 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400780
Florin Coras697faea2018-06-27 17:10:49 -0700781 if (vcm->app_state != STATE_APP_ENABLED)
782 {
783 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700784 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700785 if (PREDICT_FALSE (rv))
786 {
787 VDBG (0, "VCL<%d>: application session enable timed out! "
788 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
789 return rv;
790 }
791 }
792 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400793}
794
Florin Coras697faea2018-06-27 17:10:49 -0700795static int
796vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400797{
Florin Coras697faea2018-06-27 17:10:49 -0700798 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400799
Florin Coras697faea2018-06-27 17:10:49 -0700800 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -0700801 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -0700802 if (PREDICT_FALSE (rv))
803 {
804 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
805 getpid (), rv, vppcom_retval_str (rv));
806 return rv;
807 }
Dave Wallace543852a2017-08-03 02:11:34 -0400808
Florin Coras697faea2018-06-27 17:10:49 -0700809 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400810}
811
812static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700813vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400814{
Florin Coras134a9962018-08-28 11:32:04 -0700815 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700816 vcl_session_t *session = 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500817 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400818
Florin Corasab2f6db2018-08-31 14:31:41 -0700819 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700820 if (!session)
821 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500822
823 vpp_handle = session->vpp_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700824 vcl_session_table_del_listener (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500825 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700826 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500827
Florin Coras2d675d72019-01-28 15:54:27 -0800828 VDBG (1, "vpp handle 0x%llx, sid %u: sending unbind msg! new state"
829 " 0x%x (%s)", vpp_handle, session_handle, STATE_DISCONNECT,
Florin Coras0d427d82018-06-27 03:24:07 -0700830 vppcom_session_state_str (STATE_DISCONNECT));
831 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras2d675d72019-01-28 15:54:27 -0800832 vppcom_send_unbind_sock (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500833
Florin Coras070453d2018-08-24 17:04:27 -0700834 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400835}
836
Florin Coras697faea2018-06-27 17:10:49 -0700837static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700838vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400839{
Florin Coras134a9962018-08-28 11:32:04 -0700840 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -0700841 svm_msg_q_t *vpp_evt_q;
Florin Coras7e12d942018-06-27 14:32:43 -0700842 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500843 session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -0700844 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400845
Florin Corasab2f6db2018-08-31 14:31:41 -0700846 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -0700847 if (!session)
848 return VPPCOM_EBADFD;
849
Dave Wallace4878cbe2017-11-21 03:45:09 -0500850 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700851 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500852
Florin Coras0d427d82018-06-27 03:24:07 -0700853 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
Florin Corasab2f6db2018-08-31 14:31:41 -0700854 vpp_handle, session_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400855
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800856 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400857 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500858 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500859 "Cannot disconnect a listen socket!",
Florin Corasab2f6db2018-08-31 14:31:41 -0700860 getpid (), vpp_handle, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700861 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500862 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400863
Florin Coras3c7d4f92018-12-14 11:28:43 -0800864 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500865 {
Florin Coras134a9962018-08-28 11:32:04 -0700866 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -0800867 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -0700868 vpp_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700869 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
Florin Corasab2f6db2018-08-31 14:31:41 -0700870 "REPLY...", getpid (), vpp_handle, session_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400871 }
872 else
Dave Wallace227867f2017-11-13 21:21:53 -0500873 {
Florin Coras0d427d82018-06-27 03:24:07 -0700874 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
Florin Corasab2f6db2018-08-31 14:31:41 -0700875 getpid (), vpp_handle, session_handle);
876 vppcom_send_disconnect_session (vpp_handle);
Dave Wallace227867f2017-11-13 21:21:53 -0500877 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400878
Florin Coras070453d2018-08-24 17:04:27 -0700879 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400880}
881
Florin Coras940f78f2018-11-30 12:11:20 -0800882/**
883 * Handle app exit
884 *
885 * Notify vpp of the disconnect and mark the worker as free. If we're the
886 * last worker, do a full cleanup otherwise, since we're probably a forked
887 * child, avoid syscalls as much as possible. We might've lost privileges.
888 */
889void
890vppcom_app_exit (void)
891{
892 if (!pool_elts (vcm->workers))
893 return;
Florin Coras01f3f892018-12-02 12:45:53 -0800894 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
895 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -0800896 vcl_elog_stop (vcm);
897 if (vec_len (vcm->workers) == 1)
898 vl_client_disconnect_from_vlib ();
899 else
Florin Coraseaec2a62018-12-04 16:34:05 -0800900 vl_client_send_disconnect (1 /* vpp should cleanup */ );
Florin Coras940f78f2018-11-30 12:11:20 -0800901}
902
Dave Wallace543852a2017-08-03 02:11:34 -0400903/*
904 * VPPCOM Public API functions
905 */
906int
907vppcom_app_create (char *app_name)
908{
Dave Wallace543852a2017-08-03 02:11:34 -0400909 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400910 int rv;
911
Florin Coras47c40e22018-11-26 17:01:36 -0800912 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -0400913 {
Florin Coras955bfbb2018-12-04 13:43:45 -0800914 VDBG (1, "already initialized");
915 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -0400916 }
917
Florin Coras47c40e22018-11-26 17:01:36 -0800918 vcm->is_init = 1;
919 vppcom_cfg (&vcm->cfg);
920 vcl_cfg = &vcm->cfg;
921
922 vcm->main_cpu = pthread_self ();
923 vcm->main_pid = getpid ();
924 vcm->app_name = format (0, "%s", app_name);
925 vppcom_init_error_string_table ();
Florin Corasadc74d72018-12-02 13:36:00 -0800926 svm_fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
Florin Coras47c40e22018-11-26 17:01:36 -0800927 20 /* timeout in secs */ );
928 pool_alloc (vcm->workers, vcl_cfg->max_workers);
929 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -0800930 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -0800931 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -0800932
933 /* Allocate default worker */
934 vcl_worker_alloc_and_init ();
935
936 /* API hookup and connect to VPP */
937 vppcom_api_hookup ();
938 vcl_elog_init (vcm);
939 vcm->app_state = STATE_APP_START;
940 rv = vppcom_connect_to_vpp (app_name);
941 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -0400942 {
Florin Coras47c40e22018-11-26 17:01:36 -0800943 VERR ("couldn't connect to VPP!");
944 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400945 }
Florin Coras47c40e22018-11-26 17:01:36 -0800946 VDBG (0, "sending session enable");
947 rv = vppcom_app_session_enable ();
948 if (rv)
949 {
950 VERR ("vppcom_app_session_enable() failed!");
951 return rv;
952 }
953
954 VDBG (0, "sending app attach");
955 rv = vppcom_app_attach ();
956 if (rv)
957 {
958 VERR ("vppcom_app_attach() failed!");
959 return rv;
960 }
961
962 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
963 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -0400964
965 return VPPCOM_OK;
966}
967
968void
969vppcom_app_destroy (void)
970{
Dave Wallace543852a2017-08-03 02:11:34 -0400971 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400972 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400973
Florin Coras940f78f2018-11-30 12:11:20 -0800974 if (!pool_elts (vcm->workers))
975 return;
976
Florin Coras0d427d82018-06-27 03:24:07 -0700977 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800978
Florin Coras940f78f2018-11-30 12:11:20 -0800979 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -0800980 {
981 vppcom_app_send_detach ();
982 orig_app_timeout = vcm->cfg.app_timeout;
983 vcm->cfg.app_timeout = 2.0;
984 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
985 vcm->cfg.app_timeout = orig_app_timeout;
986 if (PREDICT_FALSE (rv))
987 VDBG (0, "application detach timed out! returning %d (%s)", rv,
988 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -0800989 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -0800990 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -0800991 }
992 else
993 {
Florin Coras01f3f892018-12-02 12:45:53 -0800994 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -0800995 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -0800996
Florin Coras01f3f892018-12-02 12:45:53 -0800997 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -0700998 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -0400999 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001000}
1001
1002int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001003vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001004{
Florin Coras134a9962018-08-28 11:32:04 -07001005 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001006 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001007
Florin Coras134a9962018-08-28 11:32:04 -07001008 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001009
Florin Coras7e12d942018-06-27 14:32:43 -07001010 session->session_type = proto;
1011 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001012 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -07001013 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -04001014
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001015 if (is_nonblocking)
1016 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001017
Florin Coras7e12d942018-06-27 14:32:43 -07001018 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1019 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001020
Florin Coras053a0e42018-11-13 15:52:38 -08001021 VDBG (0, "created sid %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001022
Florin Coras134a9962018-08-28 11:32:04 -07001023 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001024}
1025
1026int
Florin Corasf9240dc2019-01-15 08:03:17 -08001027vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1028 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001029{
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001030 session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001031 u32 next_sh, vep_sh;
1032 int rv = VPPCOM_OK;
1033 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001034 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001035
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001036 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001037 next_sh = session->vep.next_sh;
1038 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001039 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001040 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001041
Florin Corasf9240dc2019-01-15 08:03:17 -08001042 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001043
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001044 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001045 {
Florin Coras134a9962018-08-28 11:32:04 -07001046 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001047 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001048 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001049 if (PREDICT_FALSE (rv < 0))
Florin Coras47c40e22018-11-26 17:01:36 -08001050 VDBG (0, "vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL vep_idx %u"
1051 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1052 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001053
Florin Coras134a9962018-08-28 11:32:04 -07001054 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001055 }
1056 }
1057 else
1058 {
Florin Coras47c40e22018-11-26 17:01:36 -08001059 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001060 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001061 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001062 if (rv < 0)
Florin Corasf9240dc2019-01-15 08:03:17 -08001063 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1064 "failed! rv %d (%s)", session->session_index, vpp_handle,
1065 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001066 }
1067
Florin Coras47c40e22018-11-26 17:01:36 -08001068 if (!do_disconnect)
Florin Coras30e79c22019-01-02 19:31:22 -08001069 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08001070 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Corasf9240dc2019-01-15 08:03:17 -08001071 session->session_index, vpp_handle);
Florin Coras30e79c22019-01-02 19:31:22 -08001072 goto cleanup;
1073 }
Florin Coras47c40e22018-11-26 17:01:36 -08001074
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001075 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001076 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001077 rv = vppcom_session_unbind (sh);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001078 if (PREDICT_FALSE (rv < 0))
Florin Corasf9240dc2019-01-15 08:03:17 -08001079 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1080 "rv %d (%s)", session->session_index, vpp_handle, rv,
Florin Coras47c40e22018-11-26 17:01:36 -08001081 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001082 }
Florin Coras070453d2018-08-24 17:04:27 -07001083 else if (state & STATE_OPEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001084 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001085 rv = vppcom_session_disconnect (sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001086 if (PREDICT_FALSE (rv < 0))
Florin Corasf9240dc2019-01-15 08:03:17 -08001087 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1088 " rv %d (%s)", session->session_index, vpp_handle,
1089 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001090 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001091 else if (state == STATE_DISCONNECT)
1092 {
1093 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1094 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1095 session->vpp_handle, 0);
1096 }
Dave Wallace19481612017-09-15 18:47:44 -04001097 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001098
Florin Coras99368312018-08-02 10:45:44 -07001099 if (vcl_session_is_ct (session))
1100 {
1101 vcl_cut_through_registration_t *ctr;
1102 uword mq_addr;
1103
1104 mq_addr = pointer_to_uword (session->our_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -07001105 ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
Florin Coras99368312018-08-02 10:45:44 -07001106 ASSERT (ctr);
1107 if (ctr->epoll_evt_conn_index != ~0)
Florin Coras134a9962018-08-28 11:32:04 -07001108 vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
Florin Coras99368312018-08-02 10:45:44 -07001109 VDBG (0, "Removing ct registration %u",
Florin Coras134a9962018-08-28 11:32:04 -07001110 vcl_ct_registration_index (wrk, ctr));
1111 vcl_ct_registration_del (wrk, ctr);
1112 vcl_ct_registration_lookup_del (wrk, mq_addr);
1113 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001114 }
Florin Coras54693d22018-07-17 10:46:29 -07001115
Florin Coras0ef8ef22019-01-18 08:37:13 -08001116 VDBG (0, "session %u [0x%llx] removed", session->session_index, vpp_handle);
1117
Florin Corasf9240dc2019-01-15 08:03:17 -08001118cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001119 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Coras134a9962018-08-28 11:32:04 -07001120 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001121 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001122
Dave Wallace543852a2017-08-03 02:11:34 -04001123 return rv;
1124}
1125
1126int
Florin Corasf9240dc2019-01-15 08:03:17 -08001127vppcom_session_close (uint32_t session_handle)
1128{
1129 vcl_worker_t *wrk = vcl_worker_get_current ();
1130 vcl_session_t *session;
1131
1132 session = vcl_session_get_w_handle (wrk, session_handle);
1133 if (!session)
1134 return VPPCOM_EBADFD;
1135 return vcl_session_cleanup (wrk, session, session_handle,
1136 1 /* do_disconnect */ );
1137}
1138
1139int
Florin Coras134a9962018-08-28 11:32:04 -07001140vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001141{
Florin Coras134a9962018-08-28 11:32:04 -07001142 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001143 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001144
1145 if (!ep || !ep->ip)
1146 return VPPCOM_EINVAL;
1147
Florin Coras134a9962018-08-28 11:32:04 -07001148 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001149 if (!session)
1150 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001151
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001152 if (session->is_vep)
1153 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001154 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001155 "bind to an epoll session!", getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001156 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001157 }
1158
Florin Coras7e12d942018-06-27 14:32:43 -07001159 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001160 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001161 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1162 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001163 else
Dave Barach178cf492018-11-13 16:34:13 -05001164 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1165 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001166 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001167
Florin Coras0d427d82018-06-27 03:24:07 -07001168 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
Florin Coras134a9962018-08-28 11:32:04 -07001169 "proto %s", getpid (), session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001170 session->transport.is_ip4 ? "IPv4" : "IPv6",
1171 format_ip46_address, &session->transport.lcl_ip,
1172 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1173 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001174 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001175 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001176
1177 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001178 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001179
Florin Coras070453d2018-08-24 17:04:27 -07001180 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001181}
1182
1183int
Florin Coras134a9962018-08-28 11:32:04 -07001184vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001185{
Florin Coras134a9962018-08-28 11:32:04 -07001186 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001187 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001188 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001189 int rv;
1190
Florin Coras134a9962018-08-28 11:32:04 -07001191 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001192 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001193 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001194
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001195 if (q_len == 0 || q_len == ~0)
1196 q_len = vcm->cfg.listen_queue_size;
1197
Dave Wallaceee45d412017-11-24 21:44:06 -05001198 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001199 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001200 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001201 VDBG (0, "session %u [0x%llx]: already in listen state!",
1202 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001203 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001204 }
1205
Florin Coras05ecfcc2018-12-12 18:19:39 -08001206 VDBG (0, "session %u [0x%llx]: sending vpp listen request...",
1207 listen_sh, listen_vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001208
Florin Coras070453d2018-08-24 17:04:27 -07001209 /*
1210 * Send listen request to vpp and wait for reply
1211 */
Florin Coras134a9962018-08-28 11:32:04 -07001212 vppcom_send_bind_sock (listen_session);
1213 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1214 STATE_LISTEN,
1215 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001216
Florin Coras070453d2018-08-24 17:04:27 -07001217 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001218 {
Florin Coras134a9962018-08-28 11:32:04 -07001219 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001220 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1221 listen_sh, listen_session->vpp_handle, rv,
1222 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001223 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001224 }
1225
Florin Coras070453d2018-08-24 17:04:27 -07001226 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001227}
1228
Ping Yu34a3a082018-11-30 19:16:17 -05001229int
1230vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1231 uint32_t cert_len)
1232{
1233
1234 vcl_worker_t *wrk = vcl_worker_get_current ();
1235 vcl_session_t *session = 0;
1236
1237 session = vcl_session_get_w_handle (wrk, session_handle);
1238 if (!session)
1239 return VPPCOM_EBADFD;
1240
1241 if (cert_len == 0 || cert_len == ~0)
1242 return VPPCOM_EBADFD;
1243
1244 /*
1245 * Send listen request to vpp and wait for reply
1246 */
1247 vppcom_send_application_tls_cert_add (session, cert, cert_len);
1248
1249 return VPPCOM_OK;
1250
1251}
1252
1253int
1254vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1255 uint32_t key_len)
1256{
1257
1258 vcl_worker_t *wrk = vcl_worker_get_current ();
1259 vcl_session_t *session = 0;
1260
1261 session = vcl_session_get_w_handle (wrk, session_handle);
1262 if (!session)
1263 return VPPCOM_EBADFD;
1264
1265 if (key_len == 0 || key_len == ~0)
1266 return VPPCOM_EBADFD;
1267
1268 /*
1269 * Send listen request to vpp and wait for reply
1270 */
1271 vppcom_send_application_tls_key_add (session, key, key_len);
1272
1273 return VPPCOM_OK;
1274
1275
1276}
1277
Florin Coras134a9962018-08-28 11:32:04 -07001278static int
1279validate_args_session_accept_ (vcl_worker_t * wrk,
1280 vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001281{
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001282 /* Input validation - expects spinlock on sessions_lockp */
1283 if (listen_session->is_vep)
1284 {
1285 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
Florin Coras134a9962018-08-28 11:32:04 -07001286 "epoll session!", getpid (),
1287 listen_session->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001288 return VPPCOM_EBADFD;
1289 }
1290
Florin Coras7e12d942018-06-27 14:32:43 -07001291 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001292 {
1293 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1294 "not in listen state! state 0x%x (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001295 listen_session->vpp_handle, listen_session->session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001296 listen_session->session_state,
1297 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001298 return VPPCOM_EBADFD;
1299 }
1300 return VPPCOM_OK;
1301}
1302
1303int
Florin Coras134a9962018-08-28 11:32:04 -07001304vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001305 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001306{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001307 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001308 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001309 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001310 vcl_session_t *listen_session = 0;
1311 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001312 svm_msg_q_t *vpp_evt_q;
1313 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001314 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001315 svm_msg_q_msg_t msg;
1316 session_event_t *e;
1317 u8 is_nonblocking;
1318 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001319
Florin Coras134a9962018-08-28 11:32:04 -07001320 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001321 if (!listen_session)
1322 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001323
Florin Coras134a9962018-08-28 11:32:04 -07001324 listen_session_index = listen_session->session_index;
1325 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001326 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001327
Florin Coras54693d22018-07-17 10:46:29 -07001328 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001329 {
Florin Coras54693d22018-07-17 10:46:29 -07001330 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001331 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001332 accepted_msg = evt->accepted_msg;
1333 goto handle;
1334 }
1335
1336 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1337 VCL_SESS_ATTR_NONBLOCK);
Florin Coras134a9962018-08-28 11:32:04 -07001338 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
Florin Coras54693d22018-07-17 10:46:29 -07001339 return VPPCOM_EAGAIN;
1340
1341 while (1)
1342 {
Florin Coras134a9962018-08-28 11:32:04 -07001343 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001344 return VPPCOM_EAGAIN;
1345
Florin Coras134a9962018-08-28 11:32:04 -07001346 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001347 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001348 {
Florin Coras54693d22018-07-17 10:46:29 -07001349 clib_warning ("discarded event: %u", e->event_type);
Florin Coras134a9962018-08-28 11:32:04 -07001350 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001351 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001352 }
Dave Barach178cf492018-11-13 16:34:13 -05001353 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001354 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001355 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001356 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001357
Florin Coras54693d22018-07-17 10:46:29 -07001358handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001359
Florin Coras134a9962018-08-28 11:32:04 -07001360 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1361 listen_session = vcl_session_get (wrk, listen_session_index);
1362 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001363
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001364 if (flags & O_NONBLOCK)
1365 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001366
Florin Coras54693d22018-07-17 10:46:29 -07001367 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras05ecfcc2018-12-12 18:19:39 -08001368 VDBG (1, "vpp handle 0x%llx, sid %u: Got a client request! "
Florin Coras0d427d82018-06-27 03:24:07 -07001369 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
Florin Corasdc2e2512018-12-03 17:47:26 -08001370 listen_vpp_handle, listen_session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001371 client_session->vpp_handle, client_session_index,
1372 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1373 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001374
Dave Wallace048b1d62018-01-03 22:24:41 -05001375 if (ep)
1376 {
Florin Coras7e12d942018-06-27 14:32:43 -07001377 ep->is_ip4 = client_session->transport.is_ip4;
1378 ep->port = client_session->transport.rmt_port;
1379 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001380 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1381 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001382 else
Dave Barach178cf492018-11-13 16:34:13 -05001383 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1384 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001385 }
Dave Wallace60caa062017-11-10 17:07:13 -05001386
Florin Coras54693d22018-07-17 10:46:29 -07001387 if (accepted_msg.server_event_queue_address)
1388 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1389 svm_msg_q_t *);
1390 else
1391 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001392
Florin Coras54693d22018-07-17 10:46:29 -07001393 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1394 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001395
Florin Coras05ecfcc2018-12-12 18:19:39 -08001396 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1397 "local: %U:%u", listen_session_handle, listen_vpp_handle,
1398 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001399 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001400 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001401 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001402 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001403 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001404 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001405 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1406 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001407
Florin Coras3c7d4f92018-12-14 11:28:43 -08001408 /*
1409 * Session might have been closed already
1410 */
1411 if (accept_flags)
1412 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001413 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001414 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001415 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001416 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001417 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001418 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001419}
1420
1421int
Florin Coras134a9962018-08-28 11:32:04 -07001422vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001423{
Florin Coras134a9962018-08-28 11:32:04 -07001424 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001425 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001426 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001427 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001428
Florin Coras134a9962018-08-28 11:32:04 -07001429 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001430 if (!session)
1431 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001432 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001433
1434 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001435 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001436 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001437 "connect on an epoll session!", getpid (),
1438 session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001439 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001440 }
1441
Florin Coras7e12d942018-06-27 14:32:43 -07001442 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001443 {
Florin Coras7baeb712019-01-04 17:05:43 -08001444 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001445 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001446 session_handle, session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001447 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001448 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001449 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001450 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001451 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001452 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001453 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001454 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001455 }
1456
Florin Coras7e12d942018-06-27 14:32:43 -07001457 session->transport.is_ip4 = server_ep->is_ip4;
1458 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001459 clib_memcpy_fast (&session->transport.rmt_ip.ip4, server_ep->ip,
1460 sizeof (ip4_address_t));
Dave Wallaced239f8d2018-06-19 13:37:30 -04001461 else
Dave Barach178cf492018-11-13 16:34:13 -05001462 clib_memcpy_fast (&session->transport.rmt_ip.ip6, server_ep->ip,
1463 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001464 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001465
Florin Coras7baeb712019-01-04 17:05:43 -08001466 VDBG (0, "session handle %u [0x%llx]: connecting to server %s %U "
1467 "port %d proto %s", session_handle, session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001468 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001469 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001470 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001471 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001472 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001473 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001474
Florin Coras070453d2018-08-24 17:04:27 -07001475 /*
1476 * Send connect request and wait for reply from vpp
1477 */
Florin Coras134a9962018-08-28 11:32:04 -07001478 vppcom_send_connect_sock (session);
Florin Coras070453d2018-08-24 17:04:27 -07001479 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1480 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001481
Florin Coras134a9962018-08-28 11:32:04 -07001482 session = vcl_session_get (wrk, session_index);
Dave Wallace7876d392017-10-19 03:53:57 -04001483
Florin Coras070453d2018-08-24 17:04:27 -07001484 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001485 {
Dave Wallaceee45d412017-11-24 21:44:06 -05001486 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001487 {
1488 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001489 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
Florin Coras134a9962018-08-28 11:32:04 -07001490 "failed! returning %d (%s)", getpid (),
1491 session->vpp_handle, session_handle, rv,
1492 vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001493 else
1494 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1495 "returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001496 session_handle, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001497 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001498 }
Florin Coras0d427d82018-06-27 03:24:07 -07001499 else
1500 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
Florin Coras134a9962018-08-28 11:32:04 -07001501 getpid (), session->vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -05001502
Dave Wallace4878cbe2017-11-21 03:45:09 -05001503 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001504}
1505
Florin Coras54693d22018-07-17 10:46:29 -07001506static u8
1507vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1508{
1509 if (!is_ct)
1510 return (e->event_type == FIFO_EVENT_APP_RX
1511 && e->fifo->client_session_index == sid);
1512 else
1513 return (e->event_type == SESSION_IO_EVT_CT_TX);
1514}
1515
Steven58f464e2017-10-25 12:33:12 -07001516static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001517vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001518 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001519{
Florin Coras134a9962018-08-28 11:32:04 -07001520 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001521 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001522 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001523 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001524 svm_msg_q_msg_t msg;
1525 session_event_t *e;
1526 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001527 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001528
Florin Coras070453d2018-08-24 17:04:27 -07001529 if (PREDICT_FALSE (!buf))
1530 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001531
Florin Coras134a9962018-08-28 11:32:04 -07001532 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001533 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001534 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001535
Florin Coras6d0106e2019-01-29 20:11:58 -08001536 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001537 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001538 VDBG (0, "session handle %u[0x%llx] is not open! state 0x%x (%s)",
1539 s->session_index, s->vpp_handle, s->session_state,
1540 vppcom_session_state_str (s->session_state));
1541 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001542 }
1543
Florin Coras2cba8532018-09-11 16:33:36 -07001544 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001545 is_ct = vcl_session_is_ct (s);
1546 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras2cba8532018-09-11 16:33:36 -07001547 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001548 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001549
Florin Coras54693d22018-07-17 10:46:29 -07001550 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001551 {
Florin Coras54693d22018-07-17 10:46:29 -07001552 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001553 {
Florin Coras41c9e042018-09-11 00:10:41 -07001554 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001555 return VPPCOM_EWOULDBLOCK;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001556 }
Florin Coras41c9e042018-09-11 00:10:41 -07001557 while (svm_fifo_is_empty (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001558 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001559 if (vcl_session_is_closing (s))
1560 return vcl_session_closing_error (s);
1561
Florin Coras41c9e042018-09-11 00:10:41 -07001562 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001563 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001564 if (svm_msg_q_is_empty (mq))
1565 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001566
Florin Coras54693d22018-07-17 10:46:29 -07001567 svm_msg_q_sub_w_lock (mq, &msg);
1568 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001569 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001570 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001571 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001572 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001573 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001574 }
Florin Coras54693d22018-07-17 10:46:29 -07001575
Florin Coras460dce62018-07-27 05:45:06 -07001576 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001577 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001578 else
Florin Coras99368312018-08-02 10:45:44 -07001579 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001580
Florin Coras41c9e042018-09-11 00:10:41 -07001581 if (svm_fifo_is_empty (rx_fifo))
1582 svm_fifo_unset_event (rx_fifo);
1583
Florin Coras1bcad5c2019-01-09 20:04:38 -08001584 if (is_ct && svm_fifo_needs_tx_ntf (rx_fifo, n_read))
Florin Coras99368312018-08-02 10:45:44 -07001585 {
Florin Coras1bcad5c2019-01-09 20:04:38 -08001586 svm_fifo_clear_tx_ntf (s->rx_fifo);
Florin Coras58c101a2018-10-06 13:49:16 -07001587 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo, SESSION_IO_EVT_CT_RX,
1588 SVM_Q_WAIT);
Florin Coras99368312018-08-02 10:45:44 -07001589 }
Florin Coras54693d22018-07-17 10:46:29 -07001590
Florin Corasa7a1a222018-12-30 17:11:31 -08001591 VDBG (2, "vpp handle 0x%llx, sid %u: read %d bytes from (%p)",
1592 s->vpp_handle, session_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001593
Florin Coras54693d22018-07-17 10:46:29 -07001594 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001595}
1596
Steven58f464e2017-10-25 12:33:12 -07001597int
Florin Coras134a9962018-08-28 11:32:04 -07001598vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001599{
Florin Coras134a9962018-08-28 11:32:04 -07001600 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001601}
1602
1603static int
Florin Coras134a9962018-08-28 11:32:04 -07001604vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001605{
Florin Coras134a9962018-08-28 11:32:04 -07001606 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001607}
1608
Florin Coras2cba8532018-09-11 16:33:36 -07001609int
1610vppcom_session_read_segments (uint32_t session_handle,
1611 vppcom_data_segments_t ds)
1612{
1613 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001614 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001615 vcl_session_t *s = 0;
1616 svm_fifo_t *rx_fifo;
1617 svm_msg_q_msg_t msg;
1618 session_event_t *e;
1619 svm_msg_q_t *mq;
1620 u8 is_ct;
1621
1622 s = vcl_session_get_w_handle (wrk, session_handle);
1623 if (PREDICT_FALSE (!s || s->is_vep))
1624 return VPPCOM_EBADFD;
1625
Florin Coras6d0106e2019-01-29 20:11:58 -08001626 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1627 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001628
1629 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1630 is_ct = vcl_session_is_ct (s);
1631 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1632 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001633 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001634
1635 if (svm_fifo_is_empty (rx_fifo))
1636 {
1637 if (is_nonblocking)
1638 {
1639 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001640 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001641 }
1642 while (svm_fifo_is_empty (rx_fifo))
1643 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001644 if (vcl_session_is_closing (s))
1645 return vcl_session_closing_error (s);
1646
Florin Coras2cba8532018-09-11 16:33:36 -07001647 svm_fifo_unset_event (rx_fifo);
1648 svm_msg_q_lock (mq);
1649 if (svm_msg_q_is_empty (mq))
1650 svm_msg_q_wait (mq);
1651
1652 svm_msg_q_sub_w_lock (mq, &msg);
1653 e = svm_msg_q_msg_data (mq, &msg);
1654 svm_msg_q_unlock (mq);
1655 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001656 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001657 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001658 }
1659 }
1660
1661 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_segment_t *) ds);
1662 svm_fifo_unset_event (rx_fifo);
1663
1664 if (is_ct && n_read + svm_fifo_max_dequeue (rx_fifo) == rx_fifo->nitems)
1665 {
1666 /* If the peer is not polling send notification */
1667 if (!svm_fifo_has_event (s->rx_fifo))
1668 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1669 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1670 }
1671
1672 return n_read;
1673}
1674
1675void
1676vppcom_session_free_segments (uint32_t session_handle,
1677 vppcom_data_segments_t ds)
1678{
1679 vcl_worker_t *wrk = vcl_worker_get_current ();
1680 vcl_session_t *s;
1681
1682 s = vcl_session_get_w_handle (wrk, session_handle);
1683 if (PREDICT_FALSE (!s || s->is_vep))
1684 return;
1685
1686 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_segment_t *) ds);
1687}
1688
Florin Coras2cba8532018-09-11 16:33:36 -07001689int
1690vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1691{
1692 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001693 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001694 if (first_copy < max_bytes)
1695 {
Dave Barach178cf492018-11-13 16:34:13 -05001696 clib_memcpy_fast (buf + first_copy, ds[1].data,
1697 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001698 }
1699 return 0;
1700}
1701
Florin Coras54693d22018-07-17 10:46:29 -07001702static u8
1703vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1704{
1705 if (!is_ct)
1706 return (e->event_type == FIFO_EVENT_APP_TX
1707 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001708 else
Florin Coras54693d22018-07-17 10:46:29 -07001709 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001710}
1711
Florin Coras42ceddb2018-12-12 10:56:01 -08001712static inline int
1713vppcom_session_write_inline (uint32_t session_handle, void *buf, size_t n,
1714 u8 is_flush)
Dave Wallace543852a2017-08-03 02:11:34 -04001715{
Florin Coras134a9962018-08-28 11:32:04 -07001716 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001717 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001718 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001719 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001720 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001721 svm_msg_q_msg_t msg;
1722 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001723 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001724 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001725
Florin Coras070453d2018-08-24 17:04:27 -07001726 if (PREDICT_FALSE (!buf))
1727 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001728
Florin Coras134a9962018-08-28 11:32:04 -07001729 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001730 if (PREDICT_FALSE (!s))
1731 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001732
Florin Coras460dce62018-07-27 05:45:06 -07001733 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001734 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001735 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
1736 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001737 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001738 }
1739
Florin Coras6d0106e2019-01-29 20:11:58 -08001740 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001741 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001742 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
1743 s->session_index, s->vpp_handle, s->session_state,
1744 vppcom_session_state_str (s->session_state));
1745 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001746 }
1747
Florin Coras0e88e852018-09-17 22:09:02 -07001748 tx_fifo = s->tx_fifo;
1749 is_ct = vcl_session_is_ct (s);
1750 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1751 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001752 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001753 {
Florin Coras54693d22018-07-17 10:46:29 -07001754 if (is_nonblocking)
1755 {
Florin Coras070453d2018-08-24 17:04:27 -07001756 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001757 }
Florin Coras60f1fc12018-08-16 14:57:31 -07001758 while (svm_fifo_is_full (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001759 {
Florin Coras1bcad5c2019-01-09 20:04:38 -08001760 svm_fifo_add_want_tx_ntf (tx_fifo, SVM_FIFO_WANT_TX_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08001761 if (vcl_session_is_closing (s))
1762 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07001763 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001764 if (svm_msg_q_is_empty (mq))
1765 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001766
Florin Coras54693d22018-07-17 10:46:29 -07001767 svm_msg_q_sub_w_lock (mq, &msg);
1768 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001769 svm_msg_q_unlock (mq);
1770
Florin Coras0e88e852018-09-17 22:09:02 -07001771 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001772 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001773 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001774 }
Dave Wallace543852a2017-08-03 02:11:34 -04001775 }
Dave Wallace543852a2017-08-03 02:11:34 -04001776
Florin Coras460dce62018-07-27 05:45:06 -07001777 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1778 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
Florin Coras42ceddb2018-12-12 10:56:01 -08001779 if (is_flush && !vcl_session_is_ct (s))
1780 et = SESSION_IO_EVT_TX_FLUSH;
1781
Florin Coras460dce62018-07-27 05:45:06 -07001782 if (s->is_dgram)
1783 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1784 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1785 else
1786 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1787 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001788
Florin Coras460dce62018-07-27 05:45:06 -07001789 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001790
Florin Coras6d0106e2019-01-29 20:11:58 -08001791 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
1792 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07001793
Florin Coras54693d22018-07-17 10:46:29 -07001794 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04001795}
1796
Florin Coras42ceddb2018-12-12 10:56:01 -08001797int
1798vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
1799{
1800 return vppcom_session_write_inline (session_handle, buf, n,
1801 0 /* is_flush */ );
1802}
1803
Florin Corasb0f662f2018-12-27 14:51:46 -08001804int
1805vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
1806{
1807 return vppcom_session_write_inline (session_handle, buf, n,
1808 1 /* is_flush */ );
1809}
1810
1811
Florin Coras99368312018-08-02 10:45:44 -07001812static vcl_session_t *
Florin Coras134a9962018-08-28 11:32:04 -07001813vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
Florin Coras99368312018-08-02 10:45:44 -07001814{
1815 vcl_session_t *s;
Florin Coras134a9962018-08-28 11:32:04 -07001816 s = vcl_session_get (wrk, f->client_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001817 if (s)
1818 {
1819 /* rx fifo */
1820 if (type == 0 && s->rx_fifo == f)
1821 return s;
1822 /* tx fifo */
1823 if (type == 1 && s->tx_fifo == f)
1824 return s;
1825 }
Florin Coras134a9962018-08-28 11:32:04 -07001826 s = vcl_session_get (wrk, f->master_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001827 if (s)
1828 {
1829 if (type == 0 && s->rx_fifo == f)
1830 return s;
1831 if (type == 1 && s->tx_fifo == f)
1832 return s;
1833 }
1834 return 0;
1835}
1836
Florin Coras6d4bb422018-09-04 22:07:27 -07001837#define vcl_fifo_rx_evt_valid_or_break(_fifo) \
1838if (PREDICT_FALSE (svm_fifo_is_empty (_fifo))) \
1839 { \
1840 svm_fifo_unset_event (_fifo); \
1841 if (svm_fifo_is_empty (_fifo)) \
Florin Coras41c9e042018-09-11 00:10:41 -07001842 break; \
Florin Coras6d4bb422018-09-04 22:07:27 -07001843 } \
1844
Florin Coras86f04502018-09-12 16:08:01 -07001845static void
1846vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
1847 unsigned long n_bits, unsigned long *read_map,
1848 unsigned long *write_map,
1849 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07001850{
1851 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001852 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001853 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07001854 u32 sid;
1855
1856 switch (e->event_type)
1857 {
1858 case FIFO_EVENT_APP_RX:
1859 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1860 sid = e->fifo->client_session_index;
1861 session = vcl_session_get (wrk, sid);
1862 if (!session)
1863 break;
1864 if (sid < n_bits && read_map)
1865 {
David Johnsond9818dd2018-12-14 14:53:41 -05001866 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001867 *bits_set += 1;
1868 }
1869 break;
1870 case FIFO_EVENT_APP_TX:
1871 sid = e->fifo->client_session_index;
1872 session = vcl_session_get (wrk, sid);
1873 if (!session)
1874 break;
1875 if (sid < n_bits && write_map)
1876 {
David Johnsond9818dd2018-12-14 14:53:41 -05001877 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001878 *bits_set += 1;
1879 }
1880 break;
1881 case SESSION_IO_EVT_CT_TX:
1882 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1883 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
1884 if (!session)
1885 break;
1886 sid = session->session_index;
1887 if (sid < n_bits && read_map)
1888 {
David Johnsond9818dd2018-12-14 14:53:41 -05001889 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001890 *bits_set += 1;
1891 }
1892 break;
1893 case SESSION_IO_EVT_CT_RX:
1894 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
1895 if (!session)
1896 break;
1897 sid = session->session_index;
1898 if (sid < n_bits && write_map)
1899 {
David Johnsond9818dd2018-12-14 14:53:41 -05001900 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001901 *bits_set += 1;
1902 }
1903 break;
1904 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08001905 session = vcl_session_accepted (wrk,
1906 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07001907 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08001908 break;
Florin Coras86f04502018-09-12 16:08:01 -07001909 sid = session->session_index;
1910 if (sid < n_bits && read_map)
1911 {
David Johnsond9818dd2018-12-14 14:53:41 -05001912 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001913 *bits_set += 1;
1914 }
1915 break;
1916 case SESSION_CTRL_EVT_CONNECTED:
1917 connected_msg = (session_connected_msg_t *) e->data;
1918 vcl_session_connected_handler (wrk, connected_msg);
1919 break;
1920 case SESSION_CTRL_EVT_DISCONNECTED:
1921 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001922 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
1923 if (!session)
1924 break;
1925 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07001926 if (sid < n_bits && except_map)
1927 {
David Johnsond9818dd2018-12-14 14:53:41 -05001928 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001929 *bits_set += 1;
1930 }
1931 break;
1932 case SESSION_CTRL_EVT_RESET:
1933 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
1934 if (sid < n_bits && except_map)
1935 {
David Johnsond9818dd2018-12-14 14:53:41 -05001936 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001937 *bits_set += 1;
1938 }
1939 break;
Florin Coras30e79c22019-01-02 19:31:22 -08001940 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
1941 vcl_session_worker_update_reply_handler (wrk, e->data);
1942 break;
1943 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
1944 vcl_session_req_worker_update_handler (wrk, e->data);
1945 break;
Florin Coras86f04502018-09-12 16:08:01 -07001946 default:
1947 clib_warning ("unhandled: %u", e->event_type);
1948 break;
1949 }
1950}
1951
1952static int
1953vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
1954 unsigned long n_bits, unsigned long *read_map,
1955 unsigned long *write_map, unsigned long *except_map,
1956 double time_to_wait, u32 * bits_set)
1957{
Florin Coras99368312018-08-02 10:45:44 -07001958 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07001959 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07001960 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07001961
1962 svm_msg_q_lock (mq);
1963 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001964 {
Florin Coras54693d22018-07-17 10:46:29 -07001965 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001966 {
Florin Coras54693d22018-07-17 10:46:29 -07001967 svm_msg_q_unlock (mq);
1968 return 0;
1969 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001970
Florin Coras54693d22018-07-17 10:46:29 -07001971 if (!time_to_wait)
1972 {
1973 svm_msg_q_unlock (mq);
1974 return 0;
1975 }
1976 else if (time_to_wait < 0)
1977 {
1978 svm_msg_q_wait (mq);
1979 }
1980 else
1981 {
1982 if (svm_msg_q_timedwait (mq, time_to_wait))
1983 {
1984 svm_msg_q_unlock (mq);
1985 return 0;
1986 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001987 }
1988 }
Florin Coras134a9962018-08-28 11:32:04 -07001989 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07001990 svm_msg_q_unlock (mq);
1991
Florin Coras134a9962018-08-28 11:32:04 -07001992 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07001993 {
Florin Coras134a9962018-08-28 11:32:04 -07001994 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07001995 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07001996 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
1997 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07001998 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07001999 }
Florin Coras134a9962018-08-28 11:32:04 -07002000 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002001 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002002 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002003}
2004
Florin Coras99368312018-08-02 10:45:44 -07002005static int
Florin Coras294afe22019-01-07 17:49:17 -08002006vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2007 vcl_si_set * read_map, vcl_si_set * write_map,
2008 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002009 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002010{
2011 double total_wait = 0, wait_slice;
2012 vcl_cut_through_registration_t *cr;
2013
Florin Coras294afe22019-01-07 17:49:17 -08002014 time_to_wait = (time_to_wait == -1) ? 1e6 : time_to_wait;
Florin Coras134a9962018-08-28 11:32:04 -07002015 wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
Florin Coras99368312018-08-02 10:45:44 -07002016 do
2017 {
Florin Coras134a9962018-08-28 11:32:04 -07002018 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002019 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002020 pool_foreach (cr, wrk->cut_through_registrations, ({
2021 vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002022 0, bits_set);
2023 }));
2024 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002025 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002026
Florin Coras134a9962018-08-28 11:32:04 -07002027 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002028 write_map, except_map, wait_slice, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002029 total_wait += wait_slice;
2030 if (*bits_set)
2031 return *bits_set;
2032 }
2033 while (total_wait < time_to_wait);
2034
2035 return 0;
2036}
2037
2038static int
Florin Coras294afe22019-01-07 17:49:17 -08002039vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2040 vcl_si_set * read_map, vcl_si_set * write_map,
2041 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002042 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002043{
2044 vcl_mq_evt_conn_t *mqc;
2045 int __clib_unused n_read;
2046 int n_mq_evts, i;
2047 u64 buf;
2048
Florin Coras134a9962018-08-28 11:32:04 -07002049 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2050 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2051 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002052 for (i = 0; i < n_mq_evts; i++)
2053 {
Florin Coras134a9962018-08-28 11:32:04 -07002054 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002055 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002056 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002057 except_map, 0, bits_set);
2058 }
2059
2060 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2061}
2062
Dave Wallace543852a2017-08-03 02:11:34 -04002063int
Florin Coras294afe22019-01-07 17:49:17 -08002064vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2065 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002066{
Florin Coras54693d22018-07-17 10:46:29 -07002067 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002068 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002069 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002070 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002071
Dave Wallace7876d392017-10-19 03:53:57 -04002072 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002073 {
Florin Coras134a9962018-08-28 11:32:04 -07002074 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002075 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002076 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2077 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002078 }
Dave Wallace7876d392017-10-19 03:53:57 -04002079 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002080 {
Florin Coras134a9962018-08-28 11:32:04 -07002081 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002082 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002083 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2084 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002085 }
Dave Wallace7876d392017-10-19 03:53:57 -04002086 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002087 {
Florin Coras134a9962018-08-28 11:32:04 -07002088 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002089 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002090 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2091 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002092 }
2093
Florin Coras54693d22018-07-17 10:46:29 -07002094 if (!n_bits)
2095 return 0;
2096
2097 if (!write_map)
2098 goto check_rd;
2099
2100 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002101 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2102 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002103 {
Florin Coras47c40e22018-11-26 17:01:36 -08002104 if (except_map && sid < minbits)
2105 clib_bitmap_set_no_check (except_map, sid, 1);
2106 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002107 }
2108
2109 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002110 if (!rv)
2111 {
David Johnsond9818dd2018-12-14 14:53:41 -05002112 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002113 bits_set++;
2114 }
Florin Coras294afe22019-01-07 17:49:17 -08002115 else
Florin Coras1bcad5c2019-01-09 20:04:38 -08002116 svm_fifo_add_want_tx_ntf (session->tx_fifo, SVM_FIFO_WANT_TX_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002117 }));
2118
2119check_rd:
2120 if (!read_map)
2121 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002122
Florin Coras134a9962018-08-28 11:32:04 -07002123 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2124 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002125 {
Florin Coras47c40e22018-11-26 17:01:36 -08002126 if (except_map && sid < minbits)
2127 clib_bitmap_set_no_check (except_map, sid, 1);
2128 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002129 }
2130
Florin Coras0ef8ef22019-01-18 08:37:13 -08002131 rv = vcl_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002132 if (rv)
2133 {
David Johnsond9818dd2018-12-14 14:53:41 -05002134 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002135 bits_set++;
2136 }
2137 }));
2138 /* *INDENT-ON* */
2139
2140check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002141
Florin Coras86f04502018-09-12 16:08:01 -07002142 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2143 {
2144 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2145 read_map, write_map, except_map, &bits_set);
2146 }
2147 vec_reset_length (wrk->unhandled_evts_vector);
2148
Florin Coras99368312018-08-02 10:45:44 -07002149 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002150 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002151 time_to_wait, &bits_set);
2152 else
Florin Coras134a9962018-08-28 11:32:04 -07002153 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002154 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002155
Dave Wallace543852a2017-08-03 02:11:34 -04002156 return (bits_set);
2157}
2158
Dave Wallacef7f809c2017-10-03 01:48:42 -04002159static inline void
Florin Coras134a9962018-08-28 11:32:04 -07002160vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002161{
Florin Coras7e12d942018-06-27 14:32:43 -07002162 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002163 vppcom_epoll_t *vep;
Dave Wallace498b3a52017-11-09 13:00:34 -05002164 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002165
Dave Wallace498b3a52017-11-09 13:00:34 -05002166 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002167 return;
2168
2169 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Florin Coras134a9962018-08-28 11:32:04 -07002170 session = vcl_session_get (wrk, vep_idx);
Florin Coras070453d2018-08-24 17:04:27 -07002171 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002172 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002173 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
2174 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002175 goto done;
2176 }
2177 if (PREDICT_FALSE (!session->is_vep))
2178 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002179 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2180 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002181 goto done;
2182 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002183 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05002184 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002185 "{\n"
2186 " is_vep = %u\n"
2187 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002188 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002189 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002190 "}\n", getpid (), vep_idx,
2191 session->is_vep, session->is_vep_session,
Florin Coras134a9962018-08-28 11:32:04 -07002192 vep->next_sh, vep->next_sh,
Dave Wallace498b3a52017-11-09 13:00:34 -05002193 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002194
Florin Coras134a9962018-08-28 11:32:04 -07002195 for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002196 {
Florin Coras134a9962018-08-28 11:32:04 -07002197 session = vcl_session_get (wrk, sid);
Florin Coras070453d2018-08-24 17:04:27 -07002198 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002199 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002200 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002201 goto done;
2202 }
2203 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05002204 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
2205 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002206 else if (PREDICT_FALSE (!session->is_vep_session))
2207 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002208 clib_warning ("VCL<%d>: ERROR: session (%u) "
2209 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002210 goto done;
2211 }
2212 vep = &session->vep;
Florin Coras134a9962018-08-28 11:32:04 -07002213 if (PREDICT_FALSE (vep->vep_sh != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05002214 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002215 "vep_idx (%u)!", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002216 sid, session->vep.vep_sh, vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002217 if (session->is_vep_session)
2218 {
2219 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
2220 "{\n"
2221 " next_sid = 0x%x (%u)\n"
2222 " prev_sid = 0x%x (%u)\n"
2223 " vep_idx = 0x%x (%u)\n"
2224 " ev.events = 0x%x\n"
2225 " ev.data.u64 = 0x%llx\n"
2226 " et_mask = 0x%x\n"
2227 "}\n",
2228 vep_idx, sid, sid,
Florin Coras134a9962018-08-28 11:32:04 -07002229 vep->next_sh, vep->next_sh,
2230 vep->prev_sh, vep->prev_sh,
2231 vep->vep_sh, vep->vep_sh,
Dave Wallace4878cbe2017-11-21 03:45:09 -05002232 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002233 }
2234 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002235
2236done:
Dave Wallace048b1d62018-01-03 22:24:41 -05002237 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
2238 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002239}
2240
2241int
2242vppcom_epoll_create (void)
2243{
Florin Coras134a9962018-08-28 11:32:04 -07002244 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002245 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002246
Florin Coras134a9962018-08-28 11:32:04 -07002247 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002248
2249 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002250 vep_session->vep.vep_sh = ~0;
2251 vep_session->vep.next_sh = ~0;
2252 vep_session->vep.prev_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002253 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002254 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002255
Florin Corasa7a1a222018-12-30 17:11:31 -08002256 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2257 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002258
Florin Corasab2f6db2018-08-31 14:31:41 -07002259 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002260}
2261
2262int
Florin Coras134a9962018-08-28 11:32:04 -07002263vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002264 struct epoll_event *event)
2265{
Florin Coras134a9962018-08-28 11:32:04 -07002266 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002267 vcl_session_t *vep_session;
2268 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002269 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002270
Florin Coras134a9962018-08-28 11:32:04 -07002271 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002272 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002273 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002274 return VPPCOM_EINVAL;
2275 }
2276
Florin Coras134a9962018-08-28 11:32:04 -07002277 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002278 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002279 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002280 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002281 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002282 }
2283 if (PREDICT_FALSE (!vep_session->is_vep))
2284 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002285 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002286 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002287 }
2288
Florin Coras134a9962018-08-28 11:32:04 -07002289 ASSERT (vep_session->vep.vep_sh == ~0);
2290 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002291
Florin Coras134a9962018-08-28 11:32:04 -07002292 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002293 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002294 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002295 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002296 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002297 }
2298 if (PREDICT_FALSE (session->is_vep))
2299 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002300 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002301 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002302 }
2303
2304 switch (op)
2305 {
2306 case EPOLL_CTL_ADD:
2307 if (PREDICT_FALSE (!event))
2308 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002309 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002310 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002311 }
Florin Coras134a9962018-08-28 11:32:04 -07002312 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002313 {
Florin Coras7e12d942018-06-27 14:32:43 -07002314 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002315 next_session = vcl_session_get_w_handle (wrk,
2316 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002317 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002318 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002319 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sid (%u) on "
2320 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002321 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002322 }
Florin Coras134a9962018-08-28 11:32:04 -07002323 ASSERT (next_session->vep.prev_sh == vep_handle);
2324 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002325 }
Florin Coras134a9962018-08-28 11:32:04 -07002326 session->vep.next_sh = vep_session->vep.next_sh;
2327 session->vep.prev_sh = vep_handle;
2328 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002329 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2330 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002331 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002332 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002333 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002334
Florin Coras1bcad5c2019-01-09 20:04:38 -08002335 if (session->tx_fifo)
2336 svm_fifo_add_want_tx_ntf (session->tx_fifo,
2337 SVM_FIFO_WANT_TX_NOTIF_IF_FULL);
2338
Florin Corasa7a1a222018-12-30 17:11:31 -08002339 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2340 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002341 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002342 break;
2343
2344 case EPOLL_CTL_MOD:
2345 if (PREDICT_FALSE (!event))
2346 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002347 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002348 rv = VPPCOM_EINVAL;
2349 goto done;
2350 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002351 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002352 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002353 VDBG (0, "sid %u EPOLL_CTL_MOD: not a vep session!",
2354 session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002355 rv = VPPCOM_EINVAL;
2356 goto done;
2357 }
Florin Coras134a9962018-08-28 11:32:04 -07002358 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002359 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002360 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2361 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002362 rv = VPPCOM_EINVAL;
2363 goto done;
2364 }
2365 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2366 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002367 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2368 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002369 break;
2370
2371 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002372 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002373 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002374 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002375 rv = VPPCOM_EINVAL;
2376 goto done;
2377 }
Florin Coras134a9962018-08-28 11:32:04 -07002378 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002379 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002380 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2381 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002382 rv = VPPCOM_EINVAL;
2383 goto done;
2384 }
2385
2386 vep_session->wait_cont_idx =
Florin Coras134a9962018-08-28 11:32:04 -07002387 (vep_session->wait_cont_idx == session_handle) ?
2388 session->vep.next_sh : vep_session->wait_cont_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002389
Florin Coras134a9962018-08-28 11:32:04 -07002390 if (session->vep.prev_sh == vep_handle)
2391 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002392 else
2393 {
Florin Coras7e12d942018-06-27 14:32:43 -07002394 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002395 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002396 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002397 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002398 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sid (%u) on sid (%u)!",
2399 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002400 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002401 }
Florin Coras134a9962018-08-28 11:32:04 -07002402 ASSERT (prev_session->vep.next_sh == session_handle);
2403 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002404 }
Florin Coras134a9962018-08-28 11:32:04 -07002405 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002406 {
Florin Coras7e12d942018-06-27 14:32:43 -07002407 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002408 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002409 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002410 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002411 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sid (%u) on sid (%u)!",
2412 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002413 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002414 }
Florin Coras134a9962018-08-28 11:32:04 -07002415 ASSERT (next_session->vep.prev_sh == session_handle);
2416 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002417 }
2418
2419 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002420 session->vep.next_sh = ~0;
2421 session->vep.prev_sh = ~0;
2422 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002423 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002424
2425 if (session->tx_fifo)
2426 svm_fifo_del_want_tx_ntf (session->tx_fifo, SVM_FIFO_NO_TX_NOTIF);
2427
Florin Corasa7a1a222018-12-30 17:11:31 -08002428 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sid %u!", vep_handle,
2429 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002430 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002431 break;
2432
2433 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002434 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002435 rv = VPPCOM_EINVAL;
2436 }
2437
Florin Coras134a9962018-08-28 11:32:04 -07002438 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002439
2440done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002441 return rv;
2442}
2443
Florin Coras86f04502018-09-12 16:08:01 -07002444static inline void
2445vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2446 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002447{
2448 session_disconnected_msg_t *disconnected_msg;
2449 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002450 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002451 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002452 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002453 u8 add_event = 0;
2454
2455 switch (e->event_type)
2456 {
2457 case FIFO_EVENT_APP_RX:
2458 ASSERT (e->fifo->client_thread_index == vcl_get_worker_index ());
2459 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2460 sid = e->fifo->client_session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002461 if (!(session = vcl_session_get (wrk, sid)))
2462 break;
Florin Coras86f04502018-09-12 16:08:01 -07002463 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002464 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002465 break;
2466 add_event = 1;
2467 events[*num_ev].events |= EPOLLIN;
2468 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002469 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002470 break;
2471 case FIFO_EVENT_APP_TX:
2472 sid = e->fifo->client_session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002473 if (!(session = vcl_session_get (wrk, sid)))
2474 break;
Florin Coras86f04502018-09-12 16:08:01 -07002475 session_events = session->vep.ev.events;
2476 if (!(EPOLLOUT & session_events))
2477 break;
2478 add_event = 1;
2479 events[*num_ev].events |= EPOLLOUT;
2480 session_evt_data = session->vep.ev.data.u64;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002481 svm_fifo_reset_tx_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002482 break;
2483 case SESSION_IO_EVT_CT_TX:
2484 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2485 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
Florin Corasfa915f82018-12-26 16:29:06 -08002486 if (PREDICT_FALSE (!session))
2487 break;
Florin Coras86f04502018-09-12 16:08:01 -07002488 sid = session->session_index;
2489 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002490 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002491 break;
2492 add_event = 1;
2493 events[*num_ev].events |= EPOLLIN;
2494 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002495 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002496 break;
2497 case SESSION_IO_EVT_CT_RX:
2498 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
Florin Corasfa915f82018-12-26 16:29:06 -08002499 if (PREDICT_FALSE (!session))
2500 break;
Florin Coras86f04502018-09-12 16:08:01 -07002501 sid = session->session_index;
2502 session_events = session->vep.ev.events;
2503 if (!(EPOLLOUT & session_events))
2504 break;
2505 add_event = 1;
2506 events[*num_ev].events |= EPOLLOUT;
2507 session_evt_data = session->vep.ev.data.u64;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002508 svm_fifo_reset_tx_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002509 break;
2510 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002511 session = vcl_session_accepted (wrk,
2512 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002513 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002514 break;
Florin Coras86f04502018-09-12 16:08:01 -07002515
Florin Coras86f04502018-09-12 16:08:01 -07002516 session_events = session->vep.ev.events;
2517 if (!(EPOLLIN & session_events))
2518 break;
2519
2520 add_event = 1;
2521 events[*num_ev].events |= EPOLLIN;
2522 session_evt_data = session->vep.ev.data.u64;
2523 break;
2524 case SESSION_CTRL_EVT_CONNECTED:
2525 connected_msg = (session_connected_msg_t *) e->data;
2526 vcl_session_connected_handler (wrk, connected_msg);
2527 /* Generate EPOLLOUT because there's no connected event */
2528 sid = vcl_session_index_from_vpp_handle (wrk, connected_msg->handle);
Florin Corasfa915f82018-12-26 16:29:06 -08002529 if (!(session = vcl_session_get (wrk, sid)))
2530 break;
Florin Coras86f04502018-09-12 16:08:01 -07002531 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002532 if (!(EPOLLOUT & session_events))
2533 break;
2534 add_event = 1;
2535 events[*num_ev].events |= EPOLLOUT;
2536 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002537 break;
2538 case SESSION_CTRL_EVT_DISCONNECTED:
2539 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002540 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2541 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002542 break;
Florin Coras72f77822019-01-22 19:05:52 -08002543 session_events = session->vep.ev.events;
2544 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2545 break;
Florin Coras86f04502018-09-12 16:08:01 -07002546 add_event = 1;
2547 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2548 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002549 break;
2550 case SESSION_CTRL_EVT_RESET:
2551 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2552 if (!(session = vcl_session_get (wrk, sid)))
2553 break;
Florin Coras72f77822019-01-22 19:05:52 -08002554 session_events = session->vep.ev.events;
2555 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2556 break;
Florin Coras86f04502018-09-12 16:08:01 -07002557 add_event = 1;
2558 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2559 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002560 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002561 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2562 vcl_session_req_worker_update_handler (wrk, e->data);
2563 break;
2564 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2565 vcl_session_worker_update_reply_handler (wrk, e->data);
2566 break;
Florin Coras86f04502018-09-12 16:08:01 -07002567 default:
2568 VDBG (0, "unhandled: %u", e->event_type);
2569 break;
2570 }
2571
2572 if (add_event)
2573 {
2574 events[*num_ev].data.u64 = session_evt_data;
2575 if (EPOLLONESHOT & session_events)
2576 {
2577 session = vcl_session_get (wrk, sid);
2578 session->vep.ev.events = 0;
2579 }
2580 *num_ev += 1;
2581 }
2582}
2583
2584static int
2585vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2586 struct epoll_event *events, u32 maxevents,
2587 double wait_for_time, u32 * num_ev)
2588{
Florin Coras99368312018-08-02 10:45:44 -07002589 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002590 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002591 int i;
2592
Florin Coras539663c2018-09-28 14:59:37 -07002593 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2594 goto handle_dequeued;
2595
Florin Coras54693d22018-07-17 10:46:29 -07002596 svm_msg_q_lock (mq);
2597 if (svm_msg_q_is_empty (mq))
2598 {
2599 if (!wait_for_time)
2600 {
2601 svm_msg_q_unlock (mq);
2602 return 0;
2603 }
2604 else if (wait_for_time < 0)
2605 {
2606 svm_msg_q_wait (mq);
2607 }
2608 else
2609 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002610 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002611 {
2612 svm_msg_q_unlock (mq);
2613 return 0;
2614 }
2615 }
2616 }
Florin Coras134a9962018-08-28 11:32:04 -07002617 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002618 svm_msg_q_unlock (mq);
2619
Florin Coras539663c2018-09-28 14:59:37 -07002620handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002621 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002622 {
Florin Coras134a9962018-08-28 11:32:04 -07002623 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002624 e = svm_msg_q_msg_data (mq, msg);
Florin Corasaa27eb92018-10-13 12:20:01 -07002625 if (*num_ev < maxevents)
2626 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2627 else
2628 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras99368312018-08-02 10:45:44 -07002629 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002630 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002631 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002632 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002633 return *num_ev;
2634}
2635
Florin Coras99368312018-08-02 10:45:44 -07002636static int
Florin Coras134a9962018-08-28 11:32:04 -07002637vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002638 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002639{
2640 vcl_cut_through_registration_t *cr;
2641 double total_wait = 0, wait_slice;
Florin Coras99368312018-08-02 10:45:44 -07002642 int rv;
2643
Florin Coras72f77822019-01-22 19:05:52 -08002644 wait_for_time = (wait_for_time == -1) ? (double) 1e6 : wait_for_time;
Florin Coras134a9962018-08-28 11:32:04 -07002645 wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
Florin Coras99368312018-08-02 10:45:44 -07002646
2647 do
2648 {
Florin Coras134a9962018-08-28 11:32:04 -07002649 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002650 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002651 pool_foreach (cr, wrk->cut_through_registrations, ({
Florin Coras86f04502018-09-12 16:08:01 -07002652 vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002653 }));
2654 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002655 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002656
Florin Coras134a9962018-08-28 11:32:04 -07002657 rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
Florin Coras86f04502018-09-12 16:08:01 -07002658 maxevents, n_evts ? 0 : wait_slice,
2659 &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002660 if (rv)
2661 total_wait += wait_slice;
Florin Coras86f04502018-09-12 16:08:01 -07002662 if (n_evts)
2663 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002664 }
2665 while (total_wait < wait_for_time);
Florin Coras86f04502018-09-12 16:08:01 -07002666 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002667}
2668
2669static int
Florin Coras134a9962018-08-28 11:32:04 -07002670vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002671 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002672{
2673 vcl_mq_evt_conn_t *mqc;
2674 int __clib_unused n_read;
2675 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002676 u64 buf;
2677
Florin Coras134a9962018-08-28 11:32:04 -07002678 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002679again:
Florin Coras134a9962018-08-28 11:32:04 -07002680 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2681 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002682 for (i = 0; i < n_mq_evts; i++)
2683 {
Florin Coras134a9962018-08-28 11:32:04 -07002684 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002685 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002686 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002687 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002688 if (!n_evts && n_mq_evts > 0)
2689 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002690
2691 return (int) n_evts;
2692}
2693
Dave Wallacef7f809c2017-10-03 01:48:42 -04002694int
Florin Coras134a9962018-08-28 11:32:04 -07002695vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002696 int maxevents, double wait_for_time)
2697{
Florin Coras134a9962018-08-28 11:32:04 -07002698 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002699 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002700 u32 n_evts = 0;
2701 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002702
2703 if (PREDICT_FALSE (maxevents <= 0))
2704 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002705 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002706 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002707 return VPPCOM_EINVAL;
2708 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002709
Florin Coras134a9962018-08-28 11:32:04 -07002710 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002711 if (!vep_session)
2712 return VPPCOM_EBADFD;
2713
Florin Coras54693d22018-07-17 10:46:29 -07002714 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002715 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002716 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002717 getpid (), vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002718 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002719 }
Florin Coras54693d22018-07-17 10:46:29 -07002720
2721 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002722
Florin Coras86f04502018-09-12 16:08:01 -07002723 if (vec_len (wrk->unhandled_evts_vector))
2724 {
2725 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2726 {
2727 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2728 events, &n_evts);
2729 if (n_evts == maxevents)
2730 {
2731 i += 1;
2732 break;
2733 }
2734 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002735
Florin Coras86f04502018-09-12 16:08:01 -07002736 vec_delete (wrk->unhandled_evts_vector, i, 0);
2737 }
2738
2739 if (vcm->cfg.use_mq_eventfd)
2740 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2741 wait_for_time);
2742
2743 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2744 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002745}
2746
Dave Wallace35830af2017-10-09 01:43:42 -04002747int
Florin Coras134a9962018-08-28 11:32:04 -07002748vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002749 void *buffer, uint32_t * buflen)
2750{
Florin Coras134a9962018-08-28 11:32:04 -07002751 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002752 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002753 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08002754 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07002755 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002756
Florin Coras134a9962018-08-28 11:32:04 -07002757 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002758 if (!session)
2759 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002760
Dave Wallace35830af2017-10-09 01:43:42 -04002761 switch (op)
2762 {
2763 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002764 rv = vcl_session_read_ready (session);
Florin Coras7baeb712019-01-04 17:05:43 -08002765 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d", rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002766 break;
2767
Dave Wallace227867f2017-11-13 21:21:53 -05002768 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002769 rv = vcl_session_write_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002770 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
Florin Coras134a9962018-08-28 11:32:04 -07002771 getpid (), session_handle, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002772 break;
2773
2774 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002775 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002776 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002777 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2778 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002779 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002780 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2781 "is_nonblocking = %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002782 session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002783 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002784 }
2785 else
2786 rv = VPPCOM_EINVAL;
2787 break;
2788
2789 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002790 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002791 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002792 if (*flags & O_NONBLOCK)
2793 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2794 else
2795 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2796
Florin Coras0d427d82018-06-27 03:24:07 -07002797 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2798 " is_nonblocking = %u",
Florin Coras134a9962018-08-28 11:32:04 -07002799 getpid (), session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002800 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002801 }
2802 else
2803 rv = VPPCOM_EINVAL;
2804 break;
2805
2806 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002807 if (PREDICT_TRUE (buffer && buflen &&
2808 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002809 {
Florin Coras7e12d942018-06-27 14:32:43 -07002810 ep->is_ip4 = session->transport.is_ip4;
2811 ep->port = session->transport.rmt_port;
2812 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002813 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2814 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002815 else
Dave Barach178cf492018-11-13 16:34:13 -05002816 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2817 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002818 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002819 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2820 "addr = %U, port %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002821 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002822 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002823 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2824 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002825 }
2826 else
2827 rv = VPPCOM_EINVAL;
2828 break;
2829
2830 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002831 if (PREDICT_TRUE (buffer && buflen &&
2832 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002833 {
Florin Coras7e12d942018-06-27 14:32:43 -07002834 ep->is_ip4 = session->transport.is_ip4;
2835 ep->port = session->transport.lcl_port;
2836 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002837 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
2838 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002839 else
Dave Barach178cf492018-11-13 16:34:13 -05002840 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
2841 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002842 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002843 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2844 " addr = %U port %d", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002845 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002846 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002847 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2848 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002849 }
2850 else
2851 rv = VPPCOM_EINVAL;
2852 break;
Stevenb5a11602017-10-11 09:59:30 -07002853
Dave Wallace048b1d62018-01-03 22:24:41 -05002854 case VPPCOM_ATTR_GET_LIBC_EPFD:
2855 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002856 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2857 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002858 break;
2859
2860 case VPPCOM_ATTR_SET_LIBC_EPFD:
2861 if (PREDICT_TRUE (buffer && buflen &&
2862 (*buflen == sizeof (session->libc_epfd))))
2863 {
2864 session->libc_epfd = *(int *) buffer;
2865 *buflen = sizeof (session->libc_epfd);
2866
Florin Coras0d427d82018-06-27 03:24:07 -07002867 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2868 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002869 }
2870 else
2871 rv = VPPCOM_EINVAL;
2872 break;
2873
2874 case VPPCOM_ATTR_GET_PROTOCOL:
2875 if (buffer && buflen && (*buflen >= sizeof (int)))
2876 {
Florin Coras7e12d942018-06-27 14:32:43 -07002877 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002878 *buflen = sizeof (int);
2879
Florin Coras0d427d82018-06-27 03:24:07 -07002880 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2881 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2882 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002883 }
2884 else
2885 rv = VPPCOM_EINVAL;
2886 break;
2887
2888 case VPPCOM_ATTR_GET_LISTEN:
2889 if (buffer && buflen && (*buflen >= sizeof (int)))
2890 {
2891 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2892 VCL_SESS_ATTR_LISTEN);
2893 *buflen = sizeof (int);
2894
Florin Coras0d427d82018-06-27 03:24:07 -07002895 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
2896 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002897 }
2898 else
2899 rv = VPPCOM_EINVAL;
2900 break;
2901
2902 case VPPCOM_ATTR_GET_ERROR:
2903 if (buffer && buflen && (*buflen >= sizeof (int)))
2904 {
2905 *(int *) buffer = 0;
2906 *buflen = sizeof (int);
2907
Florin Coras0d427d82018-06-27 03:24:07 -07002908 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
2909 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002910 }
2911 else
2912 rv = VPPCOM_EINVAL;
2913 break;
2914
2915 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
2916 if (buffer && buflen && (*buflen >= sizeof (u32)))
2917 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002918
2919 /* VPP-TBD */
2920 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002921 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002922 vcm->cfg.tx_fifo_size);
2923 *buflen = sizeof (u32);
2924
Florin Coras0d427d82018-06-27 03:24:07 -07002925 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
2926 "buflen %d, #VPP-TBD#", getpid (),
2927 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002928 }
2929 else
2930 rv = VPPCOM_EINVAL;
2931 break;
2932
2933 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
2934 if (buffer && buflen && (*buflen == sizeof (u32)))
2935 {
2936 /* VPP-TBD */
2937 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002938 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
2939 "buflen %d, #VPP-TBD#", getpid (),
2940 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002941 }
2942 else
2943 rv = VPPCOM_EINVAL;
2944 break;
2945
2946 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
2947 if (buffer && buflen && (*buflen >= sizeof (u32)))
2948 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002949
2950 /* VPP-TBD */
2951 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002952 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05002953 vcm->cfg.rx_fifo_size);
2954 *buflen = sizeof (u32);
2955
Florin Coras0d427d82018-06-27 03:24:07 -07002956 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
2957 "buflen %d, #VPP-TBD#", getpid (),
2958 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002959 }
2960 else
2961 rv = VPPCOM_EINVAL;
2962 break;
2963
2964 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
2965 if (buffer && buflen && (*buflen == sizeof (u32)))
2966 {
2967 /* VPP-TBD */
2968 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07002969 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
2970 "buflen %d, #VPP-TBD#", getpid (),
2971 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002972 }
2973 else
2974 rv = VPPCOM_EINVAL;
2975 break;
2976
2977 case VPPCOM_ATTR_GET_REUSEADDR:
2978 if (buffer && buflen && (*buflen >= sizeof (int)))
2979 {
2980 /* VPP-TBD */
2981 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
2982 VCL_SESS_ATTR_REUSEADDR);
2983 *buflen = sizeof (int);
2984
Florin Coras0d427d82018-06-27 03:24:07 -07002985 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
2986 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002987 }
2988 else
2989 rv = VPPCOM_EINVAL;
2990 break;
2991
Stevenb5a11602017-10-11 09:59:30 -07002992 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002993 if (buffer && buflen && (*buflen == sizeof (int)) &&
2994 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
2995 {
2996 /* VPP-TBD */
2997 if (*(int *) buffer)
2998 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
2999 else
3000 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3001
Florin Coras0d427d82018-06-27 03:24:07 -07003002 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
3003 " #VPP-TBD#", getpid (),
3004 VCL_SESS_ATTR_TEST (session->attr,
3005 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003006 }
3007 else
3008 rv = VPPCOM_EINVAL;
3009 break;
3010
3011 case VPPCOM_ATTR_GET_REUSEPORT:
3012 if (buffer && buflen && (*buflen >= sizeof (int)))
3013 {
3014 /* VPP-TBD */
3015 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3016 VCL_SESS_ATTR_REUSEPORT);
3017 *buflen = sizeof (int);
3018
Florin Coras0d427d82018-06-27 03:24:07 -07003019 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
3020 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003021 }
3022 else
3023 rv = VPPCOM_EINVAL;
3024 break;
3025
3026 case VPPCOM_ATTR_SET_REUSEPORT:
3027 if (buffer && buflen && (*buflen == sizeof (int)) &&
3028 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3029 {
3030 /* VPP-TBD */
3031 if (*(int *) buffer)
3032 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3033 else
3034 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3035
Florin Coras0d427d82018-06-27 03:24:07 -07003036 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
3037 " #VPP-TBD#", getpid (),
3038 VCL_SESS_ATTR_TEST (session->attr,
3039 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003040 }
3041 else
3042 rv = VPPCOM_EINVAL;
3043 break;
3044
3045 case VPPCOM_ATTR_GET_BROADCAST:
3046 if (buffer && buflen && (*buflen >= sizeof (int)))
3047 {
3048 /* VPP-TBD */
3049 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3050 VCL_SESS_ATTR_BROADCAST);
3051 *buflen = sizeof (int);
3052
Florin Coras0d427d82018-06-27 03:24:07 -07003053 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
3054 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003055 }
3056 else
3057 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003058 break;
3059
3060 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003061 if (buffer && buflen && (*buflen == sizeof (int)))
3062 {
3063 /* VPP-TBD */
3064 if (*(int *) buffer)
3065 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3066 else
3067 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3068
Florin Coras0d427d82018-06-27 03:24:07 -07003069 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
3070 "#VPP-TBD#", getpid (),
3071 VCL_SESS_ATTR_TEST (session->attr,
3072 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003073 }
3074 else
3075 rv = VPPCOM_EINVAL;
3076 break;
3077
3078 case VPPCOM_ATTR_GET_V6ONLY:
3079 if (buffer && buflen && (*buflen >= sizeof (int)))
3080 {
3081 /* VPP-TBD */
3082 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3083 VCL_SESS_ATTR_V6ONLY);
3084 *buflen = sizeof (int);
3085
Florin Coras0d427d82018-06-27 03:24:07 -07003086 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
3087 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003088 }
3089 else
3090 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003091 break;
3092
3093 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003094 if (buffer && buflen && (*buflen == sizeof (int)))
3095 {
3096 /* VPP-TBD */
3097 if (*(int *) buffer)
3098 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3099 else
3100 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3101
Florin Coras0d427d82018-06-27 03:24:07 -07003102 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
3103 "#VPP-TBD#", getpid (),
3104 VCL_SESS_ATTR_TEST (session->attr,
3105 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003106 }
3107 else
3108 rv = VPPCOM_EINVAL;
3109 break;
3110
3111 case VPPCOM_ATTR_GET_KEEPALIVE:
3112 if (buffer && buflen && (*buflen >= sizeof (int)))
3113 {
3114 /* VPP-TBD */
3115 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3116 VCL_SESS_ATTR_KEEPALIVE);
3117 *buflen = sizeof (int);
3118
Florin Coras0d427d82018-06-27 03:24:07 -07003119 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
3120 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003121 }
3122 else
3123 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003124 break;
Stevenbccd3392017-10-12 20:42:21 -07003125
3126 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003127 if (buffer && buflen && (*buflen == sizeof (int)))
3128 {
3129 /* VPP-TBD */
3130 if (*(int *) buffer)
3131 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3132 else
3133 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3134
Florin Coras0d427d82018-06-27 03:24:07 -07003135 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
3136 "#VPP-TBD#", getpid (),
3137 VCL_SESS_ATTR_TEST (session->attr,
3138 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003139 }
3140 else
3141 rv = VPPCOM_EINVAL;
3142 break;
3143
3144 case VPPCOM_ATTR_GET_TCP_NODELAY:
3145 if (buffer && buflen && (*buflen >= sizeof (int)))
3146 {
3147 /* VPP-TBD */
3148 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3149 VCL_SESS_ATTR_TCP_NODELAY);
3150 *buflen = sizeof (int);
3151
Florin Coras0d427d82018-06-27 03:24:07 -07003152 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
3153 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003154 }
3155 else
3156 rv = VPPCOM_EINVAL;
3157 break;
3158
3159 case VPPCOM_ATTR_SET_TCP_NODELAY:
3160 if (buffer && buflen && (*buflen == sizeof (int)))
3161 {
3162 /* VPP-TBD */
3163 if (*(int *) buffer)
3164 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3165 else
3166 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3167
Florin Coras0d427d82018-06-27 03:24:07 -07003168 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
3169 "#VPP-TBD#", getpid (),
3170 VCL_SESS_ATTR_TEST (session->attr,
3171 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003172 }
3173 else
3174 rv = VPPCOM_EINVAL;
3175 break;
3176
3177 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3178 if (buffer && buflen && (*buflen >= sizeof (int)))
3179 {
3180 /* VPP-TBD */
3181 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3182 VCL_SESS_ATTR_TCP_KEEPIDLE);
3183 *buflen = sizeof (int);
3184
Florin Coras0d427d82018-06-27 03:24:07 -07003185 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
3186 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003187 }
3188 else
3189 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003190 break;
3191
3192 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003193 if (buffer && buflen && (*buflen == sizeof (int)))
3194 {
3195 /* VPP-TBD */
3196 if (*(int *) buffer)
3197 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3198 else
3199 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3200
Florin Coras0d427d82018-06-27 03:24:07 -07003201 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
3202 "#VPP-TBD#", getpid (),
3203 VCL_SESS_ATTR_TEST (session->attr,
3204 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003205 }
3206 else
3207 rv = VPPCOM_EINVAL;
3208 break;
3209
3210 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3211 if (buffer && buflen && (*buflen >= sizeof (int)))
3212 {
3213 /* VPP-TBD */
3214 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3215 VCL_SESS_ATTR_TCP_KEEPINTVL);
3216 *buflen = sizeof (int);
3217
Florin Coras0d427d82018-06-27 03:24:07 -07003218 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
3219 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003220 }
3221 else
3222 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003223 break;
3224
3225 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003226 if (buffer && buflen && (*buflen == sizeof (int)))
3227 {
3228 /* VPP-TBD */
3229 if (*(int *) buffer)
3230 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3231 else
3232 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3233
Florin Coras0d427d82018-06-27 03:24:07 -07003234 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
3235 "#VPP-TBD#", getpid (),
3236 VCL_SESS_ATTR_TEST (session->attr,
3237 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003238 }
3239 else
3240 rv = VPPCOM_EINVAL;
3241 break;
3242
3243 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3244 if (buffer && buflen && (*buflen >= sizeof (u32)))
3245 {
3246 /* VPP-TBD */
3247 *(u32 *) buffer = session->user_mss;
3248 *buflen = sizeof (int);
3249
Florin Coras0d427d82018-06-27 03:24:07 -07003250 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3251 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003252 }
3253 else
3254 rv = VPPCOM_EINVAL;
3255 break;
3256
3257 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3258 if (buffer && buflen && (*buflen == sizeof (u32)))
3259 {
3260 /* VPP-TBD */
3261 session->user_mss = *(u32 *) buffer;
3262
Florin Coras0d427d82018-06-27 03:24:07 -07003263 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3264 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003265 }
3266 else
3267 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003268 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003269
Florin Coras7baeb712019-01-04 17:05:43 -08003270 case VPPCOM_ATTR_SET_SHUT:
3271 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3272 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3273 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3274 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3275 break;
3276
3277 case VPPCOM_ATTR_GET_SHUT:
3278 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3279 tmp_flags = 1;
3280 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3281 tmp_flags |= 2;
3282 if (tmp_flags == 1)
3283 *(int *) buffer = SHUT_RD;
3284 else if (tmp_flags == 2)
3285 *(int *) buffer = SHUT_WR;
3286 else if (tmp_flags == 3)
3287 *(int *) buffer = SHUT_RDWR;
3288 *buflen = sizeof (int);
3289 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003290 default:
3291 rv = VPPCOM_EINVAL;
3292 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003293 }
3294
Dave Wallace35830af2017-10-09 01:43:42 -04003295 return rv;
3296}
3297
Stevenac1f96d2017-10-24 16:03:58 -07003298int
Florin Coras134a9962018-08-28 11:32:04 -07003299vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003300 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3301{
Florin Coras134a9962018-08-28 11:32:04 -07003302 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003303 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003304 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003305
3306 if (ep)
3307 {
Florin Coras134a9962018-08-28 11:32:04 -07003308 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003309 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003310 {
Florin Coras0d427d82018-06-27 03:24:07 -07003311 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
Florin Coras134a9962018-08-28 11:32:04 -07003312 getpid (), session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003313 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003314 }
Florin Coras7e12d942018-06-27 14:32:43 -07003315 ep->is_ip4 = session->transport.is_ip4;
3316 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003317 }
Steven58f464e2017-10-25 12:33:12 -07003318
3319 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003320 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003321 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003322 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003323 else
3324 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003325 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003326 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003327 }
3328
Florin Coras99368312018-08-02 10:45:44 -07003329 if (ep)
3330 {
3331 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003332 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3333 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003334 else
Dave Barach178cf492018-11-13 16:34:13 -05003335 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3336 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003337 }
Florin Coras460dce62018-07-27 05:45:06 -07003338
Stevenac1f96d2017-10-24 16:03:58 -07003339 return rv;
3340}
3341
3342int
Florin Coras134a9962018-08-28 11:32:04 -07003343vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003344 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3345{
Dave Wallace617dffa2017-10-26 14:47:06 -04003346 if (!buffer)
3347 return VPPCOM_EINVAL;
3348
3349 if (ep)
3350 {
3351 // TBD
3352 return VPPCOM_EINVAL;
3353 }
3354
3355 if (flags)
3356 {
3357 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003358 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3359 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003360 }
3361
Florin Coras42ceddb2018-12-12 10:56:01 -08003362 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003363}
3364
Dave Wallace048b1d62018-01-03 22:24:41 -05003365int
3366vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3367{
Florin Coras134a9962018-08-28 11:32:04 -07003368 vcl_worker_t *wrk = vcl_worker_get_current ();
3369 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003370 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003371 svm_msg_q_msg_t msg;
3372 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003373 int rv, num_ev = 0;
3374
Florin Coras0d427d82018-06-27 03:24:07 -07003375 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3376 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003377
3378 if (!vp)
3379 return VPPCOM_EFAULT;
3380
3381 do
3382 {
Florin Coras7e12d942018-06-27 14:32:43 -07003383 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003384
Florin Coras6917b942018-11-13 22:44:54 -08003385 /* Dequeue all events and drop all unhandled io events */
3386 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3387 {
3388 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3389 vcl_handle_mq_event (wrk, e);
3390 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3391 }
3392 vec_reset_length (wrk->unhandled_evts_vector);
3393
Dave Wallace048b1d62018-01-03 22:24:41 -05003394 for (i = 0; i < n_sids; i++)
3395 {
Florin Coras7baeb712019-01-04 17:05:43 -08003396 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003397 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003398 {
3399 vp[i].revents = POLLHUP;
3400 num_ev++;
3401 continue;
3402 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003403
Florin Coras6917b942018-11-13 22:44:54 -08003404 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003405
3406 if (POLLIN & vp[i].events)
3407 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003408 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003409 if (rv > 0)
3410 {
Florin Coras6917b942018-11-13 22:44:54 -08003411 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003412 num_ev++;
3413 }
3414 else if (rv < 0)
3415 {
3416 switch (rv)
3417 {
3418 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003419 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003420 break;
3421
3422 default:
Florin Coras6917b942018-11-13 22:44:54 -08003423 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003424 break;
3425 }
3426 num_ev++;
3427 }
3428 }
3429
3430 if (POLLOUT & vp[i].events)
3431 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003432 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003433 if (rv > 0)
3434 {
Florin Coras6917b942018-11-13 22:44:54 -08003435 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003436 num_ev++;
3437 }
3438 else if (rv < 0)
3439 {
3440 switch (rv)
3441 {
3442 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003443 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003444 break;
3445
3446 default:
Florin Coras6917b942018-11-13 22:44:54 -08003447 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003448 break;
3449 }
3450 num_ev++;
3451 }
3452 }
3453
Dave Wallace7e607a72018-06-18 18:41:32 -04003454 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003455 {
Florin Coras6917b942018-11-13 22:44:54 -08003456 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003457 num_ev++;
3458 }
3459 }
3460 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003461 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003462 }
3463 while ((num_ev == 0) && keep_trying);
3464
3465 if (VPPCOM_DEBUG > 3)
3466 {
3467 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3468 for (i = 0; i < n_sids; i++)
3469 {
3470 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
Florin Coras7baeb712019-01-04 17:05:43 -08003471 ".revents 0x%x", getpid (), i, vp[i].sh, vp[i].sh,
Florin Coras6917b942018-11-13 22:44:54 -08003472 vp[i].events, vp[i].revents);
Dave Wallace048b1d62018-01-03 22:24:41 -05003473 }
3474 }
3475 return num_ev;
3476}
3477
Florin Coras99368312018-08-02 10:45:44 -07003478int
3479vppcom_mq_epoll_fd (void)
3480{
Florin Coras134a9962018-08-28 11:32:04 -07003481 vcl_worker_t *wrk = vcl_worker_get_current ();
3482 return wrk->mqs_epfd;
3483}
3484
3485int
Florin Coras30e79c22019-01-02 19:31:22 -08003486vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003487{
3488 return session_handle & 0xFFFFFF;
3489}
3490
3491int
Florin Coras30e79c22019-01-02 19:31:22 -08003492vppcom_session_worker (vcl_session_handle_t session_handle)
3493{
3494 return session_handle >> 24;
3495}
3496
3497int
Florin Coras134a9962018-08-28 11:32:04 -07003498vppcom_worker_register (void)
3499{
Florin Coras47c40e22018-11-26 17:01:36 -08003500 if (!vcl_worker_alloc_and_init ())
3501 return VPPCOM_EEXIST;
3502
3503 if (vcl_worker_set_bapi ())
3504 return VPPCOM_EEXIST;
3505
3506 if (vcl_worker_register_with_vpp ())
3507 return VPPCOM_EEXIST;
3508
3509 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003510}
3511
Florin Corasdfe4cf42018-11-28 22:13:45 -08003512int
3513vppcom_worker_index (void)
3514{
3515 return vcl_get_worker_index ();
3516}
3517
Florin Corase0982e52019-01-25 13:19:56 -08003518int
3519vppcom_worker_mqs_epfd (void)
3520{
3521 vcl_worker_t *wrk = vcl_worker_get_current ();
3522 if (!vcm->cfg.use_mq_eventfd)
3523 return -1;
3524 return wrk->mqs_epfd;
3525}
3526
Dave Wallacee22aa742017-10-20 12:30:38 -04003527/*
3528 * fd.io coding-style-patch-verification: ON
3529 *
3530 * Local Variables:
3531 * eval: (c-set-style "gnu")
3532 * End:
3533 */