blob: 70afdce78325e12505d18a6f46969365fed05630 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Dave Wallace33e002b2017-09-06 01:20:02 -04002 * Copyright (c) 2017 Cisco and/or its affiliates.
Dave Wallace543852a2017-08-03 02:11:34 -04003 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this
5 * You may obtain a copy of the License at:
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15
16#include <stdio.h>
17#include <stdlib.h>
Dave Wallace543852a2017-08-03 02:11:34 -040018#include <svm/svm_fifo_segment.h>
Dave Wallace5c7cf1c2017-10-24 04:12:18 -040019#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070020#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070021#include <vcl/vcl_private.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Coras54693d22018-07-17 10:46:29 -070025
Florin Corasd85de682018-11-29 17:02:29 -080026static int
27vcl_wait_for_segment (u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070028{
Florin Corasd85de682018-11-29 17:02:29 -080029 vcl_worker_t *wrk = vcl_worker_get_current ();
30 u32 wait_for_seconds = 10, segment_index;
31 f64 timeout;
Florin Coras54693d22018-07-17 10:46:29 -070032
Florin Corasd85de682018-11-29 17:02:29 -080033 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
34 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070035
Florin Corasd85de682018-11-29 17:02:29 -080036 timeout = clib_time_now (&wrk->clib_time) + wait_for_seconds;
37 while (clib_time_now (&wrk->clib_time) < timeout)
Florin Coras54693d22018-07-17 10:46:29 -070038 {
Florin Corasd85de682018-11-29 17:02:29 -080039 segment_index = vcl_segment_table_lookup (segment_handle);
40 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
41 return 0;
42 usleep (10);
Florin Coras54693d22018-07-17 10:46:29 -070043 }
Florin Corasd85de682018-11-29 17:02:29 -080044 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070045}
46
Florin Coras697faea2018-06-27 17:10:49 -070047const char *
Dave Wallace543852a2017-08-03 02:11:34 -040048vppcom_session_state_str (session_state_t state)
49{
50 char *st;
51
52 switch (state)
53 {
54 case STATE_START:
55 st = "STATE_START";
56 break;
57
58 case STATE_CONNECT:
59 st = "STATE_CONNECT";
60 break;
61
62 case STATE_LISTEN:
63 st = "STATE_LISTEN";
64 break;
65
66 case STATE_ACCEPT:
67 st = "STATE_ACCEPT";
68 break;
69
Florin Coras3c7d4f92018-12-14 11:28:43 -080070 case STATE_VPP_CLOSING:
71 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050072 break;
73
Dave Wallace543852a2017-08-03 02:11:34 -040074 case STATE_DISCONNECT:
75 st = "STATE_DISCONNECT";
76 break;
77
78 case STATE_FAILED:
79 st = "STATE_FAILED";
80 break;
81
82 default:
83 st = "UNKNOWN_STATE";
84 break;
85 }
86
87 return st;
88}
89
Dave Wallace543852a2017-08-03 02:11:34 -040090u8 *
91format_ip4_address (u8 * s, va_list * args)
92{
93 u8 *a = va_arg (*args, u8 *);
94 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
95}
96
97u8 *
98format_ip6_address (u8 * s, va_list * args)
99{
100 ip6_address_t *a = va_arg (*args, ip6_address_t *);
101 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
102
103 i_max_n_zero = ARRAY_LEN (a->as_u16);
104 max_n_zeros = 0;
105 i_first_zero = i_max_n_zero;
106 n_zeros = 0;
107 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
108 {
109 u32 is_zero = a->as_u16[i] == 0;
110 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
111 {
112 i_first_zero = i;
113 n_zeros = 0;
114 }
115 n_zeros += is_zero;
116 if ((!is_zero && n_zeros > max_n_zeros)
117 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
118 {
119 i_max_n_zero = i_first_zero;
120 max_n_zeros = n_zeros;
121 i_first_zero = ARRAY_LEN (a->as_u16);
122 n_zeros = 0;
123 }
124 }
125
126 last_double_colon = 0;
127 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
128 {
129 if (i == i_max_n_zero && max_n_zeros > 1)
130 {
131 s = format (s, "::");
132 i += max_n_zeros - 1;
133 last_double_colon = 1;
134 }
135 else
136 {
137 s = format (s, "%s%x",
138 (last_double_colon || i == 0) ? "" : ":",
139 clib_net_to_host_u16 (a->as_u16[i]));
140 last_double_colon = 0;
141 }
142 }
143
144 return s;
145}
146
147/* Format an IP46 address. */
148u8 *
149format_ip46_address (u8 * s, va_list * args)
150{
151 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
152 ip46_type_t type = va_arg (*args, ip46_type_t);
153 int is_ip4 = 1;
154
155 switch (type)
156 {
157 case IP46_TYPE_ANY:
158 is_ip4 = ip46_address_is_ip4 (ip46);
159 break;
160 case IP46_TYPE_IP4:
161 is_ip4 = 1;
162 break;
163 case IP46_TYPE_IP6:
164 is_ip4 = 0;
165 break;
166 }
167
168 return is_ip4 ?
169 format (s, "%U", format_ip4_address, &ip46->ip4) :
170 format (s, "%U", format_ip6_address, &ip46->ip6);
171}
172
Florin Coras697faea2018-06-27 17:10:49 -0700173/*
174 * VPPCOM Utility Functions
175 */
176
Florin Coras697faea2018-06-27 17:10:49 -0700177
Florin Corasc9fbd662018-08-24 12:59:56 -0700178static svm_msg_q_t *
Florin Coras134a9962018-08-28 11:32:04 -0700179vcl_session_vpp_evt_q (vcl_worker_t * wrk, vcl_session_t * s)
Florin Corasc9fbd662018-08-24 12:59:56 -0700180{
181 if (vcl_session_is_ct (s))
Florin Coras134a9962018-08-28 11:32:04 -0700182 return wrk->vpp_event_queues[0];
Florin Corasc9fbd662018-08-24 12:59:56 -0700183 else
Florin Coras3c7d4f92018-12-14 11:28:43 -0800184 return wrk->vpp_event_queues[s->vpp_thread_index];
Florin Corasc9fbd662018-08-24 12:59:56 -0700185}
186
Florin Coras54693d22018-07-17 10:46:29 -0700187static void
188vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
189 session_handle_t handle, int retval)
190{
191 app_session_evt_t _app_evt, *app_evt = &_app_evt;
192 session_accepted_reply_msg_t *rmp;
193 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
194 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
195 rmp->handle = handle;
196 rmp->context = context;
197 rmp->retval = retval;
198 app_send_ctrl_evt_to_vpp (mq, app_evt);
199}
200
Florin Coras99368312018-08-02 10:45:44 -0700201static void
202vcl_send_session_disconnected_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_disconnected_reply_msg_t *rmp;
207 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
208 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
209 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
210 rmp->handle = handle;
211 rmp->context = context;
212 rmp->retval = retval;
213 app_send_ctrl_evt_to_vpp (mq, app_evt);
214}
215
Florin Corasc9fbd662018-08-24 12:59:56 -0700216static void
217vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
218 session_handle_t handle, int retval)
219{
220 app_session_evt_t _app_evt, *app_evt = &_app_evt;
221 session_reset_reply_msg_t *rmp;
222 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
223 rmp = (session_reset_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 Coras54693d22018-07-17 10:46:29 -0700230static u32
Florin Coras134a9962018-08-28 11:32:04 -0700231vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700232{
233 vcl_session_t *session, *listen_session;
234 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700235 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700236 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700237
Florin Coras134a9962018-08-28 11:32:04 -0700238 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700239
Florin Coras134a9962018-08-28 11:32:04 -0700240 listen_session = vcl_session_table_lookup_listener (wrk,
241 mp->listener_handle);
Florin Coras54693d22018-07-17 10:46:29 -0700242 if (!listen_session)
243 {
244 svm_msg_q_t *evt_q;
245 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
246 clib_warning ("VCL<%d>: ERROR: couldn't find listen session: "
247 "unknown vpp listener handle %llx",
248 getpid (), mp->listener_handle);
249 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
250 VNET_API_ERROR_INVALID_ARGUMENT);
Florin Coras134a9962018-08-28 11:32:04 -0700251 vcl_session_free (wrk, session);
Florin Coras54693d22018-07-17 10:46:29 -0700252 return VCL_INVALID_SESSION_INDEX;
253 }
254
Florin Coras54693d22018-07-17 10:46:29 -0700255 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
256 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
257
258 if (mp->server_event_queue_address)
259 {
260 session->vpp_evt_q = uword_to_pointer (mp->client_event_queue_address,
261 svm_msg_q_t *);
262 session->our_evt_q = uword_to_pointer (mp->server_event_queue_address,
263 svm_msg_q_t *);
Florin Corasd85de682018-11-29 17:02:29 -0800264 if (vcl_wait_for_segment (mp->segment_handle))
265 {
266 clib_warning ("segment for session %u couldn't be mounted!",
267 session->session_index);
268 return VCL_INVALID_SESSION_INDEX;
269 }
Florin Coras134a9962018-08-28 11:32:04 -0700270 rx_fifo->master_session_index = session->session_index;
271 tx_fifo->master_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700272 rx_fifo->master_thread_index = vcl_get_worker_index ();
273 tx_fifo->master_thread_index = vcl_get_worker_index ();
Florin Coras134a9962018-08-28 11:32:04 -0700274 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700275 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700276 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700277 }
278 else
279 {
280 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
281 svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700282 rx_fifo->client_session_index = session->session_index;
283 tx_fifo->client_session_index = session->session_index;
Florin Coras21795132018-09-09 09:40:51 -0700284 rx_fifo->client_thread_index = vcl_get_worker_index ();
285 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras99368312018-08-02 10:45:44 -0700286 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700287 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
288 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700289 }
290
291 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800292 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700293 session->client_context = mp->context;
294 session->rx_fifo = rx_fifo;
295 session->tx_fifo = tx_fifo;
296
297 session->session_state = STATE_ACCEPT;
298 session->transport.rmt_port = mp->port;
299 session->transport.is_ip4 = mp->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500300 clib_memcpy_fast (&session->transport.rmt_ip, mp->ip,
301 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700302
Florin Coras134a9962018-08-28 11:32:04 -0700303 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700304 session->transport.lcl_port = listen_session->transport.lcl_port;
305 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700306 session->session_type = listen_session->session_type;
307 session->is_dgram = session->session_type == VPPCOM_PROTO_UDP;
Florin Coras54693d22018-07-17 10:46:29 -0700308
309 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: client accept request from %s"
Florin Coras134a9962018-08-28 11:32:04 -0700310 " address %U port %d queue %p!", getpid (), mp->handle,
311 session->session_index,
Florin Coras54693d22018-07-17 10:46:29 -0700312 mp->is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->ip,
313 mp->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
314 clib_net_to_host_u16 (mp->port), session->vpp_evt_q);
315 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
316
Florin Coras134a9962018-08-28 11:32:04 -0700317 return session->session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700318}
319
320static u32
Florin Coras134a9962018-08-28 11:32:04 -0700321vcl_session_connected_handler (vcl_worker_t * wrk,
322 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700323{
Florin Coras99368312018-08-02 10:45:44 -0700324 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700325 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700326 vcl_session_t *session = 0;
327 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700328
329 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700330 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700331 if (!session)
332 {
333 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
334 "Invalid session index (%u)!",
335 getpid (), mp->handle, session_index);
336 return VCL_INVALID_SESSION_INDEX;
337 }
Florin Coras54693d22018-07-17 10:46:29 -0700338 if (mp->retval)
339 {
Florin Coras070453d2018-08-24 17:04:27 -0700340 clib_warning ("VCL<%d>: ERROR: sid %u: connect failed! %U", getpid (),
Florin Coras21795132018-09-09 09:40:51 -0700341 session_index, format_api_error, ntohl (mp->retval));
Florin Coras070453d2018-08-24 17:04:27 -0700342 session->session_state = STATE_FAILED;
343 session->vpp_handle = mp->handle;
344 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700345 }
346
Florin Coras460dce62018-07-27 05:45:06 -0700347 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
348 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasd85de682018-11-29 17:02:29 -0800349 if (vcl_wait_for_segment (mp->segment_handle))
350 {
351 clib_warning ("segment for session %u couldn't be mounted!",
352 session->session_index);
353 return VCL_INVALID_SESSION_INDEX;
354 }
355
Florin Coras460dce62018-07-27 05:45:06 -0700356 rx_fifo->client_session_index = session_index;
357 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700358 rx_fifo->client_thread_index = vcl_get_worker_index ();
359 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700360
Florin Coras54693d22018-07-17 10:46:29 -0700361 if (mp->client_event_queue_address)
362 {
363 session->vpp_evt_q = uword_to_pointer (mp->server_event_queue_address,
364 svm_msg_q_t *);
365 session->our_evt_q = uword_to_pointer (mp->client_event_queue_address,
366 svm_msg_q_t *);
Florin Coras99368312018-08-02 10:45:44 -0700367
Florin Coras134a9962018-08-28 11:32:04 -0700368 vec_validate (wrk->vpp_event_queues, 0);
Florin Coras99368312018-08-02 10:45:44 -0700369 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
Florin Coras134a9962018-08-28 11:32:04 -0700370 wrk->vpp_event_queues[0] = evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700371 }
372 else
Florin Coras99368312018-08-02 10:45:44 -0700373 {
374 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
375 svm_msg_q_t *);
376 vpp_wrk_index = tx_fifo->master_thread_index;
Florin Coras134a9962018-08-28 11:32:04 -0700377 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
378 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700379 }
Florin Coras54693d22018-07-17 10:46:29 -0700380
Florin Coras54693d22018-07-17 10:46:29 -0700381 session->rx_fifo = rx_fifo;
382 session->tx_fifo = tx_fifo;
383 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800384 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700385 session->transport.is_ip4 = mp->is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500386 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
387 sizeof (session->transport.lcl_ip));
Florin Coras54693d22018-07-17 10:46:29 -0700388 session->transport.lcl_port = mp->lcl_port;
389 session->session_state = STATE_CONNECT;
390
391 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800392 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700393
394 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: connect succeeded! "
395 "session_rx_fifo %p, refcnt %d, session_tx_fifo %p, refcnt %d",
396 getpid (), mp->handle, session_index, session->rx_fifo,
397 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700398
Florin Coras54693d22018-07-17 10:46:29 -0700399 return session_index;
400}
401
Florin Coras3c7d4f92018-12-14 11:28:43 -0800402static int
403vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
404{
405 vcl_session_msg_t *accepted_msg;
406 int i;
407
408 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
409 {
410 accepted_msg = &session->accept_evts_fifo[i];
411 if (accepted_msg->accepted_msg.handle == handle)
412 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800413 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800414 return 1;
415 }
416 }
417 return 0;
418}
419
Florin Corasc9fbd662018-08-24 12:59:56 -0700420static u32
Florin Coras134a9962018-08-28 11:32:04 -0700421vcl_session_reset_handler (vcl_worker_t * wrk,
422 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700423{
424 vcl_session_t *session;
425 u32 sid;
426
Florin Coras134a9962018-08-28 11:32:04 -0700427 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
428 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700429 if (!session)
430 {
431 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
432 return VCL_INVALID_SESSION_INDEX;
433 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800434
435 /* Caught a reset before actually accepting the session */
436 if (session->session_state == STATE_LISTEN)
437 {
438
439 if (!vcl_flag_accepted_session (session, reset_msg->handle,
440 VCL_ACCEPTED_F_RESET))
441 VDBG (0, "session was not accepted!");
442 return VCL_INVALID_SESSION_INDEX;
443 }
444
445 session->session_state = STATE_DISCONNECT;
446 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700447 return sid;
448}
449
Florin Coras60116992018-08-27 09:52:18 -0700450static u32
Florin Coras134a9962018-08-28 11:32:04 -0700451vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700452{
453 vcl_session_t *session;
454 u32 sid = mp->context;
455
Florin Coras134a9962018-08-28 11:32:04 -0700456 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700457 if (mp->retval)
458 {
Florin Corasd85de682018-11-29 17:02:29 -0800459 VERR ("vpp handle 0x%llx, sid %u: bind failed: %U", mp->handle, sid,
460 format_api_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700461 if (session)
462 {
463 session->session_state = STATE_FAILED;
464 session->vpp_handle = mp->handle;
465 return sid;
466 }
467 else
468 {
469 clib_warning ("[%s] ERROR: vpp handle 0x%llx, sid %u: "
470 "Invalid session index (%u)!",
471 getpid (), mp->handle, sid);
472 return VCL_INVALID_SESSION_INDEX;
473 }
474 }
475
476 session->vpp_handle = mp->handle;
477 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500478 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
479 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700480 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700481 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700482 session->session_state = STATE_LISTEN;
483
484 if (session->is_dgram)
485 {
486 svm_fifo_t *rx_fifo, *tx_fifo;
487 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
488 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
489 rx_fifo->client_session_index = sid;
490 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
491 tx_fifo->client_session_index = sid;
492 session->rx_fifo = rx_fifo;
493 session->tx_fifo = tx_fifo;
494 }
495
Florin Coras05ecfcc2018-12-12 18:19:39 -0800496 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700497 return sid;
498}
499
Florin Coras3c7d4f92018-12-14 11:28:43 -0800500static vcl_session_t *
501vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
502{
503 vcl_session_msg_t *vcl_msg;
504 vcl_session_t *session;
505
506 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
507 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800508 VWRN ("session overlap handle %lu state %u!", msg->handle,
509 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800510
511 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
512 if (!session)
513 {
514 VERR ("couldn't find listen session: listener handle %llx",
515 msg->listener_handle);
516 return 0;
517 }
518
519 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
520 vcl_msg->accepted_msg = *msg;
521 /* Session handle points to listener until fully accepted by app */
522 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
523
524 return session;
525}
526
527static vcl_session_t *
528vcl_session_disconnected_handler (vcl_worker_t * wrk,
529 session_disconnected_msg_t * msg)
530{
531 vcl_session_t *session;
532
533 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
534 if (!session)
535 {
536 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
537 return 0;
538 }
539
540 /* Caught a disconnect before actually accepting the session */
541 if (session->session_state == STATE_LISTEN)
542 {
543
544 if (!vcl_flag_accepted_session (session, msg->handle,
545 VCL_ACCEPTED_F_CLOSED))
546 VDBG (0, "session was not accepted!");
547 return 0;
548 }
549
550 session->session_state = STATE_VPP_CLOSING;
551 return session;
552}
553
Florin Coras86f04502018-09-12 16:08:01 -0700554static int
555vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700556{
Florin Coras54693d22018-07-17 10:46:29 -0700557 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700558 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700559
560 switch (e->event_type)
561 {
562 case FIFO_EVENT_APP_RX:
Florin Coras86f04502018-09-12 16:08:01 -0700563 case FIFO_EVENT_APP_TX:
564 case SESSION_IO_EVT_CT_RX:
565 case SESSION_IO_EVT_CT_TX:
566 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700567 break;
568 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800569 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700570 break;
571 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700572 vcl_session_connected_handler (wrk,
573 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700574 break;
575 case SESSION_CTRL_EVT_DISCONNECTED:
576 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800577 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700578 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800579 break;
Florin Coras54693d22018-07-17 10:46:29 -0700580 session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800581 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
582 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700583 break;
584 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700585 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700586 break;
587 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700588 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700589 break;
590 default:
591 clib_warning ("unhandled %u", e->event_type);
592 }
593 return VPPCOM_OK;
594}
595
Florin Coras697faea2018-06-27 17:10:49 -0700596static inline int
597vppcom_wait_for_session_state_change (u32 session_index,
598 session_state_t state,
599 f64 wait_for_time)
600{
Florin Coras134a9962018-08-28 11:32:04 -0700601 vcl_worker_t *wrk = vcl_worker_get_current ();
602 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700603 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700604 svm_msg_q_msg_t msg;
605 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400606
Florin Coras697faea2018-06-27 17:10:49 -0700607 do
Dave Wallace543852a2017-08-03 02:11:34 -0400608 {
Florin Coras134a9962018-08-28 11:32:04 -0700609 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700610 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700611 {
Florin Coras070453d2018-08-24 17:04:27 -0700612 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700613 }
614 if (session->session_state & state)
615 {
Florin Coras697faea2018-06-27 17:10:49 -0700616 return VPPCOM_OK;
617 }
618 if (session->session_state & STATE_FAILED)
619 {
Florin Coras697faea2018-06-27 17:10:49 -0700620 return VPPCOM_ECONNREFUSED;
621 }
Florin Coras54693d22018-07-17 10:46:29 -0700622
Florin Coras134a9962018-08-28 11:32:04 -0700623 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800624 {
625 usleep (100);
626 continue;
627 }
Florin Coras134a9962018-08-28 11:32:04 -0700628 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700629 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700630 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800631 }
Florin Coras134a9962018-08-28 11:32:04 -0700632 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800633
Florin Coras05ecfcc2018-12-12 18:19:39 -0800634 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700635 vppcom_session_state_str (state));
636 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400637
Florin Coras697faea2018-06-27 17:10:49 -0700638 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500639}
640
Florin Coras697faea2018-06-27 17:10:49 -0700641static int
642vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400643{
Florin Coras697faea2018-06-27 17:10:49 -0700644 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400645
Florin Coras697faea2018-06-27 17:10:49 -0700646 if (vcm->app_state != STATE_APP_ENABLED)
647 {
648 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700649 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700650 if (PREDICT_FALSE (rv))
651 {
652 VDBG (0, "VCL<%d>: application session enable timed out! "
653 "returning %d (%s)", getpid (), rv, vppcom_retval_str (rv));
654 return rv;
655 }
656 }
657 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400658}
659
Florin Coras697faea2018-06-27 17:10:49 -0700660static int
661vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400662{
Florin Coras697faea2018-06-27 17:10:49 -0700663 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400664
Florin Coras697faea2018-06-27 17:10:49 -0700665 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -0700666 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -0700667 if (PREDICT_FALSE (rv))
668 {
669 VDBG (0, "VCL<%d>: application attach timed out! returning %d (%s)",
670 getpid (), rv, vppcom_retval_str (rv));
671 return rv;
672 }
Dave Wallace543852a2017-08-03 02:11:34 -0400673
Florin Coras697faea2018-06-27 17:10:49 -0700674 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400675}
676
677static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700678vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400679{
Florin Coras134a9962018-08-28 11:32:04 -0700680 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -0700681 vcl_session_t *session = 0;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500682 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400683
Florin Corasab2f6db2018-08-31 14:31:41 -0700684 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700685 if (!session)
686 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500687
688 vpp_handle = session->vpp_handle;
Florin Coras134a9962018-08-28 11:32:04 -0700689 vcl_session_table_del_listener (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500690 session->vpp_handle = ~0;
Florin Coras7e12d942018-06-27 14:32:43 -0700691 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500692
Florin Coras0d427d82018-06-27 03:24:07 -0700693 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending unbind msg! new state"
Florin Corasab2f6db2018-08-31 14:31:41 -0700694 " 0x%x (%s)", getpid (), vpp_handle, session_handle, STATE_DISCONNECT,
Florin Coras0d427d82018-06-27 03:24:07 -0700695 vppcom_session_state_str (STATE_DISCONNECT));
696 vcl_evt (VCL_EVT_UNBIND, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500697 vppcom_send_unbind_sock (vpp_handle);
698
Florin Coras070453d2018-08-24 17:04:27 -0700699 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400700}
701
Florin Coras697faea2018-06-27 17:10:49 -0700702static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700703vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400704{
Florin Coras134a9962018-08-28 11:32:04 -0700705 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -0700706 svm_msg_q_t *vpp_evt_q;
Florin Coras7e12d942018-06-27 14:32:43 -0700707 vcl_session_t *session;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500708 session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -0700709 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -0400710
Florin Corasab2f6db2018-08-31 14:31:41 -0700711 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -0700712 if (!session)
713 return VPPCOM_EBADFD;
714
Dave Wallace4878cbe2017-11-21 03:45:09 -0500715 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -0700716 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500717
Florin Coras0d427d82018-06-27 03:24:07 -0700718 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u state 0x%x (%s)", getpid (),
Florin Corasab2f6db2018-08-31 14:31:41 -0700719 vpp_handle, session_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400720
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -0800721 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400722 {
Dave Wallace048b1d62018-01-03 22:24:41 -0500723 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -0500724 "Cannot disconnect a listen socket!",
Florin Corasab2f6db2018-08-31 14:31:41 -0700725 getpid (), vpp_handle, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700726 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500727 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400728
Florin Coras3c7d4f92018-12-14 11:28:43 -0800729 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -0500730 {
Florin Coras134a9962018-08-28 11:32:04 -0700731 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -0800732 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -0700733 vpp_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -0700734 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect "
Florin Corasab2f6db2018-08-31 14:31:41 -0700735 "REPLY...", getpid (), vpp_handle, session_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400736 }
737 else
Dave Wallace227867f2017-11-13 21:21:53 -0500738 {
Florin Coras0d427d82018-06-27 03:24:07 -0700739 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: sending disconnect...",
Florin Corasab2f6db2018-08-31 14:31:41 -0700740 getpid (), vpp_handle, session_handle);
741 vppcom_send_disconnect_session (vpp_handle);
Dave Wallace227867f2017-11-13 21:21:53 -0500742 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400743
Florin Coras070453d2018-08-24 17:04:27 -0700744 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400745}
746
Florin Coras053a0e42018-11-13 15:52:38 -0800747static void
748vcl_cleanup_bapi (void)
749{
Florin Coras47c40e22018-11-26 17:01:36 -0800750 socket_client_main_t *scm = &socket_client_main;
Florin Coras053a0e42018-11-13 15:52:38 -0800751 api_main_t *am = &api_main;
752
753 am->my_client_index = ~0;
754 am->my_registration = 0;
755 am->vl_input_queue = 0;
756 am->msg_index_by_name_and_crc = 0;
Florin Coras47c40e22018-11-26 17:01:36 -0800757 scm->socket_fd = 0;
Florin Coras053a0e42018-11-13 15:52:38 -0800758
759 vl_client_api_unmap ();
760}
761
Florin Coras01f3f892018-12-02 12:45:53 -0800762static void
763vcl_cleanup_forked_child (vcl_worker_t * wrk, vcl_worker_t * child_wrk)
764{
765 vcl_worker_t *sub_child;
766 int tries = 0;
767
768 if (child_wrk->forked_child != ~0)
769 {
770 sub_child = vcl_worker_get_if_valid (child_wrk->forked_child);
771 if (sub_child)
772 {
773 /* Wait a bit, maybe the process is going away */
774 while (kill (sub_child->current_pid, 0) >= 0 && tries++ < 50)
775 usleep (1e3);
776 if (kill (sub_child->current_pid, 0) < 0)
777 vcl_cleanup_forked_child (child_wrk, sub_child);
778 }
779 }
780 vcl_worker_cleanup (child_wrk, 1 /* notify vpp */ );
781 VDBG (0, "Cleaned up wrk %u", child_wrk->wrk_index);
782 wrk->forked_child = ~0;
783}
784
785static struct sigaction old_sa;
786
787static void
788vcl_intercept_sigchld_handler (int signum, siginfo_t * si, void *uc)
789{
790 vcl_worker_t *wrk, *child_wrk;
791
792 if (vcl_get_worker_index () == ~0)
793 return;
794
Florin Corasc227e492018-12-21 19:28:34 -0800795 if (sigaction (SIGCHLD, &old_sa, 0))
796 {
797 VERR ("couldn't restore sigchld");
798 exit (-1);
799 }
Florin Coras01f3f892018-12-02 12:45:53 -0800800
801 wrk = vcl_worker_get_current ();
802 if (wrk->forked_child == ~0)
803 return;
804
805 child_wrk = vcl_worker_get_if_valid (wrk->forked_child);
Florin Coraseaec2a62018-12-04 16:34:05 -0800806 if (!child_wrk)
807 goto done;
808
809 if (si && si->si_pid != child_wrk->current_pid)
Florin Coras01f3f892018-12-02 12:45:53 -0800810 {
811 VDBG (0, "unexpected child pid %u", si->si_pid);
Florin Coraseaec2a62018-12-04 16:34:05 -0800812 goto done;
Florin Coras01f3f892018-12-02 12:45:53 -0800813 }
Florin Coraseaec2a62018-12-04 16:34:05 -0800814 vcl_cleanup_forked_child (wrk, child_wrk);
Florin Coras01f3f892018-12-02 12:45:53 -0800815
Florin Coraseaec2a62018-12-04 16:34:05 -0800816done:
Florin Coras01f3f892018-12-02 12:45:53 -0800817 if (old_sa.sa_flags & SA_SIGINFO)
818 {
819 void (*fn) (int, siginfo_t *, void *) = old_sa.sa_sigaction;
820 fn (signum, si, uc);
821 }
822 else
823 {
824 void (*fn) (int) = old_sa.sa_handler;
825 if (fn)
826 fn (signum);
827 }
828}
829
830static void
831vcl_incercept_sigchld ()
832{
833 struct sigaction sa;
834 clib_memset (&sa, 0, sizeof (sa));
835 sa.sa_sigaction = vcl_intercept_sigchld_handler;
836 sa.sa_flags = SA_SIGINFO;
837 if (sigaction (SIGCHLD, &sa, &old_sa))
838 {
839 VERR ("couldn't intercept sigchld");
840 exit (-1);
841 }
842}
843
844static void
845vcl_app_pre_fork (void)
846{
847 vcl_incercept_sigchld ();
848}
849
850static void
Florin Coras053a0e42018-11-13 15:52:38 -0800851vcl_app_fork_child_handler (void)
852{
Florin Coras01f3f892018-12-02 12:45:53 -0800853 int rv, parent_wrk_index;
854 vcl_worker_t *parent_wrk;
Florin Coras053a0e42018-11-13 15:52:38 -0800855 u8 *child_name;
Florin Coras053a0e42018-11-13 15:52:38 -0800856
Florin Coras01f3f892018-12-02 12:45:53 -0800857 parent_wrk_index = vcl_get_worker_index ();
858 VDBG (0, "initializing forked child with parent wrk %u", parent_wrk_index);
Florin Coras053a0e42018-11-13 15:52:38 -0800859
Florin Coras47c40e22018-11-26 17:01:36 -0800860 /*
861 * Allocate worker
862 */
Florin Coras47c40e22018-11-26 17:01:36 -0800863 vcl_set_worker_index (~0);
864 if (!vcl_worker_alloc_and_init ())
865 VERR ("couldn't allocate new worker");
866
867 /*
868 * Attach to binary api
869 */
870 child_name = format (0, "%v-child-%u%c", vcm->app_name, getpid (), 0);
Florin Coras053a0e42018-11-13 15:52:38 -0800871 vcl_cleanup_bapi ();
872 vppcom_api_hookup ();
873 vcm->app_state = STATE_APP_START;
874 rv = vppcom_connect_to_vpp ((char *) child_name);
875 vec_free (child_name);
876 if (rv)
877 {
878 VERR ("couldn't connect to VPP!");
879 return;
880 }
881
Florin Coras47c40e22018-11-26 17:01:36 -0800882 /*
883 * Register worker with vpp and share sessions
884 */
885 vcl_worker_register_with_vpp ();
Florin Coras01f3f892018-12-02 12:45:53 -0800886 parent_wrk = vcl_worker_get (parent_wrk_index);
Florin Coras47c40e22018-11-26 17:01:36 -0800887 vcl_worker_share_sessions (parent_wrk);
Florin Coras01f3f892018-12-02 12:45:53 -0800888 parent_wrk->forked_child = vcl_get_worker_index ();
Florin Coras47c40e22018-11-26 17:01:36 -0800889
Florin Coras053a0e42018-11-13 15:52:38 -0800890 VDBG (0, "forked child main worker initialized");
Florin Coras47c40e22018-11-26 17:01:36 -0800891 vcm->forking = 0;
892}
893
Florin Coras01f3f892018-12-02 12:45:53 -0800894static void
Florin Coras47c40e22018-11-26 17:01:36 -0800895vcl_app_fork_parent_handler (void)
896{
897 vcm->forking = 1;
Florin Coras47c40e22018-11-26 17:01:36 -0800898 while (vcm->forking)
899 ;
Florin Coras053a0e42018-11-13 15:52:38 -0800900}
901
Florin Coras940f78f2018-11-30 12:11:20 -0800902/**
903 * Handle app exit
904 *
905 * Notify vpp of the disconnect and mark the worker as free. If we're the
906 * last worker, do a full cleanup otherwise, since we're probably a forked
907 * child, avoid syscalls as much as possible. We might've lost privileges.
908 */
909void
910vppcom_app_exit (void)
911{
912 if (!pool_elts (vcm->workers))
913 return;
Florin Coras01f3f892018-12-02 12:45:53 -0800914 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
915 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -0800916 vcl_elog_stop (vcm);
917 if (vec_len (vcm->workers) == 1)
918 vl_client_disconnect_from_vlib ();
919 else
Florin Coraseaec2a62018-12-04 16:34:05 -0800920 vl_client_send_disconnect (1 /* vpp should cleanup */ );
Florin Coras940f78f2018-11-30 12:11:20 -0800921}
922
Dave Wallace543852a2017-08-03 02:11:34 -0400923/*
924 * VPPCOM Public API functions
925 */
926int
927vppcom_app_create (char *app_name)
928{
Dave Wallace543852a2017-08-03 02:11:34 -0400929 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -0400930 int rv;
931
Florin Coras47c40e22018-11-26 17:01:36 -0800932 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -0400933 {
Florin Coras955bfbb2018-12-04 13:43:45 -0800934 VDBG (1, "already initialized");
935 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -0400936 }
937
Florin Coras47c40e22018-11-26 17:01:36 -0800938 vcm->is_init = 1;
939 vppcom_cfg (&vcm->cfg);
940 vcl_cfg = &vcm->cfg;
941
942 vcm->main_cpu = pthread_self ();
943 vcm->main_pid = getpid ();
944 vcm->app_name = format (0, "%s", app_name);
945 vppcom_init_error_string_table ();
Florin Corasadc74d72018-12-02 13:36:00 -0800946 svm_fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
Florin Coras47c40e22018-11-26 17:01:36 -0800947 20 /* timeout in secs */ );
948 pool_alloc (vcm->workers, vcl_cfg->max_workers);
949 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -0800950 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras01f3f892018-12-02 12:45:53 -0800951 pthread_atfork (vcl_app_pre_fork, vcl_app_fork_parent_handler,
Florin Coras47c40e22018-11-26 17:01:36 -0800952 vcl_app_fork_child_handler);
Florin Coras940f78f2018-11-30 12:11:20 -0800953 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -0800954
955 /* Allocate default worker */
956 vcl_worker_alloc_and_init ();
957
958 /* API hookup and connect to VPP */
959 vppcom_api_hookup ();
960 vcl_elog_init (vcm);
961 vcm->app_state = STATE_APP_START;
962 rv = vppcom_connect_to_vpp (app_name);
963 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -0400964 {
Florin Coras47c40e22018-11-26 17:01:36 -0800965 VERR ("couldn't connect to VPP!");
966 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -0400967 }
Florin Coras47c40e22018-11-26 17:01:36 -0800968 VDBG (0, "sending session enable");
969 rv = vppcom_app_session_enable ();
970 if (rv)
971 {
972 VERR ("vppcom_app_session_enable() failed!");
973 return rv;
974 }
975
976 VDBG (0, "sending app attach");
977 rv = vppcom_app_attach ();
978 if (rv)
979 {
980 VERR ("vppcom_app_attach() failed!");
981 return rv;
982 }
983
984 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
985 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -0400986
987 return VPPCOM_OK;
988}
989
990void
991vppcom_app_destroy (void)
992{
Dave Wallace543852a2017-08-03 02:11:34 -0400993 int rv;
Dave Wallacede910062018-03-20 09:22:13 -0400994 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -0400995
Florin Coras940f78f2018-11-30 12:11:20 -0800996 if (!pool_elts (vcm->workers))
997 return;
998
Florin Coras0d427d82018-06-27 03:24:07 -0700999 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001000
Florin Coras940f78f2018-11-30 12:11:20 -08001001 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -08001002 {
1003 vppcom_app_send_detach ();
1004 orig_app_timeout = vcm->cfg.app_timeout;
1005 vcm->cfg.app_timeout = 2.0;
1006 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
1007 vcm->cfg.app_timeout = orig_app_timeout;
1008 if (PREDICT_FALSE (rv))
1009 VDBG (0, "application detach timed out! returning %d (%s)", rv,
1010 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -08001011 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -08001012 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001013 }
1014 else
1015 {
Florin Coras01f3f892018-12-02 12:45:53 -08001016 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001017 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001018
Florin Coras01f3f892018-12-02 12:45:53 -08001019 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -07001020 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -04001021 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001022}
1023
1024int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001025vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001026{
Florin Coras134a9962018-08-28 11:32:04 -07001027 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001028 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001029
Florin Coras134a9962018-08-28 11:32:04 -07001030 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001031
Florin Coras7e12d942018-06-27 14:32:43 -07001032 session->session_type = proto;
1033 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001034 session->vpp_handle = ~0;
Florin Coras460dce62018-07-27 05:45:06 -07001035 session->is_dgram = proto == VPPCOM_PROTO_UDP;
Dave Wallace543852a2017-08-03 02:11:34 -04001036
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001037 if (is_nonblocking)
1038 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001039
Florin Coras7e12d942018-06-27 14:32:43 -07001040 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1041 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001042
Florin Coras053a0e42018-11-13 15:52:38 -08001043 VDBG (0, "created sid %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001044
Florin Coras134a9962018-08-28 11:32:04 -07001045 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001046}
1047
1048int
Florin Coras134a9962018-08-28 11:32:04 -07001049vppcom_session_close (uint32_t session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -04001050{
Florin Coras134a9962018-08-28 11:32:04 -07001051 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras47c40e22018-11-26 17:01:36 -08001052 u8 is_vep, do_disconnect = 1;
Florin Coras7e12d942018-06-27 14:32:43 -07001053 vcl_session_t *session = 0;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001054 session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001055 u32 next_sh, vep_sh;
1056 int rv = VPPCOM_OK;
1057 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001058
Florin Coras134a9962018-08-28 11:32:04 -07001059 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001060 if (!session)
1061 return VPPCOM_EBADFD;
1062
Florin Coras47c40e22018-11-26 17:01:36 -08001063 if (session->shared_index != ~0)
1064 do_disconnect = vcl_worker_unshare_session (wrk, session);
1065
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001066 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001067 next_sh = session->vep.next_sh;
1068 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001069 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001070 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001071
Florin Coras05ecfcc2018-12-12 18:19:39 -08001072 VDBG (1, "closing session handle %u vpp handle %u", session_handle,
Florin Coras47c40e22018-11-26 17:01:36 -08001073 vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001074
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001075 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001076 {
Florin Coras134a9962018-08-28 11:32:04 -07001077 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001078 {
Florin Coras134a9962018-08-28 11:32:04 -07001079 rv = vppcom_epoll_ctl (session_handle, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001080 if (PREDICT_FALSE (rv < 0))
Florin Coras47c40e22018-11-26 17:01:36 -08001081 VDBG (0, "vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL vep_idx %u"
1082 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1083 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001084
Florin Coras134a9962018-08-28 11:32:04 -07001085 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001086 }
1087 }
1088 else
1089 {
Florin Coras47c40e22018-11-26 17:01:36 -08001090 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001091 {
Florin Coras134a9962018-08-28 11:32:04 -07001092 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, session_handle, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001093 if (rv < 0)
Florin Coras47c40e22018-11-26 17:01:36 -08001094 VDBG (0, "vpp handle 0x%llx, sid %u: EPOLL_CTL_DEL vep_idx %u "
1095 "failed! rv %d (%s)", vpp_handle, session_handle, vep_sh,
1096 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001097 }
1098
Florin Coras47c40e22018-11-26 17:01:36 -08001099 if (!do_disconnect)
1100 goto cleanup;
1101
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001102 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001103 {
Florin Coras134a9962018-08-28 11:32:04 -07001104 rv = vppcom_session_unbind (session_handle);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001105 if (PREDICT_FALSE (rv < 0))
Florin Coras47c40e22018-11-26 17:01:36 -08001106 VDBG (0, "vpp handle 0x%llx, sid %u: listener unbind failed! "
1107 "rv %d (%s)", vpp_handle, session_handle, rv,
1108 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001109 }
Florin Coras070453d2018-08-24 17:04:27 -07001110 else if (state & STATE_OPEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001111 {
Florin Coras134a9962018-08-28 11:32:04 -07001112 rv = vppcom_session_disconnect (session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001113 if (PREDICT_FALSE (rv < 0))
Dave Wallace048b1d62018-01-03 22:24:41 -05001114 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001115 "session disconnect failed! rv %d (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001116 getpid (), vpp_handle, session_handle,
Dave Wallaceee45d412017-11-24 21:44:06 -05001117 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001118 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001119 else if (state == STATE_DISCONNECT)
1120 {
1121 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1122 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1123 session->vpp_handle, 0);
1124 }
Dave Wallace19481612017-09-15 18:47:44 -04001125 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001126
Florin Coras47c40e22018-11-26 17:01:36 -08001127cleanup:
1128
Florin Coras99368312018-08-02 10:45:44 -07001129 if (vcl_session_is_ct (session))
1130 {
1131 vcl_cut_through_registration_t *ctr;
1132 uword mq_addr;
1133
1134 mq_addr = pointer_to_uword (session->our_evt_q);
Florin Coras134a9962018-08-28 11:32:04 -07001135 ctr = vcl_ct_registration_lock_and_lookup (wrk, mq_addr);
Florin Coras99368312018-08-02 10:45:44 -07001136 ASSERT (ctr);
1137 if (ctr->epoll_evt_conn_index != ~0)
Florin Coras134a9962018-08-28 11:32:04 -07001138 vcl_mq_epoll_del_evfd (wrk, ctr->epoll_evt_conn_index);
Florin Coras99368312018-08-02 10:45:44 -07001139 VDBG (0, "Removing ct registration %u",
Florin Coras134a9962018-08-28 11:32:04 -07001140 vcl_ct_registration_index (wrk, ctr));
1141 vcl_ct_registration_del (wrk, ctr);
1142 vcl_ct_registration_lookup_del (wrk, mq_addr);
1143 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07001144 }
Florin Coras54693d22018-07-17 10:46:29 -07001145
Dave Wallaceee45d412017-11-24 21:44:06 -05001146 if (vpp_handle != ~0)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001147 {
Florin Coras134a9962018-08-28 11:32:04 -07001148 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001149 }
Florin Coras134a9962018-08-28 11:32:04 -07001150 vcl_session_free (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001151
Florin Coras05ecfcc2018-12-12 18:19:39 -08001152 VDBG (0, "session handle %u [0x%llx] removed", session_handle, vpp_handle);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001153
Florin Coras0d427d82018-06-27 03:24:07 -07001154 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001155
Dave Wallace543852a2017-08-03 02:11:34 -04001156 return rv;
1157}
1158
1159int
Florin Coras134a9962018-08-28 11:32:04 -07001160vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001161{
Florin Coras134a9962018-08-28 11:32:04 -07001162 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001163 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001164
1165 if (!ep || !ep->ip)
1166 return VPPCOM_EINVAL;
1167
Florin Coras134a9962018-08-28 11:32:04 -07001168 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001169 if (!session)
1170 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001171
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001172 if (session->is_vep)
1173 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001174 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001175 "bind to an epoll session!", getpid (), session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001176 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001177 }
1178
Florin Coras7e12d942018-06-27 14:32:43 -07001179 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001180 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001181 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1182 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001183 else
Dave Barach178cf492018-11-13 16:34:13 -05001184 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1185 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001186 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001187
Florin Coras0d427d82018-06-27 03:24:07 -07001188 VDBG (0, "VCL<%d>: sid %u: binding to local %s address %U port %u, "
Florin Coras134a9962018-08-28 11:32:04 -07001189 "proto %s", getpid (), session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001190 session->transport.is_ip4 ? "IPv4" : "IPv6",
1191 format_ip46_address, &session->transport.lcl_ip,
1192 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1193 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001194 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001195 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001196
1197 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001198 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001199
Florin Coras070453d2018-08-24 17:04:27 -07001200 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001201}
1202
1203int
Florin Coras134a9962018-08-28 11:32:04 -07001204vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001205{
Florin Coras134a9962018-08-28 11:32:04 -07001206 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001207 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001208 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001209 int rv;
1210
Florin Coras134a9962018-08-28 11:32:04 -07001211 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001212 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001213 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001214
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001215 if (q_len == 0 || q_len == ~0)
1216 q_len = vcm->cfg.listen_queue_size;
1217
Dave Wallaceee45d412017-11-24 21:44:06 -05001218 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001219 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001220 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001221 VDBG (0, "session %u [0x%llx]: already in listen state!",
1222 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001223 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001224 }
1225
Florin Coras05ecfcc2018-12-12 18:19:39 -08001226 VDBG (0, "session %u [0x%llx]: sending vpp listen request...",
1227 listen_sh, listen_vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001228
Florin Coras070453d2018-08-24 17:04:27 -07001229 /*
1230 * Send listen request to vpp and wait for reply
1231 */
Florin Coras134a9962018-08-28 11:32:04 -07001232 vppcom_send_bind_sock (listen_session);
1233 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1234 STATE_LISTEN,
1235 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001236
Florin Coras070453d2018-08-24 17:04:27 -07001237 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001238 {
Florin Coras134a9962018-08-28 11:32:04 -07001239 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001240 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1241 listen_sh, listen_session->vpp_handle, rv,
1242 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001243 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001244 }
1245
Florin Coras070453d2018-08-24 17:04:27 -07001246 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001247}
1248
Ping Yu34a3a082018-11-30 19:16:17 -05001249int
1250vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1251 uint32_t cert_len)
1252{
1253
1254 vcl_worker_t *wrk = vcl_worker_get_current ();
1255 vcl_session_t *session = 0;
1256
1257 session = vcl_session_get_w_handle (wrk, session_handle);
1258 if (!session)
1259 return VPPCOM_EBADFD;
1260
1261 if (cert_len == 0 || cert_len == ~0)
1262 return VPPCOM_EBADFD;
1263
1264 /*
1265 * Send listen request to vpp and wait for reply
1266 */
1267 vppcom_send_application_tls_cert_add (session, cert, cert_len);
1268
1269 return VPPCOM_OK;
1270
1271}
1272
1273int
1274vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1275 uint32_t key_len)
1276{
1277
1278 vcl_worker_t *wrk = vcl_worker_get_current ();
1279 vcl_session_t *session = 0;
1280
1281 session = vcl_session_get_w_handle (wrk, session_handle);
1282 if (!session)
1283 return VPPCOM_EBADFD;
1284
1285 if (key_len == 0 || key_len == ~0)
1286 return VPPCOM_EBADFD;
1287
1288 /*
1289 * Send listen request to vpp and wait for reply
1290 */
1291 vppcom_send_application_tls_key_add (session, key, key_len);
1292
1293 return VPPCOM_OK;
1294
1295
1296}
1297
Florin Coras134a9962018-08-28 11:32:04 -07001298static int
1299validate_args_session_accept_ (vcl_worker_t * wrk,
1300 vcl_session_t * listen_session)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001301{
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001302 /* Input validation - expects spinlock on sessions_lockp */
1303 if (listen_session->is_vep)
1304 {
1305 clib_warning ("VCL<%d>: ERROR: sid %u: cannot accept on an "
Florin Coras134a9962018-08-28 11:32:04 -07001306 "epoll session!", getpid (),
1307 listen_session->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001308 return VPPCOM_EBADFD;
1309 }
1310
Florin Coras7e12d942018-06-27 14:32:43 -07001311 if (listen_session->session_state != STATE_LISTEN)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001312 {
1313 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
1314 "not in listen state! state 0x%x (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001315 listen_session->vpp_handle, listen_session->session_index,
Florin Coras7e12d942018-06-27 14:32:43 -07001316 listen_session->session_state,
1317 vppcom_session_state_str (listen_session->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001318 return VPPCOM_EBADFD;
1319 }
1320 return VPPCOM_OK;
1321}
1322
1323int
Florin Coras134a9962018-08-28 11:32:04 -07001324vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001325 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001326{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001327 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001328 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001329 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001330 vcl_session_t *listen_session = 0;
1331 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001332 svm_msg_q_t *vpp_evt_q;
1333 vcl_session_msg_t *evt;
Dave Wallaceee45d412017-11-24 21:44:06 -05001334 u64 listen_vpp_handle;
Florin Coras54693d22018-07-17 10:46:29 -07001335 svm_msg_q_msg_t msg;
1336 session_event_t *e;
1337 u8 is_nonblocking;
1338 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001339
Florin Coras134a9962018-08-28 11:32:04 -07001340 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001341 if (!listen_session)
1342 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001343
Florin Coras134a9962018-08-28 11:32:04 -07001344 listen_session_index = listen_session->session_index;
1345 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001346 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001347
Florin Coras54693d22018-07-17 10:46:29 -07001348 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001349 {
Florin Coras54693d22018-07-17 10:46:29 -07001350 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001351 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001352 accepted_msg = evt->accepted_msg;
1353 goto handle;
1354 }
1355
1356 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1357 VCL_SESS_ATTR_NONBLOCK);
Florin Coras134a9962018-08-28 11:32:04 -07001358 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
Florin Coras54693d22018-07-17 10:46:29 -07001359 return VPPCOM_EAGAIN;
1360
1361 while (1)
1362 {
Florin Coras134a9962018-08-28 11:32:04 -07001363 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001364 return VPPCOM_EAGAIN;
1365
Florin Coras134a9962018-08-28 11:32:04 -07001366 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001367 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001368 {
Florin Coras54693d22018-07-17 10:46:29 -07001369 clib_warning ("discarded event: %u", e->event_type);
Florin Coras134a9962018-08-28 11:32:04 -07001370 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001371 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001372 }
Dave Barach178cf492018-11-13 16:34:13 -05001373 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001374 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001375 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001376 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001377
Florin Coras54693d22018-07-17 10:46:29 -07001378handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001379
Florin Coras134a9962018-08-28 11:32:04 -07001380 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg);
1381 listen_session = vcl_session_get (wrk, listen_session_index);
1382 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001383
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001384 if (flags & O_NONBLOCK)
1385 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001386
Florin Coras54693d22018-07-17 10:46:29 -07001387 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras05ecfcc2018-12-12 18:19:39 -08001388 VDBG (1, "vpp handle 0x%llx, sid %u: Got a client request! "
Florin Coras0d427d82018-06-27 03:24:07 -07001389 "vpp handle 0x%llx, sid %u, flags %d, is_nonblocking %u",
Florin Corasdc2e2512018-12-03 17:47:26 -08001390 listen_vpp_handle, listen_session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001391 client_session->vpp_handle, client_session_index,
1392 flags, VCL_SESS_ATTR_TEST (client_session->attr,
1393 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001394
Dave Wallace048b1d62018-01-03 22:24:41 -05001395 if (ep)
1396 {
Florin Coras7e12d942018-06-27 14:32:43 -07001397 ep->is_ip4 = client_session->transport.is_ip4;
1398 ep->port = client_session->transport.rmt_port;
1399 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001400 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1401 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001402 else
Dave Barach178cf492018-11-13 16:34:13 -05001403 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1404 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001405 }
Dave Wallace60caa062017-11-10 17:07:13 -05001406
Florin Coras54693d22018-07-17 10:46:29 -07001407 if (accepted_msg.server_event_queue_address)
1408 vpp_evt_q = uword_to_pointer (accepted_msg.vpp_event_queue_address,
1409 svm_msg_q_t *);
1410 else
1411 vpp_evt_q = client_session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -07001412
Florin Coras54693d22018-07-17 10:46:29 -07001413 vcl_send_session_accepted_reply (vpp_evt_q, client_session->client_context,
1414 client_session->vpp_handle, 0);
Dave Wallace60caa062017-11-10 17:07:13 -05001415
Florin Coras05ecfcc2018-12-12 18:19:39 -08001416 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
1417 "local: %U:%u", listen_session_handle, listen_vpp_handle,
1418 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001419 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001420 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001421 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001422 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001423 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001424 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001425 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1426 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001427
Florin Coras3c7d4f92018-12-14 11:28:43 -08001428 /*
1429 * Session might have been closed already
1430 */
1431 if (accept_flags)
1432 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001433 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001434 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001435 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001436 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001437 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001438 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001439}
1440
1441int
Florin Coras134a9962018-08-28 11:32:04 -07001442vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001443{
Florin Coras134a9962018-08-28 11:32:04 -07001444 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001445 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001446 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001447 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001448
Florin Coras134a9962018-08-28 11:32:04 -07001449 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001450 if (!session)
1451 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001452 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001453
1454 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001455 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001456 clib_warning ("VCL<%d>: ERROR: sid %u: cannot "
Florin Coras134a9962018-08-28 11:32:04 -07001457 "connect on an epoll session!", getpid (),
1458 session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001459 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001460 }
1461
Florin Coras7e12d942018-06-27 14:32:43 -07001462 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001463 {
Florin Coras0d427d82018-06-27 03:24:07 -07001464 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: session already "
1465 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras134a9962018-08-28 11:32:04 -07001466 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001467 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001468 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001469 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001470 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001471 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001472 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001473 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001474 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001475 }
1476
Florin Coras7e12d942018-06-27 14:32:43 -07001477 session->transport.is_ip4 = server_ep->is_ip4;
1478 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001479 clib_memcpy_fast (&session->transport.rmt_ip.ip4, server_ep->ip,
1480 sizeof (ip4_address_t));
Dave Wallaced239f8d2018-06-19 13:37:30 -04001481 else
Dave Barach178cf492018-11-13 16:34:13 -05001482 clib_memcpy_fast (&session->transport.rmt_ip.ip6, server_ep->ip,
1483 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001484 session->transport.rmt_port = server_ep->port;
Dave Wallace543852a2017-08-03 02:11:34 -04001485
Florin Coras0d427d82018-06-27 03:24:07 -07001486 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connecting to server %s %U "
1487 "port %d proto %s",
Florin Coras134a9962018-08-28 11:32:04 -07001488 getpid (), session->vpp_handle, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001489 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001490 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001491 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001492 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001493 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001494 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001495
Florin Coras070453d2018-08-24 17:04:27 -07001496 /*
1497 * Send connect request and wait for reply from vpp
1498 */
Florin Coras134a9962018-08-28 11:32:04 -07001499 vppcom_send_connect_sock (session);
Florin Coras070453d2018-08-24 17:04:27 -07001500 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1501 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001502
Florin Coras134a9962018-08-28 11:32:04 -07001503 session = vcl_session_get (wrk, session_index);
Dave Wallace7876d392017-10-19 03:53:57 -04001504
Florin Coras070453d2018-08-24 17:04:27 -07001505 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001506 {
Dave Wallaceee45d412017-11-24 21:44:06 -05001507 if (VPPCOM_DEBUG > 0)
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001508 {
1509 if (session)
Florin Coras0d427d82018-06-27 03:24:07 -07001510 clib_warning ("VCL<%d>: vpp handle 0x%llx, sid %u: connect "
Florin Coras134a9962018-08-28 11:32:04 -07001511 "failed! returning %d (%s)", getpid (),
1512 session->vpp_handle, session_handle, rv,
1513 vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001514 else
1515 clib_warning ("VCL<%d>: no session for sid %u: connect failed! "
1516 "returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001517 session_handle, rv, vppcom_retval_str (rv));
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001518 }
Dave Wallaceee45d412017-11-24 21:44:06 -05001519 }
Florin Coras0d427d82018-06-27 03:24:07 -07001520 else
1521 VDBG (0, "VCL<%d>: vpp handle 0x%llx, sid %u: connected!",
Florin Coras134a9962018-08-28 11:32:04 -07001522 getpid (), session->vpp_handle, session_handle);
Dave Wallaceee45d412017-11-24 21:44:06 -05001523
Dave Wallace4878cbe2017-11-21 03:45:09 -05001524 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001525}
1526
Florin Coras54693d22018-07-17 10:46:29 -07001527static u8
1528vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1529{
1530 if (!is_ct)
1531 return (e->event_type == FIFO_EVENT_APP_RX
1532 && e->fifo->client_session_index == sid);
1533 else
1534 return (e->event_type == SESSION_IO_EVT_CT_TX);
1535}
1536
Florin Coras460dce62018-07-27 05:45:06 -07001537static inline u8
1538vcl_session_is_readable (vcl_session_t * s)
1539{
1540 return ((s->session_state & STATE_OPEN)
1541 || (s->session_state == STATE_LISTEN
1542 && s->session_type == VPPCOM_PROTO_UDP));
1543}
1544
Steven58f464e2017-10-25 12:33:12 -07001545static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001546vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001547 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001548{
Florin Coras134a9962018-08-28 11:32:04 -07001549 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001550 int n_read = 0, rv, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001551 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001552 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001553 svm_msg_q_msg_t msg;
1554 session_event_t *e;
1555 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001556 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001557
Florin Coras070453d2018-08-24 17:04:27 -07001558 if (PREDICT_FALSE (!buf))
1559 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001560
Florin Coras134a9962018-08-28 11:32:04 -07001561 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001562 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001563 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001564
Florin Coras460dce62018-07-27 05:45:06 -07001565 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001566 {
Florin Coras460dce62018-07-27 05:45:06 -07001567 session_state_t state = s->session_state;
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001568 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001569
Florin Corasb0f662f2018-12-27 14:51:46 -08001570 VDBG (0, "session handle %u[0x%llx] is not open! state 0x%x (%s),"
1571 " returning %d (%s)", session_handle, s->vpp_handle, state,
Florin Coras0d427d82018-06-27 03:24:07 -07001572 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001573 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001574 }
1575
Florin Coras2cba8532018-09-11 16:33:36 -07001576 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001577 is_ct = vcl_session_is_ct (s);
1578 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras2cba8532018-09-11 16:33:36 -07001579 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001580 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001581
Florin Coras54693d22018-07-17 10:46:29 -07001582 if (svm_fifo_is_empty (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001583 {
Florin Coras54693d22018-07-17 10:46:29 -07001584 if (is_nonblocking)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001585 {
Florin Coras41c9e042018-09-11 00:10:41 -07001586 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001587 return VPPCOM_EWOULDBLOCK;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001588 }
Florin Coras41c9e042018-09-11 00:10:41 -07001589 while (svm_fifo_is_empty (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001590 {
Florin Coras41c9e042018-09-11 00:10:41 -07001591 svm_fifo_unset_event (rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001592 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001593 if (svm_msg_q_is_empty (mq))
1594 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001595
Florin Coras54693d22018-07-17 10:46:29 -07001596 svm_msg_q_sub_w_lock (mq, &msg);
1597 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001598 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001599 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001600 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001601 svm_msg_q_free_msg (mq, &msg);
Florin Coras41c9e042018-09-11 00:10:41 -07001602
Florin Coras05ce4b82018-12-15 18:30:43 -08001603 if (PREDICT_FALSE (s->session_state == STATE_DISCONNECT))
1604 return VPPCOM_ECONNRESET;
Florin Coras54693d22018-07-17 10:46:29 -07001605 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001606 }
Florin Coras54693d22018-07-17 10:46:29 -07001607
Florin Coras460dce62018-07-27 05:45:06 -07001608 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001609 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001610 else
Florin Coras99368312018-08-02 10:45:44 -07001611 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001612
Florin Coras41c9e042018-09-11 00:10:41 -07001613 if (svm_fifo_is_empty (rx_fifo))
1614 svm_fifo_unset_event (rx_fifo);
1615
Florin Coras58c101a2018-10-06 13:49:16 -07001616 if (is_ct && svm_fifo_want_tx_evt (rx_fifo))
Florin Coras99368312018-08-02 10:45:44 -07001617 {
Florin Coras58c101a2018-10-06 13:49:16 -07001618 svm_fifo_set_want_tx_evt (s->rx_fifo, 0);
1619 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo, SESSION_IO_EVT_CT_RX,
1620 SVM_Q_WAIT);
Florin Coras99368312018-08-02 10:45:44 -07001621 }
Florin Coras54693d22018-07-17 10:46:29 -07001622
Florin Corasa7a1a222018-12-30 17:11:31 -08001623 VDBG (2, "vpp handle 0x%llx, sid %u: read %d bytes from (%p)",
1624 s->vpp_handle, session_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001625
Florin Coras54693d22018-07-17 10:46:29 -07001626 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001627}
1628
Steven58f464e2017-10-25 12:33:12 -07001629int
Florin Coras134a9962018-08-28 11:32:04 -07001630vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001631{
Florin Coras134a9962018-08-28 11:32:04 -07001632 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001633}
1634
1635static int
Florin Coras134a9962018-08-28 11:32:04 -07001636vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001637{
Florin Coras134a9962018-08-28 11:32:04 -07001638 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001639}
1640
Florin Coras2cba8532018-09-11 16:33:36 -07001641int
1642vppcom_session_read_segments (uint32_t session_handle,
1643 vppcom_data_segments_t ds)
1644{
1645 vcl_worker_t *wrk = vcl_worker_get_current ();
1646 int n_read = 0, rv, is_nonblocking;
1647 vcl_session_t *s = 0;
1648 svm_fifo_t *rx_fifo;
1649 svm_msg_q_msg_t msg;
1650 session_event_t *e;
1651 svm_msg_q_t *mq;
1652 u8 is_ct;
1653
1654 s = vcl_session_get_w_handle (wrk, session_handle);
1655 if (PREDICT_FALSE (!s || s->is_vep))
1656 return VPPCOM_EBADFD;
1657
1658 if (PREDICT_FALSE (!vcl_session_is_readable (s)))
1659 {
1660 session_state_t state = s->session_state;
1661 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1662 return rv;
1663 }
1664
1665 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1666 is_ct = vcl_session_is_ct (s);
1667 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1668 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001669 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001670
1671 if (svm_fifo_is_empty (rx_fifo))
1672 {
1673 if (is_nonblocking)
1674 {
1675 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001676 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001677 }
1678 while (svm_fifo_is_empty (rx_fifo))
1679 {
1680 svm_fifo_unset_event (rx_fifo);
1681 svm_msg_q_lock (mq);
1682 if (svm_msg_q_is_empty (mq))
1683 svm_msg_q_wait (mq);
1684
1685 svm_msg_q_sub_w_lock (mq, &msg);
1686 e = svm_msg_q_msg_data (mq, &msg);
1687 svm_msg_q_unlock (mq);
1688 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001689 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001690 svm_msg_q_free_msg (mq, &msg);
1691
Florin Coras05ce4b82018-12-15 18:30:43 -08001692 if (PREDICT_FALSE (s->session_state == STATE_DISCONNECT))
1693 return VPPCOM_ECONNRESET;
Florin Coras2cba8532018-09-11 16:33:36 -07001694 }
1695 }
1696
1697 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_segment_t *) ds);
1698 svm_fifo_unset_event (rx_fifo);
1699
1700 if (is_ct && n_read + svm_fifo_max_dequeue (rx_fifo) == rx_fifo->nitems)
1701 {
1702 /* If the peer is not polling send notification */
1703 if (!svm_fifo_has_event (s->rx_fifo))
1704 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo,
1705 SESSION_IO_EVT_CT_RX, SVM_Q_WAIT);
1706 }
1707
1708 return n_read;
1709}
1710
1711void
1712vppcom_session_free_segments (uint32_t session_handle,
1713 vppcom_data_segments_t ds)
1714{
1715 vcl_worker_t *wrk = vcl_worker_get_current ();
1716 vcl_session_t *s;
1717
1718 s = vcl_session_get_w_handle (wrk, session_handle);
1719 if (PREDICT_FALSE (!s || s->is_vep))
1720 return;
1721
1722 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_segment_t *) ds);
1723}
1724
Dave Wallace543852a2017-08-03 02:11:34 -04001725static inline int
Florin Coras54693d22018-07-17 10:46:29 -07001726vppcom_session_read_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001727{
Dave Wallace543852a2017-08-03 02:11:34 -04001728 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001729 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001730 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001731 clib_warning ("VCL<%d>: ERROR: sid %u: cannot read from an "
Florin Coras134a9962018-08-28 11:32:04 -07001732 "epoll session!", getpid (), session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001733 return VPPCOM_EBADFD;
1734 }
1735
1736 if (PREDICT_FALSE (!(session->session_state & (STATE_OPEN | STATE_LISTEN))))
1737 {
1738 session_state_t state = session->session_state;
1739 int rv;
1740
1741 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
1742
1743 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open!"
1744 " state 0x%x (%s), returning %d (%s)", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07001745 session->vpp_handle, session->session_index, state,
Florin Coras54693d22018-07-17 10:46:29 -07001746 vppcom_session_state_str (state), rv, vppcom_retval_str (rv));
1747 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001748 }
Dave Wallace33e002b2017-09-06 01:20:02 -04001749
Florin Coras7e12d942018-06-27 14:32:43 -07001750 if (session->session_state & STATE_LISTEN)
Florin Coras54693d22018-07-17 10:46:29 -07001751 return clib_fifo_elts (session->accept_evts_fifo);
1752
1753 return svm_fifo_max_dequeue (session->rx_fifo);
1754}
1755
Florin Coras2cba8532018-09-11 16:33:36 -07001756int
1757vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1758{
1759 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001760 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001761 if (first_copy < max_bytes)
1762 {
Dave Barach178cf492018-11-13 16:34:13 -05001763 clib_memcpy_fast (buf + first_copy, ds[1].data,
1764 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001765 }
1766 return 0;
1767}
1768
Florin Coras54693d22018-07-17 10:46:29 -07001769static u8
1770vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1771{
1772 if (!is_ct)
1773 return (e->event_type == FIFO_EVENT_APP_TX
1774 && e->fifo->client_session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001775 else
Florin Coras54693d22018-07-17 10:46:29 -07001776 return (e->event_type == SESSION_IO_EVT_CT_RX);
Dave Wallace543852a2017-08-03 02:11:34 -04001777}
1778
Florin Coras42ceddb2018-12-12 10:56:01 -08001779static inline int
1780vppcom_session_write_inline (uint32_t session_handle, void *buf, size_t n,
1781 u8 is_flush)
Dave Wallace543852a2017-08-03 02:11:34 -04001782{
Florin Coras134a9962018-08-28 11:32:04 -07001783 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001784 int rv, n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001785 vcl_session_t *s = 0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001786 svm_fifo_t *tx_fifo = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001787 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001788 svm_msg_q_msg_t msg;
1789 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001790 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001791 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001792
Florin Coras070453d2018-08-24 17:04:27 -07001793 if (PREDICT_FALSE (!buf))
1794 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001795
Florin Coras134a9962018-08-28 11:32:04 -07001796 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001797 if (PREDICT_FALSE (!s))
1798 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001799
Florin Coras460dce62018-07-27 05:45:06 -07001800 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001801 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001802 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001803 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001804 getpid (), s->vpp_handle, session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001805
Florin Coras070453d2018-08-24 17:04:27 -07001806 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001807 }
1808
Florin Coras0e88e852018-09-17 22:09:02 -07001809 if (PREDICT_FALSE (!(s->session_state & STATE_OPEN)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001810 {
Florin Coras460dce62018-07-27 05:45:06 -07001811 session_state_t state = s->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001812 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Florin Coras0d427d82018-06-27 03:24:07 -07001813 VDBG (1, "VCL<%d>: vpp handle 0x%llx, sid %u: session is not open! "
Florin Coras0e88e852018-09-17 22:09:02 -07001814 "state 0x%x (%s)", getpid (), s->vpp_handle, session_handle,
Florin Coras0d427d82018-06-27 03:24:07 -07001815 state, vppcom_session_state_str (state));
Florin Coras070453d2018-08-24 17:04:27 -07001816 return rv;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001817 }
1818
Florin Coras0e88e852018-09-17 22:09:02 -07001819 tx_fifo = s->tx_fifo;
1820 is_ct = vcl_session_is_ct (s);
1821 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1822 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
Florin Coras54693d22018-07-17 10:46:29 -07001823 if (svm_fifo_is_full (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001824 {
Florin Coras54693d22018-07-17 10:46:29 -07001825 if (is_nonblocking)
1826 {
Florin Coras070453d2018-08-24 17:04:27 -07001827 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001828 }
Florin Coras60f1fc12018-08-16 14:57:31 -07001829 while (svm_fifo_is_full (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001830 {
Florin Coras0e88e852018-09-17 22:09:02 -07001831 svm_fifo_set_want_tx_evt (tx_fifo, 1);
Florin Coras99368312018-08-02 10:45:44 -07001832 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001833 if (svm_msg_q_is_empty (mq))
1834 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001835
Florin Coras54693d22018-07-17 10:46:29 -07001836 svm_msg_q_sub_w_lock (mq, &msg);
1837 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001838 svm_msg_q_unlock (mq);
1839
Florin Coras0e88e852018-09-17 22:09:02 -07001840 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001841 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001842 svm_msg_q_free_msg (mq, &msg);
Florin Coras05ce4b82018-12-15 18:30:43 -08001843
1844 if (PREDICT_FALSE (!(s->session_state & STATE_OPEN)))
1845 return VPPCOM_ECONNRESET;
Florin Coras54693d22018-07-17 10:46:29 -07001846 }
Dave Wallace543852a2017-08-03 02:11:34 -04001847 }
Dave Wallace543852a2017-08-03 02:11:34 -04001848
Florin Coras460dce62018-07-27 05:45:06 -07001849 ASSERT (FIFO_EVENT_APP_TX + 1 == SESSION_IO_EVT_CT_TX);
1850 et = FIFO_EVENT_APP_TX + vcl_session_is_ct (s);
Florin Coras42ceddb2018-12-12 10:56:01 -08001851 if (is_flush && !vcl_session_is_ct (s))
1852 et = SESSION_IO_EVT_TX_FLUSH;
1853
Florin Coras460dce62018-07-27 05:45:06 -07001854 if (s->is_dgram)
1855 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
1856 s->vpp_evt_q, buf, n, et, SVM_Q_WAIT);
1857 else
1858 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
1859 SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07001860
Florin Coras460dce62018-07-27 05:45:06 -07001861 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04001862
Florin Coras0e88e852018-09-17 22:09:02 -07001863 VDBG (2, "VCL<%d>: vpp handle 0x%llx, sid %u: wrote %d bytes", getpid (),
1864 s->vpp_handle, session_handle, n_write);
1865
Florin Coras54693d22018-07-17 10:46:29 -07001866 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04001867}
1868
Florin Coras42ceddb2018-12-12 10:56:01 -08001869int
1870vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
1871{
1872 return vppcom_session_write_inline (session_handle, buf, n,
1873 0 /* is_flush */ );
1874}
1875
Florin Corasb0f662f2018-12-27 14:51:46 -08001876int
1877vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
1878{
1879 return vppcom_session_write_inline (session_handle, buf, n,
1880 1 /* is_flush */ );
1881}
1882
1883
Florin Coras99368312018-08-02 10:45:44 -07001884static vcl_session_t *
Florin Coras134a9962018-08-28 11:32:04 -07001885vcl_ct_session_get_from_fifo (vcl_worker_t * wrk, svm_fifo_t * f, u8 type)
Florin Coras99368312018-08-02 10:45:44 -07001886{
1887 vcl_session_t *s;
Florin Coras134a9962018-08-28 11:32:04 -07001888 s = vcl_session_get (wrk, f->client_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001889 if (s)
1890 {
1891 /* rx fifo */
1892 if (type == 0 && s->rx_fifo == f)
1893 return s;
1894 /* tx fifo */
1895 if (type == 1 && s->tx_fifo == f)
1896 return s;
1897 }
Florin Coras134a9962018-08-28 11:32:04 -07001898 s = vcl_session_get (wrk, f->master_session_index);
Florin Coras99368312018-08-02 10:45:44 -07001899 if (s)
1900 {
1901 if (type == 0 && s->rx_fifo == f)
1902 return s;
1903 if (type == 1 && s->tx_fifo == f)
1904 return s;
1905 }
1906 return 0;
1907}
1908
Dave Wallace543852a2017-08-03 02:11:34 -04001909static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001910vppcom_session_write_ready (vcl_session_t * session)
Dave Wallace543852a2017-08-03 02:11:34 -04001911{
Dave Wallace543852a2017-08-03 02:11:34 -04001912 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Dave Wallace4878cbe2017-11-21 03:45:09 -05001913 if (PREDICT_FALSE (session->is_vep))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001914 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001915 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001916 "cannot write to an epoll session!",
Florin Coras134a9962018-08-28 11:32:04 -07001917 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001918 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001919 }
1920
Florin Coras7e12d942018-06-27 14:32:43 -07001921 if (PREDICT_FALSE (session->session_state & STATE_LISTEN))
Dave Wallace33e002b2017-09-06 01:20:02 -04001922 {
Dave Wallace048b1d62018-01-03 22:24:41 -05001923 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Dave Wallaceee45d412017-11-24 21:44:06 -05001924 "cannot write to a listen session!",
Florin Coras134a9962018-08-28 11:32:04 -07001925 getpid (), session->vpp_handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -07001926 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001927 }
1928
Florin Coras54693d22018-07-17 10:46:29 -07001929 if (PREDICT_FALSE (!(session->session_state & STATE_OPEN)))
Dave Wallace4878cbe2017-11-21 03:45:09 -05001930 {
Florin Coras7e12d942018-06-27 14:32:43 -07001931 session_state_t state = session->session_state;
Florin Coras54693d22018-07-17 10:46:29 -07001932 int rv;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001933
Keith Burns (alagalah)56a0d062018-02-15 07:52:50 -08001934 rv = ((state & STATE_DISCONNECT) ? VPPCOM_ECONNRESET : VPPCOM_ENOTCONN);
Dave Wallace048b1d62018-01-03 22:24:41 -05001935 clib_warning ("VCL<%d>: ERROR: vpp handle 0x%llx, sid %u: "
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001936 "session is not open! state 0x%x (%s), "
Dave Wallaceee45d412017-11-24 21:44:06 -05001937 "returning %d (%s)", getpid (), session->vpp_handle,
Florin Coras134a9962018-08-28 11:32:04 -07001938 session->session_index,
Dave Wallace4878cbe2017-11-21 03:45:09 -05001939 state, vppcom_session_state_str (state),
1940 rv, vppcom_retval_str (rv));
Florin Coras54693d22018-07-17 10:46:29 -07001941 return rv;
Dave Wallace33e002b2017-09-06 01:20:02 -04001942 }
1943
Florin Coras0d427d82018-06-27 03:24:07 -07001944 VDBG (3, "VCL<%d>: vpp handle 0x%llx, sid %u: peek %s (%p), ready = %d",
Florin Coras134a9962018-08-28 11:32:04 -07001945 getpid (), session->vpp_handle, session->session_index,
1946 session->tx_fifo, svm_fifo_max_enqueue (session->tx_fifo));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001947
Florin Coras54693d22018-07-17 10:46:29 -07001948 return svm_fifo_max_enqueue (session->tx_fifo);
1949}
1950
Florin Coras99368312018-08-02 10:45:44 -07001951static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001952vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq)
Florin Coras99368312018-08-02 10:45:44 -07001953{
1954 svm_msg_q_msg_t *msg;
1955 u32 n_msgs;
1956 int i;
1957
1958 n_msgs = svm_msg_q_size (mq);
1959 for (i = 0; i < n_msgs; i++)
1960 {
Florin Coras134a9962018-08-28 11:32:04 -07001961 vec_add2 (wrk->mq_msg_vector, msg, 1);
Florin Coras99368312018-08-02 10:45:44 -07001962 svm_msg_q_sub_w_lock (mq, msg);
1963 }
1964 return n_msgs;
1965}
1966
Florin Coras6d4bb422018-09-04 22:07:27 -07001967#define vcl_fifo_rx_evt_valid_or_break(_fifo) \
1968if (PREDICT_FALSE (svm_fifo_is_empty (_fifo))) \
1969 { \
1970 svm_fifo_unset_event (_fifo); \
1971 if (svm_fifo_is_empty (_fifo)) \
Florin Coras41c9e042018-09-11 00:10:41 -07001972 break; \
Florin Coras6d4bb422018-09-04 22:07:27 -07001973 } \
1974
Florin Coras86f04502018-09-12 16:08:01 -07001975static void
1976vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
1977 unsigned long n_bits, unsigned long *read_map,
1978 unsigned long *write_map,
1979 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07001980{
1981 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07001982 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07001983 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07001984 u32 sid;
1985
1986 switch (e->event_type)
1987 {
1988 case FIFO_EVENT_APP_RX:
1989 vcl_fifo_rx_evt_valid_or_break (e->fifo);
1990 sid = e->fifo->client_session_index;
1991 session = vcl_session_get (wrk, sid);
1992 if (!session)
1993 break;
1994 if (sid < n_bits && read_map)
1995 {
David Johnsond9818dd2018-12-14 14:53:41 -05001996 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07001997 *bits_set += 1;
1998 }
1999 break;
2000 case FIFO_EVENT_APP_TX:
2001 sid = e->fifo->client_session_index;
2002 session = vcl_session_get (wrk, sid);
2003 if (!session)
2004 break;
2005 if (sid < n_bits && write_map)
2006 {
David Johnsond9818dd2018-12-14 14:53:41 -05002007 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002008 *bits_set += 1;
2009 }
2010 break;
2011 case SESSION_IO_EVT_CT_TX:
2012 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2013 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
2014 if (!session)
2015 break;
2016 sid = session->session_index;
2017 if (sid < n_bits && read_map)
2018 {
David Johnsond9818dd2018-12-14 14:53:41 -05002019 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002020 *bits_set += 1;
2021 }
2022 break;
2023 case SESSION_IO_EVT_CT_RX:
2024 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
2025 if (!session)
2026 break;
2027 sid = session->session_index;
2028 if (sid < n_bits && write_map)
2029 {
David Johnsond9818dd2018-12-14 14:53:41 -05002030 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002031 *bits_set += 1;
2032 }
2033 break;
2034 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002035 session = vcl_session_accepted (wrk,
2036 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002037 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002038 break;
Florin Coras86f04502018-09-12 16:08:01 -07002039 sid = session->session_index;
2040 if (sid < n_bits && read_map)
2041 {
David Johnsond9818dd2018-12-14 14:53:41 -05002042 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002043 *bits_set += 1;
2044 }
2045 break;
2046 case SESSION_CTRL_EVT_CONNECTED:
2047 connected_msg = (session_connected_msg_t *) e->data;
2048 vcl_session_connected_handler (wrk, connected_msg);
2049 break;
2050 case SESSION_CTRL_EVT_DISCONNECTED:
2051 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002052 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2053 if (!session)
2054 break;
2055 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002056 if (sid < n_bits && except_map)
2057 {
David Johnsond9818dd2018-12-14 14:53:41 -05002058 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002059 *bits_set += 1;
2060 }
2061 break;
2062 case SESSION_CTRL_EVT_RESET:
2063 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2064 if (sid < n_bits && except_map)
2065 {
David Johnsond9818dd2018-12-14 14:53:41 -05002066 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002067 *bits_set += 1;
2068 }
2069 break;
2070 default:
2071 clib_warning ("unhandled: %u", e->event_type);
2072 break;
2073 }
2074}
2075
2076static int
2077vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2078 unsigned long n_bits, unsigned long *read_map,
2079 unsigned long *write_map, unsigned long *except_map,
2080 double time_to_wait, u32 * bits_set)
2081{
Florin Coras99368312018-08-02 10:45:44 -07002082 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002083 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002084 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002085
2086 svm_msg_q_lock (mq);
2087 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002088 {
Florin Coras54693d22018-07-17 10:46:29 -07002089 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002090 {
Florin Coras54693d22018-07-17 10:46:29 -07002091 svm_msg_q_unlock (mq);
2092 return 0;
2093 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002094
Florin Coras54693d22018-07-17 10:46:29 -07002095 if (!time_to_wait)
2096 {
2097 svm_msg_q_unlock (mq);
2098 return 0;
2099 }
2100 else if (time_to_wait < 0)
2101 {
2102 svm_msg_q_wait (mq);
2103 }
2104 else
2105 {
2106 if (svm_msg_q_timedwait (mq, time_to_wait))
2107 {
2108 svm_msg_q_unlock (mq);
2109 return 0;
2110 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002111 }
2112 }
Florin Coras134a9962018-08-28 11:32:04 -07002113 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002114 svm_msg_q_unlock (mq);
2115
Florin Coras134a9962018-08-28 11:32:04 -07002116 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002117 {
Florin Coras134a9962018-08-28 11:32:04 -07002118 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002119 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002120 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2121 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002122 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002123 }
Florin Coras134a9962018-08-28 11:32:04 -07002124 vec_reset_length (wrk->mq_msg_vector);
Florin Coras54693d22018-07-17 10:46:29 -07002125 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002126}
2127
Florin Coras99368312018-08-02 10:45:44 -07002128static int
Florin Coras134a9962018-08-28 11:32:04 -07002129vppcom_select_condvar (vcl_worker_t * wrk, unsigned long n_bits,
2130 unsigned long *read_map, unsigned long *write_map,
2131 unsigned long *except_map, double time_to_wait,
2132 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002133{
2134 double total_wait = 0, wait_slice;
2135 vcl_cut_through_registration_t *cr;
2136
2137 time_to_wait = (time_to_wait == -1) ? 10e9 : time_to_wait;
Florin Coras134a9962018-08-28 11:32:04 -07002138 wait_slice = wrk->cut_through_registrations ? 10e-6 : time_to_wait;
Florin Coras99368312018-08-02 10:45:44 -07002139 do
2140 {
Florin Coras134a9962018-08-28 11:32:04 -07002141 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002142 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002143 pool_foreach (cr, wrk->cut_through_registrations, ({
2144 vcl_select_handle_mq (wrk, cr->mq, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002145 0, bits_set);
2146 }));
2147 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002148 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002149
Florin Coras134a9962018-08-28 11:32:04 -07002150 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2151 write_map, except_map, time_to_wait, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002152 total_wait += wait_slice;
2153 if (*bits_set)
2154 return *bits_set;
2155 }
2156 while (total_wait < time_to_wait);
2157
2158 return 0;
2159}
2160
2161static int
Florin Coras134a9962018-08-28 11:32:04 -07002162vppcom_select_eventfd (vcl_worker_t * wrk, unsigned long n_bits,
2163 unsigned long *read_map, unsigned long *write_map,
2164 unsigned long *except_map, double time_to_wait,
2165 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002166{
2167 vcl_mq_evt_conn_t *mqc;
2168 int __clib_unused n_read;
2169 int n_mq_evts, i;
2170 u64 buf;
2171
Florin Coras134a9962018-08-28 11:32:04 -07002172 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2173 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2174 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002175 for (i = 0; i < n_mq_evts; i++)
2176 {
Florin Coras134a9962018-08-28 11:32:04 -07002177 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002178 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002179 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002180 except_map, 0, bits_set);
2181 }
2182
2183 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2184}
2185
Dave Wallace543852a2017-08-03 02:11:34 -04002186int
2187vppcom_select (unsigned long n_bits, unsigned long *read_map,
2188 unsigned long *write_map, unsigned long *except_map,
2189 double time_to_wait)
2190{
Florin Coras54693d22018-07-17 10:46:29 -07002191 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002192 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002193 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002194 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002195
David Johnsond9818dd2018-12-14 14:53:41 -05002196 STATIC_ASSERT (sizeof (clib_bitmap_t) == sizeof (unsigned long),
2197 "vppcom bitmap size mismatch");
2198 STATIC_ASSERT (sizeof (clib_bitmap_t) == sizeof (fd_mask),
2199 "vppcom bitmap size mismatch");
2200 STATIC_ASSERT (sizeof (clib_bitmap_t) == sizeof (uword),
2201 "vppcom bitmap size mismatch");
Dave Wallace543852a2017-08-03 02:11:34 -04002202
Dave Wallace7876d392017-10-19 03:53:57 -04002203 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002204 {
Florin Coras134a9962018-08-28 11:32:04 -07002205 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002206 clib_memcpy_fast (wrk->rd_bitmap, read_map,
David Johnsond9818dd2018-12-14 14:53:41 -05002207 vec_len (wrk->rd_bitmap) * sizeof (unsigned long));
2208 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (unsigned long));
Dave Wallace543852a2017-08-03 02:11:34 -04002209 }
Dave Wallace7876d392017-10-19 03:53:57 -04002210 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002211 {
Florin Coras134a9962018-08-28 11:32:04 -07002212 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002213 clib_memcpy_fast (wrk->wr_bitmap, write_map,
David Johnsond9818dd2018-12-14 14:53:41 -05002214 vec_len (wrk->wr_bitmap) * sizeof (unsigned long));
Dave Wallace048b1d62018-01-03 22:24:41 -05002215 memset (write_map, 0,
David Johnsond9818dd2018-12-14 14:53:41 -05002216 vec_len (wrk->wr_bitmap) * sizeof (unsigned long));
Dave Wallace543852a2017-08-03 02:11:34 -04002217 }
Dave Wallace7876d392017-10-19 03:53:57 -04002218 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002219 {
Florin Coras134a9962018-08-28 11:32:04 -07002220 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002221 clib_memcpy_fast (wrk->ex_bitmap, except_map,
David Johnsond9818dd2018-12-14 14:53:41 -05002222 vec_len (wrk->ex_bitmap) * sizeof (unsigned long));
Dave Wallace048b1d62018-01-03 22:24:41 -05002223 memset (except_map, 0,
David Johnsond9818dd2018-12-14 14:53:41 -05002224 vec_len (wrk->ex_bitmap) * sizeof (unsigned long));
Dave Wallace543852a2017-08-03 02:11:34 -04002225 }
2226
Florin Coras54693d22018-07-17 10:46:29 -07002227 if (!n_bits)
2228 return 0;
2229
2230 if (!write_map)
2231 goto check_rd;
2232
2233 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002234 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2235 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002236 {
Florin Coras47c40e22018-11-26 17:01:36 -08002237 if (except_map && sid < minbits)
2238 clib_bitmap_set_no_check (except_map, sid, 1);
2239 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002240 }
2241
2242 rv = svm_fifo_is_full (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002243 if (!rv)
2244 {
David Johnsond9818dd2018-12-14 14:53:41 -05002245 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002246 bits_set++;
2247 }
2248 }));
2249
2250check_rd:
2251 if (!read_map)
2252 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002253
Florin Coras134a9962018-08-28 11:32:04 -07002254 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2255 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002256 {
Florin Coras47c40e22018-11-26 17:01:36 -08002257 if (except_map && sid < minbits)
2258 clib_bitmap_set_no_check (except_map, sid, 1);
2259 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002260 }
2261
2262 rv = vppcom_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002263 if (rv)
2264 {
David Johnsond9818dd2018-12-14 14:53:41 -05002265 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002266 bits_set++;
2267 }
2268 }));
2269 /* *INDENT-ON* */
2270
2271check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002272
Florin Coras86f04502018-09-12 16:08:01 -07002273 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2274 {
2275 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2276 read_map, write_map, except_map, &bits_set);
2277 }
2278 vec_reset_length (wrk->unhandled_evts_vector);
2279
Florin Coras99368312018-08-02 10:45:44 -07002280 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002281 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002282 time_to_wait, &bits_set);
2283 else
Florin Coras134a9962018-08-28 11:32:04 -07002284 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002285 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002286
Dave Wallace543852a2017-08-03 02:11:34 -04002287 return (bits_set);
2288}
2289
Dave Wallacef7f809c2017-10-03 01:48:42 -04002290static inline void
Florin Coras134a9962018-08-28 11:32:04 -07002291vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_idx)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002292{
Florin Coras7e12d942018-06-27 14:32:43 -07002293 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002294 vppcom_epoll_t *vep;
Dave Wallace498b3a52017-11-09 13:00:34 -05002295 u32 sid = vep_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002296
Dave Wallace498b3a52017-11-09 13:00:34 -05002297 if (VPPCOM_DEBUG <= 1)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002298 return;
2299
2300 /* Assumes caller has acquired spinlock: vcm->sessions_lockp */
Florin Coras134a9962018-08-28 11:32:04 -07002301 session = vcl_session_get (wrk, vep_idx);
Florin Coras070453d2018-08-24 17:04:27 -07002302 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002303 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002304 clib_warning ("VCL<%d>: ERROR: Invalid vep_idx (%u)!",
2305 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002306 goto done;
2307 }
2308 if (PREDICT_FALSE (!session->is_vep))
2309 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002310 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
2311 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002312 goto done;
2313 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002314 vep = &session->vep;
Dave Wallace048b1d62018-01-03 22:24:41 -05002315 clib_warning ("VCL<%d>: vep_idx (%u): Dumping epoll chain\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002316 "{\n"
2317 " is_vep = %u\n"
2318 " is_vep_session = %u\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002319 " next_sid = 0x%x (%u)\n"
Dave Wallace498b3a52017-11-09 13:00:34 -05002320 " wait_cont_idx = 0x%x (%u)\n"
Dave Wallace4878cbe2017-11-21 03:45:09 -05002321 "}\n", getpid (), vep_idx,
2322 session->is_vep, session->is_vep_session,
Florin Coras134a9962018-08-28 11:32:04 -07002323 vep->next_sh, vep->next_sh,
Dave Wallace498b3a52017-11-09 13:00:34 -05002324 session->wait_cont_idx, session->wait_cont_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002325
Florin Coras134a9962018-08-28 11:32:04 -07002326 for (sid = vep->next_sh; sid != ~0; sid = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002327 {
Florin Coras134a9962018-08-28 11:32:04 -07002328 session = vcl_session_get (wrk, sid);
Florin Coras070453d2018-08-24 17:04:27 -07002329 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002330 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002331 clib_warning ("VCL<%d>: ERROR: Invalid sid (%u)!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002332 goto done;
2333 }
2334 if (PREDICT_FALSE (session->is_vep))
Dave Wallace048b1d62018-01-03 22:24:41 -05002335 clib_warning ("VCL<%d>: ERROR: sid (%u) is a vep!",
2336 getpid (), vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002337 else if (PREDICT_FALSE (!session->is_vep_session))
2338 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002339 clib_warning ("VCL<%d>: ERROR: session (%u) "
2340 "is not a vep session!", getpid (), sid);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002341 goto done;
2342 }
2343 vep = &session->vep;
Florin Coras134a9962018-08-28 11:32:04 -07002344 if (PREDICT_FALSE (vep->vep_sh != vep_idx))
Dave Wallace048b1d62018-01-03 22:24:41 -05002345 clib_warning ("VCL<%d>: ERROR: session (%u) vep_idx (%u) != "
Dave Wallace4878cbe2017-11-21 03:45:09 -05002346 "vep_idx (%u)!", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002347 sid, session->vep.vep_sh, vep_idx);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002348 if (session->is_vep_session)
2349 {
2350 clib_warning ("vep_idx[%u]: sid 0x%x (%u)\n"
2351 "{\n"
2352 " next_sid = 0x%x (%u)\n"
2353 " prev_sid = 0x%x (%u)\n"
2354 " vep_idx = 0x%x (%u)\n"
2355 " ev.events = 0x%x\n"
2356 " ev.data.u64 = 0x%llx\n"
2357 " et_mask = 0x%x\n"
2358 "}\n",
2359 vep_idx, sid, sid,
Florin Coras134a9962018-08-28 11:32:04 -07002360 vep->next_sh, vep->next_sh,
2361 vep->prev_sh, vep->prev_sh,
2362 vep->vep_sh, vep->vep_sh,
Dave Wallace4878cbe2017-11-21 03:45:09 -05002363 vep->ev.events, vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002364 }
2365 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002366
2367done:
Dave Wallace048b1d62018-01-03 22:24:41 -05002368 clib_warning ("VCL<%d>: vep_idx (%u): Dump complete!\n",
2369 getpid (), vep_idx);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002370}
2371
2372int
2373vppcom_epoll_create (void)
2374{
Florin Coras134a9962018-08-28 11:32:04 -07002375 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002376 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002377
Florin Coras134a9962018-08-28 11:32:04 -07002378 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002379
2380 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002381 vep_session->vep.vep_sh = ~0;
2382 vep_session->vep.next_sh = ~0;
2383 vep_session->vep.prev_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002384 vep_session->wait_cont_idx = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002385 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002386
Florin Corasa7a1a222018-12-30 17:11:31 -08002387 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2388 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002389
Florin Corasab2f6db2018-08-31 14:31:41 -07002390 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002391}
2392
2393int
Florin Coras134a9962018-08-28 11:32:04 -07002394vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002395 struct epoll_event *event)
2396{
Florin Coras134a9962018-08-28 11:32:04 -07002397 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002398 vcl_session_t *vep_session;
2399 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002400 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002401
Florin Coras134a9962018-08-28 11:32:04 -07002402 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002403 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002404 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002405 return VPPCOM_EINVAL;
2406 }
2407
Florin Coras134a9962018-08-28 11:32:04 -07002408 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002409 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002410 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002411 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002412 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002413 }
2414 if (PREDICT_FALSE (!vep_session->is_vep))
2415 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002416 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002417 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002418 }
2419
Florin Coras134a9962018-08-28 11:32:04 -07002420 ASSERT (vep_session->vep.vep_sh == ~0);
2421 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002422
Florin Coras134a9962018-08-28 11:32:04 -07002423 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002424 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002425 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002426 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002427 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002428 }
2429 if (PREDICT_FALSE (session->is_vep))
2430 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002431 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002432 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002433 }
2434
2435 switch (op)
2436 {
2437 case EPOLL_CTL_ADD:
2438 if (PREDICT_FALSE (!event))
2439 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002440 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002441 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002442 }
Florin Coras134a9962018-08-28 11:32:04 -07002443 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002444 {
Florin Coras7e12d942018-06-27 14:32:43 -07002445 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002446 next_session = vcl_session_get_w_handle (wrk,
2447 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002448 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002449 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002450 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sid (%u) on "
2451 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002452 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002453 }
Florin Coras134a9962018-08-28 11:32:04 -07002454 ASSERT (next_session->vep.prev_sh == vep_handle);
2455 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002456 }
Florin Coras134a9962018-08-28 11:32:04 -07002457 session->vep.next_sh = vep_session->vep.next_sh;
2458 session->vep.prev_sh = vep_handle;
2459 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002460 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2461 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002462 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002463 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002464 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002465
Florin Corasa7a1a222018-12-30 17:11:31 -08002466 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2467 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002468 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002469 break;
2470
2471 case EPOLL_CTL_MOD:
2472 if (PREDICT_FALSE (!event))
2473 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002474 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002475 rv = VPPCOM_EINVAL;
2476 goto done;
2477 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002478 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002479 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002480 VDBG (0, "sid %u EPOLL_CTL_MOD: not a vep session!",
2481 session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002482 rv = VPPCOM_EINVAL;
2483 goto done;
2484 }
Florin Coras134a9962018-08-28 11:32:04 -07002485 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002486 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002487 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2488 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002489 rv = VPPCOM_EINVAL;
2490 goto done;
2491 }
2492 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2493 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002494 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2495 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002496 break;
2497
2498 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002499 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002500 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002501 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002502 rv = VPPCOM_EINVAL;
2503 goto done;
2504 }
Florin Coras134a9962018-08-28 11:32:04 -07002505 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002506 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002507 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2508 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002509 rv = VPPCOM_EINVAL;
2510 goto done;
2511 }
2512
2513 vep_session->wait_cont_idx =
Florin Coras134a9962018-08-28 11:32:04 -07002514 (vep_session->wait_cont_idx == session_handle) ?
2515 session->vep.next_sh : vep_session->wait_cont_idx;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002516
Florin Coras134a9962018-08-28 11:32:04 -07002517 if (session->vep.prev_sh == vep_handle)
2518 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002519 else
2520 {
Florin Coras7e12d942018-06-27 14:32:43 -07002521 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002522 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002523 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002524 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002525 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sid (%u) on sid (%u)!",
2526 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002527 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002528 }
Florin Coras134a9962018-08-28 11:32:04 -07002529 ASSERT (prev_session->vep.next_sh == session_handle);
2530 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002531 }
Florin Coras134a9962018-08-28 11:32:04 -07002532 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002533 {
Florin Coras7e12d942018-06-27 14:32:43 -07002534 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002535 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002536 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002537 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002538 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sid (%u) on sid (%u)!",
2539 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002540 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002541 }
Florin Coras134a9962018-08-28 11:32:04 -07002542 ASSERT (next_session->vep.prev_sh == session_handle);
2543 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002544 }
2545
2546 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002547 session->vep.next_sh = ~0;
2548 session->vep.prev_sh = ~0;
2549 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002550 session->is_vep_session = 0;
Florin Corasa7a1a222018-12-30 17:11:31 -08002551 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sid %u!", vep_handle,
2552 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002553 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002554 break;
2555
2556 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002557 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002558 rv = VPPCOM_EINVAL;
2559 }
2560
Florin Coras134a9962018-08-28 11:32:04 -07002561 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002562
2563done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002564 return rv;
2565}
2566
Florin Coras86f04502018-09-12 16:08:01 -07002567static inline void
2568vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2569 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002570{
2571 session_disconnected_msg_t *disconnected_msg;
2572 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002573 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002574 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002575 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002576 u8 add_event = 0;
2577
2578 switch (e->event_type)
2579 {
2580 case FIFO_EVENT_APP_RX:
2581 ASSERT (e->fifo->client_thread_index == vcl_get_worker_index ());
2582 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2583 sid = e->fifo->client_session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002584 if (!(session = vcl_session_get (wrk, sid)))
2585 break;
Florin Coras86f04502018-09-12 16:08:01 -07002586 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002587 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002588 break;
2589 add_event = 1;
2590 events[*num_ev].events |= EPOLLIN;
2591 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002592 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002593 break;
2594 case FIFO_EVENT_APP_TX:
2595 sid = e->fifo->client_session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002596 if (!(session = vcl_session_get (wrk, sid)))
2597 break;
Florin Coras86f04502018-09-12 16:08:01 -07002598 session_events = session->vep.ev.events;
2599 if (!(EPOLLOUT & session_events))
2600 break;
2601 add_event = 1;
2602 events[*num_ev].events |= EPOLLOUT;
2603 session_evt_data = session->vep.ev.data.u64;
2604 break;
2605 case SESSION_IO_EVT_CT_TX:
2606 vcl_fifo_rx_evt_valid_or_break (e->fifo);
2607 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 0);
Florin Corasfa915f82018-12-26 16:29:06 -08002608 if (PREDICT_FALSE (!session))
2609 break;
Florin Coras86f04502018-09-12 16:08:01 -07002610 sid = session->session_index;
2611 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002612 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002613 break;
2614 add_event = 1;
2615 events[*num_ev].events |= EPOLLIN;
2616 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002617 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002618 break;
2619 case SESSION_IO_EVT_CT_RX:
2620 session = vcl_ct_session_get_from_fifo (wrk, e->fifo, 1);
Florin Corasfa915f82018-12-26 16:29:06 -08002621 if (PREDICT_FALSE (!session))
2622 break;
Florin Coras86f04502018-09-12 16:08:01 -07002623 sid = session->session_index;
2624 session_events = session->vep.ev.events;
2625 if (!(EPOLLOUT & session_events))
2626 break;
2627 add_event = 1;
2628 events[*num_ev].events |= EPOLLOUT;
2629 session_evt_data = session->vep.ev.data.u64;
2630 break;
2631 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002632 session = vcl_session_accepted (wrk,
2633 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002634 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002635 break;
Florin Coras86f04502018-09-12 16:08:01 -07002636
Florin Coras86f04502018-09-12 16:08:01 -07002637 session_events = session->vep.ev.events;
2638 if (!(EPOLLIN & session_events))
2639 break;
2640
2641 add_event = 1;
2642 events[*num_ev].events |= EPOLLIN;
2643 session_evt_data = session->vep.ev.data.u64;
2644 break;
2645 case SESSION_CTRL_EVT_CONNECTED:
2646 connected_msg = (session_connected_msg_t *) e->data;
2647 vcl_session_connected_handler (wrk, connected_msg);
2648 /* Generate EPOLLOUT because there's no connected event */
2649 sid = vcl_session_index_from_vpp_handle (wrk, connected_msg->handle);
Florin Corasfa915f82018-12-26 16:29:06 -08002650 if (!(session = vcl_session_get (wrk, sid)))
2651 break;
Florin Coras86f04502018-09-12 16:08:01 -07002652 session_events = session->vep.ev.events;
2653 if (EPOLLOUT & session_events)
2654 {
2655 add_event = 1;
2656 events[*num_ev].events |= EPOLLOUT;
2657 session_evt_data = session->vep.ev.data.u64;
2658 }
2659 break;
2660 case SESSION_CTRL_EVT_DISCONNECTED:
2661 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002662 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2663 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002664 break;
2665 add_event = 1;
2666 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2667 session_evt_data = session->vep.ev.data.u64;
2668 session_events = session->vep.ev.events;
2669 break;
2670 case SESSION_CTRL_EVT_RESET:
2671 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2672 if (!(session = vcl_session_get (wrk, sid)))
2673 break;
2674 add_event = 1;
2675 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2676 session_evt_data = session->vep.ev.data.u64;
2677 session_events = session->vep.ev.events;
2678 break;
2679 default:
2680 VDBG (0, "unhandled: %u", e->event_type);
2681 break;
2682 }
2683
2684 if (add_event)
2685 {
2686 events[*num_ev].data.u64 = session_evt_data;
2687 if (EPOLLONESHOT & session_events)
2688 {
2689 session = vcl_session_get (wrk, sid);
2690 session->vep.ev.events = 0;
2691 }
2692 *num_ev += 1;
2693 }
2694}
2695
2696static int
2697vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2698 struct epoll_event *events, u32 maxevents,
2699 double wait_for_time, u32 * num_ev)
2700{
Florin Coras99368312018-08-02 10:45:44 -07002701 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002702 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002703 int i;
2704
Florin Coras539663c2018-09-28 14:59:37 -07002705 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2706 goto handle_dequeued;
2707
Florin Coras54693d22018-07-17 10:46:29 -07002708 svm_msg_q_lock (mq);
2709 if (svm_msg_q_is_empty (mq))
2710 {
2711 if (!wait_for_time)
2712 {
2713 svm_msg_q_unlock (mq);
2714 return 0;
2715 }
2716 else if (wait_for_time < 0)
2717 {
2718 svm_msg_q_wait (mq);
2719 }
2720 else
2721 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002722 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002723 {
2724 svm_msg_q_unlock (mq);
2725 return 0;
2726 }
2727 }
2728 }
Florin Coras134a9962018-08-28 11:32:04 -07002729 vcl_mq_dequeue_batch (wrk, mq);
Florin Coras54693d22018-07-17 10:46:29 -07002730 svm_msg_q_unlock (mq);
2731
Florin Coras539663c2018-09-28 14:59:37 -07002732handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002733 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002734 {
Florin Coras134a9962018-08-28 11:32:04 -07002735 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002736 e = svm_msg_q_msg_data (mq, msg);
Florin Corasaa27eb92018-10-13 12:20:01 -07002737 if (*num_ev < maxevents)
2738 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
2739 else
2740 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras99368312018-08-02 10:45:44 -07002741 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002742 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002743 vec_reset_length (wrk->mq_msg_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002744
Florin Coras54693d22018-07-17 10:46:29 -07002745 return *num_ev;
2746}
2747
Florin Coras99368312018-08-02 10:45:44 -07002748static int
Florin Coras134a9962018-08-28 11:32:04 -07002749vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002750 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002751{
2752 vcl_cut_through_registration_t *cr;
2753 double total_wait = 0, wait_slice;
Florin Coras99368312018-08-02 10:45:44 -07002754 int rv;
2755
2756 wait_for_time = (wait_for_time == -1) ? (double) 10e9 : wait_for_time;
Florin Coras134a9962018-08-28 11:32:04 -07002757 wait_slice = wrk->cut_through_registrations ? 10e-6 : wait_for_time;
Florin Coras99368312018-08-02 10:45:44 -07002758
2759 do
2760 {
Florin Coras134a9962018-08-28 11:32:04 -07002761 vcl_ct_registration_lock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002762 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002763 pool_foreach (cr, wrk->cut_through_registrations, ({
Florin Coras86f04502018-09-12 16:08:01 -07002764 vcl_epoll_wait_handle_mq (wrk, cr->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002765 }));
2766 /* *INDENT-ON* */
Florin Coras134a9962018-08-28 11:32:04 -07002767 vcl_ct_registration_unlock (wrk);
Florin Coras99368312018-08-02 10:45:44 -07002768
Florin Coras134a9962018-08-28 11:32:04 -07002769 rv = vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events,
Florin Coras86f04502018-09-12 16:08:01 -07002770 maxevents, n_evts ? 0 : wait_slice,
2771 &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002772 if (rv)
2773 total_wait += wait_slice;
Florin Coras86f04502018-09-12 16:08:01 -07002774 if (n_evts)
2775 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002776 }
2777 while (total_wait < wait_for_time);
Florin Coras86f04502018-09-12 16:08:01 -07002778 return n_evts;
Florin Coras99368312018-08-02 10:45:44 -07002779}
2780
2781static int
Florin Coras134a9962018-08-28 11:32:04 -07002782vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002783 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002784{
2785 vcl_mq_evt_conn_t *mqc;
2786 int __clib_unused n_read;
2787 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002788 u64 buf;
2789
Florin Coras134a9962018-08-28 11:32:04 -07002790 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002791again:
Florin Coras134a9962018-08-28 11:32:04 -07002792 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2793 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002794 for (i = 0; i < n_mq_evts; i++)
2795 {
Florin Coras134a9962018-08-28 11:32:04 -07002796 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002797 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002798 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002799 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002800 if (!n_evts && n_mq_evts > 0)
2801 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002802
2803 return (int) n_evts;
2804}
2805
Dave Wallacef7f809c2017-10-03 01:48:42 -04002806int
Florin Coras134a9962018-08-28 11:32:04 -07002807vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002808 int maxevents, double wait_for_time)
2809{
Florin Coras134a9962018-08-28 11:32:04 -07002810 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002811 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002812 u32 n_evts = 0;
2813 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002814
2815 if (PREDICT_FALSE (maxevents <= 0))
2816 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002817 clib_warning ("VCL<%d>: ERROR: Invalid maxevents (%d)!",
Dave Wallace4878cbe2017-11-21 03:45:09 -05002818 getpid (), maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002819 return VPPCOM_EINVAL;
2820 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002821
Florin Coras134a9962018-08-28 11:32:04 -07002822 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002823 if (!vep_session)
2824 return VPPCOM_EBADFD;
2825
Florin Coras54693d22018-07-17 10:46:29 -07002826 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002827 {
Dave Wallace048b1d62018-01-03 22:24:41 -05002828 clib_warning ("VCL<%d>: ERROR: vep_idx (%u) is not a vep!",
Florin Coras134a9962018-08-28 11:32:04 -07002829 getpid (), vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002830 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002831 }
Florin Coras54693d22018-07-17 10:46:29 -07002832
2833 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002834
Florin Coras86f04502018-09-12 16:08:01 -07002835 if (vec_len (wrk->unhandled_evts_vector))
2836 {
2837 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2838 {
2839 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2840 events, &n_evts);
2841 if (n_evts == maxevents)
2842 {
2843 i += 1;
2844 break;
2845 }
2846 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002847
Florin Coras86f04502018-09-12 16:08:01 -07002848 vec_delete (wrk->unhandled_evts_vector, i, 0);
2849 }
2850
2851 if (vcm->cfg.use_mq_eventfd)
2852 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2853 wait_for_time);
2854
2855 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2856 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002857}
2858
Dave Wallace35830af2017-10-09 01:43:42 -04002859int
Florin Coras134a9962018-08-28 11:32:04 -07002860vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002861 void *buffer, uint32_t * buflen)
2862{
Florin Coras134a9962018-08-28 11:32:04 -07002863 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002864 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002865 int rv = VPPCOM_OK;
2866 u32 *flags = buffer;
Steven2199aab2017-10-15 20:18:47 -07002867 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002868
Florin Coras134a9962018-08-28 11:32:04 -07002869 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002870 if (!session)
2871 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002872
Dave Wallace35830af2017-10-09 01:43:42 -04002873 switch (op)
2874 {
2875 case VPPCOM_ATTR_GET_NREAD:
Florin Coras54693d22018-07-17 10:46:29 -07002876 rv = vppcom_session_read_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002877 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NREAD: sid %u, nread = %d",
2878 getpid (), rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002879 break;
2880
Dave Wallace227867f2017-11-13 21:21:53 -05002881 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras134a9962018-08-28 11:32:04 -07002882 rv = vppcom_session_write_ready (session);
Florin Coras0d427d82018-06-27 03:24:07 -07002883 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_NWRITE: sid %u, nwrite = %d",
Florin Coras134a9962018-08-28 11:32:04 -07002884 getpid (), session_handle, rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002885 break;
2886
2887 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002888 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002889 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002890 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2891 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002892 *buflen = sizeof (*flags);
Florin Coras0d427d82018-06-27 03:24:07 -07002893 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_FLAGS: sid %u, flags = 0x%08x, "
2894 "is_nonblocking = %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002895 session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002896 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002897 }
2898 else
2899 rv = VPPCOM_EINVAL;
2900 break;
2901
2902 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002903 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002904 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002905 if (*flags & O_NONBLOCK)
2906 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2907 else
2908 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2909
Florin Coras0d427d82018-06-27 03:24:07 -07002910 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_FLAGS: sid %u, flags = 0x%08x,"
2911 " is_nonblocking = %u",
Florin Coras134a9962018-08-28 11:32:04 -07002912 getpid (), session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002913 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002914 }
2915 else
2916 rv = VPPCOM_EINVAL;
2917 break;
2918
2919 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002920 if (PREDICT_TRUE (buffer && buflen &&
2921 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002922 {
Florin Coras7e12d942018-06-27 14:32:43 -07002923 ep->is_ip4 = session->transport.is_ip4;
2924 ep->port = session->transport.rmt_port;
2925 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002926 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2927 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002928 else
Dave Barach178cf492018-11-13 16:34:13 -05002929 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2930 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002931 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002932 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_PEER_ADDR: sid %u, is_ip4 = %u, "
2933 "addr = %U, port %u", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002934 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002935 &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002936 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2937 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002938 }
2939 else
2940 rv = VPPCOM_EINVAL;
2941 break;
2942
2943 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002944 if (PREDICT_TRUE (buffer && buflen &&
2945 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002946 {
Florin Coras7e12d942018-06-27 14:32:43 -07002947 ep->is_ip4 = session->transport.is_ip4;
2948 ep->port = session->transport.lcl_port;
2949 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002950 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
2951 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002952 else
Dave Barach178cf492018-11-13 16:34:13 -05002953 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
2954 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002955 *buflen = sizeof (*ep);
Florin Coras0d427d82018-06-27 03:24:07 -07002956 VDBG (1, "VCL<%d>: VPPCOM_ATTR_GET_LCL_ADDR: sid %u, is_ip4 = %u,"
2957 " addr = %U port %d", getpid (),
Florin Coras134a9962018-08-28 11:32:04 -07002958 session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002959 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002960 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2961 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002962 }
2963 else
2964 rv = VPPCOM_EINVAL;
2965 break;
Stevenb5a11602017-10-11 09:59:30 -07002966
Dave Wallace048b1d62018-01-03 22:24:41 -05002967 case VPPCOM_ATTR_GET_LIBC_EPFD:
2968 rv = session->libc_epfd;
Florin Coras0d427d82018-06-27 03:24:07 -07002969 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d",
2970 getpid (), rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05002971 break;
2972
2973 case VPPCOM_ATTR_SET_LIBC_EPFD:
2974 if (PREDICT_TRUE (buffer && buflen &&
2975 (*buflen == sizeof (session->libc_epfd))))
2976 {
2977 session->libc_epfd = *(int *) buffer;
2978 *buflen = sizeof (session->libc_epfd);
2979
Florin Coras0d427d82018-06-27 03:24:07 -07002980 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, "
2981 "buflen %d", getpid (), session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002982 }
2983 else
2984 rv = VPPCOM_EINVAL;
2985 break;
2986
2987 case VPPCOM_ATTR_GET_PROTOCOL:
2988 if (buffer && buflen && (*buflen >= sizeof (int)))
2989 {
Florin Coras7e12d942018-06-27 14:32:43 -07002990 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05002991 *buflen = sizeof (int);
2992
Florin Coras0d427d82018-06-27 03:24:07 -07002993 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
2994 getpid (), *(int *) buffer, *(int *) buffer ? "UDP" : "TCP",
2995 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05002996 }
2997 else
2998 rv = VPPCOM_EINVAL;
2999 break;
3000
3001 case VPPCOM_ATTR_GET_LISTEN:
3002 if (buffer && buflen && (*buflen >= sizeof (int)))
3003 {
3004 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3005 VCL_SESS_ATTR_LISTEN);
3006 *buflen = sizeof (int);
3007
Florin Coras0d427d82018-06-27 03:24:07 -07003008 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_LISTEN: %d, buflen %d",
3009 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003010 }
3011 else
3012 rv = VPPCOM_EINVAL;
3013 break;
3014
3015 case VPPCOM_ATTR_GET_ERROR:
3016 if (buffer && buflen && (*buflen >= sizeof (int)))
3017 {
3018 *(int *) buffer = 0;
3019 *buflen = sizeof (int);
3020
Florin Coras0d427d82018-06-27 03:24:07 -07003021 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3022 getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003023 }
3024 else
3025 rv = VPPCOM_EINVAL;
3026 break;
3027
3028 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3029 if (buffer && buflen && (*buflen >= sizeof (u32)))
3030 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003031
3032 /* VPP-TBD */
3033 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003034 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003035 vcm->cfg.tx_fifo_size);
3036 *buflen = sizeof (u32);
3037
Florin Coras0d427d82018-06-27 03:24:07 -07003038 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), "
3039 "buflen %d, #VPP-TBD#", getpid (),
3040 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003041 }
3042 else
3043 rv = VPPCOM_EINVAL;
3044 break;
3045
3046 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3047 if (buffer && buflen && (*buflen == sizeof (u32)))
3048 {
3049 /* VPP-TBD */
3050 session->sndbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07003051 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), "
3052 "buflen %d, #VPP-TBD#", getpid (),
3053 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003054 }
3055 else
3056 rv = VPPCOM_EINVAL;
3057 break;
3058
3059 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3060 if (buffer && buflen && (*buflen >= sizeof (u32)))
3061 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003062
3063 /* VPP-TBD */
3064 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003065 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003066 vcm->cfg.rx_fifo_size);
3067 *buflen = sizeof (u32);
3068
Florin Coras0d427d82018-06-27 03:24:07 -07003069 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), "
3070 "buflen %d, #VPP-TBD#", getpid (),
3071 *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003072 }
3073 else
3074 rv = VPPCOM_EINVAL;
3075 break;
3076
3077 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3078 if (buffer && buflen && (*buflen == sizeof (u32)))
3079 {
3080 /* VPP-TBD */
3081 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras0d427d82018-06-27 03:24:07 -07003082 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), "
3083 "buflen %d, #VPP-TBD#", getpid (),
3084 session->sndbuf_size, session->sndbuf_size, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003085 }
3086 else
3087 rv = VPPCOM_EINVAL;
3088 break;
3089
3090 case VPPCOM_ATTR_GET_REUSEADDR:
3091 if (buffer && buflen && (*buflen >= sizeof (int)))
3092 {
3093 /* VPP-TBD */
3094 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3095 VCL_SESS_ATTR_REUSEADDR);
3096 *buflen = sizeof (int);
3097
Florin Coras0d427d82018-06-27 03:24:07 -07003098 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEADDR: %d, "
3099 "buflen %d, #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003100 }
3101 else
3102 rv = VPPCOM_EINVAL;
3103 break;
3104
Stevenb5a11602017-10-11 09:59:30 -07003105 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003106 if (buffer && buflen && (*buflen == sizeof (int)) &&
3107 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3108 {
3109 /* VPP-TBD */
3110 if (*(int *) buffer)
3111 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3112 else
3113 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3114
Florin Coras0d427d82018-06-27 03:24:07 -07003115 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d,"
3116 " #VPP-TBD#", getpid (),
3117 VCL_SESS_ATTR_TEST (session->attr,
3118 VCL_SESS_ATTR_REUSEADDR), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003119 }
3120 else
3121 rv = VPPCOM_EINVAL;
3122 break;
3123
3124 case VPPCOM_ATTR_GET_REUSEPORT:
3125 if (buffer && buflen && (*buflen >= sizeof (int)))
3126 {
3127 /* VPP-TBD */
3128 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3129 VCL_SESS_ATTR_REUSEPORT);
3130 *buflen = sizeof (int);
3131
Florin Coras0d427d82018-06-27 03:24:07 -07003132 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d,"
3133 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003134 }
3135 else
3136 rv = VPPCOM_EINVAL;
3137 break;
3138
3139 case VPPCOM_ATTR_SET_REUSEPORT:
3140 if (buffer && buflen && (*buflen == sizeof (int)) &&
3141 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3142 {
3143 /* VPP-TBD */
3144 if (*(int *) buffer)
3145 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3146 else
3147 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3148
Florin Coras0d427d82018-06-27 03:24:07 -07003149 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d,"
3150 " #VPP-TBD#", getpid (),
3151 VCL_SESS_ATTR_TEST (session->attr,
3152 VCL_SESS_ATTR_REUSEPORT), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003153 }
3154 else
3155 rv = VPPCOM_EINVAL;
3156 break;
3157
3158 case VPPCOM_ATTR_GET_BROADCAST:
3159 if (buffer && buflen && (*buflen >= sizeof (int)))
3160 {
3161 /* VPP-TBD */
3162 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3163 VCL_SESS_ATTR_BROADCAST);
3164 *buflen = sizeof (int);
3165
Florin Coras0d427d82018-06-27 03:24:07 -07003166 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d,"
3167 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003168 }
3169 else
3170 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003171 break;
3172
3173 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003174 if (buffer && buflen && (*buflen == sizeof (int)))
3175 {
3176 /* VPP-TBD */
3177 if (*(int *) buffer)
3178 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3179 else
3180 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3181
Florin Coras0d427d82018-06-27 03:24:07 -07003182 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, "
3183 "#VPP-TBD#", getpid (),
3184 VCL_SESS_ATTR_TEST (session->attr,
3185 VCL_SESS_ATTR_BROADCAST), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003186 }
3187 else
3188 rv = VPPCOM_EINVAL;
3189 break;
3190
3191 case VPPCOM_ATTR_GET_V6ONLY:
3192 if (buffer && buflen && (*buflen >= sizeof (int)))
3193 {
3194 /* VPP-TBD */
3195 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3196 VCL_SESS_ATTR_V6ONLY);
3197 *buflen = sizeof (int);
3198
Florin Coras0d427d82018-06-27 03:24:07 -07003199 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, "
3200 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003201 }
3202 else
3203 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003204 break;
3205
3206 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003207 if (buffer && buflen && (*buflen == sizeof (int)))
3208 {
3209 /* VPP-TBD */
3210 if (*(int *) buffer)
3211 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3212 else
3213 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3214
Florin Coras0d427d82018-06-27 03:24:07 -07003215 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, "
3216 "#VPP-TBD#", getpid (),
3217 VCL_SESS_ATTR_TEST (session->attr,
3218 VCL_SESS_ATTR_V6ONLY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003219 }
3220 else
3221 rv = VPPCOM_EINVAL;
3222 break;
3223
3224 case VPPCOM_ATTR_GET_KEEPALIVE:
3225 if (buffer && buflen && (*buflen >= sizeof (int)))
3226 {
3227 /* VPP-TBD */
3228 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3229 VCL_SESS_ATTR_KEEPALIVE);
3230 *buflen = sizeof (int);
3231
Florin Coras0d427d82018-06-27 03:24:07 -07003232 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, "
3233 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003234 }
3235 else
3236 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003237 break;
Stevenbccd3392017-10-12 20:42:21 -07003238
3239 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003240 if (buffer && buflen && (*buflen == sizeof (int)))
3241 {
3242 /* VPP-TBD */
3243 if (*(int *) buffer)
3244 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3245 else
3246 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3247
Florin Coras0d427d82018-06-27 03:24:07 -07003248 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, "
3249 "#VPP-TBD#", getpid (),
3250 VCL_SESS_ATTR_TEST (session->attr,
3251 VCL_SESS_ATTR_KEEPALIVE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003252 }
3253 else
3254 rv = VPPCOM_EINVAL;
3255 break;
3256
3257 case VPPCOM_ATTR_GET_TCP_NODELAY:
3258 if (buffer && buflen && (*buflen >= sizeof (int)))
3259 {
3260 /* VPP-TBD */
3261 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3262 VCL_SESS_ATTR_TCP_NODELAY);
3263 *buflen = sizeof (int);
3264
Florin Coras0d427d82018-06-27 03:24:07 -07003265 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, "
3266 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003267 }
3268 else
3269 rv = VPPCOM_EINVAL;
3270 break;
3271
3272 case VPPCOM_ATTR_SET_TCP_NODELAY:
3273 if (buffer && buflen && (*buflen == sizeof (int)))
3274 {
3275 /* VPP-TBD */
3276 if (*(int *) buffer)
3277 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3278 else
3279 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3280
Florin Coras0d427d82018-06-27 03:24:07 -07003281 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, "
3282 "#VPP-TBD#", getpid (),
3283 VCL_SESS_ATTR_TEST (session->attr,
3284 VCL_SESS_ATTR_TCP_NODELAY), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003285 }
3286 else
3287 rv = VPPCOM_EINVAL;
3288 break;
3289
3290 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3291 if (buffer && buflen && (*buflen >= sizeof (int)))
3292 {
3293 /* VPP-TBD */
3294 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3295 VCL_SESS_ATTR_TCP_KEEPIDLE);
3296 *buflen = sizeof (int);
3297
Florin Coras0d427d82018-06-27 03:24:07 -07003298 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, "
3299 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003300 }
3301 else
3302 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003303 break;
3304
3305 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003306 if (buffer && buflen && (*buflen == sizeof (int)))
3307 {
3308 /* VPP-TBD */
3309 if (*(int *) buffer)
3310 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3311 else
3312 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3313
Florin Coras0d427d82018-06-27 03:24:07 -07003314 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, "
3315 "#VPP-TBD#", getpid (),
3316 VCL_SESS_ATTR_TEST (session->attr,
3317 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003318 }
3319 else
3320 rv = VPPCOM_EINVAL;
3321 break;
3322
3323 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3324 if (buffer && buflen && (*buflen >= sizeof (int)))
3325 {
3326 /* VPP-TBD */
3327 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3328 VCL_SESS_ATTR_TCP_KEEPINTVL);
3329 *buflen = sizeof (int);
3330
Florin Coras0d427d82018-06-27 03:24:07 -07003331 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, "
3332 "#VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003333 }
3334 else
3335 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003336 break;
3337
3338 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003339 if (buffer && buflen && (*buflen == sizeof (int)))
3340 {
3341 /* VPP-TBD */
3342 if (*(int *) buffer)
3343 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3344 else
3345 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3346
Florin Coras0d427d82018-06-27 03:24:07 -07003347 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, "
3348 "#VPP-TBD#", getpid (),
3349 VCL_SESS_ATTR_TEST (session->attr,
3350 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003351 }
3352 else
3353 rv = VPPCOM_EINVAL;
3354 break;
3355
3356 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3357 if (buffer && buflen && (*buflen >= sizeof (u32)))
3358 {
3359 /* VPP-TBD */
3360 *(u32 *) buffer = session->user_mss;
3361 *buflen = sizeof (int);
3362
Florin Coras0d427d82018-06-27 03:24:07 -07003363 VDBG (2, "VCL<%d>: VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d,"
3364 " #VPP-TBD#", getpid (), *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003365 }
3366 else
3367 rv = VPPCOM_EINVAL;
3368 break;
3369
3370 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3371 if (buffer && buflen && (*buflen == sizeof (u32)))
3372 {
3373 /* VPP-TBD */
3374 session->user_mss = *(u32 *) buffer;
3375
Florin Coras0d427d82018-06-27 03:24:07 -07003376 VDBG (2, "VCL<%d>: VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, "
3377 "#VPP-TBD#", getpid (), session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003378 }
3379 else
3380 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003381 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003382
Florin Coras47c40e22018-11-26 17:01:36 -08003383 case VPPCOM_ATTR_GET_REFCNT:
3384 rv = vcl_session_get_refcnt (session);
3385 break;
3386
Dave Wallacee22aa742017-10-20 12:30:38 -04003387 default:
3388 rv = VPPCOM_EINVAL;
3389 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003390 }
3391
Dave Wallace35830af2017-10-09 01:43:42 -04003392 return rv;
3393}
3394
Stevenac1f96d2017-10-24 16:03:58 -07003395int
Florin Coras134a9962018-08-28 11:32:04 -07003396vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003397 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3398{
Florin Coras134a9962018-08-28 11:32:04 -07003399 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003400 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003401 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003402
3403 if (ep)
3404 {
Florin Coras134a9962018-08-28 11:32:04 -07003405 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003406 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003407 {
Florin Coras0d427d82018-06-27 03:24:07 -07003408 VDBG (0, "VCL<%d>: invalid session, sid (%u) has been closed!",
Florin Coras134a9962018-08-28 11:32:04 -07003409 getpid (), session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003410 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003411 }
Florin Coras7e12d942018-06-27 14:32:43 -07003412 ep->is_ip4 = session->transport.is_ip4;
3413 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003414 }
Steven58f464e2017-10-25 12:33:12 -07003415
3416 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003417 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003418 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003419 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003420 else
3421 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003422 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003423 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003424 }
3425
Florin Coras99368312018-08-02 10:45:44 -07003426 if (ep)
3427 {
3428 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003429 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3430 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003431 else
Dave Barach178cf492018-11-13 16:34:13 -05003432 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3433 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003434 }
Florin Coras460dce62018-07-27 05:45:06 -07003435
Stevenac1f96d2017-10-24 16:03:58 -07003436 return rv;
3437}
3438
3439int
Florin Coras134a9962018-08-28 11:32:04 -07003440vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003441 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3442{
Dave Wallace617dffa2017-10-26 14:47:06 -04003443 if (!buffer)
3444 return VPPCOM_EINVAL;
3445
3446 if (ep)
3447 {
3448 // TBD
3449 return VPPCOM_EINVAL;
3450 }
3451
3452 if (flags)
3453 {
3454 // TBD check the flags and do the right thing
Florin Coras0d427d82018-06-27 03:24:07 -07003455 VDBG (2, "VCL<%d>: handling flags 0x%u (%d) not implemented yet.",
3456 getpid (), flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003457 }
3458
Florin Coras42ceddb2018-12-12 10:56:01 -08003459 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003460}
3461
Dave Wallace048b1d62018-01-03 22:24:41 -05003462int
3463vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3464{
Florin Coras134a9962018-08-28 11:32:04 -07003465 vcl_worker_t *wrk = vcl_worker_get_current ();
3466 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003467 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003468 svm_msg_q_msg_t msg;
3469 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003470 int rv, num_ev = 0;
3471
Florin Coras0d427d82018-06-27 03:24:07 -07003472 VDBG (3, "VCL<%d>: vp %p, nsids %u, wait_for_time %f",
3473 getpid (), vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003474
3475 if (!vp)
3476 return VPPCOM_EFAULT;
3477
3478 do
3479 {
Florin Coras7e12d942018-06-27 14:32:43 -07003480 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003481
Florin Coras6917b942018-11-13 22:44:54 -08003482 /* Dequeue all events and drop all unhandled io events */
3483 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3484 {
3485 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3486 vcl_handle_mq_event (wrk, e);
3487 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3488 }
3489 vec_reset_length (wrk->unhandled_evts_vector);
3490
Dave Wallace048b1d62018-01-03 22:24:41 -05003491 for (i = 0; i < n_sids; i++)
3492 {
Florin Coras134a9962018-08-28 11:32:04 -07003493 session = vcl_session_get (wrk, vp[i].sid);
Florin Coras070453d2018-08-24 17:04:27 -07003494 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003495 {
3496 vp[i].revents = POLLHUP;
3497 num_ev++;
3498 continue;
3499 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003500
Florin Coras6917b942018-11-13 22:44:54 -08003501 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003502
3503 if (POLLIN & vp[i].events)
3504 {
Florin Coras54693d22018-07-17 10:46:29 -07003505 rv = vppcom_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003506 if (rv > 0)
3507 {
Florin Coras6917b942018-11-13 22:44:54 -08003508 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003509 num_ev++;
3510 }
3511 else if (rv < 0)
3512 {
3513 switch (rv)
3514 {
3515 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003516 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003517 break;
3518
3519 default:
Florin Coras6917b942018-11-13 22:44:54 -08003520 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003521 break;
3522 }
3523 num_ev++;
3524 }
3525 }
3526
3527 if (POLLOUT & vp[i].events)
3528 {
Florin Coras134a9962018-08-28 11:32:04 -07003529 rv = vppcom_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003530 if (rv > 0)
3531 {
Florin Coras6917b942018-11-13 22:44:54 -08003532 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003533 num_ev++;
3534 }
3535 else if (rv < 0)
3536 {
3537 switch (rv)
3538 {
3539 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003540 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003541 break;
3542
3543 default:
Florin Coras6917b942018-11-13 22:44:54 -08003544 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003545 break;
3546 }
3547 num_ev++;
3548 }
3549 }
3550
Dave Wallace7e607a72018-06-18 18:41:32 -04003551 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003552 {
Florin Coras6917b942018-11-13 22:44:54 -08003553 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003554 num_ev++;
3555 }
3556 }
3557 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003558 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003559 }
3560 while ((num_ev == 0) && keep_trying);
3561
3562 if (VPPCOM_DEBUG > 3)
3563 {
3564 clib_warning ("VCL<%d>: returning %d", getpid (), num_ev);
3565 for (i = 0; i < n_sids; i++)
3566 {
3567 clib_warning ("VCL<%d>: vp[%d].sid %d (0x%x), .events 0x%x, "
3568 ".revents 0x%x", getpid (), i, vp[i].sid, vp[i].sid,
Florin Coras6917b942018-11-13 22:44:54 -08003569 vp[i].events, vp[i].revents);
Dave Wallace048b1d62018-01-03 22:24:41 -05003570 }
3571 }
3572 return num_ev;
3573}
3574
Florin Coras99368312018-08-02 10:45:44 -07003575int
3576vppcom_mq_epoll_fd (void)
3577{
Florin Coras134a9962018-08-28 11:32:04 -07003578 vcl_worker_t *wrk = vcl_worker_get_current ();
3579 return wrk->mqs_epfd;
3580}
3581
3582int
3583vppcom_session_index (uint32_t session_handle)
3584{
3585 return session_handle & 0xFFFFFF;
3586}
3587
3588int
Florin Coras30e273b2018-11-27 00:04:59 -08003589vppcom_session_handle (uint32_t session_index)
3590{
Florin Coras47c40e22018-11-26 17:01:36 -08003591 return (vcl_get_worker_index () << 24) | session_index;
Florin Coras30e273b2018-11-27 00:04:59 -08003592}
3593
3594int
Florin Coras134a9962018-08-28 11:32:04 -07003595vppcom_worker_register (void)
3596{
Florin Coras47c40e22018-11-26 17:01:36 -08003597 if (!vcl_worker_alloc_and_init ())
3598 return VPPCOM_EEXIST;
3599
3600 if (vcl_worker_set_bapi ())
3601 return VPPCOM_EEXIST;
3602
3603 if (vcl_worker_register_with_vpp ())
3604 return VPPCOM_EEXIST;
3605
3606 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003607}
3608
Florin Corasdfe4cf42018-11-28 22:13:45 -08003609int
3610vppcom_worker_index (void)
3611{
3612 return vcl_get_worker_index ();
3613}
3614
Dave Wallacee22aa742017-10-20 12:30:38 -04003615/*
3616 * fd.io coding-style-patch-verification: ON
3617 *
3618 * Local Variables:
3619 * eval: (c-set-style "gnu")
3620 * End:
3621 */