blob: 4224a086a210f1a2dcf8e39915ccef04aae343c4 [file] [log] [blame]
Dave Wallace543852a2017-08-03 02:11:34 -04001/*
Florin Coras5e062572019-03-14 19:07:51 -07002 * Copyright (c) 2017-2019 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 Wallace5c7cf1c2017-10-24 04:12:18 -040018#include <vcl/vppcom.h>
Florin Coras0d427d82018-06-27 03:24:07 -070019#include <vcl/vcl_debug.h>
Florin Coras697faea2018-06-27 17:10:49 -070020#include <vcl/vcl_private.h>
Florin Coras88001c62019-04-24 14:44:46 -070021#include <svm/fifo_segment.h>
Dave Wallace7e607a72018-06-18 18:41:32 -040022
Florin Coras134a9962018-08-28 11:32:04 -070023__thread uword __vcl_worker_index = ~0;
24
Florin Corasd85de682018-11-29 17:02:29 -080025static int
Florin Corasc4c4cf52019-08-24 18:17:34 -070026vcl_segment_is_not_mounted (vcl_worker_t * wrk, u64 segment_handle)
Florin Coras54693d22018-07-17 10:46:29 -070027{
Florin Corasc4c4cf52019-08-24 18:17:34 -070028 u32 segment_index;
Florin Coras54693d22018-07-17 10:46:29 -070029
Florin Corasd85de682018-11-29 17:02:29 -080030 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
Florin Coras5f45e012019-01-23 09:21:30 -080031 return 0;
Florin Coras54693d22018-07-17 10:46:29 -070032
Florin Corasc4c4cf52019-08-24 18:17:34 -070033 segment_index = vcl_segment_table_lookup (segment_handle);
34 if (segment_index != VCL_INVALID_SEGMENT_INDEX)
35 return 0;
36
Florin Corasd85de682018-11-29 17:02:29 -080037 return 1;
Florin Coras54693d22018-07-17 10:46:29 -070038}
39
Florin Coras30e79c22019-01-02 19:31:22 -080040static inline int
Florin Corase003a1b2019-06-05 10:47:16 -070041vcl_mq_dequeue_batch (vcl_worker_t * wrk, svm_msg_q_t * mq, u32 n_max_msg)
Florin Coras30e79c22019-01-02 19:31:22 -080042{
43 svm_msg_q_msg_t *msg;
44 u32 n_msgs;
45 int i;
46
Florin Corase003a1b2019-06-05 10:47:16 -070047 n_msgs = clib_min (svm_msg_q_size (mq), n_max_msg);
Florin Coras30e79c22019-01-02 19:31:22 -080048 for (i = 0; i < n_msgs; i++)
49 {
50 vec_add2 (wrk->mq_msg_vector, msg, 1);
51 svm_msg_q_sub_w_lock (mq, msg);
52 }
53 return n_msgs;
54}
55
Florin Coras697faea2018-06-27 17:10:49 -070056const char *
Florin Coras288eaab2019-02-03 15:26:14 -080057vppcom_session_state_str (vcl_session_state_t state)
Dave Wallace543852a2017-08-03 02:11:34 -040058{
59 char *st;
60
61 switch (state)
62 {
63 case STATE_START:
64 st = "STATE_START";
65 break;
66
67 case STATE_CONNECT:
68 st = "STATE_CONNECT";
69 break;
70
71 case STATE_LISTEN:
72 st = "STATE_LISTEN";
73 break;
74
75 case STATE_ACCEPT:
76 st = "STATE_ACCEPT";
77 break;
78
Florin Coras3c7d4f92018-12-14 11:28:43 -080079 case STATE_VPP_CLOSING:
80 st = "STATE_VPP_CLOSING";
Dave Wallace4878cbe2017-11-21 03:45:09 -050081 break;
82
Dave Wallace543852a2017-08-03 02:11:34 -040083 case STATE_DISCONNECT:
84 st = "STATE_DISCONNECT";
85 break;
86
87 case STATE_FAILED:
88 st = "STATE_FAILED";
89 break;
90
Florin Coras2d675d72019-01-28 15:54:27 -080091 case STATE_UPDATED:
92 st = "STATE_UPDATED";
93 break;
94
95 case STATE_LISTEN_NO_MQ:
96 st = "STATE_LISTEN_NO_MQ";
97 break;
98
Dave Wallace543852a2017-08-03 02:11:34 -040099 default:
100 st = "UNKNOWN_STATE";
101 break;
102 }
103
104 return st;
105}
106
Dave Wallace543852a2017-08-03 02:11:34 -0400107u8 *
108format_ip4_address (u8 * s, va_list * args)
109{
110 u8 *a = va_arg (*args, u8 *);
111 return format (s, "%d.%d.%d.%d", a[0], a[1], a[2], a[3]);
112}
113
114u8 *
115format_ip6_address (u8 * s, va_list * args)
116{
117 ip6_address_t *a = va_arg (*args, ip6_address_t *);
118 u32 i, i_max_n_zero, max_n_zeros, i_first_zero, n_zeros, last_double_colon;
119
120 i_max_n_zero = ARRAY_LEN (a->as_u16);
121 max_n_zeros = 0;
122 i_first_zero = i_max_n_zero;
123 n_zeros = 0;
124 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
125 {
126 u32 is_zero = a->as_u16[i] == 0;
127 if (is_zero && i_first_zero >= ARRAY_LEN (a->as_u16))
128 {
129 i_first_zero = i;
130 n_zeros = 0;
131 }
132 n_zeros += is_zero;
133 if ((!is_zero && n_zeros > max_n_zeros)
134 || (i + 1 >= ARRAY_LEN (a->as_u16) && n_zeros > max_n_zeros))
135 {
136 i_max_n_zero = i_first_zero;
137 max_n_zeros = n_zeros;
138 i_first_zero = ARRAY_LEN (a->as_u16);
139 n_zeros = 0;
140 }
141 }
142
143 last_double_colon = 0;
144 for (i = 0; i < ARRAY_LEN (a->as_u16); i++)
145 {
146 if (i == i_max_n_zero && max_n_zeros > 1)
147 {
148 s = format (s, "::");
149 i += max_n_zeros - 1;
150 last_double_colon = 1;
151 }
152 else
153 {
154 s = format (s, "%s%x",
155 (last_double_colon || i == 0) ? "" : ":",
156 clib_net_to_host_u16 (a->as_u16[i]));
157 last_double_colon = 0;
158 }
159 }
160
161 return s;
162}
163
164/* Format an IP46 address. */
165u8 *
166format_ip46_address (u8 * s, va_list * args)
167{
168 ip46_address_t *ip46 = va_arg (*args, ip46_address_t *);
169 ip46_type_t type = va_arg (*args, ip46_type_t);
170 int is_ip4 = 1;
171
172 switch (type)
173 {
174 case IP46_TYPE_ANY:
175 is_ip4 = ip46_address_is_ip4 (ip46);
176 break;
177 case IP46_TYPE_IP4:
178 is_ip4 = 1;
179 break;
180 case IP46_TYPE_IP6:
181 is_ip4 = 0;
182 break;
183 }
184
185 return is_ip4 ?
186 format (s, "%U", format_ip4_address, &ip46->ip4) :
187 format (s, "%U", format_ip6_address, &ip46->ip6);
188}
189
Florin Coras697faea2018-06-27 17:10:49 -0700190/*
191 * VPPCOM Utility Functions
192 */
193
Florin Coras458089b2019-08-21 16:20:44 -0700194static void
195vcl_send_session_listen (vcl_worker_t * wrk, vcl_session_t * s)
196{
197 app_session_evt_t _app_evt, *app_evt = &_app_evt;
198 session_listen_msg_t *mp;
199 svm_msg_q_t *mq;
200
201 mq = vcl_worker_ctrl_mq (wrk);
202 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_LISTEN);
203 mp = (session_listen_msg_t *) app_evt->evt->data;
204 memset (mp, 0, sizeof (*mp));
205 mp->client_index = wrk->my_client_index;
206 mp->context = s->session_index;
207 mp->wrk_index = wrk->vpp_wrk_index;
208 mp->is_ip4 = s->transport.is_ip4;
209 clib_memcpy_fast (&mp->ip, &s->transport.lcl_ip, sizeof (mp->ip));
210 mp->port = s->transport.lcl_port;
211 mp->proto = s->session_type;
212 app_send_ctrl_evt_to_vpp (mq, app_evt);
213}
214
215static void
216vcl_send_session_connect (vcl_worker_t * wrk, vcl_session_t * s)
217{
218 app_session_evt_t _app_evt, *app_evt = &_app_evt;
219 session_connect_msg_t *mp;
220 svm_msg_q_t *mq;
221
222 mq = vcl_worker_ctrl_mq (wrk);
223 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_CONNECT);
224 mp = (session_connect_msg_t *) app_evt->evt->data;
225 memset (mp, 0, sizeof (*mp));
226 mp->client_index = wrk->my_client_index;
227 mp->context = s->session_index;
228 mp->wrk_index = wrk->vpp_wrk_index;
229 mp->is_ip4 = s->transport.is_ip4;
230 mp->parent_handle = s->parent_handle;
231 clib_memcpy_fast (&mp->ip, &s->transport.rmt_ip, sizeof (mp->ip));
Florin Corasef7cbf62019-10-17 09:56:27 -0700232 clib_memcpy_fast (&mp->lcl_ip, &s->transport.lcl_ip, sizeof (mp->lcl_ip));
Florin Coras458089b2019-08-21 16:20:44 -0700233 mp->port = s->transport.rmt_port;
234 mp->proto = s->session_type;
235 app_send_ctrl_evt_to_vpp (mq, app_evt);
236}
237
238void
239vcl_send_session_unlisten (vcl_worker_t * wrk, vcl_session_t * s)
240{
241 app_session_evt_t _app_evt, *app_evt = &_app_evt;
242 session_unlisten_msg_t *mp;
243 svm_msg_q_t *mq;
244
245 mq = vcl_worker_ctrl_mq (wrk);
246 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_UNLISTEN);
247 mp = (session_unlisten_msg_t *) app_evt->evt->data;
248 memset (mp, 0, sizeof (*mp));
249 mp->client_index = wrk->my_client_index;
250 mp->wrk_index = wrk->vpp_wrk_index;
251 mp->handle = s->vpp_handle;
252 mp->context = wrk->wrk_index;
253 app_send_ctrl_evt_to_vpp (mq, app_evt);
254}
255
256static void
257vcl_send_session_disconnect (vcl_worker_t * wrk, vcl_session_t * s)
258{
259 app_session_evt_t _app_evt, *app_evt = &_app_evt;
260 session_disconnect_msg_t *mp;
261 svm_msg_q_t *mq;
262
263 /* Send to thread that owns the session */
264 mq = s->vpp_evt_q;
265 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_DISCONNECT);
266 mp = (session_disconnect_msg_t *) app_evt->evt->data;
267 memset (mp, 0, sizeof (*mp));
268 mp->client_index = wrk->my_client_index;
269 mp->handle = s->vpp_handle;
270 app_send_ctrl_evt_to_vpp (mq, app_evt);
271}
272
273static void
274vcl_send_app_detach (vcl_worker_t * wrk)
275{
276 app_session_evt_t _app_evt, *app_evt = &_app_evt;
277 session_app_detach_msg_t *mp;
278 svm_msg_q_t *mq;
279
280 mq = vcl_worker_ctrl_mq (wrk);
281 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_APP_DETACH);
282 mp = (session_app_detach_msg_t *) app_evt->evt->data;
283 memset (mp, 0, sizeof (*mp));
284 mp->client_index = wrk->my_client_index;
285 app_send_ctrl_evt_to_vpp (mq, app_evt);
286}
Florin Coras697faea2018-06-27 17:10:49 -0700287
Florin Coras54693d22018-07-17 10:46:29 -0700288static void
289vcl_send_session_accepted_reply (svm_msg_q_t * mq, u32 context,
290 session_handle_t handle, int retval)
291{
292 app_session_evt_t _app_evt, *app_evt = &_app_evt;
293 session_accepted_reply_msg_t *rmp;
294 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_ACCEPTED_REPLY);
295 rmp = (session_accepted_reply_msg_t *) app_evt->evt->data;
296 rmp->handle = handle;
297 rmp->context = context;
298 rmp->retval = retval;
299 app_send_ctrl_evt_to_vpp (mq, app_evt);
300}
301
Florin Coras99368312018-08-02 10:45:44 -0700302static void
303vcl_send_session_disconnected_reply (svm_msg_q_t * mq, u32 context,
304 session_handle_t handle, int retval)
305{
306 app_session_evt_t _app_evt, *app_evt = &_app_evt;
307 session_disconnected_reply_msg_t *rmp;
308 app_alloc_ctrl_evt_to_vpp (mq, app_evt,
309 SESSION_CTRL_EVT_DISCONNECTED_REPLY);
310 rmp = (session_disconnected_reply_msg_t *) app_evt->evt->data;
311 rmp->handle = handle;
312 rmp->context = context;
313 rmp->retval = retval;
314 app_send_ctrl_evt_to_vpp (mq, app_evt);
315}
316
Florin Corasc9fbd662018-08-24 12:59:56 -0700317static void
318vcl_send_session_reset_reply (svm_msg_q_t * mq, u32 context,
319 session_handle_t handle, int retval)
320{
321 app_session_evt_t _app_evt, *app_evt = &_app_evt;
322 session_reset_reply_msg_t *rmp;
323 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_RESET_REPLY);
324 rmp = (session_reset_reply_msg_t *) app_evt->evt->data;
325 rmp->handle = handle;
326 rmp->context = context;
327 rmp->retval = retval;
328 app_send_ctrl_evt_to_vpp (mq, app_evt);
329}
330
Florin Coras30e79c22019-01-02 19:31:22 -0800331void
332vcl_send_session_worker_update (vcl_worker_t * wrk, vcl_session_t * s,
333 u32 wrk_index)
334{
335 app_session_evt_t _app_evt, *app_evt = &_app_evt;
336 session_worker_update_msg_t *mp;
337 svm_msg_q_t *mq;
338
339 mq = vcl_session_vpp_evt_q (wrk, s);
340 app_alloc_ctrl_evt_to_vpp (mq, app_evt, SESSION_CTRL_EVT_WORKER_UPDATE);
341 mp = (session_worker_update_msg_t *) app_evt->evt->data;
342 mp->client_index = wrk->my_client_index;
343 mp->handle = s->vpp_handle;
344 mp->req_wrk_index = wrk->vpp_wrk_index;
345 mp->wrk_index = wrk_index;
346 app_send_ctrl_evt_to_vpp (mq, app_evt);
347}
348
Florin Coras54693d22018-07-17 10:46:29 -0700349static u32
Florin Coras00cca802019-06-06 09:38:44 -0700350vcl_session_accepted_handler (vcl_worker_t * wrk, session_accepted_msg_t * mp,
351 u32 ls_index)
Florin Coras54693d22018-07-17 10:46:29 -0700352{
353 vcl_session_t *session, *listen_session;
354 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras134a9962018-08-28 11:32:04 -0700355 u32 vpp_wrk_index;
Florin Coras99368312018-08-02 10:45:44 -0700356 svm_msg_q_t *evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700357
Florin Coras134a9962018-08-28 11:32:04 -0700358 session = vcl_session_alloc (wrk);
Florin Coras99368312018-08-02 10:45:44 -0700359
Florin Coras00cca802019-06-06 09:38:44 -0700360 listen_session = vcl_session_get (wrk, ls_index);
361 if (listen_session->vpp_handle != mp->listener_handle)
Florin Coras54693d22018-07-17 10:46:29 -0700362 {
Florin Coras00cca802019-06-06 09:38:44 -0700363 VDBG (0, "ERROR: listener handle %lu does not match session %u",
364 mp->listener_handle, ls_index);
365 goto error;
366 }
367
Florin Corasc4c4cf52019-08-24 18:17:34 -0700368 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Coras00cca802019-06-06 09:38:44 -0700369 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700370 VDBG (0, "ERROR: segment for session %u is not mounted!",
Florin Coras00cca802019-06-06 09:38:44 -0700371 session->session_index);
372 goto error;
Florin Coras54693d22018-07-17 10:46:29 -0700373 }
374
Florin Coras54693d22018-07-17 10:46:29 -0700375 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
376 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Coras653e43f2019-03-04 10:56:23 -0800377 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
378 svm_msg_q_t *);
379 rx_fifo->client_session_index = session->session_index;
380 tx_fifo->client_session_index = session->session_index;
381 rx_fifo->client_thread_index = vcl_get_worker_index ();
382 tx_fifo->client_thread_index = vcl_get_worker_index ();
383 vpp_wrk_index = tx_fifo->master_thread_index;
384 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
385 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras54693d22018-07-17 10:46:29 -0700386
387 session->vpp_handle = mp->handle;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800388 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras54693d22018-07-17 10:46:29 -0700389 session->rx_fifo = rx_fifo;
390 session->tx_fifo = tx_fifo;
391
392 session->session_state = STATE_ACCEPT;
Florin Coras09d18c22019-04-24 11:10:02 -0700393 session->transport.rmt_port = mp->rmt.port;
394 session->transport.is_ip4 = mp->rmt.is_ip4;
395 clib_memcpy_fast (&session->transport.rmt_ip, &mp->rmt.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500396 sizeof (ip46_address_t));
Florin Coras54693d22018-07-17 10:46:29 -0700397
Florin Coras134a9962018-08-28 11:32:04 -0700398 vcl_session_table_add_vpp_handle (wrk, mp->handle, session->session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700399 session->transport.lcl_port = listen_session->transport.lcl_port;
400 session->transport.lcl_ip = listen_session->transport.lcl_ip;
Florin Coras460dce62018-07-27 05:45:06 -0700401 session->session_type = listen_session->session_type;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +0200402 session->is_dgram = vcl_proto_is_dgram (session->session_type);
403 session->listener_index = listen_session->session_index;
404 listen_session->n_accepted_sessions++;
Florin Coras54693d22018-07-17 10:46:29 -0700405
Florin Coras5e062572019-03-14 19:07:51 -0700406 VDBG (1, "session %u [0x%llx]: client accept request from %s address %U"
407 " port %d queue %p!", session->session_index, mp->handle,
Florin Coras09d18c22019-04-24 11:10:02 -0700408 mp->rmt.is_ip4 ? "IPv4" : "IPv6", format_ip46_address, &mp->rmt.ip,
409 mp->rmt.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
410 clib_net_to_host_u16 (mp->rmt.port), session->vpp_evt_q);
Florin Coras54693d22018-07-17 10:46:29 -0700411 vcl_evt (VCL_EVT_ACCEPT, session, listen_session, session_index);
412
Florin Coras00cca802019-06-06 09:38:44 -0700413 vcl_send_session_accepted_reply (session->vpp_evt_q, mp->context,
414 session->vpp_handle, 0);
415
Florin Coras134a9962018-08-28 11:32:04 -0700416 return session->session_index;
Florin Coras00cca802019-06-06 09:38:44 -0700417
418error:
419 evt_q = uword_to_pointer (mp->vpp_event_queue_address, svm_msg_q_t *);
420 vcl_send_session_accepted_reply (evt_q, mp->context, mp->handle,
421 VNET_API_ERROR_INVALID_ARGUMENT);
422 vcl_session_free (wrk, session);
423 return VCL_INVALID_SESSION_INDEX;
Florin Coras54693d22018-07-17 10:46:29 -0700424}
425
426static u32
Florin Coras134a9962018-08-28 11:32:04 -0700427vcl_session_connected_handler (vcl_worker_t * wrk,
428 session_connected_msg_t * mp)
Florin Coras54693d22018-07-17 10:46:29 -0700429{
Florin Coras99368312018-08-02 10:45:44 -0700430 u32 session_index, vpp_wrk_index;
Florin Coras54693d22018-07-17 10:46:29 -0700431 svm_fifo_t *rx_fifo, *tx_fifo;
Florin Coras99368312018-08-02 10:45:44 -0700432 vcl_session_t *session = 0;
Florin Coras54693d22018-07-17 10:46:29 -0700433
434 session_index = mp->context;
Florin Coras134a9962018-08-28 11:32:04 -0700435 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700436 if (!session)
437 {
Florin Coras5e062572019-03-14 19:07:51 -0700438 VDBG (0, "ERROR: vpp handle 0x%llx has no session index (%u)!",
439 mp->handle, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700440 return VCL_INVALID_SESSION_INDEX;
441 }
Florin Coras54693d22018-07-17 10:46:29 -0700442 if (mp->retval)
443 {
Florin Coras5e062572019-03-14 19:07:51 -0700444 VDBG (0, "ERROR: session index %u: connect failed! %U",
445 session_index, format_api_error, ntohl (mp->retval));
Florin Corasdbc9c592019-09-25 16:37:43 -0700446 session->session_state = STATE_FAILED | STATE_DISCONNECT;
Florin Coras070453d2018-08-24 17:04:27 -0700447 session->vpp_handle = mp->handle;
448 return session_index;
Florin Coras54693d22018-07-17 10:46:29 -0700449 }
450
Florin Corasdbc9c592019-09-25 16:37:43 -0700451 session->vpp_handle = mp->handle;
452 session->vpp_evt_q = uword_to_pointer (mp->vpp_event_queue_address,
453 svm_msg_q_t *);
Florin Coras460dce62018-07-27 05:45:06 -0700454 rx_fifo = uword_to_pointer (mp->server_rx_fifo, svm_fifo_t *);
455 tx_fifo = uword_to_pointer (mp->server_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700456 if (vcl_segment_is_not_mounted (wrk, mp->segment_handle))
Florin Corasd85de682018-11-29 17:02:29 -0800457 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700458 VDBG (0, "segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800459 session->session_index);
Florin Corasdbc9c592019-09-25 16:37:43 -0700460 session->session_state = STATE_FAILED | STATE_DISCONNECT;
461 vcl_send_session_disconnect (wrk, session);
462 return session_index;
Florin Corasd85de682018-11-29 17:02:29 -0800463 }
464
Florin Coras460dce62018-07-27 05:45:06 -0700465 rx_fifo->client_session_index = session_index;
466 tx_fifo->client_session_index = session_index;
Florin Coras21795132018-09-09 09:40:51 -0700467 rx_fifo->client_thread_index = vcl_get_worker_index ();
468 tx_fifo->client_thread_index = vcl_get_worker_index ();
Florin Coras460dce62018-07-27 05:45:06 -0700469
Florin Coras653e43f2019-03-04 10:56:23 -0800470 vpp_wrk_index = tx_fifo->master_thread_index;
471 vec_validate (wrk->vpp_event_queues, vpp_wrk_index);
472 wrk->vpp_event_queues[vpp_wrk_index] = session->vpp_evt_q;
Florin Coras99368312018-08-02 10:45:44 -0700473
Florin Coras653e43f2019-03-04 10:56:23 -0800474 if (mp->ct_rx_fifo)
Florin Coras99368312018-08-02 10:45:44 -0700475 {
Florin Coras653e43f2019-03-04 10:56:23 -0800476 session->ct_rx_fifo = uword_to_pointer (mp->ct_rx_fifo, svm_fifo_t *);
477 session->ct_tx_fifo = uword_to_pointer (mp->ct_tx_fifo, svm_fifo_t *);
Florin Corasc4c4cf52019-08-24 18:17:34 -0700478 if (vcl_segment_is_not_mounted (wrk, mp->ct_segment_handle))
Florin Coras653e43f2019-03-04 10:56:23 -0800479 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700480 VDBG (0, "ct segment for session %u is not mounted!",
Florin Coras653e43f2019-03-04 10:56:23 -0800481 session->session_index);
Florin Corasdbc9c592019-09-25 16:37:43 -0700482 session->session_state = STATE_FAILED | STATE_DISCONNECT;
483 vcl_send_session_disconnect (wrk, session);
484 return session_index;
Florin Coras653e43f2019-03-04 10:56:23 -0800485 }
Florin Coras99368312018-08-02 10:45:44 -0700486 }
Florin Coras54693d22018-07-17 10:46:29 -0700487
Florin Coras54693d22018-07-17 10:46:29 -0700488 session->rx_fifo = rx_fifo;
489 session->tx_fifo = tx_fifo;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800490 session->vpp_thread_index = rx_fifo->master_thread_index;
Florin Coras09d18c22019-04-24 11:10:02 -0700491 session->transport.is_ip4 = mp->lcl.is_ip4;
492 clib_memcpy_fast (&session->transport.lcl_ip, &mp->lcl.ip,
Dave Barach178cf492018-11-13 16:34:13 -0500493 sizeof (session->transport.lcl_ip));
Florin Coras09d18c22019-04-24 11:10:02 -0700494 session->transport.lcl_port = mp->lcl.port;
Florin Coras54693d22018-07-17 10:46:29 -0700495 session->session_state = STATE_CONNECT;
496
497 /* Add it to lookup table */
Florin Coras3c7d4f92018-12-14 11:28:43 -0800498 vcl_session_table_add_vpp_handle (wrk, mp->handle, session_index);
Florin Coras54693d22018-07-17 10:46:29 -0700499
Florin Coras5e062572019-03-14 19:07:51 -0700500 VDBG (1, "session %u [0x%llx] connected! rx_fifo %p, refcnt %d, tx_fifo %p,"
501 " refcnt %d", session_index, mp->handle, session->rx_fifo,
Florin Coras54693d22018-07-17 10:46:29 -0700502 session->rx_fifo->refcnt, session->tx_fifo, session->tx_fifo->refcnt);
Florin Coras070453d2018-08-24 17:04:27 -0700503
Florin Coras54693d22018-07-17 10:46:29 -0700504 return session_index;
505}
506
Florin Coras3c7d4f92018-12-14 11:28:43 -0800507static int
508vcl_flag_accepted_session (vcl_session_t * session, u64 handle, u32 flags)
509{
510 vcl_session_msg_t *accepted_msg;
511 int i;
512
513 for (i = 0; i < vec_len (session->accept_evts_fifo); i++)
514 {
515 accepted_msg = &session->accept_evts_fifo[i];
516 if (accepted_msg->accepted_msg.handle == handle)
517 {
Florin Corasb0f662f2018-12-27 14:51:46 -0800518 accepted_msg->flags |= flags;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800519 return 1;
520 }
521 }
522 return 0;
523}
524
Florin Corasc9fbd662018-08-24 12:59:56 -0700525static u32
Florin Coras134a9962018-08-28 11:32:04 -0700526vcl_session_reset_handler (vcl_worker_t * wrk,
527 session_reset_msg_t * reset_msg)
Florin Corasc9fbd662018-08-24 12:59:56 -0700528{
529 vcl_session_t *session;
530 u32 sid;
531
Florin Coras134a9962018-08-28 11:32:04 -0700532 sid = vcl_session_index_from_vpp_handle (wrk, reset_msg->handle);
533 session = vcl_session_get (wrk, sid);
Florin Corasc9fbd662018-08-24 12:59:56 -0700534 if (!session)
535 {
536 VDBG (0, "request to reset unknown handle 0x%llx", reset_msg->handle);
537 return VCL_INVALID_SESSION_INDEX;
538 }
Florin Coras3c7d4f92018-12-14 11:28:43 -0800539
540 /* Caught a reset before actually accepting the session */
541 if (session->session_state == STATE_LISTEN)
542 {
543
544 if (!vcl_flag_accepted_session (session, reset_msg->handle,
545 VCL_ACCEPTED_F_RESET))
546 VDBG (0, "session was not accepted!");
547 return VCL_INVALID_SESSION_INDEX;
548 }
549
550 session->session_state = STATE_DISCONNECT;
551 VDBG (0, "reset session %u [0x%llx]", sid, reset_msg->handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700552 return sid;
553}
554
Florin Coras60116992018-08-27 09:52:18 -0700555static u32
Florin Coras134a9962018-08-28 11:32:04 -0700556vcl_session_bound_handler (vcl_worker_t * wrk, session_bound_msg_t * mp)
Florin Coras60116992018-08-27 09:52:18 -0700557{
558 vcl_session_t *session;
559 u32 sid = mp->context;
560
Florin Coras134a9962018-08-28 11:32:04 -0700561 session = vcl_session_get (wrk, sid);
Florin Coras60116992018-08-27 09:52:18 -0700562 if (mp->retval)
563 {
Florin Coras5e062572019-03-14 19:07:51 -0700564 VERR ("session %u [0x%llx]: bind failed: %U", sid, mp->handle,
Florin Corasd85de682018-11-29 17:02:29 -0800565 format_api_error, mp->retval);
Florin Coras60116992018-08-27 09:52:18 -0700566 if (session)
567 {
568 session->session_state = STATE_FAILED;
569 session->vpp_handle = mp->handle;
570 return sid;
571 }
572 else
573 {
Florin Coras5e062572019-03-14 19:07:51 -0700574 VDBG (0, "ERROR: session %u [0x%llx]: Invalid session index!",
575 sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700576 return VCL_INVALID_SESSION_INDEX;
577 }
578 }
579
580 session->vpp_handle = mp->handle;
581 session->transport.is_ip4 = mp->lcl_is_ip4;
Dave Barach178cf492018-11-13 16:34:13 -0500582 clib_memcpy_fast (&session->transport.lcl_ip, mp->lcl_ip,
583 sizeof (ip46_address_t));
Florin Coras60116992018-08-27 09:52:18 -0700584 session->transport.lcl_port = mp->lcl_port;
Florin Coras134a9962018-08-28 11:32:04 -0700585 vcl_session_table_add_listener (wrk, mp->handle, sid);
Florin Coras60116992018-08-27 09:52:18 -0700586 session->session_state = STATE_LISTEN;
587
Florin Coras5f45e012019-01-23 09:21:30 -0800588 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
589 vec_validate (wrk->vpp_event_queues, 0);
590 wrk->vpp_event_queues[0] = session->vpp_evt_q;
591
Florin Coras60116992018-08-27 09:52:18 -0700592 if (session->is_dgram)
593 {
594 svm_fifo_t *rx_fifo, *tx_fifo;
595 session->vpp_evt_q = uword_to_pointer (mp->vpp_evt_q, svm_msg_q_t *);
596 rx_fifo = uword_to_pointer (mp->rx_fifo, svm_fifo_t *);
597 rx_fifo->client_session_index = sid;
598 tx_fifo = uword_to_pointer (mp->tx_fifo, svm_fifo_t *);
599 tx_fifo->client_session_index = sid;
600 session->rx_fifo = rx_fifo;
601 session->tx_fifo = tx_fifo;
602 }
603
Florin Coras05ecfcc2018-12-12 18:19:39 -0800604 VDBG (0, "session %u [0x%llx]: listen succeeded!", sid, mp->handle);
Florin Coras60116992018-08-27 09:52:18 -0700605 return sid;
606}
607
Florin Corasdfae9f92019-02-20 19:48:31 -0800608static void
609vcl_session_unlisten_reply_handler (vcl_worker_t * wrk, void *data)
610{
611 session_unlisten_reply_msg_t *mp = (session_unlisten_reply_msg_t *) data;
612 vcl_session_t *s;
613
614 s = vcl_session_get_w_vpp_handle (wrk, mp->handle);
615 if (!s || s->session_state != STATE_DISCONNECT)
616 {
617 VDBG (0, "Unlisten reply with wrong handle %llx", mp->handle);
618 return;
619 }
620
621 if (mp->retval)
622 VDBG (0, "ERROR: session %u [0xllx]: unlisten failed: %U",
623 s->session_index, mp->handle, format_api_error, ntohl (mp->retval));
624
625 if (mp->context != wrk->wrk_index)
626 VDBG (0, "wrong context");
627
628 vcl_session_table_del_vpp_handle (wrk, mp->handle);
629 vcl_session_free (wrk, s);
630}
631
Florin Coras3c7d4f92018-12-14 11:28:43 -0800632static vcl_session_t *
633vcl_session_accepted (vcl_worker_t * wrk, session_accepted_msg_t * msg)
634{
635 vcl_session_msg_t *vcl_msg;
636 vcl_session_t *session;
637
638 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
639 if (PREDICT_FALSE (session != 0))
Florin Corasb0f662f2018-12-27 14:51:46 -0800640 VWRN ("session overlap handle %lu state %u!", msg->handle,
641 session->session_state);
Florin Coras3c7d4f92018-12-14 11:28:43 -0800642
643 session = vcl_session_table_lookup_listener (wrk, msg->listener_handle);
644 if (!session)
645 {
646 VERR ("couldn't find listen session: listener handle %llx",
647 msg->listener_handle);
648 return 0;
649 }
650
651 clib_fifo_add2 (session->accept_evts_fifo, vcl_msg);
652 vcl_msg->accepted_msg = *msg;
653 /* Session handle points to listener until fully accepted by app */
654 vcl_session_table_add_vpp_handle (wrk, msg->handle, session->session_index);
655
656 return session;
657}
658
659static vcl_session_t *
660vcl_session_disconnected_handler (vcl_worker_t * wrk,
661 session_disconnected_msg_t * msg)
662{
663 vcl_session_t *session;
664
665 session = vcl_session_get_w_vpp_handle (wrk, msg->handle);
666 if (!session)
667 {
668 VDBG (0, "request to disconnect unknown handle 0x%llx", msg->handle);
669 return 0;
670 }
671
672 /* Caught a disconnect before actually accepting the session */
673 if (session->session_state == STATE_LISTEN)
674 {
Florin Coras3c7d4f92018-12-14 11:28:43 -0800675 if (!vcl_flag_accepted_session (session, msg->handle,
676 VCL_ACCEPTED_F_CLOSED))
677 VDBG (0, "session was not accepted!");
678 return 0;
679 }
680
681 session->session_state = STATE_VPP_CLOSING;
682 return session;
683}
684
Florin Coras30e79c22019-01-02 19:31:22 -0800685static void
686vcl_session_req_worker_update_handler (vcl_worker_t * wrk, void *data)
687{
688 session_req_worker_update_msg_t *msg;
689 vcl_session_t *s;
690
691 msg = (session_req_worker_update_msg_t *) data;
692 s = vcl_session_get_w_vpp_handle (wrk, msg->session_handle);
693 if (!s)
694 return;
695
696 vec_add1 (wrk->pending_session_wrk_updates, s->session_index);
697}
698
699static void
700vcl_session_worker_update_reply_handler (vcl_worker_t * wrk, void *data)
701{
702 session_worker_update_reply_msg_t *msg;
703 vcl_session_t *s;
704
705 msg = (session_worker_update_reply_msg_t *) data;
706 s = vcl_session_get_w_vpp_handle (wrk, msg->handle);
707 if (!s)
708 {
709 VDBG (0, "unknown handle 0x%llx", msg->handle);
710 return;
711 }
Florin Corasc4c4cf52019-08-24 18:17:34 -0700712 if (vcl_segment_is_not_mounted (wrk, msg->segment_handle))
Florin Coras30e79c22019-01-02 19:31:22 -0800713 {
Florin Corasc4c4cf52019-08-24 18:17:34 -0700714 clib_warning ("segment for session %u is not mounted!",
Florin Coras30e79c22019-01-02 19:31:22 -0800715 s->session_index);
716 return;
717 }
Florin Coras30e79c22019-01-02 19:31:22 -0800718
Florin Coras5f45e012019-01-23 09:21:30 -0800719 if (s->rx_fifo)
720 {
721 s->rx_fifo = uword_to_pointer (msg->rx_fifo, svm_fifo_t *);
722 s->tx_fifo = uword_to_pointer (msg->tx_fifo, svm_fifo_t *);
723 s->rx_fifo->client_session_index = s->session_index;
724 s->tx_fifo->client_session_index = s->session_index;
725 s->rx_fifo->client_thread_index = wrk->wrk_index;
726 s->tx_fifo->client_thread_index = wrk->wrk_index;
727 }
Florin Coras30e79c22019-01-02 19:31:22 -0800728 s->session_state = STATE_UPDATED;
729
Florin Coras30e79c22019-01-02 19:31:22 -0800730 VDBG (0, "session %u[0x%llx] moved to worker %u", s->session_index,
731 s->vpp_handle, wrk->wrk_index);
732}
733
Florin Corasc4c4cf52019-08-24 18:17:34 -0700734static void
735vcl_session_app_add_segment_handler (vcl_worker_t * wrk, void *data)
736{
737 ssvm_segment_type_t seg_type = SSVM_SEGMENT_SHM;
738 session_app_add_segment_msg_t *msg;
739 u64 segment_handle;
740 int fd = -1;
741
742 msg = (session_app_add_segment_msg_t *) data;
743
744 if (msg->fd_flags)
745 {
746 vl_socket_client_recv_fd_msg2 (&wrk->bapi_sock_ctx, &fd, 1, 5);
747 seg_type = SSVM_SEGMENT_MEMFD;
748 }
749
750 segment_handle = msg->segment_handle;
751 if (segment_handle == VCL_INVALID_SEGMENT_HANDLE)
752 {
753 clib_warning ("invalid segment handle");
754 return;
755 }
756
757 if (vcl_segment_attach (segment_handle, (char *) msg->segment_name,
758 seg_type, fd))
759 {
760 VDBG (0, "vcl_segment_attach ('%s') failed", msg->segment_name);
761 return;
762 }
763
764 VDBG (1, "mapped new segment '%s' size %d", msg->segment_name,
765 msg->segment_size);
766}
767
768static void
769vcl_session_app_del_segment_handler (vcl_worker_t * wrk, void *data)
770{
771 session_app_del_segment_msg_t *msg = (session_app_del_segment_msg_t *) data;
772 vcl_segment_detach (msg->segment_handle);
773 VDBG (1, "Unmapped segment: %d", msg->segment_handle);
774}
775
Florin Coras86f04502018-09-12 16:08:01 -0700776static int
777vcl_handle_mq_event (vcl_worker_t * wrk, session_event_t * e)
Florin Coras54693d22018-07-17 10:46:29 -0700778{
Florin Coras54693d22018-07-17 10:46:29 -0700779 session_disconnected_msg_t *disconnected_msg;
Florin Coras54693d22018-07-17 10:46:29 -0700780 vcl_session_t *session;
Florin Coras54693d22018-07-17 10:46:29 -0700781
782 switch (e->event_type)
783 {
Florin Coras653e43f2019-03-04 10:56:23 -0800784 case SESSION_IO_EVT_RX:
785 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -0800786 session = vcl_session_get (wrk, e->session_index);
Florin Coras653e43f2019-03-04 10:56:23 -0800787 if (!session || !(session->session_state & STATE_OPEN))
788 break;
Florin Coras86f04502018-09-12 16:08:01 -0700789 vec_add1 (wrk->unhandled_evts_vector, *e);
Florin Coras54693d22018-07-17 10:46:29 -0700790 break;
791 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -0800792 vcl_session_accepted (wrk, (session_accepted_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700793 break;
794 case SESSION_CTRL_EVT_CONNECTED:
Florin Coras134a9962018-08-28 11:32:04 -0700795 vcl_session_connected_handler (wrk,
796 (session_connected_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700797 break;
798 case SESSION_CTRL_EVT_DISCONNECTED:
799 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800800 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
Florin Corasc9fbd662018-08-24 12:59:56 -0700801 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -0800802 break;
Florin Coras3c7d4f92018-12-14 11:28:43 -0800803 VDBG (0, "disconnected session %u [0x%llx]", session->session_index,
804 session->vpp_handle);
Florin Corasc9fbd662018-08-24 12:59:56 -0700805 break;
806 case SESSION_CTRL_EVT_RESET:
Florin Coras134a9962018-08-28 11:32:04 -0700807 vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
Florin Coras60116992018-08-27 09:52:18 -0700808 break;
809 case SESSION_CTRL_EVT_BOUND:
Florin Coras134a9962018-08-28 11:32:04 -0700810 vcl_session_bound_handler (wrk, (session_bound_msg_t *) e->data);
Florin Coras54693d22018-07-17 10:46:29 -0700811 break;
Florin Corasdfae9f92019-02-20 19:48:31 -0800812 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
813 vcl_session_unlisten_reply_handler (wrk, e->data);
814 break;
Florin Coras30e79c22019-01-02 19:31:22 -0800815 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
816 vcl_session_req_worker_update_handler (wrk, e->data);
817 break;
818 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
819 vcl_session_worker_update_reply_handler (wrk, e->data);
820 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -0700821 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
822 vcl_session_app_add_segment_handler (wrk, e->data);
823 break;
824 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
825 vcl_session_app_del_segment_handler (wrk, e->data);
826 break;
Florin Coras54693d22018-07-17 10:46:29 -0700827 default:
828 clib_warning ("unhandled %u", e->event_type);
829 }
830 return VPPCOM_OK;
831}
832
Florin Coras30e79c22019-01-02 19:31:22 -0800833static int
Florin Coras697faea2018-06-27 17:10:49 -0700834vppcom_wait_for_session_state_change (u32 session_index,
Florin Coras288eaab2019-02-03 15:26:14 -0800835 vcl_session_state_t state,
Florin Coras697faea2018-06-27 17:10:49 -0700836 f64 wait_for_time)
837{
Florin Coras134a9962018-08-28 11:32:04 -0700838 vcl_worker_t *wrk = vcl_worker_get_current ();
839 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Florin Coras697faea2018-06-27 17:10:49 -0700840 vcl_session_t *volatile session;
Florin Coras54693d22018-07-17 10:46:29 -0700841 svm_msg_q_msg_t msg;
842 session_event_t *e;
Dave Wallace543852a2017-08-03 02:11:34 -0400843
Florin Coras697faea2018-06-27 17:10:49 -0700844 do
Dave Wallace543852a2017-08-03 02:11:34 -0400845 {
Florin Coras134a9962018-08-28 11:32:04 -0700846 session = vcl_session_get (wrk, session_index);
Florin Coras070453d2018-08-24 17:04:27 -0700847 if (PREDICT_FALSE (!session))
Florin Coras697faea2018-06-27 17:10:49 -0700848 {
Florin Coras070453d2018-08-24 17:04:27 -0700849 return VPPCOM_EBADFD;
Florin Coras697faea2018-06-27 17:10:49 -0700850 }
851 if (session->session_state & state)
852 {
Florin Coras697faea2018-06-27 17:10:49 -0700853 return VPPCOM_OK;
854 }
855 if (session->session_state & STATE_FAILED)
856 {
Florin Coras697faea2018-06-27 17:10:49 -0700857 return VPPCOM_ECONNREFUSED;
858 }
Florin Coras54693d22018-07-17 10:46:29 -0700859
Florin Coras134a9962018-08-28 11:32:04 -0700860 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0))
Florin Corasdc2e2512018-12-03 17:47:26 -0800861 {
862 usleep (100);
863 continue;
864 }
Florin Coras134a9962018-08-28 11:32:04 -0700865 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras86f04502018-09-12 16:08:01 -0700866 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -0700867 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800868 }
Florin Coras134a9962018-08-28 11:32:04 -0700869 while (clib_time_now (&wrk->clib_time) < timeout);
Florin Corasdcf55ce2017-11-16 15:32:50 -0800870
Florin Coras05ecfcc2018-12-12 18:19:39 -0800871 VDBG (0, "timeout waiting for state 0x%x (%s)", state,
Florin Coras697faea2018-06-27 17:10:49 -0700872 vppcom_session_state_str (state));
873 vcl_evt (VCL_EVT_SESSION_TIMEOUT, session, session_state);
Dave Wallace543852a2017-08-03 02:11:34 -0400874
Florin Coras697faea2018-06-27 17:10:49 -0700875 return VPPCOM_ETIMEDOUT;
Dave Wallace60caa062017-11-10 17:07:13 -0500876}
877
Florin Coras30e79c22019-01-02 19:31:22 -0800878static void
879vcl_handle_pending_wrk_updates (vcl_worker_t * wrk)
880{
Florin Coras288eaab2019-02-03 15:26:14 -0800881 vcl_session_state_t state;
Florin Coras30e79c22019-01-02 19:31:22 -0800882 vcl_session_t *s;
883 u32 *sip;
884
885 if (PREDICT_TRUE (vec_len (wrk->pending_session_wrk_updates) == 0))
886 return;
887
888 vec_foreach (sip, wrk->pending_session_wrk_updates)
889 {
890 s = vcl_session_get (wrk, *sip);
891 vcl_send_session_worker_update (wrk, s, wrk->wrk_index);
892 state = s->session_state;
893 vppcom_wait_for_session_state_change (s->session_index, STATE_UPDATED, 5);
894 s->session_state = state;
895 }
896 vec_reset_length (wrk->pending_session_wrk_updates);
897}
898
Florin Corasf9240dc2019-01-15 08:03:17 -0800899void
Florin Coras30e79c22019-01-02 19:31:22 -0800900vcl_flush_mq_events (void)
901{
902 vcl_worker_t *wrk = vcl_worker_get_current ();
903 svm_msg_q_msg_t *msg;
904 session_event_t *e;
905 svm_msg_q_t *mq;
906 int i;
907
908 mq = wrk->app_event_queue;
909 svm_msg_q_lock (mq);
Florin Corase003a1b2019-06-05 10:47:16 -0700910 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras30e79c22019-01-02 19:31:22 -0800911 svm_msg_q_unlock (mq);
912
913 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
914 {
915 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
916 e = svm_msg_q_msg_data (mq, msg);
917 vcl_handle_mq_event (wrk, e);
918 svm_msg_q_free_msg (mq, msg);
919 }
920 vec_reset_length (wrk->mq_msg_vector);
921 vcl_handle_pending_wrk_updates (wrk);
922}
923
Florin Coras697faea2018-06-27 17:10:49 -0700924static int
925vppcom_app_session_enable (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400926{
Florin Coras697faea2018-06-27 17:10:49 -0700927 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400928
Florin Coras697faea2018-06-27 17:10:49 -0700929 if (vcm->app_state != STATE_APP_ENABLED)
930 {
931 vppcom_send_session_enable_disable (1 /* is_enabled == TRUE */ );
Florin Coras134a9962018-08-28 11:32:04 -0700932 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
Florin Coras697faea2018-06-27 17:10:49 -0700933 if (PREDICT_FALSE (rv))
934 {
Florin Coras5e062572019-03-14 19:07:51 -0700935 VDBG (0, "application session enable timed out! returning %d (%s)",
936 rv, vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -0700937 return rv;
938 }
939 }
940 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400941}
942
Florin Coras697faea2018-06-27 17:10:49 -0700943static int
944vppcom_app_attach (void)
Dave Wallace543852a2017-08-03 02:11:34 -0400945{
Florin Coras697faea2018-06-27 17:10:49 -0700946 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -0400947
Florin Coras697faea2018-06-27 17:10:49 -0700948 vppcom_app_send_attach ();
Florin Coras134a9962018-08-28 11:32:04 -0700949 rv = vcl_wait_for_app_state_change (STATE_APP_ATTACHED);
Florin Coras697faea2018-06-27 17:10:49 -0700950 if (PREDICT_FALSE (rv))
951 {
Florin Coras5e062572019-03-14 19:07:51 -0700952 VDBG (0, "application attach timed out! returning %d (%s)", rv,
953 vppcom_retval_str (rv));
Florin Coras697faea2018-06-27 17:10:49 -0700954 return rv;
955 }
Dave Wallace543852a2017-08-03 02:11:34 -0400956
Florin Coras697faea2018-06-27 17:10:49 -0700957 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400958}
959
960static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700961vppcom_session_unbind (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400962{
Florin Coras134a9962018-08-28 11:32:04 -0700963 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Corasaaff5ee2019-07-08 13:00:00 -0700964 session_accepted_msg_t *accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -0700965 vcl_session_t *session = 0;
Florin Corasaaff5ee2019-07-08 13:00:00 -0700966 vcl_session_msg_t *evt;
Dave Wallace543852a2017-08-03 02:11:34 -0400967
Florin Corasab2f6db2018-08-31 14:31:41 -0700968 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -0700969 if (!session)
970 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500971
Florin Corasaaff5ee2019-07-08 13:00:00 -0700972 /* Flush pending accept events, if any */
973 while (clib_fifo_elts (session->accept_evts_fifo))
974 {
975 clib_fifo_sub2 (session->accept_evts_fifo, evt);
976 accepted_msg = &evt->accepted_msg;
977 vcl_session_table_del_vpp_handle (wrk, accepted_msg->handle);
978 vcl_send_session_accepted_reply (session->vpp_evt_q,
979 accepted_msg->context,
980 session->vpp_handle, -1);
981 }
982 clib_fifo_free (session->accept_evts_fifo);
983
Florin Coras458089b2019-08-21 16:20:44 -0700984 vcl_send_session_unlisten (wrk, session);
Dave Wallace4878cbe2017-11-21 03:45:09 -0500985
Florin Coras5e062572019-03-14 19:07:51 -0700986 VDBG (1, "session %u [0x%llx]: sending unbind!", session->session_index,
Florin Coras458089b2019-08-21 16:20:44 -0700987 session->vpp_handle);
Florin Coras0d427d82018-06-27 03:24:07 -0700988 vcl_evt (VCL_EVT_UNBIND, session);
Florin Coras458089b2019-08-21 16:20:44 -0700989
990 session->vpp_handle = ~0;
991 session->session_state = STATE_DISCONNECT;
Dave Wallace4878cbe2017-11-21 03:45:09 -0500992
Florin Coras070453d2018-08-24 17:04:27 -0700993 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -0400994}
995
Florin Coras697faea2018-06-27 17:10:49 -0700996static int
Florin Corasab2f6db2018-08-31 14:31:41 -0700997vppcom_session_disconnect (u32 session_handle)
Dave Wallace543852a2017-08-03 02:11:34 -0400998{
Florin Coras134a9962018-08-28 11:32:04 -0700999 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras99368312018-08-02 10:45:44 -07001000 svm_msg_q_t *vpp_evt_q;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001001 vcl_session_t *session, *listen_session;
Florin Coras288eaab2019-02-03 15:26:14 -08001002 vcl_session_state_t state;
Florin Coras99368312018-08-02 10:45:44 -07001003 u64 vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001004
Florin Corasab2f6db2018-08-31 14:31:41 -07001005 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras21795132018-09-09 09:40:51 -07001006 if (!session)
1007 return VPPCOM_EBADFD;
1008
Dave Wallace4878cbe2017-11-21 03:45:09 -05001009 vpp_handle = session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001010 state = session->session_state;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001011
Florin Coras5e062572019-03-14 19:07:51 -07001012 VDBG (1, "session %u [0x%llx] state 0x%x (%s)", session->session_index,
1013 vpp_handle, state, vppcom_session_state_str (state));
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001014
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001015 if (PREDICT_FALSE (state & STATE_LISTEN))
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001016 {
Florin Coras5e062572019-03-14 19:07:51 -07001017 VDBG (0, "ERROR: Cannot disconnect a listen socket!");
Florin Coras070453d2018-08-24 17:04:27 -07001018 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001019 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001020
Florin Coras3c7d4f92018-12-14 11:28:43 -08001021 if (state & STATE_VPP_CLOSING)
Dave Wallace4878cbe2017-11-21 03:45:09 -05001022 {
Florin Coras134a9962018-08-28 11:32:04 -07001023 vpp_evt_q = vcl_session_vpp_evt_q (wrk, session);
Florin Coras47c40e22018-11-26 17:01:36 -08001024 vcl_send_session_disconnected_reply (vpp_evt_q, wrk->my_client_index,
Florin Coras99368312018-08-02 10:45:44 -07001025 vpp_handle, 0);
Florin Coras5e062572019-03-14 19:07:51 -07001026 VDBG (1, "session %u [0x%llx]: sending disconnect REPLY...",
1027 session->session_index, vpp_handle);
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001028 }
1029 else
Dave Wallace227867f2017-11-13 21:21:53 -05001030 {
Florin Coras5e062572019-03-14 19:07:51 -07001031 VDBG (1, "session %u [0x%llx]: sending disconnect...",
1032 session->session_index, vpp_handle);
Florin Coras458089b2019-08-21 16:20:44 -07001033 vcl_send_session_disconnect (wrk, session);
Dave Wallace227867f2017-11-13 21:21:53 -05001034 }
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001035
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001036 if (session->listener_index != VCL_INVALID_SESSION_INDEX)
1037 {
1038 listen_session = vcl_session_get (wrk, session->listener_index);
1039 listen_session->n_accepted_sessions--;
1040 }
1041
Florin Coras070453d2018-08-24 17:04:27 -07001042 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001043}
1044
Florin Coras940f78f2018-11-30 12:11:20 -08001045/**
1046 * Handle app exit
1047 *
1048 * Notify vpp of the disconnect and mark the worker as free. If we're the
1049 * last worker, do a full cleanup otherwise, since we're probably a forked
1050 * child, avoid syscalls as much as possible. We might've lost privileges.
1051 */
1052void
1053vppcom_app_exit (void)
1054{
1055 if (!pool_elts (vcm->workers))
1056 return;
Florin Coras01f3f892018-12-02 12:45:53 -08001057 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
1058 vcl_set_worker_index (~0);
Florin Coras940f78f2018-11-30 12:11:20 -08001059 vcl_elog_stop (vcm);
Florin Coras940f78f2018-11-30 12:11:20 -08001060}
1061
Dave Wallace543852a2017-08-03 02:11:34 -04001062/*
1063 * VPPCOM Public API functions
1064 */
1065int
1066vppcom_app_create (char *app_name)
1067{
Dave Wallace543852a2017-08-03 02:11:34 -04001068 vppcom_cfg_t *vcl_cfg = &vcm->cfg;
Dave Wallace543852a2017-08-03 02:11:34 -04001069 int rv;
1070
Florin Coras47c40e22018-11-26 17:01:36 -08001071 if (vcm->is_init)
Dave Wallace543852a2017-08-03 02:11:34 -04001072 {
Florin Coras955bfbb2018-12-04 13:43:45 -08001073 VDBG (1, "already initialized");
1074 return VPPCOM_EEXIST;
Dave Wallace543852a2017-08-03 02:11:34 -04001075 }
1076
Florin Coras47c40e22018-11-26 17:01:36 -08001077 vcm->is_init = 1;
1078 vppcom_cfg (&vcm->cfg);
1079 vcl_cfg = &vcm->cfg;
1080
1081 vcm->main_cpu = pthread_self ();
1082 vcm->main_pid = getpid ();
1083 vcm->app_name = format (0, "%s", app_name);
1084 vppcom_init_error_string_table ();
Florin Coras88001c62019-04-24 14:44:46 -07001085 fifo_segment_main_init (&vcm->segment_main, vcl_cfg->segment_baseva,
1086 20 /* timeout in secs */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001087 pool_alloc (vcm->workers, vcl_cfg->max_workers);
1088 clib_spinlock_init (&vcm->workers_lock);
Florin Corasd85de682018-11-29 17:02:29 -08001089 clib_rwlock_init (&vcm->segment_table_lock);
Florin Coras940f78f2018-11-30 12:11:20 -08001090 atexit (vppcom_app_exit);
Florin Coras47c40e22018-11-26 17:01:36 -08001091
1092 /* Allocate default worker */
1093 vcl_worker_alloc_and_init ();
1094
1095 /* API hookup and connect to VPP */
Florin Coras47c40e22018-11-26 17:01:36 -08001096 vcl_elog_init (vcm);
1097 vcm->app_state = STATE_APP_START;
1098 rv = vppcom_connect_to_vpp (app_name);
1099 if (rv)
Dave Wallace543852a2017-08-03 02:11:34 -04001100 {
Florin Coras47c40e22018-11-26 17:01:36 -08001101 VERR ("couldn't connect to VPP!");
1102 return rv;
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001103 }
Florin Coras47c40e22018-11-26 17:01:36 -08001104 VDBG (0, "sending session enable");
1105 rv = vppcom_app_session_enable ();
1106 if (rv)
1107 {
1108 VERR ("vppcom_app_session_enable() failed!");
1109 return rv;
1110 }
1111
1112 VDBG (0, "sending app attach");
1113 rv = vppcom_app_attach ();
1114 if (rv)
1115 {
1116 VERR ("vppcom_app_attach() failed!");
1117 return rv;
1118 }
1119
1120 VDBG (0, "app_name '%s', my_client_index %d (0x%x)", app_name,
1121 vcm->workers[0].my_client_index, vcm->workers[0].my_client_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001122
1123 return VPPCOM_OK;
1124}
1125
1126void
1127vppcom_app_destroy (void)
1128{
Dave Wallace543852a2017-08-03 02:11:34 -04001129 int rv;
Dave Wallacede910062018-03-20 09:22:13 -04001130 f64 orig_app_timeout;
Dave Wallace543852a2017-08-03 02:11:34 -04001131
Florin Coras940f78f2018-11-30 12:11:20 -08001132 if (!pool_elts (vcm->workers))
1133 return;
1134
Florin Coras0d427d82018-06-27 03:24:07 -07001135 vcl_evt (VCL_EVT_DETACH, vcm);
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001136
Florin Coras940f78f2018-11-30 12:11:20 -08001137 if (pool_elts (vcm->workers) == 1)
Florin Coras47c40e22018-11-26 17:01:36 -08001138 {
Florin Coras458089b2019-08-21 16:20:44 -07001139 vcl_send_app_detach (vcl_worker_get_current ());
Florin Coras47c40e22018-11-26 17:01:36 -08001140 orig_app_timeout = vcm->cfg.app_timeout;
1141 vcm->cfg.app_timeout = 2.0;
1142 rv = vcl_wait_for_app_state_change (STATE_APP_ENABLED);
1143 vcm->cfg.app_timeout = orig_app_timeout;
1144 if (PREDICT_FALSE (rv))
1145 VDBG (0, "application detach timed out! returning %d (%s)", rv,
1146 vppcom_retval_str (rv));
Florin Coras940f78f2018-11-30 12:11:20 -08001147 vec_free (vcm->app_name);
Florin Coras01f3f892018-12-02 12:45:53 -08001148 vcl_worker_cleanup (vcl_worker_get_current (), 0 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001149 }
1150 else
1151 {
Florin Coras01f3f892018-12-02 12:45:53 -08001152 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
Florin Coras47c40e22018-11-26 17:01:36 -08001153 }
Keith Burns (alagalah)8aa9aaf2018-01-05 12:16:22 -08001154
Florin Coras01f3f892018-12-02 12:45:53 -08001155 vcl_set_worker_index (~0);
Florin Coras0d427d82018-06-27 03:24:07 -07001156 vcl_elog_stop (vcm);
Dave Wallace543852a2017-08-03 02:11:34 -04001157 vl_client_disconnect_from_vlib ();
Dave Wallace543852a2017-08-03 02:11:34 -04001158}
1159
1160int
Dave Wallacec04cbf12018-02-07 18:14:02 -05001161vppcom_session_create (u8 proto, u8 is_nonblocking)
Dave Wallace543852a2017-08-03 02:11:34 -04001162{
Florin Coras134a9962018-08-28 11:32:04 -07001163 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001164 vcl_session_t *session;
Dave Wallace543852a2017-08-03 02:11:34 -04001165
Florin Coras134a9962018-08-28 11:32:04 -07001166 session = vcl_session_alloc (wrk);
Dave Wallace543852a2017-08-03 02:11:34 -04001167
Florin Coras7e12d942018-06-27 14:32:43 -07001168 session->session_type = proto;
1169 session->session_state = STATE_START;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001170 session->vpp_handle = ~0;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001171 session->is_dgram = vcl_proto_is_dgram (proto);
Dave Wallace543852a2017-08-03 02:11:34 -04001172
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001173 if (is_nonblocking)
1174 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
Dave Wallace543852a2017-08-03 02:11:34 -04001175
Florin Coras7e12d942018-06-27 14:32:43 -07001176 vcl_evt (VCL_EVT_CREATE, session, session_type, session->session_state,
1177 is_nonblocking, session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001178
Florin Coras5e062572019-03-14 19:07:51 -07001179 VDBG (0, "created session %u", session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001180
Florin Coras134a9962018-08-28 11:32:04 -07001181 return vcl_session_handle (session);
Dave Wallace543852a2017-08-03 02:11:34 -04001182}
1183
1184int
Florin Corasf9240dc2019-01-15 08:03:17 -08001185vcl_session_cleanup (vcl_worker_t * wrk, vcl_session_t * session,
1186 vcl_session_handle_t sh, u8 do_disconnect)
Dave Wallace543852a2017-08-03 02:11:34 -04001187{
Florin Coras288eaab2019-02-03 15:26:14 -08001188 vcl_session_state_t state;
Florin Coras134a9962018-08-28 11:32:04 -07001189 u32 next_sh, vep_sh;
1190 int rv = VPPCOM_OK;
1191 u64 vpp_handle;
Florin Corasf9240dc2019-01-15 08:03:17 -08001192 u8 is_vep;
Florin Coras47c40e22018-11-26 17:01:36 -08001193
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001194 is_vep = session->is_vep;
Florin Coras134a9962018-08-28 11:32:04 -07001195 next_sh = session->vep.next_sh;
1196 vep_sh = session->vep.vep_sh;
Florin Coras7e12d942018-06-27 14:32:43 -07001197 state = session->session_state;
Dave Wallaceee45d412017-11-24 21:44:06 -05001198 vpp_handle = session->vpp_handle;
Dave Wallace543852a2017-08-03 02:11:34 -04001199
Florin Corasf9240dc2019-01-15 08:03:17 -08001200 VDBG (1, "session %u [0x%llx] closing", session->session_index, vpp_handle);
Dave Wallace543852a2017-08-03 02:11:34 -04001201
Dave Wallace66cf6eb2017-10-26 02:51:07 -04001202 if (is_vep)
Dave Wallace543852a2017-08-03 02:11:34 -04001203 {
Florin Coras134a9962018-08-28 11:32:04 -07001204 while (next_sh != ~0)
Dave Wallace19481612017-09-15 18:47:44 -04001205 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001206 rv = vppcom_epoll_ctl (sh, EPOLL_CTL_DEL, next_sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001207 if (PREDICT_FALSE (rv < 0))
Florin Coras5e062572019-03-14 19:07:51 -07001208 VDBG (0, "vpp handle 0x%llx, sh %u: EPOLL_CTL_DEL vep_idx %u"
Florin Coras47c40e22018-11-26 17:01:36 -08001209 " failed! rv %d (%s)", vpp_handle, next_sh, vep_sh, rv,
1210 vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001211
Florin Coras134a9962018-08-28 11:32:04 -07001212 next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001213 }
1214 }
1215 else
1216 {
Florin Coras47c40e22018-11-26 17:01:36 -08001217 if (session->is_vep_session)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001218 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001219 rv = vppcom_epoll_ctl (vep_sh, EPOLL_CTL_DEL, sh, 0);
Florin Coras0d427d82018-06-27 03:24:07 -07001220 if (rv < 0)
Florin Corasf9240dc2019-01-15 08:03:17 -08001221 VDBG (0, "session %u [0x%llx]: EPOLL_CTL_DEL vep_idx %u "
1222 "failed! rv %d (%s)", session->session_index, vpp_handle,
1223 vep_sh, rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001224 }
1225
Florin Coras47c40e22018-11-26 17:01:36 -08001226 if (!do_disconnect)
Florin Coras30e79c22019-01-02 19:31:22 -08001227 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08001228 VDBG (1, "session %u [0x%llx] disconnect skipped",
Florin Corasf9240dc2019-01-15 08:03:17 -08001229 session->session_index, vpp_handle);
Florin Coras30e79c22019-01-02 19:31:22 -08001230 goto cleanup;
1231 }
Florin Coras47c40e22018-11-26 17:01:36 -08001232
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001233 if (state & STATE_LISTEN)
Dave Wallacef7f809c2017-10-03 01:48:42 -04001234 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001235 rv = vppcom_session_unbind (sh);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001236 if (PREDICT_FALSE (rv < 0))
Florin Corasf9240dc2019-01-15 08:03:17 -08001237 VDBG (0, "session %u [0x%llx]: listener unbind failed! "
1238 "rv %d (%s)", session->session_index, vpp_handle, rv,
Florin Coras47c40e22018-11-26 17:01:36 -08001239 vppcom_retval_str (rv));
Florin Corasdfae9f92019-02-20 19:48:31 -08001240 return rv;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001241 }
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001242 else if ((state & STATE_OPEN)
1243 || (vcl_session_is_connectable_listener (wrk, session)))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001244 {
Florin Corasf9240dc2019-01-15 08:03:17 -08001245 rv = vppcom_session_disconnect (sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001246 if (PREDICT_FALSE (rv < 0))
Florin Corasf9240dc2019-01-15 08:03:17 -08001247 VDBG (0, "ERROR: session %u [0x%llx]: disconnect failed!"
1248 " rv %d (%s)", session->session_index, vpp_handle,
1249 rv, vppcom_retval_str (rv));
Dave Wallacef7f809c2017-10-03 01:48:42 -04001250 }
Florin Corasb0f662f2018-12-27 14:51:46 -08001251 else if (state == STATE_DISCONNECT)
1252 {
1253 svm_msg_q_t *mq = vcl_session_vpp_evt_q (wrk, session);
1254 vcl_send_session_reset_reply (mq, wrk->my_client_index,
1255 session->vpp_handle, 0);
1256 }
Dave Wallace19481612017-09-15 18:47:44 -04001257 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05001258
Florin Coras0ef8ef22019-01-18 08:37:13 -08001259 VDBG (0, "session %u [0x%llx] removed", session->session_index, vpp_handle);
1260
Florin Corasf9240dc2019-01-15 08:03:17 -08001261cleanup:
Florin Coras30e79c22019-01-02 19:31:22 -08001262 vcl_session_table_del_vpp_handle (wrk, vpp_handle);
Florin Coras134a9962018-08-28 11:32:04 -07001263 vcl_session_free (wrk, session);
Florin Coras0d427d82018-06-27 03:24:07 -07001264 vcl_evt (VCL_EVT_CLOSE, session, rv);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08001265
Dave Wallace543852a2017-08-03 02:11:34 -04001266 return rv;
1267}
1268
1269int
Florin Corasf9240dc2019-01-15 08:03:17 -08001270vppcom_session_close (uint32_t session_handle)
1271{
1272 vcl_worker_t *wrk = vcl_worker_get_current ();
1273 vcl_session_t *session;
1274
1275 session = vcl_session_get_w_handle (wrk, session_handle);
1276 if (!session)
1277 return VPPCOM_EBADFD;
1278 return vcl_session_cleanup (wrk, session, session_handle,
1279 1 /* do_disconnect */ );
1280}
1281
1282int
Florin Coras134a9962018-08-28 11:32:04 -07001283vppcom_session_bind (uint32_t session_handle, vppcom_endpt_t * ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001284{
Florin Coras134a9962018-08-28 11:32:04 -07001285 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001286 vcl_session_t *session = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001287
1288 if (!ep || !ep->ip)
1289 return VPPCOM_EINVAL;
1290
Florin Coras134a9962018-08-28 11:32:04 -07001291 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001292 if (!session)
1293 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001294
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001295 if (session->is_vep)
1296 {
Florin Coras5e062572019-03-14 19:07:51 -07001297 VDBG (0, "ERROR: cannot bind to epoll session %u!",
1298 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001299 return VPPCOM_EBADFD;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001300 }
1301
Florin Coras7e12d942018-06-27 14:32:43 -07001302 session->transport.is_ip4 = ep->is_ip4;
Florin Coras54693d22018-07-17 10:46:29 -07001303 if (ep->is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001304 clib_memcpy_fast (&session->transport.lcl_ip.ip4, ep->ip,
1305 sizeof (ip4_address_t));
Florin Coras54693d22018-07-17 10:46:29 -07001306 else
Dave Barach178cf492018-11-13 16:34:13 -05001307 clib_memcpy_fast (&session->transport.lcl_ip.ip6, ep->ip,
1308 sizeof (ip6_address_t));
Florin Coras7e12d942018-06-27 14:32:43 -07001309 session->transport.lcl_port = ep->port;
Stevenac1f96d2017-10-24 16:03:58 -07001310
Florin Coras5e062572019-03-14 19:07:51 -07001311 VDBG (0, "session %u handle %u: binding to local %s address %U port %u, "
1312 "proto %s", session->session_index, session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001313 session->transport.is_ip4 ? "IPv4" : "IPv6",
1314 format_ip46_address, &session->transport.lcl_ip,
1315 session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
1316 clib_net_to_host_u16 (session->transport.lcl_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001317 vppcom_proto_str (session->session_type));
Florin Coras0d427d82018-06-27 03:24:07 -07001318 vcl_evt (VCL_EVT_BIND, session);
Florin Coras460dce62018-07-27 05:45:06 -07001319
1320 if (session->session_type == VPPCOM_PROTO_UDP)
Florin Coras134a9962018-08-28 11:32:04 -07001321 vppcom_session_listen (session_handle, 10);
Florin Coras460dce62018-07-27 05:45:06 -07001322
Florin Coras070453d2018-08-24 17:04:27 -07001323 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001324}
1325
1326int
Florin Coras134a9962018-08-28 11:32:04 -07001327vppcom_session_listen (uint32_t listen_sh, uint32_t q_len)
Dave Wallace543852a2017-08-03 02:11:34 -04001328{
Florin Coras134a9962018-08-28 11:32:04 -07001329 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001330 vcl_session_t *listen_session = 0;
Dave Wallaceee45d412017-11-24 21:44:06 -05001331 u64 listen_vpp_handle;
Florin Coras070453d2018-08-24 17:04:27 -07001332 int rv;
1333
Florin Coras134a9962018-08-28 11:32:04 -07001334 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001335 if (!listen_session || listen_session->is_vep)
Florin Coras070453d2018-08-24 17:04:27 -07001336 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001337
Keith Burns (alagalah)aba98de2018-02-22 03:23:40 -08001338 if (q_len == 0 || q_len == ~0)
1339 q_len = vcm->cfg.listen_queue_size;
1340
Dave Wallaceee45d412017-11-24 21:44:06 -05001341 listen_vpp_handle = listen_session->vpp_handle;
Florin Coras7e12d942018-06-27 14:32:43 -07001342 if (listen_session->session_state & STATE_LISTEN)
Dave Wallacee695cb42017-11-02 22:04:42 -04001343 {
Florin Coras05ecfcc2018-12-12 18:19:39 -08001344 VDBG (0, "session %u [0x%llx]: already in listen state!",
1345 listen_sh, listen_vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001346 return VPPCOM_OK;
Dave Wallacee695cb42017-11-02 22:04:42 -04001347 }
1348
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001349 VDBG (0, "session %u: sending vpp listen request...", listen_sh);
Dave Wallace543852a2017-08-03 02:11:34 -04001350
Florin Coras070453d2018-08-24 17:04:27 -07001351 /*
1352 * Send listen request to vpp and wait for reply
1353 */
Florin Coras458089b2019-08-21 16:20:44 -07001354 vcl_send_session_listen (wrk, listen_session);
Florin Coras134a9962018-08-28 11:32:04 -07001355 rv = vppcom_wait_for_session_state_change (listen_session->session_index,
1356 STATE_LISTEN,
1357 vcm->cfg.session_timeout);
Dave Wallace543852a2017-08-03 02:11:34 -04001358
Florin Coras070453d2018-08-24 17:04:27 -07001359 if (PREDICT_FALSE (rv))
Dave Wallaceee45d412017-11-24 21:44:06 -05001360 {
Florin Coras134a9962018-08-28 11:32:04 -07001361 listen_session = vcl_session_get_w_handle (wrk, listen_sh);
Florin Coras05ecfcc2018-12-12 18:19:39 -08001362 VDBG (0, "session %u [0x%llx]: listen failed! returning %d (%s)",
1363 listen_sh, listen_session->vpp_handle, rv,
1364 vppcom_retval_str (rv));
Florin Coras070453d2018-08-24 17:04:27 -07001365 return rv;
Dave Wallaceee45d412017-11-24 21:44:06 -05001366 }
1367
Florin Coras070453d2018-08-24 17:04:27 -07001368 return VPPCOM_OK;
Keith Burns (alagalah)0d2b0d52018-03-06 15:55:22 -08001369}
1370
Ping Yu34a3a082018-11-30 19:16:17 -05001371int
1372vppcom_session_tls_add_cert (uint32_t session_handle, char *cert,
1373 uint32_t cert_len)
1374{
1375
1376 vcl_worker_t *wrk = vcl_worker_get_current ();
1377 vcl_session_t *session = 0;
1378
1379 session = vcl_session_get_w_handle (wrk, session_handle);
1380 if (!session)
1381 return VPPCOM_EBADFD;
1382
1383 if (cert_len == 0 || cert_len == ~0)
1384 return VPPCOM_EBADFD;
1385
1386 /*
1387 * Send listen request to vpp and wait for reply
1388 */
1389 vppcom_send_application_tls_cert_add (session, cert, cert_len);
Florin Coras458089b2019-08-21 16:20:44 -07001390 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1391 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001392 return VPPCOM_OK;
1393
1394}
1395
1396int
1397vppcom_session_tls_add_key (uint32_t session_handle, char *key,
1398 uint32_t key_len)
1399{
1400
1401 vcl_worker_t *wrk = vcl_worker_get_current ();
1402 vcl_session_t *session = 0;
1403
1404 session = vcl_session_get_w_handle (wrk, session_handle);
1405 if (!session)
1406 return VPPCOM_EBADFD;
1407
1408 if (key_len == 0 || key_len == ~0)
1409 return VPPCOM_EBADFD;
1410
Ping Yu34a3a082018-11-30 19:16:17 -05001411 vppcom_send_application_tls_key_add (session, key, key_len);
Florin Coras458089b2019-08-21 16:20:44 -07001412 vcm->app_state = STATE_APP_ADDING_TLS_DATA;
1413 vcl_wait_for_app_state_change (STATE_APP_READY);
Ping Yu34a3a082018-11-30 19:16:17 -05001414 return VPPCOM_OK;
Ping Yu34a3a082018-11-30 19:16:17 -05001415}
1416
Florin Coras134a9962018-08-28 11:32:04 -07001417static int
Florin Coras5e062572019-03-14 19:07:51 -07001418validate_args_session_accept_ (vcl_worker_t * wrk, vcl_session_t * ls)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001419{
Florin Coras5e062572019-03-14 19:07:51 -07001420 if (ls->is_vep)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001421 {
Florin Coras5e062572019-03-14 19:07:51 -07001422 VDBG (0, "ERROR: cannot accept on epoll session %u!",
1423 ls->session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001424 return VPPCOM_EBADFD;
1425 }
1426
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001427 if ((ls->session_state != STATE_LISTEN)
1428 && (!vcl_session_is_connectable_listener (wrk, ls)))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001429 {
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001430 VDBG (0,
1431 "ERROR: session [0x%llx]: not in listen state! state 0x%x"
1432 " (%s)", ls->vpp_handle, ls->session_state,
Florin Coras5e062572019-03-14 19:07:51 -07001433 vppcom_session_state_str (ls->session_state));
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001434 return VPPCOM_EBADFD;
1435 }
1436 return VPPCOM_OK;
1437}
1438
1439int
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001440vppcom_unformat_proto (uint8_t * proto, char *proto_str)
1441{
1442 if (!strcmp (proto_str, "TCP"))
1443 *proto = VPPCOM_PROTO_TCP;
1444 else if (!strcmp (proto_str, "tcp"))
1445 *proto = VPPCOM_PROTO_TCP;
1446 else if (!strcmp (proto_str, "UDP"))
1447 *proto = VPPCOM_PROTO_UDP;
1448 else if (!strcmp (proto_str, "udp"))
1449 *proto = VPPCOM_PROTO_UDP;
1450 else if (!strcmp (proto_str, "UDPC"))
1451 *proto = VPPCOM_PROTO_UDPC;
1452 else if (!strcmp (proto_str, "udpc"))
1453 *proto = VPPCOM_PROTO_UDPC;
1454 else if (!strcmp (proto_str, "SCTP"))
1455 *proto = VPPCOM_PROTO_SCTP;
1456 else if (!strcmp (proto_str, "sctp"))
1457 *proto = VPPCOM_PROTO_SCTP;
1458 else if (!strcmp (proto_str, "TLS"))
1459 *proto = VPPCOM_PROTO_TLS;
1460 else if (!strcmp (proto_str, "tls"))
1461 *proto = VPPCOM_PROTO_TLS;
1462 else if (!strcmp (proto_str, "QUIC"))
1463 *proto = VPPCOM_PROTO_QUIC;
1464 else if (!strcmp (proto_str, "quic"))
1465 *proto = VPPCOM_PROTO_QUIC;
1466 else
1467 return 1;
1468 return 0;
1469}
1470
1471int
Florin Coras134a9962018-08-28 11:32:04 -07001472vppcom_session_accept (uint32_t listen_session_handle, vppcom_endpt_t * ep,
Dave Wallace048b1d62018-01-03 22:24:41 -05001473 uint32_t flags)
Dave Wallace543852a2017-08-03 02:11:34 -04001474{
Florin Coras3c7d4f92018-12-14 11:28:43 -08001475 u32 client_session_index = ~0, listen_session_index, accept_flags = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001476 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras54693d22018-07-17 10:46:29 -07001477 session_accepted_msg_t accepted_msg;
Florin Coras7e12d942018-06-27 14:32:43 -07001478 vcl_session_t *listen_session = 0;
1479 vcl_session_t *client_session = 0;
Florin Coras54693d22018-07-17 10:46:29 -07001480 vcl_session_msg_t *evt;
Florin Coras54693d22018-07-17 10:46:29 -07001481 svm_msg_q_msg_t msg;
1482 session_event_t *e;
1483 u8 is_nonblocking;
1484 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001485
Florin Coras134a9962018-08-28 11:32:04 -07001486 listen_session = vcl_session_get_w_handle (wrk, listen_session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001487 if (!listen_session)
1488 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001489
Florin Coras134a9962018-08-28 11:32:04 -07001490 listen_session_index = listen_session->session_index;
1491 if ((rv = validate_args_session_accept_ (wrk, listen_session)))
Florin Coras070453d2018-08-24 17:04:27 -07001492 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001493
Florin Coras54693d22018-07-17 10:46:29 -07001494 if (clib_fifo_elts (listen_session->accept_evts_fifo))
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001495 {
Florin Coras54693d22018-07-17 10:46:29 -07001496 clib_fifo_sub2 (listen_session->accept_evts_fifo, evt);
Florin Coras3c7d4f92018-12-14 11:28:43 -08001497 accept_flags = evt->flags;
Florin Coras54693d22018-07-17 10:46:29 -07001498 accepted_msg = evt->accepted_msg;
1499 goto handle;
1500 }
1501
1502 is_nonblocking = VCL_SESS_ATTR_TEST (listen_session->attr,
1503 VCL_SESS_ATTR_NONBLOCK);
Florin Coras54693d22018-07-17 10:46:29 -07001504 while (1)
1505 {
Carl Smith592a9092019-11-12 14:57:37 +13001506 if (svm_msg_q_is_empty (wrk->app_event_queue) && is_nonblocking)
1507 return VPPCOM_EAGAIN;
1508
Florin Coras134a9962018-08-28 11:32:04 -07001509 if (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_WAIT, 0))
Florin Coras54693d22018-07-17 10:46:29 -07001510 return VPPCOM_EAGAIN;
1511
Florin Coras134a9962018-08-28 11:32:04 -07001512 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001513 if (e->event_type != SESSION_CTRL_EVT_ACCEPTED)
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001514 {
wanghanlin96453fd2019-12-16 19:14:39 +08001515 vcl_handle_mq_event (wrk, e);
Florin Coras134a9962018-08-28 11:32:04 -07001516 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001517 continue;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001518 }
Dave Barach178cf492018-11-13 16:34:13 -05001519 clib_memcpy_fast (&accepted_msg, e->data, sizeof (accepted_msg));
Florin Coras134a9962018-08-28 11:32:04 -07001520 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001521 break;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001522 }
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001523
Florin Coras54693d22018-07-17 10:46:29 -07001524handle:
Keith Burns (alagalah)00f44cc2018-03-07 09:26:38 -08001525
Florin Coras00cca802019-06-06 09:38:44 -07001526 client_session_index = vcl_session_accepted_handler (wrk, &accepted_msg,
1527 listen_session_index);
1528 if (client_session_index == VCL_INVALID_SESSION_INDEX)
1529 return VPPCOM_ECONNABORTED;
1530
Florin Coras134a9962018-08-28 11:32:04 -07001531 listen_session = vcl_session_get (wrk, listen_session_index);
1532 client_session = vcl_session_get (wrk, client_session_index);
Dave Wallace543852a2017-08-03 02:11:34 -04001533
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001534 if (flags & O_NONBLOCK)
1535 VCL_SESS_ATTR_SET (client_session->attr, VCL_SESS_ATTR_NONBLOCK);
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08001536
Florin Coras5e062572019-03-14 19:07:51 -07001537 VDBG (1, "listener %u [0x%llx]: Got a connect request! session %u [0x%llx],"
1538 " flags %d, is_nonblocking %u", listen_session->session_index,
1539 listen_session->vpp_handle, client_session_index,
1540 client_session->vpp_handle, flags,
1541 VCL_SESS_ATTR_TEST (client_session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace543852a2017-08-03 02:11:34 -04001542
Dave Wallace048b1d62018-01-03 22:24:41 -05001543 if (ep)
1544 {
Florin Coras7e12d942018-06-27 14:32:43 -07001545 ep->is_ip4 = client_session->transport.is_ip4;
1546 ep->port = client_session->transport.rmt_port;
1547 if (client_session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05001548 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip4,
1549 sizeof (ip4_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001550 else
Dave Barach178cf492018-11-13 16:34:13 -05001551 clib_memcpy_fast (ep->ip, &client_session->transport.rmt_ip.ip6,
1552 sizeof (ip6_address_t));
Dave Wallace048b1d62018-01-03 22:24:41 -05001553 }
Dave Wallace60caa062017-11-10 17:07:13 -05001554
Florin Coras05ecfcc2018-12-12 18:19:39 -08001555 VDBG (0, "listener %u [0x%llx] accepted %u [0x%llx] peer: %U:%u "
Florin Coras5e062572019-03-14 19:07:51 -07001556 "local: %U:%u", listen_session_handle, listen_session->vpp_handle,
Florin Coras05ecfcc2018-12-12 18:19:39 -08001557 client_session_index, client_session->vpp_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001558 format_ip46_address, &client_session->transport.rmt_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001559 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001560 clib_net_to_host_u16 (client_session->transport.rmt_port),
Florin Coras7e12d942018-06-27 14:32:43 -07001561 format_ip46_address, &client_session->transport.lcl_ip,
Florin Coras54693d22018-07-17 10:46:29 -07001562 client_session->transport.is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001563 clib_net_to_host_u16 (client_session->transport.lcl_port));
Florin Coras0d427d82018-06-27 03:24:07 -07001564 vcl_evt (VCL_EVT_ACCEPT, client_session, listen_session,
1565 client_session_index);
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08001566
Florin Coras3c7d4f92018-12-14 11:28:43 -08001567 /*
1568 * Session might have been closed already
1569 */
1570 if (accept_flags)
1571 {
Florin Coras3c7d4f92018-12-14 11:28:43 -08001572 if (accept_flags & VCL_ACCEPTED_F_CLOSED)
Florin Corasb0f662f2018-12-27 14:51:46 -08001573 client_session->session_state = STATE_VPP_CLOSING;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001574 else if (accept_flags & VCL_ACCEPTED_F_RESET)
Florin Corasb0f662f2018-12-27 14:51:46 -08001575 client_session->session_state = STATE_DISCONNECT;
Florin Coras3c7d4f92018-12-14 11:28:43 -08001576 }
Florin Corasab2f6db2018-08-31 14:31:41 -07001577 return vcl_session_handle (client_session);
Dave Wallace543852a2017-08-03 02:11:34 -04001578}
1579
Florin Corasef7cbf62019-10-17 09:56:27 -07001580static void
1581vcl_ip_copy_from_ep (ip46_address_t * ip, vppcom_endpt_t * ep)
1582{
1583 if (ep->is_ip4)
1584 clib_memcpy_fast (&ip->ip4, ep->ip, sizeof (ip4_address_t));
1585 else
1586 clib_memcpy_fast (&ip->ip6, ep->ip, sizeof (ip6_address_t));
1587}
1588
1589void
1590vcl_ip_copy_to_ep (ip46_address_t * ip, vppcom_endpt_t * ep, u8 is_ip4)
1591{
1592 ep->is_ip4 = is_ip4;
1593 if (is_ip4)
1594 clib_memcpy_fast (ep->ip, &ip->ip4, sizeof (ip4_address_t));
1595 else
1596 clib_memcpy_fast (ep->ip, &ip->ip6, sizeof (ip6_address_t));
1597}
1598
Dave Wallace543852a2017-08-03 02:11:34 -04001599int
Florin Coras134a9962018-08-28 11:32:04 -07001600vppcom_session_connect (uint32_t session_handle, vppcom_endpt_t * server_ep)
Dave Wallace543852a2017-08-03 02:11:34 -04001601{
Florin Coras134a9962018-08-28 11:32:04 -07001602 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07001603 vcl_session_t *session = 0;
Florin Coras134a9962018-08-28 11:32:04 -07001604 u32 session_index;
Florin Coras070453d2018-08-24 17:04:27 -07001605 int rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001606
Florin Coras134a9962018-08-28 11:32:04 -07001607 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001608 if (!session)
1609 return VPPCOM_EBADFD;
Florin Coras134a9962018-08-28 11:32:04 -07001610 session_index = session->session_index;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001611
1612 if (PREDICT_FALSE (session->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001613 {
Florin Coras5e062572019-03-14 19:07:51 -07001614 VDBG (0, "ERROR: cannot connect epoll session %u!",
1615 session->session_index);
Florin Coras070453d2018-08-24 17:04:27 -07001616 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001617 }
1618
Florin Coras7e12d942018-06-27 14:32:43 -07001619 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
Dave Wallace543852a2017-08-03 02:11:34 -04001620 {
Florin Coras7baeb712019-01-04 17:05:43 -08001621 VDBG (0, "session handle %u [0x%llx]: session already "
Florin Coras0d427d82018-06-27 03:24:07 -07001622 "connected to %s %U port %d proto %s, state 0x%x (%s)",
Florin Coras7baeb712019-01-04 17:05:43 -08001623 session_handle, session->vpp_handle,
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001624 session->transport.is_ip4 ? "IPv4" : "IPv6", format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001625 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001626 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001627 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001628 vppcom_proto_str (session->session_type), session->session_state,
Florin Coras7e12d942018-06-27 14:32:43 -07001629 vppcom_session_state_str (session->session_state));
Florin Coras070453d2018-08-24 17:04:27 -07001630 return VPPCOM_OK;
Dave Wallace543852a2017-08-03 02:11:34 -04001631 }
1632
Florin Coras7e12d942018-06-27 14:32:43 -07001633 session->transport.is_ip4 = server_ep->is_ip4;
Florin Corasef7cbf62019-10-17 09:56:27 -07001634 vcl_ip_copy_from_ep (&session->transport.rmt_ip, server_ep);
Florin Coras7e12d942018-06-27 14:32:43 -07001635 session->transport.rmt_port = server_ep->port;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001636 session->parent_handle = VCL_INVALID_SESSION_HANDLE;
Dave Wallace543852a2017-08-03 02:11:34 -04001637
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001638 VDBG (0, "session handle %u: connecting to server %s %U "
1639 "port %d proto %s", session_handle,
Florin Coras7e12d942018-06-27 14:32:43 -07001640 session->transport.is_ip4 ? "IPv4" : "IPv6",
Florin Coras0d427d82018-06-27 03:24:07 -07001641 format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07001642 &session->transport.rmt_ip, session->transport.is_ip4 ?
Florin Coras0d427d82018-06-27 03:24:07 -07001643 IP46_TYPE_IP4 : IP46_TYPE_IP6,
Florin Coras7e12d942018-06-27 14:32:43 -07001644 clib_net_to_host_u16 (session->transport.rmt_port),
Ping Yu34a3a082018-11-30 19:16:17 -05001645 vppcom_proto_str (session->session_type));
Dave Wallace543852a2017-08-03 02:11:34 -04001646
Florin Coras458089b2019-08-21 16:20:44 -07001647 vcl_send_session_connect (wrk, session);
Florin Coras57c88932019-08-29 12:03:17 -07001648
1649 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK))
1650 return VPPCOM_EINPROGRESS;
1651
1652 /*
1653 * Wait for reply from vpp if blocking
1654 */
Florin Coras070453d2018-08-24 17:04:27 -07001655 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1656 vcm->cfg.session_timeout);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001657
Florin Coras134a9962018-08-28 11:32:04 -07001658 session = vcl_session_get (wrk, session_index);
Florin Coras5e062572019-03-14 19:07:51 -07001659 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1660 session->vpp_handle, rv ? "failed" : "succeeded");
Dave Wallaceee45d412017-11-24 21:44:06 -05001661
Dave Wallace4878cbe2017-11-21 03:45:09 -05001662 return rv;
Dave Wallace543852a2017-08-03 02:11:34 -04001663}
1664
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001665int
1666vppcom_session_stream_connect (uint32_t session_handle,
1667 uint32_t parent_session_handle)
1668{
1669 vcl_worker_t *wrk = vcl_worker_get_current ();
1670 vcl_session_t *session, *parent_session;
1671 u32 session_index, parent_session_index;
1672 int rv;
1673
1674 session = vcl_session_get_w_handle (wrk, session_handle);
1675 if (!session)
1676 return VPPCOM_EBADFD;
1677 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
1678 if (!parent_session)
1679 return VPPCOM_EBADFD;
1680
1681 session_index = session->session_index;
1682 parent_session_index = parent_session->session_index;
1683 if (PREDICT_FALSE (session->is_vep))
1684 {
1685 VDBG (0, "ERROR: cannot connect epoll session %u!",
1686 session->session_index);
1687 return VPPCOM_EBADFD;
1688 }
1689
1690 if (PREDICT_FALSE (session->session_state & CLIENT_STATE_OPEN))
1691 {
1692 VDBG (0, "session handle %u [0x%llx]: session already "
1693 "connected to session %u [0x%llx] proto %s, state 0x%x (%s)",
1694 session_handle, session->vpp_handle,
1695 parent_session_handle, parent_session->vpp_handle,
1696 vppcom_proto_str (session->session_type), session->session_state,
1697 vppcom_session_state_str (session->session_state));
1698 return VPPCOM_OK;
1699 }
1700
1701 /* Connect to quic session specifics */
1702 session->transport.is_ip4 = parent_session->transport.is_ip4;
1703 session->transport.rmt_ip.ip4.as_u32 = (uint32_t) 1;
1704 session->transport.rmt_port = 0;
Nathan Skrzypczak8ac1d6d2019-07-17 11:02:20 +02001705 session->parent_handle = parent_session->vpp_handle;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001706
1707 VDBG (0, "session handle %u: connecting to session %u [0x%llx]",
1708 session_handle, parent_session_handle, parent_session->vpp_handle);
1709
1710 /*
1711 * Send connect request and wait for reply from vpp
1712 */
Florin Coras458089b2019-08-21 16:20:44 -07001713 vcl_send_session_connect (wrk, session);
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001714 rv = vppcom_wait_for_session_state_change (session_index, STATE_CONNECT,
1715 vcm->cfg.session_timeout);
1716
1717 session->listener_index = parent_session_index;
1718 parent_session = vcl_session_get_w_handle (wrk, parent_session_handle);
Florin Coras028eaf02019-07-19 12:15:52 -07001719 if (parent_session)
1720 parent_session->n_accepted_sessions++;
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02001721
1722 session = vcl_session_get (wrk, session_index);
1723 VDBG (0, "session %u [0x%llx]: connect %s!", session->session_index,
1724 session->vpp_handle, rv ? "failed" : "succeeded");
1725
1726 return rv;
1727}
1728
Florin Coras54693d22018-07-17 10:46:29 -07001729static u8
1730vcl_is_rx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1731{
Florin Corasc0737e92019-03-04 14:19:39 -08001732 return (e->event_type == SESSION_IO_EVT_RX && e->session_index == sid);
Florin Coras54693d22018-07-17 10:46:29 -07001733}
1734
Steven58f464e2017-10-25 12:33:12 -07001735static inline int
Florin Coras134a9962018-08-28 11:32:04 -07001736vppcom_session_read_internal (uint32_t session_handle, void *buf, int n,
Steven58f464e2017-10-25 12:33:12 -07001737 u8 peek)
Dave Wallace543852a2017-08-03 02:11:34 -04001738{
Florin Coras134a9962018-08-28 11:32:04 -07001739 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001740 int n_read = 0, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001741 vcl_session_t *s = 0;
Dave Wallace543852a2017-08-03 02:11:34 -04001742 svm_fifo_t *rx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001743 svm_msg_q_msg_t msg;
1744 session_event_t *e;
1745 svm_msg_q_t *mq;
Florin Coras41c9e042018-09-11 00:10:41 -07001746 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001747
Florin Coras070453d2018-08-24 17:04:27 -07001748 if (PREDICT_FALSE (!buf))
1749 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001750
Florin Coras134a9962018-08-28 11:32:04 -07001751 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras2cba8532018-09-11 16:33:36 -07001752 if (PREDICT_FALSE (!s || s->is_vep))
Florin Coras070453d2018-08-24 17:04:27 -07001753 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001754
Florin Coras6d0106e2019-01-29 20:11:58 -08001755 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001756 {
Florin Coras5e062572019-03-14 19:07:51 -07001757 VDBG (0, "session %u[0x%llx] is not open! state 0x%x (%s)",
Florin Coras6d0106e2019-01-29 20:11:58 -08001758 s->session_index, s->vpp_handle, s->session_state,
1759 vppcom_session_state_str (s->session_state));
1760 return vcl_session_closed_error (s);
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001761 }
1762
Florin Coras2cba8532018-09-11 16:33:36 -07001763 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Florin Coras41c9e042018-09-11 00:10:41 -07001764 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001765 mq = wrk->app_event_queue;
1766 rx_fifo = is_ct ? s->ct_rx_fifo : s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001767 s->has_rx_evt = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04001768
Sirshak Das28aa5392019-02-05 01:33:33 -06001769 if (svm_fifo_is_empty_cons (rx_fifo))
Dave Wallacef7f809c2017-10-03 01:48:42 -04001770 {
Florin Coras54693d22018-07-17 10:46:29 -07001771 if (is_nonblocking)
Florin Corasc0737e92019-03-04 14:19:39 -08001772 {
Yu Pingb2955352019-12-04 06:49:04 +08001773 if (vcl_session_is_closing (s))
1774 return vcl_session_closing_error (s);
Florin Corasc0737e92019-03-04 14:19:39 -08001775 svm_fifo_unset_event (s->rx_fifo);
1776 return VPPCOM_EWOULDBLOCK;
1777 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001778 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001779 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001780 if (vcl_session_is_closing (s))
1781 return vcl_session_closing_error (s);
1782
Florin Corasc0737e92019-03-04 14:19:39 -08001783 svm_fifo_unset_event (s->rx_fifo);
Florin Coras99368312018-08-02 10:45:44 -07001784 svm_msg_q_lock (mq);
Florin Coras54693d22018-07-17 10:46:29 -07001785 if (svm_msg_q_is_empty (mq))
1786 svm_msg_q_wait (mq);
Florin Coras99368312018-08-02 10:45:44 -07001787
Florin Coras54693d22018-07-17 10:46:29 -07001788 svm_msg_q_sub_w_lock (mq, &msg);
1789 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001790 svm_msg_q_unlock (mq);
Florin Coras41c9e042018-09-11 00:10:41 -07001791 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Corasc0737e92019-03-04 14:19:39 -08001792 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001793 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001794 }
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001795 }
Florin Coras54693d22018-07-17 10:46:29 -07001796
Florin Coras460dce62018-07-27 05:45:06 -07001797 if (s->is_dgram)
Florin Coras99368312018-08-02 10:45:44 -07001798 n_read = app_recv_dgram_raw (rx_fifo, buf, n, &s->transport, 0, peek);
Dave Wallace4878cbe2017-11-21 03:45:09 -05001799 else
Florin Coras99368312018-08-02 10:45:44 -07001800 n_read = app_recv_stream_raw (rx_fifo, buf, n, 0, peek);
Florin Coras54693d22018-07-17 10:46:29 -07001801
Sirshak Das28aa5392019-02-05 01:33:33 -06001802 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08001803 svm_fifo_unset_event (s->rx_fifo);
Florin Coras41c9e042018-09-11 00:10:41 -07001804
Florin Coras317b8e02019-04-17 09:57:46 -07001805 /* Cut-through sessions might request tx notifications on rx fifos */
Florin Coras2d379d82019-06-28 12:45:12 -07001806 if (PREDICT_FALSE (rx_fifo->want_deq_ntf))
Florin Coras317b8e02019-04-17 09:57:46 -07001807 {
1808 app_send_io_evt_to_vpp (s->vpp_evt_q, s->rx_fifo->master_session_index,
1809 SESSION_IO_EVT_RX, SVM_Q_WAIT);
Florin Coras2d379d82019-06-28 12:45:12 -07001810 svm_fifo_reset_has_deq_ntf (s->rx_fifo);
Florin Coras317b8e02019-04-17 09:57:46 -07001811 }
1812
Florin Coras5e062572019-03-14 19:07:51 -07001813 VDBG (2, "session %u[0x%llx]: read %d bytes from (%p)", s->session_index,
1814 s->vpp_handle, n_read, rx_fifo);
Florin Coras2cba8532018-09-11 16:33:36 -07001815
Florin Coras54693d22018-07-17 10:46:29 -07001816 return n_read;
Dave Wallace543852a2017-08-03 02:11:34 -04001817}
1818
Steven58f464e2017-10-25 12:33:12 -07001819int
Florin Coras134a9962018-08-28 11:32:04 -07001820vppcom_session_read (uint32_t session_handle, void *buf, size_t n)
Steven58f464e2017-10-25 12:33:12 -07001821{
Florin Coras134a9962018-08-28 11:32:04 -07001822 return (vppcom_session_read_internal (session_handle, buf, n, 0));
Steven58f464e2017-10-25 12:33:12 -07001823}
1824
1825static int
Florin Coras134a9962018-08-28 11:32:04 -07001826vppcom_session_peek (uint32_t session_handle, void *buf, int n)
Steven58f464e2017-10-25 12:33:12 -07001827{
Florin Coras134a9962018-08-28 11:32:04 -07001828 return (vppcom_session_read_internal (session_handle, buf, n, 1));
Steven58f464e2017-10-25 12:33:12 -07001829}
1830
Florin Coras2cba8532018-09-11 16:33:36 -07001831int
1832vppcom_session_read_segments (uint32_t session_handle,
1833 vppcom_data_segments_t ds)
1834{
1835 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001836 int n_read = 0, is_nonblocking;
Florin Coras2cba8532018-09-11 16:33:36 -07001837 vcl_session_t *s = 0;
1838 svm_fifo_t *rx_fifo;
1839 svm_msg_q_msg_t msg;
1840 session_event_t *e;
1841 svm_msg_q_t *mq;
1842 u8 is_ct;
1843
1844 s = vcl_session_get_w_handle (wrk, session_handle);
1845 if (PREDICT_FALSE (!s || s->is_vep))
1846 return VPPCOM_EBADFD;
1847
Florin Coras6d0106e2019-01-29 20:11:58 -08001848 if (PREDICT_FALSE (!vcl_session_is_open (s)))
1849 return vcl_session_closed_error (s);
Florin Coras2cba8532018-09-11 16:33:36 -07001850
1851 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
1852 is_ct = vcl_session_is_ct (s);
1853 mq = is_ct ? s->our_evt_q : wrk->app_event_queue;
1854 rx_fifo = s->rx_fifo;
Florin Corasaa27eb92018-10-13 12:20:01 -07001855 s->has_rx_evt = 0;
Florin Coras2cba8532018-09-11 16:33:36 -07001856
Florin Coras653e43f2019-03-04 10:56:23 -08001857 if (is_ct)
1858 svm_fifo_unset_event (s->rx_fifo);
1859
Sirshak Das28aa5392019-02-05 01:33:33 -06001860 if (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001861 {
1862 if (is_nonblocking)
1863 {
1864 svm_fifo_unset_event (rx_fifo);
Florin Corasaa27eb92018-10-13 12:20:01 -07001865 return VPPCOM_EWOULDBLOCK;
Florin Coras2cba8532018-09-11 16:33:36 -07001866 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001867 while (svm_fifo_is_empty_cons (rx_fifo))
Florin Coras2cba8532018-09-11 16:33:36 -07001868 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001869 if (vcl_session_is_closing (s))
1870 return vcl_session_closing_error (s);
1871
Florin Coras2cba8532018-09-11 16:33:36 -07001872 svm_fifo_unset_event (rx_fifo);
1873 svm_msg_q_lock (mq);
1874 if (svm_msg_q_is_empty (mq))
1875 svm_msg_q_wait (mq);
1876
1877 svm_msg_q_sub_w_lock (mq, &msg);
1878 e = svm_msg_q_msg_data (mq, &msg);
1879 svm_msg_q_unlock (mq);
1880 if (!vcl_is_rx_evt_for_session (e, s->session_index, is_ct))
Florin Coras05ce4b82018-12-15 18:30:43 -08001881 vcl_handle_mq_event (wrk, e);
Florin Coras2cba8532018-09-11 16:33:36 -07001882 svm_msg_q_free_msg (mq, &msg);
Florin Coras2cba8532018-09-11 16:33:36 -07001883 }
1884 }
1885
Florin Coras88001c62019-04-24 14:44:46 -07001886 n_read = svm_fifo_segments (rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001887 svm_fifo_unset_event (rx_fifo);
1888
Florin Coras2cba8532018-09-11 16:33:36 -07001889 return n_read;
1890}
1891
1892void
1893vppcom_session_free_segments (uint32_t session_handle,
1894 vppcom_data_segments_t ds)
1895{
1896 vcl_worker_t *wrk = vcl_worker_get_current ();
1897 vcl_session_t *s;
1898
1899 s = vcl_session_get_w_handle (wrk, session_handle);
1900 if (PREDICT_FALSE (!s || s->is_vep))
1901 return;
1902
Florin Coras88001c62019-04-24 14:44:46 -07001903 svm_fifo_segments_free (s->rx_fifo, (svm_fifo_seg_t *) ds);
Florin Coras2cba8532018-09-11 16:33:36 -07001904}
1905
Florin Coras2cba8532018-09-11 16:33:36 -07001906int
1907vppcom_data_segment_copy (void *buf, vppcom_data_segments_t ds, u32 max_bytes)
1908{
1909 u32 first_copy = clib_min (ds[0].len, max_bytes);
Dave Barach178cf492018-11-13 16:34:13 -05001910 clib_memcpy_fast (buf, ds[0].data, first_copy);
Florin Coras2cba8532018-09-11 16:33:36 -07001911 if (first_copy < max_bytes)
1912 {
Dave Barach178cf492018-11-13 16:34:13 -05001913 clib_memcpy_fast (buf + first_copy, ds[1].data,
1914 clib_min (ds[1].len, max_bytes - first_copy));
Florin Coras2cba8532018-09-11 16:33:36 -07001915 }
1916 return 0;
1917}
1918
Florin Coras54693d22018-07-17 10:46:29 -07001919static u8
1920vcl_is_tx_evt_for_session (session_event_t * e, u32 sid, u8 is_ct)
1921{
Florin Corasc0737e92019-03-04 14:19:39 -08001922 return (e->event_type == SESSION_IO_EVT_TX && e->session_index == sid);
Dave Wallace543852a2017-08-03 02:11:34 -04001923}
1924
Florin Coras42ceddb2018-12-12 10:56:01 -08001925static inline int
1926vppcom_session_write_inline (uint32_t session_handle, void *buf, size_t n,
1927 u8 is_flush)
Dave Wallace543852a2017-08-03 02:11:34 -04001928{
Florin Coras134a9962018-08-28 11:32:04 -07001929 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras6d0106e2019-01-29 20:11:58 -08001930 int n_write, is_nonblocking;
Florin Coras460dce62018-07-27 05:45:06 -07001931 vcl_session_t *s = 0;
Florin Coras460dce62018-07-27 05:45:06 -07001932 session_evt_type_t et;
Florin Coras54693d22018-07-17 10:46:29 -07001933 svm_msg_q_msg_t msg;
Florin Coras14ed6df2019-03-06 21:13:42 -08001934 svm_fifo_t *tx_fifo;
Florin Coras54693d22018-07-17 10:46:29 -07001935 session_event_t *e;
Florin Coras3c2fed52018-07-04 04:15:05 -07001936 svm_msg_q_t *mq;
Florin Coras0e88e852018-09-17 22:09:02 -07001937 u8 is_ct;
Dave Wallace543852a2017-08-03 02:11:34 -04001938
jiangxiaomingff31ac62019-11-21 23:34:56 +08001939 if (PREDICT_FALSE (!buf || n == 0))
Florin Coras070453d2018-08-24 17:04:27 -07001940 return VPPCOM_EINVAL;
Dave Wallace543852a2017-08-03 02:11:34 -04001941
Florin Coras134a9962018-08-28 11:32:04 -07001942 s = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001943 if (PREDICT_FALSE (!s))
1944 return VPPCOM_EBADFD;
Dave Wallace4878cbe2017-11-21 03:45:09 -05001945
Florin Coras460dce62018-07-27 05:45:06 -07001946 if (PREDICT_FALSE (s->is_vep))
Dave Wallace543852a2017-08-03 02:11:34 -04001947 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001948 VDBG (0, "ERROR: session %u [0x%llx]: cannot write to an epoll"
1949 " session!", s->session_index, s->vpp_handle);
Florin Coras070453d2018-08-24 17:04:27 -07001950 return VPPCOM_EBADFD;
Dave Wallace543852a2017-08-03 02:11:34 -04001951 }
1952
Florin Coras6d0106e2019-01-29 20:11:58 -08001953 if (PREDICT_FALSE (!vcl_session_is_open (s)))
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001954 {
Florin Coras6d0106e2019-01-29 20:11:58 -08001955 VDBG (1, "session %u [0x%llx]: is not open! state 0x%x (%s)",
1956 s->session_index, s->vpp_handle, s->session_state,
1957 vppcom_session_state_str (s->session_state));
1958 return vcl_session_closed_error (s);;
Dave Wallace9c4b5b22017-10-18 21:15:48 -04001959 }
1960
Florin Coras0e88e852018-09-17 22:09:02 -07001961 is_ct = vcl_session_is_ct (s);
Florin Coras653e43f2019-03-04 10:56:23 -08001962 tx_fifo = is_ct ? s->ct_tx_fifo : s->tx_fifo;
Florin Coras0e88e852018-09-17 22:09:02 -07001963 is_nonblocking = VCL_SESS_ATTR_TEST (s->attr, VCL_SESS_ATTR_NONBLOCK);
Sirshak Das28aa5392019-02-05 01:33:33 -06001964
Florin Coras653e43f2019-03-04 10:56:23 -08001965 mq = wrk->app_event_queue;
Sirshak Das28aa5392019-02-05 01:33:33 -06001966 if (svm_fifo_is_full_prod (tx_fifo))
Dave Wallace543852a2017-08-03 02:11:34 -04001967 {
Florin Coras54693d22018-07-17 10:46:29 -07001968 if (is_nonblocking)
1969 {
Florin Coras070453d2018-08-24 17:04:27 -07001970 return VPPCOM_EWOULDBLOCK;
Florin Coras54693d22018-07-17 10:46:29 -07001971 }
Sirshak Das28aa5392019-02-05 01:33:33 -06001972 while (svm_fifo_is_full_prod (tx_fifo))
Florin Coras54693d22018-07-17 10:46:29 -07001973 {
Florin Coras2d379d82019-06-28 12:45:12 -07001974 svm_fifo_add_want_deq_ntf (tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras6d0106e2019-01-29 20:11:58 -08001975 if (vcl_session_is_closing (s))
1976 return vcl_session_closing_error (s);
Florin Coras99368312018-08-02 10:45:44 -07001977 svm_msg_q_lock (mq);
Florin Corasaa27eb92018-10-13 12:20:01 -07001978 if (svm_msg_q_is_empty (mq))
1979 svm_msg_q_wait (mq);
Florin Coras0e88e852018-09-17 22:09:02 -07001980
Florin Coras54693d22018-07-17 10:46:29 -07001981 svm_msg_q_sub_w_lock (mq, &msg);
1982 e = svm_msg_q_msg_data (mq, &msg);
Florin Coras99368312018-08-02 10:45:44 -07001983 svm_msg_q_unlock (mq);
1984
Florin Coras0e88e852018-09-17 22:09:02 -07001985 if (!vcl_is_tx_evt_for_session (e, s->session_index, is_ct))
Florin Coras86f04502018-09-12 16:08:01 -07001986 vcl_handle_mq_event (wrk, e);
Florin Coras54693d22018-07-17 10:46:29 -07001987 svm_msg_q_free_msg (mq, &msg);
Florin Coras54693d22018-07-17 10:46:29 -07001988 }
Dave Wallace543852a2017-08-03 02:11:34 -04001989 }
Dave Wallace543852a2017-08-03 02:11:34 -04001990
Florin Coras653e43f2019-03-04 10:56:23 -08001991 et = SESSION_IO_EVT_TX;
1992 if (is_flush && !is_ct)
Florin Coras42ceddb2018-12-12 10:56:01 -08001993 et = SESSION_IO_EVT_TX_FLUSH;
1994
Florin Coras460dce62018-07-27 05:45:06 -07001995 if (s->is_dgram)
1996 n_write = app_send_dgram_raw (tx_fifo, &s->transport,
Florin Coras653e43f2019-03-04 10:56:23 -08001997 s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08001998 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras460dce62018-07-27 05:45:06 -07001999 else
2000 n_write = app_send_stream_raw (tx_fifo, s->vpp_evt_q, buf, n, et,
Florin Coras14ed6df2019-03-06 21:13:42 -08002001 0 /* do_evt */ , SVM_Q_WAIT);
Florin Coras653e43f2019-03-04 10:56:23 -08002002
Florin Coras14ed6df2019-03-06 21:13:42 -08002003 if (svm_fifo_set_event (s->tx_fifo))
Florin Corasc0737e92019-03-04 14:19:39 -08002004 app_send_io_evt_to_vpp (s->vpp_evt_q, s->tx_fifo->master_session_index,
2005 et, SVM_Q_WAIT);
Keith Burns (alagalah)410bcca2018-03-23 13:42:49 -07002006
Florin Coras460dce62018-07-27 05:45:06 -07002007 ASSERT (n_write > 0);
Dave Wallace543852a2017-08-03 02:11:34 -04002008
Florin Coras6d0106e2019-01-29 20:11:58 -08002009 VDBG (2, "session %u [0x%llx]: wrote %d bytes", s->session_index,
2010 s->vpp_handle, n_write);
Florin Coras0e88e852018-09-17 22:09:02 -07002011
Florin Coras54693d22018-07-17 10:46:29 -07002012 return n_write;
Dave Wallace543852a2017-08-03 02:11:34 -04002013}
2014
Florin Coras42ceddb2018-12-12 10:56:01 -08002015int
2016vppcom_session_write (uint32_t session_handle, void *buf, size_t n)
2017{
2018 return vppcom_session_write_inline (session_handle, buf, n,
2019 0 /* is_flush */ );
2020}
2021
Florin Corasb0f662f2018-12-27 14:51:46 -08002022int
2023vppcom_session_write_msg (uint32_t session_handle, void *buf, size_t n)
2024{
2025 return vppcom_session_write_inline (session_handle, buf, n,
2026 1 /* is_flush */ );
2027}
2028
Florin Corasc0737e92019-03-04 14:19:39 -08002029#define vcl_fifo_rx_evt_valid_or_break(_s) \
Florin Corasbd52e462019-10-28 13:22:37 -07002030if (PREDICT_FALSE (!_s->rx_fifo)) \
2031 break; \
Florin Corasc0737e92019-03-04 14:19:39 -08002032if (PREDICT_FALSE (svm_fifo_is_empty (_s->rx_fifo))) \
2033 { \
2034 if (!vcl_session_is_ct (_s)) \
2035 { \
2036 svm_fifo_unset_event (_s->rx_fifo); \
2037 if (svm_fifo_is_empty (_s->rx_fifo)) \
2038 break; \
2039 } \
2040 else if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2041 { \
2042 svm_fifo_unset_event (_s->ct_rx_fifo); \
2043 if (svm_fifo_is_empty (_s->ct_rx_fifo)) \
2044 break; \
2045 } \
2046 } \
Florin Coras6d4bb422018-09-04 22:07:27 -07002047
Florin Coras86f04502018-09-12 16:08:01 -07002048static void
2049vcl_select_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2050 unsigned long n_bits, unsigned long *read_map,
2051 unsigned long *write_map,
2052 unsigned long *except_map, u32 * bits_set)
Florin Coras54693d22018-07-17 10:46:29 -07002053{
2054 session_disconnected_msg_t *disconnected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002055 session_connected_msg_t *connected_msg;
Florin Coras54693d22018-07-17 10:46:29 -07002056 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002057 u32 sid;
2058
2059 switch (e->event_type)
2060 {
Florin Corasc0737e92019-03-04 14:19:39 -08002061 case SESSION_IO_EVT_RX:
2062 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002063 session = vcl_session_get (wrk, sid);
2064 if (!session)
2065 break;
Florin Corasfff68f72019-03-13 16:01:38 -07002066 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002067 if (sid < n_bits && read_map)
2068 {
David Johnsond9818dd2018-12-14 14:53:41 -05002069 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002070 *bits_set += 1;
2071 }
2072 break;
Florin Corasfe97da32019-03-06 10:09:04 -08002073 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002074 sid = e->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002075 session = vcl_session_get (wrk, sid);
2076 if (!session)
2077 break;
2078 if (sid < n_bits && write_map)
2079 {
David Johnsond9818dd2018-12-14 14:53:41 -05002080 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002081 *bits_set += 1;
2082 }
2083 break;
Florin Coras86f04502018-09-12 16:08:01 -07002084 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002085 session = vcl_session_accepted (wrk,
2086 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002087 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002088 break;
Florin Coras86f04502018-09-12 16:08:01 -07002089 sid = session->session_index;
2090 if (sid < n_bits && read_map)
2091 {
David Johnsond9818dd2018-12-14 14:53:41 -05002092 clib_bitmap_set_no_check ((uword *) read_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002093 *bits_set += 1;
2094 }
2095 break;
2096 case SESSION_CTRL_EVT_CONNECTED:
2097 connected_msg = (session_connected_msg_t *) e->data;
Florin Coras57c88932019-08-29 12:03:17 -07002098 sid = vcl_session_connected_handler (wrk, connected_msg);
2099 if (sid == VCL_INVALID_SESSION_INDEX)
2100 break;
2101 if (sid < n_bits && write_map)
2102 {
2103 clib_bitmap_set_no_check ((uword *) write_map, sid, 1);
2104 *bits_set += 1;
2105 }
Florin Coras86f04502018-09-12 16:08:01 -07002106 break;
2107 case SESSION_CTRL_EVT_DISCONNECTED:
2108 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002109 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2110 if (!session)
2111 break;
2112 sid = session->session_index;
Florin Coras86f04502018-09-12 16:08:01 -07002113 if (sid < n_bits && except_map)
2114 {
David Johnsond9818dd2018-12-14 14:53:41 -05002115 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002116 *bits_set += 1;
2117 }
2118 break;
2119 case SESSION_CTRL_EVT_RESET:
2120 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2121 if (sid < n_bits && except_map)
2122 {
David Johnsond9818dd2018-12-14 14:53:41 -05002123 clib_bitmap_set_no_check ((uword *) except_map, sid, 1);
Florin Coras86f04502018-09-12 16:08:01 -07002124 *bits_set += 1;
2125 }
2126 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002127 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2128 vcl_session_unlisten_reply_handler (wrk, e->data);
2129 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002130 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2131 vcl_session_worker_update_reply_handler (wrk, e->data);
2132 break;
2133 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2134 vcl_session_req_worker_update_handler (wrk, e->data);
2135 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002136 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2137 vcl_session_app_add_segment_handler (wrk, e->data);
2138 break;
2139 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2140 vcl_session_app_del_segment_handler (wrk, e->data);
2141 break;
Florin Coras86f04502018-09-12 16:08:01 -07002142 default:
2143 clib_warning ("unhandled: %u", e->event_type);
2144 break;
2145 }
2146}
2147
2148static int
2149vcl_select_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2150 unsigned long n_bits, unsigned long *read_map,
2151 unsigned long *write_map, unsigned long *except_map,
2152 double time_to_wait, u32 * bits_set)
2153{
Florin Coras99368312018-08-02 10:45:44 -07002154 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002155 session_event_t *e;
Florin Coras86f04502018-09-12 16:08:01 -07002156 u32 i;
Florin Coras54693d22018-07-17 10:46:29 -07002157
2158 svm_msg_q_lock (mq);
2159 if (svm_msg_q_is_empty (mq))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002160 {
Florin Coras54693d22018-07-17 10:46:29 -07002161 if (*bits_set)
Dave Wallace4878cbe2017-11-21 03:45:09 -05002162 {
Florin Coras54693d22018-07-17 10:46:29 -07002163 svm_msg_q_unlock (mq);
2164 return 0;
2165 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002166
Florin Coras54693d22018-07-17 10:46:29 -07002167 if (!time_to_wait)
2168 {
2169 svm_msg_q_unlock (mq);
2170 return 0;
2171 }
2172 else if (time_to_wait < 0)
2173 {
2174 svm_msg_q_wait (mq);
2175 }
2176 else
2177 {
2178 if (svm_msg_q_timedwait (mq, time_to_wait))
2179 {
2180 svm_msg_q_unlock (mq);
2181 return 0;
2182 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002183 }
2184 }
Florin Corase003a1b2019-06-05 10:47:16 -07002185 vcl_mq_dequeue_batch (wrk, mq, ~0);
Florin Coras54693d22018-07-17 10:46:29 -07002186 svm_msg_q_unlock (mq);
2187
Florin Coras134a9962018-08-28 11:32:04 -07002188 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002189 {
Florin Coras134a9962018-08-28 11:32:04 -07002190 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002191 e = svm_msg_q_msg_data (mq, msg);
Florin Coras86f04502018-09-12 16:08:01 -07002192 vcl_select_handle_mq_event (wrk, e, n_bits, read_map, write_map,
2193 except_map, bits_set);
Florin Coras99368312018-08-02 10:45:44 -07002194 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002195 }
Florin Coras134a9962018-08-28 11:32:04 -07002196 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002197 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002198 return *bits_set;
Dave Wallace543852a2017-08-03 02:11:34 -04002199}
2200
Florin Coras99368312018-08-02 10:45:44 -07002201static int
Florin Coras294afe22019-01-07 17:49:17 -08002202vppcom_select_condvar (vcl_worker_t * wrk, int n_bits,
2203 vcl_si_set * read_map, vcl_si_set * write_map,
2204 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002205 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002206{
Florin Coras14ed6df2019-03-06 21:13:42 -08002207 double wait = 0, start = 0;
2208
2209 if (!*bits_set)
2210 {
2211 wait = time_to_wait;
2212 start = clib_time_now (&wrk->clib_time);
2213 }
2214
2215 do
2216 {
2217 vcl_select_handle_mq (wrk, wrk->app_event_queue, n_bits, read_map,
2218 write_map, except_map, wait, bits_set);
2219 if (*bits_set)
2220 return *bits_set;
2221 if (wait == -1)
2222 continue;
2223
2224 wait = wait - (clib_time_now (&wrk->clib_time) - start);
2225 }
2226 while (wait > 0);
2227
2228 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002229}
2230
2231static int
Florin Coras294afe22019-01-07 17:49:17 -08002232vppcom_select_eventfd (vcl_worker_t * wrk, int n_bits,
2233 vcl_si_set * read_map, vcl_si_set * write_map,
2234 vcl_si_set * except_map, double time_to_wait,
Florin Coras134a9962018-08-28 11:32:04 -07002235 u32 * bits_set)
Florin Coras99368312018-08-02 10:45:44 -07002236{
2237 vcl_mq_evt_conn_t *mqc;
2238 int __clib_unused n_read;
2239 int n_mq_evts, i;
2240 u64 buf;
2241
Florin Coras134a9962018-08-28 11:32:04 -07002242 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
2243 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2244 vec_len (wrk->mq_events), time_to_wait);
Florin Coras99368312018-08-02 10:45:44 -07002245 for (i = 0; i < n_mq_evts; i++)
2246 {
Florin Coras134a9962018-08-28 11:32:04 -07002247 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002248 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002249 vcl_select_handle_mq (wrk, mqc->mq, n_bits, read_map, write_map,
Florin Coras99368312018-08-02 10:45:44 -07002250 except_map, 0, bits_set);
2251 }
2252
2253 return (n_mq_evts > 0 ? (int) *bits_set : 0);
2254}
2255
Dave Wallace543852a2017-08-03 02:11:34 -04002256int
Florin Coras294afe22019-01-07 17:49:17 -08002257vppcom_select (int n_bits, vcl_si_set * read_map, vcl_si_set * write_map,
2258 vcl_si_set * except_map, double time_to_wait)
Dave Wallace543852a2017-08-03 02:11:34 -04002259{
Florin Coras54693d22018-07-17 10:46:29 -07002260 u32 sid, minbits = clib_max (n_bits, BITS (uword)), bits_set = 0;
Florin Coras134a9962018-08-28 11:32:04 -07002261 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002262 vcl_session_t *session = 0;
Florin Coras86f04502018-09-12 16:08:01 -07002263 int rv, i;
Dave Wallace543852a2017-08-03 02:11:34 -04002264
Dave Wallace7876d392017-10-19 03:53:57 -04002265 if (n_bits && read_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002266 {
Florin Coras134a9962018-08-28 11:32:04 -07002267 clib_bitmap_validate (wrk->rd_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002268 clib_memcpy_fast (wrk->rd_bitmap, read_map,
Florin Coras294afe22019-01-07 17:49:17 -08002269 vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
2270 memset (read_map, 0, vec_len (wrk->rd_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002271 }
Dave Wallace7876d392017-10-19 03:53:57 -04002272 if (n_bits && write_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002273 {
Florin Coras134a9962018-08-28 11:32:04 -07002274 clib_bitmap_validate (wrk->wr_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002275 clib_memcpy_fast (wrk->wr_bitmap, write_map,
Florin Coras294afe22019-01-07 17:49:17 -08002276 vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
2277 memset (write_map, 0, vec_len (wrk->wr_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002278 }
Dave Wallace7876d392017-10-19 03:53:57 -04002279 if (n_bits && except_map)
Dave Wallace543852a2017-08-03 02:11:34 -04002280 {
Florin Coras134a9962018-08-28 11:32:04 -07002281 clib_bitmap_validate (wrk->ex_bitmap, minbits);
Dave Barach178cf492018-11-13 16:34:13 -05002282 clib_memcpy_fast (wrk->ex_bitmap, except_map,
Florin Coras294afe22019-01-07 17:49:17 -08002283 vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
2284 memset (except_map, 0, vec_len (wrk->ex_bitmap) * sizeof (vcl_si_set));
Dave Wallace543852a2017-08-03 02:11:34 -04002285 }
2286
Florin Coras54693d22018-07-17 10:46:29 -07002287 if (!n_bits)
2288 return 0;
2289
2290 if (!write_map)
2291 goto check_rd;
2292
2293 /* *INDENT-OFF* */
Florin Coras134a9962018-08-28 11:32:04 -07002294 clib_bitmap_foreach (sid, wrk->wr_bitmap, ({
2295 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002296 {
Florin Coras47c40e22018-11-26 17:01:36 -08002297 if (except_map && sid < minbits)
2298 clib_bitmap_set_no_check (except_map, sid, 1);
2299 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002300 }
2301
Sirshak Das28aa5392019-02-05 01:33:33 -06002302 rv = svm_fifo_is_full_prod (session->tx_fifo);
Florin Coras54693d22018-07-17 10:46:29 -07002303 if (!rv)
2304 {
David Johnsond9818dd2018-12-14 14:53:41 -05002305 clib_bitmap_set_no_check ((uword*)write_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002306 bits_set++;
2307 }
Florin Coras294afe22019-01-07 17:49:17 -08002308 else
Florin Coras2d379d82019-06-28 12:45:12 -07002309 svm_fifo_add_want_deq_ntf (session->tx_fifo, SVM_FIFO_WANT_DEQ_NOTIF);
Florin Coras54693d22018-07-17 10:46:29 -07002310 }));
2311
2312check_rd:
2313 if (!read_map)
2314 goto check_mq;
Florin Coras99368312018-08-02 10:45:44 -07002315
Florin Coras134a9962018-08-28 11:32:04 -07002316 clib_bitmap_foreach (sid, wrk->rd_bitmap, ({
2317 if (!(session = vcl_session_get (wrk, sid)))
Florin Coras54693d22018-07-17 10:46:29 -07002318 {
Florin Coras47c40e22018-11-26 17:01:36 -08002319 if (except_map && sid < minbits)
2320 clib_bitmap_set_no_check (except_map, sid, 1);
2321 continue;
Florin Coras54693d22018-07-17 10:46:29 -07002322 }
2323
Florin Coras0ef8ef22019-01-18 08:37:13 -08002324 rv = vcl_session_read_ready (session);
Florin Coras54693d22018-07-17 10:46:29 -07002325 if (rv)
2326 {
David Johnsond9818dd2018-12-14 14:53:41 -05002327 clib_bitmap_set_no_check ((uword*)read_map, sid, 1);
Florin Coras54693d22018-07-17 10:46:29 -07002328 bits_set++;
2329 }
2330 }));
2331 /* *INDENT-ON* */
2332
2333check_mq:
Dave Wallace543852a2017-08-03 02:11:34 -04002334
Florin Coras86f04502018-09-12 16:08:01 -07002335 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2336 {
2337 vcl_select_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i], n_bits,
2338 read_map, write_map, except_map, &bits_set);
2339 }
2340 vec_reset_length (wrk->unhandled_evts_vector);
2341
Florin Coras99368312018-08-02 10:45:44 -07002342 if (vcm->cfg.use_mq_eventfd)
Florin Coras134a9962018-08-28 11:32:04 -07002343 vppcom_select_eventfd (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002344 time_to_wait, &bits_set);
2345 else
Florin Coras134a9962018-08-28 11:32:04 -07002346 vppcom_select_condvar (wrk, n_bits, read_map, write_map, except_map,
Florin Coras99368312018-08-02 10:45:44 -07002347 time_to_wait, &bits_set);
Florin Coras54693d22018-07-17 10:46:29 -07002348
Dave Wallace543852a2017-08-03 02:11:34 -04002349 return (bits_set);
2350}
2351
Dave Wallacef7f809c2017-10-03 01:48:42 -04002352static inline void
Florin Coras7e5e62b2019-07-30 14:08:23 -07002353vep_verify_epoll_chain (vcl_worker_t * wrk, u32 vep_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002354{
Florin Coras7e12d942018-06-27 14:32:43 -07002355 vcl_session_t *session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002356 vppcom_epoll_t *vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002357 u32 sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002358
Florin Corasc0737e92019-03-04 14:19:39 -08002359 if (VPPCOM_DEBUG <= 2)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002360 return;
2361
Florin Coras7e5e62b2019-07-30 14:08:23 -07002362 session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002363 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002364 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002365 VDBG (0, "ERROR: Invalid vep_sh (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002366 goto done;
2367 }
2368 if (PREDICT_FALSE (!session->is_vep))
2369 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002370 VDBG (0, "ERROR: vep_sh (%u) is not a vep!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002371 goto done;
2372 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002373 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002374 VDBG (0, "vep_sh (%u): Dumping epoll chain\n"
Florin Coras5e062572019-03-14 19:07:51 -07002375 "{\n"
2376 " is_vep = %u\n"
2377 " is_vep_session = %u\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002378 " next_sh = 0x%x (%u)\n"
2379 "}\n", vep_handle, session->is_vep, session->is_vep_session,
Florin Coras5e062572019-03-14 19:07:51 -07002380 vep->next_sh, vep->next_sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002381
Florin Coras7e5e62b2019-07-30 14:08:23 -07002382 for (sh = vep->next_sh; sh != ~0; sh = vep->next_sh)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002383 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002384 session = vcl_session_get_w_handle (wrk, sh);
Florin Coras070453d2018-08-24 17:04:27 -07002385 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002386 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002387 VDBG (0, "ERROR: Invalid sh (%u)!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002388 goto done;
2389 }
2390 if (PREDICT_FALSE (session->is_vep))
Florin Coras5e062572019-03-14 19:07:51 -07002391 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002392 VDBG (0, "ERROR: sh (%u) is a vep!", vep_handle);
Florin Coras5e062572019-03-14 19:07:51 -07002393 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002394 else if (PREDICT_FALSE (!session->is_vep_session))
2395 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002396 VDBG (0, "ERROR: sh (%u) is not a vep session handle!", sh);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002397 goto done;
2398 }
2399 vep = &session->vep;
Florin Coras7e5e62b2019-07-30 14:08:23 -07002400 if (PREDICT_FALSE (vep->vep_sh != vep_handle))
2401 VDBG (0, "ERROR: session (%u) vep_sh (%u) != vep_sh (%u)!",
2402 sh, session->vep.vep_sh, vep_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002403 if (session->is_vep_session)
2404 {
Florin Coras7e5e62b2019-07-30 14:08:23 -07002405 VDBG (0, "vep_sh[%u]: sh 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002406 "{\n"
Florin Coras7e5e62b2019-07-30 14:08:23 -07002407 " next_sh = 0x%x (%u)\n"
2408 " prev_sh = 0x%x (%u)\n"
2409 " vep_sh = 0x%x (%u)\n"
Florin Coras5e062572019-03-14 19:07:51 -07002410 " ev.events = 0x%x\n"
2411 " ev.data.u64 = 0x%llx\n"
2412 " et_mask = 0x%x\n"
2413 "}\n",
Florin Coras7e5e62b2019-07-30 14:08:23 -07002414 vep_handle, sh, sh, vep->next_sh, vep->next_sh, vep->prev_sh,
Florin Coras5e062572019-03-14 19:07:51 -07002415 vep->prev_sh, vep->vep_sh, vep->vep_sh, vep->ev.events,
2416 vep->ev.data.u64, vep->et_mask);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002417 }
2418 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002419
2420done:
Florin Coras7e5e62b2019-07-30 14:08:23 -07002421 VDBG (0, "vep_sh (%u): Dump complete!\n", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002422}
2423
2424int
2425vppcom_epoll_create (void)
2426{
Florin Coras134a9962018-08-28 11:32:04 -07002427 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002428 vcl_session_t *vep_session;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002429
Florin Coras134a9962018-08-28 11:32:04 -07002430 vep_session = vcl_session_alloc (wrk);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002431
2432 vep_session->is_vep = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002433 vep_session->vep.vep_sh = ~0;
2434 vep_session->vep.next_sh = ~0;
2435 vep_session->vep.prev_sh = ~0;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002436 vep_session->vpp_handle = ~0;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002437
Florin Corasa7a1a222018-12-30 17:11:31 -08002438 vcl_evt (VCL_EVT_EPOLL_CREATE, vep_session, vep_session->session_index);
2439 VDBG (0, "Created vep_idx %u", vep_session->session_index);
Keith Burns (alagalah)09b27842018-01-05 14:39:59 -08002440
Florin Corasab2f6db2018-08-31 14:31:41 -07002441 return vcl_session_handle (vep_session);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002442}
2443
2444int
Florin Coras134a9962018-08-28 11:32:04 -07002445vppcom_epoll_ctl (uint32_t vep_handle, int op, uint32_t session_handle,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002446 struct epoll_event *event)
2447{
Florin Coras134a9962018-08-28 11:32:04 -07002448 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002449 vcl_session_t *vep_session;
2450 vcl_session_t *session;
Florin Coras070453d2018-08-24 17:04:27 -07002451 int rv = VPPCOM_OK;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002452
Florin Coras134a9962018-08-28 11:32:04 -07002453 if (vep_handle == session_handle)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002454 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002455 VDBG (0, "vep_sh == session handle (%u)!", vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002456 return VPPCOM_EINVAL;
2457 }
2458
Florin Coras134a9962018-08-28 11:32:04 -07002459 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002460 if (PREDICT_FALSE (!vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002461 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002462 VDBG (0, "Invalid vep_sh (%u)!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002463 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002464 }
2465 if (PREDICT_FALSE (!vep_session->is_vep))
2466 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002467 VDBG (0, "vep_sh (%u) is not a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002468 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002469 }
2470
Florin Coras134a9962018-08-28 11:32:04 -07002471 ASSERT (vep_session->vep.vep_sh == ~0);
2472 ASSERT (vep_session->vep.prev_sh == ~0);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002473
Florin Coras134a9962018-08-28 11:32:04 -07002474 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002475 if (PREDICT_FALSE (!session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002476 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002477 VDBG (0, "Invalid session_handle (%u)!", session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002478 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002479 }
2480 if (PREDICT_FALSE (session->is_vep))
2481 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002482 VDBG (0, "session_handle (%u) is a vep!", vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002483 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002484 }
2485
2486 switch (op)
2487 {
2488 case EPOLL_CTL_ADD:
2489 if (PREDICT_FALSE (!event))
2490 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002491 VDBG (0, "EPOLL_CTL_ADD: NULL pointer to epoll_event structure!");
Florin Coras070453d2018-08-24 17:04:27 -07002492 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002493 }
Florin Coras134a9962018-08-28 11:32:04 -07002494 if (vep_session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002495 {
Florin Coras7e12d942018-06-27 14:32:43 -07002496 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002497 next_session = vcl_session_get_w_handle (wrk,
2498 vep_session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002499 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002500 {
Florin Coras5e062572019-03-14 19:07:51 -07002501 VDBG (0, "EPOLL_CTL_ADD: Invalid vep.next_sh (%u) on "
Florin Corasa7a1a222018-12-30 17:11:31 -08002502 "vep_idx (%u)!", vep_session->vep.next_sh, vep_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002503 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002504 }
Florin Coras134a9962018-08-28 11:32:04 -07002505 ASSERT (next_session->vep.prev_sh == vep_handle);
2506 next_session->vep.prev_sh = session_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002507 }
Florin Coras134a9962018-08-28 11:32:04 -07002508 session->vep.next_sh = vep_session->vep.next_sh;
2509 session->vep.prev_sh = vep_handle;
2510 session->vep.vep_sh = vep_handle;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002511 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2512 session->vep.ev = *event;
Dave Wallace4878cbe2017-11-21 03:45:09 -05002513 session->is_vep = 0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002514 session->is_vep_session = 1;
Florin Coras134a9962018-08-28 11:32:04 -07002515 vep_session->vep.next_sh = session_handle;
Keith Burns (alagalah)3cf2d642018-02-23 10:17:01 -08002516
Florin Coras1bcad5c2019-01-09 20:04:38 -08002517 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002518 svm_fifo_add_want_deq_ntf (session->tx_fifo,
2519 SVM_FIFO_WANT_DEQ_NOTIF_IF_FULL);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002520
Florin Corasa7a1a222018-12-30 17:11:31 -08002521 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2522 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002523 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002524 break;
2525
2526 case EPOLL_CTL_MOD:
2527 if (PREDICT_FALSE (!event))
2528 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002529 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002530 rv = VPPCOM_EINVAL;
2531 goto done;
2532 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002533 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002534 {
Florin Coras5e062572019-03-14 19:07:51 -07002535 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002536 rv = VPPCOM_EINVAL;
2537 goto done;
2538 }
Florin Coras134a9962018-08-28 11:32:04 -07002539 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002540 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002541 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2542 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002543 rv = VPPCOM_EINVAL;
2544 goto done;
2545 }
2546 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2547 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002548 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2549 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002550 break;
2551
2552 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002553 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002554 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002555 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002556 rv = VPPCOM_EINVAL;
2557 goto done;
2558 }
Florin Coras134a9962018-08-28 11:32:04 -07002559 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002560 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002561 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2562 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002563 rv = VPPCOM_EINVAL;
2564 goto done;
2565 }
2566
Florin Coras134a9962018-08-28 11:32:04 -07002567 if (session->vep.prev_sh == vep_handle)
2568 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002569 else
2570 {
Florin Coras7e12d942018-06-27 14:32:43 -07002571 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002572 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002573 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002574 {
Florin Coras5e062572019-03-14 19:07:51 -07002575 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002576 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002577 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002578 }
Florin Coras134a9962018-08-28 11:32:04 -07002579 ASSERT (prev_session->vep.next_sh == session_handle);
2580 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002581 }
Florin Coras134a9962018-08-28 11:32:04 -07002582 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002583 {
Florin Coras7e12d942018-06-27 14:32:43 -07002584 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002585 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002586 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002587 {
Florin Coras5e062572019-03-14 19:07:51 -07002588 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002589 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002590 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591 }
Florin Coras134a9962018-08-28 11:32:04 -07002592 ASSERT (next_session->vep.prev_sh == session_handle);
2593 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002594 }
2595
2596 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002597 session->vep.next_sh = ~0;
2598 session->vep.prev_sh = ~0;
2599 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002600 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002601
2602 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002603 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002604
Florin Coras5e062572019-03-14 19:07:51 -07002605 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002606 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002607 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002608 break;
2609
2610 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002611 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002612 rv = VPPCOM_EINVAL;
2613 }
2614
Florin Coras134a9962018-08-28 11:32:04 -07002615 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002616
2617done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002618 return rv;
2619}
2620
Florin Coras86f04502018-09-12 16:08:01 -07002621static inline void
2622vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2623 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002624{
2625 session_disconnected_msg_t *disconnected_msg;
2626 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002627 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002628 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002629 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002630 u8 add_event = 0;
2631
2632 switch (e->event_type)
2633 {
Florin Coras653e43f2019-03-04 10:56:23 -08002634 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002635 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002636 if (!(session = vcl_session_get (wrk, sid)))
2637 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002638 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002639 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002640 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002641 break;
2642 add_event = 1;
2643 events[*num_ev].events |= EPOLLIN;
2644 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002645 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002646 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002647 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002648 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002649 if (!(session = vcl_session_get (wrk, sid)))
2650 break;
Florin Coras86f04502018-09-12 16:08:01 -07002651 session_events = session->vep.ev.events;
2652 if (!(EPOLLOUT & session_events))
2653 break;
2654 add_event = 1;
2655 events[*num_ev].events |= EPOLLOUT;
2656 session_evt_data = session->vep.ev.data.u64;
Florin Coras2d379d82019-06-28 12:45:12 -07002657 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002658 break;
Florin Coras86f04502018-09-12 16:08:01 -07002659 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002660 session = vcl_session_accepted (wrk,
2661 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002662 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002663 break;
Florin Coras86f04502018-09-12 16:08:01 -07002664
Florin Coras86f04502018-09-12 16:08:01 -07002665 session_events = session->vep.ev.events;
2666 if (!(EPOLLIN & session_events))
2667 break;
2668
2669 add_event = 1;
2670 events[*num_ev].events |= EPOLLIN;
2671 session_evt_data = session->vep.ev.data.u64;
2672 break;
2673 case SESSION_CTRL_EVT_CONNECTED:
2674 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002675 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002676 /* Generate EPOLLOUT because there's no connected event */
Florin Corasfa915f82018-12-26 16:29:06 -08002677 if (!(session = vcl_session_get (wrk, sid)))
2678 break;
Florin Coras86f04502018-09-12 16:08:01 -07002679 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002680 if (!(EPOLLOUT & session_events))
2681 break;
2682 add_event = 1;
2683 events[*num_ev].events |= EPOLLOUT;
2684 session_evt_data = session->vep.ev.data.u64;
Florin Corasdbc9c592019-09-25 16:37:43 -07002685 if (session->session_state & STATE_FAILED)
2686 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002687 break;
2688 case SESSION_CTRL_EVT_DISCONNECTED:
2689 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002690 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2691 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002692 break;
Florin Coras72f77822019-01-22 19:05:52 -08002693 session_events = session->vep.ev.events;
2694 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2695 break;
Florin Coras86f04502018-09-12 16:08:01 -07002696 add_event = 1;
2697 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2698 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002699 break;
2700 case SESSION_CTRL_EVT_RESET:
2701 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2702 if (!(session = vcl_session_get (wrk, sid)))
2703 break;
Florin Coras72f77822019-01-22 19:05:52 -08002704 session_events = session->vep.ev.events;
2705 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2706 break;
Florin Coras86f04502018-09-12 16:08:01 -07002707 add_event = 1;
2708 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2709 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002710 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002711 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2712 vcl_session_unlisten_reply_handler (wrk, e->data);
2713 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002714 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2715 vcl_session_req_worker_update_handler (wrk, e->data);
2716 break;
2717 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2718 vcl_session_worker_update_reply_handler (wrk, e->data);
2719 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002720 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2721 vcl_session_app_add_segment_handler (wrk, e->data);
2722 break;
2723 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2724 vcl_session_app_del_segment_handler (wrk, e->data);
2725 break;
Florin Coras86f04502018-09-12 16:08:01 -07002726 default:
2727 VDBG (0, "unhandled: %u", e->event_type);
2728 break;
2729 }
2730
2731 if (add_event)
2732 {
2733 events[*num_ev].data.u64 = session_evt_data;
2734 if (EPOLLONESHOT & session_events)
2735 {
2736 session = vcl_session_get (wrk, sid);
2737 session->vep.ev.events = 0;
2738 }
2739 *num_ev += 1;
2740 }
2741}
2742
2743static int
2744vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2745 struct epoll_event *events, u32 maxevents,
2746 double wait_for_time, u32 * num_ev)
2747{
Florin Coras99368312018-08-02 10:45:44 -07002748 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002749 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002750 int i;
2751
Florin Coras539663c2018-09-28 14:59:37 -07002752 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2753 goto handle_dequeued;
2754
Florin Coras54693d22018-07-17 10:46:29 -07002755 svm_msg_q_lock (mq);
2756 if (svm_msg_q_is_empty (mq))
2757 {
2758 if (!wait_for_time)
2759 {
2760 svm_msg_q_unlock (mq);
2761 return 0;
2762 }
2763 else if (wait_for_time < 0)
2764 {
2765 svm_msg_q_wait (mq);
2766 }
2767 else
2768 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002769 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002770 {
2771 svm_msg_q_unlock (mq);
2772 return 0;
2773 }
2774 }
2775 }
Florin Corase003a1b2019-06-05 10:47:16 -07002776 ASSERT (maxevents > *num_ev);
2777 vcl_mq_dequeue_batch (wrk, mq, maxevents - *num_ev);
Florin Coras54693d22018-07-17 10:46:29 -07002778 svm_msg_q_unlock (mq);
2779
Florin Coras539663c2018-09-28 14:59:37 -07002780handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002781 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002782 {
Florin Coras134a9962018-08-28 11:32:04 -07002783 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002784 e = svm_msg_q_msg_data (mq, msg);
Florin Corase003a1b2019-06-05 10:47:16 -07002785 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
Florin Coras99368312018-08-02 10:45:44 -07002786 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002787 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002788 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002789 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002790 return *num_ev;
2791}
2792
Florin Coras99368312018-08-02 10:45:44 -07002793static int
Florin Coras134a9962018-08-28 11:32:04 -07002794vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002795 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002796{
Florin Corase003a1b2019-06-05 10:47:16 -07002797 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002798
2799 if (!n_evts)
2800 {
2801 wait = wait_for_time;
2802 start = clib_time_now (&wrk->clib_time);
2803 }
2804
2805 do
2806 {
2807 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2808 wait, &n_evts);
2809 if (n_evts)
2810 return n_evts;
2811 if (wait == -1)
2812 continue;
2813
Florin Corase003a1b2019-06-05 10:47:16 -07002814 now = clib_time_now (&wrk->clib_time);
2815 wait -= now - start;
2816 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002817 }
2818 while (wait > 0);
2819
2820 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002821}
2822
2823static int
Florin Coras134a9962018-08-28 11:32:04 -07002824vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002825 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002826{
2827 vcl_mq_evt_conn_t *mqc;
2828 int __clib_unused n_read;
2829 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002830 u64 buf;
2831
Florin Coras134a9962018-08-28 11:32:04 -07002832 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002833again:
Florin Coras134a9962018-08-28 11:32:04 -07002834 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2835 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002836 for (i = 0; i < n_mq_evts; i++)
2837 {
Florin Coras134a9962018-08-28 11:32:04 -07002838 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002839 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002840 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002841 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002842 if (!n_evts && n_mq_evts > 0)
2843 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002844
2845 return (int) n_evts;
2846}
2847
Dave Wallacef7f809c2017-10-03 01:48:42 -04002848int
Florin Coras134a9962018-08-28 11:32:04 -07002849vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002850 int maxevents, double wait_for_time)
2851{
Florin Coras134a9962018-08-28 11:32:04 -07002852 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002853 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002854 u32 n_evts = 0;
2855 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002856
2857 if (PREDICT_FALSE (maxevents <= 0))
2858 {
Florin Coras5e062572019-03-14 19:07:51 -07002859 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002860 return VPPCOM_EINVAL;
2861 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002862
Florin Coras134a9962018-08-28 11:32:04 -07002863 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002864 if (!vep_session)
2865 return VPPCOM_EBADFD;
2866
Florin Coras54693d22018-07-17 10:46:29 -07002867 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002868 {
Florin Coras5e062572019-03-14 19:07:51 -07002869 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002870 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002871 }
Florin Coras54693d22018-07-17 10:46:29 -07002872
2873 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002874
Florin Coras86f04502018-09-12 16:08:01 -07002875 if (vec_len (wrk->unhandled_evts_vector))
2876 {
2877 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2878 {
2879 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2880 events, &n_evts);
2881 if (n_evts == maxevents)
2882 {
Florin Corase003a1b2019-06-05 10:47:16 -07002883 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
2884 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07002885 }
2886 }
Florin Corase003a1b2019-06-05 10:47:16 -07002887 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002888 }
2889
2890 if (vcm->cfg.use_mq_eventfd)
2891 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2892 wait_for_time);
2893
2894 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2895 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002896}
2897
Dave Wallace35830af2017-10-09 01:43:42 -04002898int
Florin Coras134a9962018-08-28 11:32:04 -07002899vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002900 void *buffer, uint32_t * buflen)
2901{
Florin Coras134a9962018-08-28 11:32:04 -07002902 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002903 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002904 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08002905 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07002906 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002907
Florin Coras134a9962018-08-28 11:32:04 -07002908 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002909 if (!session)
2910 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002911
Dave Wallace35830af2017-10-09 01:43:42 -04002912 switch (op)
2913 {
2914 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002915 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07002916 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
2917 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002918 break;
2919
Dave Wallace227867f2017-11-13 21:21:53 -05002920 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002921 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07002922 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
2923 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002924 break;
2925
2926 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002927 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002928 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002929 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2930 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002931 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07002932 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
2933 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002934 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002935 }
2936 else
2937 rv = VPPCOM_EINVAL;
2938 break;
2939
2940 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002941 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002942 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002943 if (*flags & O_NONBLOCK)
2944 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2945 else
2946 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2947
Florin Coras5e062572019-03-14 19:07:51 -07002948 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
2949 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002950 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002951 }
2952 else
2953 rv = VPPCOM_EINVAL;
2954 break;
2955
2956 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002957 if (PREDICT_TRUE (buffer && buflen &&
2958 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002959 {
Florin Coras7e12d942018-06-27 14:32:43 -07002960 ep->is_ip4 = session->transport.is_ip4;
2961 ep->port = session->transport.rmt_port;
2962 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002963 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2964 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002965 else
Dave Barach178cf492018-11-13 16:34:13 -05002966 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2967 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002968 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07002969 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
2970 "addr = %U, port %u", session_handle, ep->is_ip4,
2971 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002972 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2973 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002974 }
2975 else
2976 rv = VPPCOM_EINVAL;
2977 break;
2978
2979 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002980 if (PREDICT_TRUE (buffer && buflen &&
2981 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002982 {
Florin Coras7e12d942018-06-27 14:32:43 -07002983 ep->is_ip4 = session->transport.is_ip4;
2984 ep->port = session->transport.lcl_port;
2985 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002986 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
2987 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002988 else
Dave Barach178cf492018-11-13 16:34:13 -05002989 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
2990 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002991 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07002992 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
2993 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07002994 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07002995 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
2996 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04002997 }
2998 else
2999 rv = VPPCOM_EINVAL;
3000 break;
Stevenb5a11602017-10-11 09:59:30 -07003001
Florin Corasef7cbf62019-10-17 09:56:27 -07003002 case VPPCOM_ATTR_SET_LCL_ADDR:
3003 if (PREDICT_TRUE (buffer && buflen &&
3004 (*buflen >= sizeof (*ep)) && ep->ip))
3005 {
3006 session->transport.is_ip4 = ep->is_ip4;
3007 session->transport.lcl_port = ep->port;
3008 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3009 *buflen = sizeof (*ep);
3010 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3011 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3012 &session->transport.lcl_ip,
3013 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3014 clib_net_to_host_u16 (ep->port));
3015 }
3016 else
3017 rv = VPPCOM_EINVAL;
3018 break;
3019
Dave Wallace048b1d62018-01-03 22:24:41 -05003020 case VPPCOM_ATTR_GET_LIBC_EPFD:
3021 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003022 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003023 break;
3024
3025 case VPPCOM_ATTR_SET_LIBC_EPFD:
3026 if (PREDICT_TRUE (buffer && buflen &&
3027 (*buflen == sizeof (session->libc_epfd))))
3028 {
3029 session->libc_epfd = *(int *) buffer;
3030 *buflen = sizeof (session->libc_epfd);
3031
Florin Coras5e062572019-03-14 19:07:51 -07003032 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3033 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003034 }
3035 else
3036 rv = VPPCOM_EINVAL;
3037 break;
3038
3039 case VPPCOM_ATTR_GET_PROTOCOL:
3040 if (buffer && buflen && (*buflen >= sizeof (int)))
3041 {
Florin Coras7e12d942018-06-27 14:32:43 -07003042 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003043 *buflen = sizeof (int);
3044
Florin Coras5e062572019-03-14 19:07:51 -07003045 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3046 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003047 }
3048 else
3049 rv = VPPCOM_EINVAL;
3050 break;
3051
3052 case VPPCOM_ATTR_GET_LISTEN:
3053 if (buffer && buflen && (*buflen >= sizeof (int)))
3054 {
3055 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3056 VCL_SESS_ATTR_LISTEN);
3057 *buflen = sizeof (int);
3058
Florin Coras5e062572019-03-14 19:07:51 -07003059 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3060 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003061 }
3062 else
3063 rv = VPPCOM_EINVAL;
3064 break;
3065
3066 case VPPCOM_ATTR_GET_ERROR:
3067 if (buffer && buflen && (*buflen >= sizeof (int)))
3068 {
3069 *(int *) buffer = 0;
3070 *buflen = sizeof (int);
3071
Florin Coras5e062572019-03-14 19:07:51 -07003072 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3073 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003074 }
3075 else
3076 rv = VPPCOM_EINVAL;
3077 break;
3078
3079 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3080 if (buffer && buflen && (*buflen >= sizeof (u32)))
3081 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003082
3083 /* VPP-TBD */
3084 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003085 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003086 vcm->cfg.tx_fifo_size);
3087 *buflen = sizeof (u32);
3088
Florin Coras5e062572019-03-14 19:07:51 -07003089 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3090 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3091 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003092 }
3093 else
3094 rv = VPPCOM_EINVAL;
3095 break;
3096
3097 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3098 if (buffer && buflen && (*buflen == sizeof (u32)))
3099 {
3100 /* VPP-TBD */
3101 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003102 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3103 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3104 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003105 }
3106 else
3107 rv = VPPCOM_EINVAL;
3108 break;
3109
3110 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3111 if (buffer && buflen && (*buflen >= sizeof (u32)))
3112 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003113
3114 /* VPP-TBD */
3115 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003116 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003117 vcm->cfg.rx_fifo_size);
3118 *buflen = sizeof (u32);
3119
Florin Coras5e062572019-03-14 19:07:51 -07003120 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3121 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003122 }
3123 else
3124 rv = VPPCOM_EINVAL;
3125 break;
3126
3127 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3128 if (buffer && buflen && (*buflen == sizeof (u32)))
3129 {
3130 /* VPP-TBD */
3131 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003132 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3133 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3134 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003135 }
3136 else
3137 rv = VPPCOM_EINVAL;
3138 break;
3139
3140 case VPPCOM_ATTR_GET_REUSEADDR:
3141 if (buffer && buflen && (*buflen >= sizeof (int)))
3142 {
3143 /* VPP-TBD */
3144 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3145 VCL_SESS_ATTR_REUSEADDR);
3146 *buflen = sizeof (int);
3147
Florin Coras5e062572019-03-14 19:07:51 -07003148 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3149 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003150 }
3151 else
3152 rv = VPPCOM_EINVAL;
3153 break;
3154
Stevenb5a11602017-10-11 09:59:30 -07003155 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003156 if (buffer && buflen && (*buflen == sizeof (int)) &&
3157 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3158 {
3159 /* VPP-TBD */
3160 if (*(int *) buffer)
3161 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3162 else
3163 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3164
Florin Coras5e062572019-03-14 19:07:51 -07003165 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3166 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3167 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003168 }
3169 else
3170 rv = VPPCOM_EINVAL;
3171 break;
3172
3173 case VPPCOM_ATTR_GET_REUSEPORT:
3174 if (buffer && buflen && (*buflen >= sizeof (int)))
3175 {
3176 /* VPP-TBD */
3177 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3178 VCL_SESS_ATTR_REUSEPORT);
3179 *buflen = sizeof (int);
3180
Florin Coras5e062572019-03-14 19:07:51 -07003181 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3182 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003183 }
3184 else
3185 rv = VPPCOM_EINVAL;
3186 break;
3187
3188 case VPPCOM_ATTR_SET_REUSEPORT:
3189 if (buffer && buflen && (*buflen == sizeof (int)) &&
3190 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3191 {
3192 /* VPP-TBD */
3193 if (*(int *) buffer)
3194 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3195 else
3196 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3197
Florin Coras5e062572019-03-14 19:07:51 -07003198 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3199 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3200 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003201 }
3202 else
3203 rv = VPPCOM_EINVAL;
3204 break;
3205
3206 case VPPCOM_ATTR_GET_BROADCAST:
3207 if (buffer && buflen && (*buflen >= sizeof (int)))
3208 {
3209 /* VPP-TBD */
3210 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3211 VCL_SESS_ATTR_BROADCAST);
3212 *buflen = sizeof (int);
3213
Florin Coras5e062572019-03-14 19:07:51 -07003214 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3215 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003216 }
3217 else
3218 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003219 break;
3220
3221 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003222 if (buffer && buflen && (*buflen == sizeof (int)))
3223 {
3224 /* VPP-TBD */
3225 if (*(int *) buffer)
3226 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3227 else
3228 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3229
Florin Coras5e062572019-03-14 19:07:51 -07003230 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3231 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3232 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003233 }
3234 else
3235 rv = VPPCOM_EINVAL;
3236 break;
3237
3238 case VPPCOM_ATTR_GET_V6ONLY:
3239 if (buffer && buflen && (*buflen >= sizeof (int)))
3240 {
3241 /* VPP-TBD */
3242 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3243 VCL_SESS_ATTR_V6ONLY);
3244 *buflen = sizeof (int);
3245
Florin Coras5e062572019-03-14 19:07:51 -07003246 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3247 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003248 }
3249 else
3250 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003251 break;
3252
3253 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003254 if (buffer && buflen && (*buflen == sizeof (int)))
3255 {
3256 /* VPP-TBD */
3257 if (*(int *) buffer)
3258 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3259 else
3260 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3261
Florin Coras5e062572019-03-14 19:07:51 -07003262 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3263 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3264 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003265 }
3266 else
3267 rv = VPPCOM_EINVAL;
3268 break;
3269
3270 case VPPCOM_ATTR_GET_KEEPALIVE:
3271 if (buffer && buflen && (*buflen >= sizeof (int)))
3272 {
3273 /* VPP-TBD */
3274 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3275 VCL_SESS_ATTR_KEEPALIVE);
3276 *buflen = sizeof (int);
3277
Florin Coras5e062572019-03-14 19:07:51 -07003278 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3279 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003280 }
3281 else
3282 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003283 break;
Stevenbccd3392017-10-12 20:42:21 -07003284
3285 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003286 if (buffer && buflen && (*buflen == sizeof (int)))
3287 {
3288 /* VPP-TBD */
3289 if (*(int *) buffer)
3290 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3291 else
3292 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3293
Florin Coras5e062572019-03-14 19:07:51 -07003294 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3295 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3296 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003297 }
3298 else
3299 rv = VPPCOM_EINVAL;
3300 break;
3301
3302 case VPPCOM_ATTR_GET_TCP_NODELAY:
3303 if (buffer && buflen && (*buflen >= sizeof (int)))
3304 {
3305 /* VPP-TBD */
3306 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3307 VCL_SESS_ATTR_TCP_NODELAY);
3308 *buflen = sizeof (int);
3309
Florin Coras5e062572019-03-14 19:07:51 -07003310 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3311 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003312 }
3313 else
3314 rv = VPPCOM_EINVAL;
3315 break;
3316
3317 case VPPCOM_ATTR_SET_TCP_NODELAY:
3318 if (buffer && buflen && (*buflen == sizeof (int)))
3319 {
3320 /* VPP-TBD */
3321 if (*(int *) buffer)
3322 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3323 else
3324 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3325
Florin Coras5e062572019-03-14 19:07:51 -07003326 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3327 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3328 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003329 }
3330 else
3331 rv = VPPCOM_EINVAL;
3332 break;
3333
3334 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3335 if (buffer && buflen && (*buflen >= sizeof (int)))
3336 {
3337 /* VPP-TBD */
3338 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3339 VCL_SESS_ATTR_TCP_KEEPIDLE);
3340 *buflen = sizeof (int);
3341
Florin Coras5e062572019-03-14 19:07:51 -07003342 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3343 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003344 }
3345 else
3346 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003347 break;
3348
3349 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003350 if (buffer && buflen && (*buflen == sizeof (int)))
3351 {
3352 /* VPP-TBD */
3353 if (*(int *) buffer)
3354 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3355 else
3356 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3357
Florin Coras5e062572019-03-14 19:07:51 -07003358 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003359 VCL_SESS_ATTR_TEST (session->attr,
3360 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003361 }
3362 else
3363 rv = VPPCOM_EINVAL;
3364 break;
3365
3366 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3367 if (buffer && buflen && (*buflen >= sizeof (int)))
3368 {
3369 /* VPP-TBD */
3370 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3371 VCL_SESS_ATTR_TCP_KEEPINTVL);
3372 *buflen = sizeof (int);
3373
Florin Coras5e062572019-03-14 19:07:51 -07003374 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3375 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003376 }
3377 else
3378 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003379 break;
3380
3381 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003382 if (buffer && buflen && (*buflen == sizeof (int)))
3383 {
3384 /* VPP-TBD */
3385 if (*(int *) buffer)
3386 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3387 else
3388 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3389
Florin Coras5e062572019-03-14 19:07:51 -07003390 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003391 VCL_SESS_ATTR_TEST (session->attr,
3392 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003393 }
3394 else
3395 rv = VPPCOM_EINVAL;
3396 break;
3397
3398 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3399 if (buffer && buflen && (*buflen >= sizeof (u32)))
3400 {
3401 /* VPP-TBD */
3402 *(u32 *) buffer = session->user_mss;
3403 *buflen = sizeof (int);
3404
Florin Coras5e062572019-03-14 19:07:51 -07003405 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3406 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003407 }
3408 else
3409 rv = VPPCOM_EINVAL;
3410 break;
3411
3412 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3413 if (buffer && buflen && (*buflen == sizeof (u32)))
3414 {
3415 /* VPP-TBD */
3416 session->user_mss = *(u32 *) buffer;
3417
Florin Coras5e062572019-03-14 19:07:51 -07003418 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3419 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003420 }
3421 else
3422 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003423 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003424
Florin Coras7baeb712019-01-04 17:05:43 -08003425 case VPPCOM_ATTR_SET_SHUT:
3426 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3427 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3428 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3429 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3430 break;
3431
3432 case VPPCOM_ATTR_GET_SHUT:
3433 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3434 tmp_flags = 1;
3435 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3436 tmp_flags |= 2;
3437 if (tmp_flags == 1)
3438 *(int *) buffer = SHUT_RD;
3439 else if (tmp_flags == 2)
3440 *(int *) buffer = SHUT_WR;
3441 else if (tmp_flags == 3)
3442 *(int *) buffer = SHUT_RDWR;
3443 *buflen = sizeof (int);
3444 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003445 default:
3446 rv = VPPCOM_EINVAL;
3447 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003448 }
3449
Dave Wallace35830af2017-10-09 01:43:42 -04003450 return rv;
3451}
3452
Stevenac1f96d2017-10-24 16:03:58 -07003453int
Florin Coras134a9962018-08-28 11:32:04 -07003454vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003455 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3456{
Florin Coras134a9962018-08-28 11:32:04 -07003457 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003458 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003459 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003460
3461 if (ep)
3462 {
Florin Coras134a9962018-08-28 11:32:04 -07003463 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003464 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003465 {
Florin Coras5e062572019-03-14 19:07:51 -07003466 VDBG (0, "sh 0x%llx is closed!", session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003467 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003468 }
Florin Coras7e12d942018-06-27 14:32:43 -07003469 ep->is_ip4 = session->transport.is_ip4;
3470 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003471 }
Steven58f464e2017-10-25 12:33:12 -07003472
3473 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003474 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003475 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003476 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003477 else
3478 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003479 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003480 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003481 }
3482
Florin Coras99368312018-08-02 10:45:44 -07003483 if (ep)
3484 {
3485 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003486 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3487 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003488 else
Dave Barach178cf492018-11-13 16:34:13 -05003489 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3490 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003491 }
Florin Coras460dce62018-07-27 05:45:06 -07003492
Stevenac1f96d2017-10-24 16:03:58 -07003493 return rv;
3494}
3495
3496int
Florin Coras134a9962018-08-28 11:32:04 -07003497vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003498 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3499{
Dave Wallace617dffa2017-10-26 14:47:06 -04003500 if (!buffer)
3501 return VPPCOM_EINVAL;
3502
3503 if (ep)
3504 {
3505 // TBD
3506 return VPPCOM_EINVAL;
3507 }
3508
3509 if (flags)
3510 {
3511 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003512 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003513 }
3514
Florin Coras42ceddb2018-12-12 10:56:01 -08003515 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003516}
3517
Dave Wallace048b1d62018-01-03 22:24:41 -05003518int
3519vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3520{
Florin Coras134a9962018-08-28 11:32:04 -07003521 vcl_worker_t *wrk = vcl_worker_get_current ();
3522 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003523 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003524 svm_msg_q_msg_t msg;
3525 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003526 int rv, num_ev = 0;
3527
Florin Coras5e062572019-03-14 19:07:51 -07003528 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003529
3530 if (!vp)
3531 return VPPCOM_EFAULT;
3532
3533 do
3534 {
Florin Coras7e12d942018-06-27 14:32:43 -07003535 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003536
Florin Coras6917b942018-11-13 22:44:54 -08003537 /* Dequeue all events and drop all unhandled io events */
3538 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3539 {
3540 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3541 vcl_handle_mq_event (wrk, e);
3542 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3543 }
3544 vec_reset_length (wrk->unhandled_evts_vector);
3545
Dave Wallace048b1d62018-01-03 22:24:41 -05003546 for (i = 0; i < n_sids; i++)
3547 {
Florin Coras7baeb712019-01-04 17:05:43 -08003548 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003549 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003550 {
3551 vp[i].revents = POLLHUP;
3552 num_ev++;
3553 continue;
3554 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003555
Florin Coras6917b942018-11-13 22:44:54 -08003556 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003557
3558 if (POLLIN & vp[i].events)
3559 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003560 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003561 if (rv > 0)
3562 {
Florin Coras6917b942018-11-13 22:44:54 -08003563 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003564 num_ev++;
3565 }
3566 else if (rv < 0)
3567 {
3568 switch (rv)
3569 {
3570 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003571 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003572 break;
3573
3574 default:
Florin Coras6917b942018-11-13 22:44:54 -08003575 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003576 break;
3577 }
3578 num_ev++;
3579 }
3580 }
3581
3582 if (POLLOUT & vp[i].events)
3583 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003584 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003585 if (rv > 0)
3586 {
Florin Coras6917b942018-11-13 22:44:54 -08003587 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003588 num_ev++;
3589 }
3590 else if (rv < 0)
3591 {
3592 switch (rv)
3593 {
3594 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003595 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003596 break;
3597
3598 default:
Florin Coras6917b942018-11-13 22:44:54 -08003599 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003600 break;
3601 }
3602 num_ev++;
3603 }
3604 }
3605
Dave Wallace7e607a72018-06-18 18:41:32 -04003606 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003607 {
Florin Coras6917b942018-11-13 22:44:54 -08003608 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003609 num_ev++;
3610 }
3611 }
3612 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003613 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003614 }
3615 while ((num_ev == 0) && keep_trying);
3616
Dave Wallace048b1d62018-01-03 22:24:41 -05003617 return num_ev;
3618}
3619
Florin Coras99368312018-08-02 10:45:44 -07003620int
3621vppcom_mq_epoll_fd (void)
3622{
Florin Coras134a9962018-08-28 11:32:04 -07003623 vcl_worker_t *wrk = vcl_worker_get_current ();
3624 return wrk->mqs_epfd;
3625}
3626
3627int
Florin Coras30e79c22019-01-02 19:31:22 -08003628vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003629{
3630 return session_handle & 0xFFFFFF;
3631}
3632
3633int
Florin Coras30e79c22019-01-02 19:31:22 -08003634vppcom_session_worker (vcl_session_handle_t session_handle)
3635{
3636 return session_handle >> 24;
3637}
3638
3639int
Florin Coras134a9962018-08-28 11:32:04 -07003640vppcom_worker_register (void)
3641{
Florin Corasd4c70922019-11-28 14:21:21 -08003642 vcl_worker_t *wrk;
3643 u8 *wrk_name = 0;
3644 int rv;
3645
Florin Coras47c40e22018-11-26 17:01:36 -08003646 if (!vcl_worker_alloc_and_init ())
3647 return VPPCOM_EEXIST;
3648
Florin Corasd4c70922019-11-28 14:21:21 -08003649 wrk = vcl_worker_get_current ();
3650 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3651
3652 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3653 vec_free (wrk_name);
3654
3655 if (rv)
3656 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003657
3658 if (vcl_worker_register_with_vpp ())
3659 return VPPCOM_EEXIST;
3660
3661 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003662}
3663
Florin Coras369db832019-07-08 12:34:45 -07003664void
3665vppcom_worker_unregister (void)
3666{
3667 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3668 vcl_set_worker_index (~0);
3669}
3670
Florin Corasdfe4cf42018-11-28 22:13:45 -08003671int
3672vppcom_worker_index (void)
3673{
3674 return vcl_get_worker_index ();
3675}
3676
Florin Corase0982e52019-01-25 13:19:56 -08003677int
3678vppcom_worker_mqs_epfd (void)
3679{
3680 vcl_worker_t *wrk = vcl_worker_get_current ();
3681 if (!vcm->cfg.use_mq_eventfd)
3682 return -1;
3683 return wrk->mqs_epfd;
3684}
3685
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003686int
3687vppcom_session_is_connectable_listener (uint32_t session_handle)
3688{
3689 vcl_session_t *session;
3690 vcl_worker_t *wrk = vcl_worker_get_current ();
3691 session = vcl_session_get_w_handle (wrk, session_handle);
3692 if (!session)
3693 return VPPCOM_EBADFD;
3694 return vcl_session_is_connectable_listener (wrk, session);
3695}
3696
3697int
3698vppcom_session_listener (uint32_t session_handle)
3699{
3700 vcl_worker_t *wrk = vcl_worker_get_current ();
3701 vcl_session_t *listen_session, *session;
3702 session = vcl_session_get_w_handle (wrk, session_handle);
3703 if (!session)
3704 return VPPCOM_EBADFD;
3705 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3706 return VPPCOM_EBADFD;
3707 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3708 if (!listen_session)
3709 return VPPCOM_EBADFD;
3710 return vcl_session_handle (listen_session);
3711}
3712
3713int
3714vppcom_session_n_accepted (uint32_t session_handle)
3715{
3716 vcl_worker_t *wrk = vcl_worker_get_current ();
3717 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3718 if (!session)
3719 return VPPCOM_EBADFD;
3720 return session->n_accepted_sessions;
3721}
3722
Dave Wallacee22aa742017-10-20 12:30:38 -04003723/*
3724 * fd.io coding-style-patch-verification: ON
3725 *
3726 * Local Variables:
3727 * eval: (c-set-style "gnu")
3728 * End:
3729 */