blob: 5eea71e143f63480b51cdfb7d9327f2b85f89797 [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 Coras6e3c1f82020-01-15 01:30:46 +0000592 if (vcl_session_is_cl (session))
Florin Coras60116992018-08-27 09:52:18 -0700593 {
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 Coras6e3c1f82020-01-15 01:30:46 +00002521 /* Generate EPOLLOUT if tx fifo not full */
hanlin475c9d72019-12-26 11:44:28 +08002522 if ((event->events & EPOLLOUT) &&
2523 (vcl_session_write_ready (session) > 0))
2524 {
2525 session_event_t e = { 0 };
2526 e.event_type = SESSION_IO_EVT_TX;
2527 e.session_index = session->session_index;
2528 vec_add1 (wrk->unhandled_evts_vector, e);
2529 }
Florin Coras6e3c1f82020-01-15 01:30:46 +00002530 /* Generate EPOLLIN if rx fifo has data */
2531 if ((event->events & EPOLLIN) && (vcl_session_read_ready (session) > 0))
2532 {
2533 session_event_t e = { 0 };
2534 e.event_type = SESSION_IO_EVT_RX;
2535 e.session_index = session->session_index;
2536 vec_add1 (wrk->unhandled_evts_vector, e);
2537 }
Florin Corasa7a1a222018-12-30 17:11:31 -08002538 VDBG (1, "EPOLL_CTL_ADD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2539 vep_handle, session_handle, event->events, event->data.u64);
Florin Coras0d427d82018-06-27 03:24:07 -07002540 vcl_evt (VCL_EVT_EPOLL_CTLADD, session, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002541 break;
2542
2543 case EPOLL_CTL_MOD:
2544 if (PREDICT_FALSE (!event))
2545 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002546 VDBG (0, "EPOLL_CTL_MOD: NULL pointer to epoll_event structure!");
Dave Wallacef7f809c2017-10-03 01:48:42 -04002547 rv = VPPCOM_EINVAL;
2548 goto done;
2549 }
Dave Wallace4878cbe2017-11-21 03:45:09 -05002550 else if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002551 {
Florin Coras5e062572019-03-14 19:07:51 -07002552 VDBG (0, "sh %u EPOLL_CTL_MOD: not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002553 rv = VPPCOM_EINVAL;
2554 goto done;
2555 }
Florin Coras134a9962018-08-28 11:32:04 -07002556 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002557 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002558 VDBG (0, "EPOLL_CTL_MOD: sh %u vep_sh (%u) != vep_sh (%u)!",
2559 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002560 rv = VPPCOM_EINVAL;
2561 goto done;
2562 }
hanlin475c9d72019-12-26 11:44:28 +08002563
2564 /* Generate EPOLLOUT when tx_fifo/ct_tx_fifo not full */
2565 if ((event->events & EPOLLOUT) &&
2566 !(session->vep.ev.events & EPOLLOUT) &&
2567 (vcl_session_write_ready (session) > 0))
2568 {
2569 session_event_t e = { 0 };
2570 e.event_type = SESSION_IO_EVT_TX;
2571 e.session_index = session->session_index;
2572 vec_add1 (wrk->unhandled_evts_vector, e);
2573 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002574 session->vep.et_mask = VEP_DEFAULT_ET_MASK;
2575 session->vep.ev = *event;
Florin Corasa7a1a222018-12-30 17:11:31 -08002576 VDBG (1, "EPOLL_CTL_MOD: vep_sh %u, sh %u, events 0x%x, data 0x%llx!",
2577 vep_handle, session_handle, event->events, event->data.u64);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002578 break;
2579
2580 case EPOLL_CTL_DEL:
Dave Wallace4878cbe2017-11-21 03:45:09 -05002581 if (PREDICT_FALSE (!session->is_vep_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002582 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002583 VDBG (0, "EPOLL_CTL_DEL: %u not a vep session!", session_handle);
Dave Wallace4878cbe2017-11-21 03:45:09 -05002584 rv = VPPCOM_EINVAL;
2585 goto done;
2586 }
Florin Coras134a9962018-08-28 11:32:04 -07002587 else if (PREDICT_FALSE (session->vep.vep_sh != vep_handle))
Dave Wallace4878cbe2017-11-21 03:45:09 -05002588 {
Florin Corasa7a1a222018-12-30 17:11:31 -08002589 VDBG (0, "EPOLL_CTL_DEL: sh %u vep_sh (%u) != vep_sh (%u)!",
2590 session_handle, session->vep.vep_sh, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002591 rv = VPPCOM_EINVAL;
2592 goto done;
2593 }
2594
Florin Coras134a9962018-08-28 11:32:04 -07002595 if (session->vep.prev_sh == vep_handle)
2596 vep_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002597 else
2598 {
Florin Coras7e12d942018-06-27 14:32:43 -07002599 vcl_session_t *prev_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002600 prev_session = vcl_session_get_w_handle (wrk, session->vep.prev_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002601 if (PREDICT_FALSE (!prev_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002602 {
Florin Coras5e062572019-03-14 19:07:51 -07002603 VDBG (0, "EPOLL_CTL_DEL: Invalid prev_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002604 session->vep.prev_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002605 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002606 }
Florin Coras134a9962018-08-28 11:32:04 -07002607 ASSERT (prev_session->vep.next_sh == session_handle);
2608 prev_session->vep.next_sh = session->vep.next_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002609 }
Florin Coras134a9962018-08-28 11:32:04 -07002610 if (session->vep.next_sh != ~0)
Dave Wallacef7f809c2017-10-03 01:48:42 -04002611 {
Florin Coras7e12d942018-06-27 14:32:43 -07002612 vcl_session_t *next_session;
Florin Corasab2f6db2018-08-31 14:31:41 -07002613 next_session = vcl_session_get_w_handle (wrk, session->vep.next_sh);
Florin Coras070453d2018-08-24 17:04:27 -07002614 if (PREDICT_FALSE (!next_session))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002615 {
Florin Coras5e062572019-03-14 19:07:51 -07002616 VDBG (0, "EPOLL_CTL_DEL: Invalid next_sh (%u) on sh (%u)!",
Florin Corasa7a1a222018-12-30 17:11:31 -08002617 session->vep.next_sh, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002618 return VPPCOM_EBADFD;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002619 }
Florin Coras134a9962018-08-28 11:32:04 -07002620 ASSERT (next_session->vep.prev_sh == session_handle);
2621 next_session->vep.prev_sh = session->vep.prev_sh;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002622 }
2623
2624 memset (&session->vep, 0, sizeof (session->vep));
Florin Coras134a9962018-08-28 11:32:04 -07002625 session->vep.next_sh = ~0;
2626 session->vep.prev_sh = ~0;
2627 session->vep.vep_sh = ~0;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002628 session->is_vep_session = 0;
Florin Coras1bcad5c2019-01-09 20:04:38 -08002629
2630 if (session->tx_fifo)
Florin Coras2d379d82019-06-28 12:45:12 -07002631 svm_fifo_del_want_deq_ntf (session->tx_fifo, SVM_FIFO_NO_DEQ_NOTIF);
Florin Coras1bcad5c2019-01-09 20:04:38 -08002632
Florin Coras5e062572019-03-14 19:07:51 -07002633 VDBG (1, "EPOLL_CTL_DEL: vep_idx %u, sh %u!", vep_handle,
Florin Corasa7a1a222018-12-30 17:11:31 -08002634 session_handle);
Florin Coras134a9962018-08-28 11:32:04 -07002635 vcl_evt (VCL_EVT_EPOLL_CTLDEL, session, vep_sh);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002636 break;
2637
2638 default:
Florin Corasa7a1a222018-12-30 17:11:31 -08002639 VDBG (0, "Invalid operation (%d)!", op);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002640 rv = VPPCOM_EINVAL;
2641 }
2642
Florin Coras134a9962018-08-28 11:32:04 -07002643 vep_verify_epoll_chain (wrk, vep_handle);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002644
2645done:
Dave Wallacef7f809c2017-10-03 01:48:42 -04002646 return rv;
2647}
2648
Florin Coras86f04502018-09-12 16:08:01 -07002649static inline void
2650vcl_epoll_wait_handle_mq_event (vcl_worker_t * wrk, session_event_t * e,
2651 struct epoll_event *events, u32 * num_ev)
Florin Coras54693d22018-07-17 10:46:29 -07002652{
2653 session_disconnected_msg_t *disconnected_msg;
2654 session_connected_msg_t *connected_msg;
Florin Coras99368312018-08-02 10:45:44 -07002655 u32 sid = ~0, session_events;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002656 u64 session_evt_data = ~0;
Florin Coras54693d22018-07-17 10:46:29 -07002657 vcl_session_t *session;
Florin Coras86f04502018-09-12 16:08:01 -07002658 u8 add_event = 0;
2659
2660 switch (e->event_type)
2661 {
Florin Coras653e43f2019-03-04 10:56:23 -08002662 case SESSION_IO_EVT_RX:
Florin Corasc0737e92019-03-04 14:19:39 -08002663 sid = e->session_index;
Florin Corasfa915f82018-12-26 16:29:06 -08002664 if (!(session = vcl_session_get (wrk, sid)))
2665 break;
Florin Corasc0737e92019-03-04 14:19:39 -08002666 vcl_fifo_rx_evt_valid_or_break (session);
Florin Coras86f04502018-09-12 16:08:01 -07002667 session_events = session->vep.ev.events;
Florin Corasaa27eb92018-10-13 12:20:01 -07002668 if (!(EPOLLIN & session->vep.ev.events) || session->has_rx_evt)
Florin Coras86f04502018-09-12 16:08:01 -07002669 break;
2670 add_event = 1;
2671 events[*num_ev].events |= EPOLLIN;
2672 session_evt_data = session->vep.ev.data.u64;
Florin Corasaa27eb92018-10-13 12:20:01 -07002673 session->has_rx_evt = 1;
Florin Coras86f04502018-09-12 16:08:01 -07002674 break;
Florin Coras653e43f2019-03-04 10:56:23 -08002675 case SESSION_IO_EVT_TX:
Florin Corasc0737e92019-03-04 14:19:39 -08002676 sid = e->session_index;
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;
2680 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 Coras2d379d82019-06-28 12:45:12 -07002685 svm_fifo_reset_has_deq_ntf (session->tx_fifo);
Florin Coras86f04502018-09-12 16:08:01 -07002686 break;
Florin Coras86f04502018-09-12 16:08:01 -07002687 case SESSION_CTRL_EVT_ACCEPTED:
Florin Coras3c7d4f92018-12-14 11:28:43 -08002688 session = vcl_session_accepted (wrk,
2689 (session_accepted_msg_t *) e->data);
Florin Coras86f04502018-09-12 16:08:01 -07002690 if (!session)
Florin Coras3c7d4f92018-12-14 11:28:43 -08002691 break;
Florin Coras86f04502018-09-12 16:08:01 -07002692
Florin Coras86f04502018-09-12 16:08:01 -07002693 session_events = session->vep.ev.events;
2694 if (!(EPOLLIN & session_events))
2695 break;
2696
2697 add_event = 1;
2698 events[*num_ev].events |= EPOLLIN;
2699 session_evt_data = session->vep.ev.data.u64;
2700 break;
2701 case SESSION_CTRL_EVT_CONNECTED:
2702 connected_msg = (session_connected_msg_t *) e->data;
Florin Corasf1653e62019-11-06 15:41:37 -08002703 sid = vcl_session_connected_handler (wrk, connected_msg);
Florin Coras86f04502018-09-12 16:08:01 -07002704 /* Generate EPOLLOUT because there's no connected event */
Florin Corasfa915f82018-12-26 16:29:06 -08002705 if (!(session = vcl_session_get (wrk, sid)))
2706 break;
Florin Coras86f04502018-09-12 16:08:01 -07002707 session_events = session->vep.ev.events;
Florin Coras72f77822019-01-22 19:05:52 -08002708 if (!(EPOLLOUT & session_events))
2709 break;
2710 add_event = 1;
2711 events[*num_ev].events |= EPOLLOUT;
2712 session_evt_data = session->vep.ev.data.u64;
Florin Corasdbc9c592019-09-25 16:37:43 -07002713 if (session->session_state & STATE_FAILED)
2714 events[*num_ev].events |= EPOLLHUP;
Florin Coras86f04502018-09-12 16:08:01 -07002715 break;
2716 case SESSION_CTRL_EVT_DISCONNECTED:
2717 disconnected_msg = (session_disconnected_msg_t *) e->data;
Florin Coras3c7d4f92018-12-14 11:28:43 -08002718 session = vcl_session_disconnected_handler (wrk, disconnected_msg);
2719 if (!session)
Florin Coras86f04502018-09-12 16:08:01 -07002720 break;
Florin Coras72f77822019-01-22 19:05:52 -08002721 session_events = session->vep.ev.events;
2722 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2723 break;
Florin Coras86f04502018-09-12 16:08:01 -07002724 add_event = 1;
2725 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2726 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002727 break;
2728 case SESSION_CTRL_EVT_RESET:
2729 sid = vcl_session_reset_handler (wrk, (session_reset_msg_t *) e->data);
2730 if (!(session = vcl_session_get (wrk, sid)))
2731 break;
Florin Coras72f77822019-01-22 19:05:52 -08002732 session_events = session->vep.ev.events;
2733 if (!((EPOLLHUP | EPOLLRDHUP) & session_events))
2734 break;
Florin Coras86f04502018-09-12 16:08:01 -07002735 add_event = 1;
2736 events[*num_ev].events |= EPOLLHUP | EPOLLRDHUP;
2737 session_evt_data = session->vep.ev.data.u64;
Florin Coras86f04502018-09-12 16:08:01 -07002738 break;
Florin Corasdfae9f92019-02-20 19:48:31 -08002739 case SESSION_CTRL_EVT_UNLISTEN_REPLY:
2740 vcl_session_unlisten_reply_handler (wrk, e->data);
2741 break;
Florin Coras30e79c22019-01-02 19:31:22 -08002742 case SESSION_CTRL_EVT_REQ_WORKER_UPDATE:
2743 vcl_session_req_worker_update_handler (wrk, e->data);
2744 break;
2745 case SESSION_CTRL_EVT_WORKER_UPDATE_REPLY:
2746 vcl_session_worker_update_reply_handler (wrk, e->data);
2747 break;
Florin Corasc4c4cf52019-08-24 18:17:34 -07002748 case SESSION_CTRL_EVT_APP_ADD_SEGMENT:
2749 vcl_session_app_add_segment_handler (wrk, e->data);
2750 break;
2751 case SESSION_CTRL_EVT_APP_DEL_SEGMENT:
2752 vcl_session_app_del_segment_handler (wrk, e->data);
2753 break;
Florin Coras86f04502018-09-12 16:08:01 -07002754 default:
2755 VDBG (0, "unhandled: %u", e->event_type);
2756 break;
2757 }
2758
2759 if (add_event)
2760 {
2761 events[*num_ev].data.u64 = session_evt_data;
2762 if (EPOLLONESHOT & session_events)
2763 {
2764 session = vcl_session_get (wrk, sid);
2765 session->vep.ev.events = 0;
2766 }
2767 *num_ev += 1;
2768 }
2769}
2770
2771static int
2772vcl_epoll_wait_handle_mq (vcl_worker_t * wrk, svm_msg_q_t * mq,
2773 struct epoll_event *events, u32 maxevents,
2774 double wait_for_time, u32 * num_ev)
2775{
Florin Coras99368312018-08-02 10:45:44 -07002776 svm_msg_q_msg_t *msg;
Florin Coras54693d22018-07-17 10:46:29 -07002777 session_event_t *e;
Florin Coras54693d22018-07-17 10:46:29 -07002778 int i;
2779
Florin Coras539663c2018-09-28 14:59:37 -07002780 if (vec_len (wrk->mq_msg_vector) && svm_msg_q_is_empty (mq))
2781 goto handle_dequeued;
2782
Florin Coras54693d22018-07-17 10:46:29 -07002783 svm_msg_q_lock (mq);
2784 if (svm_msg_q_is_empty (mq))
2785 {
2786 if (!wait_for_time)
2787 {
2788 svm_msg_q_unlock (mq);
2789 return 0;
2790 }
2791 else if (wait_for_time < 0)
2792 {
2793 svm_msg_q_wait (mq);
2794 }
2795 else
2796 {
Florin Coras60f1fc12018-08-16 14:57:31 -07002797 if (svm_msg_q_timedwait (mq, wait_for_time / 1e3))
Florin Coras54693d22018-07-17 10:46:29 -07002798 {
2799 svm_msg_q_unlock (mq);
2800 return 0;
2801 }
2802 }
2803 }
Florin Corase003a1b2019-06-05 10:47:16 -07002804 ASSERT (maxevents > *num_ev);
2805 vcl_mq_dequeue_batch (wrk, mq, maxevents - *num_ev);
Florin Coras54693d22018-07-17 10:46:29 -07002806 svm_msg_q_unlock (mq);
2807
Florin Coras539663c2018-09-28 14:59:37 -07002808handle_dequeued:
Florin Coras134a9962018-08-28 11:32:04 -07002809 for (i = 0; i < vec_len (wrk->mq_msg_vector); i++)
Florin Coras54693d22018-07-17 10:46:29 -07002810 {
Florin Coras134a9962018-08-28 11:32:04 -07002811 msg = vec_elt_at_index (wrk->mq_msg_vector, i);
Florin Coras99368312018-08-02 10:45:44 -07002812 e = svm_msg_q_msg_data (mq, msg);
Florin Corase003a1b2019-06-05 10:47:16 -07002813 vcl_epoll_wait_handle_mq_event (wrk, e, events, num_ev);
Florin Coras99368312018-08-02 10:45:44 -07002814 svm_msg_q_free_msg (mq, msg);
Florin Coras54693d22018-07-17 10:46:29 -07002815 }
Florin Corasaa27eb92018-10-13 12:20:01 -07002816 vec_reset_length (wrk->mq_msg_vector);
Florin Coras30e79c22019-01-02 19:31:22 -08002817 vcl_handle_pending_wrk_updates (wrk);
Florin Coras54693d22018-07-17 10:46:29 -07002818 return *num_ev;
2819}
2820
Florin Coras99368312018-08-02 10:45:44 -07002821static int
Florin Coras134a9962018-08-28 11:32:04 -07002822vppcom_epoll_wait_condvar (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002823 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002824{
Florin Corase003a1b2019-06-05 10:47:16 -07002825 double wait = 0, start = 0, now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002826
2827 if (!n_evts)
2828 {
2829 wait = wait_for_time;
2830 start = clib_time_now (&wrk->clib_time);
2831 }
2832
2833 do
2834 {
2835 vcl_epoll_wait_handle_mq (wrk, wrk->app_event_queue, events, maxevents,
2836 wait, &n_evts);
2837 if (n_evts)
2838 return n_evts;
2839 if (wait == -1)
2840 continue;
2841
Florin Corase003a1b2019-06-05 10:47:16 -07002842 now = clib_time_now (&wrk->clib_time);
2843 wait -= now - start;
2844 start = now;
Florin Coras14ed6df2019-03-06 21:13:42 -08002845 }
2846 while (wait > 0);
2847
2848 return 0;
Florin Coras99368312018-08-02 10:45:44 -07002849}
2850
2851static int
Florin Coras134a9962018-08-28 11:32:04 -07002852vppcom_epoll_wait_eventfd (vcl_worker_t * wrk, struct epoll_event *events,
Florin Coras86f04502018-09-12 16:08:01 -07002853 int maxevents, u32 n_evts, double wait_for_time)
Florin Coras99368312018-08-02 10:45:44 -07002854{
2855 vcl_mq_evt_conn_t *mqc;
2856 int __clib_unused n_read;
2857 int n_mq_evts, i;
Florin Coras99368312018-08-02 10:45:44 -07002858 u64 buf;
2859
Florin Coras134a9962018-08-28 11:32:04 -07002860 vec_validate (wrk->mq_events, pool_elts (wrk->mq_evt_conns));
Florin Corasa4878ed2018-10-12 13:09:36 -07002861again:
Florin Coras134a9962018-08-28 11:32:04 -07002862 n_mq_evts = epoll_wait (wrk->mqs_epfd, wrk->mq_events,
2863 vec_len (wrk->mq_events), wait_for_time);
Florin Coras99368312018-08-02 10:45:44 -07002864 for (i = 0; i < n_mq_evts; i++)
2865 {
Florin Coras134a9962018-08-28 11:32:04 -07002866 mqc = vcl_mq_evt_conn_get (wrk, wrk->mq_events[i].data.u32);
Florin Coras99368312018-08-02 10:45:44 -07002867 n_read = read (mqc->mq_fd, &buf, sizeof (buf));
Florin Coras134a9962018-08-28 11:32:04 -07002868 vcl_epoll_wait_handle_mq (wrk, mqc->mq, events, maxevents, 0, &n_evts);
Florin Coras99368312018-08-02 10:45:44 -07002869 }
Florin Corasa4878ed2018-10-12 13:09:36 -07002870 if (!n_evts && n_mq_evts > 0)
2871 goto again;
Florin Coras99368312018-08-02 10:45:44 -07002872
2873 return (int) n_evts;
2874}
2875
Dave Wallacef7f809c2017-10-03 01:48:42 -04002876int
Florin Coras134a9962018-08-28 11:32:04 -07002877vppcom_epoll_wait (uint32_t vep_handle, struct epoll_event *events,
Dave Wallacef7f809c2017-10-03 01:48:42 -04002878 int maxevents, double wait_for_time)
2879{
Florin Coras134a9962018-08-28 11:32:04 -07002880 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002881 vcl_session_t *vep_session;
Florin Coras86f04502018-09-12 16:08:01 -07002882 u32 n_evts = 0;
2883 int i;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002884
2885 if (PREDICT_FALSE (maxevents <= 0))
2886 {
Florin Coras5e062572019-03-14 19:07:51 -07002887 VDBG (0, "ERROR: Invalid maxevents (%d)!", maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002888 return VPPCOM_EINVAL;
2889 }
Dave Wallacef7f809c2017-10-03 01:48:42 -04002890
Florin Coras134a9962018-08-28 11:32:04 -07002891 vep_session = vcl_session_get_w_handle (wrk, vep_handle);
Florin Coras14598772018-09-04 19:47:52 -07002892 if (!vep_session)
2893 return VPPCOM_EBADFD;
2894
Florin Coras54693d22018-07-17 10:46:29 -07002895 if (PREDICT_FALSE (!vep_session->is_vep))
Dave Wallacef7f809c2017-10-03 01:48:42 -04002896 {
Florin Coras5e062572019-03-14 19:07:51 -07002897 VDBG (0, "ERROR: vep_idx (%u) is not a vep!", vep_handle);
Florin Coras54693d22018-07-17 10:46:29 -07002898 return VPPCOM_EINVAL;
Dave Wallacef7f809c2017-10-03 01:48:42 -04002899 }
Florin Coras54693d22018-07-17 10:46:29 -07002900
2901 memset (events, 0, sizeof (*events) * maxevents);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002902
Florin Coras86f04502018-09-12 16:08:01 -07002903 if (vec_len (wrk->unhandled_evts_vector))
2904 {
2905 for (i = 0; i < vec_len (wrk->unhandled_evts_vector); i++)
2906 {
2907 vcl_epoll_wait_handle_mq_event (wrk, &wrk->unhandled_evts_vector[i],
2908 events, &n_evts);
2909 if (n_evts == maxevents)
2910 {
Florin Corase003a1b2019-06-05 10:47:16 -07002911 vec_delete (wrk->unhandled_evts_vector, i + 1, 0);
2912 return n_evts;
Florin Coras86f04502018-09-12 16:08:01 -07002913 }
2914 }
Florin Corase003a1b2019-06-05 10:47:16 -07002915 vec_reset_length (wrk->unhandled_evts_vector);
Florin Coras86f04502018-09-12 16:08:01 -07002916 }
2917
2918 if (vcm->cfg.use_mq_eventfd)
2919 return vppcom_epoll_wait_eventfd (wrk, events, maxevents, n_evts,
2920 wait_for_time);
2921
2922 return vppcom_epoll_wait_condvar (wrk, events, maxevents, n_evts,
2923 wait_for_time);
Dave Wallacef7f809c2017-10-03 01:48:42 -04002924}
2925
Dave Wallace35830af2017-10-09 01:43:42 -04002926int
Florin Coras134a9962018-08-28 11:32:04 -07002927vppcom_session_attr (uint32_t session_handle, uint32_t op,
Dave Wallace35830af2017-10-09 01:43:42 -04002928 void *buffer, uint32_t * buflen)
2929{
Florin Coras134a9962018-08-28 11:32:04 -07002930 vcl_worker_t *wrk = vcl_worker_get_current ();
Florin Coras7e12d942018-06-27 14:32:43 -07002931 vcl_session_t *session;
Dave Wallace35830af2017-10-09 01:43:42 -04002932 int rv = VPPCOM_OK;
Florin Coras7baeb712019-01-04 17:05:43 -08002933 u32 *flags = buffer, tmp_flags = 0;
Steven2199aab2017-10-15 20:18:47 -07002934 vppcom_endpt_t *ep = buffer;
Dave Wallace35830af2017-10-09 01:43:42 -04002935
Florin Coras134a9962018-08-28 11:32:04 -07002936 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07002937 if (!session)
2938 return VPPCOM_EBADFD;
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002939
Dave Wallace35830af2017-10-09 01:43:42 -04002940 switch (op)
2941 {
2942 case VPPCOM_ATTR_GET_NREAD:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002943 rv = vcl_session_read_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07002944 VDBG (2, "VPPCOM_ATTR_GET_NREAD: sh %u, nread = %d", session_handle,
2945 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002946 break;
2947
Dave Wallace227867f2017-11-13 21:21:53 -05002948 case VPPCOM_ATTR_GET_NWRITE:
Florin Coras0ef8ef22019-01-18 08:37:13 -08002949 rv = vcl_session_write_ready (session);
Florin Coras5e062572019-03-14 19:07:51 -07002950 VDBG (2, "VPPCOM_ATTR_GET_NWRITE: sh %u, nwrite = %d", session_handle,
2951 rv);
Dave Wallace35830af2017-10-09 01:43:42 -04002952 break;
2953
2954 case VPPCOM_ATTR_GET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002955 if (PREDICT_TRUE (buffer && buflen && (*buflen >= sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002956 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002957 *flags = O_RDWR | (VCL_SESS_ATTR_TEST (session->attr,
2958 VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002959 *buflen = sizeof (*flags);
Florin Coras5e062572019-03-14 19:07:51 -07002960 VDBG (2, "VPPCOM_ATTR_GET_FLAGS: sh %u, flags = 0x%08x, "
2961 "is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002962 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002963 }
2964 else
2965 rv = VPPCOM_EINVAL;
2966 break;
2967
2968 case VPPCOM_ATTR_SET_FLAGS:
Dave Wallace048b1d62018-01-03 22:24:41 -05002969 if (PREDICT_TRUE (buffer && buflen && (*buflen == sizeof (*flags))))
Dave Wallace35830af2017-10-09 01:43:42 -04002970 {
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08002971 if (*flags & O_NONBLOCK)
2972 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_NONBLOCK);
2973 else
2974 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_NONBLOCK);
2975
Florin Coras5e062572019-03-14 19:07:51 -07002976 VDBG (2, "VPPCOM_ATTR_SET_FLAGS: sh %u, flags = 0x%08x,"
2977 " is_nonblocking = %u", session_handle, *flags,
Florin Coras0d427d82018-06-27 03:24:07 -07002978 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_NONBLOCK));
Dave Wallace35830af2017-10-09 01:43:42 -04002979 }
2980 else
2981 rv = VPPCOM_EINVAL;
2982 break;
2983
2984 case VPPCOM_ATTR_GET_PEER_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05002985 if (PREDICT_TRUE (buffer && buflen &&
2986 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04002987 {
Florin Coras7e12d942018-06-27 14:32:43 -07002988 ep->is_ip4 = session->transport.is_ip4;
2989 ep->port = session->transport.rmt_port;
2990 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05002991 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
2992 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07002993 else
Dave Barach178cf492018-11-13 16:34:13 -05002994 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
2995 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07002996 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07002997 VDBG (1, "VPPCOM_ATTR_GET_PEER_ADDR: sh %u, is_ip4 = %u, "
2998 "addr = %U, port %u", session_handle, ep->is_ip4,
2999 format_ip46_address, &session->transport.rmt_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003000 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3001 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003002 }
3003 else
3004 rv = VPPCOM_EINVAL;
3005 break;
3006
3007 case VPPCOM_ATTR_GET_LCL_ADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003008 if (PREDICT_TRUE (buffer && buflen &&
3009 (*buflen >= sizeof (*ep)) && ep->ip))
Dave Wallace35830af2017-10-09 01:43:42 -04003010 {
Florin Coras7e12d942018-06-27 14:32:43 -07003011 ep->is_ip4 = session->transport.is_ip4;
3012 ep->port = session->transport.lcl_port;
3013 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003014 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip4,
3015 sizeof (ip4_address_t));
Steven2199aab2017-10-15 20:18:47 -07003016 else
Dave Barach178cf492018-11-13 16:34:13 -05003017 clib_memcpy_fast (ep->ip, &session->transport.lcl_ip.ip6,
3018 sizeof (ip6_address_t));
Steven2199aab2017-10-15 20:18:47 -07003019 *buflen = sizeof (*ep);
Florin Coras5e062572019-03-14 19:07:51 -07003020 VDBG (1, "VPPCOM_ATTR_GET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3021 " port %d", session_handle, ep->is_ip4, format_ip46_address,
Florin Coras7e12d942018-06-27 14:32:43 -07003022 &session->transport.lcl_ip,
Florin Coras0d427d82018-06-27 03:24:07 -07003023 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3024 clib_net_to_host_u16 (ep->port));
Dave Wallace35830af2017-10-09 01:43:42 -04003025 }
3026 else
3027 rv = VPPCOM_EINVAL;
3028 break;
Stevenb5a11602017-10-11 09:59:30 -07003029
Florin Corasef7cbf62019-10-17 09:56:27 -07003030 case VPPCOM_ATTR_SET_LCL_ADDR:
3031 if (PREDICT_TRUE (buffer && buflen &&
3032 (*buflen >= sizeof (*ep)) && ep->ip))
3033 {
3034 session->transport.is_ip4 = ep->is_ip4;
3035 session->transport.lcl_port = ep->port;
3036 vcl_ip_copy_from_ep (&session->transport.lcl_ip, ep);
3037 *buflen = sizeof (*ep);
3038 VDBG (1, "VPPCOM_ATTR_SET_LCL_ADDR: sh %u, is_ip4 = %u, addr = %U"
3039 " port %d", session_handle, ep->is_ip4, format_ip46_address,
3040 &session->transport.lcl_ip,
3041 ep->is_ip4 ? IP46_TYPE_IP4 : IP46_TYPE_IP6,
3042 clib_net_to_host_u16 (ep->port));
3043 }
3044 else
3045 rv = VPPCOM_EINVAL;
3046 break;
3047
Dave Wallace048b1d62018-01-03 22:24:41 -05003048 case VPPCOM_ATTR_GET_LIBC_EPFD:
3049 rv = session->libc_epfd;
Florin Coras5e062572019-03-14 19:07:51 -07003050 VDBG (2, "VPPCOM_ATTR_GET_LIBC_EPFD: libc_epfd %d", rv);
Dave Wallace048b1d62018-01-03 22:24:41 -05003051 break;
3052
3053 case VPPCOM_ATTR_SET_LIBC_EPFD:
3054 if (PREDICT_TRUE (buffer && buflen &&
3055 (*buflen == sizeof (session->libc_epfd))))
3056 {
3057 session->libc_epfd = *(int *) buffer;
3058 *buflen = sizeof (session->libc_epfd);
3059
Florin Coras5e062572019-03-14 19:07:51 -07003060 VDBG (2, "VPPCOM_ATTR_SET_LIBC_EPFD: libc_epfd %d, buflen %d",
3061 session->libc_epfd, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003062 }
3063 else
3064 rv = VPPCOM_EINVAL;
3065 break;
3066
3067 case VPPCOM_ATTR_GET_PROTOCOL:
3068 if (buffer && buflen && (*buflen >= sizeof (int)))
3069 {
Florin Coras7e12d942018-06-27 14:32:43 -07003070 *(int *) buffer = session->session_type;
Dave Wallace048b1d62018-01-03 22:24:41 -05003071 *buflen = sizeof (int);
3072
Florin Coras5e062572019-03-14 19:07:51 -07003073 VDBG (2, "VPPCOM_ATTR_GET_PROTOCOL: %d (%s), buflen %d",
3074 *(int *) buffer, *(int *) buffer ? "UDP" : "TCP", *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003075 }
3076 else
3077 rv = VPPCOM_EINVAL;
3078 break;
3079
3080 case VPPCOM_ATTR_GET_LISTEN:
3081 if (buffer && buflen && (*buflen >= sizeof (int)))
3082 {
3083 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3084 VCL_SESS_ATTR_LISTEN);
3085 *buflen = sizeof (int);
3086
Florin Coras5e062572019-03-14 19:07:51 -07003087 VDBG (2, "VPPCOM_ATTR_GET_LISTEN: %d, buflen %d", *(int *) buffer,
3088 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003089 }
3090 else
3091 rv = VPPCOM_EINVAL;
3092 break;
3093
3094 case VPPCOM_ATTR_GET_ERROR:
3095 if (buffer && buflen && (*buflen >= sizeof (int)))
3096 {
3097 *(int *) buffer = 0;
3098 *buflen = sizeof (int);
3099
Florin Coras5e062572019-03-14 19:07:51 -07003100 VDBG (2, "VPPCOM_ATTR_GET_ERROR: %d, buflen %d, #VPP-TBD#",
3101 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003102 }
3103 else
3104 rv = VPPCOM_EINVAL;
3105 break;
3106
3107 case VPPCOM_ATTR_GET_TX_FIFO_LEN:
3108 if (buffer && buflen && (*buflen >= sizeof (u32)))
3109 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003110
3111 /* VPP-TBD */
3112 *(size_t *) buffer = (session->sndbuf_size ? session->sndbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003113 session->tx_fifo ? session->tx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003114 vcm->cfg.tx_fifo_size);
3115 *buflen = sizeof (u32);
3116
Florin Coras5e062572019-03-14 19:07:51 -07003117 VDBG (2, "VPPCOM_ATTR_GET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3118 " #VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer,
3119 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003120 }
3121 else
3122 rv = VPPCOM_EINVAL;
3123 break;
3124
3125 case VPPCOM_ATTR_SET_TX_FIFO_LEN:
3126 if (buffer && buflen && (*buflen == sizeof (u32)))
3127 {
3128 /* VPP-TBD */
3129 session->sndbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003130 VDBG (2, "VPPCOM_ATTR_SET_TX_FIFO_LEN: %u (0x%x), buflen %d,"
3131 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3132 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003133 }
3134 else
3135 rv = VPPCOM_EINVAL;
3136 break;
3137
3138 case VPPCOM_ATTR_GET_RX_FIFO_LEN:
3139 if (buffer && buflen && (*buflen >= sizeof (u32)))
3140 {
Dave Wallace048b1d62018-01-03 22:24:41 -05003141
3142 /* VPP-TBD */
3143 *(size_t *) buffer = (session->rcvbuf_size ? session->rcvbuf_size :
Keith Burns (alagalah)9b793772018-02-16 08:20:56 -08003144 session->rx_fifo ? session->rx_fifo->nitems :
Dave Wallace048b1d62018-01-03 22:24:41 -05003145 vcm->cfg.rx_fifo_size);
3146 *buflen = sizeof (u32);
3147
Florin Coras5e062572019-03-14 19:07:51 -07003148 VDBG (2, "VPPCOM_ATTR_GET_RX_FIFO_LEN: %u (0x%x), buflen %d, "
3149 "#VPP-TBD#", *(size_t *) buffer, *(size_t *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003150 }
3151 else
3152 rv = VPPCOM_EINVAL;
3153 break;
3154
3155 case VPPCOM_ATTR_SET_RX_FIFO_LEN:
3156 if (buffer && buflen && (*buflen == sizeof (u32)))
3157 {
3158 /* VPP-TBD */
3159 session->rcvbuf_size = *(u32 *) buffer;
Florin Coras5e062572019-03-14 19:07:51 -07003160 VDBG (2, "VPPCOM_ATTR_SET_RX_FIFO_LEN: %u (0x%x), buflen %d,"
3161 " #VPP-TBD#", session->sndbuf_size, session->sndbuf_size,
3162 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003163 }
3164 else
3165 rv = VPPCOM_EINVAL;
3166 break;
3167
3168 case VPPCOM_ATTR_GET_REUSEADDR:
3169 if (buffer && buflen && (*buflen >= sizeof (int)))
3170 {
3171 /* VPP-TBD */
3172 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3173 VCL_SESS_ATTR_REUSEADDR);
3174 *buflen = sizeof (int);
3175
Florin Coras5e062572019-03-14 19:07:51 -07003176 VDBG (2, "VPPCOM_ATTR_GET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3177 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003178 }
3179 else
3180 rv = VPPCOM_EINVAL;
3181 break;
3182
Stevenb5a11602017-10-11 09:59:30 -07003183 case VPPCOM_ATTR_SET_REUSEADDR:
Dave Wallace048b1d62018-01-03 22:24:41 -05003184 if (buffer && buflen && (*buflen == sizeof (int)) &&
3185 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3186 {
3187 /* VPP-TBD */
3188 if (*(int *) buffer)
3189 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEADDR);
3190 else
3191 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEADDR);
3192
Florin Coras5e062572019-03-14 19:07:51 -07003193 VDBG (2, "VPPCOM_ATTR_SET_REUSEADDR: %d, buflen %d, #VPP-TBD#",
3194 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEADDR),
3195 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003196 }
3197 else
3198 rv = VPPCOM_EINVAL;
3199 break;
3200
3201 case VPPCOM_ATTR_GET_REUSEPORT:
3202 if (buffer && buflen && (*buflen >= sizeof (int)))
3203 {
3204 /* VPP-TBD */
3205 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3206 VCL_SESS_ATTR_REUSEPORT);
3207 *buflen = sizeof (int);
3208
Florin Coras5e062572019-03-14 19:07:51 -07003209 VDBG (2, "VPPCOM_ATTR_GET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3210 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003211 }
3212 else
3213 rv = VPPCOM_EINVAL;
3214 break;
3215
3216 case VPPCOM_ATTR_SET_REUSEPORT:
3217 if (buffer && buflen && (*buflen == sizeof (int)) &&
3218 !VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_LISTEN))
3219 {
3220 /* VPP-TBD */
3221 if (*(int *) buffer)
3222 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_REUSEPORT);
3223 else
3224 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_REUSEPORT);
3225
Florin Coras5e062572019-03-14 19:07:51 -07003226 VDBG (2, "VPPCOM_ATTR_SET_REUSEPORT: %d, buflen %d, #VPP-TBD#",
3227 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_REUSEPORT),
3228 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003229 }
3230 else
3231 rv = VPPCOM_EINVAL;
3232 break;
3233
3234 case VPPCOM_ATTR_GET_BROADCAST:
3235 if (buffer && buflen && (*buflen >= sizeof (int)))
3236 {
3237 /* VPP-TBD */
3238 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3239 VCL_SESS_ATTR_BROADCAST);
3240 *buflen = sizeof (int);
3241
Florin Coras5e062572019-03-14 19:07:51 -07003242 VDBG (2, "VPPCOM_ATTR_GET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3243 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003244 }
3245 else
3246 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003247 break;
3248
3249 case VPPCOM_ATTR_SET_BROADCAST:
Dave Wallace048b1d62018-01-03 22:24:41 -05003250 if (buffer && buflen && (*buflen == sizeof (int)))
3251 {
3252 /* VPP-TBD */
3253 if (*(int *) buffer)
3254 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_BROADCAST);
3255 else
3256 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_BROADCAST);
3257
Florin Coras5e062572019-03-14 19:07:51 -07003258 VDBG (2, "VPPCOM_ATTR_SET_BROADCAST: %d, buflen %d, #VPP-TBD#",
3259 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_BROADCAST),
3260 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003261 }
3262 else
3263 rv = VPPCOM_EINVAL;
3264 break;
3265
3266 case VPPCOM_ATTR_GET_V6ONLY:
3267 if (buffer && buflen && (*buflen >= sizeof (int)))
3268 {
3269 /* VPP-TBD */
3270 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3271 VCL_SESS_ATTR_V6ONLY);
3272 *buflen = sizeof (int);
3273
Florin Coras5e062572019-03-14 19:07:51 -07003274 VDBG (2, "VPPCOM_ATTR_GET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3275 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003276 }
3277 else
3278 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003279 break;
3280
3281 case VPPCOM_ATTR_SET_V6ONLY:
Dave Wallace048b1d62018-01-03 22:24:41 -05003282 if (buffer && buflen && (*buflen == sizeof (int)))
3283 {
3284 /* VPP-TBD */
3285 if (*(int *) buffer)
3286 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_V6ONLY);
3287 else
3288 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_V6ONLY);
3289
Florin Coras5e062572019-03-14 19:07:51 -07003290 VDBG (2, "VPPCOM_ATTR_SET_V6ONLY: %d, buflen %d, #VPP-TBD#",
3291 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_V6ONLY),
3292 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003293 }
3294 else
3295 rv = VPPCOM_EINVAL;
3296 break;
3297
3298 case VPPCOM_ATTR_GET_KEEPALIVE:
3299 if (buffer && buflen && (*buflen >= sizeof (int)))
3300 {
3301 /* VPP-TBD */
3302 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3303 VCL_SESS_ATTR_KEEPALIVE);
3304 *buflen = sizeof (int);
3305
Florin Coras5e062572019-03-14 19:07:51 -07003306 VDBG (2, "VPPCOM_ATTR_GET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3307 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003308 }
3309 else
3310 rv = VPPCOM_EINVAL;
Stevenb5a11602017-10-11 09:59:30 -07003311 break;
Stevenbccd3392017-10-12 20:42:21 -07003312
3313 case VPPCOM_ATTR_SET_KEEPALIVE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003314 if (buffer && buflen && (*buflen == sizeof (int)))
3315 {
3316 /* VPP-TBD */
3317 if (*(int *) buffer)
3318 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3319 else
3320 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_KEEPALIVE);
3321
Florin Coras5e062572019-03-14 19:07:51 -07003322 VDBG (2, "VPPCOM_ATTR_SET_KEEPALIVE: %d, buflen %d, #VPP-TBD#",
3323 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_KEEPALIVE),
3324 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003325 }
3326 else
3327 rv = VPPCOM_EINVAL;
3328 break;
3329
3330 case VPPCOM_ATTR_GET_TCP_NODELAY:
3331 if (buffer && buflen && (*buflen >= sizeof (int)))
3332 {
3333 /* VPP-TBD */
3334 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3335 VCL_SESS_ATTR_TCP_NODELAY);
3336 *buflen = sizeof (int);
3337
Florin Coras5e062572019-03-14 19:07:51 -07003338 VDBG (2, "VPPCOM_ATTR_GET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3339 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003340 }
3341 else
3342 rv = VPPCOM_EINVAL;
3343 break;
3344
3345 case VPPCOM_ATTR_SET_TCP_NODELAY:
3346 if (buffer && buflen && (*buflen == sizeof (int)))
3347 {
3348 /* VPP-TBD */
3349 if (*(int *) buffer)
3350 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3351 else
3352 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_NODELAY);
3353
Florin Coras5e062572019-03-14 19:07:51 -07003354 VDBG (2, "VPPCOM_ATTR_SET_TCP_NODELAY: %d, buflen %d, #VPP-TBD#",
3355 VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_TCP_NODELAY),
3356 *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003357 }
3358 else
3359 rv = VPPCOM_EINVAL;
3360 break;
3361
3362 case VPPCOM_ATTR_GET_TCP_KEEPIDLE:
3363 if (buffer && buflen && (*buflen >= sizeof (int)))
3364 {
3365 /* VPP-TBD */
3366 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3367 VCL_SESS_ATTR_TCP_KEEPIDLE);
3368 *buflen = sizeof (int);
3369
Florin Coras5e062572019-03-14 19:07:51 -07003370 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
3371 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003372 }
3373 else
3374 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003375 break;
3376
3377 case VPPCOM_ATTR_SET_TCP_KEEPIDLE:
Dave Wallace048b1d62018-01-03 22:24:41 -05003378 if (buffer && buflen && (*buflen == sizeof (int)))
3379 {
3380 /* VPP-TBD */
3381 if (*(int *) buffer)
3382 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3383 else
3384 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPIDLE);
3385
Florin Coras5e062572019-03-14 19:07:51 -07003386 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPIDLE: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003387 VCL_SESS_ATTR_TEST (session->attr,
3388 VCL_SESS_ATTR_TCP_KEEPIDLE), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003389 }
3390 else
3391 rv = VPPCOM_EINVAL;
3392 break;
3393
3394 case VPPCOM_ATTR_GET_TCP_KEEPINTVL:
3395 if (buffer && buflen && (*buflen >= sizeof (int)))
3396 {
3397 /* VPP-TBD */
3398 *(int *) buffer = VCL_SESS_ATTR_TEST (session->attr,
3399 VCL_SESS_ATTR_TCP_KEEPINTVL);
3400 *buflen = sizeof (int);
3401
Florin Coras5e062572019-03-14 19:07:51 -07003402 VDBG (2, "VPPCOM_ATTR_GET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
3403 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003404 }
3405 else
3406 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003407 break;
3408
3409 case VPPCOM_ATTR_SET_TCP_KEEPINTVL:
Dave Wallace048b1d62018-01-03 22:24:41 -05003410 if (buffer && buflen && (*buflen == sizeof (int)))
3411 {
3412 /* VPP-TBD */
3413 if (*(int *) buffer)
3414 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3415 else
3416 VCL_SESS_ATTR_CLR (session->attr, VCL_SESS_ATTR_TCP_KEEPINTVL);
3417
Florin Coras5e062572019-03-14 19:07:51 -07003418 VDBG (2, "VPPCOM_ATTR_SET_TCP_KEEPINTVL: %d, buflen %d, #VPP-TBD#",
Florin Coras0d427d82018-06-27 03:24:07 -07003419 VCL_SESS_ATTR_TEST (session->attr,
3420 VCL_SESS_ATTR_TCP_KEEPINTVL), *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003421 }
3422 else
3423 rv = VPPCOM_EINVAL;
3424 break;
3425
3426 case VPPCOM_ATTR_GET_TCP_USER_MSS:
3427 if (buffer && buflen && (*buflen >= sizeof (u32)))
3428 {
3429 /* VPP-TBD */
3430 *(u32 *) buffer = session->user_mss;
3431 *buflen = sizeof (int);
3432
Florin Coras5e062572019-03-14 19:07:51 -07003433 VDBG (2, "VPPCOM_ATTR_GET_TCP_USER_MSS: %d, buflen %d, #VPP-TBD#",
3434 *(int *) buffer, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003435 }
3436 else
3437 rv = VPPCOM_EINVAL;
3438 break;
3439
3440 case VPPCOM_ATTR_SET_TCP_USER_MSS:
3441 if (buffer && buflen && (*buflen == sizeof (u32)))
3442 {
3443 /* VPP-TBD */
3444 session->user_mss = *(u32 *) buffer;
3445
Florin Coras5e062572019-03-14 19:07:51 -07003446 VDBG (2, "VPPCOM_ATTR_SET_TCP_USER_MSS: %u, buflen %d, #VPP-TBD#",
3447 session->user_mss, *buflen);
Dave Wallace048b1d62018-01-03 22:24:41 -05003448 }
3449 else
3450 rv = VPPCOM_EINVAL;
Stevenbccd3392017-10-12 20:42:21 -07003451 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003452
Florin Coras7baeb712019-01-04 17:05:43 -08003453 case VPPCOM_ATTR_SET_SHUT:
3454 if (*flags == SHUT_RD || *flags == SHUT_RDWR)
3455 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_RD);
3456 if (*flags == SHUT_WR || *flags == SHUT_RDWR)
3457 VCL_SESS_ATTR_SET (session->attr, VCL_SESS_ATTR_SHUT_WR);
3458 break;
3459
3460 case VPPCOM_ATTR_GET_SHUT:
3461 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_RD))
3462 tmp_flags = 1;
3463 if (VCL_SESS_ATTR_TEST (session->attr, VCL_SESS_ATTR_SHUT_WR))
3464 tmp_flags |= 2;
3465 if (tmp_flags == 1)
3466 *(int *) buffer = SHUT_RD;
3467 else if (tmp_flags == 2)
3468 *(int *) buffer = SHUT_WR;
3469 else if (tmp_flags == 3)
3470 *(int *) buffer = SHUT_RDWR;
3471 *buflen = sizeof (int);
3472 break;
Dave Wallacee22aa742017-10-20 12:30:38 -04003473 default:
3474 rv = VPPCOM_EINVAL;
3475 break;
Dave Wallace35830af2017-10-09 01:43:42 -04003476 }
3477
Dave Wallace35830af2017-10-09 01:43:42 -04003478 return rv;
3479}
3480
Stevenac1f96d2017-10-24 16:03:58 -07003481int
Florin Coras134a9962018-08-28 11:32:04 -07003482vppcom_session_recvfrom (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003483 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3484{
Florin Coras134a9962018-08-28 11:32:04 -07003485 vcl_worker_t *wrk = vcl_worker_get_current ();
Stevenac1f96d2017-10-24 16:03:58 -07003486 int rv = VPPCOM_OK;
Florin Coras7e12d942018-06-27 14:32:43 -07003487 vcl_session_t *session = 0;
Stevenac1f96d2017-10-24 16:03:58 -07003488
3489 if (ep)
3490 {
Florin Coras134a9962018-08-28 11:32:04 -07003491 session = vcl_session_get_w_handle (wrk, session_handle);
Florin Coras070453d2018-08-24 17:04:27 -07003492 if (PREDICT_FALSE (!session))
Stevenac1f96d2017-10-24 16:03:58 -07003493 {
Florin Coras5e062572019-03-14 19:07:51 -07003494 VDBG (0, "sh 0x%llx is closed!", session_handle);
Florin Coras460dce62018-07-27 05:45:06 -07003495 return VPPCOM_EBADFD;
Stevenac1f96d2017-10-24 16:03:58 -07003496 }
Florin Coras7e12d942018-06-27 14:32:43 -07003497 ep->is_ip4 = session->transport.is_ip4;
3498 ep->port = session->transport.rmt_port;
Stevenac1f96d2017-10-24 16:03:58 -07003499 }
Steven58f464e2017-10-25 12:33:12 -07003500
3501 if (flags == 0)
Florin Coras134a9962018-08-28 11:32:04 -07003502 rv = vppcom_session_read (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003503 else if (flags & MSG_PEEK)
Florin Coras134a9962018-08-28 11:32:04 -07003504 rv = vppcom_session_peek (session_handle, buffer, buflen);
Stevenac1f96d2017-10-24 16:03:58 -07003505 else
3506 {
Florin Corasa7a1a222018-12-30 17:11:31 -08003507 VDBG (0, "Unsupport flags for recvfrom %d", flags);
Florin Coras460dce62018-07-27 05:45:06 -07003508 return VPPCOM_EAFNOSUPPORT;
Stevenac1f96d2017-10-24 16:03:58 -07003509 }
3510
Florin Coras99368312018-08-02 10:45:44 -07003511 if (ep)
3512 {
3513 if (session->transport.is_ip4)
Dave Barach178cf492018-11-13 16:34:13 -05003514 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip4,
3515 sizeof (ip4_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003516 else
Dave Barach178cf492018-11-13 16:34:13 -05003517 clib_memcpy_fast (ep->ip, &session->transport.rmt_ip.ip6,
3518 sizeof (ip6_address_t));
Florin Coras99368312018-08-02 10:45:44 -07003519 }
Florin Coras460dce62018-07-27 05:45:06 -07003520
Stevenac1f96d2017-10-24 16:03:58 -07003521 return rv;
3522}
3523
3524int
Florin Coras134a9962018-08-28 11:32:04 -07003525vppcom_session_sendto (uint32_t session_handle, void *buffer,
Stevenac1f96d2017-10-24 16:03:58 -07003526 uint32_t buflen, int flags, vppcom_endpt_t * ep)
3527{
Dave Wallace617dffa2017-10-26 14:47:06 -04003528 if (!buffer)
3529 return VPPCOM_EINVAL;
3530
3531 if (ep)
3532 {
3533 // TBD
3534 return VPPCOM_EINVAL;
3535 }
3536
3537 if (flags)
3538 {
3539 // TBD check the flags and do the right thing
Florin Coras5e062572019-03-14 19:07:51 -07003540 VDBG (2, "handling flags 0x%u (%d) not implemented yet.", flags, flags);
Dave Wallace617dffa2017-10-26 14:47:06 -04003541 }
3542
Florin Coras42ceddb2018-12-12 10:56:01 -08003543 return (vppcom_session_write_inline (session_handle, buffer, buflen, 1));
Stevenac1f96d2017-10-24 16:03:58 -07003544}
3545
Dave Wallace048b1d62018-01-03 22:24:41 -05003546int
3547vppcom_poll (vcl_poll_t * vp, uint32_t n_sids, double wait_for_time)
3548{
Florin Coras134a9962018-08-28 11:32:04 -07003549 vcl_worker_t *wrk = vcl_worker_get_current ();
3550 f64 timeout = clib_time_now (&wrk->clib_time) + wait_for_time;
Dave Wallace048b1d62018-01-03 22:24:41 -05003551 u32 i, keep_trying = 1;
Florin Coras6917b942018-11-13 22:44:54 -08003552 svm_msg_q_msg_t msg;
3553 session_event_t *e;
Dave Wallace048b1d62018-01-03 22:24:41 -05003554 int rv, num_ev = 0;
3555
Florin Coras5e062572019-03-14 19:07:51 -07003556 VDBG (3, "vp %p, nsids %u, wait_for_time %f", vp, n_sids, wait_for_time);
Dave Wallace048b1d62018-01-03 22:24:41 -05003557
3558 if (!vp)
3559 return VPPCOM_EFAULT;
3560
3561 do
3562 {
Florin Coras7e12d942018-06-27 14:32:43 -07003563 vcl_session_t *session;
Dave Wallace048b1d62018-01-03 22:24:41 -05003564
Florin Coras6917b942018-11-13 22:44:54 -08003565 /* Dequeue all events and drop all unhandled io events */
3566 while (svm_msg_q_sub (wrk->app_event_queue, &msg, SVM_Q_NOWAIT, 0) == 0)
3567 {
3568 e = svm_msg_q_msg_data (wrk->app_event_queue, &msg);
3569 vcl_handle_mq_event (wrk, e);
3570 svm_msg_q_free_msg (wrk->app_event_queue, &msg);
3571 }
3572 vec_reset_length (wrk->unhandled_evts_vector);
3573
Dave Wallace048b1d62018-01-03 22:24:41 -05003574 for (i = 0; i < n_sids; i++)
3575 {
Florin Coras7baeb712019-01-04 17:05:43 -08003576 session = vcl_session_get (wrk, vp[i].sh);
Florin Coras070453d2018-08-24 17:04:27 -07003577 if (!session)
Florin Coras6917b942018-11-13 22:44:54 -08003578 {
3579 vp[i].revents = POLLHUP;
3580 num_ev++;
3581 continue;
3582 }
Dave Wallace048b1d62018-01-03 22:24:41 -05003583
Florin Coras6917b942018-11-13 22:44:54 -08003584 vp[i].revents = 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003585
3586 if (POLLIN & vp[i].events)
3587 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003588 rv = vcl_session_read_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003589 if (rv > 0)
3590 {
Florin Coras6917b942018-11-13 22:44:54 -08003591 vp[i].revents |= POLLIN;
Dave Wallace048b1d62018-01-03 22:24:41 -05003592 num_ev++;
3593 }
3594 else if (rv < 0)
3595 {
3596 switch (rv)
3597 {
3598 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003599 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003600 break;
3601
3602 default:
Florin Coras6917b942018-11-13 22:44:54 -08003603 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003604 break;
3605 }
3606 num_ev++;
3607 }
3608 }
3609
3610 if (POLLOUT & vp[i].events)
3611 {
Florin Coras0ef8ef22019-01-18 08:37:13 -08003612 rv = vcl_session_write_ready (session);
Dave Wallace048b1d62018-01-03 22:24:41 -05003613 if (rv > 0)
3614 {
Florin Coras6917b942018-11-13 22:44:54 -08003615 vp[i].revents |= POLLOUT;
Dave Wallace048b1d62018-01-03 22:24:41 -05003616 num_ev++;
3617 }
3618 else if (rv < 0)
3619 {
3620 switch (rv)
3621 {
3622 case VPPCOM_ECONNRESET:
Florin Coras6917b942018-11-13 22:44:54 -08003623 vp[i].revents = POLLHUP;
Dave Wallace048b1d62018-01-03 22:24:41 -05003624 break;
3625
3626 default:
Florin Coras6917b942018-11-13 22:44:54 -08003627 vp[i].revents = POLLERR;
Dave Wallace048b1d62018-01-03 22:24:41 -05003628 break;
3629 }
3630 num_ev++;
3631 }
3632 }
3633
Dave Wallace7e607a72018-06-18 18:41:32 -04003634 if (0) // Note "done:" label used by VCL_SESSION_LOCK_AND_GET()
Dave Wallace048b1d62018-01-03 22:24:41 -05003635 {
Florin Coras6917b942018-11-13 22:44:54 -08003636 vp[i].revents = POLLNVAL;
Dave Wallace048b1d62018-01-03 22:24:41 -05003637 num_ev++;
3638 }
3639 }
3640 if (wait_for_time != -1)
Florin Coras134a9962018-08-28 11:32:04 -07003641 keep_trying = (clib_time_now (&wrk->clib_time) <= timeout) ? 1 : 0;
Dave Wallace048b1d62018-01-03 22:24:41 -05003642 }
3643 while ((num_ev == 0) && keep_trying);
3644
Dave Wallace048b1d62018-01-03 22:24:41 -05003645 return num_ev;
3646}
3647
Florin Coras99368312018-08-02 10:45:44 -07003648int
3649vppcom_mq_epoll_fd (void)
3650{
Florin Coras134a9962018-08-28 11:32:04 -07003651 vcl_worker_t *wrk = vcl_worker_get_current ();
3652 return wrk->mqs_epfd;
3653}
3654
3655int
Florin Coras30e79c22019-01-02 19:31:22 -08003656vppcom_session_index (vcl_session_handle_t session_handle)
Florin Coras134a9962018-08-28 11:32:04 -07003657{
3658 return session_handle & 0xFFFFFF;
3659}
3660
3661int
Florin Coras30e79c22019-01-02 19:31:22 -08003662vppcom_session_worker (vcl_session_handle_t session_handle)
3663{
3664 return session_handle >> 24;
3665}
3666
3667int
Florin Coras134a9962018-08-28 11:32:04 -07003668vppcom_worker_register (void)
3669{
Florin Corasd4c70922019-11-28 14:21:21 -08003670 vcl_worker_t *wrk;
3671 u8 *wrk_name = 0;
3672 int rv;
3673
Florin Coras47c40e22018-11-26 17:01:36 -08003674 if (!vcl_worker_alloc_and_init ())
3675 return VPPCOM_EEXIST;
3676
Florin Corasd4c70922019-11-28 14:21:21 -08003677 wrk = vcl_worker_get_current ();
3678 wrk_name = format (0, "%s-wrk-%u", vcm->app_name, wrk->wrk_index);
3679
3680 rv = vppcom_connect_to_vpp ((char *) wrk_name);
3681 vec_free (wrk_name);
3682
3683 if (rv)
3684 return VPPCOM_EFAULT;
Florin Coras47c40e22018-11-26 17:01:36 -08003685
3686 if (vcl_worker_register_with_vpp ())
3687 return VPPCOM_EEXIST;
3688
3689 return VPPCOM_OK;
Florin Coras99368312018-08-02 10:45:44 -07003690}
3691
Florin Coras369db832019-07-08 12:34:45 -07003692void
3693vppcom_worker_unregister (void)
3694{
3695 vcl_worker_cleanup (vcl_worker_get_current (), 1 /* notify vpp */ );
3696 vcl_set_worker_index (~0);
3697}
3698
Florin Corasdfe4cf42018-11-28 22:13:45 -08003699int
3700vppcom_worker_index (void)
3701{
3702 return vcl_get_worker_index ();
3703}
3704
Florin Corase0982e52019-01-25 13:19:56 -08003705int
3706vppcom_worker_mqs_epfd (void)
3707{
3708 vcl_worker_t *wrk = vcl_worker_get_current ();
3709 if (!vcm->cfg.use_mq_eventfd)
3710 return -1;
3711 return wrk->mqs_epfd;
3712}
3713
Nathan Skrzypczak9fd99622019-05-16 14:38:44 +02003714int
3715vppcom_session_is_connectable_listener (uint32_t session_handle)
3716{
3717 vcl_session_t *session;
3718 vcl_worker_t *wrk = vcl_worker_get_current ();
3719 session = vcl_session_get_w_handle (wrk, session_handle);
3720 if (!session)
3721 return VPPCOM_EBADFD;
3722 return vcl_session_is_connectable_listener (wrk, session);
3723}
3724
3725int
3726vppcom_session_listener (uint32_t session_handle)
3727{
3728 vcl_worker_t *wrk = vcl_worker_get_current ();
3729 vcl_session_t *listen_session, *session;
3730 session = vcl_session_get_w_handle (wrk, session_handle);
3731 if (!session)
3732 return VPPCOM_EBADFD;
3733 if (session->listener_index == VCL_INVALID_SESSION_INDEX)
3734 return VPPCOM_EBADFD;
3735 listen_session = vcl_session_get_w_handle (wrk, session->listener_index);
3736 if (!listen_session)
3737 return VPPCOM_EBADFD;
3738 return vcl_session_handle (listen_session);
3739}
3740
3741int
3742vppcom_session_n_accepted (uint32_t session_handle)
3743{
3744 vcl_worker_t *wrk = vcl_worker_get_current ();
3745 vcl_session_t *session = vcl_session_get_w_handle (wrk, session_handle);
3746 if (!session)
3747 return VPPCOM_EBADFD;
3748 return session->n_accepted_sessions;
3749}
3750
Dave Wallacee22aa742017-10-20 12:30:38 -04003751/*
3752 * fd.io coding-style-patch-verification: ON
3753 *
3754 * Local Variables:
3755 * eval: (c-set-style "gnu")
3756 * End:
3757 */